pcnet.c 14 KB

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