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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * acenic.c: Linux driver for the Alteon AceNIC Gigabit Ethernet card
  3.  *           and other Tigon based cards.
  4.  *
  5.  * Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>.
  6.  *
  7.  * Thanks to Alteon and 3Com for providing hardware and documentation
  8.  * enabling me to write this driver.
  9.  *
  10.  * A mailing list for discussing the use of this driver has been
  11.  * setup, please subscribe to the lists if you have any questions
  12.  * about the driver. Send mail to linux-acenic-help@sunsite.auc.dk to
  13.  * see how to subscribe.
  14.  *
  15.  * This program is free software; you can redistribute it and/or modify
  16.  * it under the terms of the GNU General Public License as published by
  17.  * the Free Software Foundation; either version 2 of the License, or
  18.  * (at your option) any later version.
  19.  *
  20.  * Additional credits:
  21.  *   Pete Wyckoff <wyckoff@ca.sandia.gov>: Initial Linux/Alpha and trace
  22.  *       dump support. The trace dump support has not been
  23.  *       integrated yet however.
  24.  *   Troy Benjegerdes: Big Endian (PPC) patches.
  25.  *   Nate Stahl: Better out of memory handling and stats support.
  26.  *   Aman Singla: Nasty race between interrupt handler and tx code dealing
  27.  *                with 'testing the tx_ret_csm and setting tx_full'
  28.  *   David S. Miller <davem@redhat.com>: conversion to new PCI dma mapping
  29.  *                                       infrastructure and Sparc support
  30.  *   Pierrick Pinasseau (CERN): For lending me an Ultra 5 to test the
  31.  *                              driver under Linux/Sparc64
  32.  *   Matt Domsch <Matt_Domsch@dell.com>: Detect Alteon 1000baseT cards
  33.  *   Chip Salzenberg <chip@valinux.com>: Fix race condition between tx
  34.  *                                       handler and close() cleanup.
  35.  *   Ken Aaker <kdaaker@rchland.vnet.ibm.com>: Correct check for whether
  36.  *                                       memory mapped IO is enabled to
  37.  *                                       make the driver work on RS/6000.
  38.  *   Takayoshi Kouchi <kouchi@hpc.bs1.fc.nec.co.jp>: Identifying problem
  39.  *                                       where the driver would disable
  40.  *                                       bus master mode if it had to disable
  41.  *                                       write and invalidate.
  42.  *   Stephen Hack <stephen_hack@hp.com>: Fixed ace_set_mac_addr for little
  43.  *                                       endian systems.
  44.  *   Val Henson <vhenson@esscom.com>:    Reset Jumbo skb producer and
  45.  *                                       rx producer index when
  46.  *                                       flushing the Jumbo ring.
  47.  *   Hans Grobler <grobh@sun.ac.za>:     Memory leak fixes in the
  48.  *                                       driver init path.
  49.  */
  50. #include <linux/config.h>
  51. #include <linux/module.h>
  52. #include <linux/version.h>
  53. #include <linux/types.h>
  54. #include <linux/errno.h>
  55. #include <linux/ioport.h>
  56. #include <linux/pci.h>
  57. #include <linux/kernel.h>
  58. #include <linux/netdevice.h>
  59. #include <linux/etherdevice.h>
  60. #include <linux/skbuff.h>
  61. #include <linux/init.h>
  62. #include <linux/delay.h>
  63. #include <linux/mm.h>
  64. #include <linux/highmem.h>
  65. #include <linux/sockios.h>
  66. #ifdef SIOCETHTOOL
  67. #include <linux/ethtool.h>
  68. #endif
  69. #include <net/sock.h>
  70. #include <net/ip.h>
  71. #include <asm/system.h>
  72. #include <asm/io.h>
  73. #include <asm/irq.h>
  74. #include <asm/byteorder.h>
  75. #include <asm/uaccess.h>
  76. #undef INDEX_DEBUG
  77. #ifdef CONFIG_ACENIC_OMIT_TIGON_I
  78. #define ACE_IS_TIGON_I(ap) 0
  79. #else
  80. #define ACE_IS_TIGON_I(ap) (ap->version == 1)
  81. #endif
  82. #ifndef PCI_VENDOR_ID_ALTEON
  83. #define PCI_VENDOR_ID_ALTEON 0x12ae
  84. #endif
  85. #ifndef PCI_DEVICE_ID_ALTEON_ACENIC_FIBRE
  86. #define PCI_DEVICE_ID_ALTEON_ACENIC_FIBRE  0x0001
  87. #define PCI_DEVICE_ID_ALTEON_ACENIC_COPPER 0x0002
  88. #endif
  89. #ifndef PCI_DEVICE_ID_3COM_3C985
  90. #define PCI_DEVICE_ID_3COM_3C985 0x0001
  91. #endif
  92. #ifndef PCI_VENDOR_ID_NETGEAR
  93. #define PCI_VENDOR_ID_NETGEAR 0x1385
  94. #define PCI_DEVICE_ID_NETGEAR_GA620 0x620a
  95. #endif
  96. #ifndef PCI_DEVICE_ID_NETGEAR_GA620T
  97. #define PCI_DEVICE_ID_NETGEAR_GA620T 0x630a
  98. #endif
  99. /*
  100.  * Farallon used the DEC vendor ID by mistake and they seem not
  101.  * to care - stinky!
  102.  */
  103. #ifndef PCI_DEVICE_ID_FARALLON_PN9000SX
  104. #define PCI_DEVICE_ID_FARALLON_PN9000SX 0x1a
  105. #endif
  106. #ifndef PCI_VENDOR_ID_SGI
  107. #define PCI_VENDOR_ID_SGI 0x10a9
  108. #endif
  109. #ifndef PCI_DEVICE_ID_SGI_ACENIC
  110. #define PCI_DEVICE_ID_SGI_ACENIC 0x0009
  111. #endif
  112. #if LINUX_VERSION_CODE >= 0x20400
  113. static struct pci_device_id acenic_pci_tbl[] __initdata = {
  114. { PCI_VENDOR_ID_ALTEON, PCI_DEVICE_ID_ALTEON_ACENIC_FIBRE,
  115.   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, },
  116. { PCI_VENDOR_ID_ALTEON, PCI_DEVICE_ID_ALTEON_ACENIC_COPPER,
  117.   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, },
  118. { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3C985,
  119.   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, },
  120. { PCI_VENDOR_ID_NETGEAR, PCI_DEVICE_ID_NETGEAR_GA620,
  121.   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, },
  122. { PCI_VENDOR_ID_NETGEAR, PCI_DEVICE_ID_NETGEAR_GA620T,
  123.   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, },
  124. /*
  125.  * Farallon used the DEC vendor ID on their cards incorrectly.
  126.  */
  127. { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_FARALLON_PN9000SX,
  128.   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, },
  129. { PCI_VENDOR_ID_SGI, PCI_DEVICE_ID_SGI_ACENIC,
  130.   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, },
  131. { }
  132. };
  133. MODULE_DEVICE_TABLE(pci, acenic_pci_tbl);
  134. #endif
  135. #ifndef MODULE_LICENSE
  136. #define MODULE_LICENSE(a)
  137. #endif
  138. #ifndef wmb
  139. #define wmb() mb()
  140. #endif
  141. #ifndef __exit
  142. #define __exit
  143. #endif
  144. #ifndef __devinit
  145. #define __devinit __init
  146. #endif
  147. #ifndef SMP_CACHE_BYTES
  148. #define SMP_CACHE_BYTES L1_CACHE_BYTES
  149. #endif
  150. #ifndef SET_MODULE_OWNER
  151. #define SET_MODULE_OWNER(dev) {do{} while(0);}
  152. #define ACE_MOD_INC_USE_COUNT MOD_INC_USE_COUNT
  153. #define ACE_MOD_DEC_USE_COUNT MOD_DEC_USE_COUNT
  154. #else
  155. #define ACE_MOD_INC_USE_COUNT {do{} while(0);}
  156. #define ACE_MOD_DEC_USE_COUNT {do{} while(0);}
  157. #endif
  158. #if (LINUX_VERSION_CODE < 0x02030d)
  159. #define pci_resource_start(dev, bar) dev->base_address[bar]
  160. #elif (LINUX_VERSION_CODE < 0x02032c)
  161. #define pci_resource_start(dev, bar) dev->resource[bar].start
  162. #endif
  163. #if (LINUX_VERSION_CODE < 0x02030e)
  164. #define net_device device
  165. #endif
  166. #if (LINUX_VERSION_CODE < 0x02032a)
  167. typedef u32 dma_addr_t;
  168. static inline void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
  169.  dma_addr_t *dma_handle)
  170. {
  171. void *virt_ptr;
  172. virt_ptr = kmalloc(size, GFP_KERNEL);
  173. if (!virt_ptr)
  174. return NULL;
  175. *dma_handle = virt_to_bus(virt_ptr);
  176. return virt_ptr;
  177. }
  178. #define pci_free_consistent(cookie, size, ptr, dma_ptr) kfree(ptr)
  179. #define pci_map_page(cookie, page, off, size, dir)
  180. virt_to_bus(page_address(page)+(off))
  181. #define pci_unmap_page(cookie, address, size, dir)
  182. #define pci_set_dma_mask(dev, mask)
  183. (((u64)(mask) & 0xffffffff00000000) == 0 ? 0 : -EIO)
  184. #define pci_dma_supported(dev, mask)
  185. (((u64)(mask) & 0xffffffff00000000) == 0 ? 1 : 0)
  186. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  187. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  188. #elif (LINUX_VERSION_CODE < 0x02040d)
  189. /*
  190.  * 2.4.13 introduced pci_map_page()/pci_unmap_page() - for 2.4.12 and prior,
  191.  * fall back on pci_map_single()/pci_unnmap_single().
  192.  *
  193.  * We are guaranteed that the page is mapped at this point since
  194.  * pci_map_page() is only used upon valid struct skb's.
  195.  */
  196. static inline dma_addr_t
  197. pci_map_page(struct pci_dev *cookie, struct page *page, unsigned long off,
  198.      size_t size, int dir)
  199. {
  200. void *page_virt;
  201. page_virt = page_address(page);
  202. if (!page_virt)
  203. BUG();
  204. return pci_map_single(cookie, (page_virt + off), size, dir);
  205. }
  206. #define pci_unmap_page(cookie, dma_addr, size, dir)
  207. pci_unmap_single(cookie, dma_addr, size, dir)
  208. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  209. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  210. #endif
  211. #if (LINUX_VERSION_CODE < 0x02032b)
  212. /*
  213.  * SoftNet
  214.  *
  215.  * For pre-softnet kernels we need to tell the upper layer not to
  216.  * re-enter start_xmit() while we are in there. However softnet
  217.  * guarantees not to enter while we are in there so there is no need
  218.  * to do the netif_stop_queue() dance unless the transmit queue really
  219.  * gets stuck. This should also improve performance according to tests
  220.  * done by Aman Singla.
  221.  */
  222. #define dev_kfree_skb_irq(a) dev_kfree_skb(a)
  223. #define netif_wake_queue(dev) clear_bit(0, &dev->tbusy)
  224. #define netif_stop_queue(dev) set_bit(0, &dev->tbusy)
  225. #define late_stop_netif_stop_queue(dev) {do{} while(0);}
  226. #define early_stop_netif_stop_queue(dev) test_and_set_bit(0,&dev->tbusy)
  227. #define early_stop_netif_wake_queue(dev) netif_wake_queue(dev)
  228. static inline void netif_start_queue(struct net_device *dev)
  229. {
  230. dev->tbusy = 0;
  231. dev->interrupt = 0;
  232. dev->start = 1;
  233. }
  234. #define ace_mark_net_bh() mark_bh(NET_BH)
  235. #define netif_queue_stopped(dev) dev->tbusy
  236. #define netif_running(dev) dev->start
  237. #define ace_if_down(dev) {do{dev->start = 0;} while(0);}
  238. #define tasklet_struct tq_struct
  239. static inline void tasklet_schedule(struct tasklet_struct *tasklet)
  240. {
  241. queue_task(tasklet, &tq_immediate);
  242. mark_bh(IMMEDIATE_BH);
  243. }
  244. static inline void tasklet_init(struct tasklet_struct *tasklet,
  245. void (*func)(unsigned long),
  246. unsigned long data)
  247. {
  248. tasklet->next = NULL;
  249. tasklet->sync = 0;
  250. tasklet->routine = (void (*)(void *))func;
  251. tasklet->data = (void *)data;
  252. }
  253. #define tasklet_kill(tasklet) {do{} while(0);}
  254. #else
  255. #define late_stop_netif_stop_queue(dev) netif_stop_queue(dev)
  256. #define early_stop_netif_stop_queue(dev) 0
  257. #define early_stop_netif_wake_queue(dev) {do{} while(0);}
  258. #define ace_mark_net_bh() {do{} while(0);}
  259. #define ace_if_down(dev) {do{} while(0);}
  260. #endif
  261. #if (LINUX_VERSION_CODE >= 0x02031b)
  262. #define NEW_NETINIT
  263. #define ACE_PROBE_ARG void
  264. #else
  265. #define ACE_PROBE_ARG struct net_device *dev
  266. #endif
  267. #ifndef min_t
  268. #define min_t(type,a,b) (((a)<(b))?(a):(b))
  269. #endif
  270. #ifndef ARCH_HAS_PREFETCHW
  271. #ifndef prefetchw
  272. #define prefetchw(x) {do{} while(0);}
  273. #endif
  274. #endif
  275. #define ACE_MAX_MOD_PARMS 8
  276. #define BOARD_IDX_STATIC 0
  277. #define BOARD_IDX_OVERFLOW -1
  278. #include "acenic.h"
  279. /*
  280.  * These must be defined before the firmware is included.
  281.  */
  282. #define MAX_TEXT_LEN 96*1024
  283. #define MAX_RODATA_LEN 8*1024
  284. #define MAX_DATA_LEN 2*1024
  285. #include "acenic_firmware.h"
  286. #ifndef tigon2FwReleaseLocal
  287. #define tigon2FwReleaseLocal 0
  288. #endif
  289. /*
  290.  * This driver currently supports Tigon I and Tigon II based cards
  291.  * including the Alteon AceNIC, the 3Com 3C985[B] and NetGear
  292.  * GA620. The driver should also work on the SGI, DEC and Farallon
  293.  * versions of the card, however I have not been able to test that
  294.  * myself.
  295.  *
  296.  * This card is really neat, it supports receive hardware checksumming
  297.  * and jumbo frames (up to 9000 bytes) and does a lot of work in the
  298.  * firmware. Also the programming interface is quite neat, except for
  299.  * the parts dealing with the i2c eeprom on the card ;-)
  300.  *
  301.  * Using jumbo frames:
  302.  *
  303.  * To enable jumbo frames, simply specify an mtu between 1500 and 9000
  304.  * bytes to ifconfig. Jumbo frames can be enabled or disabled at any time
  305.  * by running `ifconfig eth<X> mtu <MTU>' with <X> being the Ethernet
  306.  * interface number and <MTU> being the MTU value.
  307.  *
  308.  * Module parameters:
  309.  *
  310.  * When compiled as a loadable module, the driver allows for a number
  311.  * of module parameters to be specified. The driver supports the
  312.  * following module parameters:
  313.  *
  314.  *  trace=<val> - Firmware trace level. This requires special traced
  315.  *                firmware to replace the firmware supplied with
  316.  *                the driver - for debugging purposes only.
  317.  *
  318.  *  link=<val>  - Link state. Normally you want to use the default link
  319.  *                parameters set by the driver. This can be used to
  320.  *                override these in case your switch doesn't negotiate
  321.  *                the link properly. Valid values are:
  322.  *         0x0001 - Force half duplex link.
  323.  *         0x0002 - Do not negotiate line speed with the other end.
  324.  *         0x0010 - 10Mbit/sec link.
  325.  *         0x0020 - 100Mbit/sec link.
  326.  *         0x0040 - 1000Mbit/sec link.
  327.  *         0x0100 - Do not negotiate flow control.
  328.  *         0x0200 - Enable RX flow control Y
  329.  *         0x0400 - Enable TX flow control Y (Tigon II NICs only).
  330.  *                Default value is 0x0270, ie. enable link+flow
  331.  *                control negotiation. Negotiating the highest
  332.  *                possible link speed with RX flow control enabled.
  333.  *
  334.  *                When disabling link speed negotiation, only one link
  335.  *                speed is allowed to be specified!
  336.  *
  337.  *  tx_coal_tick=<val> - number of coalescing clock ticks (us) allowed
  338.  *                to wait for more packets to arive before
  339.  *                interrupting the host, from the time the first
  340.  *                packet arrives.
  341.  *
  342.  *  rx_coal_tick=<val> - number of coalescing clock ticks (us) allowed
  343.  *                to wait for more packets to arive in the transmit ring,
  344.  *                before interrupting the host, after transmitting the
  345.  *                first packet in the ring.
  346.  *
  347.  *  max_tx_desc=<val> - maximum number of transmit descriptors
  348.  *                (packets) transmitted before interrupting the host.
  349.  *
  350.  *  max_rx_desc=<val> - maximum number of receive descriptors
  351.  *                (packets) received before interrupting the host.
  352.  *
  353.  *  tx_ratio=<val> - 7 bit value (0 - 63) specifying the split in 64th
  354.  *                increments of the NIC's on board memory to be used for
  355.  *                transmit and receive buffers. For the 1MB NIC app. 800KB
  356.  *                is available, on the 1/2MB NIC app. 300KB is available.
  357.  *                68KB will always be available as a minimum for both
  358.  *                directions. The default value is a 50/50 split.
  359.  *  dis_pci_mem_inval=<val> - disable PCI memory write and invalidate
  360.  *                operations, default (1) is to always disable this as
  361.  *                that is what Alteon does on NT. I have not been able
  362.  *                to measure any real performance differences with
  363.  *                this on my systems. Set <val>=0 if you want to
  364.  *                enable these operations.
  365.  *
  366.  * If you use more than one NIC, specify the parameters for the
  367.  * individual NICs with a comma, ie. trace=0,0x00001fff,0 you want to
  368.  * run tracing on NIC #2 but not on NIC #1 and #3.
  369.  *
  370.  * TODO:
  371.  *
  372.  * - Proper multicast support.
  373.  * - NIC dump support.
  374.  * - More tuning parameters.
  375.  *
  376.  * The mini ring is not used under Linux and I am not sure it makes sense
  377.  * to actually use it.
  378.  *
  379.  * New interrupt handler strategy:
  380.  *
  381.  * The old interrupt handler worked using the traditional method of
  382.  * replacing an skbuff with a new one when a packet arrives. However
  383.  * the rx rings do not need to contain a static number of buffer
  384.  * descriptors, thus it makes sense to move the memory allocation out
  385.  * of the main interrupt handler and do it in a bottom half handler
  386.  * and only allocate new buffers when the number of buffers in the
  387.  * ring is below a certain threshold. In order to avoid starving the
  388.  * NIC under heavy load it is however necessary to force allocation
  389.  * when hitting a minimum threshold. The strategy for alloction is as
  390.  * follows:
  391.  *
  392.  *     RX_LOW_BUF_THRES    - allocate buffers in the bottom half
  393.  *     RX_PANIC_LOW_THRES  - we are very low on buffers, allocate
  394.  *                           the buffers in the interrupt handler
  395.  *     RX_RING_THRES       - maximum number of buffers in the rx ring
  396.  *     RX_MINI_THRES       - maximum number of buffers in the mini ring
  397.  *     RX_JUMBO_THRES      - maximum number of buffers in the jumbo ring
  398.  *
  399.  * One advantagous side effect of this allocation approach is that the
  400.  * entire rx processing can be done without holding any spin lock
  401.  * since the rx rings and registers are totally independant of the tx
  402.  * ring and its registers.  This of course includes the kmalloc's of
  403.  * new skb's. Thus start_xmit can run in parallel with rx processing
  404.  * and the memory allocation on SMP systems.
  405.  *
  406.  * Note that running the skb reallocation in a bottom half opens up
  407.  * another can of races which needs to be handled properly. In
  408.  * particular it can happen that the interrupt handler tries to run
  409.  * the reallocation while the bottom half is either running on another
  410.  * CPU or was interrupted on the same CPU. To get around this the
  411.  * driver uses bitops to prevent the reallocation routines from being
  412.  * reentered.
  413.  *
  414.  * TX handling can also be done without holding any spin lock, wheee
  415.  * this is fun! since tx_ret_csm is only written to by the interrupt
  416.  * handler. The case to be aware of is when shutting down the device
  417.  * and cleaning up where it is necessary to make sure that
  418.  * start_xmit() is not running while this is happening. Well DaveM
  419.  * informs me that this case is already protected against ... bye bye
  420.  * Mr. Spin Lock, it was nice to know you.
  421.  *
  422.  * TX interrupts are now partly disabled so the NIC will only generate
  423.  * TX interrupts for the number of coal ticks, not for the number of
  424.  * TX packets in the queue. This should reduce the number of TX only,
  425.  * ie. when no RX processing is done, interrupts seen.
  426.  */
  427. /*
  428.  * Threshold values for RX buffer allocation - the low water marks for
  429.  * when to start refilling the rings are set to 75% of the ring
  430.  * sizes. It seems to make sense to refill the rings entirely from the
  431.  * intrrupt handler once it gets below the panic threshold, that way
  432.  * we don't risk that the refilling is moved to another CPU when the
  433.  * one running the interrupt handler just got the slab code hot in its
  434.  * cache.
  435.  */
  436. #define RX_RING_SIZE 72
  437. #define RX_MINI_SIZE 64
  438. #define RX_JUMBO_SIZE 48
  439. #define RX_PANIC_STD_THRES 16
  440. #define RX_PANIC_STD_REFILL (3*RX_PANIC_STD_THRES)/2
  441. #define RX_LOW_STD_THRES (3*RX_RING_SIZE)/4
  442. #define RX_PANIC_MINI_THRES 12
  443. #define RX_PANIC_MINI_REFILL (3*RX_PANIC_MINI_THRES)/2
  444. #define RX_LOW_MINI_THRES (3*RX_MINI_SIZE)/4
  445. #define RX_PANIC_JUMBO_THRES 6
  446. #define RX_PANIC_JUMBO_REFILL (3*RX_PANIC_JUMBO_THRES)/2
  447. #define RX_LOW_JUMBO_THRES (3*RX_JUMBO_SIZE)/4
  448. /*
  449.  * Size of the mini ring entries, basically these just should be big
  450.  * enough to take TCP ACKs
  451.  */
  452. #define ACE_MINI_SIZE 100
  453. #define ACE_MINI_BUFSIZE (ACE_MINI_SIZE + 2 + 16)
  454. #define ACE_STD_BUFSIZE (ACE_STD_MTU + ETH_HLEN + 2+4+16)
  455. #define ACE_JUMBO_BUFSIZE (ACE_JUMBO_MTU + ETH_HLEN + 2+4+16)
  456. /*
  457.  * There seems to be a magic difference in the effect between 995 and 996
  458.  * but little difference between 900 and 995 ... no idea why.
  459.  *
  460.  * There is now a default set of tuning parameters which is set, depending
  461.  * on whether or not the user enables Jumbo frames. It's assumed that if
  462.  * Jumbo frames are enabled, the user wants optimal tuning for that case.
  463.  */
  464. #define DEF_TX_COAL 400 /* 996 */
  465. #define DEF_TX_MAX_DESC 60  /* was 40 */
  466. #define DEF_RX_COAL 120 /* 1000 */
  467. #define DEF_RX_MAX_DESC 25
  468. #define DEF_TX_RATIO 21 /* 24 */
  469. #define DEF_JUMBO_TX_COAL 20
  470. #define DEF_JUMBO_TX_MAX_DESC 60
  471. #define DEF_JUMBO_RX_COAL 30
  472. #define DEF_JUMBO_RX_MAX_DESC 6
  473. #define DEF_JUMBO_TX_RATIO 21
  474. #if tigon2FwReleaseLocal < 20001118
  475. /*
  476.  * Standard firmware and early modifications duplicate
  477.  * IRQ load without this flag (coal timer is never reset).
  478.  * Note that with this flag tx_coal should be less than
  479.  * time to xmit full tx ring.
  480.  * 400usec is not so bad for tx ring size of 128.
  481.  */
  482. #define TX_COAL_INTS_ONLY 1 /* worth it */
  483. #else
  484. /*
  485.  * With modified firmware, this is not necessary, but still useful.
  486.  */
  487. #define TX_COAL_INTS_ONLY 1
  488. #endif
  489. #define DEF_TRACE 0
  490. #define DEF_STAT (2 * TICKS_PER_SEC)
  491. static int link[ACE_MAX_MOD_PARMS];
  492. static int trace[ACE_MAX_MOD_PARMS];
  493. static int tx_coal_tick[ACE_MAX_MOD_PARMS];
  494. static int rx_coal_tick[ACE_MAX_MOD_PARMS];
  495. static int max_tx_desc[ACE_MAX_MOD_PARMS];
  496. static int max_rx_desc[ACE_MAX_MOD_PARMS];
  497. static int tx_ratio[ACE_MAX_MOD_PARMS];
  498. static int dis_pci_mem_inval[ACE_MAX_MOD_PARMS] = {1, 1, 1, 1, 1, 1, 1, 1};
  499. static char version[] __initdata = 
  500.   "acenic.c: v0.85 11/08/2001  Jes Sorensen, linux-acenic@SunSITE.dkn"
  501.   "                            http://home.cern.ch/~jes/gige/acenic.htmln";
  502. static struct net_device *root_dev;
  503. static int probed __initdata = 0;
  504. int __devinit acenic_probe (ACE_PROBE_ARG)
  505. {
  506. #ifdef NEW_NETINIT
  507. struct net_device *dev;
  508. #endif
  509. struct ace_private *ap;
  510. struct pci_dev *pdev = NULL;
  511. int boards_found = 0;
  512. int version_disp;
  513. if (probed)
  514. return -ENODEV;
  515. probed++;
  516. if (!pci_present()) /* is PCI support present? */
  517. return -ENODEV;
  518. version_disp = 0;
  519. while ((pdev = pci_find_class(PCI_CLASS_NETWORK_ETHERNET<<8, pdev))) {
  520. if (!((pdev->vendor == PCI_VENDOR_ID_ALTEON) &&
  521.       ((pdev->device == PCI_DEVICE_ID_ALTEON_ACENIC_FIBRE) ||
  522.        (pdev->device == PCI_DEVICE_ID_ALTEON_ACENIC_COPPER)))&&
  523.     !((pdev->vendor == PCI_VENDOR_ID_3COM) &&
  524.       (pdev->device == PCI_DEVICE_ID_3COM_3C985)) &&
  525.     !((pdev->vendor == PCI_VENDOR_ID_NETGEAR) &&
  526.       ((pdev->device == PCI_DEVICE_ID_NETGEAR_GA620) || 
  527.        (pdev->device == PCI_DEVICE_ID_NETGEAR_GA620T))) &&
  528. /*
  529.  * Farallon used the DEC vendor ID on their cards by
  530.  * mistake for a while
  531.  */
  532.     !((pdev->vendor == PCI_VENDOR_ID_DEC) &&
  533.       (pdev->device == PCI_DEVICE_ID_FARALLON_PN9000SX)) &&
  534.     !((pdev->vendor == PCI_VENDOR_ID_SGI) &&
  535.       (pdev->device == PCI_DEVICE_ID_SGI_ACENIC)))
  536. continue;
  537. dev = init_etherdev(NULL, sizeof(struct ace_private));
  538. if (dev == NULL) {
  539. printk(KERN_ERR "acenic: Unable to allocate "
  540.        "net_device structure!n");
  541. break;
  542. }
  543. SET_MODULE_OWNER(dev);
  544. if (!dev->priv)
  545. dev->priv = kmalloc(sizeof(*ap), GFP_KERNEL);
  546. if (!dev->priv) {
  547. printk(KERN_ERR "acenic: Unable to allocate memoryn");
  548. return -ENOMEM;
  549. }
  550. ap = dev->priv;
  551. ap->pdev = pdev;
  552. dev->irq = pdev->irq;
  553. dev->open = &ace_open;
  554. dev->hard_start_xmit = &ace_start_xmit;
  555. dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
  556. if (1) {
  557. static void ace_watchdog(struct net_device *dev);
  558. dev->tx_timeout = &ace_watchdog;
  559. dev->watchdog_timeo = 5*HZ;
  560. }
  561. dev->stop = &ace_close;
  562. dev->get_stats = &ace_get_stats;
  563. dev->set_multicast_list = &ace_set_multicast_list;
  564. dev->do_ioctl = &ace_ioctl;
  565. dev->set_mac_address = &ace_set_mac_addr;
  566. dev->change_mtu = &ace_change_mtu;
  567. /* display version info if adapter is found */
  568. if (!version_disp)
  569. {
  570. /* set display flag to TRUE so that */
  571. /* we only display this string ONCE */
  572. version_disp = 1;
  573. printk(version);
  574. }
  575. /*
  576.  * Enable master mode before we start playing with the
  577.  * pci_command word since pci_set_master() will modify
  578.  * it.
  579.  */
  580. pci_set_master(pdev);
  581. pci_read_config_word(pdev, PCI_COMMAND, &ap->pci_command);
  582. /* OpenFirmware on Mac's does not set this - DOH.. */ 
  583. if (!(ap->pci_command & PCI_COMMAND_MEMORY)) {
  584. printk(KERN_INFO "%s: Enabling PCI Memory Mapped "
  585.        "access - was not enabled by BIOS/Firmwaren",
  586.        dev->name);
  587. ap->pci_command = ap->pci_command | PCI_COMMAND_MEMORY;
  588. pci_write_config_word(ap->pdev, PCI_COMMAND,
  589.       ap->pci_command);
  590. wmb();
  591. }
  592. pci_read_config_byte(pdev, PCI_LATENCY_TIMER,
  593.      &ap->pci_latency);
  594. if (ap->pci_latency <= 0x40) {
  595. ap->pci_latency = 0x40;
  596. pci_write_config_byte(pdev, PCI_LATENCY_TIMER,
  597.       ap->pci_latency);
  598. }
  599. /*
  600.  * Remap the regs into kernel space - this is abuse of
  601.  * dev->base_addr since it was means for I/O port
  602.  * addresses but who gives a damn.
  603.  */
  604. dev->base_addr = pci_resource_start(pdev, 0);
  605. ap->regs = (struct ace_regs *)ioremap(dev->base_addr, 0x4000);
  606. if (!ap->regs) {
  607. printk(KERN_ERR "%s:  Unable to map I/O register, "
  608.        "AceNIC %i will be disabled.n",
  609.        dev->name, boards_found);
  610. break;
  611. }
  612. switch(pdev->vendor) {
  613. case PCI_VENDOR_ID_ALTEON:
  614. strncpy(ap->name, "AceNIC Gigabit Ethernet",
  615. sizeof (ap->name));
  616. printk(KERN_INFO "%s: Alteon AceNIC ", dev->name);
  617. break;
  618. case PCI_VENDOR_ID_3COM:
  619. strncpy(ap->name, "3Com 3C985 Gigabit Ethernet",
  620. sizeof (ap->name));
  621. printk(KERN_INFO "%s: 3Com 3C985 ", dev->name);
  622. break;
  623. case PCI_VENDOR_ID_NETGEAR:
  624. strncpy(ap->name, "NetGear GA620 Gigabit Ethernet",
  625. sizeof (ap->name));
  626. printk(KERN_INFO "%s: NetGear GA620 ", dev->name);
  627. break;
  628. case PCI_VENDOR_ID_DEC:
  629. if (pdev->device == PCI_DEVICE_ID_FARALLON_PN9000SX) {
  630. strncpy(ap->name, "Farallon PN9000-SX "
  631. "Gigabit Ethernet", sizeof (ap->name));
  632. printk(KERN_INFO "%s: Farallon PN9000-SX ",
  633.        dev->name);
  634. break;
  635. }
  636. case PCI_VENDOR_ID_SGI:
  637. strncpy(ap->name, "SGI AceNIC Gigabit Ethernet",
  638. sizeof (ap->name));
  639. printk(KERN_INFO "%s: SGI AceNIC ", dev->name);
  640. break;
  641. default:
  642.   strncpy(ap->name, "Unknown AceNIC based Gigabit "
  643. "Ethernet", sizeof (ap->name));
  644. printk(KERN_INFO "%s: Unknown AceNIC ", dev->name);
  645. break;
  646. }
  647. ap->name [sizeof (ap->name) - 1] = '';
  648. printk("Gigabit Ethernet at 0x%08lx, ", dev->base_addr);
  649. #ifdef __sparc__
  650. printk("irq %sn", __irq_itoa(dev->irq));
  651. #else
  652. printk("irq %in", dev->irq);
  653. #endif
  654. #ifdef CONFIG_ACENIC_OMIT_TIGON_I
  655. if ((readl(&ap->regs->HostCtrl) >> 28) == 4) {
  656. printk(KERN_ERR "%s: Driver compiled without Tigon I"
  657.        " support - NIC disabledn", dev->name);
  658. ace_init_cleanup(dev);
  659. kfree(dev);
  660. continue;
  661. }
  662. #endif
  663. if (ace_allocate_descriptors(dev)) {
  664. /*
  665.  * ace_allocate_descriptors() calls
  666.  * ace_init_cleanup() on error.
  667.  */
  668. kfree(dev);
  669. continue;
  670. }
  671. #ifdef MODULE
  672. if (boards_found >= ACE_MAX_MOD_PARMS)
  673. ap->board_idx = BOARD_IDX_OVERFLOW;
  674. else
  675. ap->board_idx = boards_found;
  676. #else
  677. ap->board_idx = BOARD_IDX_STATIC;
  678. #endif
  679. if (ace_init(dev)) {
  680. /*
  681.  * ace_init() calls ace_init_cleanup() on error.
  682.  */
  683. kfree(dev);
  684. continue;
  685. }
  686. if (ap->pci_using_dac)
  687. dev->features |= NETIF_F_HIGHDMA;
  688. boards_found++;
  689. }
  690. /*
  691.  * If we're at this point we're going through ace_probe() for
  692.  * the first time.  Return success (0) if we've initialized 1
  693.  * or more boards. Otherwise, return failure (-ENODEV).
  694.  */
  695. if (boards_found > 0)
  696. return 0;
  697. else
  698. return -ENODEV;
  699. }
  700. #ifdef MODULE
  701. MODULE_AUTHOR("Jes Sorensen <jes@trained-monkey.org>");
  702. MODULE_LICENSE("GPL");
  703. MODULE_DESCRIPTION("AceNIC/3C985/GA620 Gigabit Ethernet driver");
  704. MODULE_PARM(link, "1-" __MODULE_STRING(8) "i");
  705. MODULE_PARM(trace, "1-" __MODULE_STRING(8) "i");
  706. MODULE_PARM(tx_coal_tick, "1-" __MODULE_STRING(8) "i");
  707. MODULE_PARM(max_tx_desc, "1-" __MODULE_STRING(8) "i");
  708. MODULE_PARM(rx_coal_tick, "1-" __MODULE_STRING(8) "i");
  709. MODULE_PARM(max_rx_desc, "1-" __MODULE_STRING(8) "i");
  710. MODULE_PARM(tx_ratio, "1-" __MODULE_STRING(8) "i");
  711. MODULE_PARM_DESC(link, "AceNIC/3C985/NetGear link state");
  712. MODULE_PARM_DESC(trace, "AceNIC/3C985/NetGear firmware trace level");
  713. MODULE_PARM_DESC(tx_coal_tick, "AceNIC/3C985/GA620 max clock ticks to wait from first tx descriptor arrives");
  714. MODULE_PARM_DESC(max_tx_desc, "AceNIC/3C985/GA620 max number of transmit descriptors to wait");
  715. MODULE_PARM_DESC(rx_coal_tick, "AceNIC/3C985/GA620 max clock ticks to wait from first rx descriptor arrives");
  716. MODULE_PARM_DESC(max_rx_desc, "AceNIC/3C985/GA620 max number of receive descriptors to wait");
  717. MODULE_PARM_DESC(tx_ratio, "AceNIC/3C985/GA620 ratio of NIC memory used for TX/RX descriptors (range 0-63)");
  718. #endif
  719. static void __exit ace_module_cleanup(void)
  720. {
  721. struct ace_private *ap;
  722. struct ace_regs *regs;
  723. struct net_device *next;
  724. short i;
  725. while (root_dev) {
  726. ap = root_dev->priv;
  727. next = ap->next;
  728. regs = ap->regs;
  729. writel(readl(&regs->CpuCtrl) | CPU_HALT, &regs->CpuCtrl);
  730. if (ap->version >= 2)
  731. writel(readl(&regs->CpuBCtrl) | CPU_HALT,
  732.        &regs->CpuBCtrl);
  733. /*
  734.  * This clears any pending interrupts
  735.  */
  736. writel(1, &regs->Mb0Lo);
  737. /*
  738.  * Make sure no other CPUs are processing interrupts
  739.  * on the card before the buffers are being released.
  740.  * Otherwise one might experience some `interesting'
  741.  * effects.
  742.  *
  743.  * Then release the RX buffers - jumbo buffers were
  744.  * already released in ace_close().
  745.  */
  746. synchronize_irq();
  747. for (i = 0; i < RX_STD_RING_ENTRIES; i++) {
  748. struct sk_buff *skb = ap->skb->rx_std_skbuff[i].skb;
  749. if (skb) {
  750. struct ring_info *ringp;
  751. dma_addr_t mapping;
  752. ringp = &ap->skb->rx_std_skbuff[i];
  753. mapping = pci_unmap_addr(ringp, mapping);
  754. pci_unmap_page(ap->pdev, mapping,
  755.        ACE_STD_BUFSIZE - (2 + 16),
  756.        PCI_DMA_FROMDEVICE);
  757. ap->rx_std_ring[i].size = 0;
  758. ap->skb->rx_std_skbuff[i].skb = NULL;
  759. dev_kfree_skb(skb);
  760. }
  761. }
  762. if (ap->version >= 2) {
  763. for (i = 0; i < RX_MINI_RING_ENTRIES; i++) {
  764. struct sk_buff *skb = ap->skb->rx_mini_skbuff[i].skb;
  765. if (skb) {
  766. struct ring_info *ringp;
  767. dma_addr_t mapping;
  768. ringp = &ap->skb->rx_mini_skbuff[i];
  769. mapping = pci_unmap_addr(ringp,mapping);
  770. pci_unmap_page(ap->pdev, mapping,
  771.        ACE_MINI_BUFSIZE - (2 + 16),
  772.        PCI_DMA_FROMDEVICE);
  773. ap->rx_mini_ring[i].size = 0;
  774. ap->skb->rx_mini_skbuff[i].skb = NULL;
  775. dev_kfree_skb(skb);
  776. }
  777. }
  778. }
  779. for (i = 0; i < RX_JUMBO_RING_ENTRIES; i++) {
  780. struct sk_buff *skb = ap->skb->rx_jumbo_skbuff[i].skb;
  781. if (skb) {
  782. struct ring_info *ringp;
  783. dma_addr_t mapping;
  784. ringp = &ap->skb->rx_jumbo_skbuff[i];
  785. mapping = pci_unmap_addr(ringp, mapping);
  786. pci_unmap_page(ap->pdev, mapping,
  787.        ACE_JUMBO_BUFSIZE - (2 + 16),
  788.        PCI_DMA_FROMDEVICE);
  789. ap->rx_jumbo_ring[i].size = 0;
  790. ap->skb->rx_jumbo_skbuff[i].skb = NULL;
  791. dev_kfree_skb(skb);
  792. }
  793. }
  794. ace_init_cleanup(root_dev);
  795. kfree(root_dev);
  796. root_dev = next;
  797. }
  798. }
  799. int __init ace_module_init(void)
  800. {
  801. int status;
  802. root_dev = NULL;
  803. #ifdef NEW_NETINIT
  804. status = acenic_probe();
  805. #else
  806. status = acenic_probe(NULL);
  807. #endif
  808. return status;
  809. }
  810. #if (LINUX_VERSION_CODE < 0x02032a)
  811. #ifdef MODULE
  812. int init_module(void)
  813. {
  814. return ace_module_init();
  815. }
  816. void cleanup_module(void)
  817. {
  818. ace_module_cleanup();
  819. }
  820. #endif
  821. #else
  822. module_init(ace_module_init);
  823. module_exit(ace_module_cleanup);
  824. #endif
  825. static void ace_free_descriptors(struct net_device *dev)
  826. {
  827. struct ace_private *ap = dev->priv;
  828. int size;
  829. if (ap->rx_std_ring != NULL) {
  830. size = (sizeof(struct rx_desc) *
  831. (RX_STD_RING_ENTRIES +
  832.  RX_JUMBO_RING_ENTRIES +
  833.  RX_MINI_RING_ENTRIES +
  834.  RX_RETURN_RING_ENTRIES));
  835. pci_free_consistent(ap->pdev, size, ap->rx_std_ring,
  836.     ap->rx_ring_base_dma);
  837. ap->rx_std_ring = NULL;
  838. ap->rx_jumbo_ring = NULL;
  839. ap->rx_mini_ring = NULL;
  840. ap->rx_return_ring = NULL;
  841. }
  842. if (ap->evt_ring != NULL) {
  843. size = (sizeof(struct event) * EVT_RING_ENTRIES);
  844. pci_free_consistent(ap->pdev, size, ap->evt_ring,
  845.     ap->evt_ring_dma);
  846. ap->evt_ring = NULL;
  847. }
  848. if (ap->evt_prd != NULL) {
  849. pci_free_consistent(ap->pdev, sizeof(u32),
  850.     (void *)ap->evt_prd, ap->evt_prd_dma);
  851. ap->evt_prd = NULL;
  852. }
  853. if (ap->rx_ret_prd != NULL) {
  854. pci_free_consistent(ap->pdev, sizeof(u32),
  855.     (void *)ap->rx_ret_prd,
  856.     ap->rx_ret_prd_dma);
  857. ap->rx_ret_prd = NULL;
  858. }
  859. if (ap->tx_csm != NULL) {
  860. pci_free_consistent(ap->pdev, sizeof(u32),
  861.     (void *)ap->tx_csm, ap->tx_csm_dma);
  862. ap->tx_csm = NULL;
  863. }
  864. }
  865. static int ace_allocate_descriptors(struct net_device *dev)
  866. {
  867. struct ace_private *ap = dev->priv;
  868. int size;
  869. size = (sizeof(struct rx_desc) *
  870. (RX_STD_RING_ENTRIES +
  871.  RX_JUMBO_RING_ENTRIES +
  872.  RX_MINI_RING_ENTRIES +
  873.  RX_RETURN_RING_ENTRIES));
  874. ap->rx_std_ring = pci_alloc_consistent(ap->pdev, size,
  875.        &ap->rx_ring_base_dma);
  876. if (ap->rx_std_ring == NULL)
  877. goto fail;
  878. ap->rx_jumbo_ring = ap->rx_std_ring + RX_STD_RING_ENTRIES;
  879. ap->rx_mini_ring = ap->rx_jumbo_ring + RX_JUMBO_RING_ENTRIES;
  880. ap->rx_return_ring = ap->rx_mini_ring + RX_MINI_RING_ENTRIES;
  881. size = (sizeof(struct event) * EVT_RING_ENTRIES);
  882. ap->evt_ring = pci_alloc_consistent(ap->pdev, size, &ap->evt_ring_dma);
  883. if (ap->evt_ring == NULL)
  884. goto fail;
  885. size = (sizeof(struct tx_desc) * TX_RING_ENTRIES);
  886. ap->tx_ring = pci_alloc_consistent(ap->pdev, size, &ap->tx_ring_dma);
  887. if (ap->tx_ring == NULL)
  888. goto fail;
  889. ap->evt_prd = pci_alloc_consistent(ap->pdev, sizeof(u32),
  890.    &ap->evt_prd_dma);
  891. if (ap->evt_prd == NULL)
  892. goto fail;
  893. ap->rx_ret_prd = pci_alloc_consistent(ap->pdev, sizeof(u32),
  894.       &ap->rx_ret_prd_dma);
  895. if (ap->rx_ret_prd == NULL)
  896. goto fail;
  897. ap->tx_csm = pci_alloc_consistent(ap->pdev, sizeof(u32),
  898.   &ap->tx_csm_dma);
  899. if (ap->tx_csm == NULL)
  900. goto fail;
  901. return 0;
  902. fail:
  903. /* Clean up. */
  904. ace_init_cleanup(dev);
  905. return 1;
  906. }
  907. /*
  908.  * Generic cleanup handling data allocated during init. Used when the
  909.  * module is unloaded or if an error occurs during initialization
  910.  */
  911. static void ace_init_cleanup(struct net_device *dev)
  912. {
  913. struct ace_private *ap;
  914. ap = dev->priv;
  915. ace_free_descriptors(dev);
  916. if (ap->info)
  917. pci_free_consistent(ap->pdev, sizeof(struct ace_info),
  918.     ap->info, ap->info_dma);
  919. if (ap->skb)
  920. kfree(ap->skb);
  921. if (ap->trace_buf)
  922. kfree(ap->trace_buf);
  923. if (dev->irq)
  924. free_irq(dev->irq, dev);
  925. unregister_netdev(dev);
  926. iounmap(ap->regs);
  927. }
  928. /*
  929.  * Commands are considered to be slow.
  930.  */
  931. static inline void ace_issue_cmd(struct ace_regs *regs, struct cmd *cmd)
  932. {
  933. u32 idx;
  934. idx = readl(&regs->CmdPrd);
  935. writel(*(u32 *)(cmd), &regs->CmdRng[idx]);
  936. idx = (idx + 1) % CMD_RING_ENTRIES;
  937. writel(idx, &regs->CmdPrd);
  938. }
  939. static int __init ace_init(struct net_device *dev)
  940. {
  941. struct ace_private *ap;
  942. struct ace_regs *regs;
  943. struct ace_info *info = NULL;
  944. unsigned long myjif;
  945. u64 tmp_ptr;
  946. u32 tig_ver, mac1, mac2, tmp, pci_state;
  947. int board_idx, ecode = 0;
  948. short i;
  949. unsigned char cache_size;
  950. ap = dev->priv;
  951. regs = ap->regs;
  952. board_idx = ap->board_idx;
  953. /*
  954.  * aman@sgi.com - its useful to do a NIC reset here to
  955.  * address the `Firmware not running' problem subsequent
  956.  * to any crashes involving the NIC
  957.  */
  958. writel(HW_RESET | (HW_RESET << 24), &regs->HostCtrl);
  959. wmb();
  960. /*
  961.  * Don't access any other registes before this point!
  962.  */
  963. #ifdef __BIG_ENDIAN
  964. /*
  965.  * This will most likely need BYTE_SWAP once we switch
  966.  * to using __raw_writel()
  967.  */
  968. #ifdef __parisc__
  969. writel((WORD_SWAP | BYTE_SWAP | CLR_INT |
  970. ((WORD_SWAP | BYTE_SWAP | CLR_INT) << 24)),
  971.        &regs->HostCtrl);
  972. #else
  973. writel((WORD_SWAP | CLR_INT | ((WORD_SWAP | CLR_INT) << 24)),
  974.        &regs->HostCtrl);
  975. #endif
  976. #else
  977. writel((CLR_INT | WORD_SWAP | ((CLR_INT | WORD_SWAP) << 24)),
  978.        &regs->HostCtrl);
  979. #endif
  980. mb();
  981. /*
  982.  * Stop the NIC CPU and clear pending interrupts
  983.  */
  984. writel(readl(&regs->CpuCtrl) | CPU_HALT, &regs->CpuCtrl);
  985. writel(0, &regs->Mb0Lo);
  986. tig_ver = readl(&regs->HostCtrl) >> 28;
  987. switch(tig_ver){
  988. #ifndef CONFIG_ACENIC_OMIT_TIGON_I
  989. case 4:
  990. printk(KERN_INFO "  Tigon I  (Rev. 4), Firmware: %i.%i.%i, ",
  991.        tigonFwReleaseMajor, tigonFwReleaseMinor,
  992.        tigonFwReleaseFix);
  993. writel(0, &regs->LocalCtrl);
  994. ap->version = 1;
  995. break;
  996. #endif
  997. case 6:
  998. printk(KERN_INFO "  Tigon II (Rev. %i), Firmware: %i.%i.%i, ",
  999.        tig_ver, tigon2FwReleaseMajor, tigon2FwReleaseMinor,
  1000.        tigon2FwReleaseFix);
  1001. writel(readl(&regs->CpuBCtrl) | CPU_HALT, &regs->CpuBCtrl);
  1002. /*
  1003.  * The SRAM bank size does _not_ indicate the amount
  1004.  * of memory on the card, it controls the _bank_ size!
  1005.  * Ie. a 1MB AceNIC will have two banks of 512KB.
  1006.  */
  1007. writel(SRAM_BANK_512K, &regs->LocalCtrl);
  1008. writel(SYNC_SRAM_TIMING, &regs->MiscCfg);
  1009. ap->version = 2;
  1010. break;
  1011. default:
  1012. printk(KERN_WARNING "  Unsupported Tigon version detected "
  1013.        "(%i), ", tig_ver);
  1014. ecode = -ENODEV;
  1015. goto init_error;
  1016. }
  1017. /*
  1018.  * ModeStat _must_ be set after the SRAM settings as this change
  1019.  * seems to corrupt the ModeStat and possible other registers.
  1020.  * The SRAM settings survive resets and setting it to the same
  1021.  * value a second time works as well. This is what caused the
  1022.  * `Firmware not running' problem on the Tigon II.
  1023.  */
  1024. #ifdef __BIG_ENDIAN
  1025. writel(ACE_BYTE_SWAP_DMA | ACE_WARN | ACE_FATAL | ACE_BYTE_SWAP_BD |
  1026.        ACE_WORD_SWAP_BD | ACE_NO_JUMBO_FRAG, &regs->ModeStat);
  1027. #else
  1028. writel(ACE_BYTE_SWAP_DMA | ACE_WARN | ACE_FATAL |
  1029.        ACE_WORD_SWAP_BD | ACE_NO_JUMBO_FRAG, &regs->ModeStat);
  1030. #endif
  1031. mb();
  1032. mac1 = 0;
  1033. for(i = 0; i < 4; i++) {
  1034. mac1 = mac1 << 8;
  1035. tmp = read_eeprom_byte(dev, 0x8c+i);
  1036. if (tmp < 0) {
  1037. ecode = -EIO;
  1038. goto init_error;
  1039. } else
  1040. mac1 |= (tmp & 0xff);
  1041. }
  1042. mac2 = 0;
  1043. for(i = 4; i < 8; i++) {
  1044. mac2 = mac2 << 8;
  1045. tmp = read_eeprom_byte(dev, 0x8c+i);
  1046. if (tmp < 0) {
  1047. ecode = -EIO;
  1048. goto init_error;
  1049. } else
  1050. mac2 |= (tmp & 0xff);
  1051. }
  1052. writel(mac1, &regs->MacAddrHi);
  1053. writel(mac2, &regs->MacAddrLo);
  1054. printk("MAC: %02x:%02x:%02x:%02x:%02x:%02xn",
  1055.        (mac1 >> 8) & 0xff, mac1 & 0xff, (mac2 >> 24) &0xff,
  1056.        (mac2 >> 16) & 0xff, (mac2 >> 8) & 0xff, mac2 & 0xff);
  1057. dev->dev_addr[0] = (mac1 >> 8) & 0xff;
  1058. dev->dev_addr[1] = mac1 & 0xff;
  1059. dev->dev_addr[2] = (mac2 >> 24) & 0xff;
  1060. dev->dev_addr[3] = (mac2 >> 16) & 0xff;
  1061. dev->dev_addr[4] = (mac2 >> 8) & 0xff;
  1062. dev->dev_addr[5] = mac2 & 0xff;
  1063. /*
  1064.  * Looks like this is necessary to deal with on all architectures,
  1065.  * even this %$#%$# N440BX Intel based thing doesn't get it right.
  1066.  * Ie. having two NICs in the machine, one will have the cache
  1067.  * line set at boot time, the other will not.
  1068.  */
  1069. pci_read_config_byte(ap->pdev, PCI_CACHE_LINE_SIZE, &cache_size);
  1070. cache_size <<= 2;
  1071. if (cache_size != SMP_CACHE_BYTES) {
  1072. printk(KERN_INFO "  PCI cache line size set incorrectly "
  1073.        "(%i bytes) by BIOS/FW, ", cache_size);
  1074. if (cache_size > SMP_CACHE_BYTES)
  1075. printk("expecting %in", SMP_CACHE_BYTES);
  1076. else {
  1077. printk("correcting to %in", SMP_CACHE_BYTES);
  1078. pci_write_config_byte(ap->pdev, PCI_CACHE_LINE_SIZE,
  1079.       SMP_CACHE_BYTES >> 2);
  1080. }
  1081. }
  1082. pci_state = readl(&regs->PciState);
  1083. printk(KERN_INFO "  PCI bus width: %i bits, speed: %iMHz, "
  1084.        "latency: %i clksn",
  1085.         (pci_state & PCI_32BIT) ? 32 : 64,
  1086. (pci_state & PCI_66MHZ) ? 66 : 33, 
  1087. ap->pci_latency);
  1088. /*
  1089.  * Set the max DMA transfer size. Seems that for most systems
  1090.  * the performance is better when no MAX parameter is
  1091.  * set. However for systems enabling PCI write and invalidate,
  1092.  * DMA writes must be set to the L1 cache line size to get
  1093.  * optimal performance.
  1094.  *
  1095.  * The default is now to turn the PCI write and invalidate off
  1096.  * - that is what Alteon does for NT.
  1097.  */
  1098. tmp = READ_CMD_MEM | WRITE_CMD_MEM;
  1099. if (ap->version >= 2) {
  1100. tmp |= (MEM_READ_MULTIPLE | (pci_state & PCI_66MHZ));
  1101. /*
  1102.  * Tuning parameters only supported for 8 cards
  1103.  */
  1104. if (board_idx == BOARD_IDX_OVERFLOW ||
  1105.     dis_pci_mem_inval[board_idx]) {
  1106. if (ap->pci_command & PCI_COMMAND_INVALIDATE) {
  1107. ap->pci_command &= ~PCI_COMMAND_INVALIDATE;
  1108. pci_write_config_word(ap->pdev, PCI_COMMAND,
  1109.       ap->pci_command);
  1110. printk(KERN_INFO "  Disabling PCI memory "
  1111.        "write and invalidaten");
  1112. }
  1113. } else if (ap->pci_command & PCI_COMMAND_INVALIDATE) {
  1114. printk(KERN_INFO "  PCI memory write & invalidate "
  1115.        "enabled by BIOS, enabling counter measuresn");
  1116. switch(SMP_CACHE_BYTES) {
  1117. case 16:
  1118. tmp |= DMA_WRITE_MAX_16;
  1119. break;
  1120. case 32:
  1121. tmp |= DMA_WRITE_MAX_32;
  1122. break;
  1123. case 64:
  1124. tmp |= DMA_WRITE_MAX_64;
  1125. break;
  1126. case 128:
  1127. tmp |= DMA_WRITE_MAX_128;
  1128. break;
  1129. default:
  1130. printk(KERN_INFO "  Cache line size %i not "
  1131.        "supported, PCI write and invalidate "
  1132.        "disabledn", SMP_CACHE_BYTES);
  1133. ap->pci_command &= ~PCI_COMMAND_INVALIDATE;
  1134. pci_write_config_word(ap->pdev, PCI_COMMAND,
  1135.       ap->pci_command);
  1136. }
  1137. }
  1138. }
  1139. #ifdef __sparc__
  1140. /*
  1141.  * On this platform, we know what the best dma settings
  1142.  * are.  We use 64-byte maximum bursts, because if we
  1143.  * burst larger than the cache line size (or even cross
  1144.  * a 64byte boundry in a single burst) the UltraSparc
  1145.  * PCI controller will disconnect at 64-byte multiples.
  1146.  *
  1147.  * Read-multiple will be properly enabled above, and when
  1148.  * set will give the PCI controller proper hints about
  1149.  * prefetching.
  1150.  */
  1151. tmp &= ~DMA_READ_WRITE_MASK;
  1152. tmp |= DMA_READ_MAX_64;
  1153. tmp |= DMA_WRITE_MAX_64;
  1154. #endif
  1155. #ifdef __alpha__
  1156. tmp &= ~DMA_READ_WRITE_MASK;
  1157. tmp |= DMA_READ_MAX_128;
  1158. /*
  1159.  * All the docs sy MUST NOT. Well, I did.
  1160.  * Nothing terrible happens, if we load wrong size.
  1161.  * Bit w&i still works better!
  1162.  */
  1163. tmp |= DMA_WRITE_MAX_128;
  1164. #endif
  1165. writel(tmp, &regs->PciState);
  1166. #if 0
  1167. /*
  1168.  * I have received reports from people having problems when this
  1169.  * bit is enabled.
  1170.  */
  1171. if (!(ap->pci_command & PCI_COMMAND_FAST_BACK)) {
  1172. printk(KERN_INFO "  Enabling PCI Fast Back to Backn");
  1173. ap->pci_command |= PCI_COMMAND_FAST_BACK;
  1174. pci_write_config_word(ap->pdev, PCI_COMMAND, ap->pci_command);
  1175. }
  1176. #endif
  1177. /*
  1178.  * Configure DMA attributes.
  1179.  */
  1180. if (!pci_set_dma_mask(ap->pdev, 0xffffffffffffffffULL)) {
  1181. ap->pci_using_dac = 1;
  1182. } else if (!pci_set_dma_mask(ap->pdev, 0xffffffffULL)) {
  1183. ap->pci_using_dac = 0;
  1184. } else {
  1185. ecode = -ENODEV;
  1186. goto init_error;
  1187. }
  1188. /*
  1189.  * Initialize the generic info block and the command+event rings
  1190.  * and the control blocks for the transmit and receive rings
  1191.  * as they need to be setup once and for all.
  1192.  */
  1193. if (!(info = pci_alloc_consistent(ap->pdev, sizeof(struct ace_info),
  1194.   &ap->info_dma))) {
  1195. ecode = -EAGAIN;
  1196. goto init_error;
  1197. }
  1198. ap->info = info;
  1199. /*
  1200.  * Get the memory for the skb rings.
  1201.  */
  1202. if (!(ap->skb = kmalloc(sizeof(struct ace_skb), GFP_KERNEL))) {
  1203. ecode = -EAGAIN;
  1204. goto init_error;
  1205. }
  1206. ecode = request_irq(dev->irq, ace_interrupt, SA_SHIRQ, dev->name, dev);
  1207. if (ecode) {
  1208. printk(KERN_WARNING "%s: Requested IRQ %d is busyn",
  1209.        dev->name, dev->irq);
  1210. goto init_error;
  1211. }
  1212. /*
  1213.  * Register the device here to be able to catch allocated
  1214.  * interrupt handlers in case the firmware doesn't come up.
  1215.  */
  1216. ap->next = root_dev;
  1217. root_dev = dev;
  1218. #ifdef INDEX_DEBUG
  1219. spin_lock_init(&ap->debug_lock);
  1220. ap->last_tx = TX_RING_ENTRIES - 1;
  1221. ap->last_std_rx = 0;
  1222. ap->last_mini_rx = 0;
  1223. #endif
  1224. memset(ap->info, 0, sizeof(struct ace_info));
  1225. memset(ap->skb, 0, sizeof(struct ace_skb));
  1226. ace_load_firmware(dev);
  1227. ap->fw_running = 0;
  1228. tmp_ptr = ap->info_dma;
  1229. writel(tmp_ptr >> 32, &regs->InfoPtrHi);
  1230. writel(tmp_ptr & 0xffffffff, &regs->InfoPtrLo);
  1231. memset(ap->evt_ring, 0, EVT_RING_ENTRIES * sizeof(struct event));
  1232. set_aceaddr(&info->evt_ctrl.rngptr, ap->evt_ring_dma);
  1233. info->evt_ctrl.flags = 0;
  1234. set_aceaddr(&info->evt_prd_ptr, ap->evt_prd_dma);
  1235. *(ap->evt_prd) = 0;
  1236. wmb();
  1237. writel(0, &regs->EvtCsm);
  1238. set_aceaddr(&info->cmd_ctrl.rngptr, 0x100);
  1239. info->cmd_ctrl.flags = 0;
  1240. info->cmd_ctrl.max_len = 0;
  1241. for (i = 0; i < CMD_RING_ENTRIES; i++)
  1242. writel(0, &regs->CmdRng[i]);
  1243. writel(0, &regs->CmdPrd);
  1244. writel(0, &regs->CmdCsm);
  1245. tmp_ptr = ap->info_dma;
  1246. tmp_ptr += (unsigned long) &(((struct ace_info *)0)->s.stats);
  1247. set_aceaddr(&info->stats2_ptr, (dma_addr_t) tmp_ptr);
  1248. set_aceaddr(&info->rx_std_ctrl.rngptr, ap->rx_ring_base_dma);
  1249. info->rx_std_ctrl.max_len = ACE_STD_MTU + ETH_HLEN + 4;
  1250. info->rx_std_ctrl.flags = RCB_FLG_TCP_UDP_SUM|RCB_FLG_NO_PSEUDO_HDR;
  1251. memset(ap->rx_std_ring, 0,
  1252.        RX_STD_RING_ENTRIES * sizeof(struct rx_desc));
  1253. for (i = 0; i < RX_STD_RING_ENTRIES; i++)
  1254. ap->rx_std_ring[i].flags = BD_FLG_TCP_UDP_SUM;
  1255. ap->rx_std_skbprd = 0;
  1256. atomic_set(&ap->cur_rx_bufs, 0);
  1257. set_aceaddr(&info->rx_jumbo_ctrl.rngptr,
  1258.     (ap->rx_ring_base_dma +
  1259.      (sizeof(struct rx_desc) * RX_STD_RING_ENTRIES)));
  1260. info->rx_jumbo_ctrl.max_len = 0;
  1261. info->rx_jumbo_ctrl.flags = RCB_FLG_TCP_UDP_SUM|RCB_FLG_NO_PSEUDO_HDR;
  1262. memset(ap->rx_jumbo_ring, 0,
  1263.        RX_JUMBO_RING_ENTRIES * sizeof(struct rx_desc));
  1264. for (i = 0; i < RX_JUMBO_RING_ENTRIES; i++)
  1265. ap->rx_jumbo_ring[i].flags = BD_FLG_TCP_UDP_SUM | BD_FLG_JUMBO;
  1266. ap->rx_jumbo_skbprd = 0;
  1267. atomic_set(&ap->cur_jumbo_bufs, 0);
  1268. memset(ap->rx_mini_ring, 0,
  1269.        RX_MINI_RING_ENTRIES * sizeof(struct rx_desc));
  1270. if (ap->version >= 2) {
  1271. set_aceaddr(&info->rx_mini_ctrl.rngptr,
  1272.     (ap->rx_ring_base_dma +
  1273.      (sizeof(struct rx_desc) *
  1274.       (RX_STD_RING_ENTRIES +
  1275.        RX_JUMBO_RING_ENTRIES))));
  1276. info->rx_mini_ctrl.max_len = ACE_MINI_SIZE;
  1277. info->rx_mini_ctrl.flags = 
  1278. RCB_FLG_TCP_UDP_SUM|RCB_FLG_NO_PSEUDO_HDR;
  1279. for (i = 0; i < RX_MINI_RING_ENTRIES; i++)
  1280. ap->rx_mini_ring[i].flags =
  1281. BD_FLG_TCP_UDP_SUM | BD_FLG_MINI;
  1282. } else {
  1283. set_aceaddr(&info->rx_mini_ctrl.rngptr, 0);
  1284. info->rx_mini_ctrl.flags = RCB_FLG_RNG_DISABLE;
  1285. info->rx_mini_ctrl.max_len = 0;
  1286. }
  1287. ap->rx_mini_skbprd = 0;
  1288. atomic_set(&ap->cur_mini_bufs, 0);
  1289. set_aceaddr(&info->rx_return_ctrl.rngptr,
  1290.     (ap->rx_ring_base_dma +
  1291.      (sizeof(struct rx_desc) *
  1292.       (RX_STD_RING_ENTRIES +
  1293.        RX_JUMBO_RING_ENTRIES +
  1294.        RX_MINI_RING_ENTRIES))));
  1295. info->rx_return_ctrl.flags = 0;
  1296. info->rx_return_ctrl.max_len = RX_RETURN_RING_ENTRIES;
  1297. memset(ap->rx_return_ring, 0,
  1298.        RX_RETURN_RING_ENTRIES * sizeof(struct rx_desc));
  1299. set_aceaddr(&info->rx_ret_prd_ptr, ap->rx_ret_prd_dma);
  1300. *(ap->rx_ret_prd) = 0;
  1301. writel(TX_RING_BASE, &regs->WinBase);
  1302. memset(ap->tx_ring, 0, TX_RING_ENTRIES * sizeof(struct tx_desc));
  1303. set_aceaddr(&info->tx_ctrl.rngptr, ap->tx_ring_dma);
  1304. info->tx_ctrl.max_len = TX_RING_ENTRIES;
  1305. tmp = RCB_FLG_TCP_UDP_SUM|RCB_FLG_NO_PSEUDO_HDR|RCB_FLG_TX_HOST_RING;
  1306. #if TX_COAL_INTS_ONLY
  1307. tmp |= RCB_FLG_COAL_INT_ONLY;
  1308. #endif
  1309. info->tx_ctrl.flags = tmp;
  1310. set_aceaddr(&info->tx_csm_ptr, ap->tx_csm_dma);
  1311. /*
  1312.  * Potential item for tuning parameter
  1313.  */
  1314. #if 0 /* NO */
  1315. writel(DMA_THRESH_16W, &regs->DmaReadCfg);
  1316. writel(DMA_THRESH_16W, &regs->DmaWriteCfg);
  1317. #else
  1318. writel(DMA_THRESH_8W, &regs->DmaReadCfg);
  1319. writel(DMA_THRESH_8W, &regs->DmaWriteCfg);
  1320. #endif
  1321. writel(0, &regs->MaskInt);
  1322. writel(1, &regs->IfIdx);
  1323. writel(1, &regs->AssistState);
  1324. writel(DEF_STAT, &regs->TuneStatTicks);
  1325. writel(DEF_TRACE, &regs->TuneTrace);
  1326. ace_set_rxtx_parms(dev, 0);
  1327. if (board_idx == BOARD_IDX_OVERFLOW) {
  1328. printk(KERN_WARNING "%s: more then %i NICs detected, "
  1329.        "ignoring module parameters!n",
  1330.        dev->name, ACE_MAX_MOD_PARMS);
  1331. } else if (board_idx >= 0) {
  1332. if (tx_coal_tick[board_idx])
  1333. writel(tx_coal_tick[board_idx],
  1334.        &regs->TuneTxCoalTicks);
  1335. if (max_tx_desc[board_idx])
  1336. writel(max_tx_desc[board_idx], &regs->TuneMaxTxDesc);
  1337. if (rx_coal_tick[board_idx])
  1338. writel(rx_coal_tick[board_idx],
  1339.        &regs->TuneRxCoalTicks);
  1340. if (max_rx_desc[board_idx])
  1341. writel(max_rx_desc[board_idx], &regs->TuneMaxRxDesc);
  1342. if (trace[board_idx])
  1343. writel(trace[board_idx], &regs->TuneTrace);
  1344. if ((tx_ratio[board_idx] > 0) && (tx_ratio[board_idx] < 64))
  1345. writel(tx_ratio[board_idx], &regs->TxBufRat);
  1346. }
  1347. /*
  1348.  * Default link parameters
  1349.  */
  1350. tmp = LNK_ENABLE | LNK_FULL_DUPLEX | LNK_1000MB | LNK_100MB |
  1351. LNK_10MB | LNK_RX_FLOW_CTL_Y | LNK_NEG_FCTL | LNK_NEGOTIATE;
  1352. if(ap->version >= 2)
  1353. tmp |= LNK_TX_FLOW_CTL_Y;
  1354. /*
  1355.  * Override link default parameters
  1356.  */
  1357. if ((board_idx >= 0) && link[board_idx]) {
  1358. int option = link[board_idx];
  1359. tmp = LNK_ENABLE;
  1360. if (option & 0x01) {
  1361. printk(KERN_INFO "%s: Setting half duplex linkn",
  1362.        dev->name);
  1363. tmp &= ~LNK_FULL_DUPLEX;
  1364. }
  1365. if (option & 0x02)
  1366. tmp &= ~LNK_NEGOTIATE;
  1367. if (option & 0x10)
  1368. tmp |= LNK_10MB;
  1369. if (option & 0x20)
  1370. tmp |= LNK_100MB;
  1371. if (option & 0x40)
  1372. tmp |= LNK_1000MB;
  1373. if ((option & 0x70) == 0) {
  1374. printk(KERN_WARNING "%s: No media speed specified, "
  1375.        "forcing auto negotiationn", dev->name);
  1376. tmp |= LNK_NEGOTIATE | LNK_1000MB |
  1377. LNK_100MB | LNK_10MB;
  1378. }
  1379. if ((option & 0x100) == 0)
  1380. tmp |= LNK_NEG_FCTL;
  1381. else
  1382. printk(KERN_INFO "%s: Disabling flow control "
  1383.        "negotiationn", dev->name);
  1384. if (option & 0x200)
  1385. tmp |= LNK_RX_FLOW_CTL_Y;
  1386. if ((option & 0x400) && (ap->version >= 2)) {
  1387. printk(KERN_INFO "%s: Enabling TX flow controln",
  1388.        dev->name);
  1389. tmp |= LNK_TX_FLOW_CTL_Y;
  1390. }
  1391. }
  1392. ap->link = tmp;
  1393. writel(tmp, &regs->TuneLink);
  1394. if (ap->version >= 2)
  1395. writel(tmp, &regs->TuneFastLink);
  1396. if (ACE_IS_TIGON_I(ap))
  1397. writel(tigonFwStartAddr, &regs->Pc);
  1398. if (ap->version == 2)
  1399. writel(tigon2FwStartAddr, &regs->Pc);
  1400. writel(0, &regs->Mb0Lo);
  1401. /*
  1402.  * Set tx_csm before we start receiving interrupts, otherwise
  1403.  * the interrupt handler might think it is supposed to process
  1404.  * tx ints before we are up and running, which may cause a null
  1405.  * pointer access in the int handler.
  1406.  */
  1407. ap->cur_rx = 0;
  1408. ap->tx_prd = *(ap->tx_csm) = ap->tx_ret_csm = 0;
  1409. wmb();
  1410. ace_set_txprd(regs, ap, 0);
  1411. writel(0, &regs->RxRetCsm);
  1412. /*
  1413.  * Zero the stats before starting the interface
  1414.  */
  1415. memset(&ap->stats, 0, sizeof(ap->stats));
  1416. /*
  1417.  * Start the NIC CPU
  1418.  */
  1419. writel(readl(&regs->CpuCtrl) & ~(CPU_HALT|CPU_TRACE), &regs->CpuCtrl);
  1420. /*
  1421.  * Wait for the firmware to spin up - max 3 seconds.
  1422.  */
  1423. myjif = jiffies + 3 * HZ;
  1424. while (time_before(jiffies, myjif) && !ap->fw_running);
  1425. if (!ap->fw_running) {
  1426. printk(KERN_ERR "%s: Firmware NOT running!n", dev->name);
  1427. ace_dump_trace(ap);
  1428. writel(readl(&regs->CpuCtrl) | CPU_HALT, &regs->CpuCtrl);
  1429. /* aman@sgi.com - account for badly behaving firmware/NIC:
  1430.  * - have observed that the NIC may continue to generate
  1431.  *   interrupts for some reason; attempt to stop it - halt
  1432.  *   second CPU for Tigon II cards, and also clear Mb0
  1433.  * - if we're a module, we'll fail to load if this was
  1434.  *   the only GbE card in the system => if the kernel does
  1435.  *   see an interrupt from the NIC, code to handle it is
  1436.  *   gone and OOps! - so free_irq also
  1437.  */
  1438. if (ap->version >= 2)
  1439. writel(readl(&regs->CpuBCtrl) | CPU_HALT,
  1440.        &regs->CpuBCtrl);
  1441. writel(0, &regs->Mb0Lo);
  1442. ecode = -EBUSY;
  1443. goto init_error;
  1444. }
  1445. /*
  1446.  * We load the ring here as there seem to be no way to tell the
  1447.  * firmware to wipe the ring without re-initializing it.
  1448.  */
  1449. if (!test_and_set_bit(0, &ap->std_refill_busy))
  1450. ace_load_std_rx_ring(ap, RX_RING_SIZE);
  1451. else
  1452. printk(KERN_ERR "%s: Someone is busy refilling the RX ringn",
  1453.        dev->name);
  1454. if (ap->version >= 2) {
  1455. if (!test_and_set_bit(0, &ap->mini_refill_busy))
  1456. ace_load_mini_rx_ring(ap, RX_MINI_SIZE);
  1457. else
  1458. printk(KERN_ERR "%s: Someone is busy refilling "
  1459.        "the RX mini ringn", dev->name);
  1460. }
  1461. return 0;
  1462.  init_error:
  1463. ace_init_cleanup(dev);
  1464. return ecode;
  1465. }
  1466. static void ace_set_rxtx_parms(struct net_device *dev, int jumbo)
  1467. {
  1468. struct ace_private *ap;
  1469. struct ace_regs *regs;
  1470. int board_idx;
  1471. ap = dev->priv;
  1472. regs = ap->regs;
  1473. board_idx = ap->board_idx;
  1474. if (board_idx >= 0) {
  1475. if (!jumbo) {
  1476. if (!tx_coal_tick[board_idx])
  1477. writel(DEF_TX_COAL, &regs->TuneTxCoalTicks);
  1478. if (!max_tx_desc[board_idx])
  1479. writel(DEF_TX_MAX_DESC, &regs->TuneMaxTxDesc);
  1480. if (!rx_coal_tick[board_idx])
  1481. writel(DEF_RX_COAL, &regs->TuneRxCoalTicks);
  1482. if (!max_rx_desc[board_idx])
  1483. writel(DEF_RX_MAX_DESC, &regs->TuneMaxRxDesc);
  1484. if (!tx_ratio[board_idx])
  1485. writel(DEF_TX_RATIO, &regs->TxBufRat);
  1486. } else {
  1487. if (!tx_coal_tick[board_idx])
  1488. writel(DEF_JUMBO_TX_COAL,
  1489.        &regs->TuneTxCoalTicks);
  1490. if (!max_tx_desc[board_idx])
  1491. writel(DEF_JUMBO_TX_MAX_DESC,
  1492.        &regs->TuneMaxTxDesc);
  1493. if (!rx_coal_tick[board_idx])
  1494. writel(DEF_JUMBO_RX_COAL,
  1495.        &regs->TuneRxCoalTicks);
  1496. if (!max_rx_desc[board_idx])
  1497. writel(DEF_JUMBO_RX_MAX_DESC,
  1498.        &regs->TuneMaxRxDesc);
  1499. if (!tx_ratio[board_idx])
  1500. writel(DEF_JUMBO_TX_RATIO, &regs->TxBufRat);
  1501. }
  1502. }
  1503. }
  1504. static void ace_watchdog(struct net_device *data)
  1505. {
  1506. struct net_device *dev = data;
  1507. struct ace_private *ap = dev->priv;
  1508. struct ace_regs *regs = ap->regs;
  1509. /*
  1510.  * We haven't received a stats update event for more than 2.5
  1511.  * seconds and there is data in the transmit queue, thus we
  1512.  * asume the card is stuck.
  1513.  */
  1514. if (*ap->tx_csm != ap->tx_ret_csm) {
  1515. printk(KERN_WARNING "%s: Transmitter is stuck, %08xn",
  1516.        dev->name, (unsigned int)readl(&regs->HostCtrl));
  1517. /* This can happen due to ieee flow control. */
  1518. } else {
  1519. printk(KERN_DEBUG "%s: BUG... transmitter died. Kicking it.n",
  1520.        dev->name);
  1521. netif_wake_queue(dev);
  1522. }
  1523. }
  1524. static void ace_tasklet(unsigned long dev)
  1525. {
  1526. struct ace_private *ap = ((struct net_device *)dev)->priv;
  1527. int cur_size;
  1528. cur_size = atomic_read(&ap->cur_rx_bufs);
  1529. if ((cur_size < RX_LOW_STD_THRES) &&
  1530.     !test_and_set_bit(0, &ap->std_refill_busy)) {
  1531. #if DEBUG
  1532. printk("refilling buffers (current %i)n", cur_size);
  1533. #endif
  1534. ace_load_std_rx_ring(ap, RX_RING_SIZE - cur_size);
  1535. }
  1536. if (ap->version >= 2) {
  1537. cur_size = atomic_read(&ap->cur_mini_bufs);
  1538. if ((cur_size < RX_LOW_MINI_THRES) &&
  1539.     !test_and_set_bit(0, &ap->mini_refill_busy)) {
  1540. #if DEBUG
  1541. printk("refilling mini buffers (current %i)n",
  1542.        cur_size);
  1543. #endif
  1544. ace_load_mini_rx_ring(ap, RX_MINI_SIZE - cur_size);
  1545. }
  1546. }
  1547. cur_size = atomic_read(&ap->cur_jumbo_bufs);
  1548. if (ap->jumbo && (cur_size < RX_LOW_JUMBO_THRES) &&
  1549.     !test_and_set_bit(0, &ap->jumbo_refill_busy)) {
  1550. #if DEBUG
  1551. printk("refilling jumbo buffers (current %i)n", cur_size);
  1552. #endif
  1553. ace_load_jumbo_rx_ring(ap, RX_JUMBO_SIZE - cur_size);
  1554. }
  1555. ap->tasklet_pending = 0;
  1556. }
  1557. /*
  1558.  * Copy the contents of the NIC's trace buffer to kernel memory.
  1559.  */
  1560. static void ace_dump_trace(struct ace_private *ap)
  1561. {
  1562. #if 0
  1563. if (!ap->trace_buf)
  1564. if (!(ap->trace_buf = kmalloc(ACE_TRACE_SIZE, GFP_KERNEL)))
  1565.     return;
  1566. #endif
  1567. }
  1568. /*
  1569.  * Load the standard rx ring.
  1570.  *
  1571.  * Loading rings is safe without holding the spin lock since this is
  1572.  * done only before the device is enabled, thus no interrupts are
  1573.  * generated and by the interrupt handler/tasklet handler.
  1574.  */
  1575. static void ace_load_std_rx_ring(struct ace_private *ap, int nr_bufs)
  1576. {
  1577. struct ace_regs *regs;
  1578. short i, idx;
  1579. regs = ap->regs;
  1580. prefetchw(&ap->cur_rx_bufs);
  1581. idx = ap->rx_std_skbprd;
  1582. for (i = 0; i < nr_bufs; i++) {
  1583. struct sk_buff *skb;
  1584. struct rx_desc *rd;
  1585. dma_addr_t mapping;
  1586. skb = alloc_skb(ACE_STD_BUFSIZE, GFP_ATOMIC);
  1587. if (!skb)
  1588. break;
  1589. /*
  1590.  * Make sure IP header starts on a fresh cache line.
  1591.  */
  1592. skb_reserve(skb, 2 + 16);
  1593. mapping = pci_map_page(ap->pdev, virt_to_page(skb->data),
  1594.        ((unsigned long)skb->data & ~PAGE_MASK),
  1595.        ACE_STD_BUFSIZE - (2 + 16),
  1596.        PCI_DMA_FROMDEVICE);
  1597. ap->skb->rx_std_skbuff[idx].skb = skb;
  1598. pci_unmap_addr_set(&ap->skb->rx_std_skbuff[idx],
  1599.    mapping, mapping);
  1600. rd = &ap->rx_std_ring[idx];
  1601. set_aceaddr(&rd->addr, mapping);
  1602. rd->size = ACE_STD_MTU + ETH_HLEN + 4;
  1603. rd->idx = idx;
  1604. idx = (idx + 1) % RX_STD_RING_ENTRIES;
  1605. }
  1606. if (!i)
  1607. goto error_out;
  1608. atomic_add(i, &ap->cur_rx_bufs);
  1609. ap->rx_std_skbprd = idx;
  1610. if (ACE_IS_TIGON_I(ap)) {
  1611. struct cmd cmd;
  1612. cmd.evt = C_SET_RX_PRD_IDX;
  1613. cmd.code = 0;
  1614. cmd.idx = ap->rx_std_skbprd;
  1615. ace_issue_cmd(regs, &cmd);
  1616. } else {
  1617. writel(idx, &regs->RxStdPrd);
  1618. wmb();
  1619. }
  1620.  out:
  1621. clear_bit(0, &ap->std_refill_busy);
  1622. return;
  1623.  error_out:
  1624. printk(KERN_INFO "Out of memory when allocating "
  1625.        "standard receive buffersn");
  1626. goto out;
  1627. }
  1628. static void ace_load_mini_rx_ring(struct ace_private *ap, int nr_bufs)
  1629. {
  1630. struct ace_regs *regs;
  1631. short i, idx;
  1632. regs = ap->regs;
  1633. prefetchw(&ap->cur_mini_bufs);
  1634. idx = ap->rx_mini_skbprd;
  1635. for (i = 0; i < nr_bufs; i++) {
  1636. struct sk_buff *skb;
  1637. struct rx_desc *rd;
  1638. dma_addr_t mapping;
  1639. skb = alloc_skb(ACE_MINI_BUFSIZE, GFP_ATOMIC);
  1640. if (!skb)
  1641. break;
  1642. /*
  1643.  * Make sure the IP header ends up on a fresh cache line
  1644.  */
  1645. skb_reserve(skb, 2 + 16);
  1646. mapping = pci_map_page(ap->pdev, virt_to_page(skb->data),
  1647.        ((unsigned long)skb->data & ~PAGE_MASK),
  1648.        ACE_MINI_BUFSIZE - (2 + 16),
  1649.        PCI_DMA_FROMDEVICE);
  1650. ap->skb->rx_mini_skbuff[idx].skb = skb;
  1651. pci_unmap_addr_set(&ap->skb->rx_mini_skbuff[idx],
  1652.    mapping, mapping);
  1653. rd = &ap->rx_mini_ring[idx];
  1654. set_aceaddr(&rd->addr, mapping);
  1655. rd->size = ACE_MINI_SIZE;
  1656. rd->idx = idx;
  1657. idx = (idx + 1) % RX_MINI_RING_ENTRIES;
  1658. }
  1659. if (!i)
  1660. goto error_out;
  1661. atomic_add(i, &ap->cur_mini_bufs);
  1662. ap->rx_mini_skbprd = idx;
  1663. writel(idx, &regs->RxMiniPrd);
  1664. wmb();
  1665.  out:
  1666. clear_bit(0, &ap->mini_refill_busy);
  1667. return;
  1668.  error_out:
  1669. printk(KERN_INFO "Out of memory when allocating "
  1670.        "mini receive buffersn");
  1671. goto out;
  1672. }
  1673. /*
  1674.  * Load the jumbo rx ring, this may happen at any time if the MTU
  1675.  * is changed to a value > 1500.
  1676.  */
  1677. static void ace_load_jumbo_rx_ring(struct ace_private *ap, int nr_bufs)
  1678. {
  1679. struct ace_regs *regs;
  1680. short i, idx;
  1681. regs = ap->regs;
  1682. idx = ap->rx_jumbo_skbprd;
  1683. for (i = 0; i < nr_bufs; i++) {
  1684. struct sk_buff *skb;
  1685. struct rx_desc *rd;
  1686. dma_addr_t mapping;
  1687. skb = alloc_skb(ACE_JUMBO_BUFSIZE, GFP_ATOMIC);
  1688. if (!skb)
  1689. break;
  1690. /*
  1691.  * Make sure the IP header ends up on a fresh cache line
  1692.  */
  1693. skb_reserve(skb, 2 + 16);
  1694. mapping = pci_map_page(ap->pdev, virt_to_page(skb->data),
  1695.        ((unsigned long)skb->data & ~PAGE_MASK),
  1696.        ACE_JUMBO_BUFSIZE - (2 + 16),
  1697.        PCI_DMA_FROMDEVICE);
  1698. ap->skb->rx_jumbo_skbuff[idx].skb = skb;
  1699. pci_unmap_addr_set(&ap->skb->rx_jumbo_skbuff[idx],
  1700.    mapping, mapping);
  1701. rd = &ap->rx_jumbo_ring[idx];
  1702. set_aceaddr(&rd->addr, mapping);
  1703. rd->size = ACE_JUMBO_MTU + ETH_HLEN + 4;
  1704. rd->idx = idx;
  1705. idx = (idx + 1) % RX_JUMBO_RING_ENTRIES;
  1706. }
  1707. if (!i)
  1708. goto error_out;
  1709. atomic_add(i, &ap->cur_jumbo_bufs);
  1710. ap->rx_jumbo_skbprd = idx;
  1711. if (ACE_IS_TIGON_I(ap)) {
  1712. struct cmd cmd;
  1713. cmd.evt = C_SET_RX_JUMBO_PRD_IDX;
  1714. cmd.code = 0;
  1715. cmd.idx = ap->rx_jumbo_skbprd;
  1716. ace_issue_cmd(regs, &cmd);
  1717. } else {
  1718. writel(idx, &regs->RxJumboPrd);
  1719. wmb();
  1720. }
  1721.  out:
  1722. clear_bit(0, &ap->jumbo_refill_busy);
  1723. return;
  1724.  error_out:
  1725. if (net_ratelimit())
  1726. printk(KERN_INFO "Out of memory when allocating "
  1727.        "jumbo receive buffersn");
  1728. goto out;
  1729. }
  1730. /*
  1731.  * All events are considered to be slow (RX/TX ints do not generate
  1732.  * events) and are handled here, outside the main interrupt handler,
  1733.  * to reduce the size of the handler.
  1734.  */
  1735. static u32 ace_handle_event(struct net_device *dev, u32 evtcsm, u32 evtprd)
  1736. {
  1737. struct ace_private *ap;
  1738. ap = dev->priv;
  1739. while (evtcsm != evtprd) {
  1740. switch (ap->evt_ring[evtcsm].evt) {
  1741. case E_FW_RUNNING:
  1742. printk(KERN_INFO "%s: Firmware up and runningn",
  1743.        dev->name);
  1744. ap->fw_running = 1;
  1745. wmb();
  1746. break;
  1747. case E_STATS_UPDATED:
  1748. break;
  1749. case E_LNK_STATE:
  1750. {
  1751. u16 code = ap->evt_ring[evtcsm].code;
  1752. switch (code) {
  1753. case E_C_LINK_UP:
  1754. {
  1755. u32 state = readl(&ap->regs->GigLnkState);
  1756. printk(KERN_WARNING "%s: Optical link UP "
  1757.        "(%s Duplex, Flow Control: %s%s)n",
  1758.        dev->name,
  1759.        state & LNK_FULL_DUPLEX ? "Full":"Half",
  1760.        state & LNK_TX_FLOW_CTL_Y ? "TX " : "",
  1761.        state & LNK_RX_FLOW_CTL_Y ? "RX" : "");
  1762. break;
  1763. }
  1764. case E_C_LINK_DOWN:
  1765. printk(KERN_WARNING "%s: Optical link DOWNn",
  1766.        dev->name);
  1767. break;
  1768. case E_C_LINK_10_100:
  1769. printk(KERN_WARNING "%s: 10/100BaseT link "
  1770.        "UPn", dev->name);
  1771. break;
  1772. default:
  1773. printk(KERN_ERR "%s: Unknown optical link "
  1774.        "state %02xn", dev->name, code);
  1775. }
  1776. break;
  1777. }
  1778. case E_ERROR:
  1779. switch(ap->evt_ring[evtcsm].code) {
  1780. case E_C_ERR_INVAL_CMD:
  1781. printk(KERN_ERR "%s: invalid command errorn",
  1782.        dev->name);
  1783. break;
  1784. case E_C_ERR_UNIMP_CMD:
  1785. printk(KERN_ERR "%s: unimplemented command "
  1786.        "errorn", dev->name);
  1787. break;
  1788. case E_C_ERR_BAD_CFG:
  1789. printk(KERN_ERR "%s: bad config errorn",
  1790.        dev->name);
  1791. break;
  1792. default:
  1793. printk(KERN_ERR "%s: unknown error %02xn",
  1794.        dev->name, ap->evt_ring[evtcsm].code);
  1795. }
  1796. break;
  1797. case E_RESET_JUMBO_RNG:
  1798. {
  1799. int i;
  1800. for (i = 0; i < RX_JUMBO_RING_ENTRIES; i++) {
  1801. if (ap->skb->rx_jumbo_skbuff[i].skb) {
  1802. ap->rx_jumbo_ring[i].size = 0;
  1803. set_aceaddr(&ap->rx_jumbo_ring[i].addr, 0);
  1804. dev_kfree_skb(ap->skb->rx_jumbo_skbuff[i].skb);
  1805. ap->skb->rx_jumbo_skbuff[i].skb = NULL;
  1806. }
  1807. }
  1808.   if (ACE_IS_TIGON_I(ap)) {
  1809.   struct cmd cmd;
  1810.   cmd.evt = C_SET_RX_JUMBO_PRD_IDX;
  1811.   cmd.code = 0;
  1812.   cmd.idx = 0;
  1813.   ace_issue_cmd(ap->regs, &cmd);
  1814.   } else {
  1815.   writel(0, &((ap->regs)->RxJumboPrd));
  1816.   wmb();
  1817.   }
  1818. ap->jumbo = 0;
  1819. ap->rx_jumbo_skbprd = 0;
  1820. printk(KERN_INFO "%s: Jumbo ring flushedn",
  1821.        dev->name);
  1822. clear_bit(0, &ap->jumbo_refill_busy);
  1823. break;
  1824. }
  1825. default:
  1826. printk(KERN_ERR "%s: Unhandled event 0x%02xn",
  1827.        dev->name, ap->evt_ring[evtcsm].evt);
  1828. }
  1829. evtcsm = (evtcsm + 1) % EVT_RING_ENTRIES;
  1830. }
  1831. return evtcsm;
  1832. }
  1833. static void ace_rx_int(struct net_device *dev, u32 rxretprd, u32 rxretcsm)
  1834. {
  1835. struct ace_private *ap = dev->priv;
  1836. u32 idx;
  1837. int mini_count = 0, std_count = 0;
  1838. idx = rxretcsm;
  1839. prefetchw(&ap->cur_rx_bufs);
  1840. prefetchw(&ap->cur_mini_bufs);
  1841. while (idx != rxretprd) {
  1842. struct ring_info *rip;
  1843. struct sk_buff *skb;
  1844. struct rx_desc *rxdesc, *retdesc;
  1845. u32 skbidx;
  1846. int bd_flags, desc_type, mapsize;
  1847. u16 csum;
  1848. retdesc = &ap->rx_return_ring[idx];
  1849. skbidx = retdesc->idx;
  1850. bd_flags = retdesc->flags;
  1851. desc_type = bd_flags & (BD_FLG_JUMBO | BD_FLG_MINI);
  1852. switch(desc_type) {
  1853. /*
  1854.  * Normal frames do not have any flags set
  1855.  *
  1856.  * Mini and normal frames arrive frequently,
  1857.  * so use a local counter to avoid doing
  1858.  * atomic operations for each packet arriving.
  1859.  */
  1860. case 0:
  1861. rip = &ap->skb->rx_std_skbuff[skbidx];
  1862. mapsize = ACE_STD_BUFSIZE - (2 + 16);
  1863. rxdesc = &ap->rx_std_ring[skbidx];
  1864. std_count++;
  1865. break;
  1866. case BD_FLG_JUMBO:
  1867. rip = &ap->skb->rx_jumbo_skbuff[skbidx];
  1868. mapsize = ACE_JUMBO_BUFSIZE - (2 + 16);
  1869. rxdesc = &ap->rx_jumbo_ring[skbidx];
  1870. atomic_dec(&ap->cur_jumbo_bufs);
  1871. break;
  1872. case BD_FLG_MINI:
  1873. rip = &ap->skb->rx_mini_skbuff[skbidx];
  1874. mapsize = ACE_MINI_BUFSIZE - (2 + 16);
  1875. rxdesc = &ap->rx_mini_ring[skbidx];
  1876. mini_count++; 
  1877. break;
  1878. default:
  1879. printk(KERN_INFO "%s: unknown frame type (0x%02x) "
  1880.        "returned by NICn", dev->name,
  1881.        retdesc->flags);
  1882. goto error;
  1883. }
  1884. skb = rip->skb;
  1885. rip->skb = NULL;
  1886. pci_unmap_page(ap->pdev,
  1887.        pci_unmap_addr(rip, mapping),
  1888.        mapsize,
  1889.        PCI_DMA_FROMDEVICE);
  1890. skb_put(skb, retdesc->size);
  1891. /*
  1892.  * Fly baby, fly!
  1893.  */
  1894. csum = retdesc->tcp_udp_csum;
  1895. skb->dev = dev;
  1896. skb->protocol = eth_type_trans(skb, dev);
  1897. /*
  1898.  * Instead of forcing the poor tigon mips cpu to calculate
  1899.  * pseudo hdr checksum, we do this ourselves.
  1900.  */
  1901. if (bd_flags & BD_FLG_TCP_UDP_SUM) {
  1902. skb->csum = htons(csum);
  1903. skb->ip_summed = CHECKSUM_HW;
  1904. } else {
  1905. skb->ip_summed = CHECKSUM_NONE;
  1906. }
  1907. netif_rx(skb); /* send it up */
  1908. dev->last_rx = jiffies;
  1909. ap->stats.rx_packets++;
  1910. ap->stats.rx_bytes += retdesc->size;
  1911. idx = (idx + 1) % RX_RETURN_RING_ENTRIES;
  1912. }
  1913. atomic_sub(std_count, &ap->cur_rx_bufs);
  1914. if (!ACE_IS_TIGON_I(ap))
  1915. atomic_sub(mini_count, &ap->cur_mini_bufs);
  1916.  out:
  1917. /*
  1918.  * According to the documentation RxRetCsm is obsolete with
  1919.  * the 12.3.x Firmware - my Tigon I NICs seem to disagree!
  1920.  */
  1921. if (ACE_IS_TIGON_I(ap)) {
  1922. struct ace_regs *regs = ap->regs;
  1923. writel(idx, &regs->RxRetCsm);
  1924. }
  1925. ap->cur_rx = idx;
  1926. return;
  1927.  error:
  1928. idx = rxretprd;
  1929. goto out;
  1930. }
  1931. static inline void ace_tx_int(struct net_device *dev,
  1932.       u32 txcsm, u32 idx)
  1933. {
  1934. struct ace_private *ap = dev->priv;
  1935. do {
  1936. struct sk_buff *skb;
  1937. dma_addr_t mapping;
  1938. struct tx_ring_info *info;
  1939. info = ap->skb->tx_skbuff + idx;
  1940. skb = info->skb;
  1941. mapping = pci_unmap_addr(info, mapping);
  1942. if (mapping) {
  1943. pci_unmap_page(ap->pdev, mapping,
  1944.        pci_unmap_len(info, maplen),
  1945.        PCI_DMA_TODEVICE);
  1946. pci_unmap_addr_set(info, mapping, 0);
  1947. }
  1948. if (skb) {
  1949. ap->stats.tx_packets++;
  1950. ap->stats.tx_bytes += skb->len;
  1951. dev_kfree_skb_irq(skb);
  1952. info->skb = NULL;
  1953. }
  1954. idx = (idx + 1) % TX_RING_ENTRIES;
  1955. } while (idx != txcsm);
  1956. if (netif_queue_stopped(dev))
  1957. netif_wake_queue(dev);
  1958. wmb();
  1959. ap->tx_ret_csm = txcsm;
  1960. /* So... tx_ret_csm is advanced _after_ check for device wakeup.
  1961.  *
  1962.  * We could try to make it before. In this case we would get
  1963.  * the following race condition: hard_start_xmit on other cpu
  1964.  * enters after we advanced tx_ret_csm and fills space,
  1965.  * which we have just freed, so that we make illegal device wakeup.
  1966.  * There is no good way to workaround this (at entry
  1967.  * to ace_start_xmit detects this condition and prevents
  1968.  * ring corruption, but it is not a good workaround.)
  1969.  *
  1970.  * When tx_ret_csm is advanced after, we wake up device _only_
  1971.  * if we really have some space in ring (though the core doing
  1972.  * hard_start_xmit can see full ring for some period and has to
  1973.  * synchronize.) Superb.
  1974.  * BUT! We get another subtle race condition. hard_start_xmit
  1975.  * may think that ring is full between wakeup and advancing
  1976.  * tx_ret_csm and will stop device instantly! It is not so bad.
  1977.  * We are guaranteed that there is something in ring, so that
  1978.  * the next irq will resume transmission. To speedup this we could
  1979.  * mark descriptor, which closes ring with BD_FLG_COAL_NOW
  1980.  * (see ace_start_xmit).
  1981.  *
  1982.  * Well, this dilemma exists in all lock-free devices.
  1983.  * We, following scheme used in drivers by Donald Becker,
  1984.  * select the least dangerous.
  1985.  * --ANK
  1986.  */
  1987. }
  1988. static void ace_interrupt(int irq, void *dev_id, struct pt_regs *ptregs)
  1989. {
  1990. struct ace_private *ap;
  1991. struct ace_regs *regs;
  1992. struct net_device *dev = (struct net_device *)dev_id;
  1993. u32 idx;
  1994. u32 txcsm, rxretcsm, rxretprd;
  1995. u32 evtcsm, evtprd;
  1996. ap = dev->priv;
  1997. regs = ap->regs;
  1998. /*
  1999.  * In case of PCI shared interrupts or spurious interrupts,
  2000.  * we want to make sure it is actually our interrupt before
  2001.  * spending any time in here.
  2002.  */
  2003. if (!(readl(&regs->HostCtrl) & IN_INT))
  2004. return;
  2005. /*
  2006.  * ACK intr now. Otherwise we will lose updates to rx_ret_prd,
  2007.  * which happened _after_ rxretprd = *ap->rx_ret_prd; but before
  2008.  * writel(0, &regs->Mb0Lo).
  2009.  *
  2010.  * "IRQ avoidance" recommended in docs applies to IRQs served
  2011.  * threads and it is wrong even for that case.
  2012.  */
  2013. writel(0, &regs->Mb0Lo);
  2014. /*
  2015.  * There is no conflict between transmit handling in
  2016.  * start_xmit and receive processing, thus there is no reason
  2017.  * to take a spin lock for RX handling. Wait until we start
  2018.  * working on the other stuff - hey we don't need a spin lock
  2019.  * anymore.
  2020.  */
  2021. rxretprd = *ap->rx_ret_prd;
  2022. rxretcsm = ap->cur_rx;
  2023. if (rxretprd != rxretcsm)
  2024. ace_rx_int(dev, rxretprd, rxretcsm);
  2025. txcsm = *ap->tx_csm;
  2026. idx = ap->tx_ret_csm;
  2027. if (txcsm != idx) {
  2028. /*
  2029.  * If each skb takes only one descriptor this check degenerates
  2030.  * to identity, because new space has just been opened.
  2031.  * But if skbs are fragmented we must check that this index
  2032.  * update releases enough of space, otherwise we just
  2033.  * wait for device to make more work.
  2034.  */
  2035. if (!tx_ring_full(txcsm, ap->tx_prd))
  2036. ace_tx_int(dev, txcsm, idx);
  2037. }
  2038. evtcsm = readl(&regs->EvtCsm);
  2039. evtprd = *ap->evt_prd;
  2040. if (evtcsm != evtprd) {
  2041. evtcsm = ace_handle_event(dev, evtcsm, evtprd);
  2042. writel(evtcsm, &regs->EvtCsm);
  2043. }
  2044. /*
  2045.  * This has to go last in the interrupt handler and run with
  2046.  * the spin lock released ... what lock?
  2047.  */
  2048. if (netif_running(dev)) {
  2049. int cur_size;
  2050. int run_tasklet = 0;
  2051. cur_size = atomic_read(&ap->cur_rx_bufs);
  2052. if (cur_size < RX_LOW_STD_THRES) {
  2053. if ((cur_size < RX_PANIC_STD_THRES) &&
  2054.     !test_and_set_bit(0, &ap->std_refill_busy)) {
  2055. #if DEBUG
  2056. printk("low on std buffers %in", cur_size);
  2057. #endif
  2058. ace_load_std_rx_ring(ap,
  2059.      RX_RING_SIZE - cur_size);
  2060. } else
  2061. run_tasklet = 1;
  2062. }
  2063. if (!ACE_IS_TIGON_I(ap)) {
  2064. cur_size = atomic_read(&ap->cur_mini_bufs);
  2065. if (cur_size < RX_LOW_MINI_THRES) {
  2066. if ((cur_size < RX_PANIC_MINI_THRES) &&
  2067.     !test_and_set_bit(0,
  2068.       &ap->mini_refill_busy)) {
  2069. #if DEBUG
  2070. printk("low on mini buffers %in",
  2071.        cur_size);
  2072. #endif
  2073. ace_load_mini_rx_ring(ap, RX_MINI_SIZE - cur_size);
  2074. } else
  2075. run_tasklet = 1;
  2076. }
  2077. }
  2078. if (ap->jumbo) {
  2079. cur_size = atomic_read(&ap->cur_jumbo_bufs);
  2080. if (cur_size < RX_LOW_JUMBO_THRES) {
  2081. if ((cur_size < RX_PANIC_JUMBO_THRES) &&
  2082.     !test_and_set_bit(0,
  2083.       &ap->jumbo_refill_busy)){
  2084. #if DEBUG
  2085. printk("low on jumbo buffers %in",
  2086.        cur_size);
  2087. #endif
  2088. ace_load_jumbo_rx_ring(ap, RX_JUMBO_SIZE - cur_size);
  2089. } else
  2090. run_tasklet = 1;
  2091. }
  2092. }
  2093. if (run_tasklet && !ap->tasklet_pending) {
  2094. ap->tasklet_pending = 1;
  2095. tasklet_schedule(&ap->ace_tasklet);
  2096. }
  2097. }
  2098. }
  2099. static int ace_open(struct net_device *dev)
  2100. {
  2101. struct ace_private *ap;
  2102. struct ace_regs *regs;
  2103. struct cmd cmd;
  2104. ap = dev->priv;
  2105. regs = ap->regs;
  2106. if (!(ap->fw_running)) {
  2107. printk(KERN_WARNING "%s: Firmware not running!n", dev->name);
  2108. return -EBUSY;
  2109. }
  2110. writel(dev->mtu + ETH_HLEN + 4, &regs->IfMtu);
  2111. cmd.evt = C_CLEAR_STATS;
  2112. cmd.code = 0;
  2113. cmd.idx = 0;
  2114. ace_issue_cmd(regs, &cmd);
  2115. cmd.evt = C_HOST_STATE;
  2116. cmd.code = C_C_STACK_UP;
  2117. cmd.idx = 0;
  2118. ace_issue_cmd(regs, &cmd);
  2119. if (ap->jumbo &&
  2120.     !test_and_set_bit(0, &ap->jumbo_refill_busy))
  2121. ace_load_jumbo_rx_ring(ap, RX_JUMBO_SIZE);
  2122. if (dev->flags & IFF_PROMISC) {
  2123. cmd.evt = C_SET_PROMISC_MODE;
  2124. cmd.code = C_C_PROMISC_ENABLE;
  2125. cmd.idx = 0;
  2126. ace_issue_cmd(regs, &cmd);
  2127. ap->promisc = 1;
  2128. }else
  2129. ap->promisc = 0;
  2130. ap->mcast_all = 0;
  2131. #if 0
  2132. cmd.evt = C_LNK_NEGOTIATION;
  2133. cmd.code = 0;
  2134. cmd.idx = 0;
  2135. ace_issue_cmd(regs, &cmd);
  2136. #endif
  2137. netif_start_queue(dev);
  2138. ACE_MOD_INC_USE_COUNT;
  2139. /*
  2140.  * Setup the bottom half rx ring refill handler
  2141.  */
  2142. tasklet_init(&ap->ace_tasklet, ace_tasklet, (unsigned long)dev);
  2143. return 0;
  2144. }
  2145. static int ace_close(struct net_device *dev)
  2146. {
  2147. struct ace_private *ap;
  2148. struct ace_regs *regs;
  2149. struct cmd cmd;
  2150. unsigned long flags;
  2151. short i;
  2152. ace_if_down(dev);
  2153. /*
  2154.  * Without (or before) releasing irq and stopping hardware, this
  2155.  * is an absolute non-sense, by the way. It will be reset instantly
  2156.  * by the first irq.
  2157.  */
  2158. netif_stop_queue(dev);
  2159. ap = dev->priv;
  2160. regs = ap->regs;
  2161. if (ap->promisc) {
  2162. cmd.evt = C_SET_PROMISC_MODE;
  2163. cmd.code = C_C_PROMISC_DISABLE;
  2164. cmd.idx = 0;
  2165. ace_issue_cmd(regs, &cmd);
  2166. ap->promisc = 0;
  2167. }
  2168. cmd.evt = C_HOST_STATE;
  2169. cmd.code = C_C_STACK_DOWN;
  2170. cmd.idx = 0;
  2171. ace_issue_cmd(regs, &cmd);
  2172. tasklet_kill(&ap->ace_tasklet);
  2173. /*
  2174.  * Make sure one CPU is not processing packets while
  2175.  * buffers are being released by another.
  2176.  */
  2177. save_flags(flags);
  2178. cli();
  2179. for (i = 0; i < TX_RING_ENTRIES; i++) {
  2180. struct sk_buff *skb;
  2181. dma_addr_t mapping;
  2182. struct tx_ring_info *info;
  2183. info = ap->skb->tx_skbuff + i;
  2184. skb = info->skb;
  2185. mapping = pci_unmap_addr(info, mapping);
  2186. if (mapping) {
  2187. memset(ap->tx_ring + i, 0, sizeof(struct tx_desc));
  2188. pci_unmap_page(ap->pdev, mapping,
  2189.        pci_unmap_len(info, maplen),
  2190.        PCI_DMA_TODEVICE);
  2191. pci_unmap_addr_set(info, mapping, 0);
  2192. }
  2193. if (skb) {
  2194. dev_kfree_skb(skb);
  2195. info->skb = NULL;
  2196. }
  2197. }
  2198. if (ap->jumbo) {
  2199. cmd.evt = C_RESET_JUMBO_RNG;
  2200. cmd.code = 0;
  2201. cmd.idx = 0;
  2202. ace_issue_cmd(regs, &cmd);
  2203. }
  2204. restore_flags(flags);
  2205. ACE_MOD_DEC_USE_COUNT;
  2206. return 0;
  2207. }
  2208. static inline dma_addr_t
  2209. ace_map_tx_skb(struct ace_private *ap, struct sk_buff *skb,
  2210.        struct sk_buff *tail, u32 idx)
  2211. {
  2212. dma_addr_t mapping;
  2213. struct tx_ring_info *info;
  2214. mapping = pci_map_page(ap->pdev, virt_to_page(skb->data),
  2215.        ((unsigned long) skb->data & ~PAGE_MASK),
  2216.        skb->len, PCI_DMA_TODEVICE);
  2217. info = ap->skb->tx_skbuff + idx;
  2218. info->skb = tail;
  2219. pci_unmap_addr_set(info, mapping, mapping);
  2220. pci_unmap_len_set(info, maplen, skb->len);
  2221. return mapping;
  2222. }
  2223. static inline void
  2224. ace_load_tx_bd(struct tx_desc *desc, u64 addr, u32 flagsize)
  2225. {
  2226. #if !USE_TX_COAL_NOW
  2227. flagsize &= ~BD_FLG_COAL_NOW;
  2228. #endif
  2229. desc->addr.addrhi = addr >> 32;
  2230. desc->addr.addrlo = addr;
  2231. desc->flagsize = flagsize;
  2232. }
  2233. static int ace_start_xmit(struct sk_buff *skb, struct net_device *dev)
  2234. {
  2235. struct ace_private *ap = dev->priv;
  2236. struct ace_regs *regs = ap->regs;
  2237. struct tx_desc *desc;
  2238. u32 idx, flagsize;
  2239.   /*
  2240.  * This only happens with pre-softnet, ie. 2.2.x kernels.
  2241.    */
  2242. if (early_stop_netif_stop_queue(dev))
  2243.   return 1;
  2244. restart:
  2245. idx = ap->tx_prd;
  2246. if (tx_ring_full(ap->tx_ret_csm, idx))
  2247. goto overflow;
  2248. #if MAX_SKB_FRAGS
  2249. if (!skb_shinfo(skb)->nr_frags)
  2250. #endif
  2251. {
  2252. dma_addr_t mapping;
  2253. mapping = ace_map_tx_skb(ap, skb, skb, idx);
  2254. flagsize = (skb->len << 16) | (BD_FLG_END);
  2255. if (skb->ip_summed == CHECKSUM_HW)
  2256. flagsize |= BD_FLG_TCP_UDP_SUM;
  2257. desc = ap->tx_ring + idx;
  2258. idx = (idx + 1) % TX_RING_ENTRIES;
  2259. /* Look at ace_tx_int for explanations. */
  2260. if (tx_ring_full(ap->tx_ret_csm, idx))
  2261. flagsize |= BD_FLG_COAL_NOW;
  2262. ace_load_tx_bd(desc, mapping, flagsize);
  2263. }
  2264. #if MAX_SKB_FRAGS
  2265. else {
  2266. dma_addr_t mapping;
  2267. int i, len = 0;
  2268. mapping = ace_map_tx_skb(ap, skb, NULL, idx);
  2269. flagsize = ((skb->len - skb->data_len) << 16);
  2270. if (skb->ip_summed == CHECKSUM_HW)
  2271. flagsize |= BD_FLG_TCP_UDP_SUM;
  2272. ace_load_tx_bd(ap->tx_ring + idx, mapping, flagsize);
  2273. idx = (idx + 1) % TX_RING_ENTRIES;
  2274. for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
  2275. skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
  2276. struct tx_ring_info *info;
  2277. len += frag->size;
  2278. info = ap->skb->tx_skbuff + idx;
  2279. desc = ap->tx_ring + idx;
  2280. mapping = pci_map_page(ap->pdev, frag->page,
  2281.        frag->page_offset, frag->size,
  2282.        PCI_DMA_TODEVICE);
  2283. flagsize = (frag->size << 16);
  2284. if (skb->ip_summed == CHECKSUM_HW)
  2285. flagsize |= BD_FLG_TCP_UDP_SUM;
  2286. idx = (idx + 1) % TX_RING_ENTRIES;
  2287. if (i == skb_shinfo(skb)->nr_frags - 1) {
  2288. flagsize |= BD_FLG_END;
  2289. if (tx_ring_full(ap->tx_ret_csm, idx))
  2290. flagsize |= BD_FLG_COAL_NOW;
  2291. /*
  2292.  * Only the last fragment frees
  2293.  * the skb!
  2294.  */
  2295. info->skb = skb;
  2296. } else {
  2297. info->skb = NULL;
  2298. }
  2299. pci_unmap_addr_set(info, mapping, mapping);
  2300. pci_unmap_len_set(info, maplen, frag->size);
  2301. ace_load_tx_bd(desc, mapping, flagsize);
  2302. }
  2303. }
  2304. #endif
  2305.   wmb();
  2306.   ap->tx_prd = idx;
  2307.   ace_set_txprd(regs, ap, idx);
  2308. if (flagsize & BD_FLG_COAL_NOW) {
  2309. netif_stop_queue(dev);
  2310. /*
  2311.  * A TX-descriptor producer (an IRQ) might have gotten
  2312.  * inbetween, making the ring free again. Since xmit is
  2313.  * serialized, this is the only situation we have to
  2314.  * re-test.
  2315.  */
  2316. if (!tx_ring_full(ap->tx_ret_csm, idx))
  2317. netif_wake_queue(dev);
  2318. }
  2319. dev->trans_start = jiffies;
  2320. return 0;
  2321. overflow:
  2322. /*
  2323.  * This race condition is unavoidable with lock-free drivers.
  2324.  * We wake up the queue _before_ tx_prd is advanced, so that we can
  2325.  * enter hard_start_xmit too early, while tx ring still looks closed.
  2326.  * This happens ~1-4 times per 100000 packets, so that we can allow
  2327.  * to loop syncing to other CPU. Probably, we need an additional
  2328.  * wmb() in ace_tx_intr as well.
  2329.  *
  2330.  * Note that this race is relieved by reserving one more entry
  2331.  * in tx ring than it is necessary (see original non-SG driver).
  2332.  * However, with SG we need to reserve 2*MAX_SKB_FRAGS+1, which
  2333.  * is already overkill.
  2334.  *
  2335.  * Alternative is to return with 1 not throttling queue. In this
  2336.  * case loop becomes longer, no more useful effects.
  2337.  */
  2338. barrier();
  2339. goto restart;
  2340. }
  2341. static int ace_change_mtu(struct net_device *dev, int new_mtu)
  2342. {
  2343. struct ace_private *ap = dev->priv;
  2344. struct ace_regs *regs = ap->regs;
  2345. if (new_mtu > ACE_JUMBO_MTU)
  2346. return -EINVAL;
  2347. writel(new_mtu + ETH_HLEN + 4, &regs->IfMtu);
  2348. dev->mtu = new_mtu;
  2349. if (new_mtu > ACE_STD_MTU) {
  2350. if (!(ap->jumbo)) {
  2351. printk(KERN_INFO "%s: Enabling Jumbo frame "
  2352.        "supportn", dev->name);
  2353. ap->jumbo = 1;
  2354. if (!test_and_set_bit(0, &ap->jumbo_refill_busy))
  2355. ace_load_jumbo_rx_ring(ap, RX_JUMBO_SIZE);
  2356. ace_set_rxtx_parms(dev, 1);
  2357. }
  2358. } else {
  2359. while (test_and_set_bit(0, &ap->jumbo_refill_busy));
  2360. synchronize_irq();
  2361. ace_set_rxtx_parms(dev, 0);
  2362. if (ap->jumbo) {
  2363. struct cmd cmd;
  2364. cmd.evt = C_RESET_JUMBO_RNG;
  2365. cmd.code = 0;
  2366. cmd.idx = 0;
  2367. ace_issue_cmd(regs, &cmd);
  2368. }
  2369. }
  2370. return 0;
  2371. }
  2372. static int ace_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  2373. {
  2374. struct ace_private *ap = dev->priv;
  2375. struct ace_regs *regs = ap->regs;
  2376. #ifdef SIOCETHTOOL
  2377. struct ethtool_cmd ecmd;
  2378. u32 link, speed;
  2379. if (cmd != SIOCETHTOOL)
  2380. return -EOPNOTSUPP;
  2381. if (copy_from_user(&ecmd, ifr->ifr_data, sizeof(ecmd)))
  2382. return -EFAULT;
  2383. if (ecmd.cmd == ETHTOOL_GSET) {
  2384. ecmd.supported =
  2385. (SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full |
  2386.  SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full |
  2387.  SUPPORTED_1000baseT_Half | SUPPORTED_1000baseT_Full |
  2388.  SUPPORTED_Autoneg | SUPPORTED_FIBRE);
  2389. ecmd.port = PORT_FIBRE;
  2390. ecmd.transceiver = XCVR_INTERNAL;
  2391. ecmd.phy_address = 0;
  2392. link = readl(&regs->GigLnkState);
  2393. if (link & LNK_1000MB)
  2394. ecmd.speed = SPEED_1000;
  2395. else {
  2396. link = readl(&regs->FastLnkState);
  2397. if (link & LNK_100MB)
  2398. ecmd.speed = SPEED_100;
  2399. else if (link & LNK_100MB)
  2400. ecmd.speed = SPEED_10;
  2401. else
  2402. ecmd.speed = 0;
  2403. }
  2404. if (link & LNK_FULL_DUPLEX)
  2405. ecmd.duplex = DUPLEX_FULL;
  2406. else
  2407. ecmd.duplex = DUPLEX_HALF;
  2408. if (link & LNK_NEGOTIATE)
  2409. ecmd.autoneg = AUTONEG_ENABLE;
  2410. else
  2411. ecmd.autoneg = AUTONEG_DISABLE;
  2412. #if 0
  2413. /*
  2414.  * Current struct ethtool_cmd is insufficient
  2415.  */
  2416. ecmd.trace = readl(&regs->TuneTrace);
  2417. ecmd.txcoal = readl(&regs->TuneTxCoalTicks);
  2418. ecmd.rxcoal = readl(&regs->TuneRxCoalTicks);
  2419. #endif
  2420. ecmd.maxtxpkt = readl(&regs->TuneMaxTxDesc);
  2421. ecmd.maxrxpkt = readl(&regs->TuneMaxRxDesc);
  2422. if(copy_to_user(ifr->ifr_data, &ecmd, sizeof(ecmd)))
  2423. return -EFAULT;
  2424. return 0;
  2425. } else if (ecmd.cmd == ETHTOOL_SSET) {
  2426. if(!capable(CAP_NET_ADMIN))
  2427. return -EPERM;
  2428. link = readl(&regs->GigLnkState);
  2429. if (link & LNK_1000MB)
  2430. speed = SPEED_1000;
  2431. else {
  2432. link = readl(&regs->FastLnkState);
  2433. if (link & LNK_100MB)
  2434. speed = SPEED_100;
  2435. else if (link & LNK_100MB)
  2436. speed = SPEED_10;
  2437. else
  2438. speed = SPEED_100;
  2439. }
  2440. link = LNK_ENABLE | LNK_1000MB | LNK_100MB | LNK_10MB |
  2441. LNK_RX_FLOW_CTL_Y | LNK_NEG_FCTL;
  2442. if (!ACE_IS_TIGON_I(ap))
  2443. link |= LNK_TX_FLOW_CTL_Y;
  2444. if (ecmd.autoneg == AUTONEG_ENABLE)
  2445. link |= LNK_NEGOTIATE;
  2446. if (ecmd.speed != speed) {
  2447. link &= ~(LNK_1000MB | LNK_100MB | LNK_10MB);
  2448. switch (speed) {
  2449. case SPEED_1000:
  2450. link |= LNK_1000MB;
  2451. break;
  2452. case SPEED_100:
  2453. link |= LNK_100MB;
  2454. break;
  2455. case SPEED_10:
  2456. link |= LNK_10MB;
  2457. break;
  2458. }
  2459. }
  2460. if (ecmd.duplex == DUPLEX_FULL)
  2461. link |= LNK_FULL_DUPLEX;
  2462. if (link != ap->link) {
  2463. struct cmd cmd;
  2464. printk(KERN_INFO "%s: Renegotiating link staten",
  2465.        dev->name);
  2466. ap->link = link;
  2467. writel(link, &regs->TuneLink);
  2468. if (!ACE_IS_TIGON_I(ap))
  2469. writel(link, &regs->TuneFastLink);
  2470. wmb();
  2471. cmd.evt = C_LNK_NEGOTIATION;
  2472. cmd.code = 0;
  2473. cmd.idx = 0;
  2474. ace_issue_cmd(regs, &cmd);
  2475. }
  2476. return 0;
  2477. }
  2478. #endif
  2479. return -EOPNOTSUPP;
  2480. }
  2481. /*
  2482.  * Set the hardware MAC address.
  2483.  */
  2484. static int ace_set_mac_addr(struct net_device *dev, void *p)
  2485. {
  2486. struct sockaddr *addr=p;
  2487. struct ace_regs *regs;
  2488. u8 *da;
  2489. struct cmd cmd;
  2490. if(netif_running(dev))
  2491. return -EBUSY;
  2492. memcpy(dev->dev_addr, addr->sa_data,dev->addr_len);
  2493. da = (u8 *)dev->dev_addr;
  2494. regs = ((struct ace_private *)dev->priv)->regs;
  2495. writel(da[0] << 8 | da[1], &regs->MacAddrHi);
  2496. writel((da[2] << 24) | (da[3] << 16) | (da[4] << 8) | da[5],
  2497.        &regs->MacAddrLo);
  2498. cmd.evt = C_SET_MAC_ADDR;
  2499. cmd.code = 0;
  2500. cmd.idx = 0;
  2501. ace_issue_cmd(regs, &cmd);
  2502. return 0;
  2503. }
  2504. static void ace_set_multicast_list(struct net_device *dev)
  2505. {
  2506. struct ace_private *ap = dev->priv;
  2507. struct ace_regs *regs = ap->regs;
  2508. struct cmd cmd;
  2509. if ((dev->flags & IFF_ALLMULTI) && !(ap->mcast_all)) {
  2510. cmd.evt = C_SET_MULTICAST_MODE;
  2511. cmd.code = C_C_MCAST_ENABLE;
  2512. cmd.idx = 0;
  2513. ace_issue_cmd(regs, &cmd);
  2514. ap->mcast_all = 1;
  2515. } else if (ap->mcast_all) {
  2516. cmd.evt = C_SET_MULTICAST_MODE;
  2517. cmd.code = C_C_MCAST_DISABLE;
  2518. cmd.idx = 0;
  2519. ace_issue_cmd(regs, &cmd);
  2520. ap->mcast_all = 0;
  2521. }
  2522. if ((dev->flags & IFF_PROMISC) && !(ap->promisc)) {
  2523. cmd.evt = C_SET_PROMISC_MODE;
  2524. cmd.code = C_C_PROMISC_ENABLE;
  2525. cmd.idx = 0;
  2526. ace_issue_cmd(regs, &cmd);
  2527. ap->promisc = 1;
  2528. }else if (!(dev->flags & IFF_PROMISC) && (ap->promisc)) {
  2529. cmd.evt = C_SET_PROMISC_MODE;
  2530. cmd.code = C_C_PROMISC_DISABLE;
  2531. cmd.idx = 0;
  2532. ace_issue_cmd(regs, &cmd);
  2533. ap->promisc = 0;
  2534. }
  2535. /*
  2536.  * For the time being multicast relies on the upper layers
  2537.  * filtering it properly. The Firmware does not allow one to
  2538.  * set the entire multicast list at a time and keeping track of
  2539.  * it here is going to be messy.
  2540.  */
  2541. if ((dev->mc_count) && !(ap->mcast_all)) {
  2542. cmd.evt = C_SET_MULTICAST_MODE;
  2543. cmd.code = C_C_MCAST_ENABLE;
  2544. cmd.idx = 0;
  2545. ace_issue_cmd(regs, &cmd);
  2546. }else if (!ap->mcast_all) {
  2547. cmd.evt = C_SET_MULTICAST_MODE;
  2548. cmd.code = C_C_MCAST_DISABLE;
  2549. cmd.idx = 0;
  2550. ace_issue_cmd(regs, &cmd);
  2551. }
  2552. }
  2553. static struct net_device_stats *ace_get_stats(struct net_device *dev)
  2554. {
  2555. struct ace_private *ap = dev->priv;
  2556. struct ace_mac_stats *mac_stats =
  2557. (struct ace_mac_stats *)ap->regs->Stats;
  2558. ap->stats.rx_missed_errors = readl(&mac_stats->drop_space);
  2559. ap->stats.multicast = readl(&mac_stats->kept_mc);
  2560. ap->stats.collisions = readl(&mac_stats->coll);
  2561. return &ap->stats;
  2562. }
  2563. static void __init ace_copy(struct ace_regs *regs, void *src,
  2564.     u32 dest, int size)
  2565. {
  2566. unsigned long tdest;
  2567. u32 *wsrc;
  2568. short tsize, i;
  2569. if (size <= 0)
  2570. return;
  2571. while (size > 0) {
  2572. tsize = min_t(u32, ((~dest & (ACE_WINDOW_SIZE - 1)) + 1),
  2573.     min_t(u32, size, ACE_WINDOW_SIZE));
  2574. tdest = (unsigned long)&regs->Window +
  2575. (dest & (ACE_WINDOW_SIZE - 1));
  2576. writel(dest & ~(ACE_WINDOW_SIZE - 1), &regs->WinBase);
  2577. /*
  2578.  * This requires byte swapping on big endian, however
  2579.  * writel does that for us
  2580.  */
  2581. wsrc = src;
  2582. for (i = 0; i < (tsize / 4); i++) {
  2583. writel(wsrc[i], tdest + i*4);
  2584. }
  2585. dest += tsize;
  2586. src += tsize;
  2587. size -= tsize;
  2588. }
  2589. return;
  2590. }
  2591. static void __init ace_clear(struct ace_regs *regs, u32 dest, int size)
  2592. {
  2593. unsigned long tdest;
  2594. short tsize = 0, i;
  2595. if (size <= 0)
  2596. return;
  2597. while (size > 0) {
  2598. tsize = min_t(u32, ((~dest & (ACE_WINDOW_SIZE - 1)) + 1),
  2599. min_t(u32, size, ACE_WINDOW_SIZE));
  2600. tdest = (unsigned long)&regs->Window +
  2601. (dest & (ACE_WINDOW_SIZE - 1));
  2602. writel(dest & ~(ACE_WINDOW_SIZE - 1), &regs->WinBase);
  2603. for (i = 0; i < (tsize / 4); i++) {
  2604. writel(0, tdest + i*4);
  2605. }
  2606. dest += tsize;
  2607. size -= tsize;
  2608. }
  2609. return;
  2610. }
  2611. /*
  2612.  * Download the firmware into the SRAM on the NIC
  2613.  *
  2614.  * This operation requires the NIC to be halted and is performed with
  2615.  * interrupts disabled and with the spinlock hold.
  2616.  */
  2617. int __init ace_load_firmware(struct net_device *dev)
  2618. {
  2619. struct ace_private *ap;
  2620. struct ace_regs *regs;
  2621. ap = dev->priv;
  2622. regs = ap->regs;
  2623. if (!(readl(&regs->CpuCtrl) & CPU_HALTED)) {
  2624. printk(KERN_ERR "%s: trying to download firmware while the "
  2625.        "CPU is running!n", dev->name);
  2626. return -EFAULT;
  2627. }
  2628. /*
  2629.  * Do not try to clear more than 512KB or we end up seeing
  2630.  * funny things on NICs with only 512KB SRAM
  2631.  */
  2632. ace_clear(regs, 0x2000, 0x80000-0x2000);
  2633. if (ACE_IS_TIGON_I(ap)) {
  2634. ace_copy(regs, tigonFwText, tigonFwTextAddr, tigonFwTextLen);
  2635. ace_copy(regs, tigonFwData, tigonFwDataAddr, tigonFwDataLen);
  2636. ace_copy(regs, tigonFwRodata, tigonFwRodataAddr,
  2637.  tigonFwRodataLen);
  2638. ace_clear(regs, tigonFwBssAddr, tigonFwBssLen);
  2639. ace_clear(regs, tigonFwSbssAddr, tigonFwSbssLen);
  2640. }else if (ap->version == 2) {
  2641. ace_clear(regs, tigon2FwBssAddr, tigon2FwBssLen);
  2642. ace_clear(regs, tigon2FwSbssAddr, tigon2FwSbssLen);
  2643. ace_copy(regs, tigon2FwText, tigon2FwTextAddr,tigon2FwTextLen);
  2644. ace_copy(regs, tigon2FwRodata, tigon2FwRodataAddr,
  2645.  tigon2FwRodataLen);
  2646. ace_copy(regs, tigon2FwData, tigon2FwDataAddr,tigon2FwDataLen);
  2647. }
  2648. return 0;
  2649. }
  2650. /*
  2651.  * The eeprom on the AceNIC is an Atmel i2c EEPROM.
  2652.  *
  2653.  * Accessing the EEPROM is `interesting' to say the least - don't read
  2654.  * this code right after dinner.
  2655.  *
  2656.  * This is all about black magic and bit-banging the device .... I
  2657.  * wonder in what hospital they have put the guy who designed the i2c
  2658.  * specs.
  2659.  *
  2660.  * Oh yes, this is only the beginning!
  2661.  *
  2662.  * Thanks to Stevarino Webinski for helping tracking down the bugs in the
  2663.  * code i2c readout code by beta testing all my hacks.
  2664.  */
  2665. static void __init eeprom_start(struct ace_regs *regs)
  2666. {
  2667. u32 local;
  2668. udelay(ACE_SHORT_DELAY);
  2669. local = readl(&regs->LocalCtrl);
  2670. local |= EEPROM_DATA_OUT | EEPROM_WRITE_ENABLE;
  2671. writel(local, &regs->LocalCtrl);
  2672. mb();
  2673. udelay(ACE_SHORT_DELAY);
  2674. local |= EEPROM_CLK_OUT;
  2675. writel(local, &regs->LocalCtrl);
  2676. mb();
  2677. udelay(ACE_SHORT_DELAY);
  2678. local &= ~EEPROM_DATA_OUT;
  2679. writel(local, &regs->LocalCtrl);
  2680. mb();
  2681. udelay(ACE_SHORT_DELAY);
  2682. local &= ~EEPROM_CLK_OUT;
  2683. writel(local, &regs->LocalCtrl);
  2684. mb();
  2685. }
  2686. static void __init eeprom_prep(struct ace_regs *regs, u8 magic)
  2687. {
  2688. short i;
  2689. u32 local;
  2690. udelay(ACE_SHORT_DELAY);
  2691. local = readl(&regs->LocalCtrl);
  2692. local &= ~EEPROM_DATA_OUT;
  2693. local |= EEPROM_WRITE_ENABLE;
  2694. writel(local, &regs->LocalCtrl);
  2695. mb();
  2696. for (i = 0; i < 8; i++, magic <<= 1) {
  2697. udelay(ACE_SHORT_DELAY);
  2698. if (magic & 0x80) 
  2699. local |= EEPROM_DATA_OUT;
  2700. else
  2701. local &= ~EEPROM_DATA_OUT;
  2702. writel(local, &regs->LocalCtrl);
  2703. mb();
  2704. udelay(ACE_SHORT_DELAY);
  2705. local |= EEPROM_CLK_OUT;
  2706. writel(local, &regs->LocalCtrl);
  2707. mb();
  2708. udelay(ACE_SHORT_DELAY);
  2709. local &= ~(EEPROM_CLK_OUT | EEPROM_DATA_OUT);
  2710. writel(local, &regs->LocalCtrl);
  2711. mb();
  2712. }
  2713. }
  2714. static int __init eeprom_check_ack(struct ace_regs *regs)
  2715. {
  2716. int state;
  2717. u32 local;
  2718. local = readl(&regs->LocalCtrl);
  2719. local &= ~EEPROM_WRITE_ENABLE;
  2720. writel(local, &regs->LocalCtrl);
  2721. mb();
  2722. udelay(ACE_LONG_DELAY);
  2723. local |= EEPROM_CLK_OUT;
  2724. writel(local, &regs->LocalCtrl);
  2725. mb();
  2726. udelay(ACE_SHORT_DELAY);
  2727. /* sample data in middle of high clk */
  2728. state = (readl(&regs->LocalCtrl) & EEPROM_DATA_IN) != 0;
  2729. udelay(ACE_SHORT_DELAY);
  2730. mb();
  2731. writel(readl(&regs->LocalCtrl) & ~EEPROM_CLK_OUT, &regs->LocalCtrl);
  2732. mb();
  2733. return state;
  2734. }
  2735. static void __init eeprom_stop(struct ace_regs *regs)
  2736. {
  2737. u32 local;
  2738. udelay(ACE_SHORT_DELAY);
  2739. local = readl(&regs->LocalCtrl);
  2740. local |= EEPROM_WRITE_ENABLE;
  2741. writel(local, &regs->LocalCtrl);
  2742. mb();
  2743. udelay(ACE_SHORT_DELAY);
  2744. local &= ~EEPROM_DATA_OUT;
  2745. writel(local, &regs->LocalCtrl);
  2746. mb();
  2747. udelay(ACE_SHORT_DELAY);
  2748. local |= EEPROM_CLK_OUT;
  2749. writel(local, &regs->LocalCtrl);
  2750. mb();
  2751. udelay(ACE_SHORT_DELAY);
  2752. local |= EEPROM_DATA_OUT;
  2753. writel(local, &regs->LocalCtrl);
  2754. mb();
  2755. udelay(ACE_LONG_DELAY);
  2756. local &= ~EEPROM_CLK_OUT;
  2757. writel(local, &regs->LocalCtrl);
  2758. mb();
  2759. }
  2760. /*
  2761.  * Read a whole byte from the EEPROM.
  2762.  */
  2763. static int __init read_eeprom_byte(struct net_device *dev,
  2764.    unsigned long offset)
  2765. {
  2766. struct ace_regs *regs;
  2767. unsigned long flags;
  2768. u32 local;
  2769. int result = 0;
  2770. short i;
  2771. if (!dev) {
  2772. printk(KERN_ERR "No device!n");
  2773. result = -ENODEV;
  2774. goto eeprom_read_error;
  2775. }
  2776. regs = ((struct ace_private *)dev->priv)->regs;
  2777. /*
  2778.  * Don't take interrupts on this CPU will bit banging
  2779.  * the %#%#@$ I2C device
  2780.  */
  2781. __save_flags(flags);
  2782. __cli();
  2783. eeprom_start(regs);
  2784. eeprom_prep(regs, EEPROM_WRITE_SELECT);
  2785. if (eeprom_check_ack(regs)) {
  2786. __restore_flags(flags);
  2787. printk(KERN_ERR "%s: Unable to sync eepromn", dev->name);
  2788. result = -EIO;
  2789. goto eeprom_read_error;
  2790. }
  2791. eeprom_prep(regs, (offset >> 8) & 0xff);
  2792. if (eeprom_check_ack(regs)) {
  2793. __restore_flags(flags);
  2794. printk(KERN_ERR "%s: Unable to set address byte 0n",
  2795.        dev->name);
  2796. result = -EIO;
  2797. goto eeprom_read_error;
  2798. }
  2799. eeprom_prep(regs, offset & 0xff);
  2800. if (eeprom_check_ack(regs)) {
  2801. __restore_flags(flags);
  2802. printk(KERN_ERR "%s: Unable to set address byte 1n",
  2803.        dev->name);
  2804. result = -EIO;
  2805. goto eeprom_read_error;
  2806. }
  2807. eeprom_start(regs);
  2808. eeprom_prep(regs, EEPROM_READ_SELECT);
  2809. if (eeprom_check_ack(regs)) {
  2810. __restore_flags(flags);
  2811. printk(KERN_ERR "%s: Unable to set READ_SELECTn",
  2812.        dev->name);
  2813. result = -EIO;
  2814. goto eeprom_read_error;
  2815. }
  2816. for (i = 0; i < 8; i++) {
  2817. local = readl(&regs->LocalCtrl);
  2818. local &= ~EEPROM_WRITE_ENABLE;
  2819. writel(local, &regs->LocalCtrl);
  2820. udelay(ACE_LONG_DELAY);
  2821. mb();
  2822. local |= EEPROM_CLK_OUT;
  2823. writel(local, &regs->LocalCtrl);
  2824. mb();
  2825. udelay(ACE_SHORT_DELAY);
  2826. /* sample data mid high clk */
  2827. result = (result << 1) |
  2828. ((readl(&regs->LocalCtrl) & EEPROM_DATA_IN) != 0);
  2829. udelay(ACE_SHORT_DELAY);
  2830. mb();
  2831. local = readl(&regs->LocalCtrl);
  2832. local &= ~EEPROM_CLK_OUT;
  2833. writel(local, &regs->LocalCtrl);
  2834. udelay(ACE_SHORT_DELAY);
  2835. mb();
  2836. if (i == 7) {
  2837. local |= EEPROM_WRITE_ENABLE;
  2838. writel(local, &regs->LocalCtrl);
  2839. mb();
  2840. udelay(ACE_SHORT_DELAY);
  2841. }
  2842. }
  2843. local |= EEPROM_DATA_OUT;
  2844. writel(local, &regs->LocalCtrl);
  2845. mb();
  2846. udelay(ACE_SHORT_DELAY);
  2847. writel(readl(&regs->LocalCtrl) | EEPROM_CLK_OUT, &regs->LocalCtrl);
  2848. udelay(ACE_LONG_DELAY);
  2849. writel(readl(&regs->LocalCtrl) & ~EEPROM_CLK_OUT, &regs->LocalCtrl);
  2850. mb();
  2851. udelay(ACE_SHORT_DELAY);
  2852. eeprom_stop(regs);
  2853. __restore_flags(flags);
  2854.  out:
  2855. return result;
  2856.  eeprom_read_error:
  2857. printk(KERN_ERR "%s: Unable to read eeprom byte 0x%02lxn",
  2858.        dev->name, offset);
  2859. goto out;
  2860. }
  2861. /*
  2862.  * Local variables:
  2863.  * compile-command: "gcc -D__SMP__ -D__KERNEL__ -DMODULE -I../../include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -pipe -fno-strength-reduce -DMODVERSIONS -include ../../include/linux/modversions.h   -c -o acenic.o acenic.c"
  2864.  * End:
  2865.  */