pcnet.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. /*
  2. * (C) Copyright 2002 Wolfgang Grandegger, wg@denx.de.
  3. *
  4. * This driver for AMD PCnet network controllers is derived from the
  5. * Linux driver pcnet32.c written 1996-1999 by Thomas Bogendoerfer.
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #include <common.h>
  10. #include <malloc.h>
  11. #include <net.h>
  12. #include <netdev.h>
  13. #include <asm/io.h>
  14. #include <pci.h>
  15. #define PCNET_DEBUG_LEVEL 0 /* 0=off, 1=init, 2=rx/tx */
  16. #define PCNET_DEBUG1(fmt,args...) \
  17. debug_cond(PCNET_DEBUG_LEVEL > 0, fmt ,##args)
  18. #define PCNET_DEBUG2(fmt,args...) \
  19. debug_cond(PCNET_DEBUG_LEVEL > 1, fmt ,##args)
  20. #if !defined(CONF_PCNET_79C973) && defined(CONF_PCNET_79C975)
  21. #error "Macro for PCnet chip version is not defined!"
  22. #endif
  23. /*
  24. * Set the number of Tx and Rx buffers, using Log_2(# buffers).
  25. * Reasonable default values are 4 Tx buffers, and 16 Rx buffers.
  26. * That translates to 2 (4 == 2^^2) and 4 (16 == 2^^4).
  27. */
  28. #define PCNET_LOG_TX_BUFFERS 0
  29. #define PCNET_LOG_RX_BUFFERS 2
  30. #define TX_RING_SIZE (1 << (PCNET_LOG_TX_BUFFERS))
  31. #define TX_RING_LEN_BITS ((PCNET_LOG_TX_BUFFERS) << 12)
  32. #define RX_RING_SIZE (1 << (PCNET_LOG_RX_BUFFERS))
  33. #define RX_RING_LEN_BITS ((PCNET_LOG_RX_BUFFERS) << 4)
  34. #define PKT_BUF_SZ 1544
  35. /* The PCNET Rx and Tx ring descriptors. */
  36. struct pcnet_rx_head {
  37. u32 base;
  38. s16 buf_length;
  39. s16 status;
  40. u32 msg_length;
  41. u32 reserved;
  42. };
  43. struct pcnet_tx_head {
  44. u32 base;
  45. s16 length;
  46. s16 status;
  47. u32 misc;
  48. u32 reserved;
  49. };
  50. /* The PCNET 32-Bit initialization block, described in databook. */
  51. struct pcnet_init_block {
  52. u16 mode;
  53. u16 tlen_rlen;
  54. u8 phys_addr[6];
  55. u16 reserved;
  56. u32 filter[2];
  57. /* Receive and transmit ring base, along with extra bits. */
  58. u32 rx_ring;
  59. u32 tx_ring;
  60. u32 reserved2;
  61. };
  62. struct pcnet_uncached_priv {
  63. struct pcnet_rx_head rx_ring[RX_RING_SIZE];
  64. struct pcnet_tx_head tx_ring[TX_RING_SIZE];
  65. struct pcnet_init_block init_block;
  66. };
  67. typedef struct pcnet_priv {
  68. struct pcnet_uncached_priv *uc;
  69. /* Receive Buffer space */
  70. unsigned char (*rx_buf)[RX_RING_SIZE][PKT_BUF_SZ + 4];
  71. int cur_rx;
  72. int cur_tx;
  73. } pcnet_priv_t;
  74. static pcnet_priv_t *lp;
  75. /* Offsets from base I/O address for WIO mode */
  76. #define PCNET_RDP 0x10
  77. #define PCNET_RAP 0x12
  78. #define PCNET_RESET 0x14
  79. #define PCNET_BDP 0x16
  80. static u16 pcnet_read_csr(struct eth_device *dev, int index)
  81. {
  82. outw(index, dev->iobase + PCNET_RAP);
  83. return inw(dev->iobase + PCNET_RDP);
  84. }
  85. static void pcnet_write_csr(struct eth_device *dev, int index, u16 val)
  86. {
  87. outw(index, dev->iobase + PCNET_RAP);
  88. outw(val, dev->iobase + PCNET_RDP);
  89. }
  90. static u16 pcnet_read_bcr(struct eth_device *dev, int index)
  91. {
  92. outw(index, dev->iobase + PCNET_RAP);
  93. return inw(dev->iobase + PCNET_BDP);
  94. }
  95. static void pcnet_write_bcr(struct eth_device *dev, int index, u16 val)
  96. {
  97. outw(index, dev->iobase + PCNET_RAP);
  98. outw(val, dev->iobase + PCNET_BDP);
  99. }
  100. static void pcnet_reset(struct eth_device *dev)
  101. {
  102. inw(dev->iobase + PCNET_RESET);
  103. }
  104. static int pcnet_check(struct eth_device *dev)
  105. {
  106. outw(88, dev->iobase + PCNET_RAP);
  107. return inw(dev->iobase + PCNET_RAP) == 88;
  108. }
  109. static int pcnet_init (struct eth_device *dev, bd_t * bis);
  110. static int pcnet_send(struct eth_device *dev, void *packet, int length);
  111. static int pcnet_recv (struct eth_device *dev);
  112. static void pcnet_halt (struct eth_device *dev);
  113. static int pcnet_probe (struct eth_device *dev, bd_t * bis, int dev_num);
  114. static inline pci_addr_t pcnet_virt_to_mem(const struct eth_device *dev,
  115. void *addr, bool uncached)
  116. {
  117. pci_dev_t devbusfn = (pci_dev_t)dev->priv;
  118. void *virt_addr = addr;
  119. if (uncached)
  120. virt_addr = (void *)CKSEG0ADDR(addr);
  121. return pci_virt_to_mem(devbusfn, virt_addr);
  122. }
  123. static struct pci_device_id supported[] = {
  124. {PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE},
  125. {}
  126. };
  127. int pcnet_initialize(bd_t *bis)
  128. {
  129. pci_dev_t devbusfn;
  130. struct eth_device *dev;
  131. u16 command, status;
  132. int dev_nr = 0;
  133. PCNET_DEBUG1("\npcnet_initialize...\n");
  134. for (dev_nr = 0;; dev_nr++) {
  135. /*
  136. * Find the PCnet PCI device(s).
  137. */
  138. devbusfn = pci_find_devices(supported, dev_nr);
  139. if (devbusfn < 0)
  140. break;
  141. /*
  142. * Allocate and pre-fill the device structure.
  143. */
  144. dev = (struct eth_device *)malloc(sizeof(*dev));
  145. if (!dev) {
  146. printf("pcnet: Can not allocate memory\n");
  147. break;
  148. }
  149. memset(dev, 0, sizeof(*dev));
  150. dev->priv = (void *)devbusfn;
  151. sprintf(dev->name, "pcnet#%d", dev_nr);
  152. /*
  153. * Setup the PCI device.
  154. */
  155. pci_read_config_dword(devbusfn, PCI_BASE_ADDRESS_0,
  156. (unsigned int *)&dev->iobase);
  157. dev->iobase = pci_io_to_phys(devbusfn, dev->iobase);
  158. dev->iobase &= ~0xf;
  159. PCNET_DEBUG1("%s: devbusfn=0x%x iobase=0x%x: ",
  160. dev->name, devbusfn, dev->iobase);
  161. command = PCI_COMMAND_IO | PCI_COMMAND_MASTER;
  162. pci_write_config_word(devbusfn, PCI_COMMAND, command);
  163. pci_read_config_word(devbusfn, PCI_COMMAND, &status);
  164. if ((status & command) != command) {
  165. printf("%s: Couldn't enable IO access or Bus Mastering\n",
  166. dev->name);
  167. free(dev);
  168. continue;
  169. }
  170. pci_write_config_byte(devbusfn, PCI_LATENCY_TIMER, 0x40);
  171. /*
  172. * Probe the PCnet chip.
  173. */
  174. if (pcnet_probe(dev, bis, dev_nr) < 0) {
  175. free(dev);
  176. continue;
  177. }
  178. /*
  179. * Setup device structure and register the driver.
  180. */
  181. dev->init = pcnet_init;
  182. dev->halt = pcnet_halt;
  183. dev->send = pcnet_send;
  184. dev->recv = pcnet_recv;
  185. eth_register(dev);
  186. }
  187. udelay(10 * 1000);
  188. return dev_nr;
  189. }
  190. static int pcnet_probe(struct eth_device *dev, bd_t *bis, int dev_nr)
  191. {
  192. int chip_version;
  193. char *chipname;
  194. #ifdef PCNET_HAS_PROM
  195. int i;
  196. #endif
  197. /* Reset the PCnet controller */
  198. pcnet_reset(dev);
  199. /* Check if register access is working */
  200. if (pcnet_read_csr(dev, 0) != 4 || !pcnet_check(dev)) {
  201. printf("%s: CSR register access check failed\n", dev->name);
  202. return -1;
  203. }
  204. /* Identify the chip */
  205. chip_version =
  206. pcnet_read_csr(dev, 88) | (pcnet_read_csr(dev, 89) << 16);
  207. if ((chip_version & 0xfff) != 0x003)
  208. return -1;
  209. chip_version = (chip_version >> 12) & 0xffff;
  210. switch (chip_version) {
  211. case 0x2621:
  212. chipname = "PCnet/PCI II 79C970A"; /* PCI */
  213. break;
  214. #ifdef CONFIG_PCNET_79C973
  215. case 0x2625:
  216. chipname = "PCnet/FAST III 79C973"; /* PCI */
  217. break;
  218. #endif
  219. #ifdef CONFIG_PCNET_79C975
  220. case 0x2627:
  221. chipname = "PCnet/FAST III 79C975"; /* PCI */
  222. break;
  223. #endif
  224. default:
  225. printf("%s: PCnet version %#x not supported\n",
  226. dev->name, chip_version);
  227. return -1;
  228. }
  229. PCNET_DEBUG1("AMD %s\n", chipname);
  230. #ifdef PCNET_HAS_PROM
  231. /*
  232. * In most chips, after a chip reset, the ethernet address is read from
  233. * the station address PROM at the base address and programmed into the
  234. * "Physical Address Registers" CSR12-14.
  235. */
  236. for (i = 0; i < 3; i++) {
  237. unsigned int val;
  238. val = pcnet_read_csr(dev, i + 12) & 0x0ffff;
  239. /* There may be endianness issues here. */
  240. dev->enetaddr[2 * i] = val & 0x0ff;
  241. dev->enetaddr[2 * i + 1] = (val >> 8) & 0x0ff;
  242. }
  243. #endif /* PCNET_HAS_PROM */
  244. return 0;
  245. }
  246. static int pcnet_init(struct eth_device *dev, bd_t *bis)
  247. {
  248. struct pcnet_uncached_priv *uc;
  249. int i, val;
  250. u32 addr;
  251. PCNET_DEBUG1("%s: pcnet_init...\n", dev->name);
  252. /* Switch pcnet to 32bit mode */
  253. pcnet_write_bcr(dev, 20, 2);
  254. /* Set/reset autoselect bit */
  255. val = pcnet_read_bcr(dev, 2) & ~2;
  256. val |= 2;
  257. pcnet_write_bcr(dev, 2, val);
  258. /* Enable auto negotiate, setup, disable fd */
  259. val = pcnet_read_bcr(dev, 32) & ~0x98;
  260. val |= 0x20;
  261. pcnet_write_bcr(dev, 32, val);
  262. /*
  263. * Enable NOUFLO on supported controllers, with the transmit
  264. * start point set to the full packet. This will cause entire
  265. * packets to be buffered by the ethernet controller before
  266. * transmission, eliminating underflows which are common on
  267. * slower devices. Controllers which do not support NOUFLO will
  268. * simply be left with a larger transmit FIFO threshold.
  269. */
  270. val = pcnet_read_bcr(dev, 18);
  271. val |= 1 << 11;
  272. pcnet_write_bcr(dev, 18, val);
  273. val = pcnet_read_csr(dev, 80);
  274. val |= 0x3 << 10;
  275. pcnet_write_csr(dev, 80, val);
  276. /*
  277. * We only maintain one structure because the drivers will never
  278. * be used concurrently. In 32bit mode the RX and TX ring entries
  279. * must be aligned on 16-byte boundaries.
  280. */
  281. if (lp == NULL) {
  282. addr = (u32)malloc(sizeof(pcnet_priv_t) + 0x10);
  283. addr = (addr + 0xf) & ~0xf;
  284. lp = (pcnet_priv_t *)addr;
  285. addr = (u32)memalign(ARCH_DMA_MINALIGN, sizeof(*lp->uc));
  286. flush_dcache_range(addr, addr + sizeof(*lp->uc));
  287. addr = UNCACHED_SDRAM(addr);
  288. lp->uc = (struct pcnet_uncached_priv *)addr;
  289. addr = (u32)memalign(ARCH_DMA_MINALIGN, sizeof(*lp->rx_buf));
  290. flush_dcache_range(addr, addr + sizeof(*lp->rx_buf));
  291. lp->rx_buf = (void *)addr;
  292. }
  293. uc = lp->uc;
  294. uc->init_block.mode = cpu_to_le16(0x0000);
  295. uc->init_block.filter[0] = 0x00000000;
  296. uc->init_block.filter[1] = 0x00000000;
  297. /*
  298. * Initialize the Rx ring.
  299. */
  300. lp->cur_rx = 0;
  301. for (i = 0; i < RX_RING_SIZE; i++) {
  302. addr = pcnet_virt_to_mem(dev, (*lp->rx_buf)[i], false);
  303. uc->rx_ring[i].base = cpu_to_le32(addr);
  304. uc->rx_ring[i].buf_length = cpu_to_le16(-PKT_BUF_SZ);
  305. uc->rx_ring[i].status = cpu_to_le16(0x8000);
  306. PCNET_DEBUG1
  307. ("Rx%d: base=0x%x buf_length=0x%hx status=0x%hx\n", i,
  308. uc->rx_ring[i].base, uc->rx_ring[i].buf_length,
  309. uc->rx_ring[i].status);
  310. }
  311. /*
  312. * Initialize the Tx ring. The Tx buffer address is filled in as
  313. * needed, but we do need to clear the upper ownership bit.
  314. */
  315. lp->cur_tx = 0;
  316. for (i = 0; i < TX_RING_SIZE; i++) {
  317. uc->tx_ring[i].base = 0;
  318. uc->tx_ring[i].status = 0;
  319. }
  320. /*
  321. * Setup Init Block.
  322. */
  323. PCNET_DEBUG1("Init block at 0x%p: MAC", &lp->uc->init_block);
  324. for (i = 0; i < 6; i++) {
  325. lp->uc->init_block.phys_addr[i] = dev->enetaddr[i];
  326. PCNET_DEBUG1(" %02x", lp->uc->init_block.phys_addr[i]);
  327. }
  328. uc->init_block.tlen_rlen = cpu_to_le16(TX_RING_LEN_BITS |
  329. RX_RING_LEN_BITS);
  330. addr = pcnet_virt_to_mem(dev, uc->rx_ring, true);
  331. uc->init_block.rx_ring = cpu_to_le32(addr);
  332. addr = pcnet_virt_to_mem(dev, uc->tx_ring, true);
  333. uc->init_block.tx_ring = cpu_to_le32(addr);
  334. PCNET_DEBUG1("\ntlen_rlen=0x%x rx_ring=0x%x tx_ring=0x%x\n",
  335. uc->init_block.tlen_rlen,
  336. uc->init_block.rx_ring, uc->init_block.tx_ring);
  337. /*
  338. * Tell the controller where the Init Block is located.
  339. */
  340. barrier();
  341. addr = pcnet_virt_to_mem(dev, &lp->uc->init_block, true);
  342. pcnet_write_csr(dev, 1, addr & 0xffff);
  343. pcnet_write_csr(dev, 2, (addr >> 16) & 0xffff);
  344. pcnet_write_csr(dev, 4, 0x0915);
  345. pcnet_write_csr(dev, 0, 0x0001); /* start */
  346. /* Wait for Init Done bit */
  347. for (i = 10000; i > 0; i--) {
  348. if (pcnet_read_csr(dev, 0) & 0x0100)
  349. break;
  350. udelay(10);
  351. }
  352. if (i <= 0) {
  353. printf("%s: TIMEOUT: controller init failed\n", dev->name);
  354. pcnet_reset(dev);
  355. return -1;
  356. }
  357. /*
  358. * Finally start network controller operation.
  359. */
  360. pcnet_write_csr(dev, 0, 0x0002);
  361. return 0;
  362. }
  363. static int pcnet_send(struct eth_device *dev, void *packet, int pkt_len)
  364. {
  365. int i, status;
  366. u32 addr;
  367. struct pcnet_tx_head *entry = &lp->uc->tx_ring[lp->cur_tx];
  368. PCNET_DEBUG2("Tx%d: %d bytes from 0x%p ", lp->cur_tx, pkt_len,
  369. packet);
  370. flush_dcache_range((unsigned long)packet,
  371. (unsigned long)packet + pkt_len);
  372. /* Wait for completion by testing the OWN bit */
  373. for (i = 1000; i > 0; i--) {
  374. status = readw(&entry->status);
  375. if ((status & 0x8000) == 0)
  376. break;
  377. udelay(100);
  378. PCNET_DEBUG2(".");
  379. }
  380. if (i <= 0) {
  381. printf("%s: TIMEOUT: Tx%d failed (status = 0x%x)\n",
  382. dev->name, lp->cur_tx, status);
  383. pkt_len = 0;
  384. goto failure;
  385. }
  386. /*
  387. * Setup Tx ring. Caution: the write order is important here,
  388. * set the status with the "ownership" bits last.
  389. */
  390. addr = pcnet_virt_to_mem(dev, packet, false);
  391. writew(-pkt_len, &entry->length);
  392. writel(0, &entry->misc);
  393. writel(addr, &entry->base);
  394. writew(0x8300, &entry->status);
  395. /* Trigger an immediate send poll. */
  396. pcnet_write_csr(dev, 0, 0x0008);
  397. failure:
  398. if (++lp->cur_tx >= TX_RING_SIZE)
  399. lp->cur_tx = 0;
  400. PCNET_DEBUG2("done\n");
  401. return pkt_len;
  402. }
  403. static int pcnet_recv (struct eth_device *dev)
  404. {
  405. struct pcnet_rx_head *entry;
  406. unsigned char *buf;
  407. int pkt_len = 0;
  408. u16 status, err_status;
  409. while (1) {
  410. entry = &lp->uc->rx_ring[lp->cur_rx];
  411. /*
  412. * If we own the next entry, it's a new packet. Send it up.
  413. */
  414. status = readw(&entry->status);
  415. if ((status & 0x8000) != 0)
  416. break;
  417. err_status = status >> 8;
  418. if (err_status != 0x03) { /* There was an error. */
  419. printf("%s: Rx%d", dev->name, lp->cur_rx);
  420. PCNET_DEBUG1(" (status=0x%x)", err_status);
  421. if (err_status & 0x20)
  422. printf(" Frame");
  423. if (err_status & 0x10)
  424. printf(" Overflow");
  425. if (err_status & 0x08)
  426. printf(" CRC");
  427. if (err_status & 0x04)
  428. printf(" Fifo");
  429. printf(" Error\n");
  430. status &= 0x03ff;
  431. } else {
  432. pkt_len = (readl(&entry->msg_length) & 0xfff) - 4;
  433. if (pkt_len < 60) {
  434. printf("%s: Rx%d: invalid packet length %d\n",
  435. dev->name, lp->cur_rx, pkt_len);
  436. } else {
  437. buf = (*lp->rx_buf)[lp->cur_rx];
  438. invalidate_dcache_range((unsigned long)buf,
  439. (unsigned long)buf + pkt_len);
  440. net_process_received_packet(buf, pkt_len);
  441. PCNET_DEBUG2("Rx%d: %d bytes from 0x%p\n",
  442. lp->cur_rx, pkt_len, buf);
  443. }
  444. }
  445. status |= 0x8000;
  446. writew(status, &entry->status);
  447. if (++lp->cur_rx >= RX_RING_SIZE)
  448. lp->cur_rx = 0;
  449. }
  450. return pkt_len;
  451. }
  452. static void pcnet_halt(struct eth_device *dev)
  453. {
  454. int i;
  455. PCNET_DEBUG1("%s: pcnet_halt...\n", dev->name);
  456. /* Reset the PCnet controller */
  457. pcnet_reset(dev);
  458. /* Wait for Stop bit */
  459. for (i = 1000; i > 0; i--) {
  460. if (pcnet_read_csr(dev, 0) & 0x4)
  461. break;
  462. udelay(10);
  463. }
  464. if (i <= 0)
  465. printf("%s: TIMEOUT: controller reset failed\n", dev->name);
  466. }