blob: a3c46f6a15e7c5b02a91542406208928cdb23a6d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* typhoon.c: A Linux Ethernet device driver for 3Com 3CR990 family of NICs */
2/*
3 Written 2002-2004 by David Dillow <dave@thedillows.org>
4 Based on code written 1998-2000 by Donald Becker <becker@scyld.com> and
5 Linux 2.2.x driver by David P. McLean <davidpmclean@yahoo.com>.
6
7 This software may be used and distributed according to the terms of
8 the GNU General Public License (GPL), incorporated herein by reference.
9 Drivers based on or derived from this code fall under the GPL and must
10 retain the authorship, copyright and license notice. This file is not
11 a complete program and may only be used when the entire operating
12 system is licensed under the GPL.
13
14 This software is available on a public web site. It may enable
15 cryptographic capabilities of the 3Com hardware, and may be
16 exported from the United States under License Exception "TSU"
17 pursuant to 15 C.F.R. Section 740.13(e).
18
19 This work was funded by the National Library of Medicine under
20 the Department of Energy project number 0274DD06D1 and NLM project
21 number Y1-LM-2015-01.
22
23 This driver is designed for the 3Com 3CR990 Family of cards with the
24 3XP Processor. It has been tested on x86 and sparc64.
25
26 KNOWN ISSUES:
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *) Cannot DMA Rx packets to a 2 byte aligned address. Also firmware
28 issue. Hopefully 3Com will fix it.
29 *) Waiting for a command response takes 8ms due to non-preemptable
30 polling. Only significant for getting stats and creating
31 SAs, but an ugly wart never the less.
32
33 TODO:
34 *) Doesn't do IPSEC offloading. Yet. Keep yer pants on, it's coming.
35 *) Add more support for ethtool (especially for NIC stats)
36 *) Allow disabling of RX checksum offloading
37 *) Fix MAC changing to work while the interface is up
38 (Need to put commands on the TX ring, which changes
39 the locking)
40 *) Add in FCS to {rx,tx}_bytes, since the hardware doesn't. See
41 http://oss.sgi.com/cgi-bin/mesg.cgi?a=netdev&i=20031215152211.7003fe8e.rddunlap%40osdl.org
42*/
43
44/* Set the copy breakpoint for the copy-only-tiny-frames scheme.
45 * Setting to > 1518 effectively disables this feature.
46 */
47static int rx_copybreak = 200;
48
49/* Should we use MMIO or Port IO?
50 * 0: Port IO
51 * 1: MMIO
52 * 2: Try MMIO, fallback to Port IO
53 */
54static unsigned int use_mmio = 2;
55
56/* end user-configurable values */
57
58/* Maximum number of multicast addresses to filter (vs. rx-all-multicast).
59 */
60static const int multicast_filter_limit = 32;
61
62/* Operational parameters that are set at compile time. */
63
64/* Keep the ring sizes a power of two for compile efficiency.
65 * The compiler will convert <unsigned>'%'<2^N> into a bit mask.
66 * Making the Tx ring too large decreases the effectiveness of channel
67 * bonding and packet priority.
68 * There are no ill effects from too-large receive rings.
69 *
70 * We don't currently use the Hi Tx ring so, don't make it very big.
71 *
72 * Beware that if we start using the Hi Tx ring, we will need to change
73 * typhoon_num_free_tx() and typhoon_tx_complete() to account for that.
74 */
75#define TXHI_ENTRIES 2
76#define TXLO_ENTRIES 128
77#define RX_ENTRIES 32
78#define COMMAND_ENTRIES 16
79#define RESPONSE_ENTRIES 32
80
81#define COMMAND_RING_SIZE (COMMAND_ENTRIES * sizeof(struct cmd_desc))
82#define RESPONSE_RING_SIZE (RESPONSE_ENTRIES * sizeof(struct resp_desc))
83
84/* The 3XP will preload and remove 64 entries from the free buffer
Jeff Garzik6aa20a22006-09-13 13:24:59 -040085 * list, and we need one entry to keep the ring from wrapping, so
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * to keep this a power of two, we use 128 entries.
87 */
88#define RXFREE_ENTRIES 128
89#define RXENT_ENTRIES (RXFREE_ENTRIES - 1)
90
91/* Operational parameters that usually are not changed. */
92
93/* Time in jiffies before concluding the transmitter is hung. */
94#define TX_TIMEOUT (2*HZ)
95
96#define PKT_BUF_SZ 1536
David Dillowa8c9a532009-03-02 22:15:09 -080097#define FIRMWARE_NAME "3com/typhoon.bin"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Joe Perches0bc88e42010-02-21 17:08:47 +000099#define pr_fmt(fmt) KBUILD_MODNAME " " fmt
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <linux/module.h>
102#include <linux/kernel.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +0400103#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <linux/string.h>
105#include <linux/timer.h>
106#include <linux/errno.h>
107#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/interrupt.h>
109#include <linux/pci.h>
110#include <linux/netdevice.h>
111#include <linux/etherdevice.h>
112#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -0500113#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#include <linux/init.h>
115#include <linux/delay.h>
116#include <linux/ethtool.h>
117#include <linux/if_vlan.h>
118#include <linux/crc32.h>
119#include <linux/bitops.h>
120#include <asm/processor.h>
121#include <asm/io.h>
122#include <asm/uaccess.h>
123#include <linux/in6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#include <linux/dma-mapping.h>
Ben Hutchingsb775a752009-02-26 23:21:23 -0800125#include <linux/firmware.h>
Joe Perches0bc88e42010-02-21 17:08:47 +0000126#include <generated/utsrelease.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128#include "typhoon.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130MODULE_AUTHOR("David Dillow <dave@thedillows.org>");
Joe Perches0bc88e42010-02-21 17:08:47 +0000131MODULE_VERSION(UTS_RELEASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132MODULE_LICENSE("GPL");
Ben Hutchingsb775a752009-02-26 23:21:23 -0800133MODULE_FIRMWARE(FIRMWARE_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134MODULE_DESCRIPTION("3Com Typhoon Family (3C990, 3CR990, and variants)");
135MODULE_PARM_DESC(rx_copybreak, "Packets smaller than this are copied and "
136 "the buffer given back to the NIC. Default "
137 "is 200.");
138MODULE_PARM_DESC(use_mmio, "Use MMIO (1) or PIO(0) to access the NIC. "
139 "Default is to try MMIO and fallback to PIO.");
140module_param(rx_copybreak, int, 0);
141module_param(use_mmio, int, 0);
142
143#if defined(NETIF_F_TSO) && MAX_SKB_FRAGS > 32
144#warning Typhoon only supports 32 entries in its SG list for TSO, disabling TSO
145#undef NETIF_F_TSO
146#endif
147
148#if TXLO_ENTRIES <= (2 * MAX_SKB_FRAGS)
149#error TX ring too small!
150#endif
151
152struct typhoon_card_info {
Joe Perches0bc88e42010-02-21 17:08:47 +0000153 const char *name;
154 const int capabilities;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155};
156
157#define TYPHOON_CRYPTO_NONE 0x00
158#define TYPHOON_CRYPTO_DES 0x01
159#define TYPHOON_CRYPTO_3DES 0x02
160#define TYPHOON_CRYPTO_VARIABLE 0x04
161#define TYPHOON_FIBER 0x08
162#define TYPHOON_WAKEUP_NEEDS_RESET 0x10
163
164enum typhoon_cards {
165 TYPHOON_TX = 0, TYPHOON_TX95, TYPHOON_TX97, TYPHOON_SVR,
166 TYPHOON_SVR95, TYPHOON_SVR97, TYPHOON_TXM, TYPHOON_BSVR,
167 TYPHOON_FX95, TYPHOON_FX97, TYPHOON_FX95SVR, TYPHOON_FX97SVR,
168 TYPHOON_FXM,
169};
170
171/* directly indexed by enum typhoon_cards, above */
Andrew Morton952b3492008-02-09 23:40:34 -0800172static struct typhoon_card_info typhoon_card_info[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 { "3Com Typhoon (3C990-TX)",
174 TYPHOON_CRYPTO_NONE},
175 { "3Com Typhoon (3CR990-TX-95)",
176 TYPHOON_CRYPTO_DES},
177 { "3Com Typhoon (3CR990-TX-97)",
178 TYPHOON_CRYPTO_DES | TYPHOON_CRYPTO_3DES},
179 { "3Com Typhoon (3C990SVR)",
180 TYPHOON_CRYPTO_NONE},
181 { "3Com Typhoon (3CR990SVR95)",
182 TYPHOON_CRYPTO_DES},
183 { "3Com Typhoon (3CR990SVR97)",
184 TYPHOON_CRYPTO_DES | TYPHOON_CRYPTO_3DES},
185 { "3Com Typhoon2 (3C990B-TX-M)",
186 TYPHOON_CRYPTO_VARIABLE},
187 { "3Com Typhoon2 (3C990BSVR)",
188 TYPHOON_CRYPTO_VARIABLE},
189 { "3Com Typhoon (3CR990-FX-95)",
190 TYPHOON_CRYPTO_DES | TYPHOON_FIBER},
191 { "3Com Typhoon (3CR990-FX-97)",
192 TYPHOON_CRYPTO_DES | TYPHOON_CRYPTO_3DES | TYPHOON_FIBER},
193 { "3Com Typhoon (3CR990-FX-95 Server)",
194 TYPHOON_CRYPTO_DES | TYPHOON_FIBER},
195 { "3Com Typhoon (3CR990-FX-97 Server)",
196 TYPHOON_CRYPTO_DES | TYPHOON_CRYPTO_3DES | TYPHOON_FIBER},
197 { "3Com Typhoon2 (3C990B-FX-97)",
198 TYPHOON_CRYPTO_VARIABLE | TYPHOON_FIBER},
199};
200
201/* Notes on the new subsystem numbering scheme:
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -0800202 * bits 0-1 indicate crypto capabilities: (0) variable, (1) DES, or (2) 3DES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * bit 4 indicates if this card has secured firmware (we don't support it)
204 * bit 8 indicates if this is a (0) copper or (1) fiber card
205 * bits 12-16 indicate card type: (0) client and (1) server
206 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000207static DEFINE_PCI_DEVICE_TABLE(typhoon_pci_tbl) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990,
209 PCI_ANY_ID, PCI_ANY_ID, 0, 0,TYPHOON_TX },
210 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990_TX_95,
211 PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPHOON_TX95 },
212 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990_TX_97,
213 PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPHOON_TX97 },
214 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990B,
215 PCI_ANY_ID, 0x1000, 0, 0, TYPHOON_TXM },
216 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990B,
217 PCI_ANY_ID, 0x1102, 0, 0, TYPHOON_FXM },
218 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990B,
219 PCI_ANY_ID, 0x2000, 0, 0, TYPHOON_BSVR },
220 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990_FX,
221 PCI_ANY_ID, 0x1101, 0, 0, TYPHOON_FX95 },
222 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990_FX,
223 PCI_ANY_ID, 0x1102, 0, 0, TYPHOON_FX97 },
224 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990_FX,
225 PCI_ANY_ID, 0x2101, 0, 0, TYPHOON_FX95SVR },
226 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990_FX,
227 PCI_ANY_ID, 0x2102, 0, 0, TYPHOON_FX97SVR },
228 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990SVR95,
229 PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPHOON_SVR95 },
230 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990SVR97,
231 PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPHOON_SVR97 },
232 { PCI_VENDOR_ID_3COM, PCI_DEVICE_ID_3COM_3CR990SVR,
233 PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPHOON_SVR },
234 { 0, }
235};
236MODULE_DEVICE_TABLE(pci, typhoon_pci_tbl);
237
238/* Define the shared memory area
239 * Align everything the 3XP will normally be using.
240 * We'll need to move/align txHi if we start using that ring.
241 */
242#define __3xp_aligned ____cacheline_aligned
243struct typhoon_shared {
244 struct typhoon_interface iface;
245 struct typhoon_indexes indexes __3xp_aligned;
246 struct tx_desc txLo[TXLO_ENTRIES] __3xp_aligned;
247 struct rx_desc rxLo[RX_ENTRIES] __3xp_aligned;
248 struct rx_desc rxHi[RX_ENTRIES] __3xp_aligned;
249 struct cmd_desc cmd[COMMAND_ENTRIES] __3xp_aligned;
250 struct resp_desc resp[RESPONSE_ENTRIES] __3xp_aligned;
251 struct rx_free rxBuff[RXFREE_ENTRIES] __3xp_aligned;
252 u32 zeroWord;
253 struct tx_desc txHi[TXHI_ENTRIES];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000254} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256struct rxbuff_ent {
257 struct sk_buff *skb;
258 dma_addr_t dma_addr;
259};
260
261struct typhoon {
262 /* Tx cache line section */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400263 struct transmit_ring txLoRing ____cacheline_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct pci_dev * tx_pdev;
265 void __iomem *tx_ioaddr;
266 u32 txlo_dma_addr;
267
268 /* Irq/Rx cache line section */
269 void __iomem *ioaddr ____cacheline_aligned;
270 struct typhoon_indexes *indexes;
271 u8 awaiting_resp;
272 u8 duplex;
273 u8 speed;
274 u8 card_state;
275 struct basic_ring rxLoRing;
276 struct pci_dev * pdev;
277 struct net_device * dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700278 struct napi_struct napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct basic_ring rxHiRing;
280 struct basic_ring rxBuffRing;
281 struct rxbuff_ent rxbuffers[RXENT_ENTRIES];
282
283 /* general section */
284 spinlock_t command_lock ____cacheline_aligned;
285 struct basic_ring cmdRing;
286 struct basic_ring respRing;
287 struct net_device_stats stats;
288 struct net_device_stats stats_saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct typhoon_shared * shared;
290 dma_addr_t shared_dma;
Al Viro03a710f2007-08-23 00:44:39 -0400291 __le16 xcvr_select;
292 __le16 wol_events;
293 __le32 offload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 /* unused stuff (future use) */
296 int capabilities;
297 struct transmit_ring txHiRing;
298};
299
300enum completion_wait_values {
301 NoWait = 0, WaitNoSleep, WaitSleep,
302};
303
304/* These are the values for the typhoon.card_state variable.
305 * These determine where the statistics will come from in get_stats().
306 * The sleep image does not support the statistics we need.
307 */
308enum state_values {
309 Sleeping = 0, Running,
310};
311
312/* PCI writes are not guaranteed to be posted in order, but outstanding writes
313 * cannot pass a read, so this forces current writes to post.
314 */
315#define typhoon_post_pci_writes(x) \
316 do { if(likely(use_mmio)) ioread32(x+TYPHOON_REG_HEARTBEAT); } while(0)
317
318/* We'll wait up to six seconds for a reset, and half a second normally.
319 */
320#define TYPHOON_UDELAY 50
321#define TYPHOON_RESET_TIMEOUT_SLEEP (6 * HZ)
322#define TYPHOON_RESET_TIMEOUT_NOSLEEP ((6 * 1000000) / TYPHOON_UDELAY)
323#define TYPHOON_WAIT_TIMEOUT ((1000000 / 2) / TYPHOON_UDELAY)
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#if defined(NETIF_F_TSO)
Herbert Xu79671682006-06-22 02:40:14 -0700326#define skb_tso_size(x) (skb_shinfo(x)->gso_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#define TSO_NUM_DESCRIPTORS 2
328#define TSO_OFFLOAD_ON TYPHOON_OFFLOAD_TCP_SEGMENT
329#else
330#define NETIF_F_TSO 0
331#define skb_tso_size(x) 0
332#define TSO_NUM_DESCRIPTORS 0
333#define TSO_OFFLOAD_ON 0
334#endif
335
336static inline void
337typhoon_inc_index(u32 *index, const int count, const int num_entries)
338{
339 /* Increment a ring index -- we can use this for all rings execept
340 * the Rx rings, as they use different size descriptors
341 * otherwise, everything is the same size as a cmd_desc
342 */
343 *index += count * sizeof(struct cmd_desc);
344 *index %= num_entries * sizeof(struct cmd_desc);
345}
346
347static inline void
348typhoon_inc_cmd_index(u32 *index, const int count)
349{
350 typhoon_inc_index(index, count, COMMAND_ENTRIES);
351}
352
353static inline void
354typhoon_inc_resp_index(u32 *index, const int count)
355{
356 typhoon_inc_index(index, count, RESPONSE_ENTRIES);
357}
358
359static inline void
360typhoon_inc_rxfree_index(u32 *index, const int count)
361{
362 typhoon_inc_index(index, count, RXFREE_ENTRIES);
363}
364
365static inline void
366typhoon_inc_tx_index(u32 *index, const int count)
367{
368 /* if we start using the Hi Tx ring, this needs updateing */
369 typhoon_inc_index(index, count, TXLO_ENTRIES);
370}
371
372static inline void
373typhoon_inc_rx_index(u32 *index, const int count)
374{
375 /* sizeof(struct rx_desc) != sizeof(struct cmd_desc) */
376 *index += count * sizeof(struct rx_desc);
377 *index %= RX_ENTRIES * sizeof(struct rx_desc);
378}
379
380static int
381typhoon_reset(void __iomem *ioaddr, int wait_type)
382{
383 int i, err = 0;
384 int timeout;
385
386 if(wait_type == WaitNoSleep)
387 timeout = TYPHOON_RESET_TIMEOUT_NOSLEEP;
388 else
389 timeout = TYPHOON_RESET_TIMEOUT_SLEEP;
390
391 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_MASK);
392 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_STATUS);
393
394 iowrite32(TYPHOON_RESET_ALL, ioaddr + TYPHOON_REG_SOFT_RESET);
395 typhoon_post_pci_writes(ioaddr);
396 udelay(1);
397 iowrite32(TYPHOON_RESET_NONE, ioaddr + TYPHOON_REG_SOFT_RESET);
398
399 if(wait_type != NoWait) {
400 for(i = 0; i < timeout; i++) {
401 if(ioread32(ioaddr + TYPHOON_REG_STATUS) ==
402 TYPHOON_STATUS_WAITING_FOR_HOST)
403 goto out;
404
Nishanth Aravamudan3173c892005-09-11 02:09:55 -0700405 if(wait_type == WaitSleep)
406 schedule_timeout_uninterruptible(1);
407 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 udelay(TYPHOON_UDELAY);
409 }
410
411 err = -ETIMEDOUT;
412 }
413
414out:
415 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_MASK);
416 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_STATUS);
417
418 /* The 3XP seems to need a little extra time to complete the load
419 * of the sleep image before we can reliably boot it. Failure to
420 * do this occasionally results in a hung adapter after boot in
421 * typhoon_init_one() while trying to read the MAC address or
422 * putting the card to sleep. 3Com's driver waits 5ms, but
423 * that seems to be overkill. However, if we can sleep, we might
424 * as well give it that much time. Otherwise, we'll give it 500us,
425 * which should be enough (I've see it work well at 100us, but still
426 * saw occasional problems.)
427 */
428 if(wait_type == WaitSleep)
429 msleep(5);
430 else
431 udelay(500);
432 return err;
433}
434
435static int
436typhoon_wait_status(void __iomem *ioaddr, u32 wait_value)
437{
438 int i, err = 0;
439
440 for(i = 0; i < TYPHOON_WAIT_TIMEOUT; i++) {
441 if(ioread32(ioaddr + TYPHOON_REG_STATUS) == wait_value)
442 goto out;
443 udelay(TYPHOON_UDELAY);
444 }
445
446 err = -ETIMEDOUT;
447
448out:
449 return err;
450}
451
452static inline void
453typhoon_media_status(struct net_device *dev, struct resp_desc *resp)
454{
455 if(resp->parm1 & TYPHOON_MEDIA_STAT_NO_LINK)
456 netif_carrier_off(dev);
457 else
458 netif_carrier_on(dev);
459}
460
461static inline void
462typhoon_hello(struct typhoon *tp)
463{
464 struct basic_ring *ring = &tp->cmdRing;
465 struct cmd_desc *cmd;
466
467 /* We only get a hello request if we've not sent anything to the
468 * card in a long while. If the lock is held, then we're in the
469 * process of issuing a command, so we don't need to respond.
470 */
471 if(spin_trylock(&tp->command_lock)) {
472 cmd = (struct cmd_desc *)(ring->ringBase + ring->lastWrite);
473 typhoon_inc_cmd_index(&ring->lastWrite, 1);
474
475 INIT_COMMAND_NO_RESPONSE(cmd, TYPHOON_CMD_HELLO_RESP);
David Dillow5fe88ea2010-03-04 04:37:16 +0000476 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 iowrite32(ring->lastWrite, tp->ioaddr + TYPHOON_REG_CMD_READY);
478 spin_unlock(&tp->command_lock);
479 }
480}
481
482static int
483typhoon_process_response(struct typhoon *tp, int resp_size,
484 struct resp_desc *resp_save)
485{
486 struct typhoon_indexes *indexes = tp->indexes;
487 struct resp_desc *resp;
488 u8 *base = tp->respRing.ringBase;
489 int count, len, wrap_len;
490 u32 cleared;
491 u32 ready;
492
493 cleared = le32_to_cpu(indexes->respCleared);
494 ready = le32_to_cpu(indexes->respReady);
495 while(cleared != ready) {
496 resp = (struct resp_desc *)(base + cleared);
497 count = resp->numDesc + 1;
498 if(resp_save && resp->seqNo) {
499 if(count > resp_size) {
500 resp_save->flags = TYPHOON_RESP_ERROR;
501 goto cleanup;
502 }
503
504 wrap_len = 0;
505 len = count * sizeof(*resp);
506 if(unlikely(cleared + len > RESPONSE_RING_SIZE)) {
507 wrap_len = cleared + len - RESPONSE_RING_SIZE;
508 len = RESPONSE_RING_SIZE - cleared;
509 }
510
511 memcpy(resp_save, resp, len);
512 if(unlikely(wrap_len)) {
513 resp_save += len / sizeof(*resp);
514 memcpy(resp_save, base, wrap_len);
515 }
516
517 resp_save = NULL;
518 } else if(resp->cmd == TYPHOON_CMD_READ_MEDIA_STATUS) {
519 typhoon_media_status(tp->dev, resp);
520 } else if(resp->cmd == TYPHOON_CMD_HELLO_RESP) {
521 typhoon_hello(tp);
522 } else {
Joe Perches0bc88e42010-02-21 17:08:47 +0000523 netdev_err(tp->dev,
524 "dumping unexpected response 0x%04x:%d:0x%02x:0x%04x:%08x:%08x\n",
525 le16_to_cpu(resp->cmd),
526 resp->numDesc, resp->flags,
527 le16_to_cpu(resp->parm1),
528 le32_to_cpu(resp->parm2),
529 le32_to_cpu(resp->parm3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
532cleanup:
533 typhoon_inc_resp_index(&cleared, count);
534 }
535
536 indexes->respCleared = cpu_to_le32(cleared);
537 wmb();
Eric Dumazet807540b2010-09-23 05:40:09 +0000538 return resp_save == NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541static inline int
542typhoon_num_free(int lastWrite, int lastRead, int ringSize)
543{
544 /* this works for all descriptors but rx_desc, as they are a
545 * different size than the cmd_desc -- everyone else is the same
546 */
547 lastWrite /= sizeof(struct cmd_desc);
548 lastRead /= sizeof(struct cmd_desc);
549 return (ringSize + lastRead - lastWrite - 1) % ringSize;
550}
551
552static inline int
553typhoon_num_free_cmd(struct typhoon *tp)
554{
555 int lastWrite = tp->cmdRing.lastWrite;
556 int cmdCleared = le32_to_cpu(tp->indexes->cmdCleared);
557
558 return typhoon_num_free(lastWrite, cmdCleared, COMMAND_ENTRIES);
559}
560
561static inline int
562typhoon_num_free_resp(struct typhoon *tp)
563{
564 int respReady = le32_to_cpu(tp->indexes->respReady);
565 int respCleared = le32_to_cpu(tp->indexes->respCleared);
566
567 return typhoon_num_free(respReady, respCleared, RESPONSE_ENTRIES);
568}
569
570static inline int
571typhoon_num_free_tx(struct transmit_ring *ring)
572{
573 /* if we start using the Hi Tx ring, this needs updating */
574 return typhoon_num_free(ring->lastWrite, ring->lastRead, TXLO_ENTRIES);
575}
576
577static int
578typhoon_issue_command(struct typhoon *tp, int num_cmd, struct cmd_desc *cmd,
579 int num_resp, struct resp_desc *resp)
580{
581 struct typhoon_indexes *indexes = tp->indexes;
582 struct basic_ring *ring = &tp->cmdRing;
583 struct resp_desc local_resp;
584 int i, err = 0;
585 int got_resp;
586 int freeCmd, freeResp;
587 int len, wrap_len;
588
589 spin_lock(&tp->command_lock);
590
591 freeCmd = typhoon_num_free_cmd(tp);
592 freeResp = typhoon_num_free_resp(tp);
593
594 if(freeCmd < num_cmd || freeResp < num_resp) {
Joe Perches0bc88e42010-02-21 17:08:47 +0000595 netdev_err(tp->dev, "no descs for cmd, had (needed) %d (%d) cmd, %d (%d) resp\n",
596 freeCmd, num_cmd, freeResp, num_resp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 err = -ENOMEM;
598 goto out;
599 }
600
601 if(cmd->flags & TYPHOON_CMD_RESPOND) {
602 /* If we're expecting a response, but the caller hasn't given
603 * us a place to put it, we'll provide one.
604 */
605 tp->awaiting_resp = 1;
606 if(resp == NULL) {
607 resp = &local_resp;
608 num_resp = 1;
609 }
610 }
611
612 wrap_len = 0;
613 len = num_cmd * sizeof(*cmd);
614 if(unlikely(ring->lastWrite + len > COMMAND_RING_SIZE)) {
615 wrap_len = ring->lastWrite + len - COMMAND_RING_SIZE;
616 len = COMMAND_RING_SIZE - ring->lastWrite;
617 }
618
619 memcpy(ring->ringBase + ring->lastWrite, cmd, len);
620 if(unlikely(wrap_len)) {
621 struct cmd_desc *wrap_ptr = cmd;
622 wrap_ptr += len / sizeof(*cmd);
623 memcpy(ring->ringBase, wrap_ptr, wrap_len);
624 }
625
626 typhoon_inc_cmd_index(&ring->lastWrite, num_cmd);
627
Michael Opdenacker59c51592007-05-09 08:57:56 +0200628 /* "I feel a presence... another warrior is on the mesa."
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
630 wmb();
631 iowrite32(ring->lastWrite, tp->ioaddr + TYPHOON_REG_CMD_READY);
632 typhoon_post_pci_writes(tp->ioaddr);
633
634 if((cmd->flags & TYPHOON_CMD_RESPOND) == 0)
635 goto out;
636
637 /* Ugh. We'll be here about 8ms, spinning our thumbs, unable to
638 * preempt or do anything other than take interrupts. So, don't
639 * wait for a response unless you have to.
640 *
641 * I've thought about trying to sleep here, but we're called
642 * from many contexts that don't allow that. Also, given the way
643 * 3Com has implemented irq coalescing, we would likely timeout --
644 * this has been observed in real life!
645 *
646 * The big killer is we have to wait to get stats from the card,
647 * though we could go to a periodic refresh of those if we don't
648 * mind them getting somewhat stale. The rest of the waiting
649 * commands occur during open/close/suspend/resume, so they aren't
650 * time critical. Creating SAs in the future will also have to
651 * wait here.
652 */
653 got_resp = 0;
654 for(i = 0; i < TYPHOON_WAIT_TIMEOUT && !got_resp; i++) {
655 if(indexes->respCleared != indexes->respReady)
656 got_resp = typhoon_process_response(tp, num_resp,
657 resp);
658 udelay(TYPHOON_UDELAY);
659 }
660
661 if(!got_resp) {
662 err = -ETIMEDOUT;
663 goto out;
664 }
665
666 /* Collect the error response even if we don't care about the
667 * rest of the response
668 */
669 if(resp->flags & TYPHOON_RESP_ERROR)
670 err = -EIO;
671
672out:
673 if(tp->awaiting_resp) {
674 tp->awaiting_resp = 0;
675 smp_wmb();
676
677 /* Ugh. If a response was added to the ring between
678 * the call to typhoon_process_response() and the clearing
679 * of tp->awaiting_resp, we could have missed the interrupt
680 * and it could hang in the ring an indeterminate amount of
681 * time. So, check for it, and interrupt ourselves if this
682 * is the case.
683 */
684 if(indexes->respCleared != indexes->respReady)
685 iowrite32(1, tp->ioaddr + TYPHOON_REG_SELF_INTERRUPT);
686 }
687
688 spin_unlock(&tp->command_lock);
689 return err;
690}
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692static inline void
693typhoon_tso_fill(struct sk_buff *skb, struct transmit_ring *txRing,
694 u32 ring_dma)
695{
696 struct tcpopt_desc *tcpd;
697 u32 tcpd_offset = ring_dma;
698
699 tcpd = (struct tcpopt_desc *) (txRing->ringBase + txRing->lastWrite);
700 tcpd_offset += txRing->lastWrite;
701 tcpd_offset += offsetof(struct tcpopt_desc, bytesTx);
702 typhoon_inc_tx_index(&txRing->lastWrite, 1);
703
704 tcpd->flags = TYPHOON_OPT_DESC | TYPHOON_OPT_TCP_SEG;
705 tcpd->numDesc = 1;
706 tcpd->mss_flags = cpu_to_le16(skb_tso_size(skb));
707 tcpd->mss_flags |= TYPHOON_TSO_FIRST | TYPHOON_TSO_LAST;
708 tcpd->respAddrLo = cpu_to_le32(tcpd_offset);
709 tcpd->bytesTx = cpu_to_le32(skb->len);
710 tcpd->status = 0;
711}
712
Stephen Hemminger613573252009-08-31 19:50:58 +0000713static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714typhoon_start_tx(struct sk_buff *skb, struct net_device *dev)
715{
716 struct typhoon *tp = netdev_priv(dev);
717 struct transmit_ring *txRing;
718 struct tx_desc *txd, *first_txd;
719 dma_addr_t skb_dma;
720 int numDesc;
721
722 /* we have two rings to choose from, but we only use txLo for now
723 * If we start using the Hi ring as well, we'll need to update
724 * typhoon_stop_runtime(), typhoon_interrupt(), typhoon_num_free_tx(),
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -0800725 * and TXHI_ENTRIES to match, as well as update the TSO code below
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 * to get the right DMA address
727 */
728 txRing = &tp->txLoRing;
729
730 /* We need one descriptor for each fragment of the sk_buff, plus the
731 * one for the ->data area of it.
732 *
733 * The docs say a maximum of 16 fragment descriptors per TCP option
734 * descriptor, then make a new packet descriptor and option descriptor
735 * for the next 16 fragments. The engineers say just an option
736 * descriptor is needed. I've tested up to 26 fragments with a single
737 * packet descriptor/option descriptor combo, so I use that for now.
738 *
739 * If problems develop with TSO, check this first.
740 */
741 numDesc = skb_shinfo(skb)->nr_frags + 1;
Herbert Xu89114af2006-07-08 13:34:32 -0700742 if (skb_is_gso(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 numDesc++;
744
745 /* When checking for free space in the ring, we need to also
746 * account for the initial Tx descriptor, and we always must leave
747 * at least one descriptor unused in the ring so that it doesn't
748 * wrap and look empty.
749 *
750 * The only time we should loop here is when we hit the race
751 * between marking the queue awake and updating the cleared index.
752 * Just loop and it will appear. This comes from the acenic driver.
753 */
754 while(unlikely(typhoon_num_free_tx(txRing) < (numDesc + 2)))
755 smp_rmb();
756
757 first_txd = (struct tx_desc *) (txRing->ringBase + txRing->lastWrite);
758 typhoon_inc_tx_index(&txRing->lastWrite, 1);
759
760 first_txd->flags = TYPHOON_TX_DESC | TYPHOON_DESC_VALID;
761 first_txd->numDesc = 0;
762 first_txd->len = 0;
Al Viro71f1bb12007-12-21 06:21:14 +0000763 first_txd->tx_addr = (u64)((unsigned long) skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 first_txd->processFlags = 0;
765
Patrick McHardy84fa7932006-08-29 16:44:56 -0700766 if(skb->ip_summed == CHECKSUM_PARTIAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /* The 3XP will figure out if this is UDP/TCP */
768 first_txd->processFlags |= TYPHOON_TX_PF_TCP_CHKSUM;
769 first_txd->processFlags |= TYPHOON_TX_PF_UDP_CHKSUM;
770 first_txd->processFlags |= TYPHOON_TX_PF_IP_CHKSUM;
771 }
772
773 if(vlan_tx_tag_present(skb)) {
774 first_txd->processFlags |=
775 TYPHOON_TX_PF_INSERT_VLAN | TYPHOON_TX_PF_VLAN_PRIORITY;
776 first_txd->processFlags |=
David Dillowfd59cba2010-10-24 10:20:21 +0000777 cpu_to_le32(htons(vlan_tx_tag_get(skb)) <<
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 TYPHOON_TX_PF_VLAN_TAG_SHIFT);
779 }
780
Herbert Xu89114af2006-07-08 13:34:32 -0700781 if (skb_is_gso(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 first_txd->processFlags |= TYPHOON_TX_PF_TCP_SEGMENT;
783 first_txd->numDesc++;
784
785 typhoon_tso_fill(skb, txRing, tp->txlo_dma_addr);
786 }
787
788 txd = (struct tx_desc *) (txRing->ringBase + txRing->lastWrite);
789 typhoon_inc_tx_index(&txRing->lastWrite, 1);
790
791 /* No need to worry about padding packet -- the firmware pads
792 * it with zeros to ETH_ZLEN for us.
793 */
794 if(skb_shinfo(skb)->nr_frags == 0) {
795 skb_dma = pci_map_single(tp->tx_pdev, skb->data, skb->len,
796 PCI_DMA_TODEVICE);
797 txd->flags = TYPHOON_FRAG_DESC | TYPHOON_DESC_VALID;
798 txd->len = cpu_to_le16(skb->len);
Al Viro71f1bb12007-12-21 06:21:14 +0000799 txd->frag.addr = cpu_to_le32(skb_dma);
800 txd->frag.addrHi = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 first_txd->numDesc++;
802 } else {
803 int i, len;
804
805 len = skb_headlen(skb);
806 skb_dma = pci_map_single(tp->tx_pdev, skb->data, len,
807 PCI_DMA_TODEVICE);
808 txd->flags = TYPHOON_FRAG_DESC | TYPHOON_DESC_VALID;
809 txd->len = cpu_to_le16(len);
Al Viro71f1bb12007-12-21 06:21:14 +0000810 txd->frag.addr = cpu_to_le32(skb_dma);
811 txd->frag.addrHi = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 first_txd->numDesc++;
813
814 for(i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
815 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
816 void *frag_addr;
817
818 txd = (struct tx_desc *) (txRing->ringBase +
819 txRing->lastWrite);
820 typhoon_inc_tx_index(&txRing->lastWrite, 1);
821
822 len = frag->size;
823 frag_addr = (void *) page_address(frag->page) +
824 frag->page_offset;
825 skb_dma = pci_map_single(tp->tx_pdev, frag_addr, len,
826 PCI_DMA_TODEVICE);
827 txd->flags = TYPHOON_FRAG_DESC | TYPHOON_DESC_VALID;
828 txd->len = cpu_to_le16(len);
Al Viro71f1bb12007-12-21 06:21:14 +0000829 txd->frag.addr = cpu_to_le32(skb_dma);
830 txd->frag.addrHi = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 first_txd->numDesc++;
832 }
833 }
834
835 /* Kick the 3XP
836 */
837 wmb();
838 iowrite32(txRing->lastWrite, tp->tx_ioaddr + txRing->writeRegister);
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /* If we don't have room to put the worst case packet on the
841 * queue, then we must stop the queue. We need 2 extra
842 * descriptors -- one to prevent ring wrap, and one for the
843 * Tx header.
844 */
845 numDesc = MAX_SKB_FRAGS + TSO_NUM_DESCRIPTORS + 1;
846
847 if(typhoon_num_free_tx(txRing) < (numDesc + 2)) {
848 netif_stop_queue(dev);
849
850 /* A Tx complete IRQ could have gotten inbetween, making
851 * the ring free again. Only need to recheck here, since
852 * Tx is serialized.
853 */
854 if(typhoon_num_free_tx(txRing) >= (numDesc + 2))
855 netif_wake_queue(dev);
856 }
857
Patrick McHardy6ed10652009-06-23 06:03:08 +0000858 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
861static void
862typhoon_set_rx_mode(struct net_device *dev)
863{
864 struct typhoon *tp = netdev_priv(dev);
865 struct cmd_desc xp_cmd;
866 u32 mc_filter[2];
Al Viro03a710f2007-08-23 00:44:39 -0400867 __le16 filter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 filter = TYPHOON_RX_FILTER_DIRECTED | TYPHOON_RX_FILTER_BROADCAST;
870 if(dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 filter |= TYPHOON_RX_FILTER_PROMISCOUS;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000872 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 (dev->flags & IFF_ALLMULTI)) {
874 /* Too many to match, or accept all multicasts. */
875 filter |= TYPHOON_RX_FILTER_ALL_MCAST;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000876 } else if (!netdev_mc_empty(dev)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000877 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 memset(mc_filter, 0, sizeof(mc_filter));
Jiri Pirko22bedad32010-04-01 21:22:57 +0000880 netdev_for_each_mc_addr(ha, dev) {
881 int bit = ether_crc(ETH_ALEN, ha->addr) & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 mc_filter[bit >> 5] |= 1 << (bit & 0x1f);
883 }
884
885 INIT_COMMAND_NO_RESPONSE(&xp_cmd,
886 TYPHOON_CMD_SET_MULTICAST_HASH);
887 xp_cmd.parm1 = TYPHOON_MCAST_HASH_SET;
888 xp_cmd.parm2 = cpu_to_le32(mc_filter[0]);
889 xp_cmd.parm3 = cpu_to_le32(mc_filter[1]);
890 typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
891
892 filter |= TYPHOON_RX_FILTER_MCAST_HASH;
893 }
894
David Dillow154ccd82010-10-24 10:20:20 +0000895 INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_SET_RX_FILTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 xp_cmd.parm1 = filter;
897 typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
898}
899
900static int
901typhoon_do_get_stats(struct typhoon *tp)
902{
903 struct net_device_stats *stats = &tp->stats;
904 struct net_device_stats *saved = &tp->stats_saved;
905 struct cmd_desc xp_cmd;
906 struct resp_desc xp_resp[7];
907 struct stats_resp *s = (struct stats_resp *) xp_resp;
908 int err;
909
910 INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_READ_STATS);
911 err = typhoon_issue_command(tp, 1, &xp_cmd, 7, xp_resp);
912 if(err < 0)
913 return err;
914
915 /* 3Com's Linux driver uses txMultipleCollisions as it's
916 * collisions value, but there is some other collision info as well...
917 *
918 * The extra status reported would be a good candidate for
919 * ethtool_ops->get_{strings,stats}()
920 */
Eric Dumazet21ff2922010-08-24 04:18:13 +0000921 stats->tx_packets = le32_to_cpu(s->txPackets) +
922 saved->tx_packets;
923 stats->tx_bytes = le64_to_cpu(s->txBytes) +
924 saved->tx_bytes;
925 stats->tx_errors = le32_to_cpu(s->txCarrierLost) +
926 saved->tx_errors;
927 stats->tx_carrier_errors = le32_to_cpu(s->txCarrierLost) +
928 saved->tx_carrier_errors;
929 stats->collisions = le32_to_cpu(s->txMultipleCollisions) +
930 saved->collisions;
931 stats->rx_packets = le32_to_cpu(s->rxPacketsGood) +
932 saved->rx_packets;
933 stats->rx_bytes = le64_to_cpu(s->rxBytesGood) +
934 saved->rx_bytes;
935 stats->rx_fifo_errors = le32_to_cpu(s->rxFifoOverruns) +
936 saved->rx_fifo_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 stats->rx_errors = le32_to_cpu(s->rxFifoOverruns) +
Eric Dumazet21ff2922010-08-24 04:18:13 +0000938 le32_to_cpu(s->BadSSD) + le32_to_cpu(s->rxCrcErrors) +
939 saved->rx_errors;
940 stats->rx_crc_errors = le32_to_cpu(s->rxCrcErrors) +
941 saved->rx_crc_errors;
942 stats->rx_length_errors = le32_to_cpu(s->rxOversized) +
943 saved->rx_length_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 tp->speed = (s->linkStatus & TYPHOON_LINK_100MBPS) ?
945 SPEED_100 : SPEED_10;
946 tp->duplex = (s->linkStatus & TYPHOON_LINK_FULL_DUPLEX) ?
947 DUPLEX_FULL : DUPLEX_HALF;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return 0;
950}
951
952static struct net_device_stats *
953typhoon_get_stats(struct net_device *dev)
954{
955 struct typhoon *tp = netdev_priv(dev);
956 struct net_device_stats *stats = &tp->stats;
957 struct net_device_stats *saved = &tp->stats_saved;
958
959 smp_rmb();
960 if(tp->card_state == Sleeping)
961 return saved;
962
963 if(typhoon_do_get_stats(tp) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +0000964 netdev_err(dev, "error getting stats\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return saved;
966 }
967
968 return stats;
969}
970
971static int
972typhoon_set_mac_address(struct net_device *dev, void *addr)
973{
974 struct sockaddr *saddr = (struct sockaddr *) addr;
975
976 if(netif_running(dev))
977 return -EBUSY;
978
979 memcpy(dev->dev_addr, saddr->sa_data, dev->addr_len);
980 return 0;
981}
982
983static void
984typhoon_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
985{
986 struct typhoon *tp = netdev_priv(dev);
987 struct pci_dev *pci_dev = tp->pdev;
988 struct cmd_desc xp_cmd;
989 struct resp_desc xp_resp[3];
990
991 smp_rmb();
992 if(tp->card_state == Sleeping) {
993 strcpy(info->fw_version, "Sleep image");
994 } else {
995 INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_READ_VERSIONS);
996 if(typhoon_issue_command(tp, 1, &xp_cmd, 3, xp_resp) < 0) {
997 strcpy(info->fw_version, "Unknown runtime");
998 } else {
Al Virofdcfd772007-12-21 06:20:33 +0000999 u32 sleep_ver = le32_to_cpu(xp_resp[0].parm2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 snprintf(info->fw_version, 32, "%02x.%03x.%03x",
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001001 sleep_ver >> 24, (sleep_ver >> 12) & 0xfff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 sleep_ver & 0xfff);
1003 }
1004 }
1005
Joe Perches0bc88e42010-02-21 17:08:47 +00001006 strcpy(info->driver, KBUILD_MODNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 strcpy(info->bus_info, pci_name(pci_dev));
1008}
1009
1010static int
1011typhoon_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1012{
1013 struct typhoon *tp = netdev_priv(dev);
1014
1015 cmd->supported = SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full |
1016 SUPPORTED_Autoneg;
1017
1018 switch (tp->xcvr_select) {
1019 case TYPHOON_XCVR_10HALF:
1020 cmd->advertising = ADVERTISED_10baseT_Half;
1021 break;
1022 case TYPHOON_XCVR_10FULL:
1023 cmd->advertising = ADVERTISED_10baseT_Full;
1024 break;
1025 case TYPHOON_XCVR_100HALF:
1026 cmd->advertising = ADVERTISED_100baseT_Half;
1027 break;
1028 case TYPHOON_XCVR_100FULL:
1029 cmd->advertising = ADVERTISED_100baseT_Full;
1030 break;
1031 case TYPHOON_XCVR_AUTONEG:
1032 cmd->advertising = ADVERTISED_10baseT_Half |
1033 ADVERTISED_10baseT_Full |
1034 ADVERTISED_100baseT_Half |
1035 ADVERTISED_100baseT_Full |
1036 ADVERTISED_Autoneg;
1037 break;
1038 }
1039
1040 if(tp->capabilities & TYPHOON_FIBER) {
1041 cmd->supported |= SUPPORTED_FIBRE;
1042 cmd->advertising |= ADVERTISED_FIBRE;
1043 cmd->port = PORT_FIBRE;
1044 } else {
1045 cmd->supported |= SUPPORTED_10baseT_Half |
1046 SUPPORTED_10baseT_Full |
1047 SUPPORTED_TP;
1048 cmd->advertising |= ADVERTISED_TP;
1049 cmd->port = PORT_TP;
1050 }
1051
1052 /* need to get stats to make these link speed/duplex valid */
1053 typhoon_do_get_stats(tp);
1054 cmd->speed = tp->speed;
1055 cmd->duplex = tp->duplex;
1056 cmd->phy_address = 0;
1057 cmd->transceiver = XCVR_INTERNAL;
1058 if(tp->xcvr_select == TYPHOON_XCVR_AUTONEG)
1059 cmd->autoneg = AUTONEG_ENABLE;
1060 else
1061 cmd->autoneg = AUTONEG_DISABLE;
1062 cmd->maxtxpkt = 1;
1063 cmd->maxrxpkt = 1;
1064
1065 return 0;
1066}
1067
1068static int
1069typhoon_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1070{
1071 struct typhoon *tp = netdev_priv(dev);
1072 struct cmd_desc xp_cmd;
Al Viro03a710f2007-08-23 00:44:39 -04001073 __le16 xcvr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 int err;
1075
1076 err = -EINVAL;
1077 if(cmd->autoneg == AUTONEG_ENABLE) {
1078 xcvr = TYPHOON_XCVR_AUTONEG;
1079 } else {
1080 if(cmd->duplex == DUPLEX_HALF) {
1081 if(cmd->speed == SPEED_10)
1082 xcvr = TYPHOON_XCVR_10HALF;
1083 else if(cmd->speed == SPEED_100)
1084 xcvr = TYPHOON_XCVR_100HALF;
1085 else
1086 goto out;
1087 } else if(cmd->duplex == DUPLEX_FULL) {
1088 if(cmd->speed == SPEED_10)
1089 xcvr = TYPHOON_XCVR_10FULL;
1090 else if(cmd->speed == SPEED_100)
1091 xcvr = TYPHOON_XCVR_100FULL;
1092 else
1093 goto out;
1094 } else
1095 goto out;
1096 }
1097
1098 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_XCVR_SELECT);
Al Virob46281f2007-12-21 06:20:43 +00001099 xp_cmd.parm1 = xcvr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1101 if(err < 0)
1102 goto out;
1103
1104 tp->xcvr_select = xcvr;
1105 if(cmd->autoneg == AUTONEG_ENABLE) {
1106 tp->speed = 0xff; /* invalid */
1107 tp->duplex = 0xff; /* invalid */
1108 } else {
1109 tp->speed = cmd->speed;
1110 tp->duplex = cmd->duplex;
1111 }
1112
1113out:
1114 return err;
1115}
1116
1117static void
1118typhoon_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1119{
1120 struct typhoon *tp = netdev_priv(dev);
1121
1122 wol->supported = WAKE_PHY | WAKE_MAGIC;
1123 wol->wolopts = 0;
1124 if(tp->wol_events & TYPHOON_WAKE_LINK_EVENT)
1125 wol->wolopts |= WAKE_PHY;
1126 if(tp->wol_events & TYPHOON_WAKE_MAGIC_PKT)
1127 wol->wolopts |= WAKE_MAGIC;
1128 memset(&wol->sopass, 0, sizeof(wol->sopass));
1129}
1130
1131static int
1132typhoon_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1133{
1134 struct typhoon *tp = netdev_priv(dev);
1135
1136 if(wol->wolopts & ~(WAKE_PHY | WAKE_MAGIC))
1137 return -EINVAL;
1138
1139 tp->wol_events = 0;
1140 if(wol->wolopts & WAKE_PHY)
1141 tp->wol_events |= TYPHOON_WAKE_LINK_EVENT;
1142 if(wol->wolopts & WAKE_MAGIC)
1143 tp->wol_events |= TYPHOON_WAKE_MAGIC_PKT;
1144
1145 return 0;
1146}
1147
1148static u32
1149typhoon_get_rx_csum(struct net_device *dev)
1150{
1151 /* For now, we don't allow turning off RX checksums.
1152 */
1153 return 1;
1154}
1155
David Dillowfd59cba2010-10-24 10:20:21 +00001156static int
1157typhoon_set_flags(struct net_device *dev, u32 data)
1158{
1159 /* There's no way to turn off the RX VLAN offloading and stripping
1160 * on the current 3XP firmware -- it does not respect the offload
1161 * settings -- so we only allow the user to toggle the TX processing.
1162 */
1163 if (!(data & ETH_FLAG_RXVLAN))
1164 return -EINVAL;
1165
1166 return ethtool_op_set_flags(dev, data,
1167 ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN);
1168}
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170static void
1171typhoon_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
1172{
1173 ering->rx_max_pending = RXENT_ENTRIES;
1174 ering->rx_mini_max_pending = 0;
1175 ering->rx_jumbo_max_pending = 0;
1176 ering->tx_max_pending = TXLO_ENTRIES - 1;
1177
1178 ering->rx_pending = RXENT_ENTRIES;
1179 ering->rx_mini_pending = 0;
1180 ering->rx_jumbo_pending = 0;
1181 ering->tx_pending = TXLO_ENTRIES - 1;
1182}
1183
Jeff Garzik7282d492006-09-13 14:30:00 -04001184static const struct ethtool_ops typhoon_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 .get_settings = typhoon_get_settings,
1186 .set_settings = typhoon_set_settings,
1187 .get_drvinfo = typhoon_get_drvinfo,
1188 .get_wol = typhoon_get_wol,
1189 .set_wol = typhoon_set_wol,
1190 .get_link = ethtool_op_get_link,
1191 .get_rx_csum = typhoon_get_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 .set_tx_csum = ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 .set_tso = ethtool_op_set_tso,
1195 .get_ringparam = typhoon_get_ringparam,
David Dillowfd59cba2010-10-24 10:20:21 +00001196 .set_flags = typhoon_set_flags,
1197 .get_flags = ethtool_op_get_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198};
1199
1200static int
1201typhoon_wait_interrupt(void __iomem *ioaddr)
1202{
1203 int i, err = 0;
1204
1205 for(i = 0; i < TYPHOON_WAIT_TIMEOUT; i++) {
1206 if(ioread32(ioaddr + TYPHOON_REG_INTR_STATUS) &
1207 TYPHOON_INTR_BOOTCMD)
1208 goto out;
1209 udelay(TYPHOON_UDELAY);
1210 }
1211
1212 err = -ETIMEDOUT;
1213
1214out:
1215 iowrite32(TYPHOON_INTR_BOOTCMD, ioaddr + TYPHOON_REG_INTR_STATUS);
1216 return err;
1217}
1218
1219#define shared_offset(x) offsetof(struct typhoon_shared, x)
1220
1221static void
1222typhoon_init_interface(struct typhoon *tp)
1223{
1224 struct typhoon_interface *iface = &tp->shared->iface;
1225 dma_addr_t shared_dma;
1226
1227 memset(tp->shared, 0, sizeof(struct typhoon_shared));
1228
1229 /* The *Hi members of iface are all init'd to zero by the memset().
1230 */
1231 shared_dma = tp->shared_dma + shared_offset(indexes);
1232 iface->ringIndex = cpu_to_le32(shared_dma);
1233
1234 shared_dma = tp->shared_dma + shared_offset(txLo);
1235 iface->txLoAddr = cpu_to_le32(shared_dma);
1236 iface->txLoSize = cpu_to_le32(TXLO_ENTRIES * sizeof(struct tx_desc));
1237
1238 shared_dma = tp->shared_dma + shared_offset(txHi);
1239 iface->txHiAddr = cpu_to_le32(shared_dma);
1240 iface->txHiSize = cpu_to_le32(TXHI_ENTRIES * sizeof(struct tx_desc));
1241
1242 shared_dma = tp->shared_dma + shared_offset(rxBuff);
1243 iface->rxBuffAddr = cpu_to_le32(shared_dma);
1244 iface->rxBuffSize = cpu_to_le32(RXFREE_ENTRIES *
1245 sizeof(struct rx_free));
1246
1247 shared_dma = tp->shared_dma + shared_offset(rxLo);
1248 iface->rxLoAddr = cpu_to_le32(shared_dma);
1249 iface->rxLoSize = cpu_to_le32(RX_ENTRIES * sizeof(struct rx_desc));
1250
1251 shared_dma = tp->shared_dma + shared_offset(rxHi);
1252 iface->rxHiAddr = cpu_to_le32(shared_dma);
1253 iface->rxHiSize = cpu_to_le32(RX_ENTRIES * sizeof(struct rx_desc));
1254
1255 shared_dma = tp->shared_dma + shared_offset(cmd);
1256 iface->cmdAddr = cpu_to_le32(shared_dma);
1257 iface->cmdSize = cpu_to_le32(COMMAND_RING_SIZE);
1258
1259 shared_dma = tp->shared_dma + shared_offset(resp);
1260 iface->respAddr = cpu_to_le32(shared_dma);
1261 iface->respSize = cpu_to_le32(RESPONSE_RING_SIZE);
1262
1263 shared_dma = tp->shared_dma + shared_offset(zeroWord);
1264 iface->zeroAddr = cpu_to_le32(shared_dma);
1265
1266 tp->indexes = &tp->shared->indexes;
1267 tp->txLoRing.ringBase = (u8 *) tp->shared->txLo;
1268 tp->txHiRing.ringBase = (u8 *) tp->shared->txHi;
1269 tp->rxLoRing.ringBase = (u8 *) tp->shared->rxLo;
1270 tp->rxHiRing.ringBase = (u8 *) tp->shared->rxHi;
1271 tp->rxBuffRing.ringBase = (u8 *) tp->shared->rxBuff;
1272 tp->cmdRing.ringBase = (u8 *) tp->shared->cmd;
1273 tp->respRing.ringBase = (u8 *) tp->shared->resp;
1274
1275 tp->txLoRing.writeRegister = TYPHOON_REG_TX_LO_READY;
1276 tp->txHiRing.writeRegister = TYPHOON_REG_TX_HI_READY;
1277
Al Viro8cc085c2007-12-21 06:21:03 +00001278 tp->txlo_dma_addr = le32_to_cpu(iface->txLoAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 tp->card_state = Sleeping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 tp->offload = TYPHOON_OFFLOAD_IP_CHKSUM | TYPHOON_OFFLOAD_TCP_CHKSUM;
1282 tp->offload |= TYPHOON_OFFLOAD_UDP_CHKSUM | TSO_OFFLOAD_ON;
David Dillowfd59cba2010-10-24 10:20:21 +00001283 tp->offload |= TYPHOON_OFFLOAD_VLAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 spin_lock_init(&tp->command_lock);
David Dillow5fe88ea2010-03-04 04:37:16 +00001286
1287 /* Force the writes to the shared memory area out before continuing. */
1288 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291static void
1292typhoon_init_rings(struct typhoon *tp)
1293{
1294 memset(tp->indexes, 0, sizeof(struct typhoon_indexes));
1295
1296 tp->txLoRing.lastWrite = 0;
1297 tp->txHiRing.lastWrite = 0;
1298 tp->rxLoRing.lastWrite = 0;
1299 tp->rxHiRing.lastWrite = 0;
1300 tp->rxBuffRing.lastWrite = 0;
1301 tp->cmdRing.lastWrite = 0;
Julia Lawall13c3ab82010-10-26 00:25:36 +00001302 tp->respRing.lastWrite = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 tp->txLoRing.lastRead = 0;
1305 tp->txHiRing.lastRead = 0;
1306}
1307
Ben Hutchingsb775a752009-02-26 23:21:23 -08001308static const struct firmware *typhoon_fw;
1309
1310static int
1311typhoon_request_firmware(struct typhoon *tp)
1312{
David Dillowa8c9a532009-03-02 22:15:09 -08001313 const struct typhoon_file_header *fHdr;
1314 const struct typhoon_section_header *sHdr;
1315 const u8 *image_data;
1316 u32 numSections;
1317 u32 section_len;
1318 u32 remaining;
Ben Hutchingsb775a752009-02-26 23:21:23 -08001319 int err;
1320
1321 if (typhoon_fw)
1322 return 0;
1323
1324 err = request_firmware(&typhoon_fw, FIRMWARE_NAME, &tp->pdev->dev);
1325 if (err) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001326 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
1327 FIRMWARE_NAME);
Ben Hutchingsb775a752009-02-26 23:21:23 -08001328 return err;
1329 }
1330
David Dillowa8c9a532009-03-02 22:15:09 -08001331 image_data = (u8 *) typhoon_fw->data;
1332 remaining = typhoon_fw->size;
1333 if (remaining < sizeof(struct typhoon_file_header))
1334 goto invalid_fw;
David S. Millerd517c4a2009-03-01 20:24:32 -08001335
David Dillowa8c9a532009-03-02 22:15:09 -08001336 fHdr = (struct typhoon_file_header *) image_data;
1337 if (memcmp(fHdr->tag, "TYPHOON", 8))
1338 goto invalid_fw;
1339
1340 numSections = le32_to_cpu(fHdr->numSections);
1341 image_data += sizeof(struct typhoon_file_header);
1342 remaining -= sizeof(struct typhoon_file_header);
1343
1344 while (numSections--) {
1345 if (remaining < sizeof(struct typhoon_section_header))
1346 goto invalid_fw;
1347
1348 sHdr = (struct typhoon_section_header *) image_data;
1349 image_data += sizeof(struct typhoon_section_header);
1350 section_len = le32_to_cpu(sHdr->len);
1351
1352 if (remaining < section_len)
1353 goto invalid_fw;
1354
1355 image_data += section_len;
1356 remaining -= section_len;
Ben Hutchingsb775a752009-02-26 23:21:23 -08001357 }
1358
1359 return 0;
David S. Millerd517c4a2009-03-01 20:24:32 -08001360
David Dillowa8c9a532009-03-02 22:15:09 -08001361invalid_fw:
Joe Perches0bc88e42010-02-21 17:08:47 +00001362 netdev_err(tp->dev, "Invalid firmware image\n");
David S. Millerd517c4a2009-03-01 20:24:32 -08001363 release_firmware(typhoon_fw);
1364 typhoon_fw = NULL;
David Dillowa8c9a532009-03-02 22:15:09 -08001365 return -EINVAL;
Ben Hutchingsb775a752009-02-26 23:21:23 -08001366}
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368static int
1369typhoon_download_firmware(struct typhoon *tp)
1370{
1371 void __iomem *ioaddr = tp->ioaddr;
1372 struct pci_dev *pdev = tp->pdev;
Ben Hutchingsb775a752009-02-26 23:21:23 -08001373 const struct typhoon_file_header *fHdr;
1374 const struct typhoon_section_header *sHdr;
1375 const u8 *image_data;
David Dillowa8c9a532009-03-02 22:15:09 -08001376 void *dpage;
1377 dma_addr_t dpage_dma;
Al Viro71f1bb12007-12-21 06:21:14 +00001378 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 u32 irqEnabled;
1380 u32 irqMasked;
1381 u32 numSections;
1382 u32 section_len;
David Dillowa8c9a532009-03-02 22:15:09 -08001383 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 u32 load_addr;
1385 u32 hmac;
1386 int i;
1387 int err;
1388
David Dillowa8c9a532009-03-02 22:15:09 -08001389 image_data = (u8 *) typhoon_fw->data;
Ben Hutchingsb775a752009-02-26 23:21:23 -08001390 fHdr = (struct typhoon_file_header *) image_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
David Dillowa8c9a532009-03-02 22:15:09 -08001392 /* Cannot just map the firmware image using pci_map_single() as
1393 * the firmware is vmalloc()'d and may not be physically contiguous,
1394 * so we allocate some consistent memory to copy the sections into.
1395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 err = -ENOMEM;
David Dillowa8c9a532009-03-02 22:15:09 -08001397 dpage = pci_alloc_consistent(pdev, PAGE_SIZE, &dpage_dma);
1398 if(!dpage) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001399 netdev_err(tp->dev, "no DMA mem for firmware\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 goto err_out;
1401 }
1402
1403 irqEnabled = ioread32(ioaddr + TYPHOON_REG_INTR_ENABLE);
1404 iowrite32(irqEnabled | TYPHOON_INTR_BOOTCMD,
1405 ioaddr + TYPHOON_REG_INTR_ENABLE);
1406 irqMasked = ioread32(ioaddr + TYPHOON_REG_INTR_MASK);
1407 iowrite32(irqMasked | TYPHOON_INTR_BOOTCMD,
1408 ioaddr + TYPHOON_REG_INTR_MASK);
1409
1410 err = -ETIMEDOUT;
1411 if(typhoon_wait_status(ioaddr, TYPHOON_STATUS_WAITING_FOR_HOST) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001412 netdev_err(tp->dev, "card ready timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 goto err_out_irq;
1414 }
1415
1416 numSections = le32_to_cpu(fHdr->numSections);
1417 load_addr = le32_to_cpu(fHdr->startAddr);
1418
1419 iowrite32(TYPHOON_INTR_BOOTCMD, ioaddr + TYPHOON_REG_INTR_STATUS);
1420 iowrite32(load_addr, ioaddr + TYPHOON_REG_DOWNLOAD_BOOT_ADDR);
1421 hmac = le32_to_cpu(fHdr->hmacDigest[0]);
1422 iowrite32(hmac, ioaddr + TYPHOON_REG_DOWNLOAD_HMAC_0);
1423 hmac = le32_to_cpu(fHdr->hmacDigest[1]);
1424 iowrite32(hmac, ioaddr + TYPHOON_REG_DOWNLOAD_HMAC_1);
1425 hmac = le32_to_cpu(fHdr->hmacDigest[2]);
1426 iowrite32(hmac, ioaddr + TYPHOON_REG_DOWNLOAD_HMAC_2);
1427 hmac = le32_to_cpu(fHdr->hmacDigest[3]);
1428 iowrite32(hmac, ioaddr + TYPHOON_REG_DOWNLOAD_HMAC_3);
1429 hmac = le32_to_cpu(fHdr->hmacDigest[4]);
1430 iowrite32(hmac, ioaddr + TYPHOON_REG_DOWNLOAD_HMAC_4);
1431 typhoon_post_pci_writes(ioaddr);
1432 iowrite32(TYPHOON_BOOTCMD_RUNTIME_IMAGE, ioaddr + TYPHOON_REG_COMMAND);
1433
1434 image_data += sizeof(struct typhoon_file_header);
1435
1436 /* The ioread32() in typhoon_wait_interrupt() will force the
1437 * last write to the command register to post, so
1438 * we don't need a typhoon_post_pci_writes() after it.
1439 */
1440 for(i = 0; i < numSections; i++) {
1441 sHdr = (struct typhoon_section_header *) image_data;
1442 image_data += sizeof(struct typhoon_section_header);
1443 load_addr = le32_to_cpu(sHdr->startAddr);
1444 section_len = le32_to_cpu(sHdr->len);
1445
David Dillowa8c9a532009-03-02 22:15:09 -08001446 while(section_len) {
1447 len = min_t(u32, section_len, PAGE_SIZE);
1448
1449 if(typhoon_wait_interrupt(ioaddr) < 0 ||
1450 ioread32(ioaddr + TYPHOON_REG_STATUS) !=
1451 TYPHOON_STATUS_WAITING_FOR_SEGMENT) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001452 netdev_err(tp->dev, "segment ready timeout\n");
David Dillowa8c9a532009-03-02 22:15:09 -08001453 goto err_out_irq;
1454 }
1455
1456 /* Do an pseudo IPv4 checksum on the data -- first
1457 * need to convert each u16 to cpu order before
1458 * summing. Fortunately, due to the properties of
1459 * the checksum, we can do this once, at the end.
1460 */
1461 csum = csum_fold(csum_partial_copy_nocheck(image_data,
Joe Perches0bc88e42010-02-21 17:08:47 +00001462 dpage, len,
1463 0));
David Dillowa8c9a532009-03-02 22:15:09 -08001464
1465 iowrite32(len, ioaddr + TYPHOON_REG_BOOT_LENGTH);
1466 iowrite32(le16_to_cpu((__force __le16)csum),
1467 ioaddr + TYPHOON_REG_BOOT_CHECKSUM);
1468 iowrite32(load_addr,
1469 ioaddr + TYPHOON_REG_BOOT_DEST_ADDR);
1470 iowrite32(0, ioaddr + TYPHOON_REG_BOOT_DATA_HI);
1471 iowrite32(dpage_dma, ioaddr + TYPHOON_REG_BOOT_DATA_LO);
1472 typhoon_post_pci_writes(ioaddr);
1473 iowrite32(TYPHOON_BOOTCMD_SEG_AVAILABLE,
Joe Perches0bc88e42010-02-21 17:08:47 +00001474 ioaddr + TYPHOON_REG_COMMAND);
David Dillowa8c9a532009-03-02 22:15:09 -08001475
1476 image_data += len;
1477 load_addr += len;
1478 section_len -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
1480 }
1481
1482 if(typhoon_wait_interrupt(ioaddr) < 0 ||
1483 ioread32(ioaddr + TYPHOON_REG_STATUS) !=
1484 TYPHOON_STATUS_WAITING_FOR_SEGMENT) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001485 netdev_err(tp->dev, "final segment ready timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 goto err_out_irq;
1487 }
1488
1489 iowrite32(TYPHOON_BOOTCMD_DNLD_COMPLETE, ioaddr + TYPHOON_REG_COMMAND);
1490
1491 if(typhoon_wait_status(ioaddr, TYPHOON_STATUS_WAITING_FOR_BOOT) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001492 netdev_err(tp->dev, "boot ready timeout, status 0x%0x\n",
1493 ioread32(ioaddr + TYPHOON_REG_STATUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 goto err_out_irq;
1495 }
1496
1497 err = 0;
1498
1499err_out_irq:
1500 iowrite32(irqMasked, ioaddr + TYPHOON_REG_INTR_MASK);
1501 iowrite32(irqEnabled, ioaddr + TYPHOON_REG_INTR_ENABLE);
1502
David Dillowa8c9a532009-03-02 22:15:09 -08001503 pci_free_consistent(pdev, PAGE_SIZE, dpage, dpage_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505err_out:
1506 return err;
1507}
1508
1509static int
1510typhoon_boot_3XP(struct typhoon *tp, u32 initial_status)
1511{
1512 void __iomem *ioaddr = tp->ioaddr;
1513
1514 if(typhoon_wait_status(ioaddr, initial_status) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001515 netdev_err(tp->dev, "boot ready timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto out_timeout;
1517 }
1518
1519 iowrite32(0, ioaddr + TYPHOON_REG_BOOT_RECORD_ADDR_HI);
1520 iowrite32(tp->shared_dma, ioaddr + TYPHOON_REG_BOOT_RECORD_ADDR_LO);
1521 typhoon_post_pci_writes(ioaddr);
1522 iowrite32(TYPHOON_BOOTCMD_REG_BOOT_RECORD,
1523 ioaddr + TYPHOON_REG_COMMAND);
1524
1525 if(typhoon_wait_status(ioaddr, TYPHOON_STATUS_RUNNING) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001526 netdev_err(tp->dev, "boot finish timeout (status 0x%x)\n",
1527 ioread32(ioaddr + TYPHOON_REG_STATUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 goto out_timeout;
1529 }
1530
1531 /* Clear the Transmit and Command ready registers
1532 */
1533 iowrite32(0, ioaddr + TYPHOON_REG_TX_HI_READY);
1534 iowrite32(0, ioaddr + TYPHOON_REG_CMD_READY);
1535 iowrite32(0, ioaddr + TYPHOON_REG_TX_LO_READY);
1536 typhoon_post_pci_writes(ioaddr);
1537 iowrite32(TYPHOON_BOOTCMD_BOOT, ioaddr + TYPHOON_REG_COMMAND);
1538
1539 return 0;
1540
1541out_timeout:
1542 return -ETIMEDOUT;
1543}
1544
1545static u32
1546typhoon_clean_tx(struct typhoon *tp, struct transmit_ring *txRing,
Al Viro03a710f2007-08-23 00:44:39 -04001547 volatile __le32 * index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 u32 lastRead = txRing->lastRead;
1550 struct tx_desc *tx;
1551 dma_addr_t skb_dma;
1552 int dma_len;
1553 int type;
1554
1555 while(lastRead != le32_to_cpu(*index)) {
1556 tx = (struct tx_desc *) (txRing->ringBase + lastRead);
1557 type = tx->flags & TYPHOON_TYPE_MASK;
1558
1559 if(type == TYPHOON_TX_DESC) {
1560 /* This tx_desc describes a packet.
1561 */
Al Viro71f1bb12007-12-21 06:21:14 +00001562 unsigned long ptr = tx->tx_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 struct sk_buff *skb = (struct sk_buff *) ptr;
1564 dev_kfree_skb_irq(skb);
1565 } else if(type == TYPHOON_FRAG_DESC) {
1566 /* This tx_desc describes a memory mapping. Free it.
1567 */
Al Viro71f1bb12007-12-21 06:21:14 +00001568 skb_dma = (dma_addr_t) le32_to_cpu(tx->frag.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 dma_len = le16_to_cpu(tx->len);
1570 pci_unmap_single(tp->pdev, skb_dma, dma_len,
1571 PCI_DMA_TODEVICE);
1572 }
1573
1574 tx->flags = 0;
1575 typhoon_inc_tx_index(&lastRead, 1);
1576 }
1577
1578 return lastRead;
1579}
1580
1581static void
1582typhoon_tx_complete(struct typhoon *tp, struct transmit_ring *txRing,
Al Viro03a710f2007-08-23 00:44:39 -04001583 volatile __le32 * index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
1585 u32 lastRead;
1586 int numDesc = MAX_SKB_FRAGS + 1;
1587
1588 /* This will need changing if we start to use the Hi Tx ring. */
1589 lastRead = typhoon_clean_tx(tp, txRing, index);
1590 if(netif_queue_stopped(tp->dev) && typhoon_num_free(txRing->lastWrite,
1591 lastRead, TXLO_ENTRIES) > (numDesc + 2))
1592 netif_wake_queue(tp->dev);
1593
1594 txRing->lastRead = lastRead;
1595 smp_wmb();
1596}
1597
1598static void
1599typhoon_recycle_rx_skb(struct typhoon *tp, u32 idx)
1600{
1601 struct typhoon_indexes *indexes = tp->indexes;
1602 struct rxbuff_ent *rxb = &tp->rxbuffers[idx];
1603 struct basic_ring *ring = &tp->rxBuffRing;
1604 struct rx_free *r;
1605
1606 if((ring->lastWrite + sizeof(*r)) % (RXFREE_ENTRIES * sizeof(*r)) ==
Al Viro8a5ed9e2007-12-21 06:20:53 +00001607 le32_to_cpu(indexes->rxBuffCleared)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 /* no room in ring, just drop the skb
1609 */
1610 dev_kfree_skb_any(rxb->skb);
1611 rxb->skb = NULL;
1612 return;
1613 }
1614
1615 r = (struct rx_free *) (ring->ringBase + ring->lastWrite);
1616 typhoon_inc_rxfree_index(&ring->lastWrite, 1);
1617 r->virtAddr = idx;
1618 r->physAddr = cpu_to_le32(rxb->dma_addr);
1619
1620 /* Tell the card about it */
1621 wmb();
1622 indexes->rxBuffReady = cpu_to_le32(ring->lastWrite);
1623}
1624
1625static int
1626typhoon_alloc_rx_skb(struct typhoon *tp, u32 idx)
1627{
1628 struct typhoon_indexes *indexes = tp->indexes;
1629 struct rxbuff_ent *rxb = &tp->rxbuffers[idx];
1630 struct basic_ring *ring = &tp->rxBuffRing;
1631 struct rx_free *r;
1632 struct sk_buff *skb;
1633 dma_addr_t dma_addr;
1634
1635 rxb->skb = NULL;
1636
1637 if((ring->lastWrite + sizeof(*r)) % (RXFREE_ENTRIES * sizeof(*r)) ==
Al Viro8a5ed9e2007-12-21 06:20:53 +00001638 le32_to_cpu(indexes->rxBuffCleared))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return -ENOMEM;
1640
1641 skb = dev_alloc_skb(PKT_BUF_SZ);
1642 if(!skb)
1643 return -ENOMEM;
1644
1645#if 0
1646 /* Please, 3com, fix the firmware to allow DMA to a unaligned
1647 * address! Pretty please?
1648 */
1649 skb_reserve(skb, 2);
1650#endif
1651
1652 skb->dev = tp->dev;
David S. Miller689be432005-06-28 15:25:31 -07001653 dma_addr = pci_map_single(tp->pdev, skb->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
1655
1656 /* Since no card does 64 bit DAC, the high bits will never
1657 * change from zero.
1658 */
1659 r = (struct rx_free *) (ring->ringBase + ring->lastWrite);
1660 typhoon_inc_rxfree_index(&ring->lastWrite, 1);
1661 r->virtAddr = idx;
1662 r->physAddr = cpu_to_le32(dma_addr);
1663 rxb->skb = skb;
1664 rxb->dma_addr = dma_addr;
1665
1666 /* Tell the card about it */
1667 wmb();
1668 indexes->rxBuffReady = cpu_to_le32(ring->lastWrite);
1669 return 0;
1670}
1671
1672static int
Al Viro03a710f2007-08-23 00:44:39 -04001673typhoon_rx(struct typhoon *tp, struct basic_ring *rxRing, volatile __le32 * ready,
1674 volatile __le32 * cleared, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
1676 struct rx_desc *rx;
1677 struct sk_buff *skb, *new_skb;
1678 struct rxbuff_ent *rxb;
1679 dma_addr_t dma_addr;
1680 u32 local_ready;
1681 u32 rxaddr;
1682 int pkt_len;
1683 u32 idx;
Al Viro03a710f2007-08-23 00:44:39 -04001684 __le32 csum_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 int received;
1686
1687 received = 0;
1688 local_ready = le32_to_cpu(*ready);
1689 rxaddr = le32_to_cpu(*cleared);
1690 while(rxaddr != local_ready && budget > 0) {
1691 rx = (struct rx_desc *) (rxRing->ringBase + rxaddr);
1692 idx = rx->addr;
1693 rxb = &tp->rxbuffers[idx];
1694 skb = rxb->skb;
1695 dma_addr = rxb->dma_addr;
1696
1697 typhoon_inc_rx_index(&rxaddr, 1);
1698
1699 if(rx->flags & TYPHOON_RX_ERROR) {
1700 typhoon_recycle_rx_skb(tp, idx);
1701 continue;
1702 }
1703
1704 pkt_len = le16_to_cpu(rx->frameLen);
1705
1706 if(pkt_len < rx_copybreak &&
1707 (new_skb = dev_alloc_skb(pkt_len + 2)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 skb_reserve(new_skb, 2);
1709 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr,
1710 PKT_BUF_SZ,
1711 PCI_DMA_FROMDEVICE);
David S. Miller8c7b7fa2007-07-10 22:08:12 -07001712 skb_copy_to_linear_data(new_skb, skb->data, pkt_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 pci_dma_sync_single_for_device(tp->pdev, dma_addr,
1714 PKT_BUF_SZ,
1715 PCI_DMA_FROMDEVICE);
1716 skb_put(new_skb, pkt_len);
1717 typhoon_recycle_rx_skb(tp, idx);
1718 } else {
1719 new_skb = skb;
1720 skb_put(new_skb, pkt_len);
1721 pci_unmap_single(tp->pdev, dma_addr, PKT_BUF_SZ,
1722 PCI_DMA_FROMDEVICE);
1723 typhoon_alloc_rx_skb(tp, idx);
1724 }
1725 new_skb->protocol = eth_type_trans(new_skb, tp->dev);
1726 csum_bits = rx->rxStatus & (TYPHOON_RX_IP_CHK_GOOD |
1727 TYPHOON_RX_UDP_CHK_GOOD | TYPHOON_RX_TCP_CHK_GOOD);
1728 if(csum_bits ==
Joe Perches8e95a202009-12-03 07:58:21 +00001729 (TYPHOON_RX_IP_CHK_GOOD | TYPHOON_RX_TCP_CHK_GOOD) ||
1730 csum_bits ==
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 (TYPHOON_RX_IP_CHK_GOOD | TYPHOON_RX_UDP_CHK_GOOD)) {
1732 new_skb->ip_summed = CHECKSUM_UNNECESSARY;
1733 } else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001734 skb_checksum_none_assert(new_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
David Dillowfd59cba2010-10-24 10:20:21 +00001736 if (rx->rxStatus & TYPHOON_RX_VLAN)
1737 __vlan_hwaccel_put_tag(new_skb,
1738 ntohl(rx->vlanTag) & 0xffff);
1739 netif_receive_skb(new_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 received++;
1742 budget--;
1743 }
1744 *cleared = cpu_to_le32(rxaddr);
1745
1746 return received;
1747}
1748
1749static void
1750typhoon_fill_free_ring(struct typhoon *tp)
1751{
1752 u32 i;
1753
1754 for(i = 0; i < RXENT_ENTRIES; i++) {
1755 struct rxbuff_ent *rxb = &tp->rxbuffers[i];
1756 if(rxb->skb)
1757 continue;
1758 if(typhoon_alloc_rx_skb(tp, i) < 0)
1759 break;
1760 }
1761}
1762
1763static int
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001764typhoon_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001766 struct typhoon *tp = container_of(napi, struct typhoon, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 struct typhoon_indexes *indexes = tp->indexes;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001768 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 rmb();
1771 if(!tp->awaiting_resp && indexes->respReady != indexes->respCleared)
1772 typhoon_process_response(tp, 0, NULL);
1773
1774 if(le32_to_cpu(indexes->txLoCleared) != tp->txLoRing.lastRead)
1775 typhoon_tx_complete(tp, &tp->txLoRing, &indexes->txLoCleared);
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 work_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 if(indexes->rxHiCleared != indexes->rxHiReady) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001780 work_done += typhoon_rx(tp, &tp->rxHiRing, &indexes->rxHiReady,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 &indexes->rxHiCleared, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
1783
1784 if(indexes->rxLoCleared != indexes->rxLoReady) {
1785 work_done += typhoon_rx(tp, &tp->rxLoRing, &indexes->rxLoReady,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001786 &indexes->rxLoCleared, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
1788
1789 if(le32_to_cpu(indexes->rxBuffCleared) == tp->rxBuffRing.lastWrite) {
1790 /* rxBuff ring is empty, try to fill it. */
1791 typhoon_fill_free_ring(tp);
1792 }
1793
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001794 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001795 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 iowrite32(TYPHOON_INTR_NONE,
1797 tp->ioaddr + TYPHOON_REG_INTR_MASK);
1798 typhoon_post_pci_writes(tp->ioaddr);
1799 }
1800
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001801 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802}
1803
1804static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001805typhoon_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
Jeff Garzik06efcad2007-10-19 03:10:11 -04001807 struct net_device *dev = dev_instance;
Wang Chen8f15ea42008-11-12 23:38:36 -08001808 struct typhoon *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 void __iomem *ioaddr = tp->ioaddr;
1810 u32 intr_status;
1811
1812 intr_status = ioread32(ioaddr + TYPHOON_REG_INTR_STATUS);
1813 if(!(intr_status & TYPHOON_INTR_HOST_INT))
1814 return IRQ_NONE;
1815
1816 iowrite32(intr_status, ioaddr + TYPHOON_REG_INTR_STATUS);
1817
Ben Hutchings288379f2009-01-19 16:43:59 -08001818 if (napi_schedule_prep(&tp->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_MASK);
1820 typhoon_post_pci_writes(ioaddr);
Ben Hutchings288379f2009-01-19 16:43:59 -08001821 __napi_schedule(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 } else {
Joe Perches0bc88e42010-02-21 17:08:47 +00001823 netdev_err(dev, "Error, poll already scheduled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 }
1825 return IRQ_HANDLED;
1826}
1827
1828static void
1829typhoon_free_rx_rings(struct typhoon *tp)
1830{
1831 u32 i;
1832
1833 for(i = 0; i < RXENT_ENTRIES; i++) {
1834 struct rxbuff_ent *rxb = &tp->rxbuffers[i];
1835 if(rxb->skb) {
1836 pci_unmap_single(tp->pdev, rxb->dma_addr, PKT_BUF_SZ,
1837 PCI_DMA_FROMDEVICE);
1838 dev_kfree_skb(rxb->skb);
1839 rxb->skb = NULL;
1840 }
1841 }
1842}
1843
1844static int
Al Viro03a710f2007-08-23 00:44:39 -04001845typhoon_sleep(struct typhoon *tp, pci_power_t state, __le16 events)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 struct pci_dev *pdev = tp->pdev;
1848 void __iomem *ioaddr = tp->ioaddr;
1849 struct cmd_desc xp_cmd;
1850 int err;
1851
1852 INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_ENABLE_WAKE_EVENTS);
1853 xp_cmd.parm1 = events;
1854 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1855 if(err < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001856 netdev_err(tp->dev, "typhoon_sleep(): wake events cmd err %d\n",
1857 err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return err;
1859 }
1860
1861 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_GOTO_SLEEP);
1862 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1863 if(err < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001864 netdev_err(tp->dev, "typhoon_sleep(): sleep cmd err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 return err;
1866 }
1867
1868 if(typhoon_wait_status(ioaddr, TYPHOON_STATUS_SLEEPING) < 0)
1869 return -ETIMEDOUT;
1870
1871 /* Since we cannot monitor the status of the link while sleeping,
1872 * tell the world it went away.
1873 */
1874 netif_carrier_off(tp->dev);
1875
Pavel Machek2a569572005-07-07 17:56:40 -07001876 pci_enable_wake(tp->pdev, state, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 pci_disable_device(pdev);
Pavel Machek2a569572005-07-07 17:56:40 -07001878 return pci_set_power_state(pdev, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
1881static int
1882typhoon_wakeup(struct typhoon *tp, int wait_type)
1883{
1884 struct pci_dev *pdev = tp->pdev;
1885 void __iomem *ioaddr = tp->ioaddr;
1886
1887 pci_set_power_state(pdev, PCI_D0);
1888 pci_restore_state(pdev);
1889
1890 /* Post 2.x.x versions of the Sleep Image require a reset before
1891 * we can download the Runtime Image. But let's not make users of
1892 * the old firmware pay for the reset.
1893 */
1894 iowrite32(TYPHOON_BOOTCMD_WAKEUP, ioaddr + TYPHOON_REG_COMMAND);
1895 if(typhoon_wait_status(ioaddr, TYPHOON_STATUS_WAITING_FOR_HOST) < 0 ||
1896 (tp->capabilities & TYPHOON_WAKEUP_NEEDS_RESET))
1897 return typhoon_reset(ioaddr, wait_type);
1898
1899 return 0;
1900}
1901
1902static int
1903typhoon_start_runtime(struct typhoon *tp)
1904{
1905 struct net_device *dev = tp->dev;
1906 void __iomem *ioaddr = tp->ioaddr;
1907 struct cmd_desc xp_cmd;
1908 int err;
1909
1910 typhoon_init_rings(tp);
1911 typhoon_fill_free_ring(tp);
1912
1913 err = typhoon_download_firmware(tp);
1914 if(err < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001915 netdev_err(tp->dev, "cannot load runtime on 3XP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 goto error_out;
1917 }
1918
1919 if(typhoon_boot_3XP(tp, TYPHOON_STATUS_WAITING_FOR_BOOT) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00001920 netdev_err(tp->dev, "cannot boot 3XP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 err = -EIO;
1922 goto error_out;
1923 }
1924
1925 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_SET_MAX_PKT_SIZE);
1926 xp_cmd.parm1 = cpu_to_le16(PKT_BUF_SZ);
1927 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1928 if(err < 0)
1929 goto error_out;
1930
1931 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_SET_MAC_ADDRESS);
Al Viro03a710f2007-08-23 00:44:39 -04001932 xp_cmd.parm1 = cpu_to_le16(ntohs(*(__be16 *)&dev->dev_addr[0]));
1933 xp_cmd.parm2 = cpu_to_le32(ntohl(*(__be32 *)&dev->dev_addr[2]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1935 if(err < 0)
1936 goto error_out;
1937
1938 /* Disable IRQ coalescing -- we can reenable it when 3Com gives
1939 * us some more information on how to control it.
1940 */
1941 INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_IRQ_COALESCE_CTRL);
1942 xp_cmd.parm1 = 0;
1943 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1944 if(err < 0)
1945 goto error_out;
1946
1947 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_XCVR_SELECT);
1948 xp_cmd.parm1 = tp->xcvr_select;
1949 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1950 if(err < 0)
1951 goto error_out;
1952
1953 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_VLAN_TYPE_WRITE);
Harvey Harrison649aa952009-01-18 22:03:01 -08001954 xp_cmd.parm1 = cpu_to_le16(ETH_P_8021Q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1956 if(err < 0)
1957 goto error_out;
1958
1959 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_SET_OFFLOAD_TASKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 xp_cmd.parm2 = tp->offload;
1961 xp_cmd.parm3 = tp->offload;
1962 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if(err < 0)
1964 goto error_out;
1965
1966 typhoon_set_rx_mode(dev);
1967
1968 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_TX_ENABLE);
1969 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1970 if(err < 0)
1971 goto error_out;
1972
1973 INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_RX_ENABLE);
1974 err = typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
1975 if(err < 0)
1976 goto error_out;
1977
1978 tp->card_state = Running;
1979 smp_wmb();
1980
1981 iowrite32(TYPHOON_INTR_ENABLE_ALL, ioaddr + TYPHOON_REG_INTR_ENABLE);
1982 iowrite32(TYPHOON_INTR_NONE, ioaddr + TYPHOON_REG_INTR_MASK);
1983 typhoon_post_pci_writes(ioaddr);
1984
1985 return 0;
1986
1987error_out:
1988 typhoon_reset(ioaddr, WaitNoSleep);
1989 typhoon_free_rx_rings(tp);
1990 typhoon_init_rings(tp);
1991 return err;
1992}
1993
1994static int
1995typhoon_stop_runtime(struct typhoon *tp, int wait_type)
1996{
1997 struct typhoon_indexes *indexes = tp->indexes;
1998 struct transmit_ring *txLo = &tp->txLoRing;
1999 void __iomem *ioaddr = tp->ioaddr;
2000 struct cmd_desc xp_cmd;
2001 int i;
2002
2003 /* Disable interrupts early, since we can't schedule a poll
2004 * when called with !netif_running(). This will be posted
2005 * when we force the posting of the command.
2006 */
2007 iowrite32(TYPHOON_INTR_NONE, ioaddr + TYPHOON_REG_INTR_ENABLE);
2008
2009 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_RX_DISABLE);
2010 typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
2011
2012 /* Wait 1/2 sec for any outstanding transmits to occur
2013 * We'll cleanup after the reset if this times out.
2014 */
2015 for(i = 0; i < TYPHOON_WAIT_TIMEOUT; i++) {
2016 if(indexes->txLoCleared == cpu_to_le32(txLo->lastWrite))
2017 break;
2018 udelay(TYPHOON_UDELAY);
2019 }
2020
2021 if(i == TYPHOON_WAIT_TIMEOUT)
Joe Perches0bc88e42010-02-21 17:08:47 +00002022 netdev_err(tp->dev, "halt timed out waiting for Tx to complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_TX_DISABLE);
2025 typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
2026
2027 /* save the statistics so when we bring the interface up again,
2028 * the values reported to userspace are correct.
2029 */
2030 tp->card_state = Sleeping;
2031 smp_wmb();
2032 typhoon_do_get_stats(tp);
2033 memcpy(&tp->stats_saved, &tp->stats, sizeof(struct net_device_stats));
2034
2035 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_HALT);
2036 typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL);
2037
2038 if(typhoon_wait_status(ioaddr, TYPHOON_STATUS_HALTED) < 0)
Joe Perches0bc88e42010-02-21 17:08:47 +00002039 netdev_err(tp->dev, "timed out waiting for 3XP to halt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 if(typhoon_reset(ioaddr, wait_type) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002042 netdev_err(tp->dev, "unable to reset 3XP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return -ETIMEDOUT;
2044 }
2045
2046 /* cleanup any outstanding Tx packets */
2047 if(indexes->txLoCleared != cpu_to_le32(txLo->lastWrite)) {
2048 indexes->txLoCleared = cpu_to_le32(txLo->lastWrite);
2049 typhoon_clean_tx(tp, &tp->txLoRing, &indexes->txLoCleared);
2050 }
2051
2052 return 0;
2053}
2054
2055static void
2056typhoon_tx_timeout(struct net_device *dev)
2057{
2058 struct typhoon *tp = netdev_priv(dev);
2059
2060 if(typhoon_reset(tp->ioaddr, WaitNoSleep) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002061 netdev_warn(dev, "could not reset in tx timeout\n");
Adam Buchbindera0893772009-12-11 16:35:38 -05002062 goto truly_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064
2065 /* If we ever start using the Hi ring, it will need cleaning too */
2066 typhoon_clean_tx(tp, &tp->txLoRing, &tp->indexes->txLoCleared);
2067 typhoon_free_rx_rings(tp);
2068
2069 if(typhoon_start_runtime(tp) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002070 netdev_err(dev, "could not start runtime in tx timeout\n");
Adam Buchbindera0893772009-12-11 16:35:38 -05002071 goto truly_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
2073
2074 netif_wake_queue(dev);
2075 return;
2076
Adam Buchbindera0893772009-12-11 16:35:38 -05002077truly_dead:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 /* Reset the hardware, and turn off carrier to avoid more timeouts */
2079 typhoon_reset(tp->ioaddr, NoWait);
2080 netif_carrier_off(dev);
2081}
2082
2083static int
2084typhoon_open(struct net_device *dev)
2085{
2086 struct typhoon *tp = netdev_priv(dev);
2087 int err;
2088
Ben Hutchingsb775a752009-02-26 23:21:23 -08002089 err = typhoon_request_firmware(tp);
2090 if (err)
2091 goto out;
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 err = typhoon_wakeup(tp, WaitSleep);
2094 if(err < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002095 netdev_err(dev, "unable to wakeup device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 goto out_sleep;
2097 }
2098
Julia Lawallaa36ab82009-11-18 08:23:34 +00002099 err = request_irq(dev->irq, typhoon_interrupt, IRQF_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 dev->name, dev);
2101 if(err < 0)
2102 goto out_sleep;
2103
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002104 napi_enable(&tp->napi);
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 err = typhoon_start_runtime(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002107 if(err < 0) {
2108 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 goto out_irq;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 netif_start_queue(dev);
2113 return 0;
2114
2115out_irq:
2116 free_irq(dev->irq, dev);
2117
2118out_sleep:
2119 if(typhoon_boot_3XP(tp, TYPHOON_STATUS_WAITING_FOR_HOST) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002120 netdev_err(dev, "unable to reboot into sleep img\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 typhoon_reset(tp->ioaddr, NoWait);
2122 goto out;
2123 }
2124
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002125 if(typhoon_sleep(tp, PCI_D3hot, 0) < 0)
Joe Perches0bc88e42010-02-21 17:08:47 +00002126 netdev_err(dev, "unable to go back to sleep\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128out:
2129 return err;
2130}
2131
2132static int
2133typhoon_close(struct net_device *dev)
2134{
2135 struct typhoon *tp = netdev_priv(dev);
2136
2137 netif_stop_queue(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002138 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 if(typhoon_stop_runtime(tp, WaitSleep) < 0)
Joe Perches0bc88e42010-02-21 17:08:47 +00002141 netdev_err(dev, "unable to stop runtime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 /* Make sure there is no irq handler running on a different CPU. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 free_irq(dev->irq, dev);
2145
2146 typhoon_free_rx_rings(tp);
2147 typhoon_init_rings(tp);
2148
2149 if(typhoon_boot_3XP(tp, TYPHOON_STATUS_WAITING_FOR_HOST) < 0)
Joe Perches0bc88e42010-02-21 17:08:47 +00002150 netdev_err(dev, "unable to boot sleep image\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 if(typhoon_sleep(tp, PCI_D3hot, 0) < 0)
Joe Perches0bc88e42010-02-21 17:08:47 +00002153 netdev_err(dev, "unable to put card to sleep\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155 return 0;
2156}
2157
2158#ifdef CONFIG_PM
2159static int
2160typhoon_resume(struct pci_dev *pdev)
2161{
2162 struct net_device *dev = pci_get_drvdata(pdev);
2163 struct typhoon *tp = netdev_priv(dev);
2164
2165 /* If we're down, resume when we are upped.
2166 */
2167 if(!netif_running(dev))
2168 return 0;
2169
2170 if(typhoon_wakeup(tp, WaitNoSleep) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002171 netdev_err(dev, "critical: could not wake up in resume\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 goto reset;
2173 }
2174
2175 if(typhoon_start_runtime(tp) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002176 netdev_err(dev, "critical: could not start runtime in resume\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 goto reset;
2178 }
2179
2180 netif_device_attach(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 return 0;
2182
2183reset:
2184 typhoon_reset(tp->ioaddr, NoWait);
2185 return -EBUSY;
2186}
2187
2188static int
2189typhoon_suspend(struct pci_dev *pdev, pm_message_t state)
2190{
2191 struct net_device *dev = pci_get_drvdata(pdev);
2192 struct typhoon *tp = netdev_priv(dev);
2193 struct cmd_desc xp_cmd;
2194
2195 /* If we're down, we're already suspended.
2196 */
2197 if(!netif_running(dev))
2198 return 0;
2199
David Dillowfd59cba2010-10-24 10:20:21 +00002200 /* TYPHOON_OFFLOAD_VLAN is always on now, so this doesn't work */
2201 if(tp->wol_events & TYPHOON_WAKE_MAGIC_PKT)
2202 netdev_warn(dev, "cannot do WAKE_MAGIC with VLAN offloading\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204 netif_device_detach(dev);
2205
2206 if(typhoon_stop_runtime(tp, WaitNoSleep) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002207 netdev_err(dev, "unable to stop runtime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 goto need_resume;
2209 }
2210
2211 typhoon_free_rx_rings(tp);
2212 typhoon_init_rings(tp);
2213
2214 if(typhoon_boot_3XP(tp, TYPHOON_STATUS_WAITING_FOR_HOST) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002215 netdev_err(dev, "unable to boot sleep image\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 goto need_resume;
2217 }
2218
2219 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_SET_MAC_ADDRESS);
Al Viro03a710f2007-08-23 00:44:39 -04002220 xp_cmd.parm1 = cpu_to_le16(ntohs(*(__be16 *)&dev->dev_addr[0]));
2221 xp_cmd.parm2 = cpu_to_le32(ntohl(*(__be32 *)&dev->dev_addr[2]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if(typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002223 netdev_err(dev, "unable to set mac address in suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 goto need_resume;
2225 }
2226
2227 INIT_COMMAND_NO_RESPONSE(&xp_cmd, TYPHOON_CMD_SET_RX_FILTER);
2228 xp_cmd.parm1 = TYPHOON_RX_FILTER_DIRECTED | TYPHOON_RX_FILTER_BROADCAST;
2229 if(typhoon_issue_command(tp, 1, &xp_cmd, 0, NULL) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002230 netdev_err(dev, "unable to set rx filter in suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 goto need_resume;
2232 }
2233
Pavel Machek2a569572005-07-07 17:56:40 -07002234 if(typhoon_sleep(tp, pci_choose_state(pdev, state), tp->wol_events) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002235 netdev_err(dev, "unable to put card to sleep\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 goto need_resume;
2237 }
2238
2239 return 0;
2240
2241need_resume:
2242 typhoon_resume(pdev);
2243 return -EBUSY;
2244}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245#endif
2246
2247static int __devinit
2248typhoon_test_mmio(struct pci_dev *pdev)
2249{
2250 void __iomem *ioaddr = pci_iomap(pdev, 1, 128);
2251 int mode = 0;
2252 u32 val;
2253
2254 if(!ioaddr)
2255 goto out;
2256
2257 if(ioread32(ioaddr + TYPHOON_REG_STATUS) !=
2258 TYPHOON_STATUS_WAITING_FOR_HOST)
2259 goto out_unmap;
2260
2261 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_MASK);
2262 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_STATUS);
2263 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_ENABLE);
2264
2265 /* Ok, see if we can change our interrupt status register by
2266 * sending ourselves an interrupt. If so, then MMIO works.
2267 * The 50usec delay is arbitrary -- it could probably be smaller.
2268 */
2269 val = ioread32(ioaddr + TYPHOON_REG_INTR_STATUS);
2270 if((val & TYPHOON_INTR_SELF) == 0) {
2271 iowrite32(1, ioaddr + TYPHOON_REG_SELF_INTERRUPT);
2272 ioread32(ioaddr + TYPHOON_REG_INTR_STATUS);
2273 udelay(50);
2274 val = ioread32(ioaddr + TYPHOON_REG_INTR_STATUS);
2275 if(val & TYPHOON_INTR_SELF)
2276 mode = 1;
2277 }
2278
2279 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_MASK);
2280 iowrite32(TYPHOON_INTR_ALL, ioaddr + TYPHOON_REG_INTR_STATUS);
2281 iowrite32(TYPHOON_INTR_NONE, ioaddr + TYPHOON_REG_INTR_ENABLE);
2282 ioread32(ioaddr + TYPHOON_REG_INTR_STATUS);
2283
2284out_unmap:
2285 pci_iounmap(pdev, ioaddr);
2286
2287out:
2288 if(!mode)
Joe Perches0bc88e42010-02-21 17:08:47 +00002289 pr_info("%s: falling back to port IO\n", pci_name(pdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 return mode;
2291}
2292
Stephen Hemminger8bdd5552009-01-07 17:29:46 -08002293static const struct net_device_ops typhoon_netdev_ops = {
2294 .ndo_open = typhoon_open,
2295 .ndo_stop = typhoon_close,
2296 .ndo_start_xmit = typhoon_start_tx,
2297 .ndo_set_multicast_list = typhoon_set_rx_mode,
2298 .ndo_tx_timeout = typhoon_tx_timeout,
2299 .ndo_get_stats = typhoon_get_stats,
2300 .ndo_validate_addr = eth_validate_addr,
2301 .ndo_set_mac_address = typhoon_set_mac_address,
2302 .ndo_change_mtu = eth_change_mtu,
Stephen Hemminger8bdd5552009-01-07 17:29:46 -08002303};
2304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305static int __devinit
2306typhoon_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
2307{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 struct net_device *dev;
2309 struct typhoon *tp;
2310 int card_id = (int) ent->driver_data;
2311 void __iomem *ioaddr;
2312 void *shared;
2313 dma_addr_t shared_dma;
2314 struct cmd_desc xp_cmd;
2315 struct resp_desc xp_resp[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 int err = 0;
Joe Perches0bc88e42010-02-21 17:08:47 +00002317 const char *err_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 dev = alloc_etherdev(sizeof(*tp));
2320 if(dev == NULL) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002321 err_msg = "unable to alloc new net device";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 err = -ENOMEM;
2323 goto error_out;
2324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 SET_NETDEV_DEV(dev, &pdev->dev);
2326
2327 err = pci_enable_device(pdev);
2328 if(err < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002329 err_msg = "unable to enable device";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 goto error_out_dev;
2331 }
2332
2333 err = pci_set_mwi(pdev);
2334 if(err < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002335 err_msg = "unable to set MWI";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 goto error_out_disable;
2337 }
2338
Yang Hongyang284901a2009-04-06 19:01:15 -07002339 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 if(err < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002341 err_msg = "No usable DMA configuration";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 goto error_out_mwi;
2343 }
2344
2345 /* sanity checks on IO and MMIO BARs
2346 */
2347 if(!(pci_resource_flags(pdev, 0) & IORESOURCE_IO)) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002348 err_msg = "region #1 not a PCI IO resource, aborting";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 err = -ENODEV;
2350 goto error_out_mwi;
2351 }
2352 if(pci_resource_len(pdev, 0) < 128) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002353 err_msg = "Invalid PCI IO region size, aborting";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 err = -ENODEV;
2355 goto error_out_mwi;
2356 }
2357 if(!(pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002358 err_msg = "region #1 not a PCI MMIO resource, aborting";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 err = -ENODEV;
2360 goto error_out_mwi;
2361 }
2362 if(pci_resource_len(pdev, 1) < 128) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002363 err_msg = "Invalid PCI MMIO region size, aborting";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 err = -ENODEV;
2365 goto error_out_mwi;
2366 }
2367
Joe Perches0bc88e42010-02-21 17:08:47 +00002368 err = pci_request_regions(pdev, KBUILD_MODNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if(err < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002370 err_msg = "could not request regions";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 goto error_out_mwi;
2372 }
2373
2374 /* map our registers
2375 */
2376 if(use_mmio != 0 && use_mmio != 1)
2377 use_mmio = typhoon_test_mmio(pdev);
2378
2379 ioaddr = pci_iomap(pdev, use_mmio, 128);
2380 if (!ioaddr) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002381 err_msg = "cannot remap registers, aborting";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 err = -EIO;
2383 goto error_out_regions;
2384 }
2385
2386 /* allocate pci dma space for rx and tx descriptor rings
2387 */
2388 shared = pci_alloc_consistent(pdev, sizeof(struct typhoon_shared),
2389 &shared_dma);
2390 if(!shared) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002391 err_msg = "could not allocate DMA memory";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 err = -ENOMEM;
2393 goto error_out_remap;
2394 }
2395
2396 dev->irq = pdev->irq;
2397 tp = netdev_priv(dev);
2398 tp->shared = (struct typhoon_shared *) shared;
2399 tp->shared_dma = shared_dma;
2400 tp->pdev = pdev;
2401 tp->tx_pdev = pdev;
2402 tp->ioaddr = ioaddr;
2403 tp->tx_ioaddr = ioaddr;
2404 tp->dev = dev;
2405
2406 /* Init sequence:
2407 * 1) Reset the adapter to clear any bad juju
2408 * 2) Reload the sleep image
2409 * 3) Boot the sleep image
2410 * 4) Get the hardware address.
2411 * 5) Put the card to sleep.
2412 */
2413 if (typhoon_reset(ioaddr, WaitSleep) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002414 err_msg = "could not reset 3XP";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 err = -EIO;
2416 goto error_out_dma;
2417 }
2418
2419 /* Now that we've reset the 3XP and are sure it's not going to
2420 * write all over memory, enable bus mastering, and save our
2421 * state for resuming after a suspend.
2422 */
2423 pci_set_master(pdev);
2424 pci_save_state(pdev);
2425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 typhoon_init_interface(tp);
2427 typhoon_init_rings(tp);
2428
2429 if(typhoon_boot_3XP(tp, TYPHOON_STATUS_WAITING_FOR_HOST) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002430 err_msg = "cannot boot 3XP sleep image";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 err = -EIO;
2432 goto error_out_reset;
2433 }
2434
2435 INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_READ_MAC_ADDRESS);
2436 if(typhoon_issue_command(tp, 1, &xp_cmd, 1, xp_resp) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002437 err_msg = "cannot read MAC address";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 err = -EIO;
2439 goto error_out_reset;
2440 }
2441
Al Viro03a710f2007-08-23 00:44:39 -04002442 *(__be16 *)&dev->dev_addr[0] = htons(le16_to_cpu(xp_resp[0].parm1));
2443 *(__be32 *)&dev->dev_addr[2] = htonl(le32_to_cpu(xp_resp[0].parm2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 if(!is_valid_ether_addr(dev->dev_addr)) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002446 err_msg = "Could not obtain valid ethernet address, aborting";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 goto error_out_reset;
2448 }
2449
2450 /* Read the Sleep Image version last, so the response is valid
2451 * later when we print out the version reported.
2452 */
2453 INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_READ_VERSIONS);
2454 if(typhoon_issue_command(tp, 1, &xp_cmd, 3, xp_resp) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002455 err_msg = "Could not get Sleep Image version";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 goto error_out_reset;
2457 }
2458
2459 tp->capabilities = typhoon_card_info[card_id].capabilities;
2460 tp->xcvr_select = TYPHOON_XCVR_AUTONEG;
2461
2462 /* Typhoon 1.0 Sleep Images return one response descriptor to the
2463 * READ_VERSIONS command. Those versions are OK after waking up
2464 * from sleep without needing a reset. Typhoon 1.1+ Sleep Images
2465 * seem to need a little extra help to get started. Since we don't
2466 * know how to nudge it along, just kick it.
2467 */
2468 if(xp_resp[0].numDesc != 0)
2469 tp->capabilities |= TYPHOON_WAKEUP_NEEDS_RESET;
2470
2471 if(typhoon_sleep(tp, PCI_D3hot, 0) < 0) {
Joe Perches0bc88e42010-02-21 17:08:47 +00002472 err_msg = "cannot put adapter to sleep";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 err = -EIO;
2474 goto error_out_reset;
2475 }
2476
2477 /* The chip-specific entries in the device structure. */
Stephen Hemminger8bdd5552009-01-07 17:29:46 -08002478 dev->netdev_ops = &typhoon_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002479 netif_napi_add(dev, &tp->napi, typhoon_poll, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemminger25805dc2007-06-01 09:44:01 -07002481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 SET_ETHTOOL_OPS(dev, &typhoon_ethtool_ops);
2483
2484 /* We can handle scatter gather, up to 16 entries, and
2485 * we can do IP checksumming (only version 4, doh...)
2486 */
2487 dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
2488 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
2489 dev->features |= NETIF_F_TSO;
2490
Joe Perches0bc88e42010-02-21 17:08:47 +00002491 if(register_netdev(dev) < 0) {
2492 err_msg = "unable to register netdev";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 goto error_out_reset;
Joe Perches0bc88e42010-02-21 17:08:47 +00002494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
2496 pci_set_drvdata(pdev, dev);
2497
Joe Perches0bc88e42010-02-21 17:08:47 +00002498 netdev_info(dev, "%s at %s 0x%llx, %pM\n",
2499 typhoon_card_info[card_id].name,
2500 use_mmio ? "MMIO" : "IO",
2501 (unsigned long long)pci_resource_start(pdev, use_mmio),
2502 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
2504 /* xp_resp still contains the response to the READ_VERSIONS command.
2505 * For debugging, let the user know what version he has.
2506 */
2507 if(xp_resp[0].numDesc == 0) {
2508 /* This is the Typhoon 1.0 type Sleep Image, last 16 bits
2509 * of version is Month/Day of build.
2510 */
2511 u16 monthday = le32_to_cpu(xp_resp[0].parm2) & 0xffff;
Joe Perches0bc88e42010-02-21 17:08:47 +00002512 netdev_info(dev, "Typhoon 1.0 Sleep Image built %02u/%02u/2000\n",
2513 monthday >> 8, monthday & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 } else if(xp_resp[0].numDesc == 2) {
2515 /* This is the Typhoon 1.1+ type Sleep Image
2516 */
2517 u32 sleep_ver = le32_to_cpu(xp_resp[0].parm2);
2518 u8 *ver_string = (u8 *) &xp_resp[1];
2519 ver_string[25] = 0;
Joe Perches0bc88e42010-02-21 17:08:47 +00002520 netdev_info(dev, "Typhoon 1.1+ Sleep Image version %02x.%03x.%03x %s\n",
2521 sleep_ver >> 24, (sleep_ver >> 12) & 0xfff,
2522 sleep_ver & 0xfff, ver_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 } else {
Joe Perches0bc88e42010-02-21 17:08:47 +00002524 netdev_warn(dev, "Unknown Sleep Image version (%u:%04x)\n",
2525 xp_resp[0].numDesc, le32_to_cpu(xp_resp[0].parm2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 return 0;
2529
2530error_out_reset:
2531 typhoon_reset(ioaddr, NoWait);
2532
2533error_out_dma:
2534 pci_free_consistent(pdev, sizeof(struct typhoon_shared),
2535 shared, shared_dma);
2536error_out_remap:
2537 pci_iounmap(pdev, ioaddr);
2538error_out_regions:
2539 pci_release_regions(pdev);
2540error_out_mwi:
2541 pci_clear_mwi(pdev);
2542error_out_disable:
2543 pci_disable_device(pdev);
2544error_out_dev:
2545 free_netdev(dev);
2546error_out:
Joe Perches0bc88e42010-02-21 17:08:47 +00002547 pr_err("%s: %s\n", pci_name(pdev), err_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 return err;
2549}
2550
2551static void __devexit
2552typhoon_remove_one(struct pci_dev *pdev)
2553{
2554 struct net_device *dev = pci_get_drvdata(pdev);
2555 struct typhoon *tp = netdev_priv(dev);
2556
2557 unregister_netdev(dev);
2558 pci_set_power_state(pdev, PCI_D0);
2559 pci_restore_state(pdev);
2560 typhoon_reset(tp->ioaddr, NoWait);
2561 pci_iounmap(pdev, tp->ioaddr);
2562 pci_free_consistent(pdev, sizeof(struct typhoon_shared),
2563 tp->shared, tp->shared_dma);
2564 pci_release_regions(pdev);
2565 pci_clear_mwi(pdev);
2566 pci_disable_device(pdev);
2567 pci_set_drvdata(pdev, NULL);
2568 free_netdev(dev);
2569}
2570
2571static struct pci_driver typhoon_driver = {
Joe Perches0bc88e42010-02-21 17:08:47 +00002572 .name = KBUILD_MODNAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 .id_table = typhoon_pci_tbl,
2574 .probe = typhoon_init_one,
2575 .remove = __devexit_p(typhoon_remove_one),
2576#ifdef CONFIG_PM
2577 .suspend = typhoon_suspend,
2578 .resume = typhoon_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579#endif
2580};
2581
2582static int __init
2583typhoon_init(void)
2584{
Jeff Garzik29917622006-08-19 17:48:59 -04002585 return pci_register_driver(&typhoon_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586}
2587
2588static void __exit
2589typhoon_cleanup(void)
2590{
David Dillowa8c9a532009-03-02 22:15:09 -08002591 if (typhoon_fw)
Ben Hutchingsb775a752009-02-26 23:21:23 -08002592 release_firmware(typhoon_fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 pci_unregister_driver(&typhoon_driver);
2594}
2595
2596module_init(typhoon_init);
2597module_exit(typhoon_cleanup);