3c359.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:58k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *   3c359.c (c) 2000 Mike Phillips (mikep@linuxtr.net) All Rights Reserved
  3.  *
  4.  *  Linux driver for 3Com 3c359 Tokenlink Velocity XL PCI NIC
  5.  *
  6.  *  Base Driver Olympic:
  7.  * Written 1999 Peter De Schrijver & Mike Phillips
  8.  *
  9.  *  This software may be used and distributed according to the terms
  10.  *  of the GNU General Public License, incorporated herein by reference.
  11.  * 
  12.  *  7/17/00 - Clean up, version number 0.9.0. Ready to release to the world.
  13.  *
  14.  *  2/16/01 - Port up to kernel 2.4.2 ready for submission into the kernel.
  15.  *  3/05/01 - Last clean up stuff before submission.
  16.  *  2/15/01 - Finally, update to new pci api. 
  17.  *
  18.  *  To Do:
  19.  */
  20. /* 
  21.  * Technical Card Details
  22.  *
  23.  *  All access to data is done with 16/8 bit transfers.  The transfer
  24.  *  method really sucks. You can only read or write one location at a time.
  25.  *
  26.  *  Also, the microcode for the card must be uploaded if the card does not have
  27.  *  the flashrom on board.  This is a 28K bloat in the driver when compiled
  28.  *  as a module.
  29.  *
  30.  *  Rx is very simple, status into a ring of descriptors, dma data transfer,
  31.  *  interrupts to tell us when a packet is received.
  32.  *
  33.  *  Tx is a little more interesting. Similar scenario, descriptor and dma data
  34.  *  transfers, but we don't have to interrupt the card to tell it another packet
  35.  *  is ready for transmission, we are just doing simple memory writes, not io or mmio
  36.  *  writes.  The card can be set up to simply poll on the next
  37.  *  descriptor pointer and when this value is non-zero will automatically download
  38.  *  the next packet.  The card then interrupts us when the packet is done.
  39.  *
  40.  */
  41. #define XL_DEBUG 0
  42. #include <linux/config.h>
  43. #include <linux/module.h>
  44. #include <linux/kernel.h>
  45. #include <linux/sched.h>
  46. #include <linux/errno.h>
  47. #include <linux/timer.h>
  48. #include <linux/in.h>
  49. #include <linux/ioport.h>
  50. #include <linux/string.h>
  51. #include <linux/proc_fs.h>
  52. #include <linux/ptrace.h>
  53. #include <linux/skbuff.h>
  54. #include <linux/interrupt.h>
  55. #include <linux/delay.h>
  56. #include <linux/netdevice.h>
  57. #include <linux/trdevice.h>
  58. #include <linux/stddef.h>
  59. #include <linux/init.h>
  60. #include <linux/pci.h>
  61. #include <linux/spinlock.h>
  62. #include <net/checksum.h>
  63. #include <asm/io.h>
  64. #include <asm/system.h>
  65. #include <asm/bitops.h>
  66. #include "3c359.h"
  67. static char version[] __devinitdata  = 
  68. "3c359.c v1.2.0 2/17/01 - Mike Phillips (mikep@linuxtr.net)" ; 
  69. MODULE_AUTHOR("Mike Phillips <mikep@linuxtr.net>") ; 
  70. MODULE_DESCRIPTION("3Com 3C359 Velocity XL Token Ring Adapter Driver n") ;
  71. /* Module paramters */
  72. /* Ring Speed 0,4,16 
  73.  * 0 = Autosense   
  74.  * 4,16 = Selected speed only, no autosense
  75.  * This allows the card to be the first on the ring
  76.  * and become the active monitor.
  77.  *
  78.  * WARNING: Some hubs will allow you to insert
  79.  * at the wrong speed.
  80.  * 
  81.  * The adapter will _not_ fail to open if there are no
  82.  * active monitors on the ring, it will simply open up in 
  83.  * its last known ringspeed if no ringspeed is specified.
  84.  */
  85. static int ringspeed[XL_MAX_ADAPTERS] = {0,} ;
  86. MODULE_PARM(ringspeed, "1-" __MODULE_STRING(XL_MAX_ADAPTERS) "i");
  87. MODULE_PARM_DESC(ringspeed,"3c359: Ringspeed selection - 4,16 or 0") ; 
  88. /* Packet buffer size */
  89. static int pkt_buf_sz[XL_MAX_ADAPTERS] = {0,} ;
  90.  
  91. MODULE_PARM(pkt_buf_sz, "1-" __MODULE_STRING(XL_MAX_ADAPTERS) "i") ; 
  92. MODULE_PARM_DESC(pkt_buf_sz,"3c359: Initial buffer size") ; 
  93. /* Message Level */
  94. static int message_level[XL_MAX_ADAPTERS] = {0,} ; 
  95. MODULE_PARM(message_level, "1-" __MODULE_STRING(XL_MAX_ADAPTERS) "i") ; 
  96. MODULE_PARM_DESC(message_level, "3c359: Level of reported messages n") ; 
  97. /* 
  98.  * This is a real nasty way of doing this, but otherwise you
  99.  * will be stuck with 1555 lines of hex #'s in the code.
  100.  */
  101. #include "3c359_microcode.h" 
  102. static struct pci_device_id xl_pci_tbl[] __devinitdata =
  103. {
  104. {PCI_VENDOR_ID_3COM,PCI_DEVICE_ID_3COM_3C359, PCI_ANY_ID, PCI_ANY_ID, },
  105. { } /* terminate list */
  106. };
  107. MODULE_DEVICE_TABLE(pci,xl_pci_tbl) ; 
  108. static int xl_init(struct net_device *dev);
  109. static int xl_open(struct net_device *dev);
  110. static int xl_open_hw(struct net_device *dev) ;  
  111. static int xl_hw_reset(struct net_device *dev); 
  112. static int xl_xmit(struct sk_buff *skb, struct net_device *dev);
  113. static void xl_dn_comp(struct net_device *dev); 
  114. static int xl_close(struct net_device *dev);
  115. static void xl_set_rx_mode(struct net_device *dev);
  116. static void xl_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  117. static struct net_device_stats * xl_get_stats(struct net_device *dev);
  118. static int xl_set_mac_address(struct net_device *dev, void *addr) ; 
  119. static void xl_arb_cmd(struct net_device *dev);
  120. static void xl_asb_cmd(struct net_device *dev) ; 
  121. static void xl_srb_cmd(struct net_device *dev, int srb_cmd) ; 
  122. static void xl_wait_misr_flags(struct net_device *dev) ; 
  123. static int xl_change_mtu(struct net_device *dev, int mtu);
  124. static void xl_srb_bh(struct net_device *dev) ; 
  125. static void xl_asb_bh(struct net_device *dev) ; 
  126. static void xl_reset(struct net_device *dev) ;  
  127. static void xl_freemem(struct net_device *dev) ;  
  128. /* EEProm Access Functions */
  129. static u16  xl_ee_read(struct net_device *dev, int ee_addr) ; 
  130. static void  xl_ee_write(struct net_device *dev, int ee_addr, u16 ee_value) ; 
  131. /* Debugging functions */
  132. #if XL_DEBUG
  133. static void print_tx_state(struct net_device *dev) ; 
  134. static void print_rx_state(struct net_device *dev) ; 
  135. static void print_tx_state(struct net_device *dev)
  136. {
  137. struct xl_private *xl_priv = (struct xl_private *)dev->priv ; 
  138. struct xl_tx_desc *txd ; 
  139. u8 *xl_mmio = xl_priv->xl_mmio ; 
  140. int i ; 
  141. printk("tx_ring_head: %d, tx_ring_tail: %d, free_ent: %d n",xl_priv->tx_ring_head, 
  142. xl_priv->tx_ring_tail, xl_priv->free_ring_entries) ; 
  143. printk("Ring    , Address ,   FSH  , DnNextPtr, Buffer, Buffer_Len n"); 
  144. for (i = 0; i < 16; i++) {
  145. txd = &(xl_priv->xl_tx_ring[i]) ; 
  146. printk("%d, %08lx, %08x, %08x, %08x, %08x n", i, virt_to_bus(txd), 
  147. txd->framestartheader, txd->dnnextptr, txd->buffer, txd->buffer_length ) ; 
  148. }
  149. printk("DNLISTPTR = %04x n", readl(xl_mmio + MMIO_DNLISTPTR) ); 
  150. printk("DmaCtl = %04x n", readl(xl_mmio + MMIO_DMA_CTRL) ); 
  151. printk("Queue status = %0x n",netif_running(dev) ) ; 
  152. }
  153. static void print_rx_state(struct net_device *dev)
  154. {
  155. struct xl_private *xl_priv = (struct xl_private *)dev->priv ; 
  156. struct xl_rx_desc *rxd ; 
  157. u8 *xl_mmio = xl_priv->xl_mmio ; 
  158. int i ; 
  159. printk("rx_ring_tail: %d n", xl_priv->rx_ring_tail) ; 
  160. printk("Ring    , Address ,   FrameState  , UPNextPtr, FragAddr, Frag_Len n"); 
  161. for (i = 0; i < 16; i++) { 
  162. /* rxd = (struct xl_rx_desc *)xl_priv->rx_ring_dma_addr + (i * sizeof(struct xl_rx_desc)) ; */
  163. rxd = &(xl_priv->xl_rx_ring[i]) ; 
  164. printk("%d, %08lx, %08x, %08x, %08x, %08x n", i, virt_to_bus(rxd), 
  165. rxd->framestatus, rxd->upnextptr, rxd->upfragaddr, rxd->upfraglen ) ; 
  166. }
  167. printk("UPLISTPTR = %04x n", readl(xl_mmio + MMIO_UPLISTPTR) ); 
  168. printk("DmaCtl = %04x n", readl(xl_mmio + MMIO_DMA_CTRL) ); 
  169. printk("Queue status = %0x n",netif_running(dev) ) ;
  170. #endif
  171. /*
  172.  * Read values from the on-board EEProm.  This looks very strange
  173.  * but you have to wait for the EEProm to get/set the value before 
  174.  * passing/getting the next value from the nic. As with all requests
  175.  * on this nic it has to be done in two stages, a) tell the nic which
  176.  * memory address you want to access and b) pass/get the value from the nic.
  177.  * With the EEProm, you have to wait before and inbetween access a) and b).
  178.  * As this is only read at initialization time and the wait period is very 
  179.  * small we shouldn't have to worry about scheduling issues.
  180.  */
  181. static u16 xl_ee_read(struct net_device *dev, int ee_addr)
  182.      struct xl_private *xl_priv = (struct xl_private *)dev->priv ;
  183. u8 *xl_mmio = xl_priv->xl_mmio ; 
  184. /* Wait for EEProm to not be busy */
  185. writel(IO_WORD_READ | EECONTROL, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  186. while ( readw(xl_mmio + MMIO_MACDATA) & EEBUSY ) ;
  187. /* Tell EEProm what we want to do and where */
  188. writel(IO_WORD_WRITE | EECONTROL, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  189. writew(EEREAD + ee_addr, xl_mmio + MMIO_MACDATA) ; 
  190. /* Wait for EEProm to not be busy */
  191. writel(IO_WORD_READ | EECONTROL, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  192. while ( readw(xl_mmio + MMIO_MACDATA) & EEBUSY ) ; 
  193. /* Tell EEProm what we want to do and where */
  194. writel(IO_WORD_WRITE | EECONTROL , xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  195. writew(EEREAD + ee_addr, xl_mmio + MMIO_MACDATA) ; 
  196. /* Finally read the value from the EEProm */
  197. writel(IO_WORD_READ | EEDATA , xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  198. return readw(xl_mmio + MMIO_MACDATA) ; 
  199. }
  200. /* 
  201.  * Write values to the onboard eeprom. As with eeprom read you need to 
  202.  * set which location to write, wait, value to write, wait, with the 
  203.  * added twist of having to enable eeprom writes as well.
  204.  */
  205. static void  xl_ee_write(struct net_device *dev, int ee_addr, u16 ee_value) 
  206. {
  207.      struct xl_private *xl_priv = (struct xl_private *)dev->priv ;
  208. u8 *xl_mmio = xl_priv->xl_mmio ; 
  209. /* Wait for EEProm to not be busy */
  210. writel(IO_WORD_READ | EECONTROL, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  211. while ( readw(xl_mmio + MMIO_MACDATA) & EEBUSY ) ;
  212. /* Enable write/erase */
  213. writel(IO_WORD_WRITE | EECONTROL, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  214. writew(EE_ENABLE_WRITE, xl_mmio + MMIO_MACDATA) ; 
  215. /* Wait for EEProm to not be busy */
  216. writel(IO_WORD_READ | EECONTROL, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  217. while ( readw(xl_mmio + MMIO_MACDATA) & EEBUSY ) ;
  218. /* Put the value we want to write into EEDATA */ 
  219. writel(IO_WORD_WRITE | EEDATA, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  220. writew(ee_value, xl_mmio + MMIO_MACDATA) ;
  221. /* Tell EEProm to write eevalue into ee_addr */
  222. writel(IO_WORD_WRITE | EECONTROL, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  223. writew(EEWRITE + ee_addr, xl_mmio + MMIO_MACDATA) ; 
  224. /* Wait for EEProm to not be busy, to ensure write gets done */
  225. writel(IO_WORD_READ | EECONTROL, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  226. while ( readw(xl_mmio + MMIO_MACDATA) & EEBUSY ) ;
  227. return ; 
  228. }
  229.  
  230. int __devinit xl_probe(struct pci_dev *pdev, const struct pci_device_id *ent) 
  231. {
  232. struct net_device *dev ; 
  233. struct xl_private *xl_priv ; 
  234. static int card_no = -1 ;
  235. int i ; 
  236. card_no++ ; 
  237. if (pci_enable_device(pdev)) { 
  238. return -ENODEV ; 
  239. pci_set_master(pdev);
  240. if ((i = pci_request_regions(pdev,"3c359"))) { 
  241. return i ; 
  242. } ; 
  243. /* 
  244.  * Allowing init_trdev to allocate the dev->priv structure will align xl_private
  245.      * on a 32 bytes boundary which we need for the rx/tx descriptors
  246.  */
  247. dev = alloc_trdev(sizeof(struct xl_private)) ; 
  248. if (!dev) { 
  249. pci_release_regions(pdev) ; 
  250. return -ENOMEM ; 
  251. xl_priv = dev->priv ; 
  252. #if XL_DEBUG  
  253. printk("pci_device: %p, dev:%p, dev->priv: %p, ba[0]: %10x, ba[1]:%10xn", 
  254. pdev, dev, dev->priv, (unsigned int)pdev->resource[0].start, (unsigned int)pdev->resource[1].start) ;  
  255. #endif 
  256. dev->irq=pdev->irq;
  257. dev->base_addr=pci_resource_start(pdev,0) ; 
  258. dev->init=NULL ; /* Must be null with new api, otherwise get called twice */
  259. xl_priv->xl_card_name = (char *)pdev->name ; 
  260. xl_priv->xl_mmio=ioremap(pci_resource_start(pdev,1), XL_IO_SPACE);
  261. xl_priv->pdev = pdev ; 
  262. if ((pkt_buf_sz[card_no] < 100) || (pkt_buf_sz[card_no] > 18000) )
  263. xl_priv->pkt_buf_sz = PKT_BUF_SZ ; 
  264. else
  265. xl_priv->pkt_buf_sz = pkt_buf_sz[card_no] ; 
  266. dev->mtu = xl_priv->pkt_buf_sz - TR_HLEN ; 
  267. xl_priv->xl_ring_speed = ringspeed[card_no] ; 
  268. xl_priv->xl_message_level = message_level[card_no] ; 
  269. xl_priv->xl_functional_addr[0] = xl_priv->xl_functional_addr[1] = xl_priv->xl_functional_addr[2] = xl_priv->xl_functional_addr[3] = 0 ; 
  270. xl_priv->xl_copy_all_options = 0 ; 
  271. if((i = xl_init(dev))) {
  272. iounmap(xl_priv->xl_mmio) ; 
  273. kfree(dev) ; 
  274. pci_release_regions(pdev) ; 
  275. return i ; 
  276. }
  277. dev->open=&xl_open;
  278. dev->hard_start_xmit=&xl_xmit;
  279. dev->change_mtu=&xl_change_mtu;
  280. dev->stop=&xl_close;
  281. dev->do_ioctl=NULL;
  282. dev->set_multicast_list=&xl_set_rx_mode;
  283. dev->get_stats=&xl_get_stats ;
  284. dev->set_mac_address=&xl_set_mac_address ; 
  285. SET_MODULE_OWNER(dev); 
  286. pci_set_drvdata(pdev,dev) ; 
  287. if ((i = register_netdev(dev))) { 
  288. printk(KERN_ERR "3C359, register netdev failedn") ;  
  289. pci_set_drvdata(pdev,NULL) ; 
  290. iounmap(xl_priv->xl_mmio) ; 
  291. kfree(dev) ; 
  292. pci_release_regions(pdev) ; 
  293. return i ; 
  294. }
  295.    
  296. printk(KERN_INFO "3C359: %s registered as: %sn",xl_priv->xl_card_name,dev->name) ; 
  297. return 0; 
  298. }
  299. static int __init xl_init(struct net_device *dev) 
  300. {
  301.      struct xl_private *xl_priv = (struct xl_private *)dev->priv ;
  302. printk(KERN_INFO "%s n", version);
  303. printk(KERN_INFO "%s: I/O at %hx, MMIO at %p, using irq %dn",
  304. xl_priv->xl_card_name, (unsigned int)dev->base_addr ,xl_priv->xl_mmio, dev->irq);
  305. spin_lock_init(&xl_priv->xl_lock) ; 
  306. return xl_hw_reset(dev) ; 
  307. }
  308. /* 
  309.  * Hardware reset.  This needs to be a separate entity as we need to reset the card
  310.  * when we change the EEProm settings.
  311.  */
  312. static int xl_hw_reset(struct net_device *dev) 
  313.      struct xl_private *xl_priv = (struct xl_private *)dev->priv ;
  314. u8 *xl_mmio = xl_priv->xl_mmio ; 
  315. unsigned long t ; 
  316. u16 i ; 
  317.      u16 result_16 ; 
  318. u8 result_8 ;
  319. u16 start ; 
  320. int j ;
  321. /*
  322.  *  Reset the card.  If the card has got the microcode on board, we have 
  323.          *  missed the initialization interrupt, so we must always do this.
  324.  */
  325. writew( GLOBAL_RESET, xl_mmio + MMIO_COMMAND ) ; 
  326. /* 
  327.  * Must wait for cmdInProgress bit (12) to clear before continuing with
  328.  * card configuration.
  329.  */
  330. t=jiffies;
  331. while (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_CMD_IN_PROGRESS) { 
  332. schedule();
  333. if(jiffies-t > 40*HZ) {
  334. printk(KERN_ERR "%s: 3COM 3C359 Velocity XL  card not responding to global reset.n", dev->name);
  335. return -ENODEV;
  336. }
  337. }
  338. /*
  339.  *  Enable pmbar by setting bit in CPAttention
  340.  */
  341. writel( (IO_BYTE_READ | CPATTENTION), xl_mmio + MMIO_MAC_ACCESS_CMD) ;
  342. result_8 = readb(xl_mmio + MMIO_MACDATA) ; 
  343. result_8 = result_8 | CPA_PMBARVIS ; 
  344. writel( (IO_BYTE_WRITE | CPATTENTION), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  345. writeb(result_8, xl_mmio + MMIO_MACDATA) ; 
  346. /*
  347.  * Read cpHold bit in pmbar, if cleared we have got Flashrom on board.
  348.    * If not, we need to upload the microcode to the card
  349.  */
  350. writel( (IO_WORD_READ | PMBAR),xl_mmio + MMIO_MAC_ACCESS_CMD);  
  351. #if XL_DEBUG
  352. printk(KERN_INFO "Read from PMBAR = %04x n", readw(xl_mmio + MMIO_MACDATA)) ; 
  353. #endif
  354. if ( readw( (xl_mmio + MMIO_MACDATA))  & PMB_CPHOLD ) { 
  355. /* Set PmBar, privateMemoryBase bits (8:2) to 0 */
  356. writel( (IO_WORD_READ | PMBAR),xl_mmio + MMIO_MAC_ACCESS_CMD);  
  357. result_16 = readw(xl_mmio + MMIO_MACDATA) ; 
  358. result_16 = result_16 & ~((0x7F) << 2) ; 
  359. writel( (IO_WORD_WRITE | PMBAR), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  360. writew(result_16,xl_mmio + MMIO_MACDATA) ; 
  361. /* Set CPAttention, memWrEn bit */
  362. writel( (IO_BYTE_READ | CPATTENTION), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  363. result_8 = readb(xl_mmio + MMIO_MACDATA) ; 
  364. result_8 = result_8 | CPA_MEMWREN  ; 
  365. writel( (IO_BYTE_WRITE | CPATTENTION), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  366. writeb(result_8, xl_mmio + MMIO_MACDATA) ; 
  367. /* 
  368.  * Now to write the microcode into the shared ram 
  369.    * The microcode must finish at position 0xFFFF, so we must subtract
  370.  * to get the start position for the code
  371.  */
  372. start = (0xFFFF - (mc_size) + 1 ) ; /* Looks strange but ensures compiler only uses 16 bit unsigned int for this */ 
  373. printk(KERN_INFO "3C359: Uploading Microcode: "); 
  374. for (i = start,j=0; (j < mc_size && i <= 0xffff) ; i++,j++) { 
  375. writel(MEM_BYTE_WRITE | 0XD0000 | i, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  376. writeb(microcode[j],xl_mmio + MMIO_MACDATA) ; 
  377. if (j % 1024 == 0)
  378. printk(".");
  379. }
  380. printk("n") ; 
  381. for (i=0;i < 16; i++) { 
  382. writel( (MEM_BYTE_WRITE | 0xDFFF0) + i, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  383. writeb(microcode[mc_size - 16 + i], xl_mmio + MMIO_MACDATA) ; 
  384. }
  385. /*
  386.  * Have to write the start address of the upload to FFF4, but
  387.                  * the address must be >> 4. You do not want to know how long
  388.                  * it took me to discover this.
  389.  */
  390. writel(MEM_WORD_WRITE | 0xDFFF4, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  391. writew(start >> 4, xl_mmio + MMIO_MACDATA);
  392. /* Clear the CPAttention, memWrEn Bit */
  393. writel( (IO_BYTE_READ | CPATTENTION), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  394. result_8 = readb(xl_mmio + MMIO_MACDATA) ; 
  395. result_8 = result_8 & ~CPA_MEMWREN ; 
  396. writel( (IO_BYTE_WRITE | CPATTENTION), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  397. writeb(result_8, xl_mmio + MMIO_MACDATA) ; 
  398. /* Clear the cpHold bit in pmbar */
  399. writel( (IO_WORD_READ | PMBAR),xl_mmio + MMIO_MAC_ACCESS_CMD);  
  400. result_16 = readw(xl_mmio + MMIO_MACDATA) ; 
  401. result_16 = result_16 & ~PMB_CPHOLD ; 
  402. writel( (IO_WORD_WRITE | PMBAR), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  403. writew(result_16,xl_mmio + MMIO_MACDATA) ; 
  404. } /* If microcode upload required */
  405. /* 
  406.  * The card should now go though a self test procedure and get itself ready
  407.          * to be opened, we must wait for an srb response with the initialization
  408.          * information. 
  409.  */
  410. #if XL_DEBUG
  411. printk(KERN_INFO "%s: Microcode uploaded, must wait for the self test to completen", dev->name);
  412. #endif
  413. writew(SETINDENABLE | 0xFFF, xl_mmio + MMIO_COMMAND) ; 
  414. t=jiffies;
  415. while ( !(readw(xl_mmio + MMIO_INTSTATUS_AUTO) & INTSTAT_SRB) ) { 
  416. schedule();
  417. if(jiffies-t > 15*HZ) {
  418. printk(KERN_ERR "3COM 3C359 Velocity XL  card not responding.n");
  419. return -ENODEV; 
  420. }
  421. }
  422. /*
  423.  * Write the RxBufArea with D000, RxEarlyThresh, TxStartThresh, 
  424.    * DnPriReqThresh, read the tech docs if you want to know what
  425.  * values they need to be.
  426.  */
  427. writel(MMIO_WORD_WRITE | RXBUFAREA, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  428. writew(0xD000, xl_mmio + MMIO_MACDATA) ; 
  429. writel(MMIO_WORD_WRITE | RXEARLYTHRESH, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  430. writew(0X0020, xl_mmio + MMIO_MACDATA) ; 
  431. writew( SETTXSTARTTHRESH | 0x40 , xl_mmio + MMIO_COMMAND) ; 
  432. writeb(0x04, xl_mmio + MMIO_DNBURSTTHRESH) ; 
  433. writeb(0x04, xl_mmio + DNPRIREQTHRESH) ;
  434. /*
  435.  * Read WRBR to provide the location of the srb block, have to use byte reads not word reads. 
  436.  * Tech docs have this wrong !!!!
  437.  */
  438. writel(MMIO_BYTE_READ | WRBR, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  439. xl_priv->srb = readb(xl_mmio + MMIO_MACDATA) << 8 ; 
  440. writel( (MMIO_BYTE_READ | WRBR) + 1, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  441. xl_priv->srb = xl_priv->srb | readb(xl_mmio + MMIO_MACDATA) ;
  442. #if XL_DEBUG
  443. writel(IO_WORD_READ | SWITCHSETTINGS, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  444. if ( readw(xl_mmio + MMIO_MACDATA) & 2) { 
  445. printk(KERN_INFO "Default ring speed 4 mbps n") ;
  446. } else {
  447. printk(KERN_INFO "Default ring speed 16 mbps n") ; 
  448. printk(KERN_INFO "%s: xl_priv->srb = %04xn",xl_priv->xl_card_name, xl_priv->srb);
  449. #endif
  450. return 0;
  451. }
  452. static int xl_open(struct net_device *dev) 
  453. {
  454. struct xl_private *xl_priv=(struct xl_private *)dev->priv;
  455. u8 * xl_mmio = xl_priv->xl_mmio ; 
  456. u8 i ; 
  457. u16 hwaddr[3] ; /* Should be u8[6] but we get word return values */
  458. int open_err ;
  459. u16 switchsettings, switchsettings_eeprom  ;
  460.  
  461. if(request_irq(dev->irq, &xl_interrupt, SA_SHIRQ , "3c359", dev)) {
  462. return -EAGAIN;
  463. }
  464. /* 
  465.  * Read the information from the EEPROM that we need. I know we
  466.    * should use ntohs, but the word gets stored reversed in the 16
  467.  * bit field anyway and it all works its self out when we memcpy
  468.  * it into dev->dev_addr. 
  469.  */
  470. hwaddr[0] = xl_ee_read(dev,0x10) ; 
  471. hwaddr[1] = xl_ee_read(dev,0x11) ; 
  472. hwaddr[2] = xl_ee_read(dev,0x12) ; 
  473. /* Ring speed */
  474. switchsettings_eeprom = xl_ee_read(dev,0x08) ;
  475. switchsettings = switchsettings_eeprom ;  
  476. if (xl_priv->xl_ring_speed != 0) { 
  477. if (xl_priv->xl_ring_speed == 4)  
  478. switchsettings = switchsettings | 0x02 ; 
  479. else 
  480. switchsettings = switchsettings & ~0x02 ; 
  481. }
  482. /* Only write EEProm if there has been a change */
  483. if (switchsettings != switchsettings_eeprom) { 
  484. xl_ee_write(dev,0x08,switchsettings) ; 
  485. /* Hardware reset after changing EEProm */
  486. xl_hw_reset(dev) ; 
  487. }
  488. memcpy(dev->dev_addr,hwaddr,dev->addr_len) ; 
  489. open_err = xl_open_hw(dev) ; 
  490. /* 
  491.  * This really needs to be cleaned up with better error reporting.
  492.  */
  493. if (open_err != 0) { /* Something went wrong with the open command */
  494. if (open_err & 0x07) { /* Wrong speed, retry at different speed */
  495. printk(KERN_WARNING "%s: Open Error, retrying at different ringspeed n", dev->name) ; 
  496. switchsettings = switchsettings ^ 2 ; 
  497. xl_ee_write(dev,0x08,switchsettings) ; 
  498. xl_hw_reset(dev) ; 
  499. open_err = xl_open_hw(dev) ; 
  500. if (open_err != 0) { 
  501. printk(KERN_WARNING "%s: Open error returned a second time, we're bombing out nown", dev->name); 
  502. free_irq(dev->irq,dev) ; 
  503. return -ENODEV ;
  504. }  
  505. } else { 
  506. printk(KERN_WARNING "%s: Open Error = %04xn", dev->name, open_err) ; 
  507. free_irq(dev->irq,dev) ; 
  508. return -ENODEV ; 
  509. }
  510. }
  511. /*
  512.  * Now to set up the Rx and Tx buffer structures
  513.  */
  514. /* These MUST be on 8 byte boundaries */
  515. xl_priv->xl_tx_ring = kmalloc((sizeof(struct xl_tx_desc) * XL_TX_RING_SIZE) + 7, GFP_DMA | GFP_KERNEL) ; 
  516. xl_priv->xl_rx_ring = kmalloc((sizeof(struct xl_rx_desc) * XL_RX_RING_SIZE) +7, GFP_DMA | GFP_KERNEL) ; 
  517. memset(xl_priv->xl_tx_ring,0,sizeof(struct xl_tx_desc) * XL_TX_RING_SIZE) ; 
  518. memset(xl_priv->xl_rx_ring,0,sizeof(struct xl_rx_desc) * XL_RX_RING_SIZE) ; 
  519.  /* Setup Rx Ring */
  520.  for (i=0 ; i < XL_RX_RING_SIZE ; i++) { 
  521. struct sk_buff *skb ; 
  522. skb = dev_alloc_skb(xl_priv->pkt_buf_sz) ; 
  523. if (skb==NULL) 
  524. break ; 
  525. skb->dev = dev ; 
  526. xl_priv->xl_rx_ring[i].upfragaddr = pci_map_single(xl_priv->pdev, skb->data,xl_priv->pkt_buf_sz, PCI_DMA_FROMDEVICE) ; 
  527. xl_priv->xl_rx_ring[i].upfraglen = xl_priv->pkt_buf_sz | RXUPLASTFRAG;
  528. xl_priv->rx_ring_skb[i] = skb ; 
  529. }
  530. if (i==0) { 
  531. printk(KERN_WARNING "%s: Not enough memory to allocate rx buffers. Adapter disabled n",dev->name) ; 
  532. free_irq(dev->irq,dev) ; 
  533. return -EIO ; 
  534. xl_priv->rx_ring_no = i ; 
  535. xl_priv->rx_ring_tail = 0 ; 
  536. xl_priv->rx_ring_dma_addr = pci_map_single(xl_priv->pdev,xl_priv->xl_rx_ring, sizeof(struct xl_rx_desc) * XL_RX_RING_SIZE, PCI_DMA_TODEVICE) ; 
  537. for (i=0;i<(xl_priv->rx_ring_no-1);i++) { 
  538. xl_priv->xl_rx_ring[i].upnextptr = xl_priv->rx_ring_dma_addr + (sizeof (struct xl_rx_desc) * (i+1)) ; 
  539. xl_priv->xl_rx_ring[i].upnextptr = 0 ; 
  540. writel(xl_priv->rx_ring_dma_addr, xl_mmio + MMIO_UPLISTPTR) ; 
  541. /* Setup Tx Ring */
  542. xl_priv->tx_ring_dma_addr = pci_map_single(xl_priv->pdev,xl_priv->xl_tx_ring, sizeof(struct xl_tx_desc) * XL_TX_RING_SIZE,PCI_DMA_TODEVICE) ; 
  543. xl_priv->tx_ring_head = 1 ; 
  544. xl_priv->tx_ring_tail = 255 ; /* Special marker for first packet */
  545. xl_priv->free_ring_entries = XL_TX_RING_SIZE ; 
  546. /*
  547.    * Setup the first dummy DPD entry for polling to start working.
  548.  */
  549. xl_priv->xl_tx_ring[0].framestartheader = TXDPDEMPTY ; 
  550. xl_priv->xl_tx_ring[0].buffer = 0 ; 
  551. xl_priv->xl_tx_ring[0].buffer_length = 0 ; 
  552. xl_priv->xl_tx_ring[0].dnnextptr = 0 ; 
  553. writel(xl_priv->tx_ring_dma_addr, xl_mmio + MMIO_DNLISTPTR) ; 
  554. writel(DNUNSTALL, xl_mmio + MMIO_COMMAND) ; 
  555. writel(UPUNSTALL, xl_mmio + MMIO_COMMAND) ; 
  556. writel(DNENABLE, xl_mmio + MMIO_COMMAND) ; 
  557. writeb(0x40, xl_mmio + MMIO_DNPOLL) ;
  558. /*
  559.  * Enable interrupts on the card
  560.  */
  561. writel(SETINTENABLE | INT_MASK, xl_mmio + MMIO_COMMAND) ; 
  562. writel(SETINDENABLE | INT_MASK, xl_mmio + MMIO_COMMAND) ; 
  563. netif_start_queue(dev) ; 
  564. return 0;
  565. }
  566. static int xl_open_hw(struct net_device *dev) 
  567. struct xl_private *xl_priv=(struct xl_private *)dev->priv;
  568. u8 * xl_mmio = xl_priv->xl_mmio ; 
  569. u16 vsoff ;
  570. char ver_str[33];  
  571. int open_err ; 
  572. int i ; 
  573. unsigned long t ; 
  574. /*
  575.  * Okay, let's build up the Open.NIC srb command
  576.  *
  577.  */
  578. writel( (MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  579. writeb(OPEN_NIC, xl_mmio + MMIO_MACDATA) ; 
  580. /*
  581.  * Use this as a test byte, if it comes back with the same value, the command didn't work
  582.  */
  583. writel( (MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb)+ 2, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  584. writeb(0xff,xl_mmio + MMIO_MACDATA) ; 
  585. /* Open options */
  586. writel( (MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb) + 8, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  587. writeb(0x00, xl_mmio + MMIO_MACDATA) ; 
  588. writel( (MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb) + 9, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  589. writeb(0x00, xl_mmio + MMIO_MACDATA) ; 
  590. /* 
  591.  * Node address, be careful here, the docs say you can just put zeros here and it will use
  592.  * the hardware address, it doesn't, you must include the node address in the open command.
  593.  */
  594. if (xl_priv->xl_laa[0]) {  /* If using a LAA address */
  595. for (i=10;i<16;i++) { 
  596. writel( (MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb) + i, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  597. writeb(xl_priv->xl_laa[i],xl_mmio + MMIO_MACDATA) ; 
  598. }
  599. memcpy(dev->dev_addr,xl_priv->xl_laa,dev->addr_len) ; 
  600. } else { /* Regular hardware address */ 
  601. for (i=10;i<16;i++) { 
  602. writel( (MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb) + i, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  603. writeb(dev->dev_addr[i-10], xl_mmio + MMIO_MACDATA) ; 
  604. }
  605. }
  606. /* Default everything else to 0 */
  607. for (i = 16; i < 34; i++) {
  608. writel( (MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb) + i, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  609. writeb(0x00,xl_mmio + MMIO_MACDATA) ; 
  610. }
  611. /*
  612.  *  Set the csrb bit in the MISR register
  613.  */
  614. xl_wait_misr_flags(dev) ; 
  615. writel(MEM_BYTE_WRITE | MF_CSRB, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  616. writeb(0xFF, xl_mmio + MMIO_MACDATA) ; 
  617. writel(MMIO_BYTE_WRITE | MISR_SET, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  618. writeb(MISR_CSRB , xl_mmio + MMIO_MACDATA) ; 
  619. /*
  620.  * Now wait for the command to run
  621.  */
  622. t=jiffies;
  623. while (! (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_SRB)) { 
  624. schedule();
  625. if(jiffies-t > 40*HZ) {
  626. printk(KERN_ERR "3COM 3C359 Velocity XL  card not responding.n");
  627. break ; 
  628. }
  629. }
  630. /*
  631.  * Let's interpret the open response
  632.  */
  633. writel( (MEM_BYTE_READ | 0xD0000 | xl_priv->srb)+2, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  634. if (readb(xl_mmio + MMIO_MACDATA)!=0) {
  635. open_err = readb(xl_mmio + MMIO_MACDATA) << 8 ; 
  636. writel( (MEM_BYTE_READ | 0xD0000 | xl_priv->srb) + 7, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  637. open_err |= readb(xl_mmio + MMIO_MACDATA) ; 
  638. return open_err ; 
  639. } else { 
  640. writel( (MEM_WORD_READ | 0xD0000 | xl_priv->srb) + 8, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  641. xl_priv->asb = ntohs(readw(xl_mmio + MMIO_MACDATA)) ; 
  642. printk(KERN_INFO "%s: Adapter Opened Details: ",dev->name) ; 
  643. printk("ASB: %04x",xl_priv->asb ) ; 
  644. writel( (MEM_WORD_READ | 0xD0000 | xl_priv->srb) + 10, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  645. printk(", SRB: %04x",ntohs(readw(xl_mmio + MMIO_MACDATA)) ) ; 
  646.  
  647. writel( (MEM_WORD_READ | 0xD0000 | xl_priv->srb) + 12, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  648. xl_priv->arb = ntohs(readw(xl_mmio + MMIO_MACDATA)) ; 
  649. printk(", ARB: %04x n",xl_priv->arb ) ; 
  650. writel( (MEM_WORD_READ | 0xD0000 | xl_priv->srb) + 14, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  651. vsoff = ntohs(readw(xl_mmio + MMIO_MACDATA)) ; 
  652. /* 
  653.  * Interesting, sending the individual characters directly to printk was causing klogd to use
  654.  * use 100% of processor time, so we build up the string and print that instead.
  655.      */
  656. for (i=0;i<0x20;i++) { 
  657. writel( (MEM_BYTE_READ | 0xD0000 | vsoff) + i, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  658. ver_str[i] = readb(xl_mmio + MMIO_MACDATA) ; 
  659. }
  660. ver_str[i] = '' ; 
  661. printk(KERN_INFO "%s: Microcode version String: %s n",dev->name,ver_str); 
  662. /*
  663.  * Issue the AckInterrupt
  664.  */
  665. writew(ACK_INTERRUPT | SRBRACK | LATCH_ACK, xl_mmio + MMIO_COMMAND) ; 
  666. return 0 ; 
  667. }
  668. /*
  669.  * There are two ways of implementing rx on the 359 NIC, either
  670.  *  interrupt driven or polling.  We are going to uses interrupts,
  671.  * it is the easier way of doing things.
  672.  *
  673.  * The Rx works with a ring of Rx descriptors.  At initialise time the ring
  674.  * entries point to the next entry except for the last entry in the ring 
  675.  * which points to 0.  The card is programmed with the location of the first
  676.  * available descriptor and keeps reading the next_ptr until next_ptr is set
  677.  * to 0.  Hopefully with a ring size of 16 the card will never get to read a next_ptr
  678.  * of 0.  As the Rx interrupt is received we copy the frame up to the protocol layers
  679.  * and then point the end of the ring to our current position and point our current
  680.  * position to 0, therefore making the current position the last position on the ring.
  681.  * The last position on the ring therefore loops continually loops around the rx ring.
  682.  *
  683.  * rx_ring_tail is the position on the ring to process next. (Think of a snake, the head 
  684.  * expands as the card adds new packets and we go around eating the tail processing the
  685.  * packets.)
  686.  *
  687.  * Undoubtably it could be streamlined and improved upon, but at the moment it works 
  688.  * and the fast path through the routine is fine. 
  689.  *
  690.  * adv_rx_ring could be inlined to increase performance, but its called a *lot* of times
  691.  * in xl_rx so would increase the size of the function significantly. 
  692.  */
  693. static void adv_rx_ring(struct net_device *dev) /* Advance rx_ring, cut down on bloat in xl_rx */ 
  694. {
  695. struct xl_private *xl_priv=(struct xl_private *)dev->priv;
  696. int prev_ring_loc ; 
  697. prev_ring_loc = (xl_priv->rx_ring_tail + XL_RX_RING_SIZE - 1) & (XL_RX_RING_SIZE - 1);
  698. xl_priv->xl_rx_ring[prev_ring_loc].upnextptr = xl_priv->rx_ring_dma_addr + (sizeof (struct xl_rx_desc) * xl_priv->rx_ring_tail) ; 
  699. xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].framestatus = 0 ; 
  700. xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upnextptr = 0 ; 
  701. xl_priv->rx_ring_tail++ ; 
  702. xl_priv->rx_ring_tail &= (XL_RX_RING_SIZE-1) ; 
  703. return ; 
  704. }
  705. static void xl_rx(struct net_device *dev)
  706. {
  707. struct xl_private *xl_priv=(struct xl_private *)dev->priv;
  708. u8 * xl_mmio = xl_priv->xl_mmio ; 
  709. struct sk_buff *skb, *skb2 ; 
  710. int frame_length = 0, copy_len = 0  ; 
  711. int temp_ring_loc ;  
  712. /*
  713.  * Receive the next frame, loop around the ring until all frames
  714.     * have been received.
  715.  */   
  716. while (xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].framestatus & (RXUPDCOMPLETE | RXUPDFULL) ) { /* Descriptor to process */
  717. if (xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].framestatus & RXUPDFULL ) { /* UpdFull, Multiple Descriptors used for the frame */
  718. /* 
  719.  * This is a pain, you need to go through all the descriptors until the last one 
  720.  * for this frame to find the framelength
  721.  */
  722. temp_ring_loc = xl_priv->rx_ring_tail ; 
  723. while (xl_priv->xl_rx_ring[temp_ring_loc].framestatus & RXUPDFULL ) {
  724. temp_ring_loc++ ; 
  725. temp_ring_loc &= (XL_RX_RING_SIZE-1) ; 
  726. }
  727. frame_length = xl_priv->xl_rx_ring[temp_ring_loc].framestatus & 0x7FFF ; 
  728. skb = dev_alloc_skb(frame_length) ;
  729.  
  730. if (skb==NULL) { /* No memory for frame, still need to roll forward the rx ring */
  731. printk(KERN_WARNING "%s: dev_alloc_skb failed - multi buffer !n", dev->name) ; 
  732. while (xl_priv->rx_ring_tail != temp_ring_loc)  
  733. adv_rx_ring(dev) ; 
  734. adv_rx_ring(dev) ; /* One more time just for luck :) */ 
  735. xl_priv->xl_stats.rx_dropped++ ; 
  736. writel(ACK_INTERRUPT | UPCOMPACK | LATCH_ACK , xl_mmio + MMIO_COMMAND) ; 
  737. return ; 
  738. }
  739. skb->dev = dev ; 
  740. while (xl_priv->rx_ring_tail != temp_ring_loc) { 
  741. copy_len = xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upfraglen & 0x7FFF ; 
  742. frame_length -= copy_len ;  
  743. pci_dma_sync_single(xl_priv->pdev,xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upfragaddr,xl_priv->pkt_buf_sz,PCI_DMA_FROMDEVICE) ; 
  744. memcpy(skb_put(skb,copy_len), xl_priv->rx_ring_skb[xl_priv->rx_ring_tail]->data, copy_len) ; 
  745. adv_rx_ring(dev) ; 
  746. /* Now we have found the last fragment */
  747. pci_dma_sync_single(xl_priv->pdev,xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upfragaddr,xl_priv->pkt_buf_sz,PCI_DMA_FROMDEVICE) ; 
  748. memcpy(skb_put(skb,copy_len), xl_priv->rx_ring_skb[xl_priv->rx_ring_tail]->data, frame_length) ; 
  749. /* memcpy(skb_put(skb,frame_length), bus_to_virt(xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upfragaddr), frame_length) ; */
  750. adv_rx_ring(dev) ; 
  751. skb->protocol = tr_type_trans(skb,dev) ; 
  752. netif_rx(skb) ; 
  753. } else { /* Single Descriptor Used, simply swap buffers over, fast path  */
  754. frame_length = xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].framestatus & 0x7FFF ; 
  755. skb = dev_alloc_skb(xl_priv->pkt_buf_sz) ; 
  756. if (skb==NULL) { /* Still need to fix the rx ring */
  757. printk(KERN_WARNING "%s: dev_alloc_skb failed in rx, single buffer n",dev->name) ; 
  758. adv_rx_ring(dev) ; 
  759. xl_priv->xl_stats.rx_dropped++ ; 
  760. writel(ACK_INTERRUPT | UPCOMPACK | LATCH_ACK , xl_mmio + MMIO_COMMAND) ; 
  761. return ; 
  762. }
  763. skb->dev = dev ; 
  764. skb2 = xl_priv->rx_ring_skb[xl_priv->rx_ring_tail] ; 
  765. pci_unmap_single(xl_priv->pdev, xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upfragaddr, xl_priv->pkt_buf_sz,PCI_DMA_FROMDEVICE) ; 
  766. skb_put(skb2, frame_length) ; 
  767. skb2->protocol = tr_type_trans(skb2,dev) ; 
  768. xl_priv->rx_ring_skb[xl_priv->rx_ring_tail] = skb ; 
  769. xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upfragaddr = pci_map_single(xl_priv->pdev,skb->data,xl_priv->pkt_buf_sz, PCI_DMA_FROMDEVICE) ; 
  770. xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upfraglen = xl_priv->pkt_buf_sz | RXUPLASTFRAG ; 
  771. adv_rx_ring(dev) ; 
  772. xl_priv->xl_stats.rx_packets++ ; 
  773. xl_priv->xl_stats.rx_bytes += frame_length ; 
  774. netif_rx(skb2) ; 
  775.  } /* if multiple buffers */
  776. dev->last_rx = jiffies ; 
  777. } /* while packet to do */
  778. /* Clear the updComplete interrupt */
  779. writel(ACK_INTERRUPT | UPCOMPACK | LATCH_ACK , xl_mmio + MMIO_COMMAND) ; 
  780. return ; 
  781. }
  782. /*
  783.  * This is ruthless, it doesn't care what state the card is in it will 
  784.  * completely reset the adapter.
  785.  */
  786. static void xl_reset(struct net_device *dev) 
  787. {
  788. struct xl_private *xl_priv=(struct xl_private *)dev->priv;
  789. u8 * xl_mmio = xl_priv->xl_mmio ; 
  790. unsigned long t; 
  791. writew( GLOBAL_RESET, xl_mmio + MMIO_COMMAND ) ; 
  792. /* 
  793.  * Must wait for cmdInProgress bit (12) to clear before continuing with
  794.  * card configuration.
  795.  */
  796. t=jiffies;
  797. while (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_CMD_IN_PROGRESS) { 
  798. if(jiffies-t > 40*HZ) {
  799. printk(KERN_ERR "3COM 3C359 Velocity XL  card not responding.n");
  800. break ; 
  801. }
  802. }
  803. }
  804. static void xl_freemem(struct net_device *dev) 
  805. {
  806. struct xl_private *xl_priv=(struct xl_private *)dev->priv ; 
  807. int i ; 
  808. for (i=0;i<XL_RX_RING_SIZE;i++) {
  809. dev_kfree_skb_irq(xl_priv->rx_ring_skb[xl_priv->rx_ring_tail]) ; 
  810. pci_unmap_single(xl_priv->pdev,xl_priv->xl_rx_ring[xl_priv->rx_ring_tail].upfragaddr,xl_priv->pkt_buf_sz, PCI_DMA_FROMDEVICE) ; 
  811. xl_priv->rx_ring_tail++ ; 
  812. xl_priv->rx_ring_tail &= XL_RX_RING_SIZE-1; 
  813. /* unmap ring */
  814. pci_unmap_single(xl_priv->pdev,xl_priv->rx_ring_dma_addr, sizeof(struct xl_rx_desc) * XL_RX_RING_SIZE, PCI_DMA_FROMDEVICE) ; 
  815. pci_unmap_single(xl_priv->pdev,xl_priv->tx_ring_dma_addr, sizeof(struct xl_tx_desc) * XL_TX_RING_SIZE, PCI_DMA_TODEVICE) ; 
  816. kfree(xl_priv->xl_rx_ring) ; 
  817. kfree(xl_priv->xl_tx_ring) ; 
  818. return  ; 
  819. }
  820. static void xl_interrupt(int irq, void *dev_id, struct pt_regs *regs) 
  821. {
  822. struct net_device *dev = (struct net_device *)dev_id;
  823.   struct xl_private *xl_priv =(struct xl_private *)dev->priv;
  824. u8 * xl_mmio = xl_priv->xl_mmio ; 
  825. u16 intstatus, macstatus  ;
  826. if (!dev) { 
  827. printk(KERN_WARNING "Device structure dead, aaahhhh !n") ;
  828. return ; 
  829. }
  830. intstatus = readw(xl_mmio + MMIO_INTSTATUS) ;  
  831. if (!(intstatus & 1)) /* We didn't generate the interrupt */
  832. return ; 
  833. spin_lock(&xl_priv->xl_lock) ; 
  834. /*
  835.  * Process the interrupt
  836.  */
  837. /*
  838.  * Something fishy going on here, we shouldn't get 0001 ints, not fatal though.
  839.  */
  840. if (intstatus == 0x0001) {  
  841. writel(ACK_INTERRUPT | LATCH_ACK, xl_mmio + MMIO_COMMAND) ;
  842. printk(KERN_INFO "%s: 00001 int received n",dev->name) ;  
  843. } else {  
  844. if (intstatus & (HOSTERRINT | SRBRINT | ARBCINT | UPCOMPINT | DNCOMPINT | HARDERRINT | (1<<8) | TXUNDERRUN | ASBFINT)) { 
  845. /* 
  846.  * Host Error.
  847.  * It may be possible to recover from this, but usually it means something
  848.  * is seriously fubar, so we just close the adapter.
  849.  */
  850. if (intstatus & HOSTERRINT) {
  851. printk(KERN_WARNING "%s: Host Error, performing global reset, intstatus = %04x n",dev->name,intstatus) ; 
  852. writew( GLOBAL_RESET, xl_mmio + MMIO_COMMAND ) ;
  853. printk(KERN_WARNING "%s: Resetting hardware: n", dev->name); 
  854. netif_stop_queue(dev) ;
  855. xl_freemem(dev) ; 
  856. free_irq(dev->irq,dev); 
  857. xl_reset(dev) ; 
  858. writel(ACK_INTERRUPT | LATCH_ACK, xl_mmio + MMIO_COMMAND) ; 
  859. spin_unlock(&xl_priv->xl_lock) ; 
  860. return ; 
  861. } /* Host Error */
  862. if (intstatus & SRBRINT ) {  /* Srbc interrupt */
  863. writel(ACK_INTERRUPT | SRBRACK | LATCH_ACK, xl_mmio + MMIO_COMMAND) ;
  864. if (xl_priv->srb_queued)
  865. xl_srb_bh(dev) ; 
  866. } /* SRBR Interrupt */
  867. if (intstatus & TXUNDERRUN) { /* Issue DnReset command */
  868. writel(DNRESET, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  869. while (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_CMD_IN_PROGRESS) { /* Wait for command to run */
  870. /* !!! FIX-ME !!!! 
  871. Must put a timeout check here ! */
  872. /* Empty Loop */
  873. printk(KERN_WARNING "%s: TX Underrun received n",dev->name) ;
  874. writel(ACK_INTERRUPT | LATCH_ACK, xl_mmio + MMIO_COMMAND) ; 
  875. } /* TxUnderRun */
  876. if (intstatus & ARBCINT ) { /* Arbc interrupt */
  877. xl_arb_cmd(dev) ; 
  878. } /* Arbc */
  879. if (intstatus & ASBFINT) { 
  880. if (xl_priv->asb_queued == 1) {
  881. xl_asb_cmd(dev) ; 
  882. } else if (xl_priv->asb_queued == 2) {
  883. xl_asb_bh(dev) ; 
  884. } else { 
  885. writel(ACK_INTERRUPT | LATCH_ACK | ASBFACK, xl_mmio + MMIO_COMMAND) ; 
  886. }  
  887. } /* Asbf */
  888. if (intstatus & UPCOMPINT ) /* UpComplete */
  889. xl_rx(dev) ; 
  890. if (intstatus & DNCOMPINT )  /* DnComplete */
  891. xl_dn_comp(dev) ; 
  892. if (intstatus & HARDERRINT ) { /* Hardware error */
  893. writel(MMIO_WORD_READ | MACSTATUS, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  894. macstatus = readw(xl_mmio + MMIO_MACDATA) ; 
  895. printk(KERN_WARNING "%s: MacStatusError, details: ", dev->name);
  896. if (macstatus & (1<<14)) 
  897. printk(KERN_WARNING "tchk error: Unrecoverable error n") ; 
  898. if (macstatus & (1<<3))
  899. printk(KERN_WARNING "eint error: Internal watchdog timer expired n") ;
  900. if (macstatus & (1<<2))
  901. printk(KERN_WARNING "aint error: Host tried to perform illegal operation n") ; 
  902. printk(KERN_WARNING "Instatus = %02x, macstatus = %02xn",intstatus,macstatus) ; 
  903. printk(KERN_WARNING "%s: Resetting hardware: n", dev->name); 
  904. netif_stop_queue(dev) ;
  905. xl_freemem(dev) ; 
  906. free_irq(dev->irq,dev); 
  907. unregister_trdev(dev) ; 
  908. kfree(dev) ;  
  909. xl_reset(dev) ; 
  910. writel(ACK_INTERRUPT | LATCH_ACK, xl_mmio + MMIO_COMMAND) ; 
  911. spin_unlock(&xl_priv->xl_lock) ; 
  912. return ; 
  913. }
  914. } else { 
  915. printk(KERN_WARNING "%s: Received Unknown interrupt : %04x n", dev->name, intstatus) ;
  916. writel(ACK_INTERRUPT | LATCH_ACK, xl_mmio + MMIO_COMMAND) ; 
  917. }
  918. /* Turn interrupts back on */
  919. writel( SETINDENABLE | INT_MASK, xl_mmio + MMIO_COMMAND) ; 
  920. writel( SETINTENABLE | INT_MASK, xl_mmio + MMIO_COMMAND) ; 
  921. spin_unlock(&xl_priv->xl_lock) ; 
  922. }
  923. /*
  924.  * Tx - Polling configuration
  925.  */
  926. static int xl_xmit(struct sk_buff *skb, struct net_device *dev) 
  927. {
  928. struct xl_private *xl_priv=(struct xl_private *)dev->priv;
  929. struct xl_tx_desc *txd ; 
  930. int tx_head, tx_tail, tx_prev ; 
  931. unsigned long flags ; 
  932. spin_lock_irqsave(&xl_priv->xl_lock,flags) ; 
  933. netif_stop_queue(dev) ; 
  934. if (xl_priv->free_ring_entries > 1 ) { 
  935. /*
  936.  * Set up the descriptor for the packet 
  937.  */
  938. tx_head = xl_priv->tx_ring_head ; 
  939. tx_tail = xl_priv->tx_ring_tail ; 
  940. txd = &(xl_priv->xl_tx_ring[tx_head]) ; 
  941. txd->dnnextptr = 0 ; 
  942. txd->framestartheader = skb->len | TXDNINDICATE ; 
  943. txd->buffer = pci_map_single(xl_priv->pdev, skb->data, skb->len, PCI_DMA_TODEVICE) ; 
  944. txd->buffer_length = skb->len | TXDNFRAGLAST  ; 
  945. xl_priv->tx_ring_skb[tx_head] = skb ; 
  946. xl_priv->xl_stats.tx_packets++ ; 
  947. xl_priv->xl_stats.tx_bytes += skb->len ;
  948. /* 
  949.  * Set the nextptr of the previous descriptor equal to this descriptor, add XL_TX_RING_SIZE -1 
  950.  * to ensure no negative numbers in unsigned locations.
  951.  */ 
  952. tx_prev = (xl_priv->tx_ring_head + XL_TX_RING_SIZE - 1) & (XL_TX_RING_SIZE - 1) ; 
  953. xl_priv->tx_ring_head++ ; 
  954. xl_priv->tx_ring_head &= (XL_TX_RING_SIZE - 1) ;
  955. xl_priv->free_ring_entries-- ; 
  956. xl_priv->xl_tx_ring[tx_prev].dnnextptr = xl_priv->tx_ring_dma_addr + (sizeof (struct xl_tx_desc) * tx_head) ; 
  957. /* Sneaky, by doing a read on DnListPtr we can force the card to poll on the DnNextPtr */
  958. /* readl(xl_mmio + MMIO_DNLISTPTR) ; */
  959. netif_wake_queue(dev) ; 
  960. spin_unlock_irqrestore(&xl_priv->xl_lock,flags) ; 
  961.  
  962. return 0;
  963. } else {
  964. spin_unlock_irqrestore(&xl_priv->xl_lock,flags) ; 
  965. return 1;
  966. }
  967. }
  968. /* 
  969.  * The NIC has told us that a packet has been downloaded onto the card, we must
  970.  * find out which packet it has done, clear the skb and information for the packet
  971.  * then advance around the ring for all tranmitted packets
  972.  */
  973. static void xl_dn_comp(struct net_device *dev) 
  974. {
  975. struct xl_private *xl_priv=(struct xl_private *)dev->priv;
  976. u8 * xl_mmio = xl_priv->xl_mmio ; 
  977. struct xl_tx_desc *txd ; 
  978. if (xl_priv->tx_ring_tail == 255) {/* First time */
  979. xl_priv->xl_tx_ring[0].framestartheader = 0 ; 
  980. xl_priv->xl_tx_ring[0].dnnextptr = 0 ;  
  981. xl_priv->tx_ring_tail = 1 ; 
  982. }
  983. while (xl_priv->xl_tx_ring[xl_priv->tx_ring_tail].framestartheader & TXDNCOMPLETE ) { 
  984. txd = &(xl_priv->xl_tx_ring[xl_priv->tx_ring_tail]) ;
  985. pci_unmap_single(xl_priv->pdev,txd->buffer, xl_priv->tx_ring_skb[xl_priv->tx_ring_tail]->len, PCI_DMA_TODEVICE) ; 
  986. txd->framestartheader = 0 ; 
  987. txd->buffer = 0xdeadbeef  ; 
  988. txd->buffer_length  = 0 ;  
  989. dev_kfree_skb_irq(xl_priv->tx_ring_skb[xl_priv->tx_ring_tail]) ;
  990. xl_priv->tx_ring_tail++ ; 
  991. xl_priv->tx_ring_tail &= (XL_TX_RING_SIZE - 1) ; 
  992. xl_priv->free_ring_entries++ ; 
  993. }
  994. netif_wake_queue(dev) ; 
  995. writel(ACK_INTERRUPT | DNCOMPACK | LATCH_ACK , xl_mmio + MMIO_COMMAND) ; 
  996. }
  997. /*
  998.  * Close the adapter properly.
  999.  * This srb reply cannot be handled from interrupt context as we have
  1000.  * to free the interrupt from the driver. 
  1001.  */
  1002. static int xl_close(struct net_device *dev) 
  1003. {
  1004. struct xl_private *xl_priv = (struct xl_private *) dev->priv ; 
  1005. u8 * xl_mmio = xl_priv->xl_mmio ; 
  1006. unsigned long t ; 
  1007. netif_stop_queue(dev) ; 
  1008. /*
  1009.  * Close the adapter, need to stall the rx and tx queues.
  1010.  */
  1011.      writew(DNSTALL, xl_mmio + MMIO_COMMAND) ; 
  1012. t=jiffies;
  1013. while (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_CMD_IN_PROGRESS) { 
  1014. schedule();
  1015. if(jiffies-t > 10*HZ) {
  1016. printk(KERN_ERR "%s: 3COM 3C359 Velocity XL-DNSTALL not responding.n", dev->name);
  1017. break ; 
  1018. }
  1019. }
  1020.      writew(DNDISABLE, xl_mmio + MMIO_COMMAND) ; 
  1021. t=jiffies;
  1022. while (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_CMD_IN_PROGRESS) { 
  1023. schedule();
  1024. if(jiffies-t > 10*HZ) {
  1025. printk(KERN_ERR "%s: 3COM 3C359 Velocity XL-DNDISABLE not responding.n", dev->name);
  1026. break ;
  1027. }
  1028. }
  1029.      writew(UPSTALL, xl_mmio + MMIO_COMMAND) ; 
  1030. t=jiffies;
  1031. while (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_CMD_IN_PROGRESS) { 
  1032. schedule();
  1033. if(jiffies-t > 10*HZ) {
  1034. printk(KERN_ERR "%s: 3COM 3C359 Velocity XL-UPSTALL not responding.n", dev->name);
  1035. break ; 
  1036. }
  1037. }
  1038. /* Turn off interrupts, we will still get the indication though
  1039.    * so we can trap it
  1040.  */
  1041. writel(SETINTENABLE, xl_mmio + MMIO_COMMAND) ; 
  1042. xl_srb_cmd(dev,CLOSE_NIC) ; 
  1043. t=jiffies;
  1044. while (!(readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_SRB)) { 
  1045. schedule();
  1046. if(jiffies-t > 10*HZ) {
  1047. printk(KERN_ERR "%s: 3COM 3C359 Velocity XL-CLOSENIC not responding.n", dev->name);
  1048. break ; 
  1049. }
  1050. }
  1051. /* Read the srb response from the adapter */
  1052. writel(MEM_BYTE_READ | 0xd0000 | xl_priv->srb, xl_mmio + MMIO_MAC_ACCESS_CMD);
  1053. if (readb(xl_mmio + MMIO_MACDATA) != CLOSE_NIC) { 
  1054. printk(KERN_INFO "%s: CLOSE_NIC did not get a CLOSE_NIC response n",dev->name) ; 
  1055. } else { 
  1056. writel((MEM_BYTE_READ | 0xd0000 | xl_priv->srb) +2, xl_mmio + MMIO_MAC_ACCESS_CMD) ;
  1057. if (readb(xl_mmio + MMIO_MACDATA)==0) { 
  1058. printk(KERN_INFO "%s: Adapter has been closed n",dev->name) ;
  1059. writew(ACK_INTERRUPT | SRBRACK | LATCH_ACK, xl_mmio + MMIO_COMMAND) ; 
  1060. xl_freemem(dev) ; 
  1061. free_irq(dev->irq,dev) ; 
  1062. } else { 
  1063. printk(KERN_INFO "%s: Close nic command returned error code %02xn",dev->name, readb(xl_mmio + MMIO_MACDATA)) ;
  1064. }
  1065. /* Reset the upload and download logic */
  1066.  
  1067.      writew(UPRESET, xl_mmio + MMIO_COMMAND) ; 
  1068. t=jiffies;
  1069. while (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_CMD_IN_PROGRESS) { 
  1070. schedule();
  1071. if(jiffies-t > 10*HZ) {
  1072. printk(KERN_ERR "%s: 3COM 3C359 Velocity XL-UPRESET not responding.n", dev->name);
  1073. break ; 
  1074. }
  1075. }
  1076.      writew(DNRESET, xl_mmio + MMIO_COMMAND) ; 
  1077. t=jiffies;
  1078. while (readw(xl_mmio + MMIO_INTSTATUS) & INTSTAT_CMD_IN_PROGRESS) { 
  1079. schedule();
  1080. if(jiffies-t > 10*HZ) {
  1081. printk(KERN_ERR "%s: 3COM 3C359 Velocity XL-DNRESET not responding.n", dev->name);
  1082. break ; 
  1083. }
  1084. }
  1085. xl_hw_reset(dev) ; 
  1086. return 0 ;
  1087. }
  1088. static void xl_set_rx_mode(struct net_device *dev) 
  1089. {
  1090. struct xl_private *xl_priv = (struct xl_private *) dev->priv ; 
  1091. struct dev_mc_list *dmi ; 
  1092. unsigned char dev_mc_address[4] ; 
  1093. u16 options ; 
  1094. int i ; 
  1095. if (dev->flags & IFF_PROMISC)
  1096. options = 0x0004 ; 
  1097. else
  1098. options = 0x0000 ; 
  1099. if (options ^ xl_priv->xl_copy_all_options) { /* Changed, must send command */
  1100. xl_priv->xl_copy_all_options = options ; 
  1101. xl_srb_cmd(dev, SET_RECEIVE_MODE) ;
  1102. return ;  
  1103. }
  1104. dev_mc_address[0] = dev_mc_address[1] = dev_mc_address[2] = dev_mc_address[3] = 0 ;
  1105.         for (i=0,dmi=dev->mc_list;i < dev->mc_count; i++,dmi = dmi->next) {
  1106.                 dev_mc_address[0] |= dmi->dmi_addr[2] ;
  1107.                 dev_mc_address[1] |= dmi->dmi_addr[3] ;
  1108.                 dev_mc_address[2] |= dmi->dmi_addr[4] ;
  1109.                 dev_mc_address[3] |= dmi->dmi_addr[5] ;
  1110.         }
  1111. if (memcmp(xl_priv->xl_functional_addr,dev_mc_address,4) != 0) { /* Options have changed, run the command */
  1112. memcpy(xl_priv->xl_functional_addr, dev_mc_address,4) ; 
  1113. xl_srb_cmd(dev, SET_FUNC_ADDRESS) ; 
  1114. }
  1115. return ; 
  1116. }
  1117. /*
  1118.  * We issued an srb command and now we must read
  1119.  * the response from the completed command.
  1120.  */
  1121. static void xl_srb_bh(struct net_device *dev) 
  1122. struct xl_private *xl_priv = (struct xl_private *) dev->priv ; 
  1123. u8 * xl_mmio = xl_priv->xl_mmio ; 
  1124. u8 srb_cmd, ret_code ; 
  1125. int i ; 
  1126. writel(MEM_BYTE_READ | 0xd0000 | xl_priv->srb, xl_mmio + MMIO_MAC_ACCESS_CMD) ;
  1127. srb_cmd = readb(xl_mmio + MMIO_MACDATA) ; 
  1128. writel((MEM_BYTE_READ | 0xd0000 | xl_priv->srb) +2, xl_mmio + MMIO_MAC_ACCESS_CMD) ;
  1129. ret_code = readb(xl_mmio + MMIO_MACDATA) ; 
  1130. /* Ret_code is standard across all commands */
  1131. switch (ret_code) { 
  1132. case 1:
  1133. printk(KERN_INFO "%s: Command: %d - Invalid Command coden",dev->name,srb_cmd) ; 
  1134. break ; 
  1135. case 4:
  1136. printk(KERN_INFO "%s: Command: %d - Adapter is closed, must be open for this command n",dev->name,srb_cmd) ; 
  1137. break ;
  1138. case 6:
  1139. printk(KERN_INFO "%s: Command: %d - Options Invalid for command n",dev->name,srb_cmd) ;
  1140. break ;
  1141. case 0: /* Successful command execution */ 
  1142. switch (srb_cmd) { 
  1143. case READ_LOG: /* Returns 14 bytes of data from the NIC */
  1144. if(xl_priv->xl_message_level)
  1145. printk(KERN_INFO "%s: READ.LOG 14 bytes of data ",dev->name) ; 
  1146. /* 
  1147.  * We still have to read the log even if message_level = 0 and we don't want
  1148.  * to see it
  1149.  */
  1150. for (i=0;i<14;i++) { 
  1151. writel(MEM_BYTE_READ | 0xd0000 | xl_priv->srb | i, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1152. if(xl_priv->xl_message_level) 
  1153. printk("%02x:",readb(xl_mmio + MMIO_MACDATA)) ; 
  1154. printk("n") ; 
  1155. break ; 
  1156. case SET_FUNC_ADDRESS:
  1157. if(xl_priv->xl_message_level) 
  1158. printk(KERN_INFO "%s: Functional Address Set n",dev->name) ;  
  1159. break ; 
  1160. case CLOSE_NIC:
  1161. if(xl_priv->xl_message_level)
  1162. printk(KERN_INFO "%s: Received CLOSE_NIC interrupt in interrupt handler n",dev->name) ; 
  1163. break ; 
  1164. case SET_MULTICAST_MODE:
  1165. if(xl_priv->xl_message_level)
  1166. printk(KERN_INFO "%s: Multicast options successfully changedn",dev->name) ; 
  1167. break ;
  1168. case SET_RECEIVE_MODE:
  1169. if(xl_priv->xl_message_level) {  
  1170. if (xl_priv->xl_copy_all_options == 0x0004) 
  1171. printk(KERN_INFO "%s: Entering promiscuous mode n", dev->name) ; 
  1172. else
  1173. printk(KERN_INFO "%s: Entering normal receive mode n",dev->name) ; 
  1174. }
  1175. break ; 
  1176.  
  1177. } /* switch */
  1178. break ; 
  1179. } /* switch */
  1180. return ; 
  1181. static struct net_device_stats * xl_get_stats(struct net_device *dev)
  1182. {
  1183. struct xl_private *xl_priv = (struct xl_private *) dev->priv ;
  1184. return (struct net_device_stats *) &xl_priv->xl_stats; 
  1185. }
  1186. static int xl_set_mac_address (struct net_device *dev, void *addr) 
  1187. {
  1188. struct sockaddr *saddr = addr ; 
  1189. struct xl_private *xl_priv = (struct xl_private *)dev->priv ; 
  1190. if (netif_running(dev)) { 
  1191. printk(KERN_WARNING "%s: Cannot set mac/laa address while card is openn", dev->name) ; 
  1192. return -EIO ; 
  1193. }
  1194. memcpy(xl_priv->xl_laa, saddr->sa_data,dev->addr_len) ; 
  1195. if (xl_priv->xl_message_level) { 
  1196.   printk(KERN_INFO "%s: MAC/LAA Set to  = %x.%x.%x.%x.%x.%xn",dev->name, xl_priv->xl_laa[0],
  1197. xl_priv->xl_laa[1], xl_priv->xl_laa[2],
  1198. xl_priv->xl_laa[3], xl_priv->xl_laa[4],
  1199. xl_priv->xl_laa[5]);
  1200. return 0 ; 
  1201. }
  1202. static void xl_arb_cmd(struct net_device *dev)
  1203. {
  1204. struct xl_private *xl_priv = (struct xl_private *) dev->priv;
  1205. u8 * xl_mmio = xl_priv->xl_mmio ; 
  1206. u8 arb_cmd ; 
  1207. u16 lan_status, lan_status_diff ; 
  1208. writel( ( MEM_BYTE_READ | 0xD0000 | xl_priv->arb), xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1209. arb_cmd = readb(xl_mmio + MMIO_MACDATA) ; 
  1210. if (arb_cmd == RING_STATUS_CHANGE) { /* Ring.Status.Change */
  1211. writel( ( (MEM_WORD_READ | 0xD0000 | xl_priv->arb) + 6), xl_mmio + MMIO_MAC_ACCESS_CMD) ;
  1212.  
  1213. printk(KERN_INFO "%s: Ring Status Change: New Status = %04xn", dev->name, ntohs(readw(xl_mmio + MMIO_MACDATA) )) ; 
  1214. lan_status = ntohs(readw(xl_mmio + MMIO_MACDATA));
  1215. /* Acknowledge interrupt, this tells nic we are done with the arb */
  1216. writel(ACK_INTERRUPT | ARBCACK | LATCH_ACK, xl_mmio + MMIO_COMMAND) ; 
  1217. lan_status_diff = xl_priv->xl_lan_status ^ lan_status ; 
  1218. if (lan_status_diff & (LSC_LWF | LSC_ARW | LSC_FPE | LSC_RR) ) { 
  1219. if (lan_status_diff & LSC_LWF) 
  1220. printk(KERN_WARNING "%s: Short circuit detected on the loben",dev->name);
  1221. if (lan_status_diff & LSC_ARW) 
  1222. printk(KERN_WARNING "%s: Auto removal errorn",dev->name);
  1223. if (lan_status_diff & LSC_FPE)
  1224. printk(KERN_WARNING "%s: FDX Protocol Errorn",dev->name);
  1225. if (lan_status_diff & LSC_RR) 
  1226. printk(KERN_WARNING "%s: Force remove MAC frame receivedn",dev->name);
  1227. /* Adapter has been closed by the hardware */
  1228. netif_stop_queue(dev);
  1229. xl_freemem(dev) ; 
  1230. free_irq(dev->irq,dev);
  1231. printk(KERN_WARNING "%s: Adapter has been closed n", dev->name) ; 
  1232. } /* If serious error */
  1233. if (xl_priv->xl_message_level) { 
  1234. if (lan_status_diff & LSC_SIG_LOSS) 
  1235. printk(KERN_WARNING "%s: No receive signal detected n", dev->name) ; 
  1236. if (lan_status_diff & LSC_HARD_ERR)
  1237. printk(KERN_INFO "%s: Beaconing n",dev->name);
  1238. if (lan_status_diff & LSC_SOFT_ERR)
  1239. printk(KERN_WARNING "%s: Adapter transmitted Soft Error Report Mac Frame n",dev->name);
  1240. if (lan_status_diff & LSC_TRAN_BCN) 
  1241. printk(KERN_INFO "%s: We are tranmitting the beacon, aaahn",dev->name);
  1242. if (lan_status_diff & LSC_SS) 
  1243. printk(KERN_INFO "%s: Single Station on the ring n", dev->name);
  1244. if (lan_status_diff & LSC_RING_REC)
  1245. printk(KERN_INFO "%s: Ring recovery ongoingn",dev->name);
  1246. if (lan_status_diff & LSC_FDX_MODE)
  1247. printk(KERN_INFO "%s: Operating in FDX moden",dev->name);
  1248. if (lan_status_diff & LSC_CO) { 
  1249. if (xl_priv->xl_message_level) 
  1250. printk(KERN_INFO "%s: Counter Overflow n", dev->name);
  1251. /* Issue READ.LOG command */
  1252. xl_srb_cmd(dev, READ_LOG) ; 
  1253. }
  1254. /* There is no command in the tech docs to issue the read_sr_counters */
  1255. if (lan_status_diff & LSC_SR_CO) { 
  1256. if (xl_priv->xl_message_level)
  1257. printk(KERN_INFO "%s: Source routing counters overflown", dev->name);
  1258. }
  1259. xl_priv->xl_lan_status = lan_status ; 
  1260. }  /* Lan.change.status */
  1261. else if ( arb_cmd == RECEIVE_DATA) { /* Received.Data */
  1262. #if XL_DEBUG
  1263. printk(KERN_INFO "Received.Data n") ; 
  1264. #endif 
  1265. writel( ((MEM_WORD_READ | 0xD0000 | xl_priv->arb) + 6), xl_mmio + MMIO_MAC_ACCESS_CMD) ;
  1266. xl_priv->mac_buffer = ntohs(readw(xl_mmio + MMIO_MACDATA)) ;
  1267. /* Now we are going to be really basic here and not do anything
  1268.  * with the data at all. The tech docs do not give me enough
  1269.  * information to calculate the buffers properly so we're
  1270.  * just going to tell the nic that we've dealt with the frame
  1271.  * anyway.
  1272.  */
  1273. dev->last_rx = jiffies ; 
  1274. /* Acknowledge interrupt, this tells nic we are done with the arb */
  1275. writel(ACK_INTERRUPT | ARBCACK | LATCH_ACK, xl_mmio + MMIO_COMMAND) ; 
  1276. /* Is the ASB free ? */ 
  1277. xl_priv->asb_queued = 0 ; 
  1278. writel( ((MEM_BYTE_READ | 0xD0000 | xl_priv->asb) + 2), xl_mmio + MMIO_MAC_ACCESS_CMD) ;
  1279. if (readb(xl_mmio + MMIO_MACDATA) != 0xff) { 
  1280. xl_priv->asb_queued = 1 ;
  1281. xl_wait_misr_flags(dev) ;  
  1282. writel(MEM_BYTE_WRITE | MF_ASBFR, xl_mmio + MMIO_MAC_ACCESS_CMD); 
  1283. writeb(0xff, xl_mmio + MMIO_MACDATA) ;
  1284. writel(MMIO_BYTE_WRITE | MISR_SET, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1285. writeb(MISR_ASBFR, xl_mmio + MMIO_MACDATA) ; 
  1286. return ; 
  1287. /* Drop out and wait for the bottom half to be run */
  1288. }
  1289. xl_asb_cmd(dev) ; 
  1290. } else {
  1291. printk(KERN_WARNING "%s: Received unknown arb (xl_priv) command: %02x n",dev->name,arb_cmd) ; 
  1292. }
  1293. /* Acknowledge the arb interrupt */
  1294. writel(ACK_INTERRUPT | ARBCACK | LATCH_ACK , xl_mmio + MMIO_COMMAND) ; 
  1295. return ; 
  1296. }
  1297. /*
  1298.  * There is only one asb command, but we can get called from different
  1299.  * places.
  1300.  */
  1301. static void xl_asb_cmd(struct net_device *dev)
  1302. {
  1303. struct xl_private *xl_priv = (struct xl_private *) dev->priv ; 
  1304. u8 * xl_mmio = xl_priv->xl_mmio ; 
  1305. if (xl_priv->asb_queued == 1) 
  1306. writel(ACK_INTERRUPT | LATCH_ACK | ASBFACK, xl_mmio + MMIO_COMMAND) ; 
  1307. writel(MEM_BYTE_WRITE | 0xd0000 | xl_priv->asb, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1308. writeb(0x81, xl_mmio + MMIO_MACDATA) ; 
  1309. writel(MEM_WORD_WRITE | 0xd0000 | xl_priv->asb | 6, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1310. writew(ntohs(xl_priv->mac_buffer), xl_mmio + MMIO_MACDATA) ; 
  1311. xl_wait_misr_flags(dev) ; 
  1312. writel(MEM_BYTE_WRITE | MF_RASB, xl_mmio + MMIO_MAC_ACCESS_CMD); 
  1313. writeb(0xff, xl_mmio + MMIO_MACDATA) ;
  1314. writel(MMIO_BYTE_WRITE | MISR_SET, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1315. writeb(MISR_RASB, xl_mmio + MMIO_MACDATA) ; 
  1316. xl_priv->asb_queued = 2 ; 
  1317. return ; 
  1318. }
  1319. /*
  1320.  *  This will only get called if there was an error
  1321.  * from the asb cmd.
  1322.  */
  1323. static void xl_asb_bh(struct net_device *dev) 
  1324. {
  1325. struct xl_private *xl_priv = (struct xl_private *) dev->priv ; 
  1326. u8 * xl_mmio = xl_priv->xl_mmio ; 
  1327. u8 ret_code ; 
  1328. writel(MMIO_BYTE_READ | 0xd0000 | xl_priv->asb | 2, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1329. ret_code = readb(xl_mmio + MMIO_MACDATA) ; 
  1330. switch (ret_code) { 
  1331. case 0x01:
  1332. printk(KERN_INFO "%s: ASB Command, unrecognized command code n",dev->name) ;
  1333. break ;
  1334. case 0x26:
  1335. printk(KERN_INFO "%s: ASB Command, unexpected receive buffer n", dev->name) ; 
  1336. break ; 
  1337. case 0x40:
  1338. printk(KERN_INFO "%s: ASB Command, Invalid Station ID n", dev->name) ; 
  1339. break ;  
  1340. }
  1341. xl_priv->asb_queued = 0 ; 
  1342. writel(ACK_INTERRUPT | LATCH_ACK | ASBFACK, xl_mmio + MMIO_COMMAND) ;
  1343. return ;  
  1344. }
  1345. /* 
  1346.  * Issue srb commands to the nic 
  1347.  */
  1348. static void xl_srb_cmd(struct net_device *dev, int srb_cmd) 
  1349. {
  1350. struct xl_private *xl_priv = (struct xl_private *) dev->priv ; 
  1351. u8 * xl_mmio = xl_priv->xl_mmio ; 
  1352. switch (srb_cmd) { 
  1353. case READ_LOG:
  1354. writel(MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1355. writeb(READ_LOG, xl_mmio + MMIO_MACDATA) ; 
  1356. break; 
  1357. case CLOSE_NIC:
  1358. writel(MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1359. writeb(CLOSE_NIC, xl_mmio + MMIO_MACDATA) ; 
  1360. break ;
  1361. case SET_RECEIVE_MODE:
  1362. writel(MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1363. writeb(SET_RECEIVE_MODE, xl_mmio + MMIO_MACDATA) ; 
  1364. writel(MEM_WORD_WRITE | 0xD0000 | xl_priv->srb | 4, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1365. writew(xl_priv->xl_copy_all_options, xl_mmio + MMIO_MACDATA) ; 
  1366. break ;
  1367. case SET_FUNC_ADDRESS:
  1368. writel(MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1369. writeb(SET_FUNC_ADDRESS, xl_mmio + MMIO_MACDATA) ; 
  1370. writel(MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb | 6 , xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1371. writeb(xl_priv->xl_functional_addr[0], xl_mmio + MMIO_MACDATA) ; 
  1372. writel(MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb | 7 , xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1373. writeb(xl_priv->xl_functional_addr[1], xl_mmio + MMIO_MACDATA) ; 
  1374. writel(MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb | 8 , xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1375. writeb(xl_priv->xl_functional_addr[2], xl_mmio + MMIO_MACDATA) ; 
  1376. writel(MEM_BYTE_WRITE | 0xD0000 | xl_priv->srb | 9 , xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1377. writeb(xl_priv->xl_functional_addr[3], xl_mmio + MMIO_MACDATA) ;
  1378. break ;  
  1379. } /* switch */
  1380. xl_wait_misr_flags(dev)  ; 
  1381. /* Write 0xff to the CSRB flag */
  1382. writel(MEM_BYTE_WRITE | MF_CSRB , xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1383. writeb(0xFF, xl_mmio + MMIO_MACDATA) ; 
  1384. /* Set csrb bit in MISR register to process command */
  1385. writel(MMIO_BYTE_WRITE | MISR_SET, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1386. writeb(MISR_CSRB, xl_mmio + MMIO_MACDATA) ; 
  1387. xl_priv->srb_queued = 1 ; 
  1388. return ; 
  1389. }
  1390. /*
  1391.  * This is nasty, to use the MISR command you have to wait for 6 memory locations
  1392.  * to be zero. This is the way the driver does on other OS'es so we should be ok with 
  1393.  * the empty loop.
  1394.  */
  1395. static void xl_wait_misr_flags(struct net_device *dev) 
  1396. {
  1397. struct xl_private *xl_priv = (struct xl_private *) dev->priv ; 
  1398. u8 * xl_mmio = xl_priv->xl_mmio ; 
  1399. int i  ; 
  1400. writel(MMIO_BYTE_READ | MISR_RW, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1401. if (readb(xl_mmio + MMIO_MACDATA) != 0) {  /* Misr not clear */
  1402. for (i=0; i<6; i++) { 
  1403. writel(MEM_BYTE_READ | 0xDFFE0 | i, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1404. while (readb(xl_mmio + MMIO_MACDATA) != 0 ) {} ; /* Empty Loop */
  1405. }
  1406. writel(MMIO_BYTE_WRITE | MISR_AND, xl_mmio + MMIO_MAC_ACCESS_CMD) ; 
  1407. writeb(0x80, xl_mmio + MMIO_MACDATA) ; 
  1408. return ; 
  1409. /*
  1410.  * Change mtu size, this should work the same as olympic
  1411.  */
  1412. static int xl_change_mtu(struct net_device *dev, int mtu) 
  1413. {
  1414. struct xl_private *xl_priv = (struct xl_private *) dev->priv;
  1415. u16 max_mtu ; 
  1416. if (xl_priv->xl_ring_speed == 4)
  1417. max_mtu = 4500 ; 
  1418. else
  1419. max_mtu = 18000 ; 
  1420. if (mtu > max_mtu)
  1421. return -EINVAL ; 
  1422. if (mtu < 100) 
  1423. return -EINVAL ; 
  1424. dev->mtu = mtu ; 
  1425. xl_priv->pkt_buf_sz = mtu + TR_HLEN ; 
  1426. return 0 ; 
  1427. }
  1428. static void __devexit xl_remove_one (struct pci_dev *pdev)
  1429. {
  1430. struct net_device *dev = pdev->driver_data;
  1431. struct xl_private *xl_priv=(struct xl_private *)dev->priv;
  1432. unregister_trdev(dev);
  1433. iounmap(xl_priv->xl_mmio) ; 
  1434. pci_release_regions(pdev) ; 
  1435. pci_set_drvdata(pdev,NULL) ; 
  1436. kfree(dev);
  1437. return ; 
  1438. }
  1439. static struct pci_driver xl_3c359_driver = {
  1440. name: "3c359",
  1441. id_table: xl_pci_tbl,
  1442. probe: xl_probe,
  1443. remove: __devexit_p(xl_remove_one),
  1444. };
  1445. static int __init xl_pci_init (void)
  1446. {
  1447. return pci_module_init (&xl_3c359_driver);
  1448. }
  1449. static void __exit xl_pci_cleanup (void)
  1450. {
  1451. pci_unregister_driver (&xl_3c359_driver);
  1452. }
  1453. module_init(xl_pci_init);
  1454. module_exit(xl_pci_cleanup);
  1455. MODULE_LICENSE("GPL") ;