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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* EtherLinkXL.c: A 3Com EtherLink PCI III/XL ethernet driver for linux. */
  2. /*
  3. Written 1996-1999 by Donald Becker.
  4. This software may be used and distributed according to the terms
  5. of the GNU General Public License, incorporated herein by reference.
  6. This driver is for the 3Com "Vortex" and "Boomerang" series ethercards.
  7. Members of the series include Fast EtherLink 3c590/3c592/3c595/3c597
  8. and the EtherLink XL 3c900 and 3c905 cards.
  9. Problem reports and questions should be directed to
  10. vortex@scyld.com
  11. The author may be reached as becker@scyld.com, or C/O
  12. Scyld Computing Corporation
  13. 410 Severn Ave., Suite 210
  14. Annapolis MD 21403
  15. Linux Kernel Additions:
  16.   0.99H+lk0.9 - David S. Miller - softnet, PCI DMA updates
  17.   0.99H+lk1.0 - Jeff Garzik <jgarzik@mandrakesoft.com>
  18. Remove compatibility defines for kernel versions < 2.2.x.
  19. Update for new 2.3.x module interface
  20. LK1.1.2 (March 19, 2000)
  21. * New PCI interface (jgarzik)
  22.     LK1.1.3 25 April 2000, Andrew Morton <andrewm@uow.edu.au>
  23.     - Merged with 3c575_cb.c
  24.     - Don't set RxComplete in boomerang interrupt enable reg
  25.     - spinlock in vortex_timer to protect mdio functions
  26.     - disable local interrupts around call to vortex_interrupt in
  27.       vortex_tx_timeout() (So vortex_interrupt can use spin_lock())
  28.     - Select window 3 in vortex_timer()'s write to Wn3_MAC_Ctrl
  29.     - In vortex_start_xmit(), move the lock to _after_ we've altered
  30.       vp->cur_tx and vp->tx_full.  This defeats the race between
  31.       vortex_start_xmit() and vortex_interrupt which was identified
  32.       by Bogdan Costescu.
  33.     - Merged back support for six new cards from various sources
  34.     - Set vortex_have_pci if pci_module_init returns zero (fixes cardbus
  35.       insertion oops)
  36.     - Tell it that 3c905C has NWAY for 100bT autoneg
  37.     - Fix handling of SetStatusEnd in 'Too much work..' code, as
  38.       per 2.3.99's 3c575_cb (Dave Hinds).
  39.     - Split ISR into two for vortex & boomerang
  40.     - Fix MOD_INC/DEC races
  41.     - Handle resource allocation failures.
  42.     - Fix 3CCFE575CT LED polarity
  43.     - Make tx_interrupt_mitigation the default
  44.     LK1.1.4 25 April 2000, Andrew Morton <andrewm@uow.edu.au>    
  45.     - Add extra TxReset to vortex_up() to fix 575_cb hotplug initialisation probs.
  46.     - Put vortex_info_tbl into __devinitdata
  47.     - In the vortex_error StatsFull HACK, disable stats in vp->intr_enable as well
  48.       as in the hardware.
  49.     - Increased the loop counter in issue_and_wait from 2,000 to 4,000.
  50.     LK1.1.5 28 April 2000, andrewm
  51.     - Added powerpc defines (John Daniel <jdaniel@etresoft.com> said these work...)
  52.     - Some extra diagnostics
  53.     - In vortex_error(), reset the Tx on maxCollisions.  Otherwise most
  54.       chips usually get a Tx timeout.
  55.     - Added extra_reset module parm
  56.     - Replaced some inline timer manip with mod_timer
  57.       (Franois romieu <Francois.Romieu@nic.fr>)
  58.     - In vortex_up(), don't make Wn3_config initialisation dependent upon has_nway
  59.       (this came across from 3c575_cb).
  60.     LK1.1.6 06 Jun 2000, andrewm
  61.     - Backed out the PPC defines.
  62.     - Use del_timer_sync(), mod_timer().
  63.     - Fix wrapped ulong comparison in boomerang_rx()
  64.     - Add IS_TORNADO, use it to suppress 3c905C checksum error msg
  65.       (Donald Becker, I Lee Hetherington <ilh@sls.lcs.mit.edu>)
  66.     - Replace union wn3_config with BFINS/BFEXT manipulation for
  67.       sparc64 (Pete Zaitcev, Peter Jones)
  68.     - In vortex_error, do_tx_reset and vortex_tx_timeout(Vortex):
  69.       do a netif_wake_queue() to better recover from errors. (Anders Pedersen,
  70.       Donald Becker)
  71.     - Print a warning on out-of-memory (rate limited to 1 per 10 secs)
  72.     - Added two more Cardbus 575 NICs: 5b57 and 6564 (Paul Wagland)
  73.     LK1.1.7 2 Jul 2000 andrewm
  74.     - Better handling of shared IRQs
  75.     - Reset the transmitter on a Tx reclaim error
  76.     - Fixed crash under OOM during vortex_open() (Mark Hemment)
  77.     - Fix Rx cessation problem during OOM (help from Mark Hemment)
  78.     - The spinlocks around the mdio access were blocking interrupts for 300uS.
  79.       Fix all this to use spin_lock_bh() within mdio_read/write
  80.     - Only write to TxFreeThreshold if it's a boomerang - other NICs don't
  81.       have one.
  82.     - Added 802.3x MAC-layer flow control support
  83.    LK1.1.8 13 Aug 2000 andrewm
  84.     - Ignore request_region() return value - already reserved if Cardbus.
  85.     - Merged some additional Cardbus flags from Don's 0.99Qk
  86.     - Some fixes for 3c556 (Fred Maciel)
  87.     - Fix for EISA initialisation (Jan Rekorajski)
  88.     - Renamed MII_XCVR_PWR and EEPROM_230 to align with 3c575_cb and D. Becker's drivers
  89.     - Fixed MII_XCVR_PWR for 3CCFE575CT
  90.     - Added INVERT_LED_PWR, used it.
  91.     - Backed out the extra_reset stuff
  92.    LK1.1.9 12 Sep 2000 andrewm
  93.     - Backed out the tx_reset_resume flags.  It was a no-op.
  94.     - In vortex_error, don't reset the Tx on txReclaim errors
  95.     - In vortex_error, don't reset the Tx on maxCollisions errors.
  96.       Hence backed out all the DownListPtr logic here.
  97.     - In vortex_error, give Tornado cards a partial TxReset on
  98.       maxCollisions (David Hinds).  Defined MAX_COLLISION_RESET for this.
  99.     - Redid some driver flags and device names based on pcmcia_cs-3.1.20.
  100.     - Fixed a bug where, if vp->tx_full is set when the interface
  101.       is downed, it remains set when the interface is upped.  Bad
  102.       things happen.
  103.    LK1.1.10 17 Sep 2000 andrewm
  104.     - Added EEPROM_8BIT for 3c555 (Fred Maciel)
  105.     - Added experimental support for the 3c556B Laptop Hurricane (Louis Gerbarg)
  106.     - Add HAS_NWAY to "3c900 Cyclone 10Mbps TPO"
  107.    LK1.1.11 13 Nov 2000 andrewm
  108.     - Dump MOD_INC/DEC_USE_COUNT, use SET_MODULE_OWNER
  109.    LK1.1.12 1 Jan 2001 andrewm (2.4.0-pre1)
  110.     - Call pci_enable_device before we request our IRQ (Tobias Ringstrom)
  111.     - Add 3c590 PCI latency timer hack to vortex_probe1 (from 0.99Ra)
  112.     - Added extended issue_and_wait for the 3c905CX.
  113.     - Look for an MII on PHY index 24 first (3c905CX oddity).
  114.     - Add HAS_NWAY to 3cSOHO100-TX (Brett Frankenberger)
  115.     - Don't free skbs we don't own on oom path in vortex_open().
  116.    LK1.1.13 27 Jan 2001
  117.     - Added explicit `medialock' flag so we can truly
  118.       lock the media type down with `options'.
  119.     - "check ioremap return and some tidbits" (Arnaldo Carvalho de Melo <acme@conectiva.com.br>)
  120.     - Added and used EEPROM_NORESET for 3c556B PM resumes.
  121.     - Fixed leakage of vp->rx_ring.
  122.     - Break out separate HAS_HWCKSM device capability flag.
  123.     - Kill vp->tx_full (ANK)
  124.     - Merge zerocopy fragment handling (ANK?)
  125.    LK1.1.14 15 Feb 2001
  126.     - Enable WOL.  Can be turned on with `enable_wol' module option.
  127.     - EISA and PCI initialisation fixes (jgarzik, Manfred Spraul)
  128.     - If a device's internalconfig register reports it has NWAY,
  129.       use it, even if autoselect is enabled.
  130.    LK1.1.15 6 June 2001 akpm
  131.     - Prevent double counting of received bytes (Lars Christensen)
  132.     - Add ethtool support (jgarzik)
  133.     - Add module parm descriptions (Andrzej M. Krzysztofowicz)
  134.     - Implemented alloc_etherdev() API
  135.     - Special-case the 'Tx error 82' message.
  136.    LK1.1.16 18 July 2001 akpm
  137.     - Make NETIF_F_SG dependent upon nr_free_highpages(), not on CONFIG_HIGHMEM
  138.     - Lessen verbosity of bootup messages
  139.     - Fix WOL - use new PM API functions.
  140.     - Use netif_running() instead of vp->open in suspend/resume.
  141.     - Don't reset the interface logic on open/close/rmmod.  It upsets
  142.       autonegotiation, and hence DHCP (from 0.99T).
  143.     - Back out EEPROM_NORESET flag because of the above (we do it for all
  144.       NICs).
  145.     - Correct 3c982 identification string
  146.     - Rename wait_for_completion() to issue_and_wait() to avoid completion.h
  147.       clash.
  148.     - See http://www.uow.edu.au/~andrewm/linux/#3c59x-2.3 for more details.
  149.     - Also see Documentation/networking/vortex.txt
  150. */
  151. /*
  152.  * FIXME: This driver _could_ support MTU changing, but doesn't.  See Don's hamachi.c implementation
  153.  * as well as other drivers
  154.  *
  155.  * NOTE: If you make 'vortex_debug' a constant (#define vortex_debug 0) the driver shrinks by 2k
  156.  * due to dead code elimination.  There will be some performance benefits from this due to
  157.  * elimination of all the tests and reduced cache footprint.
  158.  */
  159. #define DRV_NAME "3c59x"
  160. #define DRV_VERSION "LK1.1.16"
  161. #define DRV_RELDATE "19 July 2001"
  162. /* A few values that may be tweaked. */
  163. /* Keep the ring sizes a power of two for efficiency. */
  164. #define TX_RING_SIZE 16
  165. #define RX_RING_SIZE 32
  166. #define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer.*/
  167. /* "Knobs" that adjust features and parameters. */
  168. /* Set the copy breakpoint for the copy-only-tiny-frames scheme.
  169.    Setting to > 1512 effectively disables this feature. */
  170. #ifndef __arm__
  171. static const int rx_copybreak = 200;
  172. #else
  173. /* ARM systems perform better by disregarding the bus-master
  174.    transfer capability of these cards. -- rmk */
  175. static const int rx_copybreak = 1513;
  176. #endif
  177. /* Allow setting MTU to a larger size, bypassing the normal ethernet setup. */
  178. static const int mtu = 1500;
  179. /* Maximum events (Rx packets, etc.) to handle at each interrupt. */
  180. static int max_interrupt_work = 32;
  181. /* Tx timeout interval (millisecs) */
  182. static int watchdog = 5000;
  183. /* Allow aggregation of Tx interrupts.  Saves CPU load at the cost
  184.  * of possible Tx stalls if the system is blocking interrupts
  185.  * somewhere else.  Undefine this to disable.
  186.  */
  187. #define tx_interrupt_mitigation 1
  188. /* Put out somewhat more debugging messages. (0: no msg, 1 minimal .. 6). */
  189. #define vortex_debug debug
  190. #ifdef VORTEX_DEBUG
  191. static int vortex_debug = VORTEX_DEBUG;
  192. #else
  193. static int vortex_debug = 1;
  194. #endif
  195. #ifndef __OPTIMIZE__
  196. #error You must compile this file with the correct options!
  197. #error See the last lines of the source file.
  198. #error You must compile this driver with "-O".
  199. #endif
  200. #include <linux/config.h>
  201. #include <linux/module.h>
  202. #include <linux/kernel.h>
  203. #include <linux/sched.h>
  204. #include <linux/string.h>
  205. #include <linux/timer.h>
  206. #include <linux/errno.h>
  207. #include <linux/in.h>
  208. #include <linux/ioport.h>
  209. #include <linux/slab.h>
  210. #include <linux/interrupt.h>
  211. #include <linux/pci.h>
  212. #include <linux/mii.h>
  213. #include <linux/init.h>
  214. #include <linux/netdevice.h>
  215. #include <linux/etherdevice.h>
  216. #include <linux/skbuff.h>
  217. #include <linux/ethtool.h>
  218. #include <linux/highmem.h>
  219. #include <asm/irq.h> /* For NR_IRQS only. */
  220. #include <asm/bitops.h>
  221. #include <asm/io.h>
  222. #include <asm/uaccess.h>
  223. /* Kernel compatibility defines, some common to David Hinds' PCMCIA package.
  224.    This is only in the support-all-kernels source code. */
  225. #define RUN_AT(x) (jiffies + (x))
  226. #include <linux/delay.h>
  227. static char version[] __devinitdata =
  228. DRV_NAME ": Donald Becker and others. www.scyld.com/network/vortex.htmln";
  229. MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
  230. MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver "
  231. DRV_VERSION " " DRV_RELDATE);
  232. MODULE_LICENSE("GPL");
  233. MODULE_PARM(debug, "i");
  234. MODULE_PARM(options, "1-" __MODULE_STRING(8) "i");
  235. MODULE_PARM(full_duplex, "1-" __MODULE_STRING(8) "i");
  236. MODULE_PARM(hw_checksums, "1-" __MODULE_STRING(8) "i");
  237. MODULE_PARM(flow_ctrl, "1-" __MODULE_STRING(8) "i");
  238. MODULE_PARM(enable_wol, "1-" __MODULE_STRING(8) "i");
  239. MODULE_PARM(rx_copybreak, "i");
  240. MODULE_PARM(max_interrupt_work, "i");
  241. MODULE_PARM(compaq_ioaddr, "i");
  242. MODULE_PARM(compaq_irq, "i");
  243. MODULE_PARM(compaq_device_id, "i");
  244. MODULE_PARM(watchdog, "i");
  245. MODULE_PARM_DESC(debug, "3c59x debug level (0-6)");
  246. MODULE_PARM_DESC(options, "3c59x: Bits 0-3: media type, bit 4: bus mastering, bit 9: full duplex");
  247. MODULE_PARM_DESC(full_duplex, "3c59x full duplex setting(s) (1)");
  248. MODULE_PARM_DESC(hw_checksums, "3c59x Hardware checksum checking by adapter(s) (0-1)");
  249. MODULE_PARM_DESC(flow_ctrl, "3c59x 802.3x flow control usage (PAUSE only) (0-1)");
  250. MODULE_PARM_DESC(enable_wol, "3c59x: Turn on Wake-on-LAN for adapter(s) (0-1)");
  251. MODULE_PARM_DESC(rx_copybreak, "3c59x copy breakpoint for copy-only-tiny-frames");
  252. MODULE_PARM_DESC(max_interrupt_work, "3c59x maximum events handled per interrupt");
  253. MODULE_PARM_DESC(compaq_ioaddr, "3c59x PCI I/O base address (Compaq BIOS problem workaround)");
  254. MODULE_PARM_DESC(compaq_irq, "3c59x PCI IRQ number (Compaq BIOS problem workaround)");
  255. MODULE_PARM_DESC(compaq_device_id, "3c59x PCI device ID (Compaq BIOS problem workaround)");
  256. MODULE_PARM_DESC(watchdog, "3c59x transmit timeout in milliseconds");
  257. /* Operational parameter that usually are not changed. */
  258. /* The Vortex size is twice that of the original EtherLinkIII series: the
  259.    runtime register window, window 1, is now always mapped in.
  260.    The Boomerang size is twice as large as the Vortex -- it has additional
  261.    bus master control registers. */
  262. #define VORTEX_TOTAL_SIZE 0x20
  263. #define BOOMERANG_TOTAL_SIZE 0x40
  264. /* Set iff a MII transceiver on any interface requires mdio preamble.
  265.    This only set with the original DP83840 on older 3c905 boards, so the extra
  266.    code size of a per-interface flag is not worthwhile. */
  267. static char mii_preamble_required;
  268. #define PFX DRV_NAME ": "
  269. /*
  270. Theory of Operation
  271. I. Board Compatibility
  272. This device driver is designed for the 3Com FastEtherLink and FastEtherLink
  273. XL, 3Com's PCI to 10/100baseT adapters.  It also works with the 10Mbs
  274. versions of the FastEtherLink cards.  The supported product IDs are
  275.   3c590, 3c592, 3c595, 3c597, 3c900, 3c905
  276. The related ISA 3c515 is supported with a separate driver, 3c515.c, included
  277. with the kernel source or available from
  278.     cesdis.gsfc.nasa.gov:/pub/linux/drivers/3c515.html
  279. II. Board-specific settings
  280. PCI bus devices are configured by the system at boot time, so no jumpers
  281. need to be set on the board.  The system BIOS should be set to assign the
  282. PCI INTA signal to an otherwise unused system IRQ line.
  283. The EEPROM settings for media type and forced-full-duplex are observed.
  284. The EEPROM media type should be left at the default "autoselect" unless using
  285. 10base2 or AUI connections which cannot be reliably detected.
  286. III. Driver operation
  287. The 3c59x series use an interface that's very similar to the previous 3c5x9
  288. series.  The primary interface is two programmed-I/O FIFOs, with an
  289. alternate single-contiguous-region bus-master transfer (see next).
  290. The 3c900 "Boomerang" series uses a full-bus-master interface with separate
  291. lists of transmit and receive descriptors, similar to the AMD LANCE/PCnet,
  292. DEC Tulip and Intel Speedo3.  The first chip version retains a compatible
  293. programmed-I/O interface that has been removed in 'B' and subsequent board
  294. revisions.
  295. One extension that is advertised in a very large font is that the adapters
  296. are capable of being bus masters.  On the Vortex chip this capability was
  297. only for a single contiguous region making it far less useful than the full
  298. bus master capability.  There is a significant performance impact of taking
  299. an extra interrupt or polling for the completion of each transfer, as well
  300. as difficulty sharing the single transfer engine between the transmit and
  301. receive threads.  Using DMA transfers is a win only with large blocks or
  302. with the flawed versions of the Intel Orion motherboard PCI controller.
  303. The Boomerang chip's full-bus-master interface is useful, and has the
  304. currently-unused advantages over other similar chips that queued transmit
  305. packets may be reordered and receive buffer groups are associated with a
  306. single frame.
  307. With full-bus-master support, this driver uses a "RX_COPYBREAK" scheme.
  308. Rather than a fixed intermediate receive buffer, this scheme allocates
  309. full-sized skbuffs as receive buffers.  The value RX_COPYBREAK is used as
  310. the copying breakpoint: it is chosen to trade-off the memory wasted by
  311. passing the full-sized skbuff to the queue layer for all frames vs. the
  312. copying cost of copying a frame to a correctly-sized skbuff.
  313. IIIC. Synchronization
  314. The driver runs as two independent, single-threaded flows of control.  One
  315. is the send-packet routine, which enforces single-threaded use by the
  316. dev->tbusy flag.  The other thread is the interrupt handler, which is single
  317. threaded by the hardware and other software.
  318. IV. Notes
  319. Thanks to Cameron Spitzer and Terry Murphy of 3Com for providing development
  320. 3c590, 3c595, and 3c900 boards.
  321. The name "Vortex" is the internal 3Com project name for the PCI ASIC, and
  322. the EISA version is called "Demon".  According to Terry these names come
  323. from rides at the local amusement park.
  324. The new chips support both ethernet (1.5K) and FDDI (4.5K) packet sizes!
  325. This driver only supports ethernet packets because of the skbuff allocation
  326. limit of 4K.
  327. */
  328. /* This table drives the PCI probe routines.  It's mostly boilerplate in all
  329.    of the drivers, and will likely be provided by some future kernel.
  330. */
  331. enum pci_flags_bit {
  332. PCI_USES_IO=1, PCI_USES_MEM=2, PCI_USES_MASTER=4,
  333. PCI_ADDR0=0x10<<0, PCI_ADDR1=0x10<<1, PCI_ADDR2=0x10<<2, PCI_ADDR3=0x10<<3,
  334. };
  335. enum { IS_VORTEX=1, IS_BOOMERANG=2, IS_CYCLONE=4, IS_TORNADO=8,
  336. EEPROM_8BIT=0x10, /* AKPM: Uses 0x230 as the base bitmaps for EEPROM reads */
  337. HAS_PWR_CTRL=0x20, HAS_MII=0x40, HAS_NWAY=0x80, HAS_CB_FNS=0x100,
  338. INVERT_MII_PWR=0x200, INVERT_LED_PWR=0x400, MAX_COLLISION_RESET=0x800,
  339. EEPROM_OFFSET=0x1000, HAS_HWCKSM=0x2000 };
  340. enum vortex_chips {
  341. CH_3C590 = 0,
  342. CH_3C592,
  343. CH_3C597,
  344. CH_3C595_1,
  345. CH_3C595_2,
  346. CH_3C595_3,
  347. CH_3C900_1,
  348. CH_3C900_2,
  349. CH_3C900_3,
  350. CH_3C900_4,
  351. CH_3C900_5,
  352. CH_3C900B_FL,
  353. CH_3C905_1,
  354. CH_3C905_2,
  355. CH_3C905B_1,
  356. CH_3C905B_2,
  357. CH_3C905B_FX,
  358. CH_3C905C,
  359. CH_3C980,
  360. CH_3C9805,
  361. CH_3CSOHO100_TX,
  362. CH_3C555,
  363. CH_3C556,
  364. CH_3C556B,
  365. CH_3C575,
  366. CH_3C575_1,
  367. CH_3CCFE575,
  368. CH_3CCFE575CT,
  369. CH_3CCFE656,
  370. CH_3CCFEM656,
  371. CH_3CCFEM656_1,
  372. CH_3C450,
  373. };
  374. /* note: this array directly indexed by above enums, and MUST
  375.  * be kept in sync with both the enums above, and the PCI device
  376.  * table below
  377.  */
  378. static struct vortex_chip_info {
  379. const char *name;
  380. int flags;
  381. int drv_flags;
  382. int io_size;
  383. } vortex_info_tbl[] __devinitdata = {
  384. #define EISA_TBL_OFFSET 0 /* Offset of this entry for vortex_eisa_init */
  385. {"3c590 Vortex 10Mbps",
  386.  PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
  387. {"3c592 EISA 10Mbps Demon/Vortex", /* AKPM: from Don's 3c59x_cb.c 0.49H */
  388.  PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
  389. {"3c597 EISA Fast Demon/Vortex", /* AKPM: from Don's 3c59x_cb.c 0.49H */
  390.  PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
  391. {"3c595 Vortex 100baseTx",
  392.  PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
  393. {"3c595 Vortex 100baseT4",
  394.  PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
  395. {"3c595 Vortex 100base-MII",
  396.  PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
  397. {"3c900 Boomerang 10baseT",
  398.  PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG, 64, },
  399. {"3c900 Boomerang 10Mbps Combo",
  400.  PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG, 64, },
  401. {"3c900 Cyclone 10Mbps TPO", /* AKPM: from Don's 0.99M */
  402.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
  403. {"3c900 Cyclone 10Mbps Combo",
  404.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
  405. {"3c900 Cyclone 10Mbps TPC", /* AKPM: from Don's 0.99M */
  406.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
  407. {"3c900B-FL Cyclone 10base-FL",
  408.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
  409. {"3c905 Boomerang 100baseTx",
  410.  PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII, 64, },
  411. {"3c905 Boomerang 100baseT4",
  412.  PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII, 64, },
  413. {"3c905B Cyclone 100baseTx",
  414.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
  415. {"3c905B Cyclone 10/100/BNC",
  416.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
  417. {"3c905B-FX Cyclone 100baseFx",
  418.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
  419. {"3c905C Tornado",
  420.  PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, },
  421. {"3c980 Cyclone",
  422.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
  423. {"3c982 Dual Port Server Cyclone",
  424.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
  425. {"3cSOHO100-TX Hurricane",
  426.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
  427. {"3c555 Laptop Hurricane",
  428.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|EEPROM_8BIT|HAS_HWCKSM, 128, },
  429. {"3c556 Laptop Tornado",
  430.  PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|EEPROM_8BIT|HAS_CB_FNS|INVERT_MII_PWR|
  431. HAS_HWCKSM, 128, },
  432. {"3c556B Laptop Hurricane",
  433.  PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|EEPROM_OFFSET|HAS_CB_FNS|INVERT_MII_PWR|
  434. HAS_HWCKSM, 128, },
  435. {"3c575 [Megahertz] 10/100 LAN  CardBus",
  436. PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_8BIT, 128, },
  437. {"3c575 Boomerang CardBus",
  438.  PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_8BIT, 128, },
  439. {"3CCFE575BT Cyclone CardBus",
  440.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|
  441. INVERT_LED_PWR|HAS_HWCKSM, 128, },
  442. {"3CCFE575CT Tornado CardBus",
  443.  PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
  444. MAX_COLLISION_RESET|HAS_HWCKSM, 128, },
  445. {"3CCFE656 Cyclone CardBus",
  446.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
  447. INVERT_LED_PWR|HAS_HWCKSM, 128, },
  448. {"3CCFEM656B Cyclone+Winmodem CardBus",
  449.  PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
  450. INVERT_LED_PWR|HAS_HWCKSM, 128, },
  451. {"3CXFEM656C Tornado+Winmodem CardBus", /* From pcmcia-cs-3.1.5 */
  452.  PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
  453. MAX_COLLISION_RESET|HAS_HWCKSM, 128, },
  454. {"3c450 HomePNA Tornado", /* AKPM: from Don's 0.99Q */
  455.  PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, },
  456. {0,}, /* 0 terminated list. */
  457. };
  458. static struct pci_device_id vortex_pci_tbl[] __devinitdata = {
  459. { 0x10B7, 0x5900, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C590 },
  460. { 0x10B7, 0x5920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C592 },
  461. { 0x10B7, 0x5970, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C597 },
  462. { 0x10B7, 0x5950, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_1 },
  463. { 0x10B7, 0x5951, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_2 },
  464. { 0x10B7, 0x5952, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_3 },
  465. { 0x10B7, 0x9000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_1 },
  466. { 0x10B7, 0x9001, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_2 },
  467. { 0x10B7, 0x9004, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_3 },
  468. { 0x10B7, 0x9005, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_4 },
  469. { 0x10B7, 0x9006, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_5 },
  470. { 0x10B7, 0x900A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900B_FL },
  471. { 0x10B7, 0x9050, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905_1 },
  472. { 0x10B7, 0x9051, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905_2 },
  473. { 0x10B7, 0x9055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_1 },
  474. { 0x10B7, 0x9058, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_2 },
  475. { 0x10B7, 0x905A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_FX },
  476. { 0x10B7, 0x9200, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905C },
  477. { 0x10B7, 0x9800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C980 },
  478. { 0x10B7, 0x9805, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C9805 },
  479. { 0x10B7, 0x7646, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CSOHO100_TX },
  480. { 0x10B7, 0x5055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C555 },
  481. { 0x10B7, 0x6055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C556 },
  482. { 0x10B7, 0x6056, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C556B },
  483. { 0x10B7, 0x5b57, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C575 },
  484. { 0x10B7, 0x5057, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C575_1 },
  485. { 0x10B7, 0x5157, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE575 },
  486. { 0x10B7, 0x5257, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE575CT },
  487. { 0x10B7, 0x6560, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE656 },
  488. { 0x10B7, 0x6562, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFEM656 },
  489. { 0x10B7, 0x6564, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFEM656_1 },
  490. { 0x10B7, 0x4500, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C450 },
  491. {0,} /* 0 terminated list. */
  492. };
  493. MODULE_DEVICE_TABLE(pci, vortex_pci_tbl);
  494. /* Operational definitions.
  495.    These are not used by other compilation units and thus are not
  496.    exported in a ".h" file.
  497.    First the windows.  There are eight register windows, with the command
  498.    and status registers available in each.
  499.    */
  500. #define EL3WINDOW(win_num) outw(SelectWindow + (win_num), ioaddr + EL3_CMD)
  501. #define EL3_CMD 0x0e
  502. #define EL3_STATUS 0x0e
  503. /* The top five bits written to EL3_CMD are a command, the lower
  504.    11 bits are the parameter, if applicable.
  505.    Note that 11 parameters bits was fine for ethernet, but the new chip
  506.    can handle FDDI length frames (~4500 octets) and now parameters count
  507.    32-bit 'Dwords' rather than octets. */
  508. enum vortex_cmd {
  509. TotalReset = 0<<11, SelectWindow = 1<<11, StartCoax = 2<<11,
  510. RxDisable = 3<<11, RxEnable = 4<<11, RxReset = 5<<11,
  511. UpStall = 6<<11, UpUnstall = (6<<11)+1,
  512. DownStall = (6<<11)+2, DownUnstall = (6<<11)+3,
  513. RxDiscard = 8<<11, TxEnable = 9<<11, TxDisable = 10<<11, TxReset = 11<<11,
  514. FakeIntr = 12<<11, AckIntr = 13<<11, SetIntrEnb = 14<<11,
  515. SetStatusEnb = 15<<11, SetRxFilter = 16<<11, SetRxThreshold = 17<<11,
  516. SetTxThreshold = 18<<11, SetTxStart = 19<<11,
  517. StartDMAUp = 20<<11, StartDMADown = (20<<11)+1, StatsEnable = 21<<11,
  518. StatsDisable = 22<<11, StopCoax = 23<<11, SetFilterBit = 25<<11,};
  519. /* The SetRxFilter command accepts the following classes: */
  520. enum RxFilter {
  521. RxStation = 1, RxMulticast = 2, RxBroadcast = 4, RxProm = 8 };
  522. /* Bits in the general status register. */
  523. enum vortex_status {
  524. IntLatch = 0x0001, HostError = 0x0002, TxComplete = 0x0004,
  525. TxAvailable = 0x0008, RxComplete = 0x0010, RxEarly = 0x0020,
  526. IntReq = 0x0040, StatsFull = 0x0080,
  527. DMADone = 1<<8, DownComplete = 1<<9, UpComplete = 1<<10,
  528. DMAInProgress = 1<<11, /* DMA controller is still busy.*/
  529. CmdInProgress = 1<<12, /* EL3_CMD is still busy.*/
  530. };
  531. /* Register window 1 offsets, the window used in normal operation.
  532.    On the Vortex this window is always mapped at offsets 0x10-0x1f. */
  533. enum Window1 {
  534. TX_FIFO = 0x10,  RX_FIFO = 0x10,  RxErrors = 0x14,
  535. RxStatus = 0x18,  Timer=0x1A, TxStatus = 0x1B,
  536. TxFree = 0x1C, /* Remaining free bytes in Tx buffer. */
  537. };
  538. enum Window0 {
  539. Wn0EepromCmd = 10, /* Window 0: EEPROM command register. */
  540. Wn0EepromData = 12, /* Window 0: EEPROM results register. */
  541. IntrStatus=0x0E, /* Valid in all windows. */
  542. };
  543. enum Win0_EEPROM_bits {
  544. EEPROM_Read = 0x80, EEPROM_WRITE = 0x40, EEPROM_ERASE = 0xC0,
  545. EEPROM_EWENB = 0x30, /* Enable erasing/writing for 10 msec. */
  546. EEPROM_EWDIS = 0x00, /* Disable EWENB before 10 msec timeout. */
  547. };
  548. /* EEPROM locations. */
  549. enum eeprom_offset {
  550. PhysAddr01=0, PhysAddr23=1, PhysAddr45=2, ModelID=3,
  551. EtherLink3ID=7, IFXcvrIO=8, IRQLine=9,
  552. NodeAddr01=10, NodeAddr23=11, NodeAddr45=12,
  553. DriverTune=13, Checksum=15};
  554. enum Window2 { /* Window 2. */
  555. Wn2_ResetOptions=12,
  556. };
  557. enum Window3 { /* Window 3: MAC/config bits. */
  558. Wn3_Config=0, Wn3_MAC_Ctrl=6, Wn3_Options=8,
  559. };
  560. #define BFEXT(value, offset, bitcount)  
  561.     ((((unsigned long)(value)) >> (offset)) & ((1 << (bitcount)) - 1))
  562. #define BFINS(lhs, rhs, offset, bitcount)
  563. (((lhs) & ~((((1 << (bitcount)) - 1)) << (offset))) |
  564. (((rhs) & ((1 << (bitcount)) - 1)) << (offset)))
  565. #define RAM_SIZE(v) BFEXT(v, 0, 3)
  566. #define RAM_WIDTH(v) BFEXT(v, 3, 1)
  567. #define RAM_SPEED(v) BFEXT(v, 4, 2)
  568. #define ROM_SIZE(v) BFEXT(v, 6, 2)
  569. #define RAM_SPLIT(v) BFEXT(v, 16, 2)
  570. #define XCVR(v) BFEXT(v, 20, 4)
  571. #define AUTOSELECT(v) BFEXT(v, 24, 1)
  572. enum Window4 { /* Window 4: Xcvr/media bits. */
  573. Wn4_FIFODiag = 4, Wn4_NetDiag = 6, Wn4_PhysicalMgmt=8, Wn4_Media = 10,
  574. };
  575. enum Win4_Media_bits {
  576. Media_SQE = 0x0008, /* Enable SQE error counting for AUI. */
  577. Media_10TP = 0x00C0, /* Enable link beat and jabber for 10baseT. */
  578. Media_Lnk = 0x0080, /* Enable just link beat for 100TX/100FX. */
  579. Media_LnkBeat = 0x0800,
  580. };
  581. enum Window7 { /* Window 7: Bus Master control. */
  582. Wn7_MasterAddr = 0, Wn7_MasterLen = 6, Wn7_MasterStatus = 12,
  583. };
  584. /* Boomerang bus master control registers. */
  585. enum MasterCtrl {
  586. PktStatus = 0x20, DownListPtr = 0x24, FragAddr = 0x28, FragLen = 0x2c,
  587. TxFreeThreshold = 0x2f, UpPktStatus = 0x30, UpListPtr = 0x38,
  588. };
  589. /* The Rx and Tx descriptor lists.
  590.    Caution Alpha hackers: these types are 32 bits!  Note also the 8 byte
  591.    alignment contraint on tx_ring[] and rx_ring[]. */
  592. #define LAST_FRAG  0x80000000 /* Last Addr/Len pair in descriptor. */
  593. #define DN_COMPLETE 0x00010000 /* This packet has been downloaded */
  594. struct boom_rx_desc {
  595. u32 next; /* Last entry points to 0.   */
  596. s32 status;
  597. u32 addr; /* Up to 63 addr/len pairs possible. */
  598. s32 length; /* Set LAST_FRAG to indicate last pair. */
  599. };
  600. /* Values for the Rx status entry. */
  601. enum rx_desc_status {
  602. RxDComplete=0x00008000, RxDError=0x4000,
  603. /* See boomerang_rx() for actual error bits */
  604. IPChksumErr=1<<25, TCPChksumErr=1<<26, UDPChksumErr=1<<27,
  605. IPChksumValid=1<<29, TCPChksumValid=1<<30, UDPChksumValid=1<<31,
  606. };
  607. #ifdef MAX_SKB_FRAGS
  608. #define DO_ZEROCOPY 1
  609. #else
  610. #define DO_ZEROCOPY 0
  611. #endif
  612. struct boom_tx_desc {
  613. u32 next; /* Last entry points to 0.   */
  614. s32 status; /* bits 0:12 length, others see below.  */
  615. #if DO_ZEROCOPY
  616. struct {
  617. u32 addr;
  618. s32 length;
  619. } frag[1+MAX_SKB_FRAGS];
  620. #else
  621. u32 addr;
  622. s32 length;
  623. #endif
  624. };
  625. /* Values for the Tx status entry. */
  626. enum tx_desc_status {
  627. CRCDisable=0x2000, TxDComplete=0x8000,
  628. AddIPChksum=0x02000000, AddTCPChksum=0x04000000, AddUDPChksum=0x08000000,
  629. TxIntrUploaded=0x80000000, /* IRQ when in FIFO, but maybe not sent. */
  630. };
  631. /* Chip features we care about in vp->capabilities, read from the EEPROM. */
  632. enum ChipCaps { CapBusMaster=0x20, CapPwrMgmt=0x2000 };
  633. struct vortex_private {
  634. /* The Rx and Tx rings should be quad-word-aligned. */
  635. struct boom_rx_desc* rx_ring;
  636. struct boom_tx_desc* tx_ring;
  637. dma_addr_t rx_ring_dma;
  638. dma_addr_t tx_ring_dma;
  639. /* The addresses of transmit- and receive-in-place skbuffs. */
  640. struct sk_buff* rx_skbuff[RX_RING_SIZE];
  641. struct sk_buff* tx_skbuff[TX_RING_SIZE];
  642. struct net_device *next_module; /* NULL if PCI device */
  643. unsigned int cur_rx, cur_tx; /* The next free ring entry */
  644. unsigned int dirty_rx, dirty_tx; /* The ring entries to be free()ed. */
  645. struct net_device_stats stats;
  646. struct sk_buff *tx_skb; /* Packet being eaten by bus master ctrl.  */
  647. dma_addr_t tx_skb_dma; /* Allocated DMA address for bus master ctrl DMA.   */
  648. /* PCI configuration space information. */
  649. struct pci_dev *pdev;
  650. char *cb_fn_base; /* CardBus function status addr space. */
  651. /* Some values here only for performance evaluation and path-coverage */
  652. int rx_nocopy, rx_copy, queued_packet, rx_csumhits;
  653. int card_idx;
  654. /* The remainder are related to chip state, mostly media selection. */
  655. struct timer_list timer; /* Media selection timer. */
  656. struct timer_list rx_oom_timer; /* Rx skb allocation retry timer */
  657. int options; /* User-settable misc. driver options. */
  658. unsigned int media_override:4,  /* Passed-in media type. */
  659. default_media:4, /* Read from the EEPROM/Wn3_Config. */
  660. full_duplex:1, force_fd:1, autoselect:1,
  661. bus_master:1, /* Vortex can only do a fragment bus-m. */
  662. full_bus_master_tx:1, full_bus_master_rx:2, /* Boomerang  */
  663. flow_ctrl:1, /* Use 802.3x flow control (PAUSE only) */
  664. partner_flow_ctrl:1, /* Partner supports flow control */
  665. has_nway:1,
  666. enable_wol:1, /* Wake-on-LAN is enabled */
  667. pm_state_valid:1, /* power_state[] has sane contents */
  668. open:1,
  669. medialock:1,
  670. must_free_region:1; /* Flag: if zero, Cardbus owns the I/O region */
  671. int drv_flags;
  672. u16 status_enable;
  673. u16 intr_enable;
  674. u16 available_media; /* From Wn3_Options. */
  675. u16 capabilities, info1, info2; /* Various, from EEPROM. */
  676. u16 advertising; /* NWay media advertisement */
  677. unsigned char phys[2]; /* MII device addresses. */
  678. u16 deferred; /* Resend these interrupts when we
  679.  * bale from the ISR */
  680. u16 io_size; /* Size of PCI region (for release_region) */
  681. spinlock_t lock; /* Serialise access to device & its vortex_private */
  682. spinlock_t mdio_lock; /* Serialise access to mdio hardware */
  683. u32 power_state[16];
  684. };
  685. /* The action to take with a media selection timer tick.
  686.    Note that we deviate from the 3Com order by checking 10base2 before AUI.
  687.  */
  688. enum xcvr_types {
  689. XCVR_10baseT=0, XCVR_AUI, XCVR_10baseTOnly, XCVR_10base2, XCVR_100baseTx,
  690. XCVR_100baseFx, XCVR_MII=6, XCVR_NWAY=8, XCVR_ExtMII=9, XCVR_Default=10,
  691. };
  692. static struct media_table {
  693. char *name;
  694. unsigned int media_bits:16, /* Bits to set in Wn4_Media register. */
  695. mask:8, /* The transceiver-present bit in Wn3_Config.*/
  696. next:8; /* The media type to try next. */
  697. int wait; /* Time before we check media status. */
  698. } media_tbl[] = {
  699.   { "10baseT",   Media_10TP,0x08, XCVR_10base2, (14*HZ)/10},
  700.   { "10Mbs AUI", Media_SQE, 0x20, XCVR_Default, (1*HZ)/10},
  701.   { "undefined", 0, 0x80, XCVR_10baseT, 10000},
  702.   { "10base2",   0, 0x10, XCVR_AUI, (1*HZ)/10},
  703.   { "100baseTX", Media_Lnk, 0x02, XCVR_100baseFx, (14*HZ)/10},
  704.   { "100baseFX", Media_Lnk, 0x04, XCVR_MII, (14*HZ)/10},
  705.   { "MII",  0, 0x41, XCVR_10baseT, 3*HZ },
  706.   { "undefined", 0, 0x01, XCVR_10baseT, 10000},
  707.   { "Autonegotiate", 0, 0x41, XCVR_10baseT, 3*HZ},
  708.   { "MII-External",  0, 0x41, XCVR_10baseT, 3*HZ },
  709.   { "Default",  0, 0xFF, XCVR_10baseT, 10000},
  710. };
  711. static int vortex_probe1(struct pci_dev *pdev, long ioaddr, int irq,
  712.    int chip_idx, int card_idx);
  713. static void vortex_up(struct net_device *dev);
  714. static void vortex_down(struct net_device *dev);
  715. static int vortex_open(struct net_device *dev);
  716. static void mdio_sync(long ioaddr, int bits);
  717. static int mdio_read(struct net_device *dev, int phy_id, int location);
  718. static void mdio_write(struct net_device *vp, int phy_id, int location, int value);
  719. static void vortex_timer(unsigned long arg);
  720. static void rx_oom_timer(unsigned long arg);
  721. static int vortex_start_xmit(struct sk_buff *skb, struct net_device *dev);
  722. static int boomerang_start_xmit(struct sk_buff *skb, struct net_device *dev);
  723. static int vortex_rx(struct net_device *dev);
  724. static int boomerang_rx(struct net_device *dev);
  725. static void vortex_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  726. static void boomerang_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  727. static int vortex_close(struct net_device *dev);
  728. static void dump_tx_ring(struct net_device *dev);
  729. static void update_stats(long ioaddr, struct net_device *dev);
  730. static struct net_device_stats *vortex_get_stats(struct net_device *dev);
  731. static void set_rx_mode(struct net_device *dev);
  732. static int vortex_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  733. static void vortex_tx_timeout(struct net_device *dev);
  734. static void acpi_set_WOL(struct net_device *dev);
  735. /* This driver uses 'options' to pass the media type, full-duplex flag, etc. */
  736. /* Option count limit only -- unlimited interfaces are supported. */
  737. #define MAX_UNITS 8
  738. static int options[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1,};
  739. static int full_duplex[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  740. static int hw_checksums[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  741. static int flow_ctrl[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  742. static int enable_wol[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  743. /* #define dev_alloc_skb dev_alloc_skb_debug */
  744. /* A list of all installed Vortex EISA devices, for removing the driver module. */
  745. static struct net_device *root_vortex_eisa_dev;
  746. /* Variables to work-around the Compaq PCI BIOS32 problem. */
  747. static int compaq_ioaddr, compaq_irq, compaq_device_id = 0x5900;
  748. static int vortex_cards_found;
  749. #ifdef CONFIG_PM
  750. static int vortex_suspend (struct pci_dev *pdev, u32 state)
  751. {
  752. struct net_device *dev = pci_get_drvdata(pdev);
  753. if (dev && dev->priv) {
  754. if (netif_running(dev)) {
  755. netif_device_detach(dev);
  756. vortex_down(dev);
  757. }
  758. }
  759. return 0;
  760. }
  761. static int vortex_resume (struct pci_dev *pdev)
  762. {
  763. struct net_device *dev = pci_get_drvdata(pdev);
  764. if (dev && dev->priv) {
  765. if (netif_running(dev)) {
  766. vortex_up(dev);
  767. netif_device_attach(dev);
  768. }
  769. }
  770. return 0;
  771. }
  772. #endif /* CONFIG_PM */
  773. /* returns count found (>= 0), or negative on error */
  774. static int __init vortex_eisa_init (void)
  775. {
  776. long ioaddr;
  777. int rc;
  778. int orig_cards_found = vortex_cards_found;
  779. /* Now check all slots of the EISA bus. */
  780. if (!EISA_bus)
  781. return 0;
  782. for (ioaddr = 0x1000; ioaddr < 0x9000; ioaddr += 0x1000) {
  783. int device_id;
  784. if (request_region(ioaddr, VORTEX_TOTAL_SIZE, DRV_NAME) == NULL)
  785. continue;
  786. /* Check the standard EISA ID register for an encoded '3Com'. */
  787. if (inw(ioaddr + 0xC80) != 0x6d50) {
  788. release_region (ioaddr, VORTEX_TOTAL_SIZE);
  789. continue;
  790. }
  791. /* Check for a product that we support, 3c59{2,7} any rev. */
  792. device_id = (inb(ioaddr + 0xC82)<<8) + inb(ioaddr + 0xC83);
  793. if ((device_id & 0xFF00) != 0x5900) {
  794. release_region (ioaddr, VORTEX_TOTAL_SIZE);
  795. continue;
  796. }
  797. rc = vortex_probe1(NULL, ioaddr, inw(ioaddr + 0xC88) >> 12,
  798.    EISA_TBL_OFFSET, vortex_cards_found);
  799. if (rc == 0)
  800. vortex_cards_found++;
  801. else
  802. release_region (ioaddr, VORTEX_TOTAL_SIZE);
  803. }
  804. /* Special code to work-around the Compaq PCI BIOS32 problem. */
  805. if (compaq_ioaddr) {
  806. vortex_probe1(NULL, compaq_ioaddr, compaq_irq,
  807.   compaq_device_id, vortex_cards_found++);
  808. }
  809. return vortex_cards_found - orig_cards_found;
  810. }
  811. /* returns count (>= 0), or negative on error */
  812. static int __devinit vortex_init_one (struct pci_dev *pdev,
  813.       const struct pci_device_id *ent)
  814. {
  815. int rc;
  816. /* wake up and enable device */
  817. if (pci_enable_device (pdev)) {
  818. rc = -EIO;
  819. } else {
  820. rc = vortex_probe1 (pdev, pci_resource_start (pdev, 0), pdev->irq,
  821.     ent->driver_data, vortex_cards_found);
  822. if (rc == 0)
  823. vortex_cards_found++;
  824. }
  825. return rc;
  826. }
  827. /*
  828.  * Start up the PCI device which is described by *pdev.
  829.  * Return 0 on success.
  830.  *
  831.  * NOTE: pdev can be NULL, for the case of an EISA driver
  832.  */
  833. static int __devinit vortex_probe1(struct pci_dev *pdev,
  834.    long ioaddr, int irq,
  835.    int chip_idx, int card_idx)
  836. {
  837. struct vortex_private *vp;
  838. int option;
  839. unsigned int eeprom[0x40], checksum = 0; /* EEPROM contents */
  840. int i, step;
  841. struct net_device *dev;
  842. static int printed_version;
  843. int retval, print_info;
  844. struct vortex_chip_info * const vci = &vortex_info_tbl[chip_idx];
  845. char *print_name;
  846. if (!printed_version) {
  847. printk (version);
  848. printed_version = 1;
  849. }
  850. print_name = pdev ? pdev->slot_name : "3c59x";
  851. dev = alloc_etherdev(sizeof(*vp));
  852. retval = -ENOMEM;
  853. if (!dev) {
  854. printk (KERN_ERR PFX "unable to allocate etherdev, abortingn");
  855. goto out;
  856. }
  857. SET_MODULE_OWNER(dev);
  858. vp = dev->priv;
  859. /* The lower four bits are the media type. */
  860. if (dev->mem_start) {
  861. /*
  862.  * The 'options' param is passed in as the third arg to the
  863.  * LILO 'ether=' argument for non-modular use
  864.  */
  865. option = dev->mem_start;
  866. }
  867. else if (card_idx < MAX_UNITS)
  868. option = options[card_idx];
  869. else
  870. option = -1;
  871. if (option > 0) {
  872. if (option & 0x8000)
  873. vortex_debug = 7;
  874. if (option & 0x4000)
  875. vortex_debug = 2;
  876. if (option & 0x0400)
  877. vp->enable_wol = 1;
  878. }
  879. print_info = (vortex_debug > 1);
  880. if (print_info)
  881. printk (KERN_INFO "See Documentation/networking/vortex.txtn");
  882. printk(KERN_INFO "%s: 3Com %s %s at 0x%lx. Vers " DRV_VERSION "n",
  883.        print_name,
  884.        pdev ? "PCI" : "EISA",
  885.        vci->name,
  886.        ioaddr);
  887. dev->base_addr = ioaddr;
  888. dev->irq = irq;
  889. dev->mtu = mtu;
  890. vp->drv_flags = vci->drv_flags;
  891. vp->has_nway = (vci->drv_flags & HAS_NWAY) ? 1 : 0;
  892. vp->io_size = vci->io_size;
  893. vp->card_idx = card_idx;
  894. /* module list only for EISA devices */
  895. if (pdev == NULL) {
  896. vp->next_module = root_vortex_eisa_dev;
  897. root_vortex_eisa_dev = dev;
  898. }
  899. /* PCI-only startup logic */
  900. if (pdev) {
  901. /* EISA resources already marked, so only PCI needs to do this here */
  902. /* Ignore return value, because Cardbus drivers already allocate for us */
  903. if (request_region(ioaddr, vci->io_size, print_name) != NULL)
  904. vp->must_free_region = 1;
  905. /* enable bus-mastering if necessary */
  906. if (vci->flags & PCI_USES_MASTER)
  907. pci_set_master (pdev);
  908. if (vci->drv_flags & IS_VORTEX) {
  909. u8 pci_latency;
  910. u8 new_latency = 248;
  911. /* Check the PCI latency value.  On the 3c590 series the latency timer
  912.    must be set to the maximum value to avoid data corruption that occurs
  913.    when the timer expires during a transfer.  This bug exists the Vortex
  914.    chip only. */
  915. pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &pci_latency);
  916. if (pci_latency < new_latency) {
  917. printk(KERN_INFO "%s: Overriding PCI latency"
  918. " timer (CFLT) setting of %d, new value is %d.n",
  919. print_name, pci_latency, new_latency);
  920. pci_write_config_byte(pdev, PCI_LATENCY_TIMER, new_latency);
  921. }
  922. }
  923. }
  924. spin_lock_init(&vp->lock);
  925. spin_lock_init(&vp->mdio_lock);
  926. vp->pdev = pdev;
  927. /* Makes sure rings are at least 16 byte aligned. */
  928. vp->rx_ring = pci_alloc_consistent(pdev, sizeof(struct boom_rx_desc) * RX_RING_SIZE
  929.    + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
  930.    &vp->rx_ring_dma);
  931. retval = -ENOMEM;
  932. if (vp->rx_ring == 0)
  933. goto free_region;
  934. vp->tx_ring = (struct boom_tx_desc *)(vp->rx_ring + RX_RING_SIZE);
  935. vp->tx_ring_dma = vp->rx_ring_dma + sizeof(struct boom_rx_desc) * RX_RING_SIZE;
  936. /* if we are a PCI driver, we store info in pdev->driver_data
  937.  * instead of a module list */
  938. if (pdev)
  939. pci_set_drvdata(pdev, dev);
  940. vp->media_override = 7;
  941. if (option >= 0) {
  942. vp->media_override = ((option & 7) == 2)  ?  0  :  option & 15;
  943. if (vp->media_override != 7)
  944. vp->medialock = 1;
  945. vp->full_duplex = (option & 0x200) ? 1 : 0;
  946. vp->bus_master = (option & 16) ? 1 : 0;
  947. }
  948. if (card_idx < MAX_UNITS) {
  949. if (full_duplex[card_idx] > 0)
  950. vp->full_duplex = 1;
  951. if (flow_ctrl[card_idx] > 0)
  952. vp->flow_ctrl = 1;
  953. if (enable_wol[card_idx] > 0)
  954. vp->enable_wol = 1;
  955. }
  956. vp->force_fd = vp->full_duplex;
  957. vp->options = option;
  958. /* Read the station address from the EEPROM. */
  959. EL3WINDOW(0);
  960. {
  961. int base;
  962. if (vci->drv_flags & EEPROM_8BIT)
  963. base = 0x230;
  964. else if (vci->drv_flags & EEPROM_OFFSET)
  965. base = EEPROM_Read + 0x30;
  966. else
  967. base = EEPROM_Read;
  968. for (i = 0; i < 0x40; i++) {
  969. int timer;
  970. outw(base + i, ioaddr + Wn0EepromCmd);
  971. /* Pause for at least 162 us. for the read to take place. */
  972. for (timer = 10; timer >= 0; timer--) {
  973. udelay(162);
  974. if ((inw(ioaddr + Wn0EepromCmd) & 0x8000) == 0)
  975. break;
  976. }
  977. eeprom[i] = inw(ioaddr + Wn0EepromData);
  978. }
  979. }
  980. for (i = 0; i < 0x18; i++)
  981. checksum ^= eeprom[i];
  982. checksum = (checksum ^ (checksum >> 8)) & 0xff;
  983. if (checksum != 0x00) { /* Grrr, needless incompatible change 3Com. */
  984. while (i < 0x21)
  985. checksum ^= eeprom[i++];
  986. checksum = (checksum ^ (checksum >> 8)) & 0xff;
  987. }
  988. if ((checksum != 0x00) && !(vci->drv_flags & IS_TORNADO))
  989. printk(" ***INVALID CHECKSUM %4.4x*** ", checksum);
  990. for (i = 0; i < 3; i++)
  991. ((u16 *)dev->dev_addr)[i] = htons(eeprom[i + 10]);
  992. if (print_info) {
  993. for (i = 0; i < 6; i++)
  994. printk("%c%2.2x", i ? ':' : ' ', dev->dev_addr[i]);
  995. }
  996. EL3WINDOW(2);
  997. for (i = 0; i < 6; i++)
  998. outb(dev->dev_addr[i], ioaddr + i);
  999. #ifdef __sparc__
  1000. if (print_info)
  1001. printk(", IRQ %sn", __irq_itoa(dev->irq));
  1002. #else
  1003. if (print_info)
  1004. printk(", IRQ %dn", dev->irq);
  1005. /* Tell them about an invalid IRQ. */
  1006. if (dev->irq <= 0 || dev->irq >= NR_IRQS)
  1007. printk(KERN_WARNING " *** Warning: IRQ %d is unlikely to work! ***n",
  1008.    dev->irq);
  1009. #endif
  1010. EL3WINDOW(4);
  1011. step = (inb(ioaddr + Wn4_NetDiag) & 0x1e) >> 1;
  1012. if (print_info) {
  1013. printk(KERN_INFO "  product code %02x%02x rev %02x.%d date %02d-"
  1014. "%02d-%02dn", eeprom[6]&0xff, eeprom[6]>>8, eeprom[0x14],
  1015. step, (eeprom[4]>>5) & 15, eeprom[4] & 31, eeprom[4]>>9);
  1016. }
  1017. if (pdev && vci->drv_flags & HAS_CB_FNS) {
  1018. unsigned long fn_st_addr; /* Cardbus function status space */
  1019. unsigned short n;
  1020. fn_st_addr = pci_resource_start (pdev, 2);
  1021. if (fn_st_addr) {
  1022. vp->cb_fn_base = ioremap(fn_st_addr, 128);
  1023. retval = -ENOMEM;
  1024. if (!vp->cb_fn_base)
  1025. goto free_ring;
  1026. }
  1027. if (print_info) {
  1028. printk(KERN_INFO "%s: CardBus functions mapped %8.8lx->%pn",
  1029. print_name, fn_st_addr, vp->cb_fn_base);
  1030. }
  1031. EL3WINDOW(2);
  1032. n = inw(ioaddr + Wn2_ResetOptions) & ~0x4010;
  1033. if (vp->drv_flags & INVERT_LED_PWR)
  1034. n |= 0x10;
  1035. if (vp->drv_flags & INVERT_MII_PWR)
  1036. n |= 0x4000;
  1037. outw(n, ioaddr + Wn2_ResetOptions);
  1038. }
  1039. /* Extract our information from the EEPROM data. */
  1040. vp->info1 = eeprom[13];
  1041. vp->info2 = eeprom[15];
  1042. vp->capabilities = eeprom[16];
  1043. if (vp->info1 & 0x8000) {
  1044. vp->full_duplex = 1;
  1045. if (print_info)
  1046. printk(KERN_INFO "Full duplex capablen");
  1047. }
  1048. {
  1049. static const char * ram_split[] = {"5:3", "3:1", "1:1", "3:5"};
  1050. unsigned int config;
  1051. EL3WINDOW(3);
  1052. vp->available_media = inw(ioaddr + Wn3_Options);
  1053. if ((vp->available_media & 0xff) == 0) /* Broken 3c916 */
  1054. vp->available_media = 0x40;
  1055. config = inl(ioaddr + Wn3_Config);
  1056. if (print_info) {
  1057. printk(KERN_DEBUG "  Internal config register is %4.4x, "
  1058.    "transceivers %#x.n", config, inw(ioaddr + Wn3_Options));
  1059. printk(KERN_INFO "  %dK %s-wide RAM %s Rx:Tx split, %s%s interface.n",
  1060.    8 << RAM_SIZE(config),
  1061.    RAM_WIDTH(config) ? "word" : "byte",
  1062.    ram_split[RAM_SPLIT(config)],
  1063.    AUTOSELECT(config) ? "autoselect/" : "",
  1064.    XCVR(config) > XCVR_ExtMII ? "<invalid transceiver>" :
  1065.    media_tbl[XCVR(config)].name);
  1066. }
  1067. vp->default_media = XCVR(config);
  1068. if (vp->default_media == XCVR_NWAY)
  1069. vp->has_nway = 1;
  1070. vp->autoselect = AUTOSELECT(config);
  1071. }
  1072. if (vp->media_override != 7) {
  1073. printk(KERN_INFO "%s:  Media override to transceiver type %d (%s).n",
  1074. print_name, vp->media_override,
  1075. media_tbl[vp->media_override].name);
  1076. dev->if_port = vp->media_override;
  1077. } else
  1078. dev->if_port = vp->default_media;
  1079. if (dev->if_port == XCVR_MII || dev->if_port == XCVR_NWAY) {
  1080. int phy, phy_idx = 0;
  1081. EL3WINDOW(4);
  1082. mii_preamble_required++;
  1083. mii_preamble_required++;
  1084. mdio_read(dev, 24, 1);
  1085. for (phy = 0; phy < 32 && phy_idx < 1; phy++) {
  1086. int mii_status, phyx;
  1087. /*
  1088.  * For the 3c905CX we look at index 24 first, because it bogusly
  1089.  * reports an external PHY at all indices
  1090.  */
  1091. if (phy == 0)
  1092. phyx = 24;
  1093. else if (phy <= 24)
  1094. phyx = phy - 1;
  1095. else
  1096. phyx = phy;
  1097. mii_status = mdio_read(dev, phyx, 1);
  1098. if (mii_status  &&  mii_status != 0xffff) {
  1099. vp->phys[phy_idx++] = phyx;
  1100. if (print_info) {
  1101. printk(KERN_INFO "  MII transceiver found at address %d,"
  1102. " status %4x.n", phyx, mii_status);
  1103. }
  1104. if ((mii_status & 0x0040) == 0)
  1105. mii_preamble_required++;
  1106. }
  1107. }
  1108. mii_preamble_required--;
  1109. if (phy_idx == 0) {
  1110. printk(KERN_WARNING"  ***WARNING*** No MII transceivers found!n");
  1111. vp->phys[0] = 24;
  1112. } else {
  1113. vp->advertising = mdio_read(dev, vp->phys[0], 4);
  1114. if (vp->full_duplex) {
  1115. /* Only advertise the FD media types. */
  1116. vp->advertising &= ~0x02A0;
  1117. mdio_write(dev, vp->phys[0], 4, vp->advertising);
  1118. }
  1119. }
  1120. }
  1121. if (vp->capabilities & CapBusMaster) {
  1122. vp->full_bus_master_tx = 1;
  1123. if (print_info) {
  1124. printk(KERN_INFO "  Enabling bus-master transmits and %s receives.n",
  1125. (vp->info2 & 1) ? "early" : "whole-frame" );
  1126. }
  1127. vp->full_bus_master_rx = (vp->info2 & 1) ? 1 : 2;
  1128. vp->bus_master = 0; /* AKPM: vortex only */
  1129. }
  1130. /* The 3c59x-specific entries in the device structure. */
  1131. dev->open = vortex_open;
  1132. if (vp->full_bus_master_tx) {
  1133. dev->hard_start_xmit = boomerang_start_xmit;
  1134. /* Actually, it still should work with iommu. */
  1135. dev->features |= NETIF_F_SG;
  1136. if (((hw_checksums[card_idx] == -1) && (vp->drv_flags & HAS_HWCKSM)) ||
  1137. (hw_checksums[card_idx] == 1)) {
  1138. dev->features |= NETIF_F_IP_CSUM;
  1139. }
  1140. } else {
  1141. dev->hard_start_xmit = vortex_start_xmit;
  1142. }
  1143. if (print_info) {
  1144. printk(KERN_INFO "%s: scatter/gather %sabled. h/w checksums %sabledn",
  1145. print_name,
  1146. (dev->features & NETIF_F_SG) ? "en":"dis",
  1147. (dev->features & NETIF_F_IP_CSUM) ? "en":"dis");
  1148. }
  1149. dev->stop = vortex_close;
  1150. dev->get_stats = vortex_get_stats;
  1151. dev->do_ioctl = vortex_ioctl;
  1152. dev->set_multicast_list = set_rx_mode;
  1153. dev->tx_timeout = vortex_tx_timeout;
  1154. dev->watchdog_timeo = (watchdog * HZ) / 1000;
  1155. if (pdev && vp->enable_wol) {
  1156. vp->pm_state_valid = 1;
  1157.   pci_save_state(vp->pdev, vp->power_state);
  1158.   acpi_set_WOL(dev);
  1159. }
  1160. retval = register_netdev(dev);
  1161. if (retval == 0)
  1162. return 0;
  1163. free_ring:
  1164. pci_free_consistent(pdev,
  1165. sizeof(struct boom_rx_desc) * RX_RING_SIZE
  1166. + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
  1167. vp->rx_ring,
  1168. vp->rx_ring_dma);
  1169. free_region:
  1170. if (vp->must_free_region)
  1171. release_region(ioaddr, vci->io_size);
  1172. kfree (dev);
  1173. printk(KERN_ERR PFX "vortex_probe1 fails.  Returns %dn", retval);
  1174. out:
  1175. return retval;
  1176. }
  1177. static void
  1178. issue_and_wait(struct net_device *dev, int cmd)
  1179. {
  1180. int i;
  1181. outw(cmd, dev->base_addr + EL3_CMD);
  1182. for (i = 0; i < 2000; i++) {
  1183. if (!(inw(dev->base_addr + EL3_STATUS) & CmdInProgress))
  1184. return;
  1185. }
  1186. /* OK, that didn't work.  Do it the slow way.  One second */
  1187. for (i = 0; i < 100000; i++) {
  1188. if (!(inw(dev->base_addr + EL3_STATUS) & CmdInProgress)) {
  1189. if (vortex_debug > 1)
  1190. printk(KERN_INFO "%s: command 0x%04x took %d usecsn",
  1191.    dev->name, cmd, i * 10);
  1192. return;
  1193. }
  1194. udelay(10);
  1195. }
  1196. printk(KERN_ERR "%s: command 0x%04x did not complete! Status=0x%xn",
  1197.    dev->name, cmd, inw(dev->base_addr + EL3_STATUS));
  1198. }
  1199. static void
  1200. vortex_up(struct net_device *dev)
  1201. {
  1202. long ioaddr = dev->base_addr;
  1203. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1204. unsigned int config;
  1205. int i;
  1206. if (vp->pdev && vp->enable_wol) {
  1207. pci_set_power_state(vp->pdev, 0); /* Go active */
  1208. pci_restore_state(vp->pdev, vp->power_state);
  1209. }
  1210. /* Before initializing select the active media port. */
  1211. EL3WINDOW(3);
  1212. config = inl(ioaddr + Wn3_Config);
  1213. if (vp->media_override != 7) {
  1214. printk(KERN_INFO "%s: Media override to transceiver %d (%s).n",
  1215.    dev->name, vp->media_override,
  1216.    media_tbl[vp->media_override].name);
  1217. dev->if_port = vp->media_override;
  1218. } else if (vp->autoselect) {
  1219. if (vp->has_nway) {
  1220. if (vortex_debug > 1)
  1221. printk(KERN_INFO "%s: using NWAY device table, not %dn",
  1222. dev->name, dev->if_port);
  1223. dev->if_port = XCVR_NWAY;
  1224. } else {
  1225. /* Find first available media type, starting with 100baseTx. */
  1226. dev->if_port = XCVR_100baseTx;
  1227. while (! (vp->available_media & media_tbl[dev->if_port].mask))
  1228. dev->if_port = media_tbl[dev->if_port].next;
  1229. if (vortex_debug > 1)
  1230. printk(KERN_INFO "%s: first available media type: %sn",
  1231. dev->name, media_tbl[dev->if_port].name);
  1232. }
  1233. } else {
  1234. dev->if_port = vp->default_media;
  1235. if (vortex_debug > 1)
  1236. printk(KERN_INFO "%s: using default media %sn",
  1237. dev->name, media_tbl[dev->if_port].name);
  1238. }
  1239. init_timer(&vp->timer);
  1240. vp->timer.expires = RUN_AT(media_tbl[dev->if_port].wait);
  1241. vp->timer.data = (unsigned long)dev;
  1242. vp->timer.function = vortex_timer; /* timer handler */
  1243. add_timer(&vp->timer);
  1244. init_timer(&vp->rx_oom_timer);
  1245. vp->rx_oom_timer.data = (unsigned long)dev;
  1246. vp->rx_oom_timer.function = rx_oom_timer;
  1247. if (vortex_debug > 1)
  1248. printk(KERN_DEBUG "%s: Initial media type %s.n",
  1249.    dev->name, media_tbl[dev->if_port].name);
  1250. vp->full_duplex = vp->force_fd;
  1251. config = BFINS(config, dev->if_port, 20, 4);
  1252. if (vortex_debug > 6)
  1253. printk(KERN_DEBUG "vortex_up(): writing 0x%x to InternalConfign", config);
  1254. outl(config, ioaddr + Wn3_Config);
  1255. if (dev->if_port == XCVR_MII || dev->if_port == XCVR_NWAY) {
  1256. int mii_reg1, mii_reg5;
  1257. EL3WINDOW(4);
  1258. /* Read BMSR (reg1) only to clear old status. */
  1259. mii_reg1 = mdio_read(dev, vp->phys[0], 1);
  1260. mii_reg5 = mdio_read(dev, vp->phys[0], 5);
  1261. if (mii_reg5 == 0xffff  ||  mii_reg5 == 0x0000)
  1262. ; /* No MII device or no link partner report */
  1263. else if ((mii_reg5 & 0x0100) != 0 /* 100baseTx-FD */
  1264.  || (mii_reg5 & 0x00C0) == 0x0040) /* 10T-FD, but not 100-HD */
  1265. vp->full_duplex = 1;
  1266. vp->partner_flow_ctrl = ((mii_reg5 & 0x0400) != 0);
  1267. if (vortex_debug > 1)
  1268. printk(KERN_INFO "%s: MII #%d status %4.4x, link partner capability %4.4x,"
  1269.    " info1 %04x, setting %s-duplex.n",
  1270. dev->name, vp->phys[0],
  1271. mii_reg1, mii_reg5,
  1272. vp->info1, ((vp->info1 & 0x8000) || vp->full_duplex) ? "full" : "half");
  1273. EL3WINDOW(3);
  1274. }
  1275. /* Set the full-duplex bit. */
  1276. outw( ((vp->info1 & 0x8000) || vp->full_duplex ? 0x20 : 0) |
  1277.   (dev->mtu > 1500 ? 0x40 : 0) |
  1278. ((vp->full_duplex && vp->flow_ctrl && vp->partner_flow_ctrl) ? 0x100 : 0),
  1279. ioaddr + Wn3_MAC_Ctrl);
  1280. if (vortex_debug > 1) {
  1281. printk(KERN_DEBUG "%s: vortex_up() InternalConfig %8.8x.n",
  1282. dev->name, config);
  1283. }
  1284. issue_and_wait(dev, TxReset);
  1285. /*
  1286.  * Don't reset the PHY - that upsets autonegotiation during DHCP operations.
  1287.  */
  1288. issue_and_wait(dev, RxReset|0x04);
  1289. outw(SetStatusEnb | 0x00, ioaddr + EL3_CMD);
  1290. if (vortex_debug > 1) {
  1291. EL3WINDOW(4);
  1292. printk(KERN_DEBUG "%s: vortex_up() irq %d media status %4.4x.n",
  1293.    dev->name, dev->irq, inw(ioaddr + Wn4_Media));
  1294. }
  1295. /* Set the station address and mask in window 2 each time opened. */
  1296. EL3WINDOW(2);
  1297. for (i = 0; i < 6; i++)
  1298. outb(dev->dev_addr[i], ioaddr + i);
  1299. for (; i < 12; i+=2)
  1300. outw(0, ioaddr + i);
  1301. if (vp->cb_fn_base) {
  1302. unsigned short n = inw(ioaddr + Wn2_ResetOptions) & ~0x4010;
  1303. if (vp->drv_flags & INVERT_LED_PWR)
  1304. n |= 0x10;
  1305. if (vp->drv_flags & INVERT_MII_PWR)
  1306. n |= 0x4000;
  1307. outw(n, ioaddr + Wn2_ResetOptions);
  1308. }
  1309. if (dev->if_port == XCVR_10base2)
  1310. /* Start the thinnet transceiver. We should really wait 50ms...*/
  1311. outw(StartCoax, ioaddr + EL3_CMD);
  1312. if (dev->if_port != XCVR_NWAY) {
  1313. EL3WINDOW(4);
  1314. outw((inw(ioaddr + Wn4_Media) & ~(Media_10TP|Media_SQE)) |
  1315.  media_tbl[dev->if_port].media_bits, ioaddr + Wn4_Media);
  1316. }
  1317. /* Switch to the stats window, and clear all stats by reading. */
  1318. outw(StatsDisable, ioaddr + EL3_CMD);
  1319. EL3WINDOW(6);
  1320. for (i = 0; i < 10; i++)
  1321. inb(ioaddr + i);
  1322. inw(ioaddr + 10);
  1323. inw(ioaddr + 12);
  1324. /* New: On the Vortex we must also clear the BadSSD counter. */
  1325. EL3WINDOW(4);
  1326. inb(ioaddr + 12);
  1327. /* ..and on the Boomerang we enable the extra statistics bits. */
  1328. outw(0x0040, ioaddr + Wn4_NetDiag);
  1329. /* Switch to register set 7 for normal use. */
  1330. EL3WINDOW(7);
  1331. if (vp->full_bus_master_rx) { /* Boomerang bus master. */
  1332. vp->cur_rx = vp->dirty_rx = 0;
  1333. /* Initialize the RxEarly register as recommended. */
  1334. outw(SetRxThreshold + (1536>>2), ioaddr + EL3_CMD);
  1335. outl(0x0020, ioaddr + PktStatus);
  1336. outl(vp->rx_ring_dma, ioaddr + UpListPtr);
  1337. }
  1338. if (vp->full_bus_master_tx) {  /* Boomerang bus master Tx. */
  1339. vp->cur_tx = vp->dirty_tx = 0;
  1340. if (vp->drv_flags & IS_BOOMERANG)
  1341. outb(PKT_BUF_SZ>>8, ioaddr + TxFreeThreshold); /* Room for a packet. */
  1342. /* Clear the Rx, Tx rings. */
  1343. for (i = 0; i < RX_RING_SIZE; i++) /* AKPM: this is done in vortex_open, too */
  1344. vp->rx_ring[i].status = 0;
  1345. for (i = 0; i < TX_RING_SIZE; i++)
  1346. vp->tx_skbuff[i] = 0;
  1347. outl(0, ioaddr + DownListPtr);
  1348. }
  1349. /* Set receiver mode: presumably accept b-case and phys addr only. */
  1350. set_rx_mode(dev);
  1351. outw(StatsEnable, ioaddr + EL3_CMD); /* Turn on statistics. */
  1352. // issue_and_wait(dev, SetTxStart|0x07ff);
  1353. outw(RxEnable, ioaddr + EL3_CMD); /* Enable the receiver. */
  1354. outw(TxEnable, ioaddr + EL3_CMD); /* Enable transmitter. */
  1355. /* Allow status bits to be seen. */
  1356. vp->status_enable = SetStatusEnb | HostError|IntReq|StatsFull|TxComplete|
  1357. (vp->full_bus_master_tx ? DownComplete : TxAvailable) |
  1358. (vp->full_bus_master_rx ? UpComplete : RxComplete) |
  1359. (vp->bus_master ? DMADone : 0);
  1360. vp->intr_enable = SetIntrEnb | IntLatch | TxAvailable |
  1361. (vp->full_bus_master_rx ? 0 : RxComplete) |
  1362. StatsFull | HostError | TxComplete | IntReq
  1363. | (vp->bus_master ? DMADone : 0) | UpComplete | DownComplete;
  1364. outw(vp->status_enable, ioaddr + EL3_CMD);
  1365. /* Ack all pending events, and set active indicator mask. */
  1366. outw(AckIntr | IntLatch | TxAvailable | RxEarly | IntReq,
  1367.  ioaddr + EL3_CMD);
  1368. outw(vp->intr_enable, ioaddr + EL3_CMD);
  1369. if (vp->cb_fn_base) /* The PCMCIA people are idiots.  */
  1370. writel(0x8000, vp->cb_fn_base + 4);
  1371. netif_start_queue (dev);
  1372. }
  1373. static int
  1374. vortex_open(struct net_device *dev)
  1375. {
  1376. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1377. int i;
  1378. int retval;
  1379. /* Use the now-standard shared IRQ implementation. */
  1380. if ((retval = request_irq(dev->irq, vp->full_bus_master_rx ?
  1381. &boomerang_interrupt : &vortex_interrupt, SA_SHIRQ, dev->name, dev))) {
  1382. printk(KERN_ERR "%s: Could not reserve IRQ %dn", dev->name, dev->irq);
  1383. goto out;
  1384. }
  1385. if (vp->full_bus_master_rx) { /* Boomerang bus master. */
  1386. if (vortex_debug > 2)
  1387. printk(KERN_DEBUG "%s:  Filling in the Rx ring.n", dev->name);
  1388. for (i = 0; i < RX_RING_SIZE; i++) {
  1389. struct sk_buff *skb;
  1390. vp->rx_ring[i].next = cpu_to_le32(vp->rx_ring_dma + sizeof(struct boom_rx_desc) * (i+1));
  1391. vp->rx_ring[i].status = 0; /* Clear complete bit. */
  1392. vp->rx_ring[i].length = cpu_to_le32(PKT_BUF_SZ | LAST_FRAG);
  1393. skb = dev_alloc_skb(PKT_BUF_SZ);
  1394. vp->rx_skbuff[i] = skb;
  1395. if (skb == NULL)
  1396. break; /* Bad news!  */
  1397. skb->dev = dev; /* Mark as being used by this device. */
  1398. skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
  1399. vp->rx_ring[i].addr = cpu_to_le32(pci_map_single(vp->pdev, skb->tail, PKT_BUF_SZ, PCI_DMA_FROMDEVICE));
  1400. }
  1401. if (i != RX_RING_SIZE) {
  1402. int j;
  1403. printk(KERN_EMERG "%s: no memory for rx ringn", dev->name);
  1404. for (j = 0; j < i; j++) {
  1405. if (vp->rx_skbuff[j]) {
  1406. dev_kfree_skb(vp->rx_skbuff[j]);
  1407. vp->rx_skbuff[j] = 0;
  1408. }
  1409. }
  1410. retval = -ENOMEM;
  1411. goto out_free_irq;
  1412. }
  1413. /* Wrap the ring. */
  1414. vp->rx_ring[i-1].next = cpu_to_le32(vp->rx_ring_dma);
  1415. }
  1416. vortex_up(dev);
  1417. return 0;
  1418. out_free_irq:
  1419. free_irq(dev->irq, dev);
  1420. out:
  1421. if (vortex_debug > 1)
  1422. printk(KERN_ERR "%s: vortex_open() fails: returning %dn", dev->name, retval);
  1423. return retval;
  1424. }
  1425. static void
  1426. vortex_timer(unsigned long data)
  1427. {
  1428. struct net_device *dev = (struct net_device *)data;
  1429. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1430. long ioaddr = dev->base_addr;
  1431. int next_tick = 60*HZ;
  1432. int ok = 0;
  1433. int media_status, mii_status, old_window;
  1434. if (vortex_debug > 2) {
  1435. printk(KERN_DEBUG "%s: Media selection timer tick happened, %s.n",
  1436.    dev->name, media_tbl[dev->if_port].name);
  1437. printk(KERN_DEBUG "dev->watchdog_timeo=%dn", dev->watchdog_timeo);
  1438. }
  1439. if (vp->medialock)
  1440. goto leave_media_alone;
  1441. disable_irq(dev->irq);
  1442. old_window = inw(ioaddr + EL3_CMD) >> 13;
  1443. EL3WINDOW(4);
  1444. media_status = inw(ioaddr + Wn4_Media);
  1445. switch (dev->if_port) {
  1446. case XCVR_10baseT:  case XCVR_100baseTx:  case XCVR_100baseFx:
  1447. if (media_status & Media_LnkBeat) {
  1448. ok = 1;
  1449. if (vortex_debug > 1)
  1450. printk(KERN_DEBUG "%s: Media %s has link beat, %x.n",
  1451.    dev->name, media_tbl[dev->if_port].name, media_status);
  1452. } else if (vortex_debug > 1)
  1453. printk(KERN_DEBUG "%s: Media %s has no link beat, %x.n",
  1454.    dev->name, media_tbl[dev->if_port].name, media_status);
  1455. break;
  1456. case XCVR_MII: case XCVR_NWAY:
  1457. {
  1458. mii_status = mdio_read(dev, vp->phys[0], 1);
  1459. ok = 1;
  1460. if (vortex_debug > 2)
  1461. printk(KERN_DEBUG "%s: MII transceiver has status %4.4x.n",
  1462. dev->name, mii_status);
  1463. if (mii_status & 0x0004) {
  1464. int mii_reg5 = mdio_read(dev, vp->phys[0], 5);
  1465. if (! vp->force_fd  &&  mii_reg5 != 0xffff) {
  1466. int duplex = (mii_reg5&0x0100) ||
  1467. (mii_reg5 & 0x01C0) == 0x0040;
  1468. if (vp->full_duplex != duplex) {
  1469. vp->full_duplex = duplex;
  1470. printk(KERN_INFO "%s: Setting %s-duplex based on MII "
  1471. "#%d link partner capability of %4.4x.n",
  1472. dev->name, vp->full_duplex ? "full" : "half",
  1473. vp->phys[0], mii_reg5);
  1474. /* Set the full-duplex bit. */
  1475. EL3WINDOW(3);
  1476. outw( (vp->full_duplex ? 0x20 : 0) |
  1477. (dev->mtu > 1500 ? 0x40 : 0) |
  1478. ((vp->full_duplex && vp->flow_ctrl && vp->partner_flow_ctrl) ? 0x100 : 0),
  1479. ioaddr + Wn3_MAC_Ctrl);
  1480. if (vortex_debug > 1)
  1481. printk(KERN_DEBUG "Setting duplex in Wn3_MAC_Ctrln");
  1482. /* AKPM: bug: should reset Tx and Rx after setting Duplex.  Page 180 */
  1483. }
  1484. }
  1485. }
  1486. }
  1487. break;
  1488.   default: /* Other media types handled by Tx timeouts. */
  1489. if (vortex_debug > 1)
  1490.   printk(KERN_DEBUG "%s: Media %s has no indication, %x.n",
  1491.  dev->name, media_tbl[dev->if_port].name, media_status);
  1492. ok = 1;
  1493. }
  1494. if ( ! ok) {
  1495. unsigned int config;
  1496. do {
  1497. dev->if_port = media_tbl[dev->if_port].next;
  1498. } while ( ! (vp->available_media & media_tbl[dev->if_port].mask));
  1499. if (dev->if_port == XCVR_Default) { /* Go back to default. */
  1500.   dev->if_port = vp->default_media;
  1501.   if (vortex_debug > 1)
  1502. printk(KERN_DEBUG "%s: Media selection failing, using default "
  1503.    "%s port.n",
  1504.    dev->name, media_tbl[dev->if_port].name);
  1505. } else {
  1506. if (vortex_debug > 1)
  1507. printk(KERN_DEBUG "%s: Media selection failed, now trying "
  1508.    "%s port.n",
  1509.    dev->name, media_tbl[dev->if_port].name);
  1510. next_tick = media_tbl[dev->if_port].wait;
  1511. }
  1512. outw((media_status & ~(Media_10TP|Media_SQE)) |
  1513.  media_tbl[dev->if_port].media_bits, ioaddr + Wn4_Media);
  1514. EL3WINDOW(3);
  1515. config = inl(ioaddr + Wn3_Config);
  1516. config = BFINS(config, dev->if_port, 20, 4);
  1517. outl(config, ioaddr + Wn3_Config);
  1518. outw(dev->if_port == XCVR_10base2 ? StartCoax : StopCoax,
  1519.  ioaddr + EL3_CMD);
  1520. if (vortex_debug > 1)
  1521. printk(KERN_DEBUG "wrote 0x%08x to Wn3_Confign", config);
  1522. /* AKPM: FIXME: Should reset Rx & Tx here.  P60 of 3c90xc.pdf */
  1523. }
  1524. EL3WINDOW(old_window);
  1525. enable_irq(dev->irq);
  1526. leave_media_alone:
  1527. if (vortex_debug > 2)
  1528.   printk(KERN_DEBUG "%s: Media selection timer finished, %s.n",
  1529.  dev->name, media_tbl[dev->if_port].name);
  1530. mod_timer(&vp->timer, RUN_AT(next_tick));
  1531. if (vp->deferred)
  1532. outw(FakeIntr, ioaddr + EL3_CMD);
  1533. return;
  1534. }
  1535. static void vortex_tx_timeout(struct net_device *dev)
  1536. {
  1537. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1538. long ioaddr = dev->base_addr;
  1539. printk(KERN_ERR "%s: transmit timed out, tx_status %2.2x status %4.4x.n",
  1540.    dev->name, inb(ioaddr + TxStatus),
  1541.    inw(ioaddr + EL3_STATUS));
  1542. EL3WINDOW(4);
  1543. printk(KERN_ERR "  diagnostics: net %04x media %04x dma %8.8x.n",
  1544.    inw(ioaddr + Wn4_NetDiag), inw(ioaddr + Wn4_Media),
  1545.    inl(ioaddr + PktStatus));
  1546. /* Slight code bloat to be user friendly. */
  1547. if ((inb(ioaddr + TxStatus) & 0x88) == 0x88)
  1548. printk(KERN_ERR "%s: Transmitter encountered 16 collisions --"
  1549.    " network cable problem?n", dev->name);
  1550. if (inw(ioaddr + EL3_STATUS) & IntLatch) {
  1551. printk(KERN_ERR "%s: Interrupt posted but not delivered --"
  1552.    " IRQ blocked by another device?n", dev->name);
  1553. /* Bad idea here.. but we might as well handle a few events. */
  1554. {
  1555. /*
  1556.  * Block interrupts because vortex_interrupt does a bare spin_lock()
  1557.  */
  1558. unsigned long flags;
  1559. local_irq_save(flags);
  1560. if (vp->full_bus_master_tx)
  1561. boomerang_interrupt(dev->irq, dev, 0);
  1562. else
  1563. vortex_interrupt(dev->irq, dev, 0);
  1564. local_irq_restore(flags);
  1565. }
  1566. }
  1567. if (vortex_debug > 0)
  1568. dump_tx_ring(dev);
  1569. issue_and_wait(dev, TxReset);
  1570. vp->stats.tx_errors++;
  1571. if (vp->full_bus_master_tx) {
  1572. printk(KERN_DEBUG "%s: Resetting the Tx ring pointer.n", dev->name);
  1573. if (vp->cur_tx - vp->dirty_tx > 0  &&  inl(ioaddr + DownListPtr) == 0)
  1574. outl(vp->tx_ring_dma + (vp->dirty_tx % TX_RING_SIZE) * sizeof(struct boom_tx_desc),
  1575.  ioaddr + DownListPtr);
  1576. if (vp->cur_tx - vp->dirty_tx < TX_RING_SIZE)
  1577. netif_wake_queue (dev);
  1578. if (vp->drv_flags & IS_BOOMERANG)
  1579. outb(PKT_BUF_SZ>>8, ioaddr + TxFreeThreshold);
  1580. outw(DownUnstall, ioaddr + EL3_CMD);
  1581. } else {
  1582. vp->stats.tx_dropped++;
  1583. netif_wake_queue(dev);
  1584. }
  1585. /* Issue Tx Enable */
  1586. outw(TxEnable, ioaddr + EL3_CMD);
  1587. dev->trans_start = jiffies;
  1588. /* Switch to register set 7 for normal use. */
  1589. EL3WINDOW(7);
  1590. }
  1591. /*
  1592.  * Handle uncommon interrupt sources.  This is a separate routine to minimize
  1593.  * the cache impact.
  1594.  */
  1595. static void
  1596. vortex_error(struct net_device *dev, int status)
  1597. {
  1598. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1599. long ioaddr = dev->base_addr;
  1600. int do_tx_reset = 0, reset_mask = 0;
  1601. unsigned char tx_status = 0;
  1602. if (vortex_debug > 2) {
  1603. printk(KERN_ERR "%s: vortex_error(), status=0x%xn", dev->name, status);
  1604. }
  1605. if (status & TxComplete) { /* Really "TxError" for us. */
  1606. tx_status = inb(ioaddr + TxStatus);
  1607. /* Presumably a tx-timeout. We must merely re-enable. */
  1608. if (vortex_debug > 2
  1609. || (tx_status != 0x88 && vortex_debug > 0)) {
  1610. printk(KERN_ERR "%s: Transmit error, Tx status register %2.2x.n",
  1611.    dev->name, tx_status);
  1612. if (tx_status == 0x82) {
  1613. printk(KERN_ERR "Probably a duplex mismatch.  See "
  1614. "Documentation/networking/vortex.txtn");
  1615. }
  1616. dump_tx_ring(dev);
  1617. }
  1618. if (tx_status & 0x14)  vp->stats.tx_fifo_errors++;
  1619. if (tx_status & 0x38)  vp->stats.tx_aborted_errors++;
  1620. outb(0, ioaddr + TxStatus);
  1621. if (tx_status & 0x30) { /* txJabber or txUnderrun */
  1622. do_tx_reset = 1;
  1623. } else if ((tx_status & 0x08) && (vp->drv_flags & MAX_COLLISION_RESET)) { /* maxCollisions */
  1624. do_tx_reset = 1;
  1625. reset_mask = 0x0108; /* Reset interface logic, but not download logic */
  1626. } else { /* Merely re-enable the transmitter. */
  1627. outw(TxEnable, ioaddr + EL3_CMD);
  1628. }
  1629. }
  1630. if (status & RxEarly) { /* Rx early is unused. */
  1631. vortex_rx(dev);
  1632. outw(AckIntr | RxEarly, ioaddr + EL3_CMD);
  1633. }
  1634. if (status & StatsFull) { /* Empty statistics. */
  1635. static int DoneDidThat;
  1636. if (vortex_debug > 4)
  1637. printk(KERN_DEBUG "%s: Updating stats.n", dev->name);
  1638. update_stats(ioaddr, dev);
  1639. /* HACK: Disable statistics as an interrupt source. */
  1640. /* This occurs when we have the wrong media type! */
  1641. if (DoneDidThat == 0  &&
  1642. inw(ioaddr + EL3_STATUS) & StatsFull) {
  1643. printk(KERN_WARNING "%s: Updating statistics failed, disabling "
  1644.    "stats as an interrupt source.n", dev->name);
  1645. EL3WINDOW(5);
  1646. outw(SetIntrEnb | (inw(ioaddr + 10) & ~StatsFull), ioaddr + EL3_CMD);
  1647. vp->intr_enable &= ~StatsFull;
  1648. EL3WINDOW(7);
  1649. DoneDidThat++;
  1650. }
  1651. }
  1652. if (status & IntReq) { /* Restore all interrupt sources.  */
  1653. outw(vp->status_enable, ioaddr + EL3_CMD);
  1654. outw(vp->intr_enable, ioaddr + EL3_CMD);
  1655. }
  1656. if (status & HostError) {
  1657. u16 fifo_diag;
  1658. EL3WINDOW(4);
  1659. fifo_diag = inw(ioaddr + Wn4_FIFODiag);
  1660. printk(KERN_ERR "%s: Host error, FIFO diagnostic register %4.4x.n",
  1661.    dev->name, fifo_diag);
  1662. /* Adapter failure requires Tx/Rx reset and reinit. */
  1663. if (vp->full_bus_master_tx) {
  1664. int bus_status = inl(ioaddr + PktStatus);
  1665. /* 0x80000000 PCI master abort. */
  1666. /* 0x40000000 PCI target abort. */
  1667. if (vortex_debug)
  1668. printk(KERN_ERR "%s: PCI bus error, bus status %8.8xn", dev->name, bus_status);
  1669. /* In this case, blow the card away */
  1670. vortex_down(dev);
  1671. issue_and_wait(dev, TotalReset | 0xff);
  1672. vortex_up(dev); /* AKPM: bug.  vortex_up() assumes that the rx ring is full. It may not be. */
  1673. } else if (fifo_diag & 0x0400)
  1674. do_tx_reset = 1;
  1675. if (fifo_diag & 0x3000) {
  1676. /* Reset Rx fifo and upload logic */
  1677. issue_and_wait(dev, RxReset|0x07);
  1678. /* Set the Rx filter to the current state. */
  1679. set_rx_mode(dev);
  1680. outw(RxEnable, ioaddr + EL3_CMD); /* Re-enable the receiver. */
  1681. outw(AckIntr | HostError, ioaddr + EL3_CMD);
  1682. }
  1683. }
  1684. if (do_tx_reset) {
  1685. issue_and_wait(dev, TxReset|reset_mask);
  1686. outw(TxEnable, ioaddr + EL3_CMD);
  1687. if (!vp->full_bus_master_tx)
  1688. netif_wake_queue(dev);
  1689. }
  1690. }
  1691. static int
  1692. vortex_start_xmit(struct sk_buff *skb, struct net_device *dev)
  1693. {
  1694. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1695. long ioaddr = dev->base_addr;
  1696. /* Put out the doubleword header... */
  1697. outl(skb->len, ioaddr + TX_FIFO);
  1698. if (vp->bus_master) {
  1699. /* Set the bus-master controller to transfer the packet. */
  1700. int len = (skb->len + 3) & ~3;
  1701. outl( vp->tx_skb_dma = pci_map_single(vp->pdev, skb->data, len, PCI_DMA_TODEVICE),
  1702. ioaddr + Wn7_MasterAddr);
  1703. outw(len, ioaddr + Wn7_MasterLen);
  1704. vp->tx_skb = skb;
  1705. outw(StartDMADown, ioaddr + EL3_CMD);
  1706. /* netif_wake_queue() will be called at the DMADone interrupt. */
  1707. } else {
  1708. /* ... and the packet rounded to a doubleword. */
  1709. outsl(ioaddr + TX_FIFO, skb->data, (skb->len + 3) >> 2);
  1710. dev_kfree_skb (skb);
  1711. if (inw(ioaddr + TxFree) > 1536) {
  1712. netif_start_queue (dev); /* AKPM: redundant? */
  1713. } else {
  1714. /* Interrupt us when the FIFO has room for max-sized packet. */
  1715. netif_stop_queue(dev);
  1716. outw(SetTxThreshold + (1536>>2), ioaddr + EL3_CMD);
  1717. }
  1718. }
  1719. dev->trans_start = jiffies;
  1720. /* Clear the Tx status stack. */
  1721. {
  1722. int tx_status;
  1723. int i = 32;
  1724. while (--i > 0 && (tx_status = inb(ioaddr + TxStatus)) > 0) {
  1725. if (tx_status & 0x3C) { /* A Tx-disabling error occurred.  */
  1726. if (vortex_debug > 2)
  1727.   printk(KERN_DEBUG "%s: Tx error, status %2.2x.n",
  1728.  dev->name, tx_status);
  1729. if (tx_status & 0x04) vp->stats.tx_fifo_errors++;
  1730. if (tx_status & 0x38) vp->stats.tx_aborted_errors++;
  1731. if (tx_status & 0x30) {
  1732. issue_and_wait(dev, TxReset);
  1733. }
  1734. outw(TxEnable, ioaddr + EL3_CMD);
  1735. }
  1736. outb(0x00, ioaddr + TxStatus); /* Pop the status stack. */
  1737. }
  1738. }
  1739. return 0;
  1740. }
  1741. static int
  1742. boomerang_start_xmit(struct sk_buff *skb, struct net_device *dev)
  1743. {
  1744. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1745. long ioaddr = dev->base_addr;
  1746. /* Calculate the next Tx descriptor entry. */
  1747. int entry = vp->cur_tx % TX_RING_SIZE;
  1748. struct boom_tx_desc *prev_entry = &vp->tx_ring[(vp->cur_tx-1) % TX_RING_SIZE];
  1749. unsigned long flags;
  1750. if (vortex_debug > 6) {
  1751. printk(KERN_DEBUG "boomerang_start_xmit()n");
  1752. if (vortex_debug > 3)
  1753. printk(KERN_DEBUG "%s: Trying to send a packet, Tx index %d.n",
  1754.    dev->name, vp->cur_tx);
  1755. }
  1756. if (vp->cur_tx - vp->dirty_tx >= TX_RING_SIZE) {
  1757. if (vortex_debug > 0)
  1758. printk(KERN_WARNING "%s: BUG! Tx Ring full, refusing to send buffer.n",
  1759.    dev->name);
  1760. netif_stop_queue(dev);
  1761. return 1;
  1762. }
  1763. vp->tx_skbuff[entry] = skb;
  1764. vp->tx_ring[entry].next = 0;
  1765. #if DO_ZEROCOPY
  1766. if (skb->ip_summed != CHECKSUM_HW)
  1767. vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded);
  1768. else
  1769. vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded | AddTCPChksum);
  1770. if (!skb_shinfo(skb)->nr_frags) {
  1771. vp->tx_ring[entry].frag[0].addr = cpu_to_le32(pci_map_single(vp->pdev, skb->data,
  1772. skb->len, PCI_DMA_TODEVICE));
  1773. vp->tx_ring[entry].frag[0].length = cpu_to_le32(skb->len | LAST_FRAG);
  1774. } else {
  1775. int i;
  1776. vp->tx_ring[entry].frag[0].addr = cpu_to_le32(pci_map_single(vp->pdev, skb->data,
  1777. skb->len-skb->data_len, PCI_DMA_TODEVICE));
  1778. vp->tx_ring[entry].frag[0].length = cpu_to_le32(skb->len-skb->data_len);
  1779. for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
  1780. skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
  1781. vp->tx_ring[entry].frag[i+1].addr =
  1782. cpu_to_le32(pci_map_single(vp->pdev,
  1783.    (void*)page_address(frag->page) + frag->page_offset,
  1784.    frag->size, PCI_DMA_TODEVICE));
  1785. if (i == skb_shinfo(skb)->nr_frags-1)
  1786. vp->tx_ring[entry].frag[i+1].length = cpu_to_le32(frag->size|LAST_FRAG);
  1787. else
  1788. vp->tx_ring[entry].frag[i+1].length = cpu_to_le32(frag->size);
  1789. }
  1790. }
  1791. #else
  1792. vp->tx_ring[entry].addr = cpu_to_le32(pci_map_single(vp->pdev, skb->data, skb->len, PCI_DMA_TODEVICE));
  1793. vp->tx_ring[entry].length = cpu_to_le32(skb->len | LAST_FRAG);
  1794. vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded);
  1795. #endif
  1796. spin_lock_irqsave(&vp->lock, flags);
  1797. /* Wait for the stall to complete. */
  1798. issue_and_wait(dev, DownStall);
  1799. prev_entry->next = cpu_to_le32(vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc));
  1800. if (inl(ioaddr + DownListPtr) == 0) {
  1801. outl(vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc), ioaddr + DownListPtr);
  1802. vp->queued_packet++;
  1803. }
  1804. vp->cur_tx++;
  1805. if (vp->cur_tx - vp->dirty_tx > TX_RING_SIZE - 1) {
  1806. netif_stop_queue (dev);
  1807. } else { /* Clear previous interrupt enable. */
  1808. #if defined(tx_interrupt_mitigation)
  1809. /* Dubious. If in boomeang_interrupt "faster" cyclone ifdef
  1810.  * were selected, this would corrupt DN_COMPLETE. No?
  1811.  */
  1812. prev_entry->status &= cpu_to_le32(~TxIntrUploaded);
  1813. #endif
  1814. }
  1815. outw(DownUnstall, ioaddr + EL3_CMD);
  1816. spin_unlock_irqrestore(&vp->lock, flags);
  1817. dev->trans_start = jiffies;
  1818. return 0;
  1819. }
  1820. /* The interrupt handler does all of the Rx thread work and cleans up
  1821.    after the Tx thread. */
  1822. /*
  1823.  * This is the ISR for the vortex series chips.
  1824.  * full_bus_master_tx == 0 && full_bus_master_rx == 0
  1825.  */
  1826. static void vortex_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1827. {
  1828. struct net_device *dev = dev_id;
  1829. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1830. long ioaddr;
  1831. int status;
  1832. int work_done = max_interrupt_work;
  1833. ioaddr = dev->base_addr;
  1834. spin_lock(&vp->lock);
  1835. status = inw(ioaddr + EL3_STATUS);
  1836. if (vortex_debug > 6)
  1837. printk("vortex_interrupt(). status=0x%4xn", status);
  1838. if ((status & IntLatch) == 0)
  1839. goto handler_exit; /* No interrupt: shared IRQs cause this */
  1840. if (status & IntReq) {
  1841. status |= vp->deferred;
  1842. vp->deferred = 0;
  1843. }
  1844. if (status == 0xffff) /* h/w no longer present (hotplug)? */
  1845. goto handler_exit;
  1846. if (vortex_debug > 4)
  1847. printk(KERN_DEBUG "%s: interrupt, status %4.4x, latency %d ticks.n",
  1848.    dev->name, status, inb(ioaddr + Timer));
  1849. do {
  1850. if (vortex_debug > 5)
  1851. printk(KERN_DEBUG "%s: In interrupt loop, status %4.4x.n",
  1852.    dev->name, status);
  1853. if (status & RxComplete)
  1854. vortex_rx(dev);
  1855. if (status & TxAvailable) {
  1856. if (vortex_debug > 5)
  1857. printk(KERN_DEBUG " TX room bit was handled.n");
  1858. /* There's room in the FIFO for a full-sized packet. */
  1859. outw(AckIntr | TxAvailable, ioaddr + EL3_CMD);
  1860. netif_wake_queue (dev);
  1861. }
  1862. if (status & DMADone) {
  1863. if (inw(ioaddr + Wn7_MasterStatus) & 0x1000) {
  1864. outw(0x1000, ioaddr + Wn7_MasterStatus); /* Ack the event. */
  1865. pci_unmap_single(vp->pdev, vp->tx_skb_dma, (vp->tx_skb->len + 3) & ~3, PCI_DMA_TODEVICE);
  1866. dev_kfree_skb_irq(vp->tx_skb); /* Release the transferred buffer */
  1867. if (inw(ioaddr + TxFree) > 1536) {
  1868. /*
  1869.  * AKPM: FIXME: I don't think we need this.  If the queue was stopped due to
  1870.  * insufficient FIFO room, the TxAvailable test will succeed and call
  1871.  * netif_wake_queue()
  1872.  */
  1873. netif_wake_queue(dev);
  1874. } else { /* Interrupt when FIFO has room for max-sized packet. */
  1875. outw(SetTxThreshold + (1536>>2), ioaddr + EL3_CMD);
  1876. netif_stop_queue(dev);
  1877. }
  1878. }
  1879. }
  1880. /* Check for all uncommon interrupts at once. */
  1881. if (status & (HostError | RxEarly | StatsFull | TxComplete | IntReq)) {
  1882. if (status == 0xffff)
  1883. break;
  1884. vortex_error(dev, status);
  1885. }
  1886. if (--work_done < 0) {
  1887. printk(KERN_WARNING "%s: Too much work in interrupt, status "
  1888.    "%4.4x.n", dev->name, status);
  1889. /* Disable all pending interrupts. */
  1890. do {
  1891. vp->deferred |= status;
  1892. outw(SetStatusEnb | (~vp->deferred & vp->status_enable),
  1893.  ioaddr + EL3_CMD);
  1894. outw(AckIntr | (vp->deferred & 0x7ff), ioaddr + EL3_CMD);
  1895. } while ((status = inw(ioaddr + EL3_CMD)) & IntLatch);
  1896. /* The timer will reenable interrupts. */
  1897. mod_timer(&vp->timer, jiffies + 1*HZ);
  1898. break;
  1899. }
  1900. /* Acknowledge the IRQ. */
  1901. outw(AckIntr | IntReq | IntLatch, ioaddr + EL3_CMD);
  1902. } while ((status = inw(ioaddr + EL3_STATUS)) & (IntLatch | RxComplete));
  1903. if (vortex_debug > 4)
  1904. printk(KERN_DEBUG "%s: exiting interrupt, status %4.4x.n",
  1905.    dev->name, status);
  1906. handler_exit:
  1907. spin_unlock(&vp->lock);
  1908. }
  1909. /*
  1910.  * This is the ISR for the boomerang series chips.
  1911.  * full_bus_master_tx == 1 && full_bus_master_rx == 1
  1912.  */
  1913. static void boomerang_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1914. {
  1915. struct net_device *dev = dev_id;
  1916. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  1917. long ioaddr;
  1918. int status;
  1919. int work_done = max_interrupt_work;
  1920. ioaddr = dev->base_addr;
  1921. /*
  1922.  * It seems dopey to put the spinlock this early, but we could race against vortex_tx_timeout
  1923.  * and boomerang_start_xmit
  1924.  */
  1925. spin_lock(&vp->lock);
  1926. status = inw(ioaddr + EL3_STATUS);
  1927. if (vortex_debug > 6)
  1928. printk(KERN_DEBUG "boomerang_interrupt. status=0x%4xn", status);
  1929. if ((status & IntLatch) == 0)
  1930. goto handler_exit; /* No interrupt: shared IRQs can cause this */
  1931. if (status == 0xffff) { /* h/w no longer present (hotplug)? */
  1932. if (vortex_debug > 1)
  1933. printk(KERN_DEBUG "boomerang_interrupt(1): status = 0xffffn");
  1934. goto handler_exit;
  1935. }
  1936. if (status & IntReq) {
  1937. status |= vp->deferred;
  1938. vp->deferred = 0;
  1939. }
  1940. if (vortex_debug > 4)
  1941. printk(KERN_DEBUG "%s: interrupt, status %4.4x, latency %d ticks.n",
  1942.    dev->name, status, inb(ioaddr + Timer));
  1943. do {
  1944. if (vortex_debug > 5)
  1945. printk(KERN_DEBUG "%s: In interrupt loop, status %4.4x.n",
  1946.    dev->name, status);
  1947. if (status & UpComplete) {
  1948. outw(AckIntr | UpComplete, ioaddr + EL3_CMD);
  1949. if (vortex_debug > 5)
  1950. printk(KERN_DEBUG "boomerang_interrupt->boomerang_rxn");
  1951. boomerang_rx(dev);
  1952. }
  1953. if (status & DownComplete) {
  1954. unsigned int dirty_tx = vp->dirty_tx;
  1955. outw(AckIntr | DownComplete, ioaddr + EL3_CMD);
  1956. while (vp->cur_tx - dirty_tx > 0) {
  1957. int entry = dirty_tx % TX_RING_SIZE;
  1958. #if 1 /* AKPM: the latter is faster, but cyclone-only */
  1959. if (inl(ioaddr + DownListPtr) ==
  1960. vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc))
  1961. break; /* It still hasn't been processed. */
  1962. #else
  1963. if ((vp->tx_ring[entry].status & DN_COMPLETE) == 0)
  1964. break; /* It still hasn't been processed. */
  1965. #endif
  1966. if (vp->tx_skbuff[entry]) {
  1967. struct sk_buff *skb = vp->tx_skbuff[entry];
  1968. #if DO_ZEROCOPY
  1969. int i;
  1970. for (i=0; i<=skb_shinfo(skb)->nr_frags; i++)
  1971. pci_unmap_single(vp->pdev,
  1972.  le32_to_cpu(vp->tx_ring[entry].frag[i].addr),
  1973.  le32_to_cpu(vp->tx_ring[entry].frag[i].length)&0xFFF,
  1974.  PCI_DMA_TODEVICE);
  1975. #else
  1976. pci_unmap_single(vp->pdev,
  1977. le32_to_cpu(vp->tx_ring[entry].addr), skb->len, PCI_DMA_TODEVICE);
  1978. #endif
  1979. dev_kfree_skb_irq(skb);
  1980. vp->tx_skbuff[entry] = 0;
  1981. } else {
  1982. printk(KERN_DEBUG "boomerang_interrupt: no skb!n");
  1983. }
  1984. /* vp->stats.tx_packets++;  Counted below. */
  1985. dirty_tx++;
  1986. }
  1987. vp->dirty_tx = dirty_tx;
  1988. if (vp->cur_tx - dirty_tx <= TX_RING_SIZE - 1) {
  1989. if (vortex_debug > 6)
  1990. printk(KERN_DEBUG "boomerang_interrupt: wake queuen");
  1991. netif_wake_queue (dev);
  1992. }
  1993. }
  1994. /* Check for all uncommon interrupts at once. */
  1995. if (status & (HostError | RxEarly | StatsFull | TxComplete | IntReq))
  1996. vortex_error(dev, status);
  1997. if (--work_done < 0) {
  1998. printk(KERN_WARNING "%s: Too much work in interrupt, status "
  1999.    "%4.4x.n", dev->name, status);
  2000. /* Disable all pending interrupts. */
  2001. do {
  2002. vp->deferred |= status;
  2003. outw(SetStatusEnb | (~vp->deferred & vp->status_enable),
  2004.  ioaddr + EL3_CMD);
  2005. outw(AckIntr | (vp->deferred & 0x7ff), ioaddr + EL3_CMD);
  2006. } while ((status = inw(ioaddr + EL3_CMD)) & IntLatch);
  2007. /* The timer will reenable interrupts. */
  2008. mod_timer(&vp->timer, jiffies + 1*HZ);
  2009. break;
  2010. }
  2011. /* Acknowledge the IRQ. */
  2012. outw(AckIntr | IntReq | IntLatch, ioaddr + EL3_CMD);
  2013. if (vp->cb_fn_base) /* The PCMCIA people are idiots.  */
  2014. writel(0x8000, vp->cb_fn_base + 4);
  2015. } while ((status = inw(ioaddr + EL3_STATUS)) & IntLatch);
  2016. if (vortex_debug > 4)
  2017. printk(KERN_DEBUG "%s: exiting interrupt, status %4.4x.n",
  2018.    dev->name, status);
  2019. handler_exit:
  2020. spin_unlock(&vp->lock);
  2021. }
  2022. static int vortex_rx(struct net_device *dev)
  2023. {
  2024. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2025. long ioaddr = dev->base_addr;
  2026. int i;
  2027. short rx_status;
  2028. if (vortex_debug > 5)
  2029. printk(KERN_DEBUG "vortex_rx(): status %4.4x, rx_status %4.4x.n",
  2030.    inw(ioaddr+EL3_STATUS), inw(ioaddr+RxStatus));
  2031. while ((rx_status = inw(ioaddr + RxStatus)) > 0) {
  2032. if (rx_status & 0x4000) { /* Error, update stats. */
  2033. unsigned char rx_error = inb(ioaddr + RxErrors);
  2034. if (vortex_debug > 2)
  2035. printk(KERN_DEBUG " Rx error: status %2.2x.n", rx_error);
  2036. vp->stats.rx_errors++;
  2037. if (rx_error & 0x01)  vp->stats.rx_over_errors++;
  2038. if (rx_error & 0x02)  vp->stats.rx_length_errors++;
  2039. if (rx_error & 0x04)  vp->stats.rx_frame_errors++;
  2040. if (rx_error & 0x08)  vp->stats.rx_crc_errors++;
  2041. if (rx_error & 0x10)  vp->stats.rx_length_errors++;
  2042. } else {
  2043. /* The packet length: up to 4.5K!. */
  2044. int pkt_len = rx_status & 0x1fff;
  2045. struct sk_buff *skb;
  2046. skb = dev_alloc_skb(pkt_len + 5);
  2047. if (vortex_debug > 4)
  2048. printk(KERN_DEBUG "Receiving packet size %d status %4.4x.n",
  2049.    pkt_len, rx_status);
  2050. if (skb != NULL) {
  2051. skb->dev = dev;
  2052. skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
  2053. /* 'skb_put()' points to the start of sk_buff data area. */
  2054. if (vp->bus_master &&
  2055. ! (inw(ioaddr + Wn7_MasterStatus) & 0x8000)) {
  2056. dma_addr_t dma = pci_map_single(vp->pdev, skb_put(skb, pkt_len),
  2057.    pkt_len, PCI_DMA_FROMDEVICE);
  2058. outl(dma, ioaddr + Wn7_MasterAddr);
  2059. outw((skb->len + 3) & ~3, ioaddr + Wn7_MasterLen);
  2060. outw(StartDMAUp, ioaddr + EL3_CMD);
  2061. while (inw(ioaddr + Wn7_MasterStatus) & 0x8000)
  2062. ;
  2063. pci_unmap_single(vp->pdev, dma, pkt_len, PCI_DMA_FROMDEVICE);
  2064. } else {
  2065. insl(ioaddr + RX_FIFO, skb_put(skb, pkt_len),
  2066.  (pkt_len + 3) >> 2);
  2067. }
  2068. outw(RxDiscard, ioaddr + EL3_CMD); /* Pop top Rx packet. */
  2069. skb->protocol = eth_type_trans(skb, dev);
  2070. netif_rx(skb);
  2071. dev->last_rx = jiffies;
  2072. vp->stats.rx_packets++;
  2073. /* Wait a limited time to go to next packet. */
  2074. for (i = 200; i >= 0; i--)
  2075. if ( ! (inw(ioaddr + EL3_STATUS) & CmdInProgress))
  2076. break;
  2077. continue;
  2078. } else if (vortex_debug > 0)
  2079. printk(KERN_NOTICE "%s: No memory to allocate a sk_buff of "
  2080.    "size %d.n", dev->name, pkt_len);
  2081. }
  2082. vp->stats.rx_dropped++;
  2083. issue_and_wait(dev, RxDiscard);
  2084. }
  2085. return 0;
  2086. }
  2087. static int
  2088. boomerang_rx(struct net_device *dev)
  2089. {
  2090. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2091. int entry = vp->cur_rx % RX_RING_SIZE;
  2092. long ioaddr = dev->base_addr;
  2093. int rx_status;
  2094. int rx_work_limit = vp->dirty_rx + RX_RING_SIZE - vp->cur_rx;
  2095. if (vortex_debug > 5)
  2096. printk(KERN_DEBUG "boomerang_rx(): status %4.4xn", inw(ioaddr+EL3_STATUS));
  2097. while ((rx_status = le32_to_cpu(vp->rx_ring[entry].status)) & RxDComplete){
  2098. if (--rx_work_limit < 0)
  2099. break;
  2100. if (rx_status & RxDError) { /* Error, update stats. */
  2101. unsigned char rx_error = rx_status >> 16;
  2102. if (vortex_debug > 2)
  2103. printk(KERN_DEBUG " Rx error: status %2.2x.n", rx_error);
  2104. vp->stats.rx_errors++;
  2105. if (rx_error & 0x01)  vp->stats.rx_over_errors++;
  2106. if (rx_error & 0x02)  vp->stats.rx_length_errors++;
  2107. if (rx_error & 0x04)  vp->stats.rx_frame_errors++;
  2108. if (rx_error & 0x08)  vp->stats.rx_crc_errors++;
  2109. if (rx_error & 0x10)  vp->stats.rx_length_errors++;
  2110. } else {
  2111. /* The packet length: up to 4.5K!. */
  2112. int pkt_len = rx_status & 0x1fff;
  2113. struct sk_buff *skb;
  2114. dma_addr_t dma = le32_to_cpu(vp->rx_ring[entry].addr);
  2115. if (vortex_debug > 4)
  2116. printk(KERN_DEBUG "Receiving packet size %d status %4.4x.n",
  2117.    pkt_len, rx_status);
  2118. /* Check if the packet is long enough to just accept without
  2119.    copying to a properly sized skbuff. */
  2120. if (pkt_len < rx_copybreak && (skb = dev_alloc_skb(pkt_len + 2)) != 0) {
  2121. skb->dev = dev;
  2122. skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
  2123. pci_dma_sync_single(vp->pdev, dma, PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
  2124. /* 'skb_put()' points to the start of sk_buff data area. */
  2125. memcpy(skb_put(skb, pkt_len),
  2126.    vp->rx_skbuff[entry]->tail,
  2127.    pkt_len);
  2128. vp->rx_copy++;
  2129. } else {
  2130. /* Pass up the skbuff already on the Rx ring. */
  2131. skb = vp->rx_skbuff[entry];
  2132. vp->rx_skbuff[entry] = NULL;
  2133. skb_put(skb, pkt_len);
  2134. pci_unmap_single(vp->pdev, dma, PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
  2135. vp->rx_nocopy++;
  2136. }
  2137. skb->protocol = eth_type_trans(skb, dev);
  2138. { /* Use hardware checksum info. */
  2139. int csum_bits = rx_status & 0xee000000;
  2140. if (csum_bits &&
  2141. (csum_bits == (IPChksumValid | TCPChksumValid) ||
  2142.  csum_bits == (IPChksumValid | UDPChksumValid))) {
  2143. skb->ip_summed = CHECKSUM_UNNECESSARY;
  2144. vp->rx_csumhits++;
  2145. }
  2146. }
  2147. netif_rx(skb);
  2148. dev->last_rx = jiffies;
  2149. vp->stats.rx_packets++;
  2150. }
  2151. entry = (++vp->cur_rx) % RX_RING_SIZE;
  2152. }
  2153. /* Refill the Rx ring buffers. */
  2154. for (; vp->cur_rx - vp->dirty_rx > 0; vp->dirty_rx++) {
  2155. struct sk_buff *skb;
  2156. entry = vp->dirty_rx % RX_RING_SIZE;
  2157. if (vp->rx_skbuff[entry] == NULL) {
  2158. skb = dev_alloc_skb(PKT_BUF_SZ);
  2159. if (skb == NULL) {
  2160. static unsigned long last_jif;
  2161. if ((jiffies - last_jif) > 10 * HZ) {
  2162. printk(KERN_WARNING "%s: memory shortagen", dev->name);
  2163. last_jif = jiffies;
  2164. }
  2165. if ((vp->cur_rx - vp->dirty_rx) == RX_RING_SIZE)
  2166. mod_timer(&vp->rx_oom_timer, RUN_AT(HZ * 1));
  2167. break; /* Bad news!  */
  2168. }
  2169. skb->dev = dev; /* Mark as being used by this device. */
  2170. skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
  2171. vp->rx_ring[entry].addr = cpu_to_le32(pci_map_single(vp->pdev, skb->tail, PKT_BUF_SZ, PCI_DMA_FROMDEVICE));
  2172. vp->rx_skbuff[entry] = skb;
  2173. }
  2174. vp->rx_ring[entry].status = 0; /* Clear complete bit. */
  2175. outw(UpUnstall, ioaddr + EL3_CMD);
  2176. }
  2177. return 0;
  2178. }
  2179. /*
  2180.  * If we've hit a total OOM refilling the Rx ring we poll once a second
  2181.  * for some memory.  Otherwise there is no way to restart the rx process.
  2182.  */
  2183. static void
  2184. rx_oom_timer(unsigned long arg)
  2185. {
  2186. struct net_device *dev = (struct net_device *)arg;
  2187. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2188. spin_lock_irq(&vp->lock);
  2189. if ((vp->cur_rx - vp->dirty_rx) == RX_RING_SIZE) /* This test is redundant, but makes me feel good */
  2190. boomerang_rx(dev);
  2191. if (vortex_debug > 1) {
  2192. printk(KERN_DEBUG "%s: rx_oom_timer %sn", dev->name,
  2193. ((vp->cur_rx - vp->dirty_rx) != RX_RING_SIZE) ? "succeeded" : "retrying");
  2194. }
  2195. spin_unlock_irq(&vp->lock);
  2196. }
  2197. static void
  2198. vortex_down(struct net_device *dev)
  2199. {
  2200. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2201. long ioaddr = dev->base_addr;
  2202. netif_stop_queue (dev);
  2203. del_timer_sync(&vp->rx_oom_timer);
  2204. del_timer_sync(&vp->timer);
  2205. /* Turn off statistics ASAP.  We update vp->stats below. */
  2206. outw(StatsDisable, ioaddr + EL3_CMD);
  2207. /* Disable the receiver and transmitter. */
  2208. outw(RxDisable, ioaddr + EL3_CMD);
  2209. outw(TxDisable, ioaddr + EL3_CMD);
  2210. if (dev->if_port == XCVR_10base2)
  2211. /* Turn off thinnet power.  Green! */
  2212. outw(StopCoax, ioaddr + EL3_CMD);
  2213. outw(SetIntrEnb | 0x0000, ioaddr + EL3_CMD);
  2214. update_stats(ioaddr, dev);
  2215. if (vp->full_bus_master_rx)
  2216. outl(0, ioaddr + UpListPtr);
  2217. if (vp->full_bus_master_tx)
  2218. outl(0, ioaddr + DownListPtr);
  2219. if (vp->pdev && vp->enable_wol) {
  2220. pci_save_state(vp->pdev, vp->power_state);
  2221. acpi_set_WOL(dev);
  2222. }
  2223. }
  2224. static int
  2225. vortex_close(struct net_device *dev)
  2226. {
  2227. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2228. long ioaddr = dev->base_addr;
  2229. int i;
  2230. if (netif_device_present(dev))
  2231. vortex_down(dev);
  2232. if (vortex_debug > 1) {
  2233. printk(KERN_DEBUG"%s: vortex_close() status %4.4x, Tx status %2.2x.n",
  2234.    dev->name, inw(ioaddr + EL3_STATUS), inb(ioaddr + TxStatus));
  2235. printk(KERN_DEBUG "%s: vortex close stats: rx_nocopy %d rx_copy %d"
  2236.    " tx_queued %d Rx pre-checksummed %d.n",
  2237.    dev->name, vp->rx_nocopy, vp->rx_copy, vp->queued_packet, vp->rx_csumhits);
  2238. }
  2239. #if DO_ZEROCOPY
  2240. if ( vp->rx_csumhits &&
  2241. ((vp->drv_flags & HAS_HWCKSM) == 0) &&
  2242. (hw_checksums[vp->card_idx] == -1)) {
  2243. printk(KERN_WARNING "%s supports hardware checksums, and we're not using them!n", dev->name);
  2244. printk(KERN_WARNING "Please see http://www.uow.edu.au/~andrewm/zerocopy.htmln");
  2245. }
  2246. #endif
  2247. free_irq(dev->irq, dev);
  2248. if (vp->full_bus_master_rx) { /* Free Boomerang bus master Rx buffers. */
  2249. for (i = 0; i < RX_RING_SIZE; i++)
  2250. if (vp->rx_skbuff[i]) {
  2251. pci_unmap_single( vp->pdev, le32_to_cpu(vp->rx_ring[i].addr),
  2252. PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
  2253. dev_kfree_skb(vp->rx_skbuff[i]);
  2254. vp->rx_skbuff[i] = 0;
  2255. }
  2256. }
  2257. if (vp->full_bus_master_tx) { /* Free Boomerang bus master Tx buffers. */
  2258. for (i = 0; i < TX_RING_SIZE; i++) {
  2259. if (vp->tx_skbuff[i]) {
  2260. struct sk_buff *skb = vp->tx_skbuff[i];
  2261. #if DO_ZEROCOPY
  2262. int k;
  2263. for (k=0; k<=skb_shinfo(skb)->nr_frags; k++)
  2264. pci_unmap_single(vp->pdev,
  2265.  le32_to_cpu(vp->tx_ring[i].frag[k].addr),
  2266.  le32_to_cpu(vp->tx_ring[i].frag[k].length)&0xFFF,
  2267.  PCI_DMA_TODEVICE);
  2268. #else
  2269. pci_unmap_single(vp->pdev, le32_to_cpu(vp->tx_ring[i].addr), skb->len, PCI_DMA_TODEVICE);
  2270. #endif
  2271. dev_kfree_skb(skb);
  2272. vp->tx_skbuff[i] = 0;
  2273. }
  2274. }
  2275. }
  2276. return 0;
  2277. }
  2278. static void
  2279. dump_tx_ring(struct net_device *dev)
  2280. {
  2281. if (vortex_debug > 0) {
  2282. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2283. long ioaddr = dev->base_addr;
  2284. if (vp->full_bus_master_tx) {
  2285. int i;
  2286. int stalled = inl(ioaddr + PktStatus) & 0x04; /* Possible racy. But it's only debug stuff */
  2287. printk(KERN_ERR "  Flags; bus-master %d, dirty %d(%d) current %d(%d)n",
  2288. vp->full_bus_master_tx,
  2289. vp->dirty_tx, vp->dirty_tx % TX_RING_SIZE,
  2290. vp->cur_tx, vp->cur_tx % TX_RING_SIZE);
  2291. printk(KERN_ERR "  Transmit list %8.8x vs. %p.n",
  2292.    inl(ioaddr + DownListPtr),
  2293.    &vp->tx_ring[vp->dirty_tx % TX_RING_SIZE]);
  2294. issue_and_wait(dev, DownStall);
  2295. for (i = 0; i < TX_RING_SIZE; i++) {
  2296. printk(KERN_ERR "  %d: @%p  length %8.8x status %8.8xn", i,
  2297.    &vp->tx_ring[i],
  2298. #if DO_ZEROCOPY
  2299.    le32_to_cpu(vp->tx_ring[i].frag[0].length),
  2300. #else
  2301.    le32_to_cpu(vp->tx_ring[i].length),
  2302. #endif
  2303.    le32_to_cpu(vp->tx_ring[i].status));
  2304. }
  2305. if (!stalled)
  2306. outw(DownUnstall, ioaddr + EL3_CMD);
  2307. }
  2308. }
  2309. }
  2310. static struct net_device_stats *vortex_get_stats(struct net_device *dev)
  2311. {
  2312. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2313. unsigned long flags;
  2314. if (netif_device_present(dev)) { /* AKPM: Used to be netif_running */
  2315. spin_lock_irqsave (&vp->lock, flags);
  2316. update_stats(dev->base_addr, dev);
  2317. spin_unlock_irqrestore (&vp->lock, flags);
  2318. }
  2319. return &vp->stats;
  2320. }
  2321. /*  Update statistics.
  2322. Unlike with the EL3 we need not worry about interrupts changing
  2323. the window setting from underneath us, but we must still guard
  2324. against a race condition with a StatsUpdate interrupt updating the
  2325. table.  This is done by checking that the ASM (!) code generated uses
  2326. atomic updates with '+='.
  2327. */
  2328. static void update_stats(long ioaddr, struct net_device *dev)
  2329. {
  2330. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2331. int old_window = inw(ioaddr + EL3_CMD);
  2332. if (old_window == 0xffff) /* Chip suspended or ejected. */
  2333. return;
  2334. /* Unlike the 3c5x9 we need not turn off stats updates while reading. */
  2335. /* Switch to the stats window, and read everything. */
  2336. EL3WINDOW(6);
  2337. vp->stats.tx_carrier_errors += inb(ioaddr + 0);
  2338. vp->stats.tx_heartbeat_errors += inb(ioaddr + 1);
  2339. /* Multiple collisions. */ inb(ioaddr + 2);
  2340. vp->stats.collisions += inb(ioaddr + 3);
  2341. vp->stats.tx_window_errors += inb(ioaddr + 4);
  2342. vp->stats.rx_fifo_errors += inb(ioaddr + 5);
  2343. vp->stats.tx_packets += inb(ioaddr + 6);
  2344. vp->stats.tx_packets += (inb(ioaddr + 9)&0x30) << 4;
  2345. /* Rx packets */ inb(ioaddr + 7);   /* Must read to clear */
  2346. /* Tx deferrals */ inb(ioaddr + 8);
  2347. /* Don't bother with register 9, an extension of registers 6&7.
  2348.    If we do use the 6&7 values the atomic update assumption above
  2349.    is invalid. */
  2350. vp->stats.rx_bytes += inw(ioaddr + 10);
  2351. vp->stats.tx_bytes += inw(ioaddr + 12);
  2352. /* New: On the Vortex we must also clear the BadSSD counter. */
  2353. EL3WINDOW(4);
  2354. inb(ioaddr + 12);
  2355. {
  2356. u8 up = inb(ioaddr + 13);
  2357. vp->stats.rx_bytes += (up & 0x0f) << 16;
  2358. vp->stats.tx_bytes += (up & 0xf0) << 12;
  2359. }
  2360. EL3WINDOW(old_window >> 13);
  2361. return;
  2362. }
  2363. static int netdev_ethtool_ioctl(struct net_device *dev, void *useraddr)
  2364. {
  2365. struct vortex_private *vp = dev->priv;
  2366. u32 ethcmd;
  2367. if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
  2368. return -EFAULT;
  2369.         switch (ethcmd) {
  2370.         case ETHTOOL_GDRVINFO: {
  2371. struct ethtool_drvinfo info = {ETHTOOL_GDRVINFO};
  2372. strcpy(info.driver, DRV_NAME);
  2373. strcpy(info.version, DRV_VERSION);
  2374. if (vp->pdev)
  2375. strcpy(info.bus_info, vp->pdev->slot_name);
  2376. else
  2377. sprintf(info.bus_info, "EISA 0x%lx %d",
  2378. dev->base_addr, dev->irq);
  2379. if (copy_to_user(useraddr, &info, sizeof(info)))
  2380. return -EFAULT;
  2381. return 0;
  2382. }
  2383.         }
  2384. return -EOPNOTSUPP;
  2385. }
  2386. static int vortex_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  2387. {
  2388. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2389. long ioaddr = dev->base_addr;
  2390. struct mii_ioctl_data *data = (struct mii_ioctl_data *)&rq->ifr_data;
  2391. int phy = vp->phys[0] & 0x1f;
  2392. int retval;
  2393. switch(cmd) {
  2394. case SIOCETHTOOL:
  2395. return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  2396. case SIOCGMIIPHY: /* Get address of MII PHY in use. */
  2397. case SIOCDEVPRIVATE: /* for binary compat, remove in 2.5 */
  2398. data->phy_id = phy;
  2399. case SIOCGMIIREG: /* Read MII PHY register. */
  2400. case SIOCDEVPRIVATE+1: /* for binary compat, remove in 2.5 */
  2401. EL3WINDOW(4);
  2402. data->val_out = mdio_read(dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
  2403. retval = 0;
  2404. break;
  2405. case SIOCSMIIREG: /* Write MII PHY register. */
  2406. case SIOCDEVPRIVATE+2: /* for binary compat, remove in 2.5 */
  2407. if (!capable(CAP_NET_ADMIN)) {
  2408. retval = -EPERM;
  2409. } else {
  2410. EL3WINDOW(4);
  2411. mdio_write(dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
  2412. retval = 0;
  2413. }
  2414. break;
  2415. default:
  2416. retval = -EOPNOTSUPP;
  2417. break;
  2418. }
  2419. return retval;
  2420. }
  2421. /* Pre-Cyclone chips have no documented multicast filter, so the only
  2422.    multicast setting is to receive all multicast frames.  At least
  2423.    the chip has a very clean way to set the mode, unlike many others. */
  2424. static void set_rx_mode(struct net_device *dev)
  2425. {
  2426. long ioaddr = dev->base_addr;
  2427. int new_mode;
  2428. if (dev->flags & IFF_PROMISC) {
  2429. if (vortex_debug > 0)
  2430. printk(KERN_NOTICE "%s: Setting promiscuous mode.n", dev->name);
  2431. new_mode = SetRxFilter|RxStation|RxMulticast|RxBroadcast|RxProm;
  2432. } else if ((dev->mc_list)  ||  (dev->flags & IFF_ALLMULTI)) {
  2433. new_mode = SetRxFilter|RxStation|RxMulticast|RxBroadcast;
  2434. } else
  2435. new_mode = SetRxFilter | RxStation | RxBroadcast;
  2436. outw(new_mode, ioaddr + EL3_CMD);
  2437. }
  2438. /* MII transceiver control section.
  2439.    Read and write the MII registers using software-generated serial
  2440.    MDIO protocol.  See the MII specifications or DP83840A data sheet
  2441.    for details. */
  2442. /* The maximum data clock rate is 2.5 Mhz.  The minimum timing is usually
  2443.    met by back-to-back PCI I/O cycles, but we insert a delay to avoid
  2444.    "overclocking" issues. */
  2445. #define mdio_delay() inl(mdio_addr)
  2446. #define MDIO_SHIFT_CLK 0x01
  2447. #define MDIO_DIR_WRITE 0x04
  2448. #define MDIO_DATA_WRITE0 (0x00 | MDIO_DIR_WRITE)
  2449. #define MDIO_DATA_WRITE1 (0x02 | MDIO_DIR_WRITE)
  2450. #define MDIO_DATA_READ 0x02
  2451. #define MDIO_ENB_IN 0x00
  2452. /* Generate the preamble required for initial synchronization and
  2453.    a few older transceivers. */
  2454. static void mdio_sync(long ioaddr, int bits)
  2455. {
  2456. long mdio_addr = ioaddr + Wn4_PhysicalMgmt;
  2457. /* Establish sync by sending at least 32 logic ones. */
  2458. while (-- bits >= 0) {
  2459. outw(MDIO_DATA_WRITE1, mdio_addr);
  2460. mdio_delay();
  2461. outw(MDIO_DATA_WRITE1 | MDIO_SHIFT_CLK, mdio_addr);
  2462. mdio_delay();
  2463. }
  2464. }
  2465. static int mdio_read(struct net_device *dev, int phy_id, int location)
  2466. {
  2467. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2468. int i;
  2469. long ioaddr = dev->base_addr;
  2470. int read_cmd = (0xf6 << 10) | (phy_id << 5) | location;
  2471. unsigned int retval = 0;
  2472. long mdio_addr = ioaddr + Wn4_PhysicalMgmt;
  2473. spin_lock_bh(&vp->mdio_lock);
  2474. if (mii_preamble_required)
  2475. mdio_sync(ioaddr, 32);
  2476. /* Shift the read command bits out. */
  2477. for (i = 14; i >= 0; i--) {
  2478. int dataval = (read_cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
  2479. outw(dataval, mdio_addr);
  2480. mdio_delay();
  2481. outw(dataval | MDIO_SHIFT_CLK, mdio_addr);
  2482. mdio_delay();
  2483. }
  2484. /* Read the two transition, 16 data, and wire-idle bits. */
  2485. for (i = 19; i > 0; i--) {
  2486. outw(MDIO_ENB_IN, mdio_addr);
  2487. mdio_delay();
  2488. retval = (retval << 1) | ((inw(mdio_addr) & MDIO_DATA_READ) ? 1 : 0);
  2489. outw(MDIO_ENB_IN | MDIO_SHIFT_CLK, mdio_addr);
  2490. mdio_delay();
  2491. }
  2492. spin_unlock_bh(&vp->mdio_lock);
  2493. return retval & 0x20000 ? 0xffff : retval>>1 & 0xffff;
  2494. }
  2495. static void mdio_write(struct net_device *dev, int phy_id, int location, int value)
  2496. {
  2497. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2498. long ioaddr = dev->base_addr;
  2499. int write_cmd = 0x50020000 | (phy_id << 23) | (location << 18) | value;
  2500. long mdio_addr = ioaddr + Wn4_PhysicalMgmt;
  2501. int i;
  2502. spin_lock_bh(&vp->mdio_lock);
  2503. if (mii_preamble_required)
  2504. mdio_sync(ioaddr, 32);
  2505. /* Shift the command bits out. */
  2506. for (i = 31; i >= 0; i--) {
  2507. int dataval = (write_cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
  2508. outw(dataval, mdio_addr);
  2509. mdio_delay();
  2510. outw(dataval | MDIO_SHIFT_CLK, mdio_addr);
  2511. mdio_delay();
  2512. }
  2513. /* Leave the interface idle. */
  2514. for (i = 1; i >= 0; i--) {
  2515. outw(MDIO_ENB_IN, mdio_addr);
  2516. mdio_delay();
  2517. outw(MDIO_ENB_IN | MDIO_SHIFT_CLK, mdio_addr);
  2518. mdio_delay();
  2519. }
  2520. spin_unlock_bh(&vp->mdio_lock);
  2521. return;
  2522. }
  2523. /* ACPI: Advanced Configuration and Power Interface. */
  2524. /* Set Wake-On-LAN mode and put the board into D3 (power-down) state. */
  2525. static void acpi_set_WOL(struct net_device *dev)
  2526. {
  2527. struct vortex_private *vp = (struct vortex_private *)dev->priv;
  2528. long ioaddr = dev->base_addr;
  2529. /* Power up on: 1==Downloaded Filter, 2==Magic Packets, 4==Link Status. */
  2530. EL3WINDOW(7);
  2531. outw(2, ioaddr + 0x0c);
  2532. /* The RxFilter must accept the WOL frames. */
  2533. outw(SetRxFilter|RxStation|RxMulticast|RxBroadcast, ioaddr + EL3_CMD);
  2534. outw(RxEnable, ioaddr + EL3_CMD);
  2535. /* Change the power state to D3; RxEnable doesn't take effect. */
  2536. pci_enable_wake(vp->pdev, 0, 1);
  2537. pci_set_power_state(vp->pdev, 3);
  2538. }
  2539. static void __devexit vortex_remove_one (struct pci_dev *pdev)
  2540. {
  2541. struct net_device *dev = pci_get_drvdata(pdev);
  2542. struct vortex_private *vp;
  2543. if (!dev) {
  2544. printk("vortex_remove_one called for EISA device!n");
  2545. BUG();
  2546. }
  2547. vp = dev->priv;
  2548. /* AKPM: FIXME: we should have
  2549.  * if (vp->cb_fn_base) iounmap(vp->cb_fn_base);
  2550.  * here
  2551.  */
  2552. unregister_netdev(dev);
  2553. /* Should really use issue_and_wait() here */
  2554. outw(TotalReset|0x14, dev->base_addr + EL3_CMD);
  2555. if (vp->pdev && vp->enable_wol) {
  2556. pci_set_power_state(vp->pdev, 0); /* Go active */
  2557. if (vp->pm_state_valid)
  2558. pci_restore_state(vp->pdev, vp->power_state);
  2559. }
  2560. pci_free_consistent(pdev,
  2561. sizeof(struct boom_rx_desc) * RX_RING_SIZE
  2562. + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
  2563. vp->rx_ring,
  2564. vp->rx_ring_dma);
  2565. if (vp->must_free_region)
  2566. release_region(dev->base_addr, vp->io_size);
  2567. kfree(dev);
  2568. }
  2569. static struct pci_driver vortex_driver = {
  2570. name: "3c59x",
  2571. probe: vortex_init_one,
  2572. remove: __devexit_p(vortex_remove_one),
  2573. id_table: vortex_pci_tbl,
  2574. #ifdef CONFIG_PM
  2575. suspend: vortex_suspend,
  2576. resume: vortex_resume,
  2577. #endif
  2578. };
  2579. static int vortex_have_pci;
  2580. static int vortex_have_eisa;
  2581. static int __init vortex_init (void)
  2582. {
  2583. int pci_rc, eisa_rc;
  2584. pci_rc = pci_module_init(&vortex_driver);
  2585. eisa_rc = vortex_eisa_init();
  2586. if (pci_rc == 0)
  2587. vortex_have_pci = 1;
  2588. if (eisa_rc > 0)
  2589. vortex_have_eisa = 1;
  2590. return (vortex_have_pci + vortex_have_eisa) ? 0 : -ENODEV;
  2591. }
  2592. static void __exit vortex_eisa_cleanup (void)
  2593. {
  2594. struct net_device *dev, *tmp;
  2595. struct vortex_private *vp;
  2596. long ioaddr;
  2597. dev = root_vortex_eisa_dev;
  2598. while (dev) {
  2599. vp = dev->priv;
  2600. ioaddr = dev->base_addr;
  2601. unregister_netdev (dev);
  2602. outw (TotalReset, ioaddr + EL3_CMD);
  2603. release_region (ioaddr, VORTEX_TOTAL_SIZE);
  2604. tmp = dev;
  2605. dev = vp->next_module;
  2606. kfree (tmp);
  2607. }
  2608. }
  2609. static void __exit vortex_cleanup (void)
  2610. {
  2611. if (vortex_have_pci)
  2612. pci_unregister_driver (&vortex_driver);
  2613. if (vortex_have_eisa)
  2614. vortex_eisa_cleanup ();
  2615. }
  2616. module_init(vortex_init);
  2617. module_exit(vortex_cleanup);
  2618. /*
  2619.  * Local variables:
  2620.  *  c-indent-level: 4
  2621.  *  c-basic-offset: 4
  2622.  *  tab-width: 4
  2623.  * End:
  2624.  */