pcnet.c 13 KB

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