pcnet.c 13 KB

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