tulip_core.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:57k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* tulip_core.c: A DEC 21x4x-family ethernet driver for Linux. */
  2. /*
  3. Maintained by Jeff Garzik <jgarzik@mandrakesoft.com>
  4. Copyright 2000,2001  The Linux Kernel Team
  5. Written/copyright 1994-2001 by Donald Becker.
  6. This software may be used and distributed according to the terms
  7. of the GNU General Public License, incorporated herein by reference.
  8. Please refer to Documentation/DocBook/tulip.{pdf,ps,html}
  9. for more information on this driver, or visit the project
  10. Web page at http://sourceforge.net/projects/tulip/
  11. */
  12. #define DRV_NAME "tulip"
  13. #define DRV_VERSION "0.9.15-pre9"
  14. #define DRV_RELDATE "Nov 6, 2001"
  15. #include <linux/config.h>
  16. #include <linux/module.h>
  17. #include "tulip.h"
  18. #include <linux/pci.h>
  19. #include <linux/init.h>
  20. #include <linux/etherdevice.h>
  21. #include <linux/delay.h>
  22. #include <linux/mii.h>
  23. #include <linux/ethtool.h>
  24. #include <asm/unaligned.h>
  25. #include <asm/uaccess.h>
  26. #ifdef __sparc__
  27. #include <asm/pbm.h>
  28. #endif
  29. static char version[] __devinitdata =
  30. "Linux Tulip driver version " DRV_VERSION " (" DRV_RELDATE ")n";
  31. /* A few user-configurable values. */
  32. /* Maximum events (Rx packets, etc.) to handle at each interrupt. */
  33. static unsigned int max_interrupt_work = 25;
  34. #define MAX_UNITS 8
  35. /* Used to pass the full-duplex flag, etc. */
  36. static int full_duplex[MAX_UNITS];
  37. static int options[MAX_UNITS];
  38. static int mtu[MAX_UNITS]; /* Jumbo MTU for interfaces. */
  39. /*  The possible media types that can be set in options[] are: */
  40. const char * const medianame[32] = {
  41. "10baseT", "10base2", "AUI", "100baseTx",
  42. "10baseT-FDX", "100baseTx-FDX", "100baseT4", "100baseFx",
  43. "100baseFx-FDX", "MII 10baseT", "MII 10baseT-FDX", "MII",
  44. "10baseT(forced)", "MII 100baseTx", "MII 100baseTx-FDX", "MII 100baseT4",
  45. "MII 100baseFx-HDX", "MII 100baseFx-FDX", "Home-PNA 1Mbps", "Invalid-19",
  46. "","","","", "","","","",  "","","","Transceiver reset",
  47. };
  48. /* Set the copy breakpoint for the copy-only-tiny-buffer Rx structure. */
  49. #if defined(__alpha__) || defined(__arm__) || defined(__hppa__) 
  50. || defined(__sparc_) || defined(__ia64__) 
  51. || defined(__sh__) || defined(__mips__)
  52. static int rx_copybreak = 1518;
  53. #else
  54. static int rx_copybreak = 100;
  55. #endif
  56. /*
  57.   Set the bus performance register.
  58. Typical: Set 16 longword cache alignment, no burst limit.
  59. Cache alignment bits 15:14      Burst length 13:8
  60. 0000 No alignment  0x00000000 unlimited 0800 8 longwords
  61. 4000 8  longwords 0100 1 longword 1000 16 longwords
  62. 8000 16 longwords 0200 2 longwords 2000 32 longwords
  63. C000 32  longwords 0400 4 longwords
  64. Warning: many older 486 systems are broken and require setting 0x00A04800
  65.    8 longword cache alignment, 8 longword burst.
  66. ToDo: Non-Intel setting could be better.
  67. */
  68. #if defined(__alpha__) || defined(__ia64__) || defined(__x86_64__)
  69. static int csr0 = 0x01A00000 | 0xE000;
  70. #elif defined(__i386__) || defined(__powerpc__)
  71. static int csr0 = 0x01A00000 | 0x8000;
  72. #elif defined(__sparc__) || defined(__hppa__)
  73. /* The UltraSparc PCI controllers will disconnect at every 64-byte
  74.  * crossing anyways so it makes no sense to tell Tulip to burst
  75.  * any more than that.
  76.  */
  77. static int csr0 = 0x01A00000 | 0x9000;
  78. #elif defined(__arm__) || defined(__sh__)
  79. static int csr0 = 0x01A00000 | 0x4800;
  80. #else
  81. #warning Processor architecture undefined!
  82. static int csr0 = 0x00A00000 | 0x4800;
  83. #endif
  84. /* Operational parameters that usually are not changed. */
  85. /* Time in jiffies before concluding the transmitter is hung. */
  86. #define TX_TIMEOUT  (4*HZ)
  87. MODULE_AUTHOR("The Linux Kernel Team");
  88. MODULE_DESCRIPTION("Digital 21*4* Tulip ethernet driver");
  89. MODULE_LICENSE("GPL");
  90. MODULE_PARM(tulip_debug, "i");
  91. MODULE_PARM(max_interrupt_work, "i");
  92. MODULE_PARM(rx_copybreak, "i");
  93. MODULE_PARM(csr0, "i");
  94. MODULE_PARM(options, "1-" __MODULE_STRING(MAX_UNITS) "i");
  95. MODULE_PARM(full_duplex, "1-" __MODULE_STRING(MAX_UNITS) "i");
  96. #define PFX DRV_NAME ": "
  97. #ifdef TULIP_DEBUG
  98. int tulip_debug = TULIP_DEBUG;
  99. #else
  100. int tulip_debug = 1;
  101. #endif
  102. /*
  103.  * This table use during operation for capabilities and media timer.
  104.  *
  105.  * It is indexed via the values in 'enum chips'
  106.  */
  107. struct tulip_chip_table tulip_tbl[] = {
  108.   /* DC21040 */
  109.   { "Digital DC21040 Tulip", 128, 0x0001ebef, 0, tulip_timer },
  110.   /* DC21041 */
  111.   { "Digital DC21041 Tulip", 128, 0x0001ebef,
  112. HAS_MEDIA_TABLE | HAS_NWAY, tulip_timer },
  113.   /* DC21140 */
  114.   { "Digital DS21140 Tulip", 128, 0x0001ebef,
  115. HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | HAS_PCI_MWI, tulip_timer },
  116.   /* DC21142, DC21143 */
  117.   { "Digital DS21143 Tulip", 128, 0x0801fbff,
  118. HAS_MII | HAS_MEDIA_TABLE | ALWAYS_CHECK_MII | HAS_ACPI | HAS_NWAY
  119. | HAS_INTR_MITIGATION | HAS_PCI_MWI, t21142_timer },
  120.   /* LC82C168 */
  121.   { "Lite-On 82c168 PNIC", 256, 0x0001fbef,
  122. HAS_MII | HAS_PNICNWAY, pnic_timer },
  123.   /* MX98713 */
  124.   { "Macronix 98713 PMAC", 128, 0x0001ebef,
  125. HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM, mxic_timer },
  126.   /* MX98715 */
  127.   { "Macronix 98715 PMAC", 256, 0x0001ebef,
  128. HAS_MEDIA_TABLE, mxic_timer },
  129.   /* MX98725 */
  130.   { "Macronix 98725 PMAC", 256, 0x0001ebef,
  131. HAS_MEDIA_TABLE, mxic_timer },
  132.   /* AX88140 */
  133.   { "ASIX AX88140", 128, 0x0001fbff,
  134. HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | MC_HASH_ONLY
  135. | IS_ASIX, tulip_timer },
  136.   /* PNIC2 */
  137.   { "Lite-On PNIC-II", 256, 0x0801fbff,
  138. HAS_MII | HAS_NWAY | HAS_8023X | HAS_PCI_MWI, pnic2_timer },
  139.   /* COMET */
  140.   { "ADMtek Comet", 256, 0x0001abef,
  141. MC_HASH_ONLY | COMET_MAC_ADDR, comet_timer },
  142.   /* COMPEX9881 */
  143.   { "Compex 9881 PMAC", 128, 0x0001ebef,
  144. HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM, mxic_timer },
  145.   /* I21145 */
  146.   { "Intel DS21145 Tulip", 128, 0x0801fbff,
  147. HAS_MII | HAS_MEDIA_TABLE | ALWAYS_CHECK_MII | HAS_ACPI
  148. | HAS_NWAY | HAS_PCI_MWI, t21142_timer },
  149.   /* DM910X */
  150.   { "Davicom DM9102/DM9102A", 128, 0x0001ebef,
  151. HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | HAS_ACPI,
  152. tulip_timer },
  153. };
  154. static struct pci_device_id tulip_pci_tbl[] __devinitdata = {
  155. { 0x1011, 0x0002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DC21040 },
  156. { 0x1011, 0x0014, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DC21041 },
  157. { 0x1011, 0x0009, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DC21140 },
  158. { 0x1011, 0x0019, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DC21143 },
  159. { 0x11AD, 0x0002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, LC82C168 },
  160. { 0x10d9, 0x0512, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98713 },
  161. { 0x10d9, 0x0531, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98715 },
  162. /* { 0x10d9, 0x0531, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98725 },*/
  163. { 0x125B, 0x1400, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AX88140 },
  164. { 0x11AD, 0xc115, PCI_ANY_ID, PCI_ANY_ID, 0, 0, PNIC2 },
  165. { 0x1317, 0x0981, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  166. { 0x1317, 0x0985, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  167. { 0x1317, 0x1985, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  168. { 0x13D1, 0xAB02, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  169. { 0x13D1, 0xAB03, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  170. { 0x13D1, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  171. { 0x104A, 0x0981, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  172. { 0x104A, 0x2774, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  173. { 0x11F6, 0x9881, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMPEX9881 },
  174. { 0x8086, 0x0039, PCI_ANY_ID, PCI_ANY_ID, 0, 0, I21145 },
  175. { 0x1282, 0x9100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X },
  176. { 0x1282, 0x9102, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X },
  177. { 0x1113, 0x1216, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  178. { 0x1113, 0x1217, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98715 },
  179. { 0x1113, 0x9511, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
  180. { } /* terminate list */
  181. };
  182. MODULE_DEVICE_TABLE(pci, tulip_pci_tbl);
  183. /* A full-duplex map for media types. */
  184. const char tulip_media_cap[32] =
  185. {0,0,0,16,  3,19,16,24,  27,4,7,5, 0,20,23,20,  28,31,0,0, };
  186. u8 t21040_csr13[] = {2,0x0C,8,4,  4,0,0,0, 0,0,0,0, 4,0,0,0};
  187. /* 21041 transceiver register settings: 10-T, 10-2, AUI, 10-T, 10T-FD*/
  188. u16 t21041_csr13[] = {
  189. csr13_mask_10bt, /* 10-T */
  190. csr13_mask_auibnc, /* 10-2 */
  191. csr13_mask_auibnc, /* AUI */
  192. csr13_mask_10bt, /* 10-T */
  193. csr13_mask_10bt, /* 10T-FD */
  194. };
  195. u16 t21041_csr14[] = { 0xFFFF, 0xF7FD, 0xF7FD, 0x7F3F, 0x7F3D, };
  196. u16 t21041_csr15[] = { 0x0008, 0x0006, 0x000E, 0x0008, 0x0008, };
  197. static void tulip_tx_timeout(struct net_device *dev);
  198. static void tulip_init_ring(struct net_device *dev);
  199. static int tulip_start_xmit(struct sk_buff *skb, struct net_device *dev);
  200. static int tulip_open(struct net_device *dev);
  201. static int tulip_close(struct net_device *dev);
  202. static void tulip_up(struct net_device *dev);
  203. static void tulip_down(struct net_device *dev);
  204. static struct net_device_stats *tulip_get_stats(struct net_device *dev);
  205. static int private_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  206. static void set_rx_mode(struct net_device *dev);
  207. static void tulip_set_power_state (struct tulip_private *tp,
  208.    int sleep, int snooze)
  209. {
  210. if (tp->flags & HAS_ACPI) {
  211. u32 tmp, newtmp;
  212. pci_read_config_dword (tp->pdev, CFDD, &tmp);
  213. newtmp = tmp & ~(CFDD_Sleep | CFDD_Snooze);
  214. if (sleep)
  215. newtmp |= CFDD_Sleep;
  216. else if (snooze)
  217. newtmp |= CFDD_Snooze;
  218. if (tmp != newtmp)
  219. pci_write_config_dword (tp->pdev, CFDD, newtmp);
  220. }
  221. }
  222. static void tulip_up(struct net_device *dev)
  223. {
  224. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  225. long ioaddr = dev->base_addr;
  226. int next_tick = 3*HZ;
  227. int i;
  228. /* Wake the chip from sleep/snooze mode. */
  229. tulip_set_power_state (tp, 0, 0);
  230. /* On some chip revs we must set the MII/SYM port before the reset!? */
  231. if (tp->mii_cnt  ||  (tp->mtable  &&  tp->mtable->has_mii))
  232. outl(0x00040000, ioaddr + CSR6);
  233. /* Reset the chip, holding bit 0 set at least 50 PCI cycles. */
  234. outl(0x00000001, ioaddr + CSR0);
  235. udelay(100);
  236. /* Deassert reset.
  237.    Wait the specified 50 PCI cycles after a reset by initializing
  238.    Tx and Rx queues and the address filter list. */
  239. outl(tp->csr0, ioaddr + CSR0);
  240. udelay(100);
  241. if (tulip_debug > 1)
  242. printk(KERN_DEBUG "%s: tulip_up(), irq==%d.n", dev->name, dev->irq);
  243. outl(tp->rx_ring_dma, ioaddr + CSR3);
  244. outl(tp->tx_ring_dma, ioaddr + CSR4);
  245. tp->cur_rx = tp->cur_tx = 0;
  246. tp->dirty_rx = tp->dirty_tx = 0;
  247. if (tp->flags & MC_HASH_ONLY) {
  248. u32 addr_low = cpu_to_le32(get_unaligned((u32 *)dev->dev_addr));
  249. u32 addr_high = cpu_to_le32(get_unaligned((u16 *)(dev->dev_addr+4)));
  250. if (tp->chip_id == AX88140) {
  251. outl(0, ioaddr + CSR13);
  252. outl(addr_low,  ioaddr + CSR14);
  253. outl(1, ioaddr + CSR13);
  254. outl(addr_high, ioaddr + CSR14);
  255. } else if (tp->flags & COMET_MAC_ADDR) {
  256. outl(addr_low,  ioaddr + 0xA4);
  257. outl(addr_high, ioaddr + 0xA8);
  258. outl(0, ioaddr + 0xAC);
  259. outl(0, ioaddr + 0xB0);
  260. }
  261. } else {
  262. /* This is set_rx_mode(), but without starting the transmitter. */
  263. u16 *eaddrs = (u16 *)dev->dev_addr;
  264. u16 *setup_frm = &tp->setup_frame[15*6];
  265. dma_addr_t mapping;
  266. /* 21140 bug: you must add the broadcast address. */
  267. memset(tp->setup_frame, 0xff, sizeof(tp->setup_frame));
  268. /* Fill the final entry of the table with our physical address. */
  269. *setup_frm++ = eaddrs[0]; *setup_frm++ = eaddrs[0];
  270. *setup_frm++ = eaddrs[1]; *setup_frm++ = eaddrs[1];
  271. *setup_frm++ = eaddrs[2]; *setup_frm++ = eaddrs[2];
  272. mapping = pci_map_single(tp->pdev, tp->setup_frame,
  273.  sizeof(tp->setup_frame),
  274.  PCI_DMA_TODEVICE);
  275. tp->tx_buffers[tp->cur_tx].skb = NULL;
  276. tp->tx_buffers[tp->cur_tx].mapping = mapping;
  277. /* Put the setup frame on the Tx list. */
  278. tp->tx_ring[tp->cur_tx].length = cpu_to_le32(0x08000000 | 192);
  279. tp->tx_ring[tp->cur_tx].buffer1 = cpu_to_le32(mapping);
  280. tp->tx_ring[tp->cur_tx].status = cpu_to_le32(DescOwned);
  281. tp->cur_tx++;
  282. }
  283. tp->saved_if_port = dev->if_port;
  284. if (dev->if_port == 0)
  285. dev->if_port = tp->default_port;
  286. /* Allow selecting a default media. */
  287. i = 0;
  288. if (tp->mtable == NULL)
  289. goto media_picked;
  290. if (dev->if_port) {
  291. int looking_for = tulip_media_cap[dev->if_port] & MediaIsMII ? 11 :
  292. (dev->if_port == 12 ? 0 : dev->if_port);
  293. for (i = 0; i < tp->mtable->leafcount; i++)
  294. if (tp->mtable->mleaf[i].media == looking_for) {
  295. printk(KERN_INFO "%s: Using user-specified media %s.n",
  296.    dev->name, medianame[dev->if_port]);
  297. goto media_picked;
  298. }
  299. }
  300. if ((tp->mtable->defaultmedia & 0x0800) == 0) {
  301. int looking_for = tp->mtable->defaultmedia & MEDIA_MASK;
  302. for (i = 0; i < tp->mtable->leafcount; i++)
  303. if (tp->mtable->mleaf[i].media == looking_for) {
  304. printk(KERN_INFO "%s: Using EEPROM-set media %s.n",
  305.    dev->name, medianame[looking_for]);
  306. goto media_picked;
  307. }
  308. }
  309. /* Start sensing first non-full-duplex media. */
  310. for (i = tp->mtable->leafcount - 1;
  311.  (tulip_media_cap[tp->mtable->mleaf[i].media] & MediaAlwaysFD) && i > 0; i--)
  312. ;
  313. media_picked:
  314. tp->csr6 = 0;
  315. tp->cur_index = i;
  316. tp->nwayset = 0;
  317. if (dev->if_port) {
  318. if (tp->chip_id == DC21143  &&
  319.     (tulip_media_cap[dev->if_port] & MediaIsMII)) {
  320. /* We must reset the media CSRs when we force-select MII mode. */
  321. outl(0x0000, ioaddr + CSR13);
  322. outl(0x0000, ioaddr + CSR14);
  323. outl(0x0008, ioaddr + CSR15);
  324. }
  325. tulip_select_media(dev, 1);
  326. } else if (tp->chip_id == DC21041) {
  327. dev->if_port = 0;
  328. tp->nway = tp->mediasense = 1;
  329. tp->nwayset = tp->lpar = 0;
  330. outl(0x00000000, ioaddr + CSR13);
  331. outl(0xFFFFFFFF, ioaddr + CSR14);
  332. outl(0x00000008, ioaddr + CSR15); /* Listen on AUI also. */
  333. tp->csr6 = 0x80020000;
  334. if (tp->sym_advertise & 0x0040)
  335. tp->csr6 |= FullDuplex;
  336. outl(tp->csr6, ioaddr + CSR6);
  337. outl(0x0000EF01, ioaddr + CSR13);
  338. } else if (tp->chip_id == DC21142) {
  339. if (tp->mii_cnt) {
  340. tulip_select_media(dev, 1);
  341. if (tulip_debug > 1)
  342. printk(KERN_INFO "%s: Using MII transceiver %d, status "
  343.    "%4.4x.n",
  344.    dev->name, tp->phys[0], tulip_mdio_read(dev, tp->phys[0], 1));
  345. outl(csr6_mask_defstate, ioaddr + CSR6);
  346. tp->csr6 = csr6_mask_hdcap;
  347. dev->if_port = 11;
  348. outl(0x0000, ioaddr + CSR13);
  349. outl(0x0000, ioaddr + CSR14);
  350. } else
  351. t21142_start_nway(dev);
  352. } else if (tp->chip_id == PNIC2) {
  353.         /* for initial startup advertise 10/100 Full and Half */
  354.         tp->sym_advertise = 0x01E0;
  355.                 /* enable autonegotiate end interrupt */
  356.         outl(inl(ioaddr+CSR5)| 0x00008010, ioaddr + CSR5);
  357.         outl(inl(ioaddr+CSR7)| 0x00008010, ioaddr + CSR7);
  358. pnic2_start_nway(dev);
  359. } else if (tp->chip_id == LC82C168  &&  ! tp->medialock) {
  360. if (tp->mii_cnt) {
  361. dev->if_port = 11;
  362. tp->csr6 = 0x814C0000 | (tp->full_duplex ? 0x0200 : 0);
  363. outl(0x0001, ioaddr + CSR15);
  364. } else if (inl(ioaddr + CSR5) & TPLnkPass)
  365. pnic_do_nway(dev);
  366. else {
  367. /* Start with 10mbps to do autonegotiation. */
  368. outl(0x32, ioaddr + CSR12);
  369. tp->csr6 = 0x00420000;
  370. outl(0x0001B078, ioaddr + 0xB8);
  371. outl(0x0201B078, ioaddr + 0xB8);
  372. next_tick = 1*HZ;
  373. }
  374. } else if ((tp->chip_id == MX98713 || tp->chip_id == COMPEX9881)
  375.    && ! tp->medialock) {
  376. dev->if_port = 0;
  377. tp->csr6 = 0x01880000 | (tp->full_duplex ? 0x0200 : 0);
  378. outl(0x0f370000 | inw(ioaddr + 0x80), ioaddr + 0x80);
  379. } else if (tp->chip_id == MX98715 || tp->chip_id == MX98725) {
  380. /* Provided by BOLO, Macronix - 12/10/1998. */
  381. dev->if_port = 0;
  382. tp->csr6 = 0x01a80200;
  383. outl(0x0f370000 | inw(ioaddr + 0x80), ioaddr + 0x80);
  384. outl(0x11000 | inw(ioaddr + 0xa0), ioaddr + 0xa0);
  385. } else if (tp->chip_id == COMET) {
  386. /* Enable automatic Tx underrun recovery. */
  387. outl(inl(ioaddr + 0x88) | 1, ioaddr + 0x88);
  388. dev->if_port = tp->mii_cnt ? 11 : 0;
  389. tp->csr6 = 0x00040000;
  390. } else if (tp->chip_id == AX88140) {
  391. tp->csr6 = tp->mii_cnt ? 0x00040100 : 0x00000100;
  392. } else
  393. tulip_select_media(dev, 1);
  394. /* Start the chip's Tx to process setup frame. */
  395. tulip_stop_rxtx(tp);
  396. barrier();
  397. udelay(5);
  398. outl(tp->csr6 | TxOn, ioaddr + CSR6);
  399. /* Enable interrupts by setting the interrupt mask. */
  400. outl(tulip_tbl[tp->chip_id].valid_intrs, ioaddr + CSR5);
  401. outl(tulip_tbl[tp->chip_id].valid_intrs, ioaddr + CSR7);
  402. tulip_start_rxtx(tp);
  403. outl(0, ioaddr + CSR2); /* Rx poll demand */
  404. if (tulip_debug > 2) {
  405. printk(KERN_DEBUG "%s: Done tulip_up(), CSR0 %8.8x, CSR5 %8.8x CSR6 %8.8x.n",
  406.    dev->name, inl(ioaddr + CSR0), inl(ioaddr + CSR5),
  407.    inl(ioaddr + CSR6));
  408. }
  409. /* Set the timer to switch to check for link beat and perhaps switch
  410.    to an alternate media type. */
  411. tp->timer.expires = RUN_AT(next_tick);
  412. add_timer(&tp->timer);
  413. }
  414. #ifdef CONFIG_NET_HW_FLOWCONTROL
  415. /* Enable receiver */
  416. void tulip_xon(struct net_device *dev)
  417. {
  418.         struct tulip_private *tp = (struct tulip_private *)dev->priv;
  419.         clear_bit(tp->fc_bit, &netdev_fc_xoff);
  420.         if (netif_running(dev)){
  421.                 tulip_refill_rx(dev);
  422.                 outl(tulip_tbl[tp->chip_id].valid_intrs,  dev->base_addr+CSR7);
  423.         }
  424. }
  425. #endif
  426. static int
  427. tulip_open(struct net_device *dev)
  428. {
  429. #ifdef CONFIG_NET_HW_FLOWCONTROL
  430.         struct tulip_private *tp = (struct tulip_private *)dev->priv;
  431. #endif
  432. int retval;
  433. MOD_INC_USE_COUNT;
  434. if ((retval = request_irq(dev->irq, &tulip_interrupt, SA_SHIRQ, dev->name, dev))) {
  435. MOD_DEC_USE_COUNT;
  436. return retval;
  437. }
  438. tulip_init_ring (dev);
  439. tulip_up (dev);
  440. #ifdef CONFIG_NET_HW_FLOWCONTROL
  441.         tp->fc_bit = netdev_register_fc(dev, tulip_xon);
  442. #endif
  443. netif_start_queue (dev);
  444. return 0;
  445. }
  446. static void tulip_tx_timeout(struct net_device *dev)
  447. {
  448. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  449. long ioaddr = dev->base_addr;
  450. unsigned long flags;
  451. spin_lock_irqsave (&tp->lock, flags);
  452. if (tulip_media_cap[dev->if_port] & MediaIsMII) {
  453. /* Do nothing -- the media monitor should handle this. */
  454. if (tulip_debug > 1)
  455. printk(KERN_WARNING "%s: Transmit timeout using MII device.n",
  456.    dev->name);
  457. } else if (tp->chip_id == DC21040) {
  458. if ( !tp->medialock  &&  inl(ioaddr + CSR12) & 0x0002) {
  459. dev->if_port = (dev->if_port == 2 ? 0 : 2);
  460. printk(KERN_INFO "%s: 21040 transmit timed out, switching to "
  461.    "%s.n",
  462.    dev->name, medianame[dev->if_port]);
  463. tulip_select_media(dev, 0);
  464. }
  465. goto out;
  466. } else if (tp->chip_id == DC21041) {
  467. int csr12 = inl(ioaddr + CSR12);
  468. printk(KERN_WARNING "%s: 21041 transmit timed out, status %8.8x, "
  469.    "CSR12 %8.8x, CSR13 %8.8x, CSR14 %8.8x, resetting...n",
  470.    dev->name, inl(ioaddr + CSR5), csr12,
  471.    inl(ioaddr + CSR13), inl(ioaddr + CSR14));
  472. tp->mediasense = 1;
  473. if ( ! tp->medialock) {
  474. if (dev->if_port == 1 || dev->if_port == 2)
  475. if (csr12 & 0x0004) {
  476. dev->if_port = 2 - dev->if_port;
  477. } else
  478. dev->if_port = 0;
  479. else
  480. dev->if_port = 1;
  481. tulip_select_media(dev, 0);
  482. }
  483. } else if (tp->chip_id == DC21140 || tp->chip_id == DC21142
  484.    || tp->chip_id == MX98713 || tp->chip_id == COMPEX9881
  485.    || tp->chip_id == DM910X) {
  486. printk(KERN_WARNING "%s: 21140 transmit timed out, status %8.8x, "
  487.    "SIA %8.8x %8.8x %8.8x %8.8x, resetting...n",
  488.    dev->name, inl(ioaddr + CSR5), inl(ioaddr + CSR12),
  489.    inl(ioaddr + CSR13), inl(ioaddr + CSR14), inl(ioaddr + CSR15));
  490. if ( ! tp->medialock  &&  tp->mtable) {
  491. do
  492. --tp->cur_index;
  493. while (tp->cur_index >= 0
  494.    && (tulip_media_cap[tp->mtable->mleaf[tp->cur_index].media]
  495.    & MediaIsFD));
  496. if (--tp->cur_index < 0) {
  497. /* We start again, but should instead look for default. */
  498. tp->cur_index = tp->mtable->leafcount - 1;
  499. }
  500. tulip_select_media(dev, 0);
  501. printk(KERN_WARNING "%s: transmit timed out, switching to %s "
  502.    "media.n", dev->name, medianame[dev->if_port]);
  503. }
  504. } else if (tp->chip_id == PNIC2) {
  505. printk(KERN_WARNING "%s: PNIC2 transmit timed out, status %8.8x, "
  506.        "CSR6/7 %8.8x / %8.8x CSR12 %8.8x, resetting...n",
  507.        dev->name, (int)inl(ioaddr + CSR5), (int)inl(ioaddr + CSR6),
  508.        (int)inl(ioaddr + CSR7), (int)inl(ioaddr + CSR12));
  509. } else {
  510. printk(KERN_WARNING "%s: Transmit timed out, status %8.8x, CSR12 "
  511.    "%8.8x, resetting...n",
  512.    dev->name, inl(ioaddr + CSR5), inl(ioaddr + CSR12));
  513. dev->if_port = 0;
  514. }
  515. #if defined(way_too_many_messages)
  516. if (tulip_debug > 3) {
  517. int i;
  518. for (i = 0; i < RX_RING_SIZE; i++) {
  519. u8 *buf = (u8 *)(tp->rx_ring[i].buffer1);
  520. int j;
  521. printk(KERN_DEBUG "%2d: %8.8x %8.8x %8.8x %8.8x  "
  522.    "%2.2x %2.2x %2.2x.n",
  523.    i, (unsigned int)tp->rx_ring[i].status,
  524.    (unsigned int)tp->rx_ring[i].length,
  525.    (unsigned int)tp->rx_ring[i].buffer1,
  526.    (unsigned int)tp->rx_ring[i].buffer2,
  527.    buf[0], buf[1], buf[2]);
  528. for (j = 0; buf[j] != 0xee && j < 1600; j++)
  529. if (j < 100) printk(" %2.2x", buf[j]);
  530. printk(" j=%d.n", j);
  531. }
  532. printk(KERN_DEBUG "  Rx ring %8.8x: ", (int)tp->rx_ring);
  533. for (i = 0; i < RX_RING_SIZE; i++)
  534. printk(" %8.8x", (unsigned int)tp->rx_ring[i].status);
  535. printk("n" KERN_DEBUG "  Tx ring %8.8x: ", (int)tp->tx_ring);
  536. for (i = 0; i < TX_RING_SIZE; i++)
  537. printk(" %8.8x", (unsigned int)tp->tx_ring[i].status);
  538. printk("n");
  539. }
  540. #endif
  541. /* Stop and restart the chip's Tx processes . */
  542. #ifdef CONFIG_NET_HW_FLOWCONTROL
  543.         if (tp->fc_bit && test_bit(tp->fc_bit,&netdev_fc_xoff))
  544.                 printk("BUG tx_timeout restarting rx when fc onn");
  545. #endif
  546. tulip_restart_rxtx(tp);
  547. /* Trigger an immediate transmit demand. */
  548. outl(0, ioaddr + CSR1);
  549. tp->stats.tx_errors++;
  550. out:
  551. spin_unlock_irqrestore (&tp->lock, flags);
  552. dev->trans_start = jiffies;
  553. netif_wake_queue (dev);
  554. }
  555. /* Initialize the Rx and Tx rings, along with various 'dev' bits. */
  556. static void tulip_init_ring(struct net_device *dev)
  557. {
  558. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  559. int i;
  560. tp->susp_rx = 0;
  561. tp->ttimer = 0;
  562. tp->nir = 0;
  563. for (i = 0; i < RX_RING_SIZE; i++) {
  564. tp->rx_ring[i].status = 0x00000000;
  565. tp->rx_ring[i].length = cpu_to_le32(PKT_BUF_SZ);
  566. tp->rx_ring[i].buffer2 = cpu_to_le32(tp->rx_ring_dma + sizeof(struct tulip_rx_desc) * (i + 1));
  567. tp->rx_buffers[i].skb = NULL;
  568. tp->rx_buffers[i].mapping = 0;
  569. }
  570. /* Mark the last entry as wrapping the ring. */
  571. tp->rx_ring[i-1].length = cpu_to_le32(PKT_BUF_SZ | DESC_RING_WRAP);
  572. tp->rx_ring[i-1].buffer2 = cpu_to_le32(tp->rx_ring_dma);
  573. for (i = 0; i < RX_RING_SIZE; i++) {
  574. dma_addr_t mapping;
  575. /* Note the receive buffer must be longword aligned.
  576.    dev_alloc_skb() provides 16 byte alignment.  But do *not*
  577.    use skb_reserve() to align the IP header! */
  578. struct sk_buff *skb = dev_alloc_skb(PKT_BUF_SZ);
  579. tp->rx_buffers[i].skb = skb;
  580. if (skb == NULL)
  581. break;
  582. mapping = pci_map_single(tp->pdev, skb->tail,
  583.  PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
  584. tp->rx_buffers[i].mapping = mapping;
  585. skb->dev = dev; /* Mark as being used by this device. */
  586. tp->rx_ring[i].status = cpu_to_le32(DescOwned); /* Owned by Tulip chip */
  587. tp->rx_ring[i].buffer1 = cpu_to_le32(mapping);
  588. }
  589. tp->dirty_rx = (unsigned int)(i - RX_RING_SIZE);
  590. /* The Tx buffer descriptor is filled in as needed, but we
  591.    do need to clear the ownership bit. */
  592. for (i = 0; i < TX_RING_SIZE; i++) {
  593. tp->tx_buffers[i].skb = NULL;
  594. tp->tx_buffers[i].mapping = 0;
  595. tp->tx_ring[i].status = 0x00000000;
  596. tp->tx_ring[i].buffer2 = cpu_to_le32(tp->tx_ring_dma + sizeof(struct tulip_tx_desc) * (i + 1));
  597. }
  598. tp->tx_ring[i-1].buffer2 = cpu_to_le32(tp->tx_ring_dma);
  599. }
  600. static int
  601. tulip_start_xmit(struct sk_buff *skb, struct net_device *dev)
  602. {
  603. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  604. int entry;
  605. u32 flag;
  606. dma_addr_t mapping;
  607. unsigned long eflags;
  608. spin_lock_irqsave(&tp->lock, eflags);
  609. /* Calculate the next Tx descriptor entry. */
  610. entry = tp->cur_tx % TX_RING_SIZE;
  611. tp->tx_buffers[entry].skb = skb;
  612. mapping = pci_map_single(tp->pdev, skb->data,
  613.  skb->len, PCI_DMA_TODEVICE);
  614. tp->tx_buffers[entry].mapping = mapping;
  615. tp->tx_ring[entry].buffer1 = cpu_to_le32(mapping);
  616. if (tp->cur_tx - tp->dirty_tx < TX_RING_SIZE/2) {/* Typical path */
  617. flag = 0x60000000; /* No interrupt */
  618. } else if (tp->cur_tx - tp->dirty_tx == TX_RING_SIZE/2) {
  619. flag = 0xe0000000; /* Tx-done intr. */
  620. } else if (tp->cur_tx - tp->dirty_tx < TX_RING_SIZE - 2) {
  621. flag = 0x60000000; /* No Tx-done intr. */
  622. } else { /* Leave room for set_rx_mode() to fill entries. */
  623. flag = 0xe0000000; /* Tx-done intr. */
  624. netif_stop_queue(dev);
  625. }
  626. if (entry == TX_RING_SIZE-1)
  627. flag = 0xe0000000 | DESC_RING_WRAP;
  628. tp->tx_ring[entry].length = cpu_to_le32(skb->len | flag);
  629. /* if we were using Transmit Automatic Polling, we would need a
  630.  * wmb() here. */
  631. tp->tx_ring[entry].status = cpu_to_le32(DescOwned);
  632. wmb();
  633. tp->cur_tx++;
  634. /* Trigger an immediate transmit demand. */
  635. outl(0, dev->base_addr + CSR1);
  636. spin_unlock_irqrestore(&tp->lock, eflags);
  637. dev->trans_start = jiffies;
  638. return 0;
  639. }
  640. static void tulip_clean_tx_ring(struct tulip_private *tp)
  641. {
  642. unsigned int dirty_tx;
  643. for (dirty_tx = tp->dirty_tx ; tp->cur_tx - dirty_tx > 0;
  644. dirty_tx++) {
  645. int entry = dirty_tx % TX_RING_SIZE;
  646. int status = le32_to_cpu(tp->tx_ring[entry].status);
  647. if (status < 0) {
  648. tp->stats.tx_errors++; /* It wasn't Txed */
  649. tp->tx_ring[entry].status = 0;
  650. }
  651. /* Check for Tx filter setup frames. */
  652. if (tp->tx_buffers[entry].skb == NULL) {
  653. /* test because dummy frames not mapped */
  654. if (tp->tx_buffers[entry].mapping)
  655. pci_unmap_single(tp->pdev,
  656. tp->tx_buffers[entry].mapping,
  657. sizeof(tp->setup_frame),
  658. PCI_DMA_TODEVICE);
  659. continue;
  660. }
  661. pci_unmap_single(tp->pdev, tp->tx_buffers[entry].mapping,
  662. tp->tx_buffers[entry].skb->len,
  663. PCI_DMA_TODEVICE);
  664. /* Free the original skb. */
  665. dev_kfree_skb_irq(tp->tx_buffers[entry].skb);
  666. tp->tx_buffers[entry].skb = NULL;
  667. tp->tx_buffers[entry].mapping = 0;
  668. }
  669. }
  670. static void tulip_down (struct net_device *dev)
  671. {
  672. long ioaddr = dev->base_addr;
  673. struct tulip_private *tp = (struct tulip_private *) dev->priv;
  674. unsigned long flags;
  675. del_timer_sync (&tp->timer);
  676. spin_lock_irqsave (&tp->lock, flags);
  677. /* Disable interrupts by clearing the interrupt mask. */
  678. outl (0x00000000, ioaddr + CSR7);
  679. /* Stop the Tx and Rx processes. */
  680. tulip_stop_rxtx(tp);
  681. /* prepare receive buffers */
  682. tulip_refill_rx(dev);
  683. /* release any unconsumed transmit buffers */
  684. tulip_clean_tx_ring(tp);
  685. /* 21040 -- Leave the card in 10baseT state. */
  686. if (tp->chip_id == DC21040)
  687. outl (0x00000004, ioaddr + CSR13);
  688. if (inl (ioaddr + CSR6) != 0xffffffff)
  689. tp->stats.rx_missed_errors += inl (ioaddr + CSR8) & 0xffff;
  690. spin_unlock_irqrestore (&tp->lock, flags);
  691. init_timer(&tp->timer);
  692. tp->timer.data = (unsigned long)dev;
  693. tp->timer.function = tulip_tbl[tp->chip_id].media_timer;
  694. dev->if_port = tp->saved_if_port;
  695. /* Leave the driver in snooze, not sleep, mode. */
  696. tulip_set_power_state (tp, 0, 1);
  697. }
  698. static int tulip_close (struct net_device *dev)
  699. {
  700. long ioaddr = dev->base_addr;
  701. struct tulip_private *tp = (struct tulip_private *) dev->priv;
  702. int i;
  703. netif_stop_queue (dev);
  704. #ifdef CONFIG_NET_HW_FLOWCONTROL
  705.         if (tp->fc_bit) {
  706.                 int bit = tp->fc_bit;
  707.                 tp->fc_bit = 0;
  708.                 netdev_unregister_fc(bit);
  709.         }
  710. #endif
  711. tulip_down (dev);
  712. if (tulip_debug > 1)
  713. printk (KERN_DEBUG "%s: Shutting down ethercard, status was %2.2x.n",
  714. dev->name, inl (ioaddr + CSR5));
  715. free_irq (dev->irq, dev);
  716. /* Free all the skbuffs in the Rx queue. */
  717. for (i = 0; i < RX_RING_SIZE; i++) {
  718. struct sk_buff *skb = tp->rx_buffers[i].skb;
  719. dma_addr_t mapping = tp->rx_buffers[i].mapping;
  720. tp->rx_buffers[i].skb = NULL;
  721. tp->rx_buffers[i].mapping = 0;
  722. tp->rx_ring[i].status = 0; /* Not owned by Tulip chip. */
  723. tp->rx_ring[i].length = 0;
  724. tp->rx_ring[i].buffer1 = 0xBADF00D0; /* An invalid address. */
  725. if (skb) {
  726. pci_unmap_single(tp->pdev, mapping, PKT_BUF_SZ,
  727.  PCI_DMA_FROMDEVICE);
  728. dev_kfree_skb (skb);
  729. }
  730. }
  731. for (i = 0; i < TX_RING_SIZE; i++) {
  732. struct sk_buff *skb = tp->tx_buffers[i].skb;
  733. if (skb != NULL) {
  734. pci_unmap_single(tp->pdev, tp->tx_buffers[i].mapping,
  735.  skb->len, PCI_DMA_TODEVICE);
  736. dev_kfree_skb (skb);
  737. }
  738. tp->tx_buffers[i].skb = NULL;
  739. tp->tx_buffers[i].mapping = 0;
  740. }
  741. MOD_DEC_USE_COUNT;
  742. return 0;
  743. }
  744. static struct net_device_stats *tulip_get_stats(struct net_device *dev)
  745. {
  746. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  747. long ioaddr = dev->base_addr;
  748. if (netif_running(dev)) {
  749. unsigned long flags;
  750. spin_lock_irqsave (&tp->lock, flags);
  751. tp->stats.rx_missed_errors += inl(ioaddr + CSR8) & 0xffff;
  752. spin_unlock_irqrestore(&tp->lock, flags);
  753. }
  754. return &tp->stats;
  755. }
  756. static int netdev_ethtool_ioctl(struct net_device *dev, void *useraddr)
  757. {
  758. struct tulip_private *np = dev->priv;
  759. u32 ethcmd;
  760. if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
  761. return -EFAULT;
  762.         switch (ethcmd) {
  763.         case ETHTOOL_GDRVINFO: {
  764. struct ethtool_drvinfo info = {ETHTOOL_GDRVINFO};
  765. strcpy(info.driver, DRV_NAME);
  766. strcpy(info.version, DRV_VERSION);
  767. strcpy(info.bus_info, np->pdev->slot_name);
  768. if (copy_to_user(useraddr, &info, sizeof(info)))
  769. return -EFAULT;
  770. return 0;
  771. }
  772.         }
  773. return -EOPNOTSUPP;
  774. }
  775. /* Provide ioctl() calls to examine the MII xcvr state. */
  776. static int private_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
  777. {
  778. struct tulip_private *tp = dev->priv;
  779. long ioaddr = dev->base_addr;
  780. struct mii_ioctl_data *data = (struct mii_ioctl_data *) & rq->ifr_data;
  781. const unsigned int phy_idx = 0;
  782. int phy = tp->phys[phy_idx] & 0x1f;
  783. unsigned int regnum = data->reg_num;
  784. switch (cmd) {
  785. case SIOCETHTOOL:
  786. return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  787. case SIOCGMIIPHY: /* Get address of MII PHY in use. */
  788. case SIOCDEVPRIVATE: /* for binary compat, remove in 2.5 */
  789. if (tp->mii_cnt)
  790. data->phy_id = phy;
  791. else if (tp->flags & HAS_NWAY)
  792. data->phy_id = 32;
  793. else if (tp->chip_id == COMET)
  794. data->phy_id = 1;
  795. else
  796. return -ENODEV;
  797. case SIOCGMIIREG: /* Read MII PHY register. */
  798. case SIOCDEVPRIVATE+1: /* for binary compat, remove in 2.5 */
  799. if (data->phy_id == 32 && (tp->flags & HAS_NWAY)) {
  800. int csr12 = inl (ioaddr + CSR12);
  801. int csr14 = inl (ioaddr + CSR14);
  802. switch (regnum) {
  803. case 0:
  804.                                 if (((csr14<<5) & 0x1000) ||
  805.                                         (dev->if_port == 5 && tp->nwayset))
  806.                                         data->val_out = 0x1000;
  807.                                 else
  808.                                         data->val_out = (tulip_media_cap[dev->if_port]&MediaIs100 ? 0x2000 : 0)
  809.                                                 | (tulip_media_cap[dev->if_port]&MediaIsFD ? 0x0100 : 0);
  810. break;
  811. case 1:
  812.                                 data->val_out =
  813. 0x1848 +
  814. ((csr12&0x7000) == 0x5000 ? 0x20 : 0) +
  815. ((csr12&0x06) == 6 ? 0 : 4);
  816.                                 if (tp->chip_id != DC21041)
  817.                                         data->val_out |= 0x6048;
  818. break;
  819. case 4:
  820.                                 /* Advertised value, bogus 10baseTx-FD value from CSR6. */
  821.                                 data->val_out =
  822. ((inl(ioaddr + CSR6) >> 3) & 0x0040) +
  823. ((csr14 >> 1) & 0x20) + 1;
  824.                                 if (tp->chip_id != DC21041)
  825.                                          data->val_out |= ((csr14 >> 9) & 0x03C0);
  826. break;
  827. case 5: data->val_out = tp->lpar; break;
  828. default: data->val_out = 0; break;
  829. }
  830. } else {
  831. data->val_out = tulip_mdio_read (dev, data->phy_id & 0x1f, regnum);
  832. }
  833. return 0;
  834. case SIOCSMIIREG: /* Write MII PHY register. */
  835. case SIOCDEVPRIVATE+2: /* for binary compat, remove in 2.5 */
  836. if (!capable (CAP_NET_ADMIN))
  837. return -EPERM;
  838. if (regnum & ~0x1f)
  839. return -EINVAL;
  840. if (data->phy_id == phy) {
  841. u16 value = data->val_in;
  842. switch (regnum) {
  843. case 0: /* Check for autonegotiation on or reset. */
  844. tp->full_duplex_lock = (value & 0x9000) ? 0 : 1;
  845. if (tp->full_duplex_lock)
  846. tp->full_duplex = (value & 0x0100) ? 1 : 0;
  847. break;
  848. case 4:
  849. tp->advertising[phy_idx] =
  850. tp->mii_advertise = data->val_in;
  851. break;
  852. }
  853. }
  854. if (data->phy_id == 32 && (tp->flags & HAS_NWAY)) {
  855. u16 value = data->val_in;
  856. if (regnum == 0) {
  857.   if ((value & 0x1200) == 0x1200) {
  858.     if (tp->chip_id == PNIC2) {
  859.                                    pnic2_start_nway (dev);
  860.                             } else {
  861.    t21142_start_nway (dev);
  862.                             }
  863.   }
  864. } else if (regnum == 4)
  865. tp->sym_advertise = value;
  866. } else {
  867. tulip_mdio_write (dev, data->phy_id & 0x1f, regnum, data->val_in);
  868. }
  869. return 0;
  870. default:
  871. return -EOPNOTSUPP;
  872. }
  873. return -EOPNOTSUPP;
  874. }
  875. /* Set or clear the multicast filter for this adaptor.
  876.    Note that we only use exclusion around actually queueing the
  877.    new frame, not around filling tp->setup_frame.  This is non-deterministic
  878.    when re-entered but still correct. */
  879. /* The little-endian AUTODIN32 ethernet CRC calculation.
  880.    N.B. Do not use for bulk data, use a table-based routine instead.
  881.    This is common code and should be moved to net/core/crc.c */
  882. static unsigned const ethernet_polynomial_le = 0xedb88320U;
  883. static inline u32 ether_crc_le(int length, unsigned char *data)
  884. {
  885. u32 crc = 0xffffffff; /* Initial value. */
  886. while(--length >= 0) {
  887. unsigned char current_octet = *data++;
  888. int bit;
  889. for (bit = 8; --bit >= 0; current_octet >>= 1) {
  890. if ((crc ^ current_octet) & 1) {
  891. crc >>= 1;
  892. crc ^= ethernet_polynomial_le;
  893. } else
  894. crc >>= 1;
  895. }
  896. }
  897. return crc;
  898. }
  899. static unsigned const ethernet_polynomial = 0x04c11db7U;
  900. static inline u32 ether_crc(int length, unsigned char *data)
  901. {
  902.     int crc = -1;
  903.     while(--length >= 0) {
  904. unsigned char current_octet = *data++;
  905. int bit;
  906. for (bit = 0; bit < 8; bit++, current_octet >>= 1)
  907. crc = (crc << 1) ^
  908. ((crc < 0) ^ (current_octet & 1) ? ethernet_polynomial : 0);
  909.     }
  910.     return crc;
  911. }
  912. #undef set_bit_le
  913. #define set_bit_le(i,p) do { ((char *)(p))[(i)/8] |= (1<<((i)%8)); } while(0)
  914. static void build_setup_frame_hash(u16 *setup_frm, struct net_device *dev)
  915. {
  916. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  917. u16 hash_table[32];
  918. struct dev_mc_list *mclist;
  919. int i;
  920. u16 *eaddrs;
  921. memset(hash_table, 0, sizeof(hash_table));
  922. set_bit_le(255, hash_table);  /* Broadcast entry */
  923. /* This should work on big-endian machines as well. */
  924. for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
  925.      i++, mclist = mclist->next) {
  926. int index = ether_crc_le(ETH_ALEN, mclist->dmi_addr) & 0x1ff;
  927. set_bit_le(index, hash_table);
  928. for (i = 0; i < 32; i++) {
  929. *setup_frm++ = hash_table[i];
  930. *setup_frm++ = hash_table[i];
  931. }
  932. setup_frm = &tp->setup_frame[13*6];
  933. }
  934. /* Fill the final entry with our physical address. */
  935. eaddrs = (u16 *)dev->dev_addr;
  936. *setup_frm++ = eaddrs[0]; *setup_frm++ = eaddrs[0];
  937. *setup_frm++ = eaddrs[1]; *setup_frm++ = eaddrs[1];
  938. *setup_frm++ = eaddrs[2]; *setup_frm++ = eaddrs[2];
  939. }
  940. static void build_setup_frame_perfect(u16 *setup_frm, struct net_device *dev)
  941. {
  942. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  943. struct dev_mc_list *mclist;
  944. int i;
  945. u16 *eaddrs;
  946. /* We have <= 14 addresses so we can use the wonderful
  947.    16 address perfect filtering of the Tulip. */
  948. for (i = 0, mclist = dev->mc_list; i < dev->mc_count;
  949.      i++, mclist = mclist->next) {
  950. eaddrs = (u16 *)mclist->dmi_addr;
  951. *setup_frm++ = *eaddrs; *setup_frm++ = *eaddrs++;
  952. *setup_frm++ = *eaddrs; *setup_frm++ = *eaddrs++;
  953. *setup_frm++ = *eaddrs; *setup_frm++ = *eaddrs++;
  954. }
  955. /* Fill the unused entries with the broadcast address. */
  956. memset(setup_frm, 0xff, (15-i)*12);
  957. setup_frm = &tp->setup_frame[15*6];
  958. /* Fill the final entry with our physical address. */
  959. eaddrs = (u16 *)dev->dev_addr;
  960. *setup_frm++ = eaddrs[0]; *setup_frm++ = eaddrs[0];
  961. *setup_frm++ = eaddrs[1]; *setup_frm++ = eaddrs[1];
  962. *setup_frm++ = eaddrs[2]; *setup_frm++ = eaddrs[2];
  963. }
  964. static void set_rx_mode(struct net_device *dev)
  965. {
  966. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  967. long ioaddr = dev->base_addr;
  968. int csr6;
  969. csr6 = inl(ioaddr + CSR6) & ~0x00D5;
  970. tp->csr6 &= ~0x00D5;
  971. if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
  972. tp->csr6 |= AcceptAllMulticast | AcceptAllPhys;
  973. csr6 |= AcceptAllMulticast | AcceptAllPhys;
  974. /* Unconditionally log net taps. */
  975. printk(KERN_INFO "%s: Promiscuous mode enabled.n", dev->name);
  976. } else if ((dev->mc_count > 1000)  ||  (dev->flags & IFF_ALLMULTI)) {
  977. /* Too many to filter well -- accept all multicasts. */
  978. tp->csr6 |= AcceptAllMulticast;
  979. csr6 |= AcceptAllMulticast;
  980. } else if (tp->flags & MC_HASH_ONLY) {
  981. /* Some work-alikes have only a 64-entry hash filter table. */
  982. /* Should verify correctness on big-endian/__powerpc__ */
  983. struct dev_mc_list *mclist;
  984. int i;
  985. if (dev->mc_count > 64) { /* Arbitrary non-effective limit. */
  986. tp->csr6 |= AcceptAllMulticast;
  987. csr6 |= AcceptAllMulticast;
  988. } else {
  989. u32 mc_filter[2] = {0, 0};  /* Multicast hash filter */
  990. int filterbit;
  991. for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
  992.  i++, mclist = mclist->next) {
  993. if (tp->flags & COMET_MAC_ADDR)
  994. filterbit = ether_crc_le(ETH_ALEN, mclist->dmi_addr);
  995. else
  996. filterbit = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
  997. filterbit &= 0x3f;
  998. mc_filter[filterbit >> 5] |= cpu_to_le32(1 << (filterbit & 31));
  999. if (tulip_debug > 2) {
  1000. printk(KERN_INFO "%s: Added filter for %2.2x:%2.2x:%2.2x:"
  1001.    "%2.2x:%2.2x:%2.2x  %8.8x bit %d.n", dev->name,
  1002.    mclist->dmi_addr[0], mclist->dmi_addr[1],
  1003.    mclist->dmi_addr[2], mclist->dmi_addr[3],
  1004.    mclist->dmi_addr[4], mclist->dmi_addr[5],
  1005.    ether_crc(ETH_ALEN, mclist->dmi_addr), filterbit);
  1006. }
  1007. }
  1008. if (mc_filter[0] == tp->mc_filter[0]  &&
  1009. mc_filter[1] == tp->mc_filter[1])
  1010. ; /* No change. */
  1011. else if (tp->flags & IS_ASIX) {
  1012. outl(2, ioaddr + CSR13);
  1013. outl(mc_filter[0], ioaddr + CSR14);
  1014. outl(3, ioaddr + CSR13);
  1015. outl(mc_filter[1], ioaddr + CSR14);
  1016. } else if (tp->flags & COMET_MAC_ADDR) {
  1017. outl(mc_filter[0], ioaddr + 0xAC);
  1018. outl(mc_filter[1], ioaddr + 0xB0);
  1019. }
  1020. tp->mc_filter[0] = mc_filter[0];
  1021. tp->mc_filter[1] = mc_filter[1];
  1022. }
  1023. } else {
  1024. unsigned long flags;
  1025. /* Note that only the low-address shortword of setup_frame is valid!
  1026.    The values are doubled for big-endian architectures. */
  1027. if (dev->mc_count > 14) { /* Must use a multicast hash table. */
  1028. build_setup_frame_hash(tp->setup_frame, dev);
  1029. } else {
  1030. build_setup_frame_perfect(tp->setup_frame, dev);
  1031. }
  1032. spin_lock_irqsave(&tp->lock, flags);
  1033. if (tp->cur_tx - tp->dirty_tx > TX_RING_SIZE - 2) {
  1034. /* Same setup recently queued, we need not add it. */
  1035. } else {
  1036. u32 tx_flags = 0x08000000 | 192;
  1037. unsigned int entry;
  1038. int dummy = -1;
  1039. /* Now add this frame to the Tx list. */
  1040. entry = tp->cur_tx++ % TX_RING_SIZE;
  1041. if (entry != 0) {
  1042. /* Avoid a chip errata by prefixing a dummy entry. */
  1043. tp->tx_buffers[entry].skb = NULL;
  1044. tp->tx_buffers[entry].mapping = 0;
  1045. tp->tx_ring[entry].length =
  1046. (entry == TX_RING_SIZE-1) ? cpu_to_le32(DESC_RING_WRAP) : 0;
  1047. tp->tx_ring[entry].buffer1 = 0;
  1048. /* Must set DescOwned later to avoid race with chip */
  1049. dummy = entry;
  1050. entry = tp->cur_tx++ % TX_RING_SIZE;
  1051. }
  1052. tp->tx_buffers[entry].skb = NULL;
  1053. tp->tx_buffers[entry].mapping =
  1054. pci_map_single(tp->pdev, tp->setup_frame,
  1055.        sizeof(tp->setup_frame),
  1056.        PCI_DMA_TODEVICE);
  1057. /* Put the setup frame on the Tx list. */
  1058. if (entry == TX_RING_SIZE-1)
  1059. tx_flags |= DESC_RING_WRAP; /* Wrap ring. */
  1060. tp->tx_ring[entry].length = cpu_to_le32(tx_flags);
  1061. tp->tx_ring[entry].buffer1 =
  1062. cpu_to_le32(tp->tx_buffers[entry].mapping);
  1063. tp->tx_ring[entry].status = cpu_to_le32(DescOwned);
  1064. if (dummy >= 0)
  1065. tp->tx_ring[dummy].status = cpu_to_le32(DescOwned);
  1066. if (tp->cur_tx - tp->dirty_tx >= TX_RING_SIZE - 2)
  1067. netif_stop_queue(dev);
  1068. /* Trigger an immediate transmit demand. */
  1069. outl(0, ioaddr + CSR1);
  1070. }
  1071. spin_unlock_irqrestore(&tp->lock, flags);
  1072. }
  1073. outl(csr6, ioaddr + CSR6);
  1074. }
  1075. #ifdef CONFIG_TULIP_MWI
  1076. static void __devinit tulip_mwi_config (struct pci_dev *pdev,
  1077. struct net_device *dev)
  1078. {
  1079. struct tulip_private *tp = dev->priv;
  1080. u8 cache;
  1081. u16 pci_command, new_command;
  1082. u32 csr0;
  1083. if (tulip_debug > 3)
  1084. printk(KERN_DEBUG "%s: tulip_mwi_config()n", pdev->slot_name);
  1085. tp->csr0 = csr0 = 0;
  1086. /* check for sane cache line size. from acenic.c. */
  1087. pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cache);
  1088. if ((cache << 2) != SMP_CACHE_BYTES) {
  1089. printk(KERN_WARNING "%s: PCI cache line size set incorrectly "
  1090.        "(%i bytes) by BIOS/FW, correcting to %in",
  1091.        pdev->slot_name, (cache << 2), SMP_CACHE_BYTES);
  1092. pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
  1093.       SMP_CACHE_BYTES >> 2);
  1094. udelay(5);
  1095. }
  1096. /* read cache line size again, hardware may not have accepted
  1097.  * our cache line size change
  1098.  */
  1099. pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cache);
  1100. if (!cache)
  1101. goto out;
  1102. /* if we have any cache line size at all, we can do MRM */
  1103. csr0 |= MRM;
  1104. /* ...and barring hardware bugs, MWI */
  1105. if (!(tp->chip_id == DC21143 && tp->revision == 65))
  1106. csr0 |= MWI;
  1107. /* set or disable MWI in the standard PCI command bit.
  1108.  * Check for the case where  mwi is desired but not available
  1109.  */
  1110. pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
  1111. if (csr0 & MWI) new_command = pci_command | PCI_COMMAND_INVALIDATE;
  1112. else new_command = pci_command & ~PCI_COMMAND_INVALIDATE;
  1113. if (new_command != pci_command) {
  1114. pci_write_config_word(pdev, PCI_COMMAND, new_command);
  1115. udelay(5);
  1116. pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
  1117. if ((csr0 & MWI) && (!(pci_command & PCI_COMMAND_INVALIDATE)))
  1118. csr0 &= ~MWI;
  1119. }
  1120. /* assign per-cacheline-size cache alignment and
  1121.  * burst length values
  1122.  */
  1123. switch (cache) {
  1124. case 8:
  1125. csr0 |= MRL | (1 << CALShift) | (16 << BurstLenShift);
  1126. break;
  1127. case 16:
  1128. csr0 |= MRL | (2 << CALShift) | (16 << BurstLenShift);
  1129. break;
  1130. case 32:
  1131. csr0 |= MRL | (3 << CALShift) | (32 << BurstLenShift);
  1132. break;
  1133. default:
  1134. goto out;
  1135. }
  1136. tp->csr0 = csr0;
  1137. goto out;
  1138. if (csr0 & MWI) {
  1139. pci_command &= ~PCI_COMMAND_INVALIDATE;
  1140. pci_write_config_word(pdev, PCI_COMMAND, pci_command);
  1141. csr0 &= ~MWI;
  1142. }
  1143. tp->csr0 = csr0 | (8 << BurstLenShift) | (1 << CALShift);
  1144. out:
  1145. if (tulip_debug > 2)
  1146. printk(KERN_DEBUG "%s: MWI config cacheline=%d, csr0=%08xn",
  1147.        pdev->slot_name, cache, csr0);
  1148. }
  1149. #endif
  1150. static int __devinit tulip_init_one (struct pci_dev *pdev,
  1151.      const struct pci_device_id *ent)
  1152. {
  1153. struct tulip_private *tp;
  1154. /* See note below on the multiport cards. */
  1155. static unsigned char last_phys_addr[6] = {0x00, 'L', 'i', 'n', 'u', 'x'};
  1156. static int last_irq;
  1157. static int multiport_cnt; /* For four-port boards w/one EEPROM */
  1158. u8 chip_rev;
  1159. int i, irq;
  1160. unsigned short sum;
  1161. u8 ee_data[EEPROM_SIZE];
  1162. struct net_device *dev;
  1163. long ioaddr;
  1164. static int board_idx = -1;
  1165. int chip_idx = ent->driver_data;
  1166. unsigned int t2104x_mode = 0;
  1167. unsigned int eeprom_missing = 0;
  1168. unsigned int force_csr0 = 0;
  1169. #ifndef MODULE
  1170. static int did_version; /* Already printed version info. */
  1171. if (tulip_debug > 0  &&  did_version++ == 0)
  1172. printk (KERN_INFO "%s", version);
  1173. #endif
  1174. board_idx++;
  1175. /*
  1176.  * Lan media wire a tulip chip to a wan interface. Needs a very
  1177.  * different driver (lmc driver)
  1178.  */
  1179.         if (pdev->subsystem_vendor == PCI_VENDOR_ID_LMC) {
  1180. printk (KERN_ERR PFX "skipping LMC card.n");
  1181. return -ENODEV;
  1182. }
  1183. /*
  1184.  * Early DM9100's need software CRC and the DMFE driver
  1185.  */
  1186. if (pdev->vendor == 0x1282 && pdev->device == 0x9100)
  1187. {
  1188. u32 dev_rev;
  1189. /* Read Chip revision */
  1190. pci_read_config_dword(pdev, PCI_REVISION_ID, &dev_rev);
  1191. if(dev_rev < 0x02000030)
  1192. {
  1193. printk(KERN_ERR PFX "skipping early DM9100 with Crc bug (use dmfe)n");
  1194. return -ENODEV;
  1195. }
  1196. }
  1197. /*
  1198.  * Looks for early PCI chipsets where people report hangs
  1199.  * without the workarounds being on.
  1200.  */
  1201. /* Intel Saturn. Switch to 8 long words burst, 8 long word cache aligned
  1202.    Aries might need this too. The Saturn errata are not pretty reading but
  1203.    thankfully its an old 486 chipset.
  1204. */
  1205. if (pci_find_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82424, NULL)) {
  1206. csr0 = MRL | MRM | (8 << BurstLenShift) | (1 << CALShift);
  1207. force_csr0 = 1;
  1208. }
  1209. /* The dreaded SiS496 486 chipset. Same workaround as above. */
  1210. if (pci_find_device(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_496, NULL)) {
  1211. csr0 = MRL | MRM | (8 << BurstLenShift) | (1 << CALShift);
  1212. force_csr0 = 1;
  1213. }
  1214. /* bugfix: the ASIX must have a burst limit or horrible things happen. */
  1215. if (chip_idx == AX88140) {
  1216. if ((csr0 & 0x3f00) == 0)
  1217. csr0 |= 0x2000;
  1218. }
  1219. /* PNIC doesn't have MWI/MRL/MRM... */
  1220. if (chip_idx == LC82C168)
  1221. csr0 &= ~0xfff10000; /* zero reserved bits 31:20, 16 */
  1222. /* DM9102A has troubles with MRM & clear reserved bits 24:22, 20, 16, 7:1 */
  1223. if (pdev->vendor == 0x1282 && pdev->device == 0x9102)
  1224. csr0 &= ~0x01f100ff;
  1225. #if defined(__sparc__)
  1226.         /* DM9102A needs 32-dword alignment/burst length on sparc - chip bug? */
  1227.         if (pdev->vendor == 0x1282 && pdev->device == 0x9102)
  1228.                 csr0 = (csr0 & ~0xff00) | 0xe000;
  1229. #endif
  1230. /*
  1231.  * And back to business
  1232.  */
  1233. i = pci_enable_device(pdev);
  1234. if (i) {
  1235. printk (KERN_ERR PFX
  1236. "Cannot enable tulip board #%d, abortingn",
  1237. board_idx);
  1238. return i;
  1239. }
  1240. ioaddr = pci_resource_start (pdev, 0);
  1241. irq = pdev->irq;
  1242. /* alloc_etherdev ensures aligned and zeroed private structures */
  1243. dev = alloc_etherdev (sizeof (*tp));
  1244. if (!dev) {
  1245. printk (KERN_ERR PFX "ether device alloc failed, abortingn");
  1246. return -ENOMEM;
  1247. }
  1248. if (pci_resource_len (pdev, 0) < tulip_tbl[chip_idx].io_size) {
  1249. printk (KERN_ERR PFX "%s: I/O region (0x%lx@0x%lx) too small, "
  1250. "abortingn", pdev->slot_name,
  1251. pci_resource_len (pdev, 0),
  1252. pci_resource_start (pdev, 0));
  1253. goto err_out_free_netdev;
  1254. }
  1255. /* grab all resources from both PIO and MMIO regions, as we
  1256.  * don't want anyone else messing around with our hardware */
  1257. if (pci_request_regions (pdev, "tulip"))
  1258. goto err_out_free_netdev;
  1259. #ifndef USE_IO_OPS
  1260. ioaddr = (unsigned long) ioremap (pci_resource_start (pdev, 1),
  1261.   tulip_tbl[chip_idx].io_size);
  1262. if (!ioaddr)
  1263. goto err_out_free_res;
  1264. #endif
  1265. pci_read_config_byte (pdev, PCI_REVISION_ID, &chip_rev);
  1266. /*
  1267.  * initialize private data structure 'tp'
  1268.  * it is zeroed and aligned in alloc_etherdev
  1269.  */
  1270. tp = dev->priv;
  1271. tp->rx_ring = pci_alloc_consistent(pdev,
  1272.    sizeof(struct tulip_rx_desc) * RX_RING_SIZE +
  1273.    sizeof(struct tulip_tx_desc) * TX_RING_SIZE,
  1274.    &tp->rx_ring_dma);
  1275. if (!tp->rx_ring)
  1276. goto err_out_mtable;
  1277. tp->tx_ring = (struct tulip_tx_desc *)(tp->rx_ring + RX_RING_SIZE);
  1278. tp->tx_ring_dma = tp->rx_ring_dma + sizeof(struct tulip_rx_desc) * RX_RING_SIZE;
  1279. tp->chip_id = chip_idx;
  1280. tp->flags = tulip_tbl[chip_idx].flags;
  1281. tp->pdev = pdev;
  1282. tp->base_addr = ioaddr;
  1283. tp->revision = chip_rev;
  1284. tp->csr0 = csr0;
  1285. spin_lock_init(&tp->lock);
  1286. spin_lock_init(&tp->mii_lock);
  1287. init_timer(&tp->timer);
  1288. tp->timer.data = (unsigned long)dev;
  1289. tp->timer.function = tulip_tbl[tp->chip_id].media_timer;
  1290. dev->base_addr = ioaddr;
  1291. dev->irq = irq;
  1292. #ifdef CONFIG_TULIP_MWI
  1293. if (!force_csr0 && (tp->flags & HAS_PCI_MWI))
  1294. tulip_mwi_config (pdev, dev);
  1295. #else
  1296. /* MWI is broken for DC21143 rev 65... */
  1297. if (chip_idx == DC21143 && chip_rev == 65)
  1298. tp->csr0 &= ~MWI;
  1299. #endif
  1300. /* Stop the chip's Tx and Rx processes. */
  1301. tulip_stop_rxtx(tp);
  1302. pci_set_master(pdev);
  1303. /* Clear the missed-packet counter. */
  1304. inl(ioaddr + CSR8);
  1305. if (chip_idx == DC21041) {
  1306. if (inl(ioaddr + CSR9) & 0x8000) {
  1307. chip_idx = DC21040;
  1308. t2104x_mode = 1;
  1309. } else {
  1310. t2104x_mode = 2;
  1311. }
  1312. }
  1313. /* The station address ROM is read byte serially.  The register must
  1314.    be polled, waiting for the value to be read bit serially from the
  1315.    EEPROM.
  1316.    */
  1317. sum = 0;
  1318. if (chip_idx == DC21040) {
  1319. outl(0, ioaddr + CSR9); /* Reset the pointer with a dummy write. */
  1320. for (i = 0; i < 6; i++) {
  1321. int value, boguscnt = 100000;
  1322. do
  1323. value = inl(ioaddr + CSR9);
  1324. while (value < 0  && --boguscnt > 0);
  1325. dev->dev_addr[i] = value;
  1326. sum += value & 0xff;
  1327. }
  1328. } else if (chip_idx == LC82C168) {
  1329. for (i = 0; i < 3; i++) {
  1330. int value, boguscnt = 100000;
  1331. outl(0x600 | i, ioaddr + 0x98);
  1332. do
  1333. value = inl(ioaddr + CSR9);
  1334. while (value < 0  && --boguscnt > 0);
  1335. put_unaligned(le16_to_cpu(value), ((u16*)dev->dev_addr) + i);
  1336. sum += value & 0xffff;
  1337. }
  1338. } else if (chip_idx == COMET) {
  1339. /* No need to read the EEPROM. */
  1340. put_unaligned(inl(ioaddr + 0xA4), (u32 *)dev->dev_addr);
  1341. put_unaligned(inl(ioaddr + 0xA8), (u16 *)(dev->dev_addr + 4));
  1342. for (i = 0; i < 6; i ++)
  1343. sum += dev->dev_addr[i];
  1344. } else {
  1345. /* A serial EEPROM interface, we read now and sort it out later. */
  1346. int sa_offset = 0;
  1347. int ee_addr_size = tulip_read_eeprom(ioaddr, 0xff, 8) & 0x40000 ? 8 : 6;
  1348. for (i = 0; i < sizeof(ee_data)/2; i++)
  1349. ((u16 *)ee_data)[i] =
  1350. le16_to_cpu(tulip_read_eeprom(ioaddr, i, ee_addr_size));
  1351. /* DEC now has a specification (see Notes) but early board makers
  1352.    just put the address in the first EEPROM locations. */
  1353. /* This does  memcmp(eedata, eedata+16, 8) */
  1354. for (i = 0; i < 8; i ++)
  1355. if (ee_data[i] != ee_data[16+i])
  1356. sa_offset = 20;
  1357. if (ee_data[0] == 0xff  &&  ee_data[1] == 0xff &&  ee_data[2] == 0) {
  1358. sa_offset = 2; /* Grrr, damn Matrox boards. */
  1359. multiport_cnt = 4;
  1360. }
  1361. #ifdef CONFIG_DDB5476
  1362. if ((pdev->bus->number == 0) && (PCI_SLOT(pdev->devfn) == 6)) {
  1363. /* DDB5476 MAC address in first EEPROM locations. */
  1364.                        sa_offset = 0;
  1365.                        /* No media table either */
  1366.                        tp->flags &= ~HAS_MEDIA_TABLE;
  1367.                }
  1368. #endif
  1369. #ifdef CONFIG_DDB5477
  1370.                if ((pdev->bus->number == 0) && (PCI_SLOT(pdev->devfn) == 4)) {
  1371.                        /* DDB5477 MAC address in first EEPROM locations. */
  1372.                        sa_offset = 0;
  1373.                        /* No media table either */
  1374.                        tp->flags &= ~HAS_MEDIA_TABLE;
  1375.                }
  1376. #endif
  1377. for (i = 0; i < 6; i ++) {
  1378. dev->dev_addr[i] = ee_data[i + sa_offset];
  1379. sum += ee_data[i + sa_offset];
  1380. }
  1381. }
  1382. /* Lite-On boards have the address byte-swapped. */
  1383. if ((dev->dev_addr[0] == 0xA0  ||  dev->dev_addr[0] == 0xC0)
  1384. &&  dev->dev_addr[1] == 0x00)
  1385. for (i = 0; i < 6; i+=2) {
  1386. char tmp = dev->dev_addr[i];
  1387. dev->dev_addr[i] = dev->dev_addr[i+1];
  1388. dev->dev_addr[i+1] = tmp;
  1389. }
  1390. /* On the Zynx 315 Etherarray and other multiport boards only the
  1391.    first Tulip has an EEPROM.
  1392.    On Sparc systems the mac address is held in the OBP property
  1393.    "local-mac-address".
  1394.    The addresses of the subsequent ports are derived from the first.
  1395.    Many PCI BIOSes also incorrectly report the IRQ line, so we correct
  1396.    that here as well. */
  1397. if (sum == 0  || sum == 6*0xff) {
  1398. #if defined(__sparc__)
  1399. struct pcidev_cookie *pcp = pdev->sysdata;
  1400. #endif
  1401. eeprom_missing = 1;
  1402. for (i = 0; i < 5; i++)
  1403. dev->dev_addr[i] = last_phys_addr[i];
  1404. dev->dev_addr[i] = last_phys_addr[i] + 1;
  1405. #if defined(__sparc__)
  1406. if ((pcp != NULL) && prom_getproplen(pcp->prom_node,
  1407. "local-mac-address") == 6) {
  1408. prom_getproperty(pcp->prom_node, "local-mac-address",
  1409.     dev->dev_addr, 6);
  1410. }
  1411. #endif
  1412. #if defined(__i386__) /* Patch up x86 BIOS bug. */
  1413. if (last_irq)
  1414. irq = last_irq;
  1415. #endif
  1416. }
  1417. for (i = 0; i < 6; i++)
  1418. last_phys_addr[i] = dev->dev_addr[i];
  1419. last_irq = irq;
  1420. /* The lower four bits are the media type. */
  1421. if (board_idx >= 0  &&  board_idx < MAX_UNITS) {
  1422. if (options[board_idx] & MEDIA_MASK)
  1423. tp->default_port = options[board_idx] & MEDIA_MASK;
  1424. if ((options[board_idx] & FullDuplex) || full_duplex[board_idx] > 0)
  1425. tp->full_duplex = 1;
  1426. if (mtu[board_idx] > 0)
  1427. dev->mtu = mtu[board_idx];
  1428. }
  1429. if (dev->mem_start & MEDIA_MASK)
  1430. tp->default_port = dev->mem_start & MEDIA_MASK;
  1431. if (tp->default_port) {
  1432. printk(KERN_INFO "tulip%d: Transceiver selection forced to %s.n",
  1433.        board_idx, medianame[tp->default_port & MEDIA_MASK]);
  1434. tp->medialock = 1;
  1435. if (tulip_media_cap[tp->default_port] & MediaAlwaysFD)
  1436. tp->full_duplex = 1;
  1437. }
  1438. if (tp->full_duplex)
  1439. tp->full_duplex_lock = 1;
  1440. if (tulip_media_cap[tp->default_port] & MediaIsMII) {
  1441. u16 media2advert[] = { 0x20, 0x40, 0x03e0, 0x60, 0x80, 0x100, 0x200 };
  1442. tp->mii_advertise = media2advert[tp->default_port - 9];
  1443. tp->mii_advertise |= (tp->flags & HAS_8023X); /* Matching bits! */
  1444. }
  1445. if (tp->flags & HAS_MEDIA_TABLE) {
  1446. memcpy(tp->eeprom, ee_data, sizeof(tp->eeprom));
  1447. sprintf(dev->name, "tulip%d", board_idx); /* hack */
  1448. tulip_parse_eeprom(dev);
  1449. strcpy(dev->name, "eth%d"); /* un-hack */
  1450. }
  1451. if ((tp->flags & ALWAYS_CHECK_MII) ||
  1452. (tp->mtable  &&  tp->mtable->has_mii) ||
  1453. ( ! tp->mtable  &&  (tp->flags & HAS_MII))) {
  1454. if (tp->mtable  &&  tp->mtable->has_mii) {
  1455. for (i = 0; i < tp->mtable->leafcount; i++)
  1456. if (tp->mtable->mleaf[i].media == 11) {
  1457. tp->cur_index = i;
  1458. tp->saved_if_port = dev->if_port;
  1459. tulip_select_media(dev, 2);
  1460. dev->if_port = tp->saved_if_port;
  1461. break;
  1462. }
  1463. }
  1464. /* Find the connected MII xcvrs.
  1465.    Doing this in open() would allow detecting external xcvrs
  1466.    later, but takes much time. */
  1467. tulip_find_mii (dev, board_idx);
  1468. }
  1469. /* The Tulip-specific entries in the device structure. */
  1470. dev->open = tulip_open;
  1471. dev->hard_start_xmit = tulip_start_xmit;
  1472. dev->tx_timeout = tulip_tx_timeout;
  1473. dev->watchdog_timeo = TX_TIMEOUT;
  1474. dev->stop = tulip_close;
  1475. dev->get_stats = tulip_get_stats;
  1476. dev->do_ioctl = private_ioctl;
  1477. dev->set_multicast_list = set_rx_mode;
  1478. if (register_netdev(dev))
  1479. goto err_out_free_ring;
  1480. printk(KERN_INFO "%s: %s rev %d at %#3lx,",
  1481.        dev->name, tulip_tbl[chip_idx].chip_name, chip_rev, ioaddr);
  1482. pci_set_drvdata(pdev, dev);
  1483. if (t2104x_mode == 1)
  1484. printk(" 21040 compatible mode,");
  1485. else if (t2104x_mode == 2)
  1486. printk(" 21041 mode,");
  1487. if (eeprom_missing)
  1488. printk(" EEPROM not present,");
  1489. for (i = 0; i < 6; i++)
  1490. printk("%c%2.2X", i ? ':' : ' ', dev->dev_addr[i]);
  1491. printk(", IRQ %d.n", irq);
  1492.         if (tp->chip_id == PNIC2)
  1493. tp->link_change = pnic2_lnk_change;
  1494. else if ((tp->flags & HAS_NWAY)  || tp->chip_id == DC21041)
  1495. tp->link_change = t21142_lnk_change;
  1496. else if (tp->flags & HAS_PNICNWAY)
  1497. tp->link_change = pnic_lnk_change;
  1498. /* Reset the xcvr interface and turn on heartbeat. */
  1499. switch (chip_idx) {
  1500. case DC21041:
  1501. if (tp->sym_advertise == 0)
  1502. tp->sym_advertise = 0x0061;
  1503. outl(0x00000000, ioaddr + CSR13);
  1504. outl(0xFFFFFFFF, ioaddr + CSR14);
  1505. outl(0x00000008, ioaddr + CSR15); /* Listen on AUI also. */
  1506. outl(inl(ioaddr + CSR6) | csr6_fd, ioaddr + CSR6);
  1507. outl(0x0000EF01, ioaddr + CSR13);
  1508. break;
  1509. case DC21040:
  1510. outl(0x00000000, ioaddr + CSR13);
  1511. outl(0x00000004, ioaddr + CSR13);
  1512. break;
  1513. case DC21140:
  1514. case DM910X:
  1515. default:
  1516. if (tp->mtable)
  1517. outl(tp->mtable->csr12dir | 0x100, ioaddr + CSR12);
  1518. break;
  1519. case DC21142:
  1520. if (tp->mii_cnt  ||  tulip_media_cap[dev->if_port] & MediaIsMII) {
  1521. outl(csr6_mask_defstate, ioaddr + CSR6);
  1522. outl(0x0000, ioaddr + CSR13);
  1523. outl(0x0000, ioaddr + CSR14);
  1524. outl(csr6_mask_hdcap, ioaddr + CSR6);
  1525. } else
  1526. t21142_start_nway(dev);
  1527. break;
  1528. case PNIC2:
  1529.         /* just do a reset for sanity sake */
  1530. outl(0x0000, ioaddr + CSR13);
  1531. outl(0x0000, ioaddr + CSR14);
  1532. break;
  1533. case LC82C168:
  1534. if ( ! tp->mii_cnt) {
  1535. tp->nway = 1;
  1536. tp->nwayset = 0;
  1537. outl(csr6_ttm | csr6_ca, ioaddr + CSR6);
  1538. outl(0x30, ioaddr + CSR12);
  1539. outl(0x0001F078, ioaddr + CSR6);
  1540. outl(0x0201F078, ioaddr + CSR6); /* Turn on autonegotiation. */
  1541. }
  1542. break;
  1543. case MX98713:
  1544. case COMPEX9881:
  1545. outl(0x00000000, ioaddr + CSR6);
  1546. outl(0x000711C0, ioaddr + CSR14); /* Turn on NWay. */
  1547. outl(0x00000001, ioaddr + CSR13);
  1548. break;
  1549. case MX98715:
  1550. case MX98725:
  1551. outl(0x01a80000, ioaddr + CSR6);
  1552. outl(0xFFFFFFFF, ioaddr + CSR14);
  1553. outl(0x00001000, ioaddr + CSR12);
  1554. break;
  1555. case COMET:
  1556. /* No initialization necessary. */
  1557. break;
  1558. }
  1559. /* put the chip in snooze mode until opened */
  1560. tulip_set_power_state (tp, 0, 1);
  1561. return 0;
  1562. err_out_free_ring:
  1563. pci_free_consistent (pdev,
  1564.      sizeof (struct tulip_rx_desc) * RX_RING_SIZE +
  1565.      sizeof (struct tulip_tx_desc) * TX_RING_SIZE,
  1566.      tp->rx_ring, tp->rx_ring_dma);
  1567. err_out_mtable:
  1568. if (tp->mtable)
  1569. kfree (tp->mtable);
  1570. #ifndef USE_IO_OPS
  1571. iounmap((void *)ioaddr);
  1572. err_out_free_res:
  1573. #endif
  1574. pci_release_regions (pdev);
  1575. err_out_free_netdev:
  1576. kfree (dev);
  1577. return -ENODEV;
  1578. }
  1579. #ifdef CONFIG_PM
  1580. static int tulip_suspend (struct pci_dev *pdev, u32 state)
  1581. {
  1582. struct net_device *dev = pci_get_drvdata(pdev);
  1583. if (dev && netif_running (dev) && netif_device_present (dev)) {
  1584. netif_device_detach (dev);
  1585. tulip_down (dev);
  1586. /* pci_power_off(pdev, -1); */
  1587. }
  1588. return 0;
  1589. }
  1590. static int tulip_resume(struct pci_dev *pdev)
  1591. {
  1592. struct net_device *dev = pci_get_drvdata(pdev);
  1593. if (dev && netif_running (dev) && !netif_device_present (dev)) {
  1594. #if 1
  1595. pci_enable_device (pdev);
  1596. #endif
  1597. /* pci_power_on(pdev); */
  1598. tulip_up (dev);
  1599. netif_device_attach (dev);
  1600. }
  1601. return 0;
  1602. }
  1603. #endif /* CONFIG_PM */
  1604. static void __devexit tulip_remove_one (struct pci_dev *pdev)
  1605. {
  1606. struct net_device *dev = pci_get_drvdata (pdev);
  1607. struct tulip_private *tp;
  1608. if (!dev)
  1609. return;
  1610. tp = dev->priv;
  1611. pci_free_consistent (pdev,
  1612.      sizeof (struct tulip_rx_desc) * RX_RING_SIZE +
  1613.      sizeof (struct tulip_tx_desc) * TX_RING_SIZE,
  1614.      tp->rx_ring, tp->rx_ring_dma);
  1615. unregister_netdev (dev);
  1616. if (tp->mtable)
  1617. kfree (tp->mtable);
  1618. #ifndef USE_IO_OPS
  1619. iounmap((void *)dev->base_addr);
  1620. #endif
  1621. kfree (dev);
  1622. pci_release_regions (pdev);
  1623. pci_set_drvdata (pdev, NULL);
  1624. /* pci_power_off (pdev, -1); */
  1625. }
  1626. static struct pci_driver tulip_driver = {
  1627. name: DRV_NAME,
  1628. id_table: tulip_pci_tbl,
  1629. probe: tulip_init_one,
  1630. remove: __devexit_p(tulip_remove_one),
  1631. #ifdef CONFIG_PM
  1632. suspend: tulip_suspend,
  1633. resume: tulip_resume,
  1634. #endif /* CONFIG_PM */
  1635. };
  1636. static int __init tulip_init (void)
  1637. {
  1638. #ifdef MODULE
  1639. printk (KERN_INFO "%s", version);
  1640. #endif
  1641. /* copy module parms into globals */
  1642. tulip_rx_copybreak = rx_copybreak;
  1643. tulip_max_interrupt_work = max_interrupt_work;
  1644. /* probe for and init boards */
  1645. return pci_module_init (&tulip_driver);
  1646. }
  1647. static void __exit tulip_cleanup (void)
  1648. {
  1649. pci_unregister_driver (&tulip_driver);
  1650. }
  1651. module_init(tulip_init);
  1652. module_exit(tulip_cleanup);