blob: f90cac43130d8af981e7729c84175472728c5fef [file] [log] [blame]
David S. Miller1f26dac2005-09-27 15:24:13 -07001/* cassini.c: Sun Microsystems Cassini(+) ethernet driver.
2 *
3 * Copyright (C) 2004 Sun Microsystems Inc.
4 * Copyright (C) 2003 Adrian Sun (asun@darksunrising.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 *
21 * This driver uses the sungem driver (c) David Miller
22 * (davem@redhat.com) as its basis.
23 *
24 * The cassini chip has a number of features that distinguish it from
25 * the gem chip:
26 * 4 transmit descriptor rings that are used for either QoS (VLAN) or
27 * load balancing (non-VLAN mode)
28 * batching of multiple packets
29 * multiple CPU dispatching
30 * page-based RX descriptor engine with separate completion rings
31 * Gigabit support (GMII and PCS interface)
32 * MIF link up/down detection works
33 *
34 * RX is handled by page sized buffers that are attached as fragments to
35 * the skb. here's what's done:
36 * -- driver allocates pages at a time and keeps reference counts
37 * on them.
38 * -- the upper protocol layers assume that the header is in the skb
39 * itself. as a result, cassini will copy a small amount (64 bytes)
40 * to make them happy.
41 * -- driver appends the rest of the data pages as frags to skbuffs
42 * and increments the reference count
43 * -- on page reclamation, the driver swaps the page with a spare page.
44 * if that page is still in use, it frees its reference to that page,
45 * and allocates a new page for use. otherwise, it just recycles the
Jeff Garzik6aa20a22006-09-13 13:24:59 -040046 * the page.
David S. Miller1f26dac2005-09-27 15:24:13 -070047 *
48 * NOTE: cassini can parse the header. however, it's not worth it
49 * as long as the network stack requires a header copy.
50 *
51 * TX has 4 queues. currently these queues are used in a round-robin
52 * fashion for load balancing. They can also be used for QoS. for that
53 * to work, however, QoS information needs to be exposed down to the driver
54 * level so that subqueues get targetted to particular transmit rings.
55 * alternatively, the queues can be configured via use of the all-purpose
56 * ioctl.
57 *
58 * RX DATA: the rx completion ring has all the info, but the rx desc
59 * ring has all of the data. RX can conceivably come in under multiple
60 * interrupts, but the INT# assignment needs to be set up properly by
61 * the BIOS and conveyed to the driver. PCI BIOSes don't know how to do
62 * that. also, the two descriptor rings are designed to distinguish between
Jeff Garzik6aa20a22006-09-13 13:24:59 -040063 * encrypted and non-encrypted packets, but we use them for buffering
David S. Miller1f26dac2005-09-27 15:24:13 -070064 * instead.
65 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040066 * by default, the selective clear mask is set up to process rx packets.
David S. Miller1f26dac2005-09-27 15:24:13 -070067 */
68
David S. Miller1f26dac2005-09-27 15:24:13 -070069
70#include <linux/module.h>
71#include <linux/kernel.h>
72#include <linux/types.h>
73#include <linux/compiler.h>
74#include <linux/slab.h>
75#include <linux/delay.h>
76#include <linux/init.h>
Jaswinder Singhfcaa4062008-09-22 19:27:10 -070077#include <linux/vmalloc.h>
David S. Miller1f26dac2005-09-27 15:24:13 -070078#include <linux/ioport.h>
79#include <linux/pci.h>
80#include <linux/mm.h>
81#include <linux/highmem.h>
82#include <linux/list.h>
83#include <linux/dma-mapping.h>
84
85#include <linux/netdevice.h>
86#include <linux/etherdevice.h>
87#include <linux/skbuff.h>
88#include <linux/ethtool.h>
89#include <linux/crc32.h>
90#include <linux/random.h>
91#include <linux/mii.h>
92#include <linux/ip.h>
93#include <linux/tcp.h>
Ingo Molnar758df692006-03-20 22:34:09 -080094#include <linux/mutex.h>
Jaswinder Singhfcaa4062008-09-22 19:27:10 -070095#include <linux/firmware.h>
David S. Miller1f26dac2005-09-27 15:24:13 -070096
97#include <net/checksum.h>
98
99#include <asm/atomic.h>
100#include <asm/system.h>
101#include <asm/io.h>
102#include <asm/byteorder.h>
103#include <asm/uaccess.h>
104
105#define cas_page_map(x) kmap_atomic((x), KM_SKB_DATA_SOFTIRQ)
106#define cas_page_unmap(x) kunmap_atomic((x), KM_SKB_DATA_SOFTIRQ)
107#define CAS_NCPUS num_online_cpus()
108
Alexey Dobriyan257ddbd2010-01-27 10:17:41 +0000109#ifdef CONFIG_CASSINI_NAPI
David S. Miller1f26dac2005-09-27 15:24:13 -0700110#define USE_NAPI
111#define cas_skb_release(x) netif_receive_skb(x)
112#else
113#define cas_skb_release(x) netif_rx(x)
114#endif
115
116/* select which firmware to use */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400117#define USE_HP_WORKAROUND
David S. Miller1f26dac2005-09-27 15:24:13 -0700118#define HP_WORKAROUND_DEFAULT /* select which firmware to use as default */
119#define CAS_HP_ALT_FIRMWARE cas_prog_null /* alternate firmware */
120
121#include "cassini.h"
122
123#define USE_TX_COMPWB /* use completion writeback registers */
124#define USE_CSMA_CD_PROTO /* standard CSMA/CD */
125#define USE_RX_BLANK /* hw interrupt mitigation */
126#undef USE_ENTROPY_DEV /* don't test for entropy device */
127
128/* NOTE: these aren't useable unless PCI interrupts can be assigned.
129 * also, we need to make cp->lock finer-grained.
130 */
131#undef USE_PCI_INTB
132#undef USE_PCI_INTC
133#undef USE_PCI_INTD
134#undef USE_QOS
135
136#undef USE_VPD_DEBUG /* debug vpd information if defined */
137
138/* rx processing options */
139#define USE_PAGE_ORDER /* specify to allocate large rx pages */
140#define RX_DONT_BATCH 0 /* if 1, don't batch flows */
141#define RX_COPY_ALWAYS 0 /* if 0, use frags */
142#define RX_COPY_MIN 64 /* copy a little to make upper layers happy */
143#undef RX_COUNT_BUFFERS /* define to calculate RX buffer stats */
144
145#define DRV_MODULE_NAME "cassini"
146#define PFX DRV_MODULE_NAME ": "
David S. Millerb1443e22008-05-21 17:05:34 -0700147#define DRV_MODULE_VERSION "1.6"
148#define DRV_MODULE_RELDATE "21 May 2008"
David S. Miller1f26dac2005-09-27 15:24:13 -0700149
150#define CAS_DEF_MSG_ENABLE \
151 (NETIF_MSG_DRV | \
152 NETIF_MSG_PROBE | \
153 NETIF_MSG_LINK | \
154 NETIF_MSG_TIMER | \
155 NETIF_MSG_IFDOWN | \
156 NETIF_MSG_IFUP | \
157 NETIF_MSG_RX_ERR | \
158 NETIF_MSG_TX_ERR)
159
160/* length of time before we decide the hardware is borked,
161 * and dev->tx_timeout() should be called to fix the problem
162 */
163#define CAS_TX_TIMEOUT (HZ)
164#define CAS_LINK_TIMEOUT (22*HZ/10)
165#define CAS_LINK_FAST_TIMEOUT (1)
166
167/* timeout values for state changing. these specify the number
168 * of 10us delays to be used before giving up.
169 */
170#define STOP_TRIES_PHY 1000
171#define STOP_TRIES 5000
172
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400173/* specify a minimum frame size to deal with some fifo issues
David S. Miller1f26dac2005-09-27 15:24:13 -0700174 * max mtu == 2 * page size - ethernet header - 64 - swivel =
175 * 2 * page_size - 0x50
176 */
177#define CAS_MIN_FRAME 97
178#define CAS_1000MB_MIN_FRAME 255
179#define CAS_MIN_MTU 60
180#define CAS_MAX_MTU min(((cp->page_size << 1) - 0x50), 9000)
181
182#if 1
183/*
184 * Eliminate these and use separate atomic counters for each, to
185 * avoid a race condition.
186 */
187#else
188#define CAS_RESET_MTU 1
189#define CAS_RESET_ALL 2
190#define CAS_RESET_SPARE 3
191#endif
192
193static char version[] __devinitdata =
194 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
195
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800196static int cassini_debug = -1; /* -1 == use CAS_DEF_MSG_ENABLE as value */
197static int link_mode;
198
David S. Miller1f26dac2005-09-27 15:24:13 -0700199MODULE_AUTHOR("Adrian Sun (asun@darksunrising.com)");
200MODULE_DESCRIPTION("Sun Cassini(+) ethernet driver");
201MODULE_LICENSE("GPL");
Jaswinder Singhfcaa4062008-09-22 19:27:10 -0700202MODULE_FIRMWARE("sun/cassini.bin");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800203module_param(cassini_debug, int, 0);
David S. Miller1f26dac2005-09-27 15:24:13 -0700204MODULE_PARM_DESC(cassini_debug, "Cassini bitmapped debugging message enable value");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800205module_param(link_mode, int, 0);
David S. Miller1f26dac2005-09-27 15:24:13 -0700206MODULE_PARM_DESC(link_mode, "default link mode");
207
208/*
209 * Work around for a PCS bug in which the link goes down due to the chip
210 * being confused and never showing a link status of "up."
211 */
212#define DEFAULT_LINKDOWN_TIMEOUT 5
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400213/*
David S. Miller1f26dac2005-09-27 15:24:13 -0700214 * Value in seconds, for user input.
215 */
216static int linkdown_timeout = DEFAULT_LINKDOWN_TIMEOUT;
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800217module_param(linkdown_timeout, int, 0);
David S. Miller1f26dac2005-09-27 15:24:13 -0700218MODULE_PARM_DESC(linkdown_timeout,
219"min reset interval in sec. for PCS linkdown issue; disabled if not positive");
220
221/*
222 * value in 'ticks' (units used by jiffies). Set when we init the
223 * module because 'HZ' in actually a function call on some flavors of
224 * Linux. This will default to DEFAULT_LINKDOWN_TIMEOUT * HZ.
225 */
226static int link_transition_timeout;
227
228
David S. Miller1f26dac2005-09-27 15:24:13 -0700229
230static u16 link_modes[] __devinitdata = {
231 BMCR_ANENABLE, /* 0 : autoneg */
232 0, /* 1 : 10bt half duplex */
233 BMCR_SPEED100, /* 2 : 100bt half duplex */
234 BMCR_FULLDPLX, /* 3 : 10bt full duplex */
235 BMCR_SPEED100|BMCR_FULLDPLX, /* 4 : 100bt full duplex */
236 CAS_BMCR_SPEED1000|BMCR_FULLDPLX /* 5 : 1000bt full duplex */
237};
238
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000239static DEFINE_PCI_DEVICE_TABLE(cas_pci_tbl) = {
David S. Miller1f26dac2005-09-27 15:24:13 -0700240 { PCI_VENDOR_ID_SUN, PCI_DEVICE_ID_SUN_CASSINI,
241 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
242 { PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SATURN,
243 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
244 { 0, }
245};
246
247MODULE_DEVICE_TABLE(pci, cas_pci_tbl);
248
249static void cas_set_link_modes(struct cas *cp);
250
251static inline void cas_lock_tx(struct cas *cp)
252{
253 int i;
254
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400255 for (i = 0; i < N_TX_RINGS; i++)
David S. Miller1f26dac2005-09-27 15:24:13 -0700256 spin_lock(&cp->tx_lock[i]);
257}
258
259static inline void cas_lock_all(struct cas *cp)
260{
261 spin_lock_irq(&cp->lock);
262 cas_lock_tx(cp);
263}
264
265/* WTZ: QA was finding deadlock problems with the previous
266 * versions after long test runs with multiple cards per machine.
267 * See if replacing cas_lock_all with safer versions helps. The
268 * symptoms QA is reporting match those we'd expect if interrupts
269 * aren't being properly restored, and we fixed a previous deadlock
270 * with similar symptoms by using save/restore versions in other
271 * places.
272 */
273#define cas_lock_all_save(cp, flags) \
274do { \
275 struct cas *xxxcp = (cp); \
276 spin_lock_irqsave(&xxxcp->lock, flags); \
277 cas_lock_tx(xxxcp); \
278} while (0)
279
280static inline void cas_unlock_tx(struct cas *cp)
281{
282 int i;
283
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400284 for (i = N_TX_RINGS; i > 0; i--)
285 spin_unlock(&cp->tx_lock[i - 1]);
David S. Miller1f26dac2005-09-27 15:24:13 -0700286}
287
288static inline void cas_unlock_all(struct cas *cp)
289{
290 cas_unlock_tx(cp);
291 spin_unlock_irq(&cp->lock);
292}
293
294#define cas_unlock_all_restore(cp, flags) \
295do { \
296 struct cas *xxxcp = (cp); \
297 cas_unlock_tx(xxxcp); \
298 spin_unlock_irqrestore(&xxxcp->lock, flags); \
299} while (0)
300
301static void cas_disable_irq(struct cas *cp, const int ring)
302{
303 /* Make sure we won't get any more interrupts */
304 if (ring == 0) {
305 writel(0xFFFFFFFF, cp->regs + REG_INTR_MASK);
306 return;
307 }
308
309 /* disable completion interrupts and selectively mask */
310 if (cp->cas_flags & CAS_FLAG_REG_PLUS) {
311 switch (ring) {
312#if defined (USE_PCI_INTB) || defined(USE_PCI_INTC) || defined(USE_PCI_INTD)
313#ifdef USE_PCI_INTB
314 case 1:
315#endif
316#ifdef USE_PCI_INTC
317 case 2:
318#endif
319#ifdef USE_PCI_INTD
320 case 3:
321#endif
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400322 writel(INTRN_MASK_CLEAR_ALL | INTRN_MASK_RX_EN,
David S. Miller1f26dac2005-09-27 15:24:13 -0700323 cp->regs + REG_PLUS_INTRN_MASK(ring));
324 break;
325#endif
326 default:
327 writel(INTRN_MASK_CLEAR_ALL, cp->regs +
328 REG_PLUS_INTRN_MASK(ring));
329 break;
330 }
331 }
332}
333
334static inline void cas_mask_intr(struct cas *cp)
335{
336 int i;
337
338 for (i = 0; i < N_RX_COMP_RINGS; i++)
339 cas_disable_irq(cp, i);
340}
341
342static void cas_enable_irq(struct cas *cp, const int ring)
343{
344 if (ring == 0) { /* all but TX_DONE */
345 writel(INTR_TX_DONE, cp->regs + REG_INTR_MASK);
346 return;
347 }
348
349 if (cp->cas_flags & CAS_FLAG_REG_PLUS) {
350 switch (ring) {
351#if defined (USE_PCI_INTB) || defined(USE_PCI_INTC) || defined(USE_PCI_INTD)
352#ifdef USE_PCI_INTB
353 case 1:
354#endif
355#ifdef USE_PCI_INTC
356 case 2:
357#endif
358#ifdef USE_PCI_INTD
359 case 3:
360#endif
361 writel(INTRN_MASK_RX_EN, cp->regs +
362 REG_PLUS_INTRN_MASK(ring));
363 break;
364#endif
365 default:
366 break;
367 }
368 }
369}
370
371static inline void cas_unmask_intr(struct cas *cp)
372{
373 int i;
374
375 for (i = 0; i < N_RX_COMP_RINGS; i++)
376 cas_enable_irq(cp, i);
377}
378
379static inline void cas_entropy_gather(struct cas *cp)
380{
381#ifdef USE_ENTROPY_DEV
382 if ((cp->cas_flags & CAS_FLAG_ENTROPY_DEV) == 0)
383 return;
384
385 batch_entropy_store(readl(cp->regs + REG_ENTROPY_IV),
386 readl(cp->regs + REG_ENTROPY_IV),
387 sizeof(uint64_t)*8);
388#endif
389}
390
391static inline void cas_entropy_reset(struct cas *cp)
392{
393#ifdef USE_ENTROPY_DEV
394 if ((cp->cas_flags & CAS_FLAG_ENTROPY_DEV) == 0)
395 return;
396
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400397 writel(BIM_LOCAL_DEV_PAD | BIM_LOCAL_DEV_PROM | BIM_LOCAL_DEV_EXT,
David S. Miller1f26dac2005-09-27 15:24:13 -0700398 cp->regs + REG_BIM_LOCAL_DEV_EN);
399 writeb(ENTROPY_RESET_STC_MODE, cp->regs + REG_ENTROPY_RESET);
400 writeb(0x55, cp->regs + REG_ENTROPY_RAND_REG);
401
402 /* if we read back 0x0, we don't have an entropy device */
403 if (readb(cp->regs + REG_ENTROPY_RAND_REG) == 0)
404 cp->cas_flags &= ~CAS_FLAG_ENTROPY_DEV;
405#endif
406}
407
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400408/* access to the phy. the following assumes that we've initialized the MIF to
David S. Miller1f26dac2005-09-27 15:24:13 -0700409 * be in frame rather than bit-bang mode
410 */
411static u16 cas_phy_read(struct cas *cp, int reg)
412{
413 u32 cmd;
414 int limit = STOP_TRIES_PHY;
415
416 cmd = MIF_FRAME_ST | MIF_FRAME_OP_READ;
417 cmd |= CAS_BASE(MIF_FRAME_PHY_ADDR, cp->phy_addr);
418 cmd |= CAS_BASE(MIF_FRAME_REG_ADDR, reg);
419 cmd |= MIF_FRAME_TURN_AROUND_MSB;
420 writel(cmd, cp->regs + REG_MIF_FRAME);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400421
David S. Miller1f26dac2005-09-27 15:24:13 -0700422 /* poll for completion */
423 while (limit-- > 0) {
424 udelay(10);
425 cmd = readl(cp->regs + REG_MIF_FRAME);
426 if (cmd & MIF_FRAME_TURN_AROUND_LSB)
427 return (cmd & MIF_FRAME_DATA_MASK);
428 }
429 return 0xFFFF; /* -1 */
430}
431
432static int cas_phy_write(struct cas *cp, int reg, u16 val)
433{
434 int limit = STOP_TRIES_PHY;
435 u32 cmd;
436
437 cmd = MIF_FRAME_ST | MIF_FRAME_OP_WRITE;
438 cmd |= CAS_BASE(MIF_FRAME_PHY_ADDR, cp->phy_addr);
439 cmd |= CAS_BASE(MIF_FRAME_REG_ADDR, reg);
440 cmd |= MIF_FRAME_TURN_AROUND_MSB;
441 cmd |= val & MIF_FRAME_DATA_MASK;
442 writel(cmd, cp->regs + REG_MIF_FRAME);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400443
David S. Miller1f26dac2005-09-27 15:24:13 -0700444 /* poll for completion */
445 while (limit-- > 0) {
446 udelay(10);
447 cmd = readl(cp->regs + REG_MIF_FRAME);
448 if (cmd & MIF_FRAME_TURN_AROUND_LSB)
449 return 0;
450 }
451 return -1;
452}
453
454static void cas_phy_powerup(struct cas *cp)
455{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400456 u16 ctl = cas_phy_read(cp, MII_BMCR);
David S. Miller1f26dac2005-09-27 15:24:13 -0700457
458 if ((ctl & BMCR_PDOWN) == 0)
459 return;
460 ctl &= ~BMCR_PDOWN;
461 cas_phy_write(cp, MII_BMCR, ctl);
462}
463
464static void cas_phy_powerdown(struct cas *cp)
465{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400466 u16 ctl = cas_phy_read(cp, MII_BMCR);
David S. Miller1f26dac2005-09-27 15:24:13 -0700467
468 if (ctl & BMCR_PDOWN)
469 return;
470 ctl |= BMCR_PDOWN;
471 cas_phy_write(cp, MII_BMCR, ctl);
472}
473
474/* cp->lock held. note: the last put_page will free the buffer */
475static int cas_page_free(struct cas *cp, cas_page_t *page)
476{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400477 pci_unmap_page(cp->pdev, page->dma_addr, cp->page_size,
David S. Miller1f26dac2005-09-27 15:24:13 -0700478 PCI_DMA_FROMDEVICE);
479 __free_pages(page->buffer, cp->page_order);
480 kfree(page);
481 return 0;
482}
483
484#ifdef RX_COUNT_BUFFERS
485#define RX_USED_ADD(x, y) ((x)->used += (y))
486#define RX_USED_SET(x, y) ((x)->used = (y))
487#else
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400488#define RX_USED_ADD(x, y)
David S. Miller1f26dac2005-09-27 15:24:13 -0700489#define RX_USED_SET(x, y)
490#endif
491
492/* local page allocation routines for the receive buffers. jumbo pages
493 * require at least 8K contiguous and 8K aligned buffers.
494 */
Al Viro9e249742005-10-21 03:22:29 -0400495static cas_page_t *cas_page_alloc(struct cas *cp, const gfp_t flags)
David S. Miller1f26dac2005-09-27 15:24:13 -0700496{
497 cas_page_t *page;
498
499 page = kmalloc(sizeof(cas_page_t), flags);
500 if (!page)
501 return NULL;
502
503 INIT_LIST_HEAD(&page->list);
504 RX_USED_SET(page, 0);
505 page->buffer = alloc_pages(flags, cp->page_order);
506 if (!page->buffer)
507 goto page_err;
508 page->dma_addr = pci_map_page(cp->pdev, page->buffer, 0,
509 cp->page_size, PCI_DMA_FROMDEVICE);
510 return page;
511
512page_err:
513 kfree(page);
514 return NULL;
515}
516
517/* initialize spare pool of rx buffers, but allocate during the open */
518static void cas_spare_init(struct cas *cp)
519{
520 spin_lock(&cp->rx_inuse_lock);
521 INIT_LIST_HEAD(&cp->rx_inuse_list);
522 spin_unlock(&cp->rx_inuse_lock);
523
524 spin_lock(&cp->rx_spare_lock);
525 INIT_LIST_HEAD(&cp->rx_spare_list);
526 cp->rx_spares_needed = RX_SPARE_COUNT;
527 spin_unlock(&cp->rx_spare_lock);
528}
529
530/* used on close. free all the spare buffers. */
531static void cas_spare_free(struct cas *cp)
532{
533 struct list_head list, *elem, *tmp;
534
535 /* free spare buffers */
536 INIT_LIST_HEAD(&list);
537 spin_lock(&cp->rx_spare_lock);
Robert P. J. Day9bd512f2008-03-23 22:47:53 -0700538 list_splice_init(&cp->rx_spare_list, &list);
David S. Miller1f26dac2005-09-27 15:24:13 -0700539 spin_unlock(&cp->rx_spare_lock);
540 list_for_each_safe(elem, tmp, &list) {
541 cas_page_free(cp, list_entry(elem, cas_page_t, list));
542 }
543
544 INIT_LIST_HEAD(&list);
545#if 1
546 /*
547 * Looks like Adrian had protected this with a different
548 * lock than used everywhere else to manipulate this list.
549 */
550 spin_lock(&cp->rx_inuse_lock);
Robert P. J. Day9bd512f2008-03-23 22:47:53 -0700551 list_splice_init(&cp->rx_inuse_list, &list);
David S. Miller1f26dac2005-09-27 15:24:13 -0700552 spin_unlock(&cp->rx_inuse_lock);
553#else
554 spin_lock(&cp->rx_spare_lock);
Robert P. J. Day9bd512f2008-03-23 22:47:53 -0700555 list_splice_init(&cp->rx_inuse_list, &list);
David S. Miller1f26dac2005-09-27 15:24:13 -0700556 spin_unlock(&cp->rx_spare_lock);
557#endif
558 list_for_each_safe(elem, tmp, &list) {
559 cas_page_free(cp, list_entry(elem, cas_page_t, list));
560 }
561}
562
563/* replenish spares if needed */
Al Viro9e249742005-10-21 03:22:29 -0400564static void cas_spare_recover(struct cas *cp, const gfp_t flags)
David S. Miller1f26dac2005-09-27 15:24:13 -0700565{
566 struct list_head list, *elem, *tmp;
567 int needed, i;
568
569 /* check inuse list. if we don't need any more free buffers,
570 * just free it
571 */
572
573 /* make a local copy of the list */
574 INIT_LIST_HEAD(&list);
575 spin_lock(&cp->rx_inuse_lock);
Robert P. J. Day9bd512f2008-03-23 22:47:53 -0700576 list_splice_init(&cp->rx_inuse_list, &list);
David S. Miller1f26dac2005-09-27 15:24:13 -0700577 spin_unlock(&cp->rx_inuse_lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400578
David S. Miller1f26dac2005-09-27 15:24:13 -0700579 list_for_each_safe(elem, tmp, &list) {
580 cas_page_t *page = list_entry(elem, cas_page_t, list);
581
Nick Piggine2867812008-07-25 19:45:30 -0700582 /*
583 * With the lockless pagecache, cassini buffering scheme gets
584 * slightly less accurate: we might find that a page has an
585 * elevated reference count here, due to a speculative ref,
586 * and skip it as in-use. Ideally we would be able to reclaim
587 * it. However this would be such a rare case, it doesn't
588 * matter too much as we should pick it up the next time round.
589 *
590 * Importantly, if we find that the page has a refcount of 1
591 * here (our refcount), then we know it is definitely not inuse
592 * so we can reuse it.
593 */
David S. Miller9de4dfb42008-01-03 19:33:50 -0800594 if (page_count(page->buffer) > 1)
David S. Miller1f26dac2005-09-27 15:24:13 -0700595 continue;
596
597 list_del(elem);
598 spin_lock(&cp->rx_spare_lock);
599 if (cp->rx_spares_needed > 0) {
600 list_add(elem, &cp->rx_spare_list);
601 cp->rx_spares_needed--;
602 spin_unlock(&cp->rx_spare_lock);
603 } else {
604 spin_unlock(&cp->rx_spare_lock);
605 cas_page_free(cp, page);
606 }
607 }
608
609 /* put any inuse buffers back on the list */
610 if (!list_empty(&list)) {
611 spin_lock(&cp->rx_inuse_lock);
612 list_splice(&list, &cp->rx_inuse_list);
613 spin_unlock(&cp->rx_inuse_lock);
614 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400615
David S. Miller1f26dac2005-09-27 15:24:13 -0700616 spin_lock(&cp->rx_spare_lock);
617 needed = cp->rx_spares_needed;
618 spin_unlock(&cp->rx_spare_lock);
619 if (!needed)
620 return;
621
622 /* we still need spares, so try to allocate some */
623 INIT_LIST_HEAD(&list);
624 i = 0;
625 while (i < needed) {
626 cas_page_t *spare = cas_page_alloc(cp, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400627 if (!spare)
David S. Miller1f26dac2005-09-27 15:24:13 -0700628 break;
629 list_add(&spare->list, &list);
630 i++;
631 }
632
633 spin_lock(&cp->rx_spare_lock);
634 list_splice(&list, &cp->rx_spare_list);
635 cp->rx_spares_needed -= i;
636 spin_unlock(&cp->rx_spare_lock);
637}
638
639/* pull a page from the list. */
640static cas_page_t *cas_page_dequeue(struct cas *cp)
641{
642 struct list_head *entry;
643 int recover;
644
645 spin_lock(&cp->rx_spare_lock);
646 if (list_empty(&cp->rx_spare_list)) {
647 /* try to do a quick recovery */
648 spin_unlock(&cp->rx_spare_lock);
649 cas_spare_recover(cp, GFP_ATOMIC);
650 spin_lock(&cp->rx_spare_lock);
651 if (list_empty(&cp->rx_spare_list)) {
652 if (netif_msg_rx_err(cp))
653 printk(KERN_ERR "%s: no spare buffers "
654 "available.\n", cp->dev->name);
655 spin_unlock(&cp->rx_spare_lock);
656 return NULL;
657 }
658 }
659
660 entry = cp->rx_spare_list.next;
661 list_del(entry);
662 recover = ++cp->rx_spares_needed;
663 spin_unlock(&cp->rx_spare_lock);
664
665 /* trigger the timer to do the recovery */
666 if ((recover & (RX_SPARE_RECOVER_VAL - 1)) == 0) {
667#if 1
668 atomic_inc(&cp->reset_task_pending);
669 atomic_inc(&cp->reset_task_pending_spare);
670 schedule_work(&cp->reset_task);
671#else
672 atomic_set(&cp->reset_task_pending, CAS_RESET_SPARE);
673 schedule_work(&cp->reset_task);
674#endif
675 }
676 return list_entry(entry, cas_page_t, list);
677}
678
679
680static void cas_mif_poll(struct cas *cp, const int enable)
681{
682 u32 cfg;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400683
684 cfg = readl(cp->regs + REG_MIF_CFG);
David S. Miller1f26dac2005-09-27 15:24:13 -0700685 cfg &= (MIF_CFG_MDIO_0 | MIF_CFG_MDIO_1);
686
687 if (cp->phy_type & CAS_PHY_MII_MDIO1)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400688 cfg |= MIF_CFG_PHY_SELECT;
David S. Miller1f26dac2005-09-27 15:24:13 -0700689
690 /* poll and interrupt on link status change. */
691 if (enable) {
692 cfg |= MIF_CFG_POLL_EN;
693 cfg |= CAS_BASE(MIF_CFG_POLL_REG, MII_BMSR);
694 cfg |= CAS_BASE(MIF_CFG_POLL_PHY, cp->phy_addr);
695 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400696 writel((enable) ? ~(BMSR_LSTATUS | BMSR_ANEGCOMPLETE) : 0xFFFF,
697 cp->regs + REG_MIF_MASK);
David S. Miller1f26dac2005-09-27 15:24:13 -0700698 writel(cfg, cp->regs + REG_MIF_CFG);
699}
700
701/* Must be invoked under cp->lock */
702static void cas_begin_auto_negotiation(struct cas *cp, struct ethtool_cmd *ep)
703{
704 u16 ctl;
705#if 1
706 int lcntl;
707 int changed = 0;
708 int oldstate = cp->lstate;
709 int link_was_not_down = !(oldstate == link_down);
710#endif
711 /* Setup link parameters */
712 if (!ep)
713 goto start_aneg;
714 lcntl = cp->link_cntl;
715 if (ep->autoneg == AUTONEG_ENABLE)
716 cp->link_cntl = BMCR_ANENABLE;
717 else {
718 cp->link_cntl = 0;
719 if (ep->speed == SPEED_100)
720 cp->link_cntl |= BMCR_SPEED100;
721 else if (ep->speed == SPEED_1000)
722 cp->link_cntl |= CAS_BMCR_SPEED1000;
723 if (ep->duplex == DUPLEX_FULL)
724 cp->link_cntl |= BMCR_FULLDPLX;
725 }
726#if 1
727 changed = (lcntl != cp->link_cntl);
728#endif
729start_aneg:
730 if (cp->lstate == link_up) {
731 printk(KERN_INFO "%s: PCS link down.\n",
732 cp->dev->name);
733 } else {
734 if (changed) {
735 printk(KERN_INFO "%s: link configuration changed\n",
736 cp->dev->name);
737 }
738 }
739 cp->lstate = link_down;
740 cp->link_transition = LINK_TRANSITION_LINK_DOWN;
741 if (!cp->hw_running)
742 return;
743#if 1
744 /*
745 * WTZ: If the old state was link_up, we turn off the carrier
746 * to replicate everything we do elsewhere on a link-down
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400747 * event when we were already in a link-up state..
David S. Miller1f26dac2005-09-27 15:24:13 -0700748 */
749 if (oldstate == link_up)
750 netif_carrier_off(cp->dev);
751 if (changed && link_was_not_down) {
752 /*
753 * WTZ: This branch will simply schedule a full reset after
754 * we explicitly changed link modes in an ioctl. See if this
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400755 * fixes the link-problems we were having for forced mode.
David S. Miller1f26dac2005-09-27 15:24:13 -0700756 */
757 atomic_inc(&cp->reset_task_pending);
758 atomic_inc(&cp->reset_task_pending_all);
759 schedule_work(&cp->reset_task);
760 cp->timer_ticks = 0;
761 mod_timer(&cp->link_timer, jiffies + CAS_LINK_TIMEOUT);
762 return;
763 }
764#endif
765 if (cp->phy_type & CAS_PHY_SERDES) {
766 u32 val = readl(cp->regs + REG_PCS_MII_CTRL);
767
768 if (cp->link_cntl & BMCR_ANENABLE) {
769 val |= (PCS_MII_RESTART_AUTONEG | PCS_MII_AUTONEG_EN);
770 cp->lstate = link_aneg;
771 } else {
772 if (cp->link_cntl & BMCR_FULLDPLX)
773 val |= PCS_MII_CTRL_DUPLEX;
774 val &= ~PCS_MII_AUTONEG_EN;
775 cp->lstate = link_force_ok;
776 }
777 cp->link_transition = LINK_TRANSITION_LINK_CONFIG;
778 writel(val, cp->regs + REG_PCS_MII_CTRL);
779
780 } else {
781 cas_mif_poll(cp, 0);
782 ctl = cas_phy_read(cp, MII_BMCR);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400783 ctl &= ~(BMCR_FULLDPLX | BMCR_SPEED100 |
David S. Miller1f26dac2005-09-27 15:24:13 -0700784 CAS_BMCR_SPEED1000 | BMCR_ANENABLE);
785 ctl |= cp->link_cntl;
786 if (ctl & BMCR_ANENABLE) {
787 ctl |= BMCR_ANRESTART;
788 cp->lstate = link_aneg;
789 } else {
790 cp->lstate = link_force_ok;
791 }
792 cp->link_transition = LINK_TRANSITION_LINK_CONFIG;
793 cas_phy_write(cp, MII_BMCR, ctl);
794 cas_mif_poll(cp, 1);
795 }
796
797 cp->timer_ticks = 0;
798 mod_timer(&cp->link_timer, jiffies + CAS_LINK_TIMEOUT);
799}
800
801/* Must be invoked under cp->lock. */
802static int cas_reset_mii_phy(struct cas *cp)
803{
804 int limit = STOP_TRIES_PHY;
805 u16 val;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400806
David S. Miller1f26dac2005-09-27 15:24:13 -0700807 cas_phy_write(cp, MII_BMCR, BMCR_RESET);
808 udelay(100);
Roel Kluinff01b912009-02-02 23:19:50 -0800809 while (--limit) {
David S. Miller1f26dac2005-09-27 15:24:13 -0700810 val = cas_phy_read(cp, MII_BMCR);
811 if ((val & BMCR_RESET) == 0)
812 break;
813 udelay(10);
814 }
815 return (limit <= 0);
816}
817
Jaswinder Singhfcaa4062008-09-22 19:27:10 -0700818static int cas_saturn_firmware_init(struct cas *cp)
819{
820 const struct firmware *fw;
821 const char fw_name[] = "sun/cassini.bin";
822 int err;
823
824 if (PHY_NS_DP83065 != cp->phy_id)
825 return 0;
826
827 err = request_firmware(&fw, fw_name, &cp->pdev->dev);
828 if (err) {
829 printk(KERN_ERR "cassini: Failed to load firmware \"%s\"\n",
830 fw_name);
831 return err;
832 }
833 if (fw->size < 2) {
834 printk(KERN_ERR "cassini: bogus length %zu in \"%s\"\n",
835 fw->size, fw_name);
836 err = -EINVAL;
837 goto out;
838 }
839 cp->fw_load_addr= fw->data[1] << 8 | fw->data[0];
840 cp->fw_size = fw->size - 2;
841 cp->fw_data = vmalloc(cp->fw_size);
842 if (!cp->fw_data) {
843 err = -ENOMEM;
844 printk(KERN_ERR "cassini: \"%s\" Failed %d\n", fw_name, err);
845 goto out;
846 }
847 memcpy(cp->fw_data, &fw->data[2], cp->fw_size);
848out:
849 release_firmware(fw);
850 return err;
851}
852
David S. Miller1f26dac2005-09-27 15:24:13 -0700853static void cas_saturn_firmware_load(struct cas *cp)
854{
Jaswinder Singhfcaa4062008-09-22 19:27:10 -0700855 int i;
David S. Miller1f26dac2005-09-27 15:24:13 -0700856
857 cas_phy_powerdown(cp);
858
859 /* expanded memory access mode */
860 cas_phy_write(cp, DP83065_MII_MEM, 0x0);
861
862 /* pointer configuration for new firmware */
863 cas_phy_write(cp, DP83065_MII_REGE, 0x8ff9);
864 cas_phy_write(cp, DP83065_MII_REGD, 0xbd);
865 cas_phy_write(cp, DP83065_MII_REGE, 0x8ffa);
866 cas_phy_write(cp, DP83065_MII_REGD, 0x82);
867 cas_phy_write(cp, DP83065_MII_REGE, 0x8ffb);
868 cas_phy_write(cp, DP83065_MII_REGD, 0x0);
869 cas_phy_write(cp, DP83065_MII_REGE, 0x8ffc);
870 cas_phy_write(cp, DP83065_MII_REGD, 0x39);
871
872 /* download new firmware */
873 cas_phy_write(cp, DP83065_MII_MEM, 0x1);
Jaswinder Singhfcaa4062008-09-22 19:27:10 -0700874 cas_phy_write(cp, DP83065_MII_REGE, cp->fw_load_addr);
875 for (i = 0; i < cp->fw_size; i++)
876 cas_phy_write(cp, DP83065_MII_REGD, cp->fw_data[i]);
David S. Miller1f26dac2005-09-27 15:24:13 -0700877
878 /* enable firmware */
879 cas_phy_write(cp, DP83065_MII_REGE, 0x8ff8);
880 cas_phy_write(cp, DP83065_MII_REGD, 0x1);
881}
882
883
884/* phy initialization */
885static void cas_phy_init(struct cas *cp)
886{
887 u16 val;
888
889 /* if we're in MII/GMII mode, set up phy */
890 if (CAS_PHY_MII(cp->phy_type)) {
891 writel(PCS_DATAPATH_MODE_MII,
892 cp->regs + REG_PCS_DATAPATH_MODE);
893
894 cas_mif_poll(cp, 0);
895 cas_reset_mii_phy(cp); /* take out of isolate mode */
896
897 if (PHY_LUCENT_B0 == cp->phy_id) {
898 /* workaround link up/down issue with lucent */
899 cas_phy_write(cp, LUCENT_MII_REG, 0x8000);
900 cas_phy_write(cp, MII_BMCR, 0x00f1);
901 cas_phy_write(cp, LUCENT_MII_REG, 0x0);
902
903 } else if (PHY_BROADCOM_B0 == (cp->phy_id & 0xFFFFFFFC)) {
904 /* workarounds for broadcom phy */
905 cas_phy_write(cp, BROADCOM_MII_REG8, 0x0C20);
906 cas_phy_write(cp, BROADCOM_MII_REG7, 0x0012);
907 cas_phy_write(cp, BROADCOM_MII_REG5, 0x1804);
908 cas_phy_write(cp, BROADCOM_MII_REG7, 0x0013);
909 cas_phy_write(cp, BROADCOM_MII_REG5, 0x1204);
910 cas_phy_write(cp, BROADCOM_MII_REG7, 0x8006);
911 cas_phy_write(cp, BROADCOM_MII_REG5, 0x0132);
912 cas_phy_write(cp, BROADCOM_MII_REG7, 0x8006);
913 cas_phy_write(cp, BROADCOM_MII_REG5, 0x0232);
914 cas_phy_write(cp, BROADCOM_MII_REG7, 0x201F);
915 cas_phy_write(cp, BROADCOM_MII_REG5, 0x0A20);
916
917 } else if (PHY_BROADCOM_5411 == cp->phy_id) {
918 val = cas_phy_read(cp, BROADCOM_MII_REG4);
919 val = cas_phy_read(cp, BROADCOM_MII_REG4);
920 if (val & 0x0080) {
921 /* link workaround */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400922 cas_phy_write(cp, BROADCOM_MII_REG4,
David S. Miller1f26dac2005-09-27 15:24:13 -0700923 val & ~0x0080);
924 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400925
David S. Miller1f26dac2005-09-27 15:24:13 -0700926 } else if (cp->cas_flags & CAS_FLAG_SATURN) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400927 writel((cp->phy_type & CAS_PHY_MII_MDIO0) ?
928 SATURN_PCFG_FSI : 0x0,
David S. Miller1f26dac2005-09-27 15:24:13 -0700929 cp->regs + REG_SATURN_PCFG);
930
931 /* load firmware to address 10Mbps auto-negotiation
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400932 * issue. NOTE: this will need to be changed if the
David S. Miller1f26dac2005-09-27 15:24:13 -0700933 * default firmware gets fixed.
934 */
935 if (PHY_NS_DP83065 == cp->phy_id) {
936 cas_saturn_firmware_load(cp);
937 }
938 cas_phy_powerup(cp);
939 }
940
941 /* advertise capabilities */
942 val = cas_phy_read(cp, MII_BMCR);
943 val &= ~BMCR_ANENABLE;
944 cas_phy_write(cp, MII_BMCR, val);
945 udelay(10);
946
947 cas_phy_write(cp, MII_ADVERTISE,
948 cas_phy_read(cp, MII_ADVERTISE) |
949 (ADVERTISE_10HALF | ADVERTISE_10FULL |
950 ADVERTISE_100HALF | ADVERTISE_100FULL |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400951 CAS_ADVERTISE_PAUSE |
David S. Miller1f26dac2005-09-27 15:24:13 -0700952 CAS_ADVERTISE_ASYM_PAUSE));
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400953
David S. Miller1f26dac2005-09-27 15:24:13 -0700954 if (cp->cas_flags & CAS_FLAG_1000MB_CAP) {
955 /* make sure that we don't advertise half
956 * duplex to avoid a chip issue
957 */
958 val = cas_phy_read(cp, CAS_MII_1000_CTRL);
959 val &= ~CAS_ADVERTISE_1000HALF;
960 val |= CAS_ADVERTISE_1000FULL;
961 cas_phy_write(cp, CAS_MII_1000_CTRL, val);
962 }
963
964 } else {
965 /* reset pcs for serdes */
966 u32 val;
967 int limit;
968
969 writel(PCS_DATAPATH_MODE_SERDES,
970 cp->regs + REG_PCS_DATAPATH_MODE);
971
972 /* enable serdes pins on saturn */
973 if (cp->cas_flags & CAS_FLAG_SATURN)
974 writel(0, cp->regs + REG_SATURN_PCFG);
975
976 /* Reset PCS unit. */
977 val = readl(cp->regs + REG_PCS_MII_CTRL);
978 val |= PCS_MII_RESET;
979 writel(val, cp->regs + REG_PCS_MII_CTRL);
980
981 limit = STOP_TRIES;
Roel Kluinff01b912009-02-02 23:19:50 -0800982 while (--limit > 0) {
David S. Miller1f26dac2005-09-27 15:24:13 -0700983 udelay(10);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400984 if ((readl(cp->regs + REG_PCS_MII_CTRL) &
David S. Miller1f26dac2005-09-27 15:24:13 -0700985 PCS_MII_RESET) == 0)
986 break;
987 }
988 if (limit <= 0)
989 printk(KERN_WARNING "%s: PCS reset bit would not "
990 "clear [%08x].\n", cp->dev->name,
991 readl(cp->regs + REG_PCS_STATE_MACHINE));
992
993 /* Make sure PCS is disabled while changing advertisement
994 * configuration.
995 */
996 writel(0x0, cp->regs + REG_PCS_CFG);
997
998 /* Advertise all capabilities except half-duplex. */
999 val = readl(cp->regs + REG_PCS_MII_ADVERT);
1000 val &= ~PCS_MII_ADVERT_HD;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001001 val |= (PCS_MII_ADVERT_FD | PCS_MII_ADVERT_SYM_PAUSE |
David S. Miller1f26dac2005-09-27 15:24:13 -07001002 PCS_MII_ADVERT_ASYM_PAUSE);
1003 writel(val, cp->regs + REG_PCS_MII_ADVERT);
1004
1005 /* enable PCS */
1006 writel(PCS_CFG_EN, cp->regs + REG_PCS_CFG);
1007
1008 /* pcs workaround: enable sync detect */
1009 writel(PCS_SERDES_CTRL_SYNCD_EN,
1010 cp->regs + REG_PCS_SERDES_CTRL);
1011 }
1012}
1013
1014
1015static int cas_pcs_link_check(struct cas *cp)
1016{
1017 u32 stat, state_machine;
1018 int retval = 0;
1019
1020 /* The link status bit latches on zero, so you must
1021 * read it twice in such a case to see a transition
1022 * to the link being up.
1023 */
1024 stat = readl(cp->regs + REG_PCS_MII_STATUS);
1025 if ((stat & PCS_MII_STATUS_LINK_STATUS) == 0)
1026 stat = readl(cp->regs + REG_PCS_MII_STATUS);
1027
1028 /* The remote-fault indication is only valid
1029 * when autoneg has completed.
1030 */
1031 if ((stat & (PCS_MII_STATUS_AUTONEG_COMP |
1032 PCS_MII_STATUS_REMOTE_FAULT)) ==
1033 (PCS_MII_STATUS_AUTONEG_COMP | PCS_MII_STATUS_REMOTE_FAULT)) {
1034 if (netif_msg_link(cp))
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001035 printk(KERN_INFO "%s: PCS RemoteFault\n",
David S. Miller1f26dac2005-09-27 15:24:13 -07001036 cp->dev->name);
1037 }
1038
1039 /* work around link detection issue by querying the PCS state
1040 * machine directly.
1041 */
1042 state_machine = readl(cp->regs + REG_PCS_STATE_MACHINE);
1043 if ((state_machine & PCS_SM_LINK_STATE_MASK) != SM_LINK_STATE_UP) {
1044 stat &= ~PCS_MII_STATUS_LINK_STATUS;
1045 } else if (state_machine & PCS_SM_WORD_SYNC_STATE_MASK) {
1046 stat |= PCS_MII_STATUS_LINK_STATUS;
1047 }
1048
1049 if (stat & PCS_MII_STATUS_LINK_STATUS) {
1050 if (cp->lstate != link_up) {
1051 if (cp->opened) {
1052 cp->lstate = link_up;
1053 cp->link_transition = LINK_TRANSITION_LINK_UP;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001054
David S. Miller1f26dac2005-09-27 15:24:13 -07001055 cas_set_link_modes(cp);
1056 netif_carrier_on(cp->dev);
1057 }
1058 }
1059 } else if (cp->lstate == link_up) {
1060 cp->lstate = link_down;
1061 if (link_transition_timeout != 0 &&
1062 cp->link_transition != LINK_TRANSITION_REQUESTED_RESET &&
1063 !cp->link_transition_jiffies_valid) {
1064 /*
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001065 * force a reset, as a workaround for the
1066 * link-failure problem. May want to move this to a
David S. Miller1f26dac2005-09-27 15:24:13 -07001067 * point a bit earlier in the sequence. If we had
1068 * generated a reset a short time ago, we'll wait for
1069 * the link timer to check the status until a
1070 * timer expires (link_transistion_jiffies_valid is
1071 * true when the timer is running.) Instead of using
1072 * a system timer, we just do a check whenever the
1073 * link timer is running - this clears the flag after
1074 * a suitable delay.
1075 */
1076 retval = 1;
1077 cp->link_transition = LINK_TRANSITION_REQUESTED_RESET;
1078 cp->link_transition_jiffies = jiffies;
1079 cp->link_transition_jiffies_valid = 1;
1080 } else {
1081 cp->link_transition = LINK_TRANSITION_ON_FAILURE;
1082 }
1083 netif_carrier_off(cp->dev);
1084 if (cp->opened && netif_msg_link(cp)) {
1085 printk(KERN_INFO "%s: PCS link down.\n",
1086 cp->dev->name);
1087 }
1088
1089 /* Cassini only: if you force a mode, there can be
1090 * sync problems on link down. to fix that, the following
1091 * things need to be checked:
1092 * 1) read serialink state register
1093 * 2) read pcs status register to verify link down.
1094 * 3) if link down and serial link == 0x03, then you need
1095 * to global reset the chip.
1096 */
1097 if ((cp->cas_flags & CAS_FLAG_REG_PLUS) == 0) {
1098 /* should check to see if we're in a forced mode */
1099 stat = readl(cp->regs + REG_PCS_SERDES_STATE);
1100 if (stat == 0x03)
1101 return 1;
1102 }
1103 } else if (cp->lstate == link_down) {
1104 if (link_transition_timeout != 0 &&
1105 cp->link_transition != LINK_TRANSITION_REQUESTED_RESET &&
1106 !cp->link_transition_jiffies_valid) {
1107 /* force a reset, as a workaround for the
1108 * link-failure problem. May want to move
1109 * this to a point a bit earlier in the
1110 * sequence.
1111 */
1112 retval = 1;
1113 cp->link_transition = LINK_TRANSITION_REQUESTED_RESET;
1114 cp->link_transition_jiffies = jiffies;
1115 cp->link_transition_jiffies_valid = 1;
1116 } else {
1117 cp->link_transition = LINK_TRANSITION_STILL_FAILED;
1118 }
1119 }
1120
1121 return retval;
1122}
1123
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001124static int cas_pcs_interrupt(struct net_device *dev,
David S. Miller1f26dac2005-09-27 15:24:13 -07001125 struct cas *cp, u32 status)
1126{
1127 u32 stat = readl(cp->regs + REG_PCS_INTR_STATUS);
1128
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001129 if ((stat & PCS_INTR_STATUS_LINK_CHANGE) == 0)
David S. Miller1f26dac2005-09-27 15:24:13 -07001130 return 0;
1131 return cas_pcs_link_check(cp);
1132}
1133
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001134static int cas_txmac_interrupt(struct net_device *dev,
David S. Miller1f26dac2005-09-27 15:24:13 -07001135 struct cas *cp, u32 status)
1136{
1137 u32 txmac_stat = readl(cp->regs + REG_MAC_TX_STATUS);
1138
1139 if (!txmac_stat)
1140 return 0;
1141
1142 if (netif_msg_intr(cp))
1143 printk(KERN_DEBUG "%s: txmac interrupt, txmac_stat: 0x%x\n",
1144 cp->dev->name, txmac_stat);
1145
1146 /* Defer timer expiration is quite normal,
1147 * don't even log the event.
1148 */
1149 if ((txmac_stat & MAC_TX_DEFER_TIMER) &&
1150 !(txmac_stat & ~MAC_TX_DEFER_TIMER))
1151 return 0;
1152
1153 spin_lock(&cp->stat_lock[0]);
1154 if (txmac_stat & MAC_TX_UNDERRUN) {
1155 printk(KERN_ERR "%s: TX MAC xmit underrun.\n",
1156 dev->name);
1157 cp->net_stats[0].tx_fifo_errors++;
1158 }
1159
1160 if (txmac_stat & MAC_TX_MAX_PACKET_ERR) {
1161 printk(KERN_ERR "%s: TX MAC max packet size error.\n",
1162 dev->name);
1163 cp->net_stats[0].tx_errors++;
1164 }
1165
1166 /* The rest are all cases of one of the 16-bit TX
1167 * counters expiring.
1168 */
1169 if (txmac_stat & MAC_TX_COLL_NORMAL)
1170 cp->net_stats[0].collisions += 0x10000;
1171
1172 if (txmac_stat & MAC_TX_COLL_EXCESS) {
1173 cp->net_stats[0].tx_aborted_errors += 0x10000;
1174 cp->net_stats[0].collisions += 0x10000;
1175 }
1176
1177 if (txmac_stat & MAC_TX_COLL_LATE) {
1178 cp->net_stats[0].tx_aborted_errors += 0x10000;
1179 cp->net_stats[0].collisions += 0x10000;
1180 }
1181 spin_unlock(&cp->stat_lock[0]);
1182
1183 /* We do not keep track of MAC_TX_COLL_FIRST and
1184 * MAC_TX_PEAK_ATTEMPTS events.
1185 */
1186 return 0;
1187}
1188
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001189static void cas_load_firmware(struct cas *cp, cas_hp_inst_t *firmware)
David S. Miller1f26dac2005-09-27 15:24:13 -07001190{
1191 cas_hp_inst_t *inst;
1192 u32 val;
1193 int i;
1194
1195 i = 0;
1196 while ((inst = firmware) && inst->note) {
1197 writel(i, cp->regs + REG_HP_INSTR_RAM_ADDR);
1198
1199 val = CAS_BASE(HP_INSTR_RAM_HI_VAL, inst->val);
1200 val |= CAS_BASE(HP_INSTR_RAM_HI_MASK, inst->mask);
1201 writel(val, cp->regs + REG_HP_INSTR_RAM_DATA_HI);
1202
1203 val = CAS_BASE(HP_INSTR_RAM_MID_OUTARG, inst->outarg >> 10);
1204 val |= CAS_BASE(HP_INSTR_RAM_MID_OUTOP, inst->outop);
1205 val |= CAS_BASE(HP_INSTR_RAM_MID_FNEXT, inst->fnext);
1206 val |= CAS_BASE(HP_INSTR_RAM_MID_FOFF, inst->foff);
1207 val |= CAS_BASE(HP_INSTR_RAM_MID_SNEXT, inst->snext);
1208 val |= CAS_BASE(HP_INSTR_RAM_MID_SOFF, inst->soff);
1209 val |= CAS_BASE(HP_INSTR_RAM_MID_OP, inst->op);
1210 writel(val, cp->regs + REG_HP_INSTR_RAM_DATA_MID);
1211
1212 val = CAS_BASE(HP_INSTR_RAM_LOW_OUTMASK, inst->outmask);
1213 val |= CAS_BASE(HP_INSTR_RAM_LOW_OUTSHIFT, inst->outshift);
1214 val |= CAS_BASE(HP_INSTR_RAM_LOW_OUTEN, inst->outenab);
1215 val |= CAS_BASE(HP_INSTR_RAM_LOW_OUTARG, inst->outarg);
1216 writel(val, cp->regs + REG_HP_INSTR_RAM_DATA_LOW);
1217 ++firmware;
1218 ++i;
1219 }
1220}
1221
1222static void cas_init_rx_dma(struct cas *cp)
1223{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001224 u64 desc_dma = cp->block_dvma;
David S. Miller1f26dac2005-09-27 15:24:13 -07001225 u32 val;
1226 int i, size;
1227
1228 /* rx free descriptors */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001229 val = CAS_BASE(RX_CFG_SWIVEL, RX_SWIVEL_OFF_VAL);
David S. Miller1f26dac2005-09-27 15:24:13 -07001230 val |= CAS_BASE(RX_CFG_DESC_RING, RX_DESC_RINGN_INDEX(0));
1231 val |= CAS_BASE(RX_CFG_COMP_RING, RX_COMP_RINGN_INDEX(0));
1232 if ((N_RX_DESC_RINGS > 1) &&
1233 (cp->cas_flags & CAS_FLAG_REG_PLUS)) /* do desc 2 */
1234 val |= CAS_BASE(RX_CFG_DESC_RING1, RX_DESC_RINGN_INDEX(1));
1235 writel(val, cp->regs + REG_RX_CFG);
1236
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001237 val = (unsigned long) cp->init_rxds[0] -
David S. Miller1f26dac2005-09-27 15:24:13 -07001238 (unsigned long) cp->init_block;
1239 writel((desc_dma + val) >> 32, cp->regs + REG_RX_DB_HI);
1240 writel((desc_dma + val) & 0xffffffff, cp->regs + REG_RX_DB_LOW);
1241 writel(RX_DESC_RINGN_SIZE(0) - 4, cp->regs + REG_RX_KICK);
1242
1243 if (cp->cas_flags & CAS_FLAG_REG_PLUS) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001244 /* rx desc 2 is for IPSEC packets. however,
David S. Miller1f26dac2005-09-27 15:24:13 -07001245 * we don't it that for that purpose.
1246 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001247 val = (unsigned long) cp->init_rxds[1] -
David S. Miller1f26dac2005-09-27 15:24:13 -07001248 (unsigned long) cp->init_block;
1249 writel((desc_dma + val) >> 32, cp->regs + REG_PLUS_RX_DB1_HI);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001250 writel((desc_dma + val) & 0xffffffff, cp->regs +
David S. Miller1f26dac2005-09-27 15:24:13 -07001251 REG_PLUS_RX_DB1_LOW);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001252 writel(RX_DESC_RINGN_SIZE(1) - 4, cp->regs +
David S. Miller1f26dac2005-09-27 15:24:13 -07001253 REG_PLUS_RX_KICK1);
1254 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001255
David S. Miller1f26dac2005-09-27 15:24:13 -07001256 /* rx completion registers */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001257 val = (unsigned long) cp->init_rxcs[0] -
David S. Miller1f26dac2005-09-27 15:24:13 -07001258 (unsigned long) cp->init_block;
1259 writel((desc_dma + val) >> 32, cp->regs + REG_RX_CB_HI);
1260 writel((desc_dma + val) & 0xffffffff, cp->regs + REG_RX_CB_LOW);
1261
1262 if (cp->cas_flags & CAS_FLAG_REG_PLUS) {
1263 /* rx comp 2-4 */
1264 for (i = 1; i < MAX_RX_COMP_RINGS; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001265 val = (unsigned long) cp->init_rxcs[i] -
David S. Miller1f26dac2005-09-27 15:24:13 -07001266 (unsigned long) cp->init_block;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001267 writel((desc_dma + val) >> 32, cp->regs +
David S. Miller1f26dac2005-09-27 15:24:13 -07001268 REG_PLUS_RX_CBN_HI(i));
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001269 writel((desc_dma + val) & 0xffffffff, cp->regs +
David S. Miller1f26dac2005-09-27 15:24:13 -07001270 REG_PLUS_RX_CBN_LOW(i));
1271 }
1272 }
1273
1274 /* read selective clear regs to prevent spurious interrupts
1275 * on reset because complete == kick.
1276 * selective clear set up to prevent interrupts on resets
1277 */
1278 readl(cp->regs + REG_INTR_STATUS_ALIAS);
1279 writel(INTR_RX_DONE | INTR_RX_BUF_UNAVAIL, cp->regs + REG_ALIAS_CLEAR);
1280 if (cp->cas_flags & CAS_FLAG_REG_PLUS) {
1281 for (i = 1; i < N_RX_COMP_RINGS; i++)
1282 readl(cp->regs + REG_PLUS_INTRN_STATUS_ALIAS(i));
1283
1284 /* 2 is different from 3 and 4 */
1285 if (N_RX_COMP_RINGS > 1)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001286 writel(INTR_RX_DONE_ALT | INTR_RX_BUF_UNAVAIL_1,
David S. Miller1f26dac2005-09-27 15:24:13 -07001287 cp->regs + REG_PLUS_ALIASN_CLEAR(1));
1288
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001289 for (i = 2; i < N_RX_COMP_RINGS; i++)
1290 writel(INTR_RX_DONE_ALT,
David S. Miller1f26dac2005-09-27 15:24:13 -07001291 cp->regs + REG_PLUS_ALIASN_CLEAR(i));
1292 }
1293
1294 /* set up pause thresholds */
1295 val = CAS_BASE(RX_PAUSE_THRESH_OFF,
1296 cp->rx_pause_off / RX_PAUSE_THRESH_QUANTUM);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001297 val |= CAS_BASE(RX_PAUSE_THRESH_ON,
David S. Miller1f26dac2005-09-27 15:24:13 -07001298 cp->rx_pause_on / RX_PAUSE_THRESH_QUANTUM);
1299 writel(val, cp->regs + REG_RX_PAUSE_THRESH);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001300
David S. Miller1f26dac2005-09-27 15:24:13 -07001301 /* zero out dma reassembly buffers */
1302 for (i = 0; i < 64; i++) {
1303 writel(i, cp->regs + REG_RX_TABLE_ADDR);
1304 writel(0x0, cp->regs + REG_RX_TABLE_DATA_LOW);
1305 writel(0x0, cp->regs + REG_RX_TABLE_DATA_MID);
1306 writel(0x0, cp->regs + REG_RX_TABLE_DATA_HI);
1307 }
1308
1309 /* make sure address register is 0 for normal operation */
1310 writel(0x0, cp->regs + REG_RX_CTRL_FIFO_ADDR);
1311 writel(0x0, cp->regs + REG_RX_IPP_FIFO_ADDR);
1312
1313 /* interrupt mitigation */
1314#ifdef USE_RX_BLANK
1315 val = CAS_BASE(RX_BLANK_INTR_TIME, RX_BLANK_INTR_TIME_VAL);
1316 val |= CAS_BASE(RX_BLANK_INTR_PKT, RX_BLANK_INTR_PKT_VAL);
1317 writel(val, cp->regs + REG_RX_BLANK);
1318#else
1319 writel(0x0, cp->regs + REG_RX_BLANK);
1320#endif
1321
1322 /* interrupt generation as a function of low water marks for
1323 * free desc and completion entries. these are used to trigger
1324 * housekeeping for rx descs. we don't use the free interrupt
1325 * as it's not very useful
1326 */
1327 /* val = CAS_BASE(RX_AE_THRESH_FREE, RX_AE_FREEN_VAL(0)); */
1328 val = CAS_BASE(RX_AE_THRESH_COMP, RX_AE_COMP_VAL);
1329 writel(val, cp->regs + REG_RX_AE_THRESH);
1330 if (cp->cas_flags & CAS_FLAG_REG_PLUS) {
1331 val = CAS_BASE(RX_AE1_THRESH_FREE, RX_AE_FREEN_VAL(1));
1332 writel(val, cp->regs + REG_PLUS_RX_AE1_THRESH);
1333 }
1334
1335 /* Random early detect registers. useful for congestion avoidance.
1336 * this should be tunable.
1337 */
1338 writel(0x0, cp->regs + REG_RX_RED);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001339
David S. Miller1f26dac2005-09-27 15:24:13 -07001340 /* receive page sizes. default == 2K (0x800) */
1341 val = 0;
1342 if (cp->page_size == 0x1000)
1343 val = 0x1;
1344 else if (cp->page_size == 0x2000)
1345 val = 0x2;
1346 else if (cp->page_size == 0x4000)
1347 val = 0x3;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001348
David S. Miller1f26dac2005-09-27 15:24:13 -07001349 /* round mtu + offset. constrain to page size. */
1350 size = cp->dev->mtu + 64;
1351 if (size > cp->page_size)
1352 size = cp->page_size;
1353
1354 if (size <= 0x400)
1355 i = 0x0;
1356 else if (size <= 0x800)
1357 i = 0x1;
1358 else if (size <= 0x1000)
1359 i = 0x2;
1360 else
1361 i = 0x3;
1362
1363 cp->mtu_stride = 1 << (i + 10);
1364 val = CAS_BASE(RX_PAGE_SIZE, val);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001365 val |= CAS_BASE(RX_PAGE_SIZE_MTU_STRIDE, i);
David S. Miller1f26dac2005-09-27 15:24:13 -07001366 val |= CAS_BASE(RX_PAGE_SIZE_MTU_COUNT, cp->page_size >> (i + 10));
1367 val |= CAS_BASE(RX_PAGE_SIZE_MTU_OFF, 0x1);
1368 writel(val, cp->regs + REG_RX_PAGE_SIZE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001369
David S. Miller1f26dac2005-09-27 15:24:13 -07001370 /* enable the header parser if desired */
1371 if (CAS_HP_FIRMWARE == cas_prog_null)
1372 return;
1373
1374 val = CAS_BASE(HP_CFG_NUM_CPU, CAS_NCPUS > 63 ? 0 : CAS_NCPUS);
1375 val |= HP_CFG_PARSE_EN | HP_CFG_SYN_INC_MASK;
1376 val |= CAS_BASE(HP_CFG_TCP_THRESH, HP_TCP_THRESH_VAL);
1377 writel(val, cp->regs + REG_HP_CFG);
1378}
1379
1380static inline void cas_rxc_init(struct cas_rx_comp *rxc)
1381{
1382 memset(rxc, 0, sizeof(*rxc));
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001383 rxc->word4 = cpu_to_le64(RX_COMP4_ZERO);
David S. Miller1f26dac2005-09-27 15:24:13 -07001384}
1385
1386/* NOTE: we use the ENC RX DESC ring for spares. the rx_page[0,1]
1387 * flipping is protected by the fact that the chip will not
1388 * hand back the same page index while it's being processed.
1389 */
1390static inline cas_page_t *cas_page_spare(struct cas *cp, const int index)
1391{
1392 cas_page_t *page = cp->rx_pages[1][index];
1393 cas_page_t *new;
1394
David S. Miller9de4dfb42008-01-03 19:33:50 -08001395 if (page_count(page->buffer) == 1)
David S. Miller1f26dac2005-09-27 15:24:13 -07001396 return page;
1397
1398 new = cas_page_dequeue(cp);
1399 if (new) {
1400 spin_lock(&cp->rx_inuse_lock);
1401 list_add(&page->list, &cp->rx_inuse_list);
1402 spin_unlock(&cp->rx_inuse_lock);
1403 }
1404 return new;
1405}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001406
David S. Miller1f26dac2005-09-27 15:24:13 -07001407/* this needs to be changed if we actually use the ENC RX DESC ring */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001408static cas_page_t *cas_page_swap(struct cas *cp, const int ring,
David S. Miller1f26dac2005-09-27 15:24:13 -07001409 const int index)
1410{
1411 cas_page_t **page0 = cp->rx_pages[0];
1412 cas_page_t **page1 = cp->rx_pages[1];
1413
1414 /* swap if buffer is in use */
David S. Miller9de4dfb42008-01-03 19:33:50 -08001415 if (page_count(page0[index]->buffer) > 1) {
David S. Miller1f26dac2005-09-27 15:24:13 -07001416 cas_page_t *new = cas_page_spare(cp, index);
1417 if (new) {
1418 page1[index] = page0[index];
1419 page0[index] = new;
1420 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001421 }
David S. Miller1f26dac2005-09-27 15:24:13 -07001422 RX_USED_SET(page0[index], 0);
1423 return page0[index];
1424}
1425
1426static void cas_clean_rxds(struct cas *cp)
1427{
1428 /* only clean ring 0 as ring 1 is used for spare buffers */
1429 struct cas_rx_desc *rxd = cp->init_rxds[0];
1430 int i, size;
1431
1432 /* release all rx flows */
1433 for (i = 0; i < N_RX_FLOWS; i++) {
1434 struct sk_buff *skb;
1435 while ((skb = __skb_dequeue(&cp->rx_flows[i]))) {
1436 cas_skb_release(skb);
1437 }
1438 }
1439
1440 /* initialize descriptors */
1441 size = RX_DESC_RINGN_SIZE(0);
1442 for (i = 0; i < size; i++) {
1443 cas_page_t *page = cas_page_swap(cp, 0, i);
1444 rxd[i].buffer = cpu_to_le64(page->dma_addr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001445 rxd[i].index = cpu_to_le64(CAS_BASE(RX_INDEX_NUM, i) |
David S. Miller1f26dac2005-09-27 15:24:13 -07001446 CAS_BASE(RX_INDEX_RING, 0));
1447 }
1448
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001449 cp->rx_old[0] = RX_DESC_RINGN_SIZE(0) - 4;
David S. Miller1f26dac2005-09-27 15:24:13 -07001450 cp->rx_last[0] = 0;
1451 cp->cas_flags &= ~CAS_FLAG_RXD_POST(0);
1452}
1453
1454static void cas_clean_rxcs(struct cas *cp)
1455{
1456 int i, j;
1457
1458 /* take ownership of rx comp descriptors */
1459 memset(cp->rx_cur, 0, sizeof(*cp->rx_cur)*N_RX_COMP_RINGS);
1460 memset(cp->rx_new, 0, sizeof(*cp->rx_new)*N_RX_COMP_RINGS);
1461 for (i = 0; i < N_RX_COMP_RINGS; i++) {
1462 struct cas_rx_comp *rxc = cp->init_rxcs[i];
1463 for (j = 0; j < RX_COMP_RINGN_SIZE(i); j++) {
1464 cas_rxc_init(rxc + j);
1465 }
1466 }
1467}
1468
1469#if 0
1470/* When we get a RX fifo overflow, the RX unit is probably hung
1471 * so we do the following.
1472 *
1473 * If any part of the reset goes wrong, we return 1 and that causes the
1474 * whole chip to be reset.
1475 */
1476static int cas_rxmac_reset(struct cas *cp)
1477{
1478 struct net_device *dev = cp->dev;
1479 int limit;
1480 u32 val;
1481
1482 /* First, reset MAC RX. */
1483 writel(cp->mac_rx_cfg & ~MAC_RX_CFG_EN, cp->regs + REG_MAC_RX_CFG);
1484 for (limit = 0; limit < STOP_TRIES; limit++) {
1485 if (!(readl(cp->regs + REG_MAC_RX_CFG) & MAC_RX_CFG_EN))
1486 break;
1487 udelay(10);
1488 }
1489 if (limit == STOP_TRIES) {
1490 printk(KERN_ERR "%s: RX MAC will not disable, resetting whole "
1491 "chip.\n", dev->name);
1492 return 1;
1493 }
1494
1495 /* Second, disable RX DMA. */
1496 writel(0, cp->regs + REG_RX_CFG);
1497 for (limit = 0; limit < STOP_TRIES; limit++) {
1498 if (!(readl(cp->regs + REG_RX_CFG) & RX_CFG_DMA_EN))
1499 break;
1500 udelay(10);
1501 }
1502 if (limit == STOP_TRIES) {
1503 printk(KERN_ERR "%s: RX DMA will not disable, resetting whole "
1504 "chip.\n", dev->name);
1505 return 1;
1506 }
1507
1508 mdelay(5);
1509
1510 /* Execute RX reset command. */
1511 writel(SW_RESET_RX, cp->regs + REG_SW_RESET);
1512 for (limit = 0; limit < STOP_TRIES; limit++) {
1513 if (!(readl(cp->regs + REG_SW_RESET) & SW_RESET_RX))
1514 break;
1515 udelay(10);
1516 }
1517 if (limit == STOP_TRIES) {
1518 printk(KERN_ERR "%s: RX reset command will not execute, "
1519 "resetting whole chip.\n", dev->name);
1520 return 1;
1521 }
1522
1523 /* reset driver rx state */
1524 cas_clean_rxds(cp);
1525 cas_clean_rxcs(cp);
1526
1527 /* Now, reprogram the rest of RX unit. */
1528 cas_init_rx_dma(cp);
1529
1530 /* re-enable */
1531 val = readl(cp->regs + REG_RX_CFG);
1532 writel(val | RX_CFG_DMA_EN, cp->regs + REG_RX_CFG);
1533 writel(MAC_RX_FRAME_RECV, cp->regs + REG_MAC_RX_MASK);
1534 val = readl(cp->regs + REG_MAC_RX_CFG);
1535 writel(val | MAC_RX_CFG_EN, cp->regs + REG_MAC_RX_CFG);
1536 return 0;
1537}
1538#endif
1539
1540static int cas_rxmac_interrupt(struct net_device *dev, struct cas *cp,
1541 u32 status)
1542{
1543 u32 stat = readl(cp->regs + REG_MAC_RX_STATUS);
1544
1545 if (!stat)
1546 return 0;
1547
1548 if (netif_msg_intr(cp))
1549 printk(KERN_DEBUG "%s: rxmac interrupt, stat: 0x%x\n",
1550 cp->dev->name, stat);
1551
1552 /* these are all rollovers */
1553 spin_lock(&cp->stat_lock[0]);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001554 if (stat & MAC_RX_ALIGN_ERR)
David S. Miller1f26dac2005-09-27 15:24:13 -07001555 cp->net_stats[0].rx_frame_errors += 0x10000;
1556
1557 if (stat & MAC_RX_CRC_ERR)
1558 cp->net_stats[0].rx_crc_errors += 0x10000;
1559
1560 if (stat & MAC_RX_LEN_ERR)
1561 cp->net_stats[0].rx_length_errors += 0x10000;
1562
1563 if (stat & MAC_RX_OVERFLOW) {
1564 cp->net_stats[0].rx_over_errors++;
1565 cp->net_stats[0].rx_fifo_errors++;
1566 }
1567
1568 /* We do not track MAC_RX_FRAME_COUNT and MAC_RX_VIOL_ERR
1569 * events.
1570 */
1571 spin_unlock(&cp->stat_lock[0]);
1572 return 0;
1573}
1574
1575static int cas_mac_interrupt(struct net_device *dev, struct cas *cp,
1576 u32 status)
1577{
1578 u32 stat = readl(cp->regs + REG_MAC_CTRL_STATUS);
1579
1580 if (!stat)
1581 return 0;
1582
1583 if (netif_msg_intr(cp))
1584 printk(KERN_DEBUG "%s: mac interrupt, stat: 0x%x\n",
1585 cp->dev->name, stat);
1586
1587 /* This interrupt is just for pause frame and pause
1588 * tracking. It is useful for diagnostics and debug
1589 * but probably by default we will mask these events.
1590 */
1591 if (stat & MAC_CTRL_PAUSE_STATE)
1592 cp->pause_entered++;
1593
1594 if (stat & MAC_CTRL_PAUSE_RECEIVED)
1595 cp->pause_last_time_recvd = (stat >> 16);
1596
1597 return 0;
1598}
1599
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001600
David S. Miller1f26dac2005-09-27 15:24:13 -07001601/* Must be invoked under cp->lock. */
1602static inline int cas_mdio_link_not_up(struct cas *cp)
1603{
1604 u16 val;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001605
David S. Miller1f26dac2005-09-27 15:24:13 -07001606 switch (cp->lstate) {
1607 case link_force_ret:
1608 if (netif_msg_link(cp))
1609 printk(KERN_INFO "%s: Autoneg failed again, keeping"
1610 " forced mode\n", cp->dev->name);
1611 cas_phy_write(cp, MII_BMCR, cp->link_fcntl);
1612 cp->timer_ticks = 5;
1613 cp->lstate = link_force_ok;
1614 cp->link_transition = LINK_TRANSITION_LINK_CONFIG;
1615 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001616
David S. Miller1f26dac2005-09-27 15:24:13 -07001617 case link_aneg:
1618 val = cas_phy_read(cp, MII_BMCR);
1619
1620 /* Try forced modes. we try things in the following order:
1621 * 1000 full -> 100 full/half -> 10 half
1622 */
1623 val &= ~(BMCR_ANRESTART | BMCR_ANENABLE);
1624 val |= BMCR_FULLDPLX;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001625 val |= (cp->cas_flags & CAS_FLAG_1000MB_CAP) ?
David S. Miller1f26dac2005-09-27 15:24:13 -07001626 CAS_BMCR_SPEED1000 : BMCR_SPEED100;
1627 cas_phy_write(cp, MII_BMCR, val);
1628 cp->timer_ticks = 5;
1629 cp->lstate = link_force_try;
1630 cp->link_transition = LINK_TRANSITION_LINK_CONFIG;
1631 break;
1632
1633 case link_force_try:
1634 /* Downgrade from 1000 to 100 to 10 Mbps if necessary. */
1635 val = cas_phy_read(cp, MII_BMCR);
1636 cp->timer_ticks = 5;
1637 if (val & CAS_BMCR_SPEED1000) { /* gigabit */
1638 val &= ~CAS_BMCR_SPEED1000;
1639 val |= (BMCR_SPEED100 | BMCR_FULLDPLX);
1640 cas_phy_write(cp, MII_BMCR, val);
1641 break;
1642 }
1643
1644 if (val & BMCR_SPEED100) {
1645 if (val & BMCR_FULLDPLX) /* fd failed */
1646 val &= ~BMCR_FULLDPLX;
1647 else { /* 100Mbps failed */
1648 val &= ~BMCR_SPEED100;
1649 }
1650 cas_phy_write(cp, MII_BMCR, val);
1651 break;
1652 }
1653 default:
1654 break;
1655 }
1656 return 0;
1657}
1658
1659
1660/* must be invoked with cp->lock held */
1661static int cas_mii_link_check(struct cas *cp, const u16 bmsr)
1662{
1663 int restart;
1664
1665 if (bmsr & BMSR_LSTATUS) {
1666 /* Ok, here we got a link. If we had it due to a forced
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001667 * fallback, and we were configured for autoneg, we
David S. Miller1f26dac2005-09-27 15:24:13 -07001668 * retry a short autoneg pass. If you know your hub is
1669 * broken, use ethtool ;)
1670 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001671 if ((cp->lstate == link_force_try) &&
David S. Miller1f26dac2005-09-27 15:24:13 -07001672 (cp->link_cntl & BMCR_ANENABLE)) {
1673 cp->lstate = link_force_ret;
1674 cp->link_transition = LINK_TRANSITION_LINK_CONFIG;
1675 cas_mif_poll(cp, 0);
1676 cp->link_fcntl = cas_phy_read(cp, MII_BMCR);
1677 cp->timer_ticks = 5;
1678 if (cp->opened && netif_msg_link(cp))
1679 printk(KERN_INFO "%s: Got link after fallback, retrying"
1680 " autoneg once...\n", cp->dev->name);
1681 cas_phy_write(cp, MII_BMCR,
1682 cp->link_fcntl | BMCR_ANENABLE |
1683 BMCR_ANRESTART);
1684 cas_mif_poll(cp, 1);
1685
1686 } else if (cp->lstate != link_up) {
1687 cp->lstate = link_up;
1688 cp->link_transition = LINK_TRANSITION_LINK_UP;
1689
1690 if (cp->opened) {
1691 cas_set_link_modes(cp);
1692 netif_carrier_on(cp->dev);
1693 }
1694 }
1695 return 0;
1696 }
1697
1698 /* link not up. if the link was previously up, we restart the
1699 * whole process
1700 */
1701 restart = 0;
1702 if (cp->lstate == link_up) {
1703 cp->lstate = link_down;
1704 cp->link_transition = LINK_TRANSITION_LINK_DOWN;
1705
1706 netif_carrier_off(cp->dev);
1707 if (cp->opened && netif_msg_link(cp))
1708 printk(KERN_INFO "%s: Link down\n",
1709 cp->dev->name);
1710 restart = 1;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001711
David S. Miller1f26dac2005-09-27 15:24:13 -07001712 } else if (++cp->timer_ticks > 10)
1713 cas_mdio_link_not_up(cp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001714
David S. Miller1f26dac2005-09-27 15:24:13 -07001715 return restart;
1716}
1717
1718static int cas_mif_interrupt(struct net_device *dev, struct cas *cp,
1719 u32 status)
1720{
1721 u32 stat = readl(cp->regs + REG_MIF_STATUS);
1722 u16 bmsr;
1723
1724 /* check for a link change */
1725 if (CAS_VAL(MIF_STATUS_POLL_STATUS, stat) == 0)
1726 return 0;
1727
1728 bmsr = CAS_VAL(MIF_STATUS_POLL_DATA, stat);
1729 return cas_mii_link_check(cp, bmsr);
1730}
1731
1732static int cas_pci_interrupt(struct net_device *dev, struct cas *cp,
1733 u32 status)
1734{
1735 u32 stat = readl(cp->regs + REG_PCI_ERR_STATUS);
1736
1737 if (!stat)
1738 return 0;
1739
1740 printk(KERN_ERR "%s: PCI error [%04x:%04x] ", dev->name, stat,
1741 readl(cp->regs + REG_BIM_DIAG));
1742
1743 /* cassini+ has this reserved */
1744 if ((stat & PCI_ERR_BADACK) &&
1745 ((cp->cas_flags & CAS_FLAG_REG_PLUS) == 0))
1746 printk("<No ACK64# during ABS64 cycle> ");
1747
1748 if (stat & PCI_ERR_DTRTO)
1749 printk("<Delayed transaction timeout> ");
1750 if (stat & PCI_ERR_OTHER)
1751 printk("<other> ");
1752 if (stat & PCI_ERR_BIM_DMA_WRITE)
1753 printk("<BIM DMA 0 write req> ");
1754 if (stat & PCI_ERR_BIM_DMA_READ)
1755 printk("<BIM DMA 0 read req> ");
1756 printk("\n");
1757
1758 if (stat & PCI_ERR_OTHER) {
1759 u16 cfg;
1760
1761 /* Interrogate PCI config space for the
1762 * true cause.
1763 */
1764 pci_read_config_word(cp->pdev, PCI_STATUS, &cfg);
1765 printk(KERN_ERR "%s: Read PCI cfg space status [%04x]\n",
1766 dev->name, cfg);
1767 if (cfg & PCI_STATUS_PARITY)
1768 printk(KERN_ERR "%s: PCI parity error detected.\n",
1769 dev->name);
1770 if (cfg & PCI_STATUS_SIG_TARGET_ABORT)
1771 printk(KERN_ERR "%s: PCI target abort.\n",
1772 dev->name);
1773 if (cfg & PCI_STATUS_REC_TARGET_ABORT)
1774 printk(KERN_ERR "%s: PCI master acks target abort.\n",
1775 dev->name);
1776 if (cfg & PCI_STATUS_REC_MASTER_ABORT)
1777 printk(KERN_ERR "%s: PCI master abort.\n", dev->name);
1778 if (cfg & PCI_STATUS_SIG_SYSTEM_ERROR)
1779 printk(KERN_ERR "%s: PCI system error SERR#.\n",
1780 dev->name);
1781 if (cfg & PCI_STATUS_DETECTED_PARITY)
1782 printk(KERN_ERR "%s: PCI parity error.\n",
1783 dev->name);
1784
1785 /* Write the error bits back to clear them. */
1786 cfg &= (PCI_STATUS_PARITY |
1787 PCI_STATUS_SIG_TARGET_ABORT |
1788 PCI_STATUS_REC_TARGET_ABORT |
1789 PCI_STATUS_REC_MASTER_ABORT |
1790 PCI_STATUS_SIG_SYSTEM_ERROR |
1791 PCI_STATUS_DETECTED_PARITY);
1792 pci_write_config_word(cp->pdev, PCI_STATUS, cfg);
1793 }
1794
1795 /* For all PCI errors, we should reset the chip. */
1796 return 1;
1797}
1798
1799/* All non-normal interrupt conditions get serviced here.
1800 * Returns non-zero if we should just exit the interrupt
1801 * handler right now (ie. if we reset the card which invalidates
1802 * all of the other original irq status bits).
1803 */
1804static int cas_abnormal_irq(struct net_device *dev, struct cas *cp,
1805 u32 status)
1806{
1807 if (status & INTR_RX_TAG_ERROR) {
1808 /* corrupt RX tag framing */
1809 if (netif_msg_rx_err(cp))
1810 printk(KERN_DEBUG "%s: corrupt rx tag framing\n",
1811 cp->dev->name);
1812 spin_lock(&cp->stat_lock[0]);
1813 cp->net_stats[0].rx_errors++;
1814 spin_unlock(&cp->stat_lock[0]);
1815 goto do_reset;
1816 }
1817
1818 if (status & INTR_RX_LEN_MISMATCH) {
1819 /* length mismatch. */
1820 if (netif_msg_rx_err(cp))
1821 printk(KERN_DEBUG "%s: length mismatch for rx frame\n",
1822 cp->dev->name);
1823 spin_lock(&cp->stat_lock[0]);
1824 cp->net_stats[0].rx_errors++;
1825 spin_unlock(&cp->stat_lock[0]);
1826 goto do_reset;
1827 }
1828
1829 if (status & INTR_PCS_STATUS) {
1830 if (cas_pcs_interrupt(dev, cp, status))
1831 goto do_reset;
1832 }
1833
1834 if (status & INTR_TX_MAC_STATUS) {
1835 if (cas_txmac_interrupt(dev, cp, status))
1836 goto do_reset;
1837 }
1838
1839 if (status & INTR_RX_MAC_STATUS) {
1840 if (cas_rxmac_interrupt(dev, cp, status))
1841 goto do_reset;
1842 }
1843
1844 if (status & INTR_MAC_CTRL_STATUS) {
1845 if (cas_mac_interrupt(dev, cp, status))
1846 goto do_reset;
1847 }
1848
1849 if (status & INTR_MIF_STATUS) {
1850 if (cas_mif_interrupt(dev, cp, status))
1851 goto do_reset;
1852 }
1853
1854 if (status & INTR_PCI_ERROR_STATUS) {
1855 if (cas_pci_interrupt(dev, cp, status))
1856 goto do_reset;
1857 }
1858 return 0;
1859
1860do_reset:
1861#if 1
1862 atomic_inc(&cp->reset_task_pending);
1863 atomic_inc(&cp->reset_task_pending_all);
1864 printk(KERN_ERR "%s:reset called in cas_abnormal_irq [0x%x]\n",
1865 dev->name, status);
1866 schedule_work(&cp->reset_task);
1867#else
1868 atomic_set(&cp->reset_task_pending, CAS_RESET_ALL);
1869 printk(KERN_ERR "reset called in cas_abnormal_irq\n");
1870 schedule_work(&cp->reset_task);
1871#endif
1872 return 1;
1873}
1874
1875/* NOTE: CAS_TABORT returns 1 or 2 so that it can be used when
1876 * determining whether to do a netif_stop/wakeup
1877 */
1878#define CAS_TABORT(x) (((x)->cas_flags & CAS_FLAG_TARGET_ABORT) ? 2 : 1)
1879#define CAS_ROUND_PAGE(x) (((x) + PAGE_SIZE - 1) & PAGE_MASK)
1880static inline int cas_calc_tabort(struct cas *cp, const unsigned long addr,
1881 const int len)
1882{
1883 unsigned long off = addr + len;
1884
1885 if (CAS_TABORT(cp) == 1)
1886 return 0;
1887 if ((CAS_ROUND_PAGE(off) - off) > TX_TARGET_ABORT_LEN)
1888 return 0;
1889 return TX_TARGET_ABORT_LEN;
1890}
1891
1892static inline void cas_tx_ringN(struct cas *cp, int ring, int limit)
1893{
1894 struct cas_tx_desc *txds;
1895 struct sk_buff **skbs;
1896 struct net_device *dev = cp->dev;
1897 int entry, count;
1898
1899 spin_lock(&cp->tx_lock[ring]);
1900 txds = cp->init_txds[ring];
1901 skbs = cp->tx_skbs[ring];
1902 entry = cp->tx_old[ring];
1903
1904 count = TX_BUFF_COUNT(ring, entry, limit);
1905 while (entry != limit) {
1906 struct sk_buff *skb = skbs[entry];
1907 dma_addr_t daddr;
1908 u32 dlen;
1909 int frag;
1910
1911 if (!skb) {
1912 /* this should never occur */
1913 entry = TX_DESC_NEXT(ring, entry);
1914 continue;
1915 }
1916
1917 /* however, we might get only a partial skb release. */
1918 count -= skb_shinfo(skb)->nr_frags +
1919 + cp->tx_tiny_use[ring][entry].nbufs + 1;
1920 if (count < 0)
1921 break;
1922
1923 if (netif_msg_tx_done(cp))
1924 printk(KERN_DEBUG "%s: tx[%d] done, slot %d\n",
1925 cp->dev->name, ring, entry);
1926
1927 skbs[entry] = NULL;
1928 cp->tx_tiny_use[ring][entry].nbufs = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001929
David S. Miller1f26dac2005-09-27 15:24:13 -07001930 for (frag = 0; frag <= skb_shinfo(skb)->nr_frags; frag++) {
1931 struct cas_tx_desc *txd = txds + entry;
1932
1933 daddr = le64_to_cpu(txd->buffer);
1934 dlen = CAS_VAL(TX_DESC_BUFLEN,
1935 le64_to_cpu(txd->control));
1936 pci_unmap_page(cp->pdev, daddr, dlen,
1937 PCI_DMA_TODEVICE);
1938 entry = TX_DESC_NEXT(ring, entry);
1939
1940 /* tiny buffer may follow */
1941 if (cp->tx_tiny_use[ring][entry].used) {
1942 cp->tx_tiny_use[ring][entry].used = 0;
1943 entry = TX_DESC_NEXT(ring, entry);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001944 }
David S. Miller1f26dac2005-09-27 15:24:13 -07001945 }
1946
1947 spin_lock(&cp->stat_lock[ring]);
1948 cp->net_stats[ring].tx_packets++;
1949 cp->net_stats[ring].tx_bytes += skb->len;
1950 spin_unlock(&cp->stat_lock[ring]);
1951 dev_kfree_skb_irq(skb);
1952 }
1953 cp->tx_old[ring] = entry;
1954
1955 /* this is wrong for multiple tx rings. the net device needs
1956 * multiple queues for this to do the right thing. we wait
1957 * for 2*packets to be available when using tiny buffers
1958 */
1959 if (netif_queue_stopped(dev) &&
1960 (TX_BUFFS_AVAIL(cp, ring) > CAS_TABORT(cp)*(MAX_SKB_FRAGS + 1)))
1961 netif_wake_queue(dev);
1962 spin_unlock(&cp->tx_lock[ring]);
1963}
1964
1965static void cas_tx(struct net_device *dev, struct cas *cp,
1966 u32 status)
1967{
1968 int limit, ring;
1969#ifdef USE_TX_COMPWB
1970 u64 compwb = le64_to_cpu(cp->init_block->tx_compwb);
1971#endif
1972 if (netif_msg_intr(cp))
Andrew Morton64af4c12006-01-17 15:14:49 -08001973 printk(KERN_DEBUG "%s: tx interrupt, status: 0x%x, %llx\n",
1974 cp->dev->name, status, (unsigned long long)compwb);
David S. Miller1f26dac2005-09-27 15:24:13 -07001975 /* process all the rings */
1976 for (ring = 0; ring < N_TX_RINGS; ring++) {
1977#ifdef USE_TX_COMPWB
1978 /* use the completion writeback registers */
1979 limit = (CAS_VAL(TX_COMPWB_MSB, compwb) << 8) |
1980 CAS_VAL(TX_COMPWB_LSB, compwb);
1981 compwb = TX_COMPWB_NEXT(compwb);
1982#else
1983 limit = readl(cp->regs + REG_TX_COMPN(ring));
1984#endif
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001985 if (cp->tx_old[ring] != limit)
David S. Miller1f26dac2005-09-27 15:24:13 -07001986 cas_tx_ringN(cp, ring, limit);
1987 }
1988}
1989
1990
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001991static int cas_rx_process_pkt(struct cas *cp, struct cas_rx_comp *rxc,
1992 int entry, const u64 *words,
David S. Miller1f26dac2005-09-27 15:24:13 -07001993 struct sk_buff **skbref)
1994{
1995 int dlen, hlen, len, i, alloclen;
1996 int off, swivel = RX_SWIVEL_OFF_VAL;
1997 struct cas_page *page;
1998 struct sk_buff *skb;
1999 void *addr, *crcaddr;
Al Viroe5e02542008-01-03 18:49:00 -08002000 __sum16 csum;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002001 char *p;
David S. Miller1f26dac2005-09-27 15:24:13 -07002002
2003 hlen = CAS_VAL(RX_COMP2_HDR_SIZE, words[1]);
2004 dlen = CAS_VAL(RX_COMP1_DATA_SIZE, words[0]);
2005 len = hlen + dlen;
2006
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002007 if (RX_COPY_ALWAYS || (words[2] & RX_COMP3_SMALL_PKT))
David S. Miller1f26dac2005-09-27 15:24:13 -07002008 alloclen = len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002009 else
David S. Miller1f26dac2005-09-27 15:24:13 -07002010 alloclen = max(hlen, RX_COPY_MIN);
2011
2012 skb = dev_alloc_skb(alloclen + swivel + cp->crc_size);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002013 if (skb == NULL)
David S. Miller1f26dac2005-09-27 15:24:13 -07002014 return -1;
2015
2016 *skbref = skb;
David S. Miller1f26dac2005-09-27 15:24:13 -07002017 skb_reserve(skb, swivel);
2018
2019 p = skb->data;
2020 addr = crcaddr = NULL;
2021 if (hlen) { /* always copy header pages */
2022 i = CAS_VAL(RX_COMP2_HDR_INDEX, words[1]);
2023 page = cp->rx_pages[CAS_VAL(RX_INDEX_RING, i)][CAS_VAL(RX_INDEX_NUM, i)];
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002024 off = CAS_VAL(RX_COMP2_HDR_OFF, words[1]) * 0x100 +
David S. Miller1f26dac2005-09-27 15:24:13 -07002025 swivel;
2026
2027 i = hlen;
2028 if (!dlen) /* attach FCS */
2029 i += cp->crc_size;
2030 pci_dma_sync_single_for_cpu(cp->pdev, page->dma_addr + off, i,
2031 PCI_DMA_FROMDEVICE);
2032 addr = cas_page_map(page->buffer);
2033 memcpy(p, addr + off, i);
2034 pci_dma_sync_single_for_device(cp->pdev, page->dma_addr + off, i,
2035 PCI_DMA_FROMDEVICE);
2036 cas_page_unmap(addr);
2037 RX_USED_ADD(page, 0x100);
2038 p += hlen;
2039 swivel = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002040 }
David S. Miller1f26dac2005-09-27 15:24:13 -07002041
2042
2043 if (alloclen < (hlen + dlen)) {
2044 skb_frag_t *frag = skb_shinfo(skb)->frags;
2045
2046 /* normal or jumbo packets. we use frags */
2047 i = CAS_VAL(RX_COMP1_DATA_INDEX, words[0]);
2048 page = cp->rx_pages[CAS_VAL(RX_INDEX_RING, i)][CAS_VAL(RX_INDEX_NUM, i)];
2049 off = CAS_VAL(RX_COMP1_DATA_OFF, words[0]) + swivel;
2050
2051 hlen = min(cp->page_size - off, dlen);
2052 if (hlen < 0) {
2053 if (netif_msg_rx_err(cp)) {
2054 printk(KERN_DEBUG "%s: rx page overflow: "
2055 "%d\n", cp->dev->name, hlen);
2056 }
2057 dev_kfree_skb_irq(skb);
2058 return -1;
2059 }
2060 i = hlen;
2061 if (i == dlen) /* attach FCS */
2062 i += cp->crc_size;
2063 pci_dma_sync_single_for_cpu(cp->pdev, page->dma_addr + off, i,
2064 PCI_DMA_FROMDEVICE);
2065
2066 /* make sure we always copy a header */
2067 swivel = 0;
2068 if (p == (char *) skb->data) { /* not split */
2069 addr = cas_page_map(page->buffer);
2070 memcpy(p, addr + off, RX_COPY_MIN);
2071 pci_dma_sync_single_for_device(cp->pdev, page->dma_addr + off, i,
2072 PCI_DMA_FROMDEVICE);
2073 cas_page_unmap(addr);
2074 off += RX_COPY_MIN;
2075 swivel = RX_COPY_MIN;
2076 RX_USED_ADD(page, cp->mtu_stride);
2077 } else {
2078 RX_USED_ADD(page, hlen);
2079 }
2080 skb_put(skb, alloclen);
2081
2082 skb_shinfo(skb)->nr_frags++;
2083 skb->data_len += hlen - swivel;
David S. Millerd011a232008-01-04 00:03:56 -08002084 skb->truesize += hlen - swivel;
David S. Miller1f26dac2005-09-27 15:24:13 -07002085 skb->len += hlen - swivel;
2086
2087 get_page(page->buffer);
2088 frag->page = page->buffer;
2089 frag->page_offset = off;
2090 frag->size = hlen - swivel;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002091
David S. Miller1f26dac2005-09-27 15:24:13 -07002092 /* any more data? */
2093 if ((words[0] & RX_COMP1_SPLIT_PKT) && ((dlen -= hlen) > 0)) {
2094 hlen = dlen;
2095 off = 0;
2096
2097 i = CAS_VAL(RX_COMP2_NEXT_INDEX, words[1]);
2098 page = cp->rx_pages[CAS_VAL(RX_INDEX_RING, i)][CAS_VAL(RX_INDEX_NUM, i)];
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002099 pci_dma_sync_single_for_cpu(cp->pdev, page->dma_addr,
2100 hlen + cp->crc_size,
David S. Miller1f26dac2005-09-27 15:24:13 -07002101 PCI_DMA_FROMDEVICE);
2102 pci_dma_sync_single_for_device(cp->pdev, page->dma_addr,
2103 hlen + cp->crc_size,
2104 PCI_DMA_FROMDEVICE);
2105
2106 skb_shinfo(skb)->nr_frags++;
2107 skb->data_len += hlen;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002108 skb->len += hlen;
David S. Miller1f26dac2005-09-27 15:24:13 -07002109 frag++;
2110
2111 get_page(page->buffer);
2112 frag->page = page->buffer;
2113 frag->page_offset = 0;
2114 frag->size = hlen;
2115 RX_USED_ADD(page, hlen + cp->crc_size);
2116 }
2117
2118 if (cp->crc_size) {
2119 addr = cas_page_map(page->buffer);
2120 crcaddr = addr + off + hlen;
2121 }
2122
2123 } else {
2124 /* copying packet */
2125 if (!dlen)
2126 goto end_copy_pkt;
2127
2128 i = CAS_VAL(RX_COMP1_DATA_INDEX, words[0]);
2129 page = cp->rx_pages[CAS_VAL(RX_INDEX_RING, i)][CAS_VAL(RX_INDEX_NUM, i)];
2130 off = CAS_VAL(RX_COMP1_DATA_OFF, words[0]) + swivel;
2131 hlen = min(cp->page_size - off, dlen);
2132 if (hlen < 0) {
2133 if (netif_msg_rx_err(cp)) {
2134 printk(KERN_DEBUG "%s: rx page overflow: "
2135 "%d\n", cp->dev->name, hlen);
2136 }
2137 dev_kfree_skb_irq(skb);
2138 return -1;
2139 }
2140 i = hlen;
2141 if (i == dlen) /* attach FCS */
2142 i += cp->crc_size;
2143 pci_dma_sync_single_for_cpu(cp->pdev, page->dma_addr + off, i,
2144 PCI_DMA_FROMDEVICE);
2145 addr = cas_page_map(page->buffer);
2146 memcpy(p, addr + off, i);
2147 pci_dma_sync_single_for_device(cp->pdev, page->dma_addr + off, i,
2148 PCI_DMA_FROMDEVICE);
2149 cas_page_unmap(addr);
2150 if (p == (char *) skb->data) /* not split */
2151 RX_USED_ADD(page, cp->mtu_stride);
2152 else
2153 RX_USED_ADD(page, i);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002154
David S. Miller1f26dac2005-09-27 15:24:13 -07002155 /* any more data? */
2156 if ((words[0] & RX_COMP1_SPLIT_PKT) && ((dlen -= hlen) > 0)) {
2157 p += hlen;
2158 i = CAS_VAL(RX_COMP2_NEXT_INDEX, words[1]);
2159 page = cp->rx_pages[CAS_VAL(RX_INDEX_RING, i)][CAS_VAL(RX_INDEX_NUM, i)];
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002160 pci_dma_sync_single_for_cpu(cp->pdev, page->dma_addr,
2161 dlen + cp->crc_size,
David S. Miller1f26dac2005-09-27 15:24:13 -07002162 PCI_DMA_FROMDEVICE);
2163 addr = cas_page_map(page->buffer);
2164 memcpy(p, addr, dlen + cp->crc_size);
2165 pci_dma_sync_single_for_device(cp->pdev, page->dma_addr,
2166 dlen + cp->crc_size,
2167 PCI_DMA_FROMDEVICE);
2168 cas_page_unmap(addr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002169 RX_USED_ADD(page, dlen + cp->crc_size);
David S. Miller1f26dac2005-09-27 15:24:13 -07002170 }
2171end_copy_pkt:
2172 if (cp->crc_size) {
2173 addr = NULL;
2174 crcaddr = skb->data + alloclen;
2175 }
2176 skb_put(skb, alloclen);
2177 }
2178
Al Viroe5e02542008-01-03 18:49:00 -08002179 csum = (__force __sum16)htons(CAS_VAL(RX_COMP4_TCP_CSUM, words[3]));
David S. Miller1f26dac2005-09-27 15:24:13 -07002180 if (cp->crc_size) {
2181 /* checksum includes FCS. strip it out. */
Al Viroe5e02542008-01-03 18:49:00 -08002182 csum = csum_fold(csum_partial(crcaddr, cp->crc_size,
2183 csum_unfold(csum)));
David S. Miller1f26dac2005-09-27 15:24:13 -07002184 if (addr)
2185 cas_page_unmap(addr);
2186 }
David S. Miller1f26dac2005-09-27 15:24:13 -07002187 skb->protocol = eth_type_trans(skb, cp->dev);
David S. Millerb1443e22008-05-21 17:05:34 -07002188 if (skb->protocol == htons(ETH_P_IP)) {
2189 skb->csum = csum_unfold(~csum);
2190 skb->ip_summed = CHECKSUM_COMPLETE;
2191 } else
2192 skb->ip_summed = CHECKSUM_NONE;
David S. Miller1f26dac2005-09-27 15:24:13 -07002193 return len;
2194}
2195
2196
2197/* we can handle up to 64 rx flows at a time. we do the same thing
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002198 * as nonreassm except that we batch up the buffers.
David S. Miller1f26dac2005-09-27 15:24:13 -07002199 * NOTE: we currently just treat each flow as a bunch of packets that
2200 * we pass up. a better way would be to coalesce the packets
2201 * into a jumbo packet. to do that, we need to do the following:
2202 * 1) the first packet will have a clean split between header and
2203 * data. save both.
2204 * 2) each time the next flow packet comes in, extend the
2205 * data length and merge the checksums.
2206 * 3) on flow release, fix up the header.
2207 * 4) make sure the higher layer doesn't care.
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002208 * because packets get coalesced, we shouldn't run into fragment count
David S. Miller1f26dac2005-09-27 15:24:13 -07002209 * issues.
2210 */
2211static inline void cas_rx_flow_pkt(struct cas *cp, const u64 *words,
2212 struct sk_buff *skb)
2213{
2214 int flowid = CAS_VAL(RX_COMP3_FLOWID, words[2]) & (N_RX_FLOWS - 1);
2215 struct sk_buff_head *flow = &cp->rx_flows[flowid];
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002216
2217 /* this is protected at a higher layer, so no need to
David S. Miller1f26dac2005-09-27 15:24:13 -07002218 * do any additional locking here. stick the buffer
2219 * at the end.
2220 */
David S. Miller43f59c82008-09-21 21:28:51 -07002221 __skb_queue_tail(flow, skb);
David S. Miller1f26dac2005-09-27 15:24:13 -07002222 if (words[0] & RX_COMP1_RELEASE_FLOW) {
2223 while ((skb = __skb_dequeue(flow))) {
2224 cas_skb_release(skb);
2225 }
2226 }
2227}
2228
2229/* put rx descriptor back on ring. if a buffer is in use by a higher
2230 * layer, this will need to put in a replacement.
2231 */
2232static void cas_post_page(struct cas *cp, const int ring, const int index)
2233{
2234 cas_page_t *new;
2235 int entry;
2236
2237 entry = cp->rx_old[ring];
2238
2239 new = cas_page_swap(cp, ring, index);
2240 cp->init_rxds[ring][entry].buffer = cpu_to_le64(new->dma_addr);
2241 cp->init_rxds[ring][entry].index =
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002242 cpu_to_le64(CAS_BASE(RX_INDEX_NUM, index) |
David S. Miller1f26dac2005-09-27 15:24:13 -07002243 CAS_BASE(RX_INDEX_RING, ring));
2244
2245 entry = RX_DESC_ENTRY(ring, entry + 1);
2246 cp->rx_old[ring] = entry;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002247
David S. Miller1f26dac2005-09-27 15:24:13 -07002248 if (entry % 4)
2249 return;
2250
2251 if (ring == 0)
2252 writel(entry, cp->regs + REG_RX_KICK);
2253 else if ((N_RX_DESC_RINGS > 1) &&
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002254 (cp->cas_flags & CAS_FLAG_REG_PLUS))
David S. Miller1f26dac2005-09-27 15:24:13 -07002255 writel(entry, cp->regs + REG_PLUS_RX_KICK1);
2256}
2257
2258
2259/* only when things are bad */
2260static int cas_post_rxds_ringN(struct cas *cp, int ring, int num)
2261{
2262 unsigned int entry, last, count, released;
2263 int cluster;
2264 cas_page_t **page = cp->rx_pages[ring];
2265
2266 entry = cp->rx_old[ring];
2267
2268 if (netif_msg_intr(cp))
2269 printk(KERN_DEBUG "%s: rxd[%d] interrupt, done: %d\n",
2270 cp->dev->name, ring, entry);
2271
2272 cluster = -1;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002273 count = entry & 0x3;
David S. Miller1f26dac2005-09-27 15:24:13 -07002274 last = RX_DESC_ENTRY(ring, num ? entry + num - 4: entry - 4);
2275 released = 0;
2276 while (entry != last) {
2277 /* make a new buffer if it's still in use */
David S. Miller9de4dfb42008-01-03 19:33:50 -08002278 if (page_count(page[entry]->buffer) > 1) {
David S. Miller1f26dac2005-09-27 15:24:13 -07002279 cas_page_t *new = cas_page_dequeue(cp);
2280 if (!new) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002281 /* let the timer know that we need to
David S. Miller1f26dac2005-09-27 15:24:13 -07002282 * do this again
2283 */
2284 cp->cas_flags |= CAS_FLAG_RXD_POST(ring);
2285 if (!timer_pending(&cp->link_timer))
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002286 mod_timer(&cp->link_timer, jiffies +
David S. Miller1f26dac2005-09-27 15:24:13 -07002287 CAS_LINK_FAST_TIMEOUT);
2288 cp->rx_old[ring] = entry;
2289 cp->rx_last[ring] = num ? num - released : 0;
2290 return -ENOMEM;
2291 }
2292 spin_lock(&cp->rx_inuse_lock);
2293 list_add(&page[entry]->list, &cp->rx_inuse_list);
2294 spin_unlock(&cp->rx_inuse_lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002295 cp->init_rxds[ring][entry].buffer =
David S. Miller1f26dac2005-09-27 15:24:13 -07002296 cpu_to_le64(new->dma_addr);
2297 page[entry] = new;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002298
David S. Miller1f26dac2005-09-27 15:24:13 -07002299 }
2300
2301 if (++count == 4) {
2302 cluster = entry;
2303 count = 0;
2304 }
2305 released++;
2306 entry = RX_DESC_ENTRY(ring, entry + 1);
2307 }
2308 cp->rx_old[ring] = entry;
2309
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002310 if (cluster < 0)
David S. Miller1f26dac2005-09-27 15:24:13 -07002311 return 0;
2312
2313 if (ring == 0)
2314 writel(cluster, cp->regs + REG_RX_KICK);
2315 else if ((N_RX_DESC_RINGS > 1) &&
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002316 (cp->cas_flags & CAS_FLAG_REG_PLUS))
David S. Miller1f26dac2005-09-27 15:24:13 -07002317 writel(cluster, cp->regs + REG_PLUS_RX_KICK1);
2318 return 0;
2319}
2320
2321
2322/* process a completion ring. packets are set up in three basic ways:
2323 * small packets: should be copied header + data in single buffer.
2324 * large packets: header and data in a single buffer.
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002325 * split packets: header in a separate buffer from data.
David S. Miller1f26dac2005-09-27 15:24:13 -07002326 * data may be in multiple pages. data may be > 256
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002327 * bytes but in a single page.
David S. Miller1f26dac2005-09-27 15:24:13 -07002328 *
2329 * NOTE: RX page posting is done in this routine as well. while there's
2330 * the capability of using multiple RX completion rings, it isn't
2331 * really worthwhile due to the fact that the page posting will
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002332 * force serialization on the single descriptor ring.
David S. Miller1f26dac2005-09-27 15:24:13 -07002333 */
2334static int cas_rx_ringN(struct cas *cp, int ring, int budget)
2335{
2336 struct cas_rx_comp *rxcs = cp->init_rxcs[ring];
2337 int entry, drops;
2338 int npackets = 0;
2339
2340 if (netif_msg_intr(cp))
2341 printk(KERN_DEBUG "%s: rx[%d] interrupt, done: %d/%d\n",
2342 cp->dev->name, ring,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002343 readl(cp->regs + REG_RX_COMP_HEAD),
David S. Miller1f26dac2005-09-27 15:24:13 -07002344 cp->rx_new[ring]);
2345
2346 entry = cp->rx_new[ring];
2347 drops = 0;
2348 while (1) {
2349 struct cas_rx_comp *rxc = rxcs + entry;
Ingo Molnarb71e8392008-11-25 16:57:05 -08002350 struct sk_buff *uninitialized_var(skb);
David S. Miller1f26dac2005-09-27 15:24:13 -07002351 int type, len;
2352 u64 words[4];
2353 int i, dring;
2354
2355 words[0] = le64_to_cpu(rxc->word1);
2356 words[1] = le64_to_cpu(rxc->word2);
2357 words[2] = le64_to_cpu(rxc->word3);
2358 words[3] = le64_to_cpu(rxc->word4);
2359
2360 /* don't touch if still owned by hw */
2361 type = CAS_VAL(RX_COMP1_TYPE, words[0]);
2362 if (type == 0)
2363 break;
2364
2365 /* hw hasn't cleared the zero bit yet */
2366 if (words[3] & RX_COMP4_ZERO) {
2367 break;
2368 }
2369
2370 /* get info on the packet */
2371 if (words[3] & (RX_COMP4_LEN_MISMATCH | RX_COMP4_BAD)) {
2372 spin_lock(&cp->stat_lock[ring]);
2373 cp->net_stats[ring].rx_errors++;
2374 if (words[3] & RX_COMP4_LEN_MISMATCH)
2375 cp->net_stats[ring].rx_length_errors++;
2376 if (words[3] & RX_COMP4_BAD)
2377 cp->net_stats[ring].rx_crc_errors++;
2378 spin_unlock(&cp->stat_lock[ring]);
2379
2380 /* We'll just return it to Cassini. */
2381 drop_it:
2382 spin_lock(&cp->stat_lock[ring]);
2383 ++cp->net_stats[ring].rx_dropped;
2384 spin_unlock(&cp->stat_lock[ring]);
2385 goto next;
2386 }
2387
2388 len = cas_rx_process_pkt(cp, rxc, entry, words, &skb);
2389 if (len < 0) {
2390 ++drops;
2391 goto drop_it;
2392 }
2393
2394 /* see if it's a flow re-assembly or not. the driver
2395 * itself handles release back up.
2396 */
2397 if (RX_DONT_BATCH || (type == 0x2)) {
2398 /* non-reassm: these always get released */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002399 cas_skb_release(skb);
David S. Miller1f26dac2005-09-27 15:24:13 -07002400 } else {
2401 cas_rx_flow_pkt(cp, words, skb);
2402 }
2403
2404 spin_lock(&cp->stat_lock[ring]);
2405 cp->net_stats[ring].rx_packets++;
2406 cp->net_stats[ring].rx_bytes += len;
2407 spin_unlock(&cp->stat_lock[ring]);
David S. Miller1f26dac2005-09-27 15:24:13 -07002408
2409 next:
2410 npackets++;
2411
2412 /* should it be released? */
2413 if (words[0] & RX_COMP1_RELEASE_HDR) {
2414 i = CAS_VAL(RX_COMP2_HDR_INDEX, words[1]);
2415 dring = CAS_VAL(RX_INDEX_RING, i);
2416 i = CAS_VAL(RX_INDEX_NUM, i);
2417 cas_post_page(cp, dring, i);
2418 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002419
David S. Miller1f26dac2005-09-27 15:24:13 -07002420 if (words[0] & RX_COMP1_RELEASE_DATA) {
2421 i = CAS_VAL(RX_COMP1_DATA_INDEX, words[0]);
2422 dring = CAS_VAL(RX_INDEX_RING, i);
2423 i = CAS_VAL(RX_INDEX_NUM, i);
2424 cas_post_page(cp, dring, i);
2425 }
2426
2427 if (words[0] & RX_COMP1_RELEASE_NEXT) {
2428 i = CAS_VAL(RX_COMP2_NEXT_INDEX, words[1]);
2429 dring = CAS_VAL(RX_INDEX_RING, i);
2430 i = CAS_VAL(RX_INDEX_NUM, i);
2431 cas_post_page(cp, dring, i);
2432 }
2433
2434 /* skip to the next entry */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002435 entry = RX_COMP_ENTRY(ring, entry + 1 +
David S. Miller1f26dac2005-09-27 15:24:13 -07002436 CAS_VAL(RX_COMP1_SKIP, words[0]));
2437#ifdef USE_NAPI
2438 if (budget && (npackets >= budget))
2439 break;
2440#endif
2441 }
2442 cp->rx_new[ring] = entry;
2443
2444 if (drops)
2445 printk(KERN_INFO "%s: Memory squeeze, deferring packet.\n",
2446 cp->dev->name);
2447 return npackets;
2448}
2449
2450
2451/* put completion entries back on the ring */
2452static void cas_post_rxcs_ringN(struct net_device *dev,
2453 struct cas *cp, int ring)
2454{
2455 struct cas_rx_comp *rxc = cp->init_rxcs[ring];
2456 int last, entry;
2457
2458 last = cp->rx_cur[ring];
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002459 entry = cp->rx_new[ring];
David S. Miller1f26dac2005-09-27 15:24:13 -07002460 if (netif_msg_intr(cp))
2461 printk(KERN_DEBUG "%s: rxc[%d] interrupt, done: %d/%d\n",
2462 dev->name, ring, readl(cp->regs + REG_RX_COMP_HEAD),
2463 entry);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002464
David S. Miller1f26dac2005-09-27 15:24:13 -07002465 /* zero and re-mark descriptors */
2466 while (last != entry) {
2467 cas_rxc_init(rxc + last);
2468 last = RX_COMP_ENTRY(ring, last + 1);
2469 }
2470 cp->rx_cur[ring] = last;
2471
2472 if (ring == 0)
2473 writel(last, cp->regs + REG_RX_COMP_TAIL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002474 else if (cp->cas_flags & CAS_FLAG_REG_PLUS)
David S. Miller1f26dac2005-09-27 15:24:13 -07002475 writel(last, cp->regs + REG_PLUS_RX_COMPN_TAIL(ring));
2476}
2477
2478
2479
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002480/* cassini can use all four PCI interrupts for the completion ring.
David S. Miller1f26dac2005-09-27 15:24:13 -07002481 * rings 3 and 4 are identical
2482 */
2483#if defined(USE_PCI_INTC) || defined(USE_PCI_INTD)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002484static inline void cas_handle_irqN(struct net_device *dev,
David S. Miller1f26dac2005-09-27 15:24:13 -07002485 struct cas *cp, const u32 status,
2486 const int ring)
2487{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002488 if (status & (INTR_RX_COMP_FULL_ALT | INTR_RX_COMP_AF_ALT))
David S. Miller1f26dac2005-09-27 15:24:13 -07002489 cas_post_rxcs_ringN(dev, cp, ring);
2490}
2491
David Howells7d12e782006-10-05 14:55:46 +01002492static irqreturn_t cas_interruptN(int irq, void *dev_id)
David S. Miller1f26dac2005-09-27 15:24:13 -07002493{
2494 struct net_device *dev = dev_id;
2495 struct cas *cp = netdev_priv(dev);
2496 unsigned long flags;
2497 int ring;
2498 u32 status = readl(cp->regs + REG_PLUS_INTRN_STATUS(ring));
2499
2500 /* check for shared irq */
2501 if (status == 0)
2502 return IRQ_NONE;
2503
2504 ring = (irq == cp->pci_irq_INTC) ? 2 : 3;
2505 spin_lock_irqsave(&cp->lock, flags);
2506 if (status & INTR_RX_DONE_ALT) { /* handle rx separately */
2507#ifdef USE_NAPI
2508 cas_mask_intr(cp);
Ben Hutchings288379f2009-01-19 16:43:59 -08002509 napi_schedule(&cp->napi);
David S. Miller1f26dac2005-09-27 15:24:13 -07002510#else
2511 cas_rx_ringN(cp, ring, 0);
2512#endif
2513 status &= ~INTR_RX_DONE_ALT;
2514 }
2515
2516 if (status)
2517 cas_handle_irqN(dev, cp, status, ring);
2518 spin_unlock_irqrestore(&cp->lock, flags);
2519 return IRQ_HANDLED;
2520}
2521#endif
2522
2523#ifdef USE_PCI_INTB
2524/* everything but rx packets */
2525static inline void cas_handle_irq1(struct cas *cp, const u32 status)
2526{
2527 if (status & INTR_RX_BUF_UNAVAIL_1) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002528 /* Frame arrived, no free RX buffers available.
David S. Miller1f26dac2005-09-27 15:24:13 -07002529 * NOTE: we can get this on a link transition. */
2530 cas_post_rxds_ringN(cp, 1, 0);
2531 spin_lock(&cp->stat_lock[1]);
2532 cp->net_stats[1].rx_dropped++;
2533 spin_unlock(&cp->stat_lock[1]);
2534 }
2535
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002536 if (status & INTR_RX_BUF_AE_1)
2537 cas_post_rxds_ringN(cp, 1, RX_DESC_RINGN_SIZE(1) -
David S. Miller1f26dac2005-09-27 15:24:13 -07002538 RX_AE_FREEN_VAL(1));
2539
2540 if (status & (INTR_RX_COMP_AF | INTR_RX_COMP_FULL))
2541 cas_post_rxcs_ringN(cp, 1);
2542}
2543
2544/* ring 2 handles a few more events than 3 and 4 */
David Howells7d12e782006-10-05 14:55:46 +01002545static irqreturn_t cas_interrupt1(int irq, void *dev_id)
David S. Miller1f26dac2005-09-27 15:24:13 -07002546{
2547 struct net_device *dev = dev_id;
2548 struct cas *cp = netdev_priv(dev);
2549 unsigned long flags;
2550 u32 status = readl(cp->regs + REG_PLUS_INTRN_STATUS(1));
2551
2552 /* check for shared interrupt */
2553 if (status == 0)
2554 return IRQ_NONE;
2555
2556 spin_lock_irqsave(&cp->lock, flags);
2557 if (status & INTR_RX_DONE_ALT) { /* handle rx separately */
2558#ifdef USE_NAPI
2559 cas_mask_intr(cp);
Ben Hutchings288379f2009-01-19 16:43:59 -08002560 napi_schedule(&cp->napi);
David S. Miller1f26dac2005-09-27 15:24:13 -07002561#else
2562 cas_rx_ringN(cp, 1, 0);
2563#endif
2564 status &= ~INTR_RX_DONE_ALT;
2565 }
2566 if (status)
2567 cas_handle_irq1(cp, status);
2568 spin_unlock_irqrestore(&cp->lock, flags);
2569 return IRQ_HANDLED;
2570}
2571#endif
2572
2573static inline void cas_handle_irq(struct net_device *dev,
2574 struct cas *cp, const u32 status)
2575{
2576 /* housekeeping interrupts */
2577 if (status & INTR_ERROR_MASK)
2578 cas_abnormal_irq(dev, cp, status);
2579
2580 if (status & INTR_RX_BUF_UNAVAIL) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002581 /* Frame arrived, no free RX buffers available.
David S. Miller1f26dac2005-09-27 15:24:13 -07002582 * NOTE: we can get this on a link transition.
2583 */
2584 cas_post_rxds_ringN(cp, 0, 0);
2585 spin_lock(&cp->stat_lock[0]);
2586 cp->net_stats[0].rx_dropped++;
2587 spin_unlock(&cp->stat_lock[0]);
2588 } else if (status & INTR_RX_BUF_AE) {
2589 cas_post_rxds_ringN(cp, 0, RX_DESC_RINGN_SIZE(0) -
2590 RX_AE_FREEN_VAL(0));
2591 }
2592
2593 if (status & (INTR_RX_COMP_AF | INTR_RX_COMP_FULL))
2594 cas_post_rxcs_ringN(dev, cp, 0);
2595}
2596
David Howells7d12e782006-10-05 14:55:46 +01002597static irqreturn_t cas_interrupt(int irq, void *dev_id)
David S. Miller1f26dac2005-09-27 15:24:13 -07002598{
2599 struct net_device *dev = dev_id;
2600 struct cas *cp = netdev_priv(dev);
2601 unsigned long flags;
2602 u32 status = readl(cp->regs + REG_INTR_STATUS);
2603
2604 if (status == 0)
2605 return IRQ_NONE;
2606
2607 spin_lock_irqsave(&cp->lock, flags);
2608 if (status & (INTR_TX_ALL | INTR_TX_INTME)) {
2609 cas_tx(dev, cp, status);
2610 status &= ~(INTR_TX_ALL | INTR_TX_INTME);
2611 }
2612
2613 if (status & INTR_RX_DONE) {
2614#ifdef USE_NAPI
2615 cas_mask_intr(cp);
Ben Hutchings288379f2009-01-19 16:43:59 -08002616 napi_schedule(&cp->napi);
David S. Miller1f26dac2005-09-27 15:24:13 -07002617#else
2618 cas_rx_ringN(cp, 0, 0);
2619#endif
2620 status &= ~INTR_RX_DONE;
2621 }
2622
2623 if (status)
2624 cas_handle_irq(dev, cp, status);
2625 spin_unlock_irqrestore(&cp->lock, flags);
2626 return IRQ_HANDLED;
2627}
2628
2629
2630#ifdef USE_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002631static int cas_poll(struct napi_struct *napi, int budget)
David S. Miller1f26dac2005-09-27 15:24:13 -07002632{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002633 struct cas *cp = container_of(napi, struct cas, napi);
2634 struct net_device *dev = cp->dev;
David S. Miller86216262008-01-04 00:23:18 -08002635 int i, enable_intr, credits;
David S. Miller1f26dac2005-09-27 15:24:13 -07002636 u32 status = readl(cp->regs + REG_INTR_STATUS);
2637 unsigned long flags;
2638
2639 spin_lock_irqsave(&cp->lock, flags);
2640 cas_tx(dev, cp, status);
2641 spin_unlock_irqrestore(&cp->lock, flags);
2642
2643 /* NAPI rx packets. we spread the credits across all of the
2644 * rxc rings
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002645 *
2646 * to make sure we're fair with the work we loop through each
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002647 * ring N_RX_COMP_RING times with a request of
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002648 * budget / N_RX_COMP_RINGS
David S. Miller1f26dac2005-09-27 15:24:13 -07002649 */
2650 enable_intr = 1;
2651 credits = 0;
2652 for (i = 0; i < N_RX_COMP_RINGS; i++) {
2653 int j;
2654 for (j = 0; j < N_RX_COMP_RINGS; j++) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002655 credits += cas_rx_ringN(cp, j, budget / N_RX_COMP_RINGS);
2656 if (credits >= budget) {
David S. Miller1f26dac2005-09-27 15:24:13 -07002657 enable_intr = 0;
2658 goto rx_comp;
2659 }
2660 }
2661 }
2662
2663rx_comp:
David S. Miller1f26dac2005-09-27 15:24:13 -07002664 /* final rx completion */
2665 spin_lock_irqsave(&cp->lock, flags);
2666 if (status)
2667 cas_handle_irq(dev, cp, status);
2668
2669#ifdef USE_PCI_INTB
2670 if (N_RX_COMP_RINGS > 1) {
2671 status = readl(cp->regs + REG_PLUS_INTRN_STATUS(1));
2672 if (status)
2673 cas_handle_irq1(dev, cp, status);
2674 }
2675#endif
2676
2677#ifdef USE_PCI_INTC
2678 if (N_RX_COMP_RINGS > 2) {
2679 status = readl(cp->regs + REG_PLUS_INTRN_STATUS(2));
2680 if (status)
2681 cas_handle_irqN(dev, cp, status, 2);
2682 }
2683#endif
2684
2685#ifdef USE_PCI_INTD
2686 if (N_RX_COMP_RINGS > 3) {
2687 status = readl(cp->regs + REG_PLUS_INTRN_STATUS(3));
2688 if (status)
2689 cas_handle_irqN(dev, cp, status, 3);
2690 }
2691#endif
2692 spin_unlock_irqrestore(&cp->lock, flags);
2693 if (enable_intr) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002694 napi_complete(napi);
David S. Miller1f26dac2005-09-27 15:24:13 -07002695 cas_unmask_intr(cp);
David S. Miller1f26dac2005-09-27 15:24:13 -07002696 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002697 return credits;
David S. Miller1f26dac2005-09-27 15:24:13 -07002698}
2699#endif
2700
2701#ifdef CONFIG_NET_POLL_CONTROLLER
2702static void cas_netpoll(struct net_device *dev)
2703{
2704 struct cas *cp = netdev_priv(dev);
2705
2706 cas_disable_irq(cp, 0);
David Howells7d12e782006-10-05 14:55:46 +01002707 cas_interrupt(cp->pdev->irq, dev);
David S. Miller1f26dac2005-09-27 15:24:13 -07002708 cas_enable_irq(cp, 0);
2709
2710#ifdef USE_PCI_INTB
2711 if (N_RX_COMP_RINGS > 1) {
2712 /* cas_interrupt1(); */
2713 }
2714#endif
2715#ifdef USE_PCI_INTC
2716 if (N_RX_COMP_RINGS > 2) {
2717 /* cas_interruptN(); */
2718 }
2719#endif
2720#ifdef USE_PCI_INTD
2721 if (N_RX_COMP_RINGS > 3) {
2722 /* cas_interruptN(); */
2723 }
2724#endif
2725}
2726#endif
2727
2728static void cas_tx_timeout(struct net_device *dev)
2729{
2730 struct cas *cp = netdev_priv(dev);
2731
2732 printk(KERN_ERR "%s: transmit timed out, resetting\n", dev->name);
2733 if (!cp->hw_running) {
2734 printk("%s: hrm.. hw not running!\n", dev->name);
2735 return;
2736 }
2737
2738 printk(KERN_ERR "%s: MIF_STATE[%08x]\n",
2739 dev->name, readl(cp->regs + REG_MIF_STATE_MACHINE));
2740
2741 printk(KERN_ERR "%s: MAC_STATE[%08x]\n",
2742 dev->name, readl(cp->regs + REG_MAC_STATE_MACHINE));
2743
2744 printk(KERN_ERR "%s: TX_STATE[%08x:%08x:%08x] "
2745 "FIFO[%08x:%08x:%08x] SM1[%08x] SM2[%08x]\n",
2746 dev->name,
2747 readl(cp->regs + REG_TX_CFG),
2748 readl(cp->regs + REG_MAC_TX_STATUS),
2749 readl(cp->regs + REG_MAC_TX_CFG),
2750 readl(cp->regs + REG_TX_FIFO_PKT_CNT),
2751 readl(cp->regs + REG_TX_FIFO_WRITE_PTR),
2752 readl(cp->regs + REG_TX_FIFO_READ_PTR),
2753 readl(cp->regs + REG_TX_SM_1),
2754 readl(cp->regs + REG_TX_SM_2));
2755
2756 printk(KERN_ERR "%s: RX_STATE[%08x:%08x:%08x]\n",
2757 dev->name,
2758 readl(cp->regs + REG_RX_CFG),
2759 readl(cp->regs + REG_MAC_RX_STATUS),
2760 readl(cp->regs + REG_MAC_RX_CFG));
2761
2762 printk(KERN_ERR "%s: HP_STATE[%08x:%08x:%08x:%08x]\n",
2763 dev->name,
2764 readl(cp->regs + REG_HP_STATE_MACHINE),
2765 readl(cp->regs + REG_HP_STATUS0),
2766 readl(cp->regs + REG_HP_STATUS1),
2767 readl(cp->regs + REG_HP_STATUS2));
2768
2769#if 1
2770 atomic_inc(&cp->reset_task_pending);
2771 atomic_inc(&cp->reset_task_pending_all);
2772 schedule_work(&cp->reset_task);
2773#else
2774 atomic_set(&cp->reset_task_pending, CAS_RESET_ALL);
2775 schedule_work(&cp->reset_task);
2776#endif
2777}
2778
2779static inline int cas_intme(int ring, int entry)
2780{
2781 /* Algorithm: IRQ every 1/2 of descriptors. */
2782 if (!(entry & ((TX_DESC_RINGN_SIZE(ring) >> 1) - 1)))
2783 return 1;
2784 return 0;
2785}
2786
2787
2788static void cas_write_txd(struct cas *cp, int ring, int entry,
2789 dma_addr_t mapping, int len, u64 ctrl, int last)
2790{
2791 struct cas_tx_desc *txd = cp->init_txds[ring] + entry;
2792
2793 ctrl |= CAS_BASE(TX_DESC_BUFLEN, len);
2794 if (cas_intme(ring, entry))
2795 ctrl |= TX_DESC_INTME;
2796 if (last)
2797 ctrl |= TX_DESC_EOF;
2798 txd->control = cpu_to_le64(ctrl);
2799 txd->buffer = cpu_to_le64(mapping);
2800}
2801
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002802static inline void *tx_tiny_buf(struct cas *cp, const int ring,
David S. Miller1f26dac2005-09-27 15:24:13 -07002803 const int entry)
2804{
2805 return cp->tx_tiny_bufs[ring] + TX_TINY_BUF_LEN*entry;
2806}
2807
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002808static inline dma_addr_t tx_tiny_map(struct cas *cp, const int ring,
David S. Miller1f26dac2005-09-27 15:24:13 -07002809 const int entry, const int tentry)
2810{
2811 cp->tx_tiny_use[ring][tentry].nbufs++;
2812 cp->tx_tiny_use[ring][entry].used = 1;
2813 return cp->tx_tiny_dvma[ring] + TX_TINY_BUF_LEN*entry;
2814}
2815
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002816static inline int cas_xmit_tx_ringN(struct cas *cp, int ring,
David S. Miller1f26dac2005-09-27 15:24:13 -07002817 struct sk_buff *skb)
2818{
2819 struct net_device *dev = cp->dev;
2820 int entry, nr_frags, frag, tabort, tentry;
2821 dma_addr_t mapping;
2822 unsigned long flags;
2823 u64 ctrl;
2824 u32 len;
2825
2826 spin_lock_irqsave(&cp->tx_lock[ring], flags);
2827
2828 /* This is a hard error, log it. */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002829 if (TX_BUFFS_AVAIL(cp, ring) <=
David S. Miller1f26dac2005-09-27 15:24:13 -07002830 CAS_TABORT(cp)*(skb_shinfo(skb)->nr_frags + 1)) {
2831 netif_stop_queue(dev);
2832 spin_unlock_irqrestore(&cp->tx_lock[ring], flags);
2833 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
2834 "queue awake!\n", dev->name);
2835 return 1;
2836 }
2837
2838 ctrl = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07002839 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002840 const u64 csum_start_off = skb_transport_offset(skb);
2841 const u64 csum_stuff_off = csum_start_off + skb->csum_offset;
David S. Miller1f26dac2005-09-27 15:24:13 -07002842
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002843 ctrl = TX_DESC_CSUM_EN |
David S. Miller1f26dac2005-09-27 15:24:13 -07002844 CAS_BASE(TX_DESC_CSUM_START, csum_start_off) |
2845 CAS_BASE(TX_DESC_CSUM_STUFF, csum_stuff_off);
2846 }
2847
2848 entry = cp->tx_new[ring];
2849 cp->tx_skbs[ring][entry] = skb;
2850
2851 nr_frags = skb_shinfo(skb)->nr_frags;
2852 len = skb_headlen(skb);
2853 mapping = pci_map_page(cp->pdev, virt_to_page(skb->data),
2854 offset_in_page(skb->data), len,
2855 PCI_DMA_TODEVICE);
2856
2857 tentry = entry;
2858 tabort = cas_calc_tabort(cp, (unsigned long) skb->data, len);
2859 if (unlikely(tabort)) {
2860 /* NOTE: len is always > tabort */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002861 cas_write_txd(cp, ring, entry, mapping, len - tabort,
David S. Miller1f26dac2005-09-27 15:24:13 -07002862 ctrl | TX_DESC_SOF, 0);
2863 entry = TX_DESC_NEXT(ring, entry);
2864
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002865 skb_copy_from_linear_data_offset(skb, len - tabort,
2866 tx_tiny_buf(cp, ring, entry), tabort);
David S. Miller1f26dac2005-09-27 15:24:13 -07002867 mapping = tx_tiny_map(cp, ring, entry, tentry);
2868 cas_write_txd(cp, ring, entry, mapping, tabort, ctrl,
2869 (nr_frags == 0));
2870 } else {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002871 cas_write_txd(cp, ring, entry, mapping, len, ctrl |
David S. Miller1f26dac2005-09-27 15:24:13 -07002872 TX_DESC_SOF, (nr_frags == 0));
2873 }
2874 entry = TX_DESC_NEXT(ring, entry);
2875
2876 for (frag = 0; frag < nr_frags; frag++) {
2877 skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
2878
2879 len = fragp->size;
2880 mapping = pci_map_page(cp->pdev, fragp->page,
2881 fragp->page_offset, len,
2882 PCI_DMA_TODEVICE);
2883
2884 tabort = cas_calc_tabort(cp, fragp->page_offset, len);
2885 if (unlikely(tabort)) {
2886 void *addr;
2887
2888 /* NOTE: len is always > tabort */
2889 cas_write_txd(cp, ring, entry, mapping, len - tabort,
2890 ctrl, 0);
2891 entry = TX_DESC_NEXT(ring, entry);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002892
David S. Miller1f26dac2005-09-27 15:24:13 -07002893 addr = cas_page_map(fragp->page);
2894 memcpy(tx_tiny_buf(cp, ring, entry),
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002895 addr + fragp->page_offset + len - tabort,
David S. Miller1f26dac2005-09-27 15:24:13 -07002896 tabort);
2897 cas_page_unmap(addr);
2898 mapping = tx_tiny_map(cp, ring, entry, tentry);
2899 len = tabort;
2900 }
2901
2902 cas_write_txd(cp, ring, entry, mapping, len, ctrl,
2903 (frag + 1 == nr_frags));
2904 entry = TX_DESC_NEXT(ring, entry);
2905 }
2906
2907 cp->tx_new[ring] = entry;
2908 if (TX_BUFFS_AVAIL(cp, ring) <= CAS_TABORT(cp)*(MAX_SKB_FRAGS + 1))
2909 netif_stop_queue(dev);
2910
2911 if (netif_msg_tx_queued(cp))
2912 printk(KERN_DEBUG "%s: tx[%d] queued, slot %d, skblen %d, "
2913 "avail %d\n",
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002914 dev->name, ring, entry, skb->len,
David S. Miller1f26dac2005-09-27 15:24:13 -07002915 TX_BUFFS_AVAIL(cp, ring));
2916 writel(entry, cp->regs + REG_TX_KICKN(ring));
2917 spin_unlock_irqrestore(&cp->tx_lock[ring], flags);
2918 return 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002919}
David S. Miller1f26dac2005-09-27 15:24:13 -07002920
Stephen Hemminger613573252009-08-31 19:50:58 +00002921static netdev_tx_t cas_start_xmit(struct sk_buff *skb, struct net_device *dev)
David S. Miller1f26dac2005-09-27 15:24:13 -07002922{
2923 struct cas *cp = netdev_priv(dev);
2924
2925 /* this is only used as a load-balancing hint, so it doesn't
2926 * need to be SMP safe
2927 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002928 static int ring;
David S. Miller1f26dac2005-09-27 15:24:13 -07002929
Herbert Xu5b057c62006-06-23 02:06:41 -07002930 if (skb_padto(skb, cp->min_frame_size))
Patrick McHardy6ed10652009-06-23 06:03:08 +00002931 return NETDEV_TX_OK;
David S. Miller1f26dac2005-09-27 15:24:13 -07002932
2933 /* XXX: we need some higher-level QoS hooks to steer packets to
2934 * individual queues.
2935 */
2936 if (cas_xmit_tx_ringN(cp, ring++ & N_TX_RINGS_MASK, skb))
Patrick McHardy5b548142009-06-12 06:22:29 +00002937 return NETDEV_TX_BUSY;
David S. Miller1f26dac2005-09-27 15:24:13 -07002938 dev->trans_start = jiffies;
Patrick McHardy6ed10652009-06-23 06:03:08 +00002939 return NETDEV_TX_OK;
David S. Miller1f26dac2005-09-27 15:24:13 -07002940}
2941
2942static void cas_init_tx_dma(struct cas *cp)
2943{
2944 u64 desc_dma = cp->block_dvma;
2945 unsigned long off;
2946 u32 val;
2947 int i;
2948
2949 /* set up tx completion writeback registers. must be 8-byte aligned */
2950#ifdef USE_TX_COMPWB
2951 off = offsetof(struct cas_init_block, tx_compwb);
2952 writel((desc_dma + off) >> 32, cp->regs + REG_TX_COMPWB_DB_HI);
2953 writel((desc_dma + off) & 0xffffffff, cp->regs + REG_TX_COMPWB_DB_LOW);
2954#endif
2955
2956 /* enable completion writebacks, enable paced mode,
2957 * disable read pipe, and disable pre-interrupt compwbs
2958 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002959 val = TX_CFG_COMPWB_Q1 | TX_CFG_COMPWB_Q2 |
David S. Miller1f26dac2005-09-27 15:24:13 -07002960 TX_CFG_COMPWB_Q3 | TX_CFG_COMPWB_Q4 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002961 TX_CFG_DMA_RDPIPE_DIS | TX_CFG_PACED_MODE |
David S. Miller1f26dac2005-09-27 15:24:13 -07002962 TX_CFG_INTR_COMPWB_DIS;
2963
2964 /* write out tx ring info and tx desc bases */
2965 for (i = 0; i < MAX_TX_RINGS; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002966 off = (unsigned long) cp->init_txds[i] -
David S. Miller1f26dac2005-09-27 15:24:13 -07002967 (unsigned long) cp->init_block;
2968
2969 val |= CAS_TX_RINGN_BASE(i);
2970 writel((desc_dma + off) >> 32, cp->regs + REG_TX_DBN_HI(i));
2971 writel((desc_dma + off) & 0xffffffff, cp->regs +
2972 REG_TX_DBN_LOW(i));
2973 /* don't zero out the kick register here as the system
2974 * will wedge
2975 */
2976 }
2977 writel(val, cp->regs + REG_TX_CFG);
2978
2979 /* program max burst sizes. these numbers should be different
2980 * if doing QoS.
2981 */
2982#ifdef USE_QOS
2983 writel(0x800, cp->regs + REG_TX_MAXBURST_0);
2984 writel(0x1600, cp->regs + REG_TX_MAXBURST_1);
2985 writel(0x2400, cp->regs + REG_TX_MAXBURST_2);
2986 writel(0x4800, cp->regs + REG_TX_MAXBURST_3);
2987#else
2988 writel(0x800, cp->regs + REG_TX_MAXBURST_0);
2989 writel(0x800, cp->regs + REG_TX_MAXBURST_1);
2990 writel(0x800, cp->regs + REG_TX_MAXBURST_2);
2991 writel(0x800, cp->regs + REG_TX_MAXBURST_3);
2992#endif
2993}
2994
2995/* Must be invoked under cp->lock. */
2996static inline void cas_init_dma(struct cas *cp)
2997{
2998 cas_init_tx_dma(cp);
2999 cas_init_rx_dma(cp);
3000}
3001
Jiri Pirkod7b855c2010-02-17 10:43:33 +00003002static void cas_process_mc_list(struct cas *cp)
3003{
3004 u16 hash_table[16];
3005 u32 crc;
3006 struct dev_mc_list *dmi;
3007 int i = 1;
3008
3009 memset(hash_table, 0, sizeof(hash_table));
3010 netdev_for_each_mc_addr(dmi, cp->dev) {
3011 if (i <= CAS_MC_EXACT_MATCH_SIZE) {
3012 /* use the alternate mac address registers for the
3013 * first 15 multicast addresses
3014 */
3015 writel((dmi->dmi_addr[4] << 8) | dmi->dmi_addr[5],
3016 cp->regs + REG_MAC_ADDRN(i*3 + 0));
3017 writel((dmi->dmi_addr[2] << 8) | dmi->dmi_addr[3],
3018 cp->regs + REG_MAC_ADDRN(i*3 + 1));
3019 writel((dmi->dmi_addr[0] << 8) | dmi->dmi_addr[1],
3020 cp->regs + REG_MAC_ADDRN(i*3 + 2));
3021 i++;
3022 }
3023 else {
3024 /* use hw hash table for the next series of
3025 * multicast addresses
3026 */
3027 crc = ether_crc_le(ETH_ALEN, dmi->dmi_addr);
3028 crc >>= 24;
3029 hash_table[crc >> 4] |= 1 << (15 - (crc & 0xf));
3030 }
3031 }
3032 for (i = 0; i < 16; i++)
3033 writel(hash_table[i], cp->regs + REG_MAC_HASH_TABLEN(i));
3034}
3035
David S. Miller1f26dac2005-09-27 15:24:13 -07003036/* Must be invoked under cp->lock. */
3037static u32 cas_setup_multicast(struct cas *cp)
3038{
3039 u32 rxcfg = 0;
3040 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003041
David S. Miller1f26dac2005-09-27 15:24:13 -07003042 if (cp->dev->flags & IFF_PROMISC) {
3043 rxcfg |= MAC_RX_CFG_PROMISC_EN;
3044
3045 } else if (cp->dev->flags & IFF_ALLMULTI) {
3046 for (i=0; i < 16; i++)
3047 writel(0xFFFF, cp->regs + REG_MAC_HASH_TABLEN(i));
3048 rxcfg |= MAC_RX_CFG_HASH_FILTER_EN;
3049
3050 } else {
Jiri Pirkod7b855c2010-02-17 10:43:33 +00003051 cas_process_mc_list(cp);
David S. Miller1f26dac2005-09-27 15:24:13 -07003052 rxcfg |= MAC_RX_CFG_HASH_FILTER_EN;
3053 }
3054
3055 return rxcfg;
3056}
3057
3058/* must be invoked under cp->stat_lock[N_TX_RINGS] */
3059static void cas_clear_mac_err(struct cas *cp)
3060{
3061 writel(0, cp->regs + REG_MAC_COLL_NORMAL);
3062 writel(0, cp->regs + REG_MAC_COLL_FIRST);
3063 writel(0, cp->regs + REG_MAC_COLL_EXCESS);
3064 writel(0, cp->regs + REG_MAC_COLL_LATE);
3065 writel(0, cp->regs + REG_MAC_TIMER_DEFER);
3066 writel(0, cp->regs + REG_MAC_ATTEMPTS_PEAK);
3067 writel(0, cp->regs + REG_MAC_RECV_FRAME);
3068 writel(0, cp->regs + REG_MAC_LEN_ERR);
3069 writel(0, cp->regs + REG_MAC_ALIGN_ERR);
3070 writel(0, cp->regs + REG_MAC_FCS_ERR);
3071 writel(0, cp->regs + REG_MAC_RX_CODE_ERR);
3072}
3073
3074
3075static void cas_mac_reset(struct cas *cp)
3076{
3077 int i;
3078
3079 /* do both TX and RX reset */
3080 writel(0x1, cp->regs + REG_MAC_TX_RESET);
3081 writel(0x1, cp->regs + REG_MAC_RX_RESET);
3082
3083 /* wait for TX */
3084 i = STOP_TRIES;
3085 while (i-- > 0) {
3086 if (readl(cp->regs + REG_MAC_TX_RESET) == 0)
3087 break;
3088 udelay(10);
3089 }
3090
3091 /* wait for RX */
3092 i = STOP_TRIES;
3093 while (i-- > 0) {
3094 if (readl(cp->regs + REG_MAC_RX_RESET) == 0)
3095 break;
3096 udelay(10);
3097 }
3098
3099 if (readl(cp->regs + REG_MAC_TX_RESET) |
3100 readl(cp->regs + REG_MAC_RX_RESET))
3101 printk(KERN_ERR "%s: mac tx[%d]/rx[%d] reset failed [%08x]\n",
3102 cp->dev->name, readl(cp->regs + REG_MAC_TX_RESET),
3103 readl(cp->regs + REG_MAC_RX_RESET),
3104 readl(cp->regs + REG_MAC_STATE_MACHINE));
3105}
3106
3107
3108/* Must be invoked under cp->lock. */
3109static void cas_init_mac(struct cas *cp)
3110{
3111 unsigned char *e = &cp->dev->dev_addr[0];
3112 int i;
3113#ifdef CONFIG_CASSINI_MULTICAST_REG_WRITE
3114 u32 rxcfg;
3115#endif
3116 cas_mac_reset(cp);
3117
3118 /* setup core arbitration weight register */
3119 writel(CAWR_RR_DIS, cp->regs + REG_CAWR);
3120
3121 /* XXX Use pci_dma_burst_advice() */
3122#if !defined(CONFIG_SPARC64) && !defined(CONFIG_ALPHA)
3123 /* set the infinite burst register for chips that don't have
3124 * pci issues.
3125 */
3126 if ((cp->cas_flags & CAS_FLAG_TARGET_ABORT) == 0)
3127 writel(INF_BURST_EN, cp->regs + REG_INF_BURST);
3128#endif
3129
3130 writel(0x1BF0, cp->regs + REG_MAC_SEND_PAUSE);
3131
3132 writel(0x00, cp->regs + REG_MAC_IPG0);
3133 writel(0x08, cp->regs + REG_MAC_IPG1);
3134 writel(0x04, cp->regs + REG_MAC_IPG2);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003135
David S. Miller1f26dac2005-09-27 15:24:13 -07003136 /* change later for 802.3z */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003137 writel(0x40, cp->regs + REG_MAC_SLOT_TIME);
David S. Miller1f26dac2005-09-27 15:24:13 -07003138
3139 /* min frame + FCS */
3140 writel(ETH_ZLEN + 4, cp->regs + REG_MAC_FRAMESIZE_MIN);
3141
3142 /* Ethernet payload + header + FCS + optional VLAN tag. NOTE: we
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003143 * specify the maximum frame size to prevent RX tag errors on
David S. Miller1f26dac2005-09-27 15:24:13 -07003144 * oversized frames.
3145 */
3146 writel(CAS_BASE(MAC_FRAMESIZE_MAX_BURST, 0x2000) |
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003147 CAS_BASE(MAC_FRAMESIZE_MAX_FRAME,
3148 (CAS_MAX_MTU + ETH_HLEN + 4 + 4)),
David S. Miller1f26dac2005-09-27 15:24:13 -07003149 cp->regs + REG_MAC_FRAMESIZE_MAX);
3150
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003151 /* NOTE: crc_size is used as a surrogate for half-duplex.
David S. Miller1f26dac2005-09-27 15:24:13 -07003152 * workaround saturn half-duplex issue by increasing preamble
3153 * size to 65 bytes.
3154 */
3155 if ((cp->cas_flags & CAS_FLAG_SATURN) && cp->crc_size)
3156 writel(0x41, cp->regs + REG_MAC_PA_SIZE);
3157 else
3158 writel(0x07, cp->regs + REG_MAC_PA_SIZE);
3159 writel(0x04, cp->regs + REG_MAC_JAM_SIZE);
3160 writel(0x10, cp->regs + REG_MAC_ATTEMPT_LIMIT);
3161 writel(0x8808, cp->regs + REG_MAC_CTRL_TYPE);
3162
3163 writel((e[5] | (e[4] << 8)) & 0x3ff, cp->regs + REG_MAC_RANDOM_SEED);
3164
3165 writel(0, cp->regs + REG_MAC_ADDR_FILTER0);
3166 writel(0, cp->regs + REG_MAC_ADDR_FILTER1);
3167 writel(0, cp->regs + REG_MAC_ADDR_FILTER2);
3168 writel(0, cp->regs + REG_MAC_ADDR_FILTER2_1_MASK);
3169 writel(0, cp->regs + REG_MAC_ADDR_FILTER0_MASK);
3170
3171 /* setup mac address in perfect filter array */
3172 for (i = 0; i < 45; i++)
3173 writel(0x0, cp->regs + REG_MAC_ADDRN(i));
3174
3175 writel((e[4] << 8) | e[5], cp->regs + REG_MAC_ADDRN(0));
3176 writel((e[2] << 8) | e[3], cp->regs + REG_MAC_ADDRN(1));
3177 writel((e[0] << 8) | e[1], cp->regs + REG_MAC_ADDRN(2));
3178
3179 writel(0x0001, cp->regs + REG_MAC_ADDRN(42));
3180 writel(0xc200, cp->regs + REG_MAC_ADDRN(43));
3181 writel(0x0180, cp->regs + REG_MAC_ADDRN(44));
3182
3183#ifndef CONFIG_CASSINI_MULTICAST_REG_WRITE
3184 cp->mac_rx_cfg = cas_setup_multicast(cp);
3185#else
3186 /* WTZ: Do what Adrian did in cas_set_multicast. Doing
3187 * a writel does not seem to be necessary because Cassini
3188 * seems to preserve the configuration when we do the reset.
3189 * If the chip is in trouble, though, it is not clear if we
3190 * can really count on this behavior. cas_set_multicast uses
3191 * spin_lock_irqsave, but we are called only in cas_init_hw and
3192 * cas_init_hw is protected by cas_lock_all, which calls
3193 * spin_lock_irq (so it doesn't need to save the flags, and
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003194 * we should be OK for the writel, as that is the only
David S. Miller1f26dac2005-09-27 15:24:13 -07003195 * difference).
3196 */
3197 cp->mac_rx_cfg = rxcfg = cas_setup_multicast(cp);
3198 writel(rxcfg, cp->regs + REG_MAC_RX_CFG);
3199#endif
3200 spin_lock(&cp->stat_lock[N_TX_RINGS]);
3201 cas_clear_mac_err(cp);
3202 spin_unlock(&cp->stat_lock[N_TX_RINGS]);
3203
3204 /* Setup MAC interrupts. We want to get all of the interesting
3205 * counter expiration events, but we do not want to hear about
3206 * normal rx/tx as the DMA engine tells us that.
3207 */
3208 writel(MAC_TX_FRAME_XMIT, cp->regs + REG_MAC_TX_MASK);
3209 writel(MAC_RX_FRAME_RECV, cp->regs + REG_MAC_RX_MASK);
3210
3211 /* Don't enable even the PAUSE interrupts for now, we
3212 * make no use of those events other than to record them.
3213 */
3214 writel(0xffffffff, cp->regs + REG_MAC_CTRL_MASK);
3215}
3216
3217/* Must be invoked under cp->lock. */
3218static void cas_init_pause_thresholds(struct cas *cp)
3219{
3220 /* Calculate pause thresholds. Setting the OFF threshold to the
3221 * full RX fifo size effectively disables PAUSE generation
3222 */
3223 if (cp->rx_fifo_size <= (2 * 1024)) {
3224 cp->rx_pause_off = cp->rx_pause_on = cp->rx_fifo_size;
3225 } else {
3226 int max_frame = (cp->dev->mtu + ETH_HLEN + 4 + 4 + 64) & ~63;
3227 if (max_frame * 3 > cp->rx_fifo_size) {
3228 cp->rx_pause_off = 7104;
3229 cp->rx_pause_on = 960;
3230 } else {
3231 int off = (cp->rx_fifo_size - (max_frame * 2));
3232 int on = off - max_frame;
3233 cp->rx_pause_off = off;
3234 cp->rx_pause_on = on;
3235 }
3236 }
3237}
3238
3239static int cas_vpd_match(const void __iomem *p, const char *str)
3240{
3241 int len = strlen(str) + 1;
3242 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003243
David S. Miller1f26dac2005-09-27 15:24:13 -07003244 for (i = 0; i < len; i++) {
3245 if (readb(p + i) != str[i])
3246 return 0;
3247 }
3248 return 1;
3249}
3250
3251
3252/* get the mac address by reading the vpd information in the rom.
3253 * also get the phy type and determine if there's an entropy generator.
3254 * NOTE: this is a bit convoluted for the following reasons:
3255 * 1) vpd info has order-dependent mac addresses for multinic cards
3256 * 2) the only way to determine the nic order is to use the slot
3257 * number.
3258 * 3) fiber cards don't have bridges, so their slot numbers don't
3259 * mean anything.
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003260 * 4) we don't actually know we have a fiber card until after
David S. Miller1f26dac2005-09-27 15:24:13 -07003261 * the mac addresses are parsed.
3262 */
3263static int cas_get_vpd_info(struct cas *cp, unsigned char *dev_addr,
3264 const int offset)
3265{
3266 void __iomem *p = cp->regs + REG_EXPANSION_ROM_RUN_START;
3267 void __iomem *base, *kstart;
3268 int i, len;
3269 int found = 0;
3270#define VPD_FOUND_MAC 0x01
3271#define VPD_FOUND_PHY 0x02
3272
3273 int phy_type = CAS_PHY_MII_MDIO0; /* default phy type */
3274 int mac_off = 0;
3275
3276 /* give us access to the PROM */
3277 writel(BIM_LOCAL_DEV_PROM | BIM_LOCAL_DEV_PAD,
3278 cp->regs + REG_BIM_LOCAL_DEV_EN);
3279
3280 /* check for an expansion rom */
3281 if (readb(p) != 0x55 || readb(p + 1) != 0xaa)
3282 goto use_random_mac_addr;
3283
3284 /* search for beginning of vpd */
Al Viro46d70312005-09-30 03:21:45 +01003285 base = NULL;
David S. Miller1f26dac2005-09-27 15:24:13 -07003286 for (i = 2; i < EXPANSION_ROM_SIZE; i++) {
3287 /* check for PCIR */
3288 if ((readb(p + i + 0) == 0x50) &&
3289 (readb(p + i + 1) == 0x43) &&
3290 (readb(p + i + 2) == 0x49) &&
3291 (readb(p + i + 3) == 0x52)) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003292 base = p + (readb(p + i + 8) |
David S. Miller1f26dac2005-09-27 15:24:13 -07003293 (readb(p + i + 9) << 8));
3294 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003295 }
David S. Miller1f26dac2005-09-27 15:24:13 -07003296 }
3297
3298 if (!base || (readb(base) != 0x82))
3299 goto use_random_mac_addr;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003300
David S. Miller1f26dac2005-09-27 15:24:13 -07003301 i = (readb(base + 1) | (readb(base + 2) << 8)) + 3;
3302 while (i < EXPANSION_ROM_SIZE) {
3303 if (readb(base + i) != 0x90) /* no vpd found */
3304 goto use_random_mac_addr;
3305
3306 /* found a vpd field */
3307 len = readb(base + i + 1) | (readb(base + i + 2) << 8);
3308
3309 /* extract keywords */
3310 kstart = base + i + 3;
3311 p = kstart;
3312 while ((p - kstart) < len) {
3313 int klen = readb(p + 2);
3314 int j;
3315 char type;
3316
3317 p += 3;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003318
David S. Miller1f26dac2005-09-27 15:24:13 -07003319 /* look for the following things:
3320 * -- correct length == 29
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003321 * 3 (type) + 2 (size) +
3322 * 18 (strlen("local-mac-address") + 1) +
3323 * 6 (mac addr)
David S. Miller1f26dac2005-09-27 15:24:13 -07003324 * -- VPD Instance 'I'
3325 * -- VPD Type Bytes 'B'
3326 * -- VPD data length == 6
3327 * -- property string == local-mac-address
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003328 *
David S. Miller1f26dac2005-09-27 15:24:13 -07003329 * -- correct length == 24
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003330 * 3 (type) + 2 (size) +
3331 * 12 (strlen("entropy-dev") + 1) +
David S. Miller1f26dac2005-09-27 15:24:13 -07003332 * 7 (strlen("vms110") + 1)
3333 * -- VPD Instance 'I'
3334 * -- VPD Type String 'B'
3335 * -- VPD data length == 7
3336 * -- property string == entropy-dev
3337 *
3338 * -- correct length == 18
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003339 * 3 (type) + 2 (size) +
3340 * 9 (strlen("phy-type") + 1) +
David S. Miller1f26dac2005-09-27 15:24:13 -07003341 * 4 (strlen("pcs") + 1)
3342 * -- VPD Instance 'I'
3343 * -- VPD Type String 'S'
3344 * -- VPD data length == 4
3345 * -- property string == phy-type
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003346 *
David S. Miller1f26dac2005-09-27 15:24:13 -07003347 * -- correct length == 23
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003348 * 3 (type) + 2 (size) +
3349 * 14 (strlen("phy-interface") + 1) +
David S. Miller1f26dac2005-09-27 15:24:13 -07003350 * 4 (strlen("pcs") + 1)
3351 * -- VPD Instance 'I'
3352 * -- VPD Type String 'S'
3353 * -- VPD data length == 4
3354 * -- property string == phy-interface
3355 */
3356 if (readb(p) != 'I')
3357 goto next;
3358
3359 /* finally, check string and length */
3360 type = readb(p + 3);
3361 if (type == 'B') {
3362 if ((klen == 29) && readb(p + 4) == 6 &&
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003363 cas_vpd_match(p + 5,
David S. Miller1f26dac2005-09-27 15:24:13 -07003364 "local-mac-address")) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003365 if (mac_off++ > offset)
David S. Miller1f26dac2005-09-27 15:24:13 -07003366 goto next;
3367
3368 /* set mac address */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003369 for (j = 0; j < 6; j++)
3370 dev_addr[j] =
David S. Miller1f26dac2005-09-27 15:24:13 -07003371 readb(p + 23 + j);
3372 goto found_mac;
3373 }
3374 }
3375
3376 if (type != 'S')
3377 goto next;
3378
3379#ifdef USE_ENTROPY_DEV
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003380 if ((klen == 24) &&
David S. Miller1f26dac2005-09-27 15:24:13 -07003381 cas_vpd_match(p + 5, "entropy-dev") &&
3382 cas_vpd_match(p + 17, "vms110")) {
3383 cp->cas_flags |= CAS_FLAG_ENTROPY_DEV;
3384 goto next;
3385 }
3386#endif
3387
3388 if (found & VPD_FOUND_PHY)
3389 goto next;
3390
3391 if ((klen == 18) && readb(p + 4) == 4 &&
3392 cas_vpd_match(p + 5, "phy-type")) {
3393 if (cas_vpd_match(p + 14, "pcs")) {
3394 phy_type = CAS_PHY_SERDES;
3395 goto found_phy;
3396 }
3397 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003398
David S. Miller1f26dac2005-09-27 15:24:13 -07003399 if ((klen == 23) && readb(p + 4) == 4 &&
3400 cas_vpd_match(p + 5, "phy-interface")) {
3401 if (cas_vpd_match(p + 19, "pcs")) {
3402 phy_type = CAS_PHY_SERDES;
3403 goto found_phy;
3404 }
3405 }
3406found_mac:
3407 found |= VPD_FOUND_MAC;
3408 goto next;
3409
3410found_phy:
3411 found |= VPD_FOUND_PHY;
3412
3413next:
3414 p += klen;
3415 }
3416 i += len + 3;
3417 }
3418
3419use_random_mac_addr:
3420 if (found & VPD_FOUND_MAC)
3421 goto done;
3422
3423 /* Sun MAC prefix then 3 random bytes. */
3424 printk(PFX "MAC address not found in ROM VPD\n");
3425 dev_addr[0] = 0x08;
3426 dev_addr[1] = 0x00;
3427 dev_addr[2] = 0x20;
3428 get_random_bytes(dev_addr + 3, 3);
3429
3430done:
3431 writel(0, cp->regs + REG_BIM_LOCAL_DEV_EN);
3432 return phy_type;
3433}
3434
3435/* check pci invariants */
3436static void cas_check_pci_invariants(struct cas *cp)
3437{
3438 struct pci_dev *pdev = cp->pdev;
David S. Miller1f26dac2005-09-27 15:24:13 -07003439
3440 cp->cas_flags = 0;
David S. Miller1f26dac2005-09-27 15:24:13 -07003441 if ((pdev->vendor == PCI_VENDOR_ID_SUN) &&
3442 (pdev->device == PCI_DEVICE_ID_SUN_CASSINI)) {
Auke Kok44c10132007-06-08 15:46:36 -07003443 if (pdev->revision >= CAS_ID_REVPLUS)
David S. Miller1f26dac2005-09-27 15:24:13 -07003444 cp->cas_flags |= CAS_FLAG_REG_PLUS;
Auke Kok44c10132007-06-08 15:46:36 -07003445 if (pdev->revision < CAS_ID_REVPLUS02u)
David S. Miller1f26dac2005-09-27 15:24:13 -07003446 cp->cas_flags |= CAS_FLAG_TARGET_ABORT;
3447
3448 /* Original Cassini supports HW CSUM, but it's not
3449 * enabled by default as it can trigger TX hangs.
3450 */
Auke Kok44c10132007-06-08 15:46:36 -07003451 if (pdev->revision < CAS_ID_REV2)
David S. Miller1f26dac2005-09-27 15:24:13 -07003452 cp->cas_flags |= CAS_FLAG_NO_HW_CSUM;
3453 } else {
3454 /* Only sun has original cassini chips. */
3455 cp->cas_flags |= CAS_FLAG_REG_PLUS;
3456
3457 /* We use a flag because the same phy might be externally
3458 * connected.
3459 */
3460 if ((pdev->vendor == PCI_VENDOR_ID_NS) &&
3461 (pdev->device == PCI_DEVICE_ID_NS_SATURN))
3462 cp->cas_flags |= CAS_FLAG_SATURN;
3463 }
3464}
3465
3466
3467static int cas_check_invariants(struct cas *cp)
3468{
3469 struct pci_dev *pdev = cp->pdev;
3470 u32 cfg;
3471 int i;
3472
3473 /* get page size for rx buffers. */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003474 cp->page_order = 0;
David S. Miller1f26dac2005-09-27 15:24:13 -07003475#ifdef USE_PAGE_ORDER
3476 if (PAGE_SHIFT < CAS_JUMBO_PAGE_SHIFT) {
3477 /* see if we can allocate larger pages */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003478 struct page *page = alloc_pages(GFP_ATOMIC,
3479 CAS_JUMBO_PAGE_SHIFT -
David S. Miller1f26dac2005-09-27 15:24:13 -07003480 PAGE_SHIFT);
3481 if (page) {
3482 __free_pages(page, CAS_JUMBO_PAGE_SHIFT - PAGE_SHIFT);
3483 cp->page_order = CAS_JUMBO_PAGE_SHIFT - PAGE_SHIFT;
3484 } else {
3485 printk(PFX "MTU limited to %d bytes\n", CAS_MAX_MTU);
3486 }
3487 }
3488#endif
3489 cp->page_size = (PAGE_SIZE << cp->page_order);
3490
3491 /* Fetch the FIFO configurations. */
3492 cp->tx_fifo_size = readl(cp->regs + REG_TX_FIFO_SIZE) * 64;
3493 cp->rx_fifo_size = RX_FIFO_SIZE;
3494
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003495 /* finish phy determination. MDIO1 takes precedence over MDIO0 if
David S. Miller1f26dac2005-09-27 15:24:13 -07003496 * they're both connected.
3497 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003498 cp->phy_type = cas_get_vpd_info(cp, cp->dev->dev_addr,
David S. Miller1f26dac2005-09-27 15:24:13 -07003499 PCI_SLOT(pdev->devfn));
3500 if (cp->phy_type & CAS_PHY_SERDES) {
3501 cp->cas_flags |= CAS_FLAG_1000MB_CAP;
3502 return 0; /* no more checking needed */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003503 }
David S. Miller1f26dac2005-09-27 15:24:13 -07003504
3505 /* MII */
3506 cfg = readl(cp->regs + REG_MIF_CFG);
3507 if (cfg & MIF_CFG_MDIO_1) {
3508 cp->phy_type = CAS_PHY_MII_MDIO1;
3509 } else if (cfg & MIF_CFG_MDIO_0) {
3510 cp->phy_type = CAS_PHY_MII_MDIO0;
3511 }
3512
3513 cas_mif_poll(cp, 0);
3514 writel(PCS_DATAPATH_MODE_MII, cp->regs + REG_PCS_DATAPATH_MODE);
3515
3516 for (i = 0; i < 32; i++) {
3517 u32 phy_id;
3518 int j;
3519
3520 for (j = 0; j < 3; j++) {
3521 cp->phy_addr = i;
3522 phy_id = cas_phy_read(cp, MII_PHYSID1) << 16;
3523 phy_id |= cas_phy_read(cp, MII_PHYSID2);
3524 if (phy_id && (phy_id != 0xFFFFFFFF)) {
3525 cp->phy_id = phy_id;
3526 goto done;
3527 }
3528 }
3529 }
3530 printk(KERN_ERR PFX "MII phy did not respond [%08x]\n",
3531 readl(cp->regs + REG_MIF_STATE_MACHINE));
3532 return -1;
3533
3534done:
3535 /* see if we can do gigabit */
3536 cfg = cas_phy_read(cp, MII_BMSR);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003537 if ((cfg & CAS_BMSR_1000_EXTEND) &&
David S. Miller1f26dac2005-09-27 15:24:13 -07003538 cas_phy_read(cp, CAS_MII_1000_EXTEND))
3539 cp->cas_flags |= CAS_FLAG_1000MB_CAP;
3540 return 0;
3541}
3542
3543/* Must be invoked under cp->lock. */
3544static inline void cas_start_dma(struct cas *cp)
3545{
3546 int i;
3547 u32 val;
3548 int txfailed = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003549
David S. Miller1f26dac2005-09-27 15:24:13 -07003550 /* enable dma */
3551 val = readl(cp->regs + REG_TX_CFG) | TX_CFG_DMA_EN;
3552 writel(val, cp->regs + REG_TX_CFG);
3553 val = readl(cp->regs + REG_RX_CFG) | RX_CFG_DMA_EN;
3554 writel(val, cp->regs + REG_RX_CFG);
3555
3556 /* enable the mac */
3557 val = readl(cp->regs + REG_MAC_TX_CFG) | MAC_TX_CFG_EN;
3558 writel(val, cp->regs + REG_MAC_TX_CFG);
3559 val = readl(cp->regs + REG_MAC_RX_CFG) | MAC_RX_CFG_EN;
3560 writel(val, cp->regs + REG_MAC_RX_CFG);
3561
3562 i = STOP_TRIES;
3563 while (i-- > 0) {
3564 val = readl(cp->regs + REG_MAC_TX_CFG);
3565 if ((val & MAC_TX_CFG_EN))
3566 break;
3567 udelay(10);
3568 }
3569 if (i < 0) txfailed = 1;
3570 i = STOP_TRIES;
3571 while (i-- > 0) {
3572 val = readl(cp->regs + REG_MAC_RX_CFG);
3573 if ((val & MAC_RX_CFG_EN)) {
3574 if (txfailed) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003575 printk(KERN_ERR
3576 "%s: enabling mac failed [tx:%08x:%08x].\n",
David S. Miller1f26dac2005-09-27 15:24:13 -07003577 cp->dev->name,
3578 readl(cp->regs + REG_MIF_STATE_MACHINE),
3579 readl(cp->regs + REG_MAC_STATE_MACHINE));
3580 }
3581 goto enable_rx_done;
3582 }
3583 udelay(10);
3584 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003585 printk(KERN_ERR "%s: enabling mac failed [%s:%08x:%08x].\n",
David S. Miller1f26dac2005-09-27 15:24:13 -07003586 cp->dev->name,
3587 (txfailed? "tx,rx":"rx"),
3588 readl(cp->regs + REG_MIF_STATE_MACHINE),
3589 readl(cp->regs + REG_MAC_STATE_MACHINE));
3590
3591enable_rx_done:
3592 cas_unmask_intr(cp); /* enable interrupts */
3593 writel(RX_DESC_RINGN_SIZE(0) - 4, cp->regs + REG_RX_KICK);
3594 writel(0, cp->regs + REG_RX_COMP_TAIL);
3595
3596 if (cp->cas_flags & CAS_FLAG_REG_PLUS) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003597 if (N_RX_DESC_RINGS > 1)
3598 writel(RX_DESC_RINGN_SIZE(1) - 4,
David S. Miller1f26dac2005-09-27 15:24:13 -07003599 cp->regs + REG_PLUS_RX_KICK1);
3600
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003601 for (i = 1; i < N_RX_COMP_RINGS; i++)
David S. Miller1f26dac2005-09-27 15:24:13 -07003602 writel(0, cp->regs + REG_PLUS_RX_COMPN_TAIL(i));
3603 }
3604}
3605
3606/* Must be invoked under cp->lock. */
3607static void cas_read_pcs_link_mode(struct cas *cp, int *fd, int *spd,
3608 int *pause)
3609{
3610 u32 val = readl(cp->regs + REG_PCS_MII_LPA);
3611 *fd = (val & PCS_MII_LPA_FD) ? 1 : 0;
3612 *pause = (val & PCS_MII_LPA_SYM_PAUSE) ? 0x01 : 0x00;
3613 if (val & PCS_MII_LPA_ASYM_PAUSE)
3614 *pause |= 0x10;
3615 *spd = 1000;
3616}
3617
3618/* Must be invoked under cp->lock. */
3619static void cas_read_mii_link_mode(struct cas *cp, int *fd, int *spd,
3620 int *pause)
3621{
3622 u32 val;
3623
3624 *fd = 0;
3625 *spd = 10;
3626 *pause = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003627
David S. Miller1f26dac2005-09-27 15:24:13 -07003628 /* use GMII registers */
3629 val = cas_phy_read(cp, MII_LPA);
3630 if (val & CAS_LPA_PAUSE)
3631 *pause = 0x01;
3632
3633 if (val & CAS_LPA_ASYM_PAUSE)
3634 *pause |= 0x10;
3635
3636 if (val & LPA_DUPLEX)
3637 *fd = 1;
3638 if (val & LPA_100)
3639 *spd = 100;
3640
3641 if (cp->cas_flags & CAS_FLAG_1000MB_CAP) {
3642 val = cas_phy_read(cp, CAS_MII_1000_STATUS);
3643 if (val & (CAS_LPA_1000FULL | CAS_LPA_1000HALF))
3644 *spd = 1000;
3645 if (val & CAS_LPA_1000FULL)
3646 *fd = 1;
3647 }
3648}
3649
3650/* A link-up condition has occurred, initialize and enable the
3651 * rest of the chip.
3652 *
3653 * Must be invoked under cp->lock.
3654 */
3655static void cas_set_link_modes(struct cas *cp)
3656{
3657 u32 val;
3658 int full_duplex, speed, pause;
3659
3660 full_duplex = 0;
3661 speed = 10;
3662 pause = 0;
3663
3664 if (CAS_PHY_MII(cp->phy_type)) {
3665 cas_mif_poll(cp, 0);
3666 val = cas_phy_read(cp, MII_BMCR);
3667 if (val & BMCR_ANENABLE) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003668 cas_read_mii_link_mode(cp, &full_duplex, &speed,
David S. Miller1f26dac2005-09-27 15:24:13 -07003669 &pause);
3670 } else {
3671 if (val & BMCR_FULLDPLX)
3672 full_duplex = 1;
3673
3674 if (val & BMCR_SPEED100)
3675 speed = 100;
3676 else if (val & CAS_BMCR_SPEED1000)
3677 speed = (cp->cas_flags & CAS_FLAG_1000MB_CAP) ?
3678 1000 : 100;
3679 }
3680 cas_mif_poll(cp, 1);
3681
3682 } else {
3683 val = readl(cp->regs + REG_PCS_MII_CTRL);
3684 cas_read_pcs_link_mode(cp, &full_duplex, &speed, &pause);
3685 if ((val & PCS_MII_AUTONEG_EN) == 0) {
3686 if (val & PCS_MII_CTRL_DUPLEX)
3687 full_duplex = 1;
3688 }
3689 }
3690
3691 if (netif_msg_link(cp))
3692 printk(KERN_INFO "%s: Link up at %d Mbps, %s-duplex.\n",
3693 cp->dev->name, speed, (full_duplex ? "full" : "half"));
3694
3695 val = MAC_XIF_TX_MII_OUTPUT_EN | MAC_XIF_LINK_LED;
3696 if (CAS_PHY_MII(cp->phy_type)) {
3697 val |= MAC_XIF_MII_BUFFER_OUTPUT_EN;
3698 if (!full_duplex)
3699 val |= MAC_XIF_DISABLE_ECHO;
3700 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003701 if (full_duplex)
David S. Miller1f26dac2005-09-27 15:24:13 -07003702 val |= MAC_XIF_FDPLX_LED;
3703 if (speed == 1000)
3704 val |= MAC_XIF_GMII_MODE;
3705 writel(val, cp->regs + REG_MAC_XIF_CFG);
3706
3707 /* deal with carrier and collision detect. */
3708 val = MAC_TX_CFG_IPG_EN;
3709 if (full_duplex) {
3710 val |= MAC_TX_CFG_IGNORE_CARRIER;
3711 val |= MAC_TX_CFG_IGNORE_COLL;
3712 } else {
3713#ifndef USE_CSMA_CD_PROTO
3714 val |= MAC_TX_CFG_NEVER_GIVE_UP_EN;
3715 val |= MAC_TX_CFG_NEVER_GIVE_UP_LIM;
3716#endif
3717 }
3718 /* val now set up for REG_MAC_TX_CFG */
3719
3720 /* If gigabit and half-duplex, enable carrier extension
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003721 * mode. increase slot time to 512 bytes as well.
David S. Miller1f26dac2005-09-27 15:24:13 -07003722 * else, disable it and make sure slot time is 64 bytes.
3723 * also activate checksum bug workaround
3724 */
3725 if ((speed == 1000) && !full_duplex) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003726 writel(val | MAC_TX_CFG_CARRIER_EXTEND,
David S. Miller1f26dac2005-09-27 15:24:13 -07003727 cp->regs + REG_MAC_TX_CFG);
3728
3729 val = readl(cp->regs + REG_MAC_RX_CFG);
3730 val &= ~MAC_RX_CFG_STRIP_FCS; /* checksum workaround */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003731 writel(val | MAC_RX_CFG_CARRIER_EXTEND,
David S. Miller1f26dac2005-09-27 15:24:13 -07003732 cp->regs + REG_MAC_RX_CFG);
3733
3734 writel(0x200, cp->regs + REG_MAC_SLOT_TIME);
3735
3736 cp->crc_size = 4;
3737 /* minimum size gigabit frame at half duplex */
3738 cp->min_frame_size = CAS_1000MB_MIN_FRAME;
3739
3740 } else {
3741 writel(val, cp->regs + REG_MAC_TX_CFG);
3742
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003743 /* checksum bug workaround. don't strip FCS when in
David S. Miller1f26dac2005-09-27 15:24:13 -07003744 * half-duplex mode
3745 */
3746 val = readl(cp->regs + REG_MAC_RX_CFG);
3747 if (full_duplex) {
3748 val |= MAC_RX_CFG_STRIP_FCS;
3749 cp->crc_size = 0;
3750 cp->min_frame_size = CAS_MIN_MTU;
3751 } else {
3752 val &= ~MAC_RX_CFG_STRIP_FCS;
3753 cp->crc_size = 4;
3754 cp->min_frame_size = CAS_MIN_FRAME;
3755 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003756 writel(val & ~MAC_RX_CFG_CARRIER_EXTEND,
David S. Miller1f26dac2005-09-27 15:24:13 -07003757 cp->regs + REG_MAC_RX_CFG);
3758 writel(0x40, cp->regs + REG_MAC_SLOT_TIME);
3759 }
3760
3761 if (netif_msg_link(cp)) {
3762 if (pause & 0x01) {
3763 printk(KERN_INFO "%s: Pause is enabled "
3764 "(rxfifo: %d off: %d on: %d)\n",
3765 cp->dev->name,
3766 cp->rx_fifo_size,
3767 cp->rx_pause_off,
3768 cp->rx_pause_on);
3769 } else if (pause & 0x10) {
3770 printk(KERN_INFO "%s: TX pause enabled\n",
3771 cp->dev->name);
3772 } else {
3773 printk(KERN_INFO "%s: Pause is disabled\n",
3774 cp->dev->name);
3775 }
3776 }
3777
3778 val = readl(cp->regs + REG_MAC_CTRL_CFG);
3779 val &= ~(MAC_CTRL_CFG_SEND_PAUSE_EN | MAC_CTRL_CFG_RECV_PAUSE_EN);
3780 if (pause) { /* symmetric or asymmetric pause */
3781 val |= MAC_CTRL_CFG_SEND_PAUSE_EN;
3782 if (pause & 0x01) { /* symmetric pause */
3783 val |= MAC_CTRL_CFG_RECV_PAUSE_EN;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003784 }
David S. Miller1f26dac2005-09-27 15:24:13 -07003785 }
3786 writel(val, cp->regs + REG_MAC_CTRL_CFG);
3787 cas_start_dma(cp);
3788}
3789
3790/* Must be invoked under cp->lock. */
3791static void cas_init_hw(struct cas *cp, int restart_link)
3792{
3793 if (restart_link)
3794 cas_phy_init(cp);
3795
3796 cas_init_pause_thresholds(cp);
3797 cas_init_mac(cp);
3798 cas_init_dma(cp);
3799
3800 if (restart_link) {
3801 /* Default aneg parameters */
3802 cp->timer_ticks = 0;
3803 cas_begin_auto_negotiation(cp, NULL);
3804 } else if (cp->lstate == link_up) {
3805 cas_set_link_modes(cp);
3806 netif_carrier_on(cp->dev);
3807 }
3808}
3809
3810/* Must be invoked under cp->lock. on earlier cassini boards,
3811 * SOFT_0 is tied to PCI reset. we use this to force a pci reset,
3812 * let it settle out, and then restore pci state.
3813 */
3814static void cas_hard_reset(struct cas *cp)
3815{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003816 writel(BIM_LOCAL_DEV_SOFT_0, cp->regs + REG_BIM_LOCAL_DEV_EN);
David S. Miller1f26dac2005-09-27 15:24:13 -07003817 udelay(20);
3818 pci_restore_state(cp->pdev);
3819}
3820
3821
3822static void cas_global_reset(struct cas *cp, int blkflag)
3823{
3824 int limit;
3825
3826 /* issue a global reset. don't use RSTOUT. */
3827 if (blkflag && !CAS_PHY_MII(cp->phy_type)) {
3828 /* For PCS, when the blkflag is set, we should set the
3829 * SW_REST_BLOCK_PCS_SLINK bit to prevent the results of
3830 * the last autonegotiation from being cleared. We'll
3831 * need some special handling if the chip is set into a
3832 * loopback mode.
3833 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003834 writel((SW_RESET_TX | SW_RESET_RX | SW_RESET_BLOCK_PCS_SLINK),
David S. Miller1f26dac2005-09-27 15:24:13 -07003835 cp->regs + REG_SW_RESET);
3836 } else {
3837 writel(SW_RESET_TX | SW_RESET_RX, cp->regs + REG_SW_RESET);
3838 }
3839
3840 /* need to wait at least 3ms before polling register */
3841 mdelay(3);
3842
3843 limit = STOP_TRIES;
3844 while (limit-- > 0) {
3845 u32 val = readl(cp->regs + REG_SW_RESET);
3846 if ((val & (SW_RESET_TX | SW_RESET_RX)) == 0)
3847 goto done;
3848 udelay(10);
3849 }
3850 printk(KERN_ERR "%s: sw reset failed.\n", cp->dev->name);
3851
3852done:
3853 /* enable various BIM interrupts */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003854 writel(BIM_CFG_DPAR_INTR_ENABLE | BIM_CFG_RMA_INTR_ENABLE |
David S. Miller1f26dac2005-09-27 15:24:13 -07003855 BIM_CFG_RTA_INTR_ENABLE, cp->regs + REG_BIM_CFG);
3856
3857 /* clear out pci error status mask for handled errors.
3858 * we don't deal with DMA counter overflows as they happen
3859 * all the time.
3860 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003861 writel(0xFFFFFFFFU & ~(PCI_ERR_BADACK | PCI_ERR_DTRTO |
3862 PCI_ERR_OTHER | PCI_ERR_BIM_DMA_WRITE |
3863 PCI_ERR_BIM_DMA_READ), cp->regs +
David S. Miller1f26dac2005-09-27 15:24:13 -07003864 REG_PCI_ERR_STATUS_MASK);
3865
3866 /* set up for MII by default to address mac rx reset timeout
3867 * issue
3868 */
3869 writel(PCS_DATAPATH_MODE_MII, cp->regs + REG_PCS_DATAPATH_MODE);
3870}
3871
3872static void cas_reset(struct cas *cp, int blkflag)
3873{
3874 u32 val;
3875
3876 cas_mask_intr(cp);
3877 cas_global_reset(cp, blkflag);
3878 cas_mac_reset(cp);
3879 cas_entropy_reset(cp);
3880
3881 /* disable dma engines. */
3882 val = readl(cp->regs + REG_TX_CFG);
3883 val &= ~TX_CFG_DMA_EN;
3884 writel(val, cp->regs + REG_TX_CFG);
3885
3886 val = readl(cp->regs + REG_RX_CFG);
3887 val &= ~RX_CFG_DMA_EN;
3888 writel(val, cp->regs + REG_RX_CFG);
3889
3890 /* program header parser */
3891 if ((cp->cas_flags & CAS_FLAG_TARGET_ABORT) ||
3892 (CAS_HP_ALT_FIRMWARE == cas_prog_null)) {
3893 cas_load_firmware(cp, CAS_HP_FIRMWARE);
3894 } else {
3895 cas_load_firmware(cp, CAS_HP_ALT_FIRMWARE);
3896 }
3897
3898 /* clear out error registers */
3899 spin_lock(&cp->stat_lock[N_TX_RINGS]);
3900 cas_clear_mac_err(cp);
3901 spin_unlock(&cp->stat_lock[N_TX_RINGS]);
3902}
3903
Ingo Molnar758df692006-03-20 22:34:09 -08003904/* Shut down the chip, must be called with pm_mutex held. */
David S. Miller1f26dac2005-09-27 15:24:13 -07003905static void cas_shutdown(struct cas *cp)
3906{
3907 unsigned long flags;
3908
3909 /* Make us not-running to avoid timers respawning */
3910 cp->hw_running = 0;
3911
3912 del_timer_sync(&cp->link_timer);
3913
3914 /* Stop the reset task */
3915#if 0
3916 while (atomic_read(&cp->reset_task_pending_mtu) ||
3917 atomic_read(&cp->reset_task_pending_spare) ||
3918 atomic_read(&cp->reset_task_pending_all))
3919 schedule();
3920
3921#else
3922 while (atomic_read(&cp->reset_task_pending))
3923 schedule();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003924#endif
David S. Miller1f26dac2005-09-27 15:24:13 -07003925 /* Actually stop the chip */
3926 cas_lock_all_save(cp, flags);
3927 cas_reset(cp, 0);
3928 if (cp->cas_flags & CAS_FLAG_SATURN)
3929 cas_phy_powerdown(cp);
3930 cas_unlock_all_restore(cp, flags);
3931}
3932
3933static int cas_change_mtu(struct net_device *dev, int new_mtu)
3934{
3935 struct cas *cp = netdev_priv(dev);
3936
3937 if (new_mtu < CAS_MIN_MTU || new_mtu > CAS_MAX_MTU)
3938 return -EINVAL;
3939
3940 dev->mtu = new_mtu;
3941 if (!netif_running(dev) || !netif_device_present(dev))
3942 return 0;
3943
3944 /* let the reset task handle it */
3945#if 1
3946 atomic_inc(&cp->reset_task_pending);
3947 if ((cp->phy_type & CAS_PHY_SERDES)) {
3948 atomic_inc(&cp->reset_task_pending_all);
3949 } else {
3950 atomic_inc(&cp->reset_task_pending_mtu);
3951 }
3952 schedule_work(&cp->reset_task);
3953#else
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003954 atomic_set(&cp->reset_task_pending, (cp->phy_type & CAS_PHY_SERDES) ?
David S. Miller1f26dac2005-09-27 15:24:13 -07003955 CAS_RESET_ALL : CAS_RESET_MTU);
3956 printk(KERN_ERR "reset called in cas_change_mtu\n");
3957 schedule_work(&cp->reset_task);
3958#endif
3959
3960 flush_scheduled_work();
3961 return 0;
3962}
3963
3964static void cas_clean_txd(struct cas *cp, int ring)
3965{
3966 struct cas_tx_desc *txd = cp->init_txds[ring];
3967 struct sk_buff *skb, **skbs = cp->tx_skbs[ring];
3968 u64 daddr, dlen;
3969 int i, size;
3970
3971 size = TX_DESC_RINGN_SIZE(ring);
3972 for (i = 0; i < size; i++) {
3973 int frag;
3974
3975 if (skbs[i] == NULL)
3976 continue;
3977
3978 skb = skbs[i];
3979 skbs[i] = NULL;
3980
3981 for (frag = 0; frag <= skb_shinfo(skb)->nr_frags; frag++) {
3982 int ent = i & (size - 1);
3983
3984 /* first buffer is never a tiny buffer and so
3985 * needs to be unmapped.
3986 */
3987 daddr = le64_to_cpu(txd[ent].buffer);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003988 dlen = CAS_VAL(TX_DESC_BUFLEN,
David S. Miller1f26dac2005-09-27 15:24:13 -07003989 le64_to_cpu(txd[ent].control));
3990 pci_unmap_page(cp->pdev, daddr, dlen,
3991 PCI_DMA_TODEVICE);
3992
3993 if (frag != skb_shinfo(skb)->nr_frags) {
3994 i++;
3995
3996 /* next buffer might by a tiny buffer.
3997 * skip past it.
3998 */
3999 ent = i & (size - 1);
4000 if (cp->tx_tiny_use[ring][ent].used)
4001 i++;
4002 }
4003 }
4004 dev_kfree_skb_any(skb);
4005 }
4006
4007 /* zero out tiny buf usage */
4008 memset(cp->tx_tiny_use[ring], 0, size*sizeof(*cp->tx_tiny_use[ring]));
4009}
4010
4011/* freed on close */
4012static inline void cas_free_rx_desc(struct cas *cp, int ring)
4013{
4014 cas_page_t **page = cp->rx_pages[ring];
4015 int i, size;
4016
4017 size = RX_DESC_RINGN_SIZE(ring);
4018 for (i = 0; i < size; i++) {
4019 if (page[i]) {
4020 cas_page_free(cp, page[i]);
4021 page[i] = NULL;
4022 }
4023 }
4024}
4025
4026static void cas_free_rxds(struct cas *cp)
4027{
4028 int i;
4029
4030 for (i = 0; i < N_RX_DESC_RINGS; i++)
4031 cas_free_rx_desc(cp, i);
4032}
4033
4034/* Must be invoked under cp->lock. */
4035static void cas_clean_rings(struct cas *cp)
4036{
4037 int i;
4038
4039 /* need to clean all tx rings */
4040 memset(cp->tx_old, 0, sizeof(*cp->tx_old)*N_TX_RINGS);
4041 memset(cp->tx_new, 0, sizeof(*cp->tx_new)*N_TX_RINGS);
4042 for (i = 0; i < N_TX_RINGS; i++)
4043 cas_clean_txd(cp, i);
4044
4045 /* zero out init block */
4046 memset(cp->init_block, 0, sizeof(struct cas_init_block));
4047 cas_clean_rxds(cp);
4048 cas_clean_rxcs(cp);
4049}
4050
4051/* allocated on open */
4052static inline int cas_alloc_rx_desc(struct cas *cp, int ring)
4053{
4054 cas_page_t **page = cp->rx_pages[ring];
4055 int size, i = 0;
4056
4057 size = RX_DESC_RINGN_SIZE(ring);
4058 for (i = 0; i < size; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004059 if ((page[i] = cas_page_alloc(cp, GFP_KERNEL)) == NULL)
David S. Miller1f26dac2005-09-27 15:24:13 -07004060 return -1;
4061 }
4062 return 0;
4063}
4064
4065static int cas_alloc_rxds(struct cas *cp)
4066{
4067 int i;
4068
4069 for (i = 0; i < N_RX_DESC_RINGS; i++) {
4070 if (cas_alloc_rx_desc(cp, i) < 0) {
4071 cas_free_rxds(cp);
4072 return -1;
4073 }
4074 }
4075 return 0;
4076}
4077
David Howellsc4028952006-11-22 14:57:56 +00004078static void cas_reset_task(struct work_struct *work)
David S. Miller1f26dac2005-09-27 15:24:13 -07004079{
David Howellsc4028952006-11-22 14:57:56 +00004080 struct cas *cp = container_of(work, struct cas, reset_task);
David S. Miller1f26dac2005-09-27 15:24:13 -07004081#if 0
4082 int pending = atomic_read(&cp->reset_task_pending);
4083#else
4084 int pending_all = atomic_read(&cp->reset_task_pending_all);
4085 int pending_spare = atomic_read(&cp->reset_task_pending_spare);
4086 int pending_mtu = atomic_read(&cp->reset_task_pending_mtu);
4087
4088 if (pending_all == 0 && pending_spare == 0 && pending_mtu == 0) {
4089 /* We can have more tasks scheduled than actually
4090 * needed.
4091 */
4092 atomic_dec(&cp->reset_task_pending);
4093 return;
4094 }
4095#endif
4096 /* The link went down, we reset the ring, but keep
4097 * DMA stopped. Use this function for reset
4098 * on error as well.
4099 */
4100 if (cp->hw_running) {
4101 unsigned long flags;
4102
4103 /* Make sure we don't get interrupts or tx packets */
4104 netif_device_detach(cp->dev);
4105 cas_lock_all_save(cp, flags);
4106
4107 if (cp->opened) {
4108 /* We call cas_spare_recover when we call cas_open.
4109 * but we do not initialize the lists cas_spare_recover
4110 * uses until cas_open is called.
4111 */
4112 cas_spare_recover(cp, GFP_ATOMIC);
4113 }
4114#if 1
4115 /* test => only pending_spare set */
4116 if (!pending_all && !pending_mtu)
4117 goto done;
4118#else
4119 if (pending == CAS_RESET_SPARE)
4120 goto done;
4121#endif
4122 /* when pending == CAS_RESET_ALL, the following
4123 * call to cas_init_hw will restart auto negotiation.
4124 * Setting the second argument of cas_reset to
4125 * !(pending == CAS_RESET_ALL) will set this argument
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004126 * to 1 (avoiding reinitializing the PHY for the normal
David S. Miller1f26dac2005-09-27 15:24:13 -07004127 * PCS case) when auto negotiation is not restarted.
4128 */
4129#if 1
4130 cas_reset(cp, !(pending_all > 0));
4131 if (cp->opened)
4132 cas_clean_rings(cp);
4133 cas_init_hw(cp, (pending_all > 0));
4134#else
4135 cas_reset(cp, !(pending == CAS_RESET_ALL));
4136 if (cp->opened)
4137 cas_clean_rings(cp);
4138 cas_init_hw(cp, pending == CAS_RESET_ALL);
4139#endif
4140
4141done:
4142 cas_unlock_all_restore(cp, flags);
4143 netif_device_attach(cp->dev);
4144 }
4145#if 1
4146 atomic_sub(pending_all, &cp->reset_task_pending_all);
4147 atomic_sub(pending_spare, &cp->reset_task_pending_spare);
4148 atomic_sub(pending_mtu, &cp->reset_task_pending_mtu);
4149 atomic_dec(&cp->reset_task_pending);
4150#else
4151 atomic_set(&cp->reset_task_pending, 0);
4152#endif
4153}
4154
4155static void cas_link_timer(unsigned long data)
4156{
4157 struct cas *cp = (struct cas *) data;
4158 int mask, pending = 0, reset = 0;
4159 unsigned long flags;
4160
4161 if (link_transition_timeout != 0 &&
4162 cp->link_transition_jiffies_valid &&
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004163 ((jiffies - cp->link_transition_jiffies) >
David S. Miller1f26dac2005-09-27 15:24:13 -07004164 (link_transition_timeout))) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004165 /* One-second counter so link-down workaround doesn't
David S. Miller1f26dac2005-09-27 15:24:13 -07004166 * cause resets to occur so fast as to fool the switch
4167 * into thinking the link is down.
4168 */
4169 cp->link_transition_jiffies_valid = 0;
4170 }
4171
4172 if (!cp->hw_running)
4173 return;
4174
4175 spin_lock_irqsave(&cp->lock, flags);
4176 cas_lock_tx(cp);
4177 cas_entropy_gather(cp);
4178
4179 /* If the link task is still pending, we just
4180 * reschedule the link timer
4181 */
4182#if 1
4183 if (atomic_read(&cp->reset_task_pending_all) ||
4184 atomic_read(&cp->reset_task_pending_spare) ||
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004185 atomic_read(&cp->reset_task_pending_mtu))
David S. Miller1f26dac2005-09-27 15:24:13 -07004186 goto done;
4187#else
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004188 if (atomic_read(&cp->reset_task_pending))
David S. Miller1f26dac2005-09-27 15:24:13 -07004189 goto done;
4190#endif
4191
4192 /* check for rx cleaning */
4193 if ((mask = (cp->cas_flags & CAS_FLAG_RXD_POST_MASK))) {
4194 int i, rmask;
4195
4196 for (i = 0; i < MAX_RX_DESC_RINGS; i++) {
4197 rmask = CAS_FLAG_RXD_POST(i);
4198 if ((mask & rmask) == 0)
4199 continue;
4200
4201 /* post_rxds will do a mod_timer */
4202 if (cas_post_rxds_ringN(cp, i, cp->rx_last[i]) < 0) {
4203 pending = 1;
4204 continue;
4205 }
4206 cp->cas_flags &= ~rmask;
4207 }
4208 }
4209
4210 if (CAS_PHY_MII(cp->phy_type)) {
4211 u16 bmsr;
4212 cas_mif_poll(cp, 0);
4213 bmsr = cas_phy_read(cp, MII_BMSR);
4214 /* WTZ: Solaris driver reads this twice, but that
4215 * may be due to the PCS case and the use of a
4216 * common implementation. Read it twice here to be
4217 * safe.
4218 */
4219 bmsr = cas_phy_read(cp, MII_BMSR);
4220 cas_mif_poll(cp, 1);
4221 readl(cp->regs + REG_MIF_STATUS); /* avoid dups */
4222 reset = cas_mii_link_check(cp, bmsr);
4223 } else {
4224 reset = cas_pcs_link_check(cp);
4225 }
4226
4227 if (reset)
4228 goto done;
4229
4230 /* check for tx state machine confusion */
4231 if ((readl(cp->regs + REG_MAC_TX_STATUS) & MAC_TX_FRAME_XMIT) == 0) {
4232 u32 val = readl(cp->regs + REG_MAC_STATE_MACHINE);
4233 u32 wptr, rptr;
4234 int tlm = CAS_VAL(MAC_SM_TLM, val);
4235
4236 if (((tlm == 0x5) || (tlm == 0x3)) &&
4237 (CAS_VAL(MAC_SM_ENCAP_SM, val) == 0)) {
4238 if (netif_msg_tx_err(cp))
4239 printk(KERN_DEBUG "%s: tx err: "
4240 "MAC_STATE[%08x]\n",
4241 cp->dev->name, val);
4242 reset = 1;
4243 goto done;
4244 }
4245
4246 val = readl(cp->regs + REG_TX_FIFO_PKT_CNT);
4247 wptr = readl(cp->regs + REG_TX_FIFO_WRITE_PTR);
4248 rptr = readl(cp->regs + REG_TX_FIFO_READ_PTR);
4249 if ((val == 0) && (wptr != rptr)) {
4250 if (netif_msg_tx_err(cp))
4251 printk(KERN_DEBUG "%s: tx err: "
4252 "TX_FIFO[%08x:%08x:%08x]\n",
4253 cp->dev->name, val, wptr, rptr);
4254 reset = 1;
4255 }
4256
4257 if (reset)
4258 cas_hard_reset(cp);
4259 }
4260
4261done:
4262 if (reset) {
4263#if 1
4264 atomic_inc(&cp->reset_task_pending);
4265 atomic_inc(&cp->reset_task_pending_all);
4266 schedule_work(&cp->reset_task);
4267#else
4268 atomic_set(&cp->reset_task_pending, CAS_RESET_ALL);
4269 printk(KERN_ERR "reset called in cas_link_timer\n");
4270 schedule_work(&cp->reset_task);
4271#endif
4272 }
4273
4274 if (!pending)
4275 mod_timer(&cp->link_timer, jiffies + CAS_LINK_TIMEOUT);
4276 cas_unlock_tx(cp);
4277 spin_unlock_irqrestore(&cp->lock, flags);
4278}
4279
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004280/* tiny buffers are used to avoid target abort issues with
David S. Miller1f26dac2005-09-27 15:24:13 -07004281 * older cassini's
4282 */
4283static void cas_tx_tiny_free(struct cas *cp)
4284{
4285 struct pci_dev *pdev = cp->pdev;
4286 int i;
4287
4288 for (i = 0; i < N_TX_RINGS; i++) {
4289 if (!cp->tx_tiny_bufs[i])
4290 continue;
4291
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004292 pci_free_consistent(pdev, TX_TINY_BUF_BLOCK,
David S. Miller1f26dac2005-09-27 15:24:13 -07004293 cp->tx_tiny_bufs[i],
4294 cp->tx_tiny_dvma[i]);
4295 cp->tx_tiny_bufs[i] = NULL;
4296 }
4297}
4298
4299static int cas_tx_tiny_alloc(struct cas *cp)
4300{
4301 struct pci_dev *pdev = cp->pdev;
4302 int i;
4303
4304 for (i = 0; i < N_TX_RINGS; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004305 cp->tx_tiny_bufs[i] =
David S. Miller1f26dac2005-09-27 15:24:13 -07004306 pci_alloc_consistent(pdev, TX_TINY_BUF_BLOCK,
4307 &cp->tx_tiny_dvma[i]);
4308 if (!cp->tx_tiny_bufs[i]) {
4309 cas_tx_tiny_free(cp);
4310 return -1;
4311 }
4312 }
4313 return 0;
4314}
4315
4316
4317static int cas_open(struct net_device *dev)
4318{
4319 struct cas *cp = netdev_priv(dev);
4320 int hw_was_up, err;
4321 unsigned long flags;
4322
Ingo Molnar758df692006-03-20 22:34:09 -08004323 mutex_lock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07004324
4325 hw_was_up = cp->hw_running;
4326
Ingo Molnar758df692006-03-20 22:34:09 -08004327 /* The power-management mutex protects the hw_running
David S. Miller1f26dac2005-09-27 15:24:13 -07004328 * etc. state so it is safe to do this bit without cp->lock
4329 */
4330 if (!cp->hw_running) {
4331 /* Reset the chip */
4332 cas_lock_all_save(cp, flags);
4333 /* We set the second arg to cas_reset to zero
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004334 * because cas_init_hw below will have its second
David S. Miller1f26dac2005-09-27 15:24:13 -07004335 * argument set to non-zero, which will force
4336 * autonegotiation to start.
4337 */
4338 cas_reset(cp, 0);
4339 cp->hw_running = 1;
4340 cas_unlock_all_restore(cp, flags);
4341 }
4342
Jiri Slaby87d75b52009-11-05 23:14:29 +00004343 err = -ENOMEM;
David S. Miller1f26dac2005-09-27 15:24:13 -07004344 if (cas_tx_tiny_alloc(cp) < 0)
Jiri Slaby87d75b52009-11-05 23:14:29 +00004345 goto err_unlock;
David S. Miller1f26dac2005-09-27 15:24:13 -07004346
4347 /* alloc rx descriptors */
David S. Miller1f26dac2005-09-27 15:24:13 -07004348 if (cas_alloc_rxds(cp) < 0)
4349 goto err_tx_tiny;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004350
David S. Miller1f26dac2005-09-27 15:24:13 -07004351 /* allocate spares */
4352 cas_spare_init(cp);
4353 cas_spare_recover(cp, GFP_KERNEL);
4354
4355 /* We can now request the interrupt as we know it's masked
4356 * on the controller. cassini+ has up to 4 interrupts
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004357 * that can be used, but you need to do explicit pci interrupt
David S. Miller1f26dac2005-09-27 15:24:13 -07004358 * mapping to expose them
4359 */
4360 if (request_irq(cp->pdev->irq, cas_interrupt,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07004361 IRQF_SHARED, dev->name, (void *) dev)) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004362 printk(KERN_ERR "%s: failed to request irq !\n",
David S. Miller1f26dac2005-09-27 15:24:13 -07004363 cp->dev->name);
4364 err = -EAGAIN;
4365 goto err_spare;
4366 }
4367
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004368#ifdef USE_NAPI
4369 napi_enable(&cp->napi);
4370#endif
David S. Miller1f26dac2005-09-27 15:24:13 -07004371 /* init hw */
4372 cas_lock_all_save(cp, flags);
4373 cas_clean_rings(cp);
4374 cas_init_hw(cp, !hw_was_up);
4375 cp->opened = 1;
4376 cas_unlock_all_restore(cp, flags);
4377
4378 netif_start_queue(dev);
Ingo Molnar758df692006-03-20 22:34:09 -08004379 mutex_unlock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07004380 return 0;
4381
4382err_spare:
4383 cas_spare_free(cp);
4384 cas_free_rxds(cp);
4385err_tx_tiny:
4386 cas_tx_tiny_free(cp);
Jiri Slaby87d75b52009-11-05 23:14:29 +00004387err_unlock:
Ingo Molnar758df692006-03-20 22:34:09 -08004388 mutex_unlock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07004389 return err;
4390}
4391
4392static int cas_close(struct net_device *dev)
4393{
4394 unsigned long flags;
4395 struct cas *cp = netdev_priv(dev);
4396
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004397#ifdef USE_NAPI
David S. Miller86216262008-01-04 00:23:18 -08004398 napi_disable(&cp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004399#endif
David S. Miller1f26dac2005-09-27 15:24:13 -07004400 /* Make sure we don't get distracted by suspend/resume */
Ingo Molnar758df692006-03-20 22:34:09 -08004401 mutex_lock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07004402
4403 netif_stop_queue(dev);
4404
4405 /* Stop traffic, mark us closed */
4406 cas_lock_all_save(cp, flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004407 cp->opened = 0;
David S. Miller1f26dac2005-09-27 15:24:13 -07004408 cas_reset(cp, 0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004409 cas_phy_init(cp);
David S. Miller1f26dac2005-09-27 15:24:13 -07004410 cas_begin_auto_negotiation(cp, NULL);
4411 cas_clean_rings(cp);
4412 cas_unlock_all_restore(cp, flags);
4413
4414 free_irq(cp->pdev->irq, (void *) dev);
4415 cas_spare_free(cp);
4416 cas_free_rxds(cp);
4417 cas_tx_tiny_free(cp);
Ingo Molnar758df692006-03-20 22:34:09 -08004418 mutex_unlock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07004419 return 0;
4420}
4421
4422static struct {
4423 const char name[ETH_GSTRING_LEN];
4424} ethtool_cassini_statnames[] = {
4425 {"collisions"},
4426 {"rx_bytes"},
4427 {"rx_crc_errors"},
4428 {"rx_dropped"},
4429 {"rx_errors"},
4430 {"rx_fifo_errors"},
4431 {"rx_frame_errors"},
4432 {"rx_length_errors"},
4433 {"rx_over_errors"},
4434 {"rx_packets"},
4435 {"tx_aborted_errors"},
4436 {"tx_bytes"},
4437 {"tx_dropped"},
4438 {"tx_errors"},
4439 {"tx_fifo_errors"},
4440 {"tx_packets"}
4441};
Alejandro Martinez Ruiz4c3616c2007-10-18 10:00:15 +02004442#define CAS_NUM_STAT_KEYS ARRAY_SIZE(ethtool_cassini_statnames)
David S. Miller1f26dac2005-09-27 15:24:13 -07004443
4444static struct {
4445 const int offsets; /* neg. values for 2nd arg to cas_read_phy */
4446} ethtool_register_table[] = {
4447 {-MII_BMSR},
4448 {-MII_BMCR},
4449 {REG_CAWR},
4450 {REG_INF_BURST},
4451 {REG_BIM_CFG},
4452 {REG_RX_CFG},
4453 {REG_HP_CFG},
4454 {REG_MAC_TX_CFG},
4455 {REG_MAC_RX_CFG},
4456 {REG_MAC_CTRL_CFG},
4457 {REG_MAC_XIF_CFG},
4458 {REG_MIF_CFG},
4459 {REG_PCS_CFG},
4460 {REG_SATURN_PCFG},
4461 {REG_PCS_MII_STATUS},
4462 {REG_PCS_STATE_MACHINE},
4463 {REG_MAC_COLL_EXCESS},
4464 {REG_MAC_COLL_LATE}
4465};
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +02004466#define CAS_REG_LEN ARRAY_SIZE(ethtool_register_table)
David S. Miller1f26dac2005-09-27 15:24:13 -07004467#define CAS_MAX_REGS (sizeof (u32)*CAS_REG_LEN)
4468
Al Viroa232f762005-10-03 14:01:37 -07004469static void cas_read_regs(struct cas *cp, u8 *ptr, int len)
David S. Miller1f26dac2005-09-27 15:24:13 -07004470{
David S. Miller1f26dac2005-09-27 15:24:13 -07004471 u8 *p;
4472 int i;
4473 unsigned long flags;
4474
David S. Miller1f26dac2005-09-27 15:24:13 -07004475 spin_lock_irqsave(&cp->lock, flags);
Al Viroa232f762005-10-03 14:01:37 -07004476 for (i = 0, p = ptr; i < len ; i ++, p += sizeof(u32)) {
David S. Miller1f26dac2005-09-27 15:24:13 -07004477 u16 hval;
4478 u32 val;
4479 if (ethtool_register_table[i].offsets < 0) {
4480 hval = cas_phy_read(cp,
4481 -ethtool_register_table[i].offsets);
4482 val = hval;
4483 } else {
4484 val= readl(cp->regs+ethtool_register_table[i].offsets);
4485 }
4486 memcpy(p, (u8 *)&val, sizeof(u32));
4487 }
4488 spin_unlock_irqrestore(&cp->lock, flags);
David S. Miller1f26dac2005-09-27 15:24:13 -07004489}
4490
4491static struct net_device_stats *cas_get_stats(struct net_device *dev)
4492{
4493 struct cas *cp = netdev_priv(dev);
4494 struct net_device_stats *stats = cp->net_stats;
4495 unsigned long flags;
4496 int i;
4497 unsigned long tmp;
4498
4499 /* we collate all of the stats into net_stats[N_TX_RING] */
4500 if (!cp->hw_running)
4501 return stats + N_TX_RINGS;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004502
David S. Miller1f26dac2005-09-27 15:24:13 -07004503 /* collect outstanding stats */
4504 /* WTZ: the Cassini spec gives these as 16 bit counters but
4505 * stored in 32-bit words. Added a mask of 0xffff to be safe,
4506 * in case the chip somehow puts any garbage in the other bits.
4507 * Also, counter usage didn't seem to mach what Adrian did
4508 * in the parts of the code that set these quantities. Made
4509 * that consistent.
4510 */
4511 spin_lock_irqsave(&cp->stat_lock[N_TX_RINGS], flags);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004512 stats[N_TX_RINGS].rx_crc_errors +=
David S. Miller1f26dac2005-09-27 15:24:13 -07004513 readl(cp->regs + REG_MAC_FCS_ERR) & 0xffff;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004514 stats[N_TX_RINGS].rx_frame_errors +=
David S. Miller1f26dac2005-09-27 15:24:13 -07004515 readl(cp->regs + REG_MAC_ALIGN_ERR) &0xffff;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004516 stats[N_TX_RINGS].rx_length_errors +=
David S. Miller1f26dac2005-09-27 15:24:13 -07004517 readl(cp->regs + REG_MAC_LEN_ERR) & 0xffff;
4518#if 1
4519 tmp = (readl(cp->regs + REG_MAC_COLL_EXCESS) & 0xffff) +
4520 (readl(cp->regs + REG_MAC_COLL_LATE) & 0xffff);
4521 stats[N_TX_RINGS].tx_aborted_errors += tmp;
4522 stats[N_TX_RINGS].collisions +=
4523 tmp + (readl(cp->regs + REG_MAC_COLL_NORMAL) & 0xffff);
4524#else
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004525 stats[N_TX_RINGS].tx_aborted_errors +=
David S. Miller1f26dac2005-09-27 15:24:13 -07004526 readl(cp->regs + REG_MAC_COLL_EXCESS);
4527 stats[N_TX_RINGS].collisions += readl(cp->regs + REG_MAC_COLL_EXCESS) +
4528 readl(cp->regs + REG_MAC_COLL_LATE);
4529#endif
4530 cas_clear_mac_err(cp);
4531
4532 /* saved bits that are unique to ring 0 */
4533 spin_lock(&cp->stat_lock[0]);
4534 stats[N_TX_RINGS].collisions += stats[0].collisions;
4535 stats[N_TX_RINGS].rx_over_errors += stats[0].rx_over_errors;
4536 stats[N_TX_RINGS].rx_frame_errors += stats[0].rx_frame_errors;
4537 stats[N_TX_RINGS].rx_fifo_errors += stats[0].rx_fifo_errors;
4538 stats[N_TX_RINGS].tx_aborted_errors += stats[0].tx_aborted_errors;
4539 stats[N_TX_RINGS].tx_fifo_errors += stats[0].tx_fifo_errors;
4540 spin_unlock(&cp->stat_lock[0]);
4541
4542 for (i = 0; i < N_TX_RINGS; i++) {
4543 spin_lock(&cp->stat_lock[i]);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004544 stats[N_TX_RINGS].rx_length_errors +=
David S. Miller1f26dac2005-09-27 15:24:13 -07004545 stats[i].rx_length_errors;
4546 stats[N_TX_RINGS].rx_crc_errors += stats[i].rx_crc_errors;
4547 stats[N_TX_RINGS].rx_packets += stats[i].rx_packets;
4548 stats[N_TX_RINGS].tx_packets += stats[i].tx_packets;
4549 stats[N_TX_RINGS].rx_bytes += stats[i].rx_bytes;
4550 stats[N_TX_RINGS].tx_bytes += stats[i].tx_bytes;
4551 stats[N_TX_RINGS].rx_errors += stats[i].rx_errors;
4552 stats[N_TX_RINGS].tx_errors += stats[i].tx_errors;
4553 stats[N_TX_RINGS].rx_dropped += stats[i].rx_dropped;
4554 stats[N_TX_RINGS].tx_dropped += stats[i].tx_dropped;
4555 memset(stats + i, 0, sizeof(struct net_device_stats));
4556 spin_unlock(&cp->stat_lock[i]);
4557 }
4558 spin_unlock_irqrestore(&cp->stat_lock[N_TX_RINGS], flags);
4559 return stats + N_TX_RINGS;
4560}
4561
4562
4563static void cas_set_multicast(struct net_device *dev)
4564{
4565 struct cas *cp = netdev_priv(dev);
4566 u32 rxcfg, rxcfg_new;
4567 unsigned long flags;
4568 int limit = STOP_TRIES;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004569
David S. Miller1f26dac2005-09-27 15:24:13 -07004570 if (!cp->hw_running)
4571 return;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004572
David S. Miller1f26dac2005-09-27 15:24:13 -07004573 spin_lock_irqsave(&cp->lock, flags);
4574 rxcfg = readl(cp->regs + REG_MAC_RX_CFG);
4575
4576 /* disable RX MAC and wait for completion */
4577 writel(rxcfg & ~MAC_RX_CFG_EN, cp->regs + REG_MAC_RX_CFG);
4578 while (readl(cp->regs + REG_MAC_RX_CFG) & MAC_RX_CFG_EN) {
4579 if (!limit--)
4580 break;
4581 udelay(10);
4582 }
4583
4584 /* disable hash filter and wait for completion */
4585 limit = STOP_TRIES;
4586 rxcfg &= ~(MAC_RX_CFG_PROMISC_EN | MAC_RX_CFG_HASH_FILTER_EN);
4587 writel(rxcfg & ~MAC_RX_CFG_EN, cp->regs + REG_MAC_RX_CFG);
4588 while (readl(cp->regs + REG_MAC_RX_CFG) & MAC_RX_CFG_HASH_FILTER_EN) {
4589 if (!limit--)
4590 break;
4591 udelay(10);
4592 }
4593
4594 /* program hash filters */
4595 cp->mac_rx_cfg = rxcfg_new = cas_setup_multicast(cp);
4596 rxcfg |= rxcfg_new;
4597 writel(rxcfg, cp->regs + REG_MAC_RX_CFG);
4598 spin_unlock_irqrestore(&cp->lock, flags);
4599}
4600
Al Viroa232f762005-10-03 14:01:37 -07004601static void cas_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
4602{
4603 struct cas *cp = netdev_priv(dev);
4604 strncpy(info->driver, DRV_MODULE_NAME, ETHTOOL_BUSINFO_LEN);
4605 strncpy(info->version, DRV_MODULE_VERSION, ETHTOOL_BUSINFO_LEN);
4606 info->fw_version[0] = '\0';
4607 strncpy(info->bus_info, pci_name(cp->pdev), ETHTOOL_BUSINFO_LEN);
4608 info->regdump_len = cp->casreg_len < CAS_MAX_REGS ?
4609 cp->casreg_len : CAS_MAX_REGS;
4610 info->n_stats = CAS_NUM_STAT_KEYS;
4611}
4612
4613static int cas_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
David S. Miller1f26dac2005-09-27 15:24:13 -07004614{
4615 struct cas *cp = netdev_priv(dev);
4616 u16 bmcr;
4617 int full_duplex, speed, pause;
David S. Miller1f26dac2005-09-27 15:24:13 -07004618 unsigned long flags;
4619 enum link_state linkstate = link_up;
4620
Al Viroa232f762005-10-03 14:01:37 -07004621 cmd->advertising = 0;
4622 cmd->supported = SUPPORTED_Autoneg;
4623 if (cp->cas_flags & CAS_FLAG_1000MB_CAP) {
4624 cmd->supported |= SUPPORTED_1000baseT_Full;
4625 cmd->advertising |= ADVERTISED_1000baseT_Full;
David S. Miller1f26dac2005-09-27 15:24:13 -07004626 }
4627
Al Viroa232f762005-10-03 14:01:37 -07004628 /* Record PHY settings if HW is on. */
4629 spin_lock_irqsave(&cp->lock, flags);
4630 bmcr = 0;
4631 linkstate = cp->lstate;
4632 if (CAS_PHY_MII(cp->phy_type)) {
4633 cmd->port = PORT_MII;
4634 cmd->transceiver = (cp->cas_flags & CAS_FLAG_SATURN) ?
4635 XCVR_INTERNAL : XCVR_EXTERNAL;
4636 cmd->phy_address = cp->phy_addr;
4637 cmd->advertising |= ADVERTISED_TP | ADVERTISED_MII |
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004638 ADVERTISED_10baseT_Half |
4639 ADVERTISED_10baseT_Full |
4640 ADVERTISED_100baseT_Half |
Al Viroa232f762005-10-03 14:01:37 -07004641 ADVERTISED_100baseT_Full;
4642
4643 cmd->supported |=
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004644 (SUPPORTED_10baseT_Half |
Al Viroa232f762005-10-03 14:01:37 -07004645 SUPPORTED_10baseT_Full |
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004646 SUPPORTED_100baseT_Half |
Al Viroa232f762005-10-03 14:01:37 -07004647 SUPPORTED_100baseT_Full |
4648 SUPPORTED_TP | SUPPORTED_MII);
4649
4650 if (cp->hw_running) {
4651 cas_mif_poll(cp, 0);
4652 bmcr = cas_phy_read(cp, MII_BMCR);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004653 cas_read_mii_link_mode(cp, &full_duplex,
Al Viroa232f762005-10-03 14:01:37 -07004654 &speed, &pause);
4655 cas_mif_poll(cp, 1);
David S. Miller1f26dac2005-09-27 15:24:13 -07004656 }
4657
Al Viroa232f762005-10-03 14:01:37 -07004658 } else {
4659 cmd->port = PORT_FIBRE;
4660 cmd->transceiver = XCVR_INTERNAL;
4661 cmd->phy_address = 0;
4662 cmd->supported |= SUPPORTED_FIBRE;
4663 cmd->advertising |= ADVERTISED_FIBRE;
David S. Miller1f26dac2005-09-27 15:24:13 -07004664
Al Viroa232f762005-10-03 14:01:37 -07004665 if (cp->hw_running) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004666 /* pcs uses the same bits as mii */
Al Viroa232f762005-10-03 14:01:37 -07004667 bmcr = readl(cp->regs + REG_PCS_MII_CTRL);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004668 cas_read_pcs_link_mode(cp, &full_duplex,
Al Viroa232f762005-10-03 14:01:37 -07004669 &speed, &pause);
David S. Miller1f26dac2005-09-27 15:24:13 -07004670 }
Al Viroa232f762005-10-03 14:01:37 -07004671 }
4672 spin_unlock_irqrestore(&cp->lock, flags);
David S. Miller1f26dac2005-09-27 15:24:13 -07004673
Al Viroa232f762005-10-03 14:01:37 -07004674 if (bmcr & BMCR_ANENABLE) {
4675 cmd->advertising |= ADVERTISED_Autoneg;
4676 cmd->autoneg = AUTONEG_ENABLE;
4677 cmd->speed = ((speed == 10) ?
4678 SPEED_10 :
4679 ((speed == 1000) ?
4680 SPEED_1000 : SPEED_100));
4681 cmd->duplex = full_duplex ? DUPLEX_FULL : DUPLEX_HALF;
4682 } else {
4683 cmd->autoneg = AUTONEG_DISABLE;
4684 cmd->speed =
4685 (bmcr & CAS_BMCR_SPEED1000) ?
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004686 SPEED_1000 :
4687 ((bmcr & BMCR_SPEED100) ? SPEED_100:
Al Viroa232f762005-10-03 14:01:37 -07004688 SPEED_10);
4689 cmd->duplex =
4690 (bmcr & BMCR_FULLDPLX) ?
4691 DUPLEX_FULL : DUPLEX_HALF;
4692 }
4693 if (linkstate != link_up) {
4694 /* Force these to "unknown" if the link is not up and
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004695 * autonogotiation in enabled. We can set the link
Al Viroa232f762005-10-03 14:01:37 -07004696 * speed to 0, but not cmd->duplex,
4697 * because its legal values are 0 and 1. Ethtool will
4698 * print the value reported in parentheses after the
4699 * word "Unknown" for unrecognized values.
4700 *
4701 * If in forced mode, we report the speed and duplex
4702 * settings that we configured.
4703 */
4704 if (cp->link_cntl & BMCR_ANENABLE) {
4705 cmd->speed = 0;
4706 cmd->duplex = 0xff;
David S. Miller1f26dac2005-09-27 15:24:13 -07004707 } else {
Al Viroa232f762005-10-03 14:01:37 -07004708 cmd->speed = SPEED_10;
4709 if (cp->link_cntl & BMCR_SPEED100) {
4710 cmd->speed = SPEED_100;
4711 } else if (cp->link_cntl & CAS_BMCR_SPEED1000) {
4712 cmd->speed = SPEED_1000;
4713 }
4714 cmd->duplex = (cp->link_cntl & BMCR_FULLDPLX)?
David S. Miller1f26dac2005-09-27 15:24:13 -07004715 DUPLEX_FULL : DUPLEX_HALF;
4716 }
David S. Miller1f26dac2005-09-27 15:24:13 -07004717 }
Al Viroa232f762005-10-03 14:01:37 -07004718 return 0;
David S. Miller1f26dac2005-09-27 15:24:13 -07004719}
4720
Al Viroa232f762005-10-03 14:01:37 -07004721static int cas_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
4722{
4723 struct cas *cp = netdev_priv(dev);
4724 unsigned long flags;
4725
4726 /* Verify the settings we care about. */
4727 if (cmd->autoneg != AUTONEG_ENABLE &&
4728 cmd->autoneg != AUTONEG_DISABLE)
4729 return -EINVAL;
4730
4731 if (cmd->autoneg == AUTONEG_DISABLE &&
4732 ((cmd->speed != SPEED_1000 &&
4733 cmd->speed != SPEED_100 &&
4734 cmd->speed != SPEED_10) ||
4735 (cmd->duplex != DUPLEX_HALF &&
4736 cmd->duplex != DUPLEX_FULL)))
4737 return -EINVAL;
4738
4739 /* Apply settings and restart link process. */
4740 spin_lock_irqsave(&cp->lock, flags);
4741 cas_begin_auto_negotiation(cp, cmd);
4742 spin_unlock_irqrestore(&cp->lock, flags);
4743 return 0;
4744}
4745
4746static int cas_nway_reset(struct net_device *dev)
4747{
4748 struct cas *cp = netdev_priv(dev);
4749 unsigned long flags;
4750
4751 if ((cp->link_cntl & BMCR_ANENABLE) == 0)
4752 return -EINVAL;
4753
4754 /* Restart link process. */
4755 spin_lock_irqsave(&cp->lock, flags);
4756 cas_begin_auto_negotiation(cp, NULL);
4757 spin_unlock_irqrestore(&cp->lock, flags);
4758
4759 return 0;
4760}
4761
4762static u32 cas_get_link(struct net_device *dev)
4763{
4764 struct cas *cp = netdev_priv(dev);
4765 return cp->lstate == link_up;
4766}
4767
4768static u32 cas_get_msglevel(struct net_device *dev)
4769{
4770 struct cas *cp = netdev_priv(dev);
4771 return cp->msg_enable;
4772}
4773
4774static void cas_set_msglevel(struct net_device *dev, u32 value)
4775{
4776 struct cas *cp = netdev_priv(dev);
4777 cp->msg_enable = value;
4778}
4779
4780static int cas_get_regs_len(struct net_device *dev)
4781{
4782 struct cas *cp = netdev_priv(dev);
4783 return cp->casreg_len < CAS_MAX_REGS ? cp->casreg_len: CAS_MAX_REGS;
4784}
4785
4786static void cas_get_regs(struct net_device *dev, struct ethtool_regs *regs,
4787 void *p)
4788{
4789 struct cas *cp = netdev_priv(dev);
4790 regs->version = 0;
4791 /* cas_read_regs handles locks (cp->lock). */
4792 cas_read_regs(cp, p, regs->len / sizeof(u32));
4793}
4794
Jeff Garzikb9f2c042007-10-03 18:07:32 -07004795static int cas_get_sset_count(struct net_device *dev, int sset)
Al Viroa232f762005-10-03 14:01:37 -07004796{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07004797 switch (sset) {
4798 case ETH_SS_STATS:
4799 return CAS_NUM_STAT_KEYS;
4800 default:
4801 return -EOPNOTSUPP;
4802 }
Al Viroa232f762005-10-03 14:01:37 -07004803}
4804
4805static void cas_get_strings(struct net_device *dev, u32 stringset, u8 *data)
4806{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004807 memcpy(data, &ethtool_cassini_statnames,
Al Viroa232f762005-10-03 14:01:37 -07004808 CAS_NUM_STAT_KEYS * ETH_GSTRING_LEN);
4809}
4810
4811static void cas_get_ethtool_stats(struct net_device *dev,
4812 struct ethtool_stats *estats, u64 *data)
4813{
4814 struct cas *cp = netdev_priv(dev);
4815 struct net_device_stats *stats = cas_get_stats(cp->dev);
4816 int i = 0;
4817 data[i++] = stats->collisions;
4818 data[i++] = stats->rx_bytes;
4819 data[i++] = stats->rx_crc_errors;
4820 data[i++] = stats->rx_dropped;
4821 data[i++] = stats->rx_errors;
4822 data[i++] = stats->rx_fifo_errors;
4823 data[i++] = stats->rx_frame_errors;
4824 data[i++] = stats->rx_length_errors;
4825 data[i++] = stats->rx_over_errors;
4826 data[i++] = stats->rx_packets;
4827 data[i++] = stats->tx_aborted_errors;
4828 data[i++] = stats->tx_bytes;
4829 data[i++] = stats->tx_dropped;
4830 data[i++] = stats->tx_errors;
4831 data[i++] = stats->tx_fifo_errors;
4832 data[i++] = stats->tx_packets;
4833 BUG_ON(i != CAS_NUM_STAT_KEYS);
4834}
4835
Jeff Garzik7282d492006-09-13 14:30:00 -04004836static const struct ethtool_ops cas_ethtool_ops = {
Al Viroa232f762005-10-03 14:01:37 -07004837 .get_drvinfo = cas_get_drvinfo,
4838 .get_settings = cas_get_settings,
4839 .set_settings = cas_set_settings,
4840 .nway_reset = cas_nway_reset,
4841 .get_link = cas_get_link,
4842 .get_msglevel = cas_get_msglevel,
4843 .set_msglevel = cas_set_msglevel,
4844 .get_regs_len = cas_get_regs_len,
4845 .get_regs = cas_get_regs,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07004846 .get_sset_count = cas_get_sset_count,
Al Viroa232f762005-10-03 14:01:37 -07004847 .get_strings = cas_get_strings,
4848 .get_ethtool_stats = cas_get_ethtool_stats,
4849};
4850
David S. Miller1f26dac2005-09-27 15:24:13 -07004851static int cas_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4852{
4853 struct cas *cp = netdev_priv(dev);
Al Viro46d70312005-09-30 03:21:45 +01004854 struct mii_ioctl_data *data = if_mii(ifr);
David S. Miller1f26dac2005-09-27 15:24:13 -07004855 unsigned long flags;
4856 int rc = -EOPNOTSUPP;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004857
Ingo Molnar758df692006-03-20 22:34:09 -08004858 /* Hold the PM mutex while doing ioctl's or we may collide
David S. Miller1f26dac2005-09-27 15:24:13 -07004859 * with open/close and power management and oops.
4860 */
Ingo Molnar758df692006-03-20 22:34:09 -08004861 mutex_lock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07004862 switch (cmd) {
David S. Miller1f26dac2005-09-27 15:24:13 -07004863 case SIOCGMIIPHY: /* Get address of MII PHY in use. */
4864 data->phy_id = cp->phy_addr;
4865 /* Fallthrough... */
4866
4867 case SIOCGMIIREG: /* Read MII PHY register. */
4868 spin_lock_irqsave(&cp->lock, flags);
4869 cas_mif_poll(cp, 0);
4870 data->val_out = cas_phy_read(cp, data->reg_num & 0x1f);
4871 cas_mif_poll(cp, 1);
4872 spin_unlock_irqrestore(&cp->lock, flags);
4873 rc = 0;
4874 break;
4875
4876 case SIOCSMIIREG: /* Write MII PHY register. */
David S. Miller1f26dac2005-09-27 15:24:13 -07004877 spin_lock_irqsave(&cp->lock, flags);
4878 cas_mif_poll(cp, 0);
4879 rc = cas_phy_write(cp, data->reg_num & 0x1f, data->val_in);
4880 cas_mif_poll(cp, 1);
4881 spin_unlock_irqrestore(&cp->lock, flags);
4882 break;
4883 default:
4884 break;
4885 };
4886
Ingo Molnar758df692006-03-20 22:34:09 -08004887 mutex_unlock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07004888 return rc;
4889}
4890
David S. Miller9e1848b2008-01-03 20:11:31 -08004891/* When this chip sits underneath an Intel 31154 bridge, it is the
4892 * only subordinate device and we can tweak the bridge settings to
4893 * reflect that fact.
4894 */
4895static void __devinit cas_program_bridge(struct pci_dev *cas_pdev)
4896{
4897 struct pci_dev *pdev = cas_pdev->bus->self;
4898 u32 val;
4899
4900 if (!pdev)
4901 return;
4902
4903 if (pdev->vendor != 0x8086 || pdev->device != 0x537c)
4904 return;
4905
4906 /* Clear bit 10 (Bus Parking Control) in the Secondary
4907 * Arbiter Control/Status Register which lives at offset
4908 * 0x41. Using a 32-bit word read/modify/write at 0x40
4909 * is much simpler so that's how we do this.
4910 */
4911 pci_read_config_dword(pdev, 0x40, &val);
4912 val &= ~0x00040000;
4913 pci_write_config_dword(pdev, 0x40, val);
4914
4915 /* Max out the Multi-Transaction Timer settings since
4916 * Cassini is the only device present.
4917 *
4918 * The register is 16-bit and lives at 0x50. When the
4919 * settings are enabled, it extends the GRANT# signal
4920 * for a requestor after a transaction is complete. This
4921 * allows the next request to run without first needing
4922 * to negotiate the GRANT# signal back.
4923 *
4924 * Bits 12:10 define the grant duration:
4925 *
4926 * 1 -- 16 clocks
4927 * 2 -- 32 clocks
4928 * 3 -- 64 clocks
4929 * 4 -- 128 clocks
4930 * 5 -- 256 clocks
4931 *
4932 * All other values are illegal.
4933 *
4934 * Bits 09:00 define which REQ/GNT signal pairs get the
4935 * GRANT# signal treatment. We set them all.
4936 */
4937 pci_write_config_word(pdev, 0x50, (5 << 10) | 0x3ff);
4938
4939 /* The Read Prefecth Policy register is 16-bit and sits at
4940 * offset 0x52. It enables a "smart" pre-fetch policy. We
4941 * enable it and max out all of the settings since only one
4942 * device is sitting underneath and thus bandwidth sharing is
4943 * not an issue.
4944 *
4945 * The register has several 3 bit fields, which indicates a
4946 * multiplier applied to the base amount of prefetching the
4947 * chip would do. These fields are at:
4948 *
4949 * 15:13 --- ReRead Primary Bus
4950 * 12:10 --- FirstRead Primary Bus
4951 * 09:07 --- ReRead Secondary Bus
4952 * 06:04 --- FirstRead Secondary Bus
4953 *
4954 * Bits 03:00 control which REQ/GNT pairs the prefetch settings
4955 * get enabled on. Bit 3 is a grouped enabler which controls
4956 * all of the REQ/GNT pairs from [8:3]. Bits 2 to 0 control
4957 * the individual REQ/GNT pairs [2:0].
4958 */
4959 pci_write_config_word(pdev, 0x52,
4960 (0x7 << 13) |
4961 (0x7 << 10) |
4962 (0x7 << 7) |
4963 (0x7 << 4) |
4964 (0xf << 0));
4965
4966 /* Force cacheline size to 0x8 */
4967 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4968
4969 /* Force latency timer to maximum setting so Cassini can
4970 * sit on the bus as long as it likes.
4971 */
4972 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xff);
4973}
4974
Stephen Hemminger83d6f032009-01-07 17:25:41 -08004975static const struct net_device_ops cas_netdev_ops = {
4976 .ndo_open = cas_open,
4977 .ndo_stop = cas_close,
4978 .ndo_start_xmit = cas_start_xmit,
4979 .ndo_get_stats = cas_get_stats,
4980 .ndo_set_multicast_list = cas_set_multicast,
4981 .ndo_do_ioctl = cas_ioctl,
4982 .ndo_tx_timeout = cas_tx_timeout,
4983 .ndo_change_mtu = cas_change_mtu,
4984 .ndo_set_mac_address = eth_mac_addr,
4985 .ndo_validate_addr = eth_validate_addr,
4986#ifdef CONFIG_NET_POLL_CONTROLLER
4987 .ndo_poll_controller = cas_netpoll,
4988#endif
4989};
4990
David S. Miller1f26dac2005-09-27 15:24:13 -07004991static int __devinit cas_init_one(struct pci_dev *pdev,
4992 const struct pci_device_id *ent)
4993{
4994 static int cas_version_printed = 0;
Marc Zyngier18e37f22006-04-13 11:38:20 +02004995 unsigned long casreg_len;
David S. Miller1f26dac2005-09-27 15:24:13 -07004996 struct net_device *dev;
4997 struct cas *cp;
4998 int i, err, pci_using_dac;
4999 u16 pci_cmd;
5000 u8 orig_cacheline_size = 0, cas_cacheline_size = 0;
5001
5002 if (cas_version_printed++ == 0)
5003 printk(KERN_INFO "%s", version);
5004
5005 err = pci_enable_device(pdev);
5006 if (err) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005007 dev_err(&pdev->dev, "Cannot enable PCI device, aborting.\n");
David S. Miller1f26dac2005-09-27 15:24:13 -07005008 return err;
5009 }
5010
5011 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005012 dev_err(&pdev->dev, "Cannot find proper PCI device "
David S. Miller1f26dac2005-09-27 15:24:13 -07005013 "base address, aborting.\n");
5014 err = -ENODEV;
5015 goto err_out_disable_pdev;
5016 }
5017
5018 dev = alloc_etherdev(sizeof(*cp));
5019 if (!dev) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005020 dev_err(&pdev->dev, "Etherdev alloc failed, aborting.\n");
David S. Miller1f26dac2005-09-27 15:24:13 -07005021 err = -ENOMEM;
5022 goto err_out_disable_pdev;
5023 }
David S. Miller1f26dac2005-09-27 15:24:13 -07005024 SET_NETDEV_DEV(dev, &pdev->dev);
5025
5026 err = pci_request_regions(pdev, dev->name);
5027 if (err) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005028 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting.\n");
David S. Miller1f26dac2005-09-27 15:24:13 -07005029 goto err_out_free_netdev;
5030 }
5031 pci_set_master(pdev);
5032
5033 /* we must always turn on parity response or else parity
5034 * doesn't get generated properly. disable SERR/PERR as well.
5035 * in addition, we want to turn MWI on.
5036 */
5037 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
5038 pci_cmd &= ~PCI_COMMAND_SERR;
5039 pci_cmd |= PCI_COMMAND_PARITY;
5040 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Randy Dunlap694625c2007-07-09 11:55:54 -07005041 if (pci_try_set_mwi(pdev))
David S. Miller4738d2f2007-05-24 20:59:26 -07005042 printk(KERN_WARNING PFX "Could not enable MWI for %s\n",
David S. Miller04efb872007-05-24 17:54:15 -07005043 pci_name(pdev));
5044
David S. Miller9e1848b2008-01-03 20:11:31 -08005045 cas_program_bridge(pdev);
5046
David S. Miller1f26dac2005-09-27 15:24:13 -07005047 /*
5048 * On some architectures, the default cache line size set
Randy Dunlap694625c2007-07-09 11:55:54 -07005049 * by pci_try_set_mwi reduces perforamnce. We have to increase
David S. Miller1f26dac2005-09-27 15:24:13 -07005050 * it for this case. To start, we'll print some configuration
5051 * data.
5052 */
5053#if 1
5054 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE,
5055 &orig_cacheline_size);
5056 if (orig_cacheline_size < CAS_PREF_CACHELINE_SIZE) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005057 cas_cacheline_size =
5058 (CAS_PREF_CACHELINE_SIZE < SMP_CACHE_BYTES) ?
David S. Miller1f26dac2005-09-27 15:24:13 -07005059 CAS_PREF_CACHELINE_SIZE : SMP_CACHE_BYTES;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005060 if (pci_write_config_byte(pdev,
5061 PCI_CACHE_LINE_SIZE,
David S. Miller1f26dac2005-09-27 15:24:13 -07005062 cas_cacheline_size)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005063 dev_err(&pdev->dev, "Could not set PCI cache "
David S. Miller1f26dac2005-09-27 15:24:13 -07005064 "line size\n");
5065 goto err_write_cacheline;
5066 }
5067 }
5068#endif
5069
5070
5071 /* Configure DMA attributes. */
Yang Hongyang6a355282009-04-06 19:01:13 -07005072 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
David S. Miller1f26dac2005-09-27 15:24:13 -07005073 pci_using_dac = 1;
5074 err = pci_set_consistent_dma_mask(pdev,
Yang Hongyang6a355282009-04-06 19:01:13 -07005075 DMA_BIT_MASK(64));
David S. Miller1f26dac2005-09-27 15:24:13 -07005076 if (err < 0) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005077 dev_err(&pdev->dev, "Unable to obtain 64-bit DMA "
David S. Miller1f26dac2005-09-27 15:24:13 -07005078 "for consistent allocations\n");
5079 goto err_out_free_res;
5080 }
5081
5082 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07005083 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
David S. Miller1f26dac2005-09-27 15:24:13 -07005084 if (err) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005085 dev_err(&pdev->dev, "No usable DMA configuration, "
David S. Miller1f26dac2005-09-27 15:24:13 -07005086 "aborting.\n");
5087 goto err_out_free_res;
5088 }
5089 pci_using_dac = 0;
5090 }
5091
David S. Miller1f26dac2005-09-27 15:24:13 -07005092 casreg_len = pci_resource_len(pdev, 0);
5093
5094 cp = netdev_priv(dev);
5095 cp->pdev = pdev;
5096#if 1
5097 /* A value of 0 indicates we never explicitly set it */
5098 cp->orig_cacheline_size = cas_cacheline_size ? orig_cacheline_size: 0;
5099#endif
5100 cp->dev = dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005101 cp->msg_enable = (cassini_debug < 0) ? CAS_DEF_MSG_ENABLE :
David S. Miller1f26dac2005-09-27 15:24:13 -07005102 cassini_debug;
5103
5104 cp->link_transition = LINK_TRANSITION_UNKNOWN;
5105 cp->link_transition_jiffies_valid = 0;
5106
5107 spin_lock_init(&cp->lock);
5108 spin_lock_init(&cp->rx_inuse_lock);
5109 spin_lock_init(&cp->rx_spare_lock);
5110 for (i = 0; i < N_TX_RINGS; i++) {
5111 spin_lock_init(&cp->stat_lock[i]);
5112 spin_lock_init(&cp->tx_lock[i]);
5113 }
5114 spin_lock_init(&cp->stat_lock[N_TX_RINGS]);
Ingo Molnar758df692006-03-20 22:34:09 -08005115 mutex_init(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07005116
5117 init_timer(&cp->link_timer);
5118 cp->link_timer.function = cas_link_timer;
5119 cp->link_timer.data = (unsigned long) cp;
5120
5121#if 1
5122 /* Just in case the implementation of atomic operations
5123 * change so that an explicit initialization is necessary.
5124 */
5125 atomic_set(&cp->reset_task_pending, 0);
5126 atomic_set(&cp->reset_task_pending_all, 0);
5127 atomic_set(&cp->reset_task_pending_spare, 0);
5128 atomic_set(&cp->reset_task_pending_mtu, 0);
5129#endif
David Howellsc4028952006-11-22 14:57:56 +00005130 INIT_WORK(&cp->reset_task, cas_reset_task);
David S. Miller1f26dac2005-09-27 15:24:13 -07005131
5132 /* Default link parameters */
5133 if (link_mode >= 0 && link_mode <= 6)
5134 cp->link_cntl = link_modes[link_mode];
5135 else
5136 cp->link_cntl = BMCR_ANENABLE;
5137 cp->lstate = link_down;
5138 cp->link_transition = LINK_TRANSITION_LINK_DOWN;
5139 netif_carrier_off(cp->dev);
5140 cp->timer_ticks = 0;
5141
5142 /* give us access to cassini registers */
Marc Zyngier18e37f22006-04-13 11:38:20 +02005143 cp->regs = pci_iomap(pdev, 0, casreg_len);
Al Viro79ea13c2008-01-24 02:06:46 -08005144 if (!cp->regs) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005145 dev_err(&pdev->dev, "Cannot map device registers, aborting.\n");
David S. Miller1f26dac2005-09-27 15:24:13 -07005146 goto err_out_free_res;
5147 }
5148 cp->casreg_len = casreg_len;
5149
5150 pci_save_state(pdev);
5151 cas_check_pci_invariants(cp);
5152 cas_hard_reset(cp);
5153 cas_reset(cp, 0);
5154 if (cas_check_invariants(cp))
5155 goto err_out_iounmap;
Jaswinder Singhfcaa4062008-09-22 19:27:10 -07005156 if (cp->cas_flags & CAS_FLAG_SATURN)
5157 if (cas_saturn_firmware_init(cp))
5158 goto err_out_iounmap;
David S. Miller1f26dac2005-09-27 15:24:13 -07005159
5160 cp->init_block = (struct cas_init_block *)
5161 pci_alloc_consistent(pdev, sizeof(struct cas_init_block),
5162 &cp->block_dvma);
5163 if (!cp->init_block) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005164 dev_err(&pdev->dev, "Cannot allocate init block, aborting.\n");
David S. Miller1f26dac2005-09-27 15:24:13 -07005165 goto err_out_iounmap;
5166 }
5167
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005168 for (i = 0; i < N_TX_RINGS; i++)
David S. Miller1f26dac2005-09-27 15:24:13 -07005169 cp->init_txds[i] = cp->init_block->txds[i];
5170
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005171 for (i = 0; i < N_RX_DESC_RINGS; i++)
David S. Miller1f26dac2005-09-27 15:24:13 -07005172 cp->init_rxds[i] = cp->init_block->rxds[i];
5173
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005174 for (i = 0; i < N_RX_COMP_RINGS; i++)
David S. Miller1f26dac2005-09-27 15:24:13 -07005175 cp->init_rxcs[i] = cp->init_block->rxcs[i];
5176
5177 for (i = 0; i < N_RX_FLOWS; i++)
5178 skb_queue_head_init(&cp->rx_flows[i]);
5179
Stephen Hemminger83d6f032009-01-07 17:25:41 -08005180 dev->netdev_ops = &cas_netdev_ops;
Al Viroa232f762005-10-03 14:01:37 -07005181 dev->ethtool_ops = &cas_ethtool_ops;
David S. Miller1f26dac2005-09-27 15:24:13 -07005182 dev->watchdog_timeo = CAS_TX_TIMEOUT;
Stephen Hemminger83d6f032009-01-07 17:25:41 -08005183
David S. Miller1f26dac2005-09-27 15:24:13 -07005184#ifdef USE_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005185 netif_napi_add(dev, &cp->napi, cas_poll, 64);
David S. Miller1f26dac2005-09-27 15:24:13 -07005186#endif
David S. Miller1f26dac2005-09-27 15:24:13 -07005187 dev->irq = pdev->irq;
5188 dev->dma = 0;
5189
5190 /* Cassini features. */
5191 if ((cp->cas_flags & CAS_FLAG_NO_HW_CSUM) == 0)
5192 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
5193
5194 if (pci_using_dac)
5195 dev->features |= NETIF_F_HIGHDMA;
5196
5197 if (register_netdev(dev)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04005198 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
David S. Miller1f26dac2005-09-27 15:24:13 -07005199 goto err_out_free_consistent;
5200 }
5201
5202 i = readl(cp->regs + REG_BIM_CFG);
5203 printk(KERN_INFO "%s: Sun Cassini%s (%sbit/%sMHz PCI/%s) "
Johannes Berge1749612008-10-27 15:59:26 -07005204 "Ethernet[%d] %pM\n", dev->name,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005205 (cp->cas_flags & CAS_FLAG_REG_PLUS) ? "+" : "",
David S. Miller1f26dac2005-09-27 15:24:13 -07005206 (i & BIM_CFG_32BIT) ? "32" : "64",
5207 (i & BIM_CFG_66MHZ) ? "66" : "33",
Joe Perches0795af52007-10-03 17:59:30 -07005208 (cp->phy_type == CAS_PHY_SERDES) ? "Fi" : "Cu", pdev->irq,
Johannes Berge1749612008-10-27 15:59:26 -07005209 dev->dev_addr);
David S. Miller1f26dac2005-09-27 15:24:13 -07005210
5211 pci_set_drvdata(pdev, dev);
5212 cp->hw_running = 1;
5213 cas_entropy_reset(cp);
5214 cas_phy_init(cp);
5215 cas_begin_auto_negotiation(cp, NULL);
5216 return 0;
5217
5218err_out_free_consistent:
5219 pci_free_consistent(pdev, sizeof(struct cas_init_block),
5220 cp->init_block, cp->block_dvma);
5221
5222err_out_iounmap:
Ingo Molnar758df692006-03-20 22:34:09 -08005223 mutex_lock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07005224 if (cp->hw_running)
5225 cas_shutdown(cp);
Ingo Molnar758df692006-03-20 22:34:09 -08005226 mutex_unlock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07005227
Marc Zyngier18e37f22006-04-13 11:38:20 +02005228 pci_iounmap(pdev, cp->regs);
David S. Miller1f26dac2005-09-27 15:24:13 -07005229
5230
5231err_out_free_res:
5232 pci_release_regions(pdev);
5233
5234err_write_cacheline:
5235 /* Try to restore it in case the error occured after we
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005236 * set it.
David S. Miller1f26dac2005-09-27 15:24:13 -07005237 */
5238 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, orig_cacheline_size);
5239
5240err_out_free_netdev:
5241 free_netdev(dev);
5242
5243err_out_disable_pdev:
5244 pci_disable_device(pdev);
5245 pci_set_drvdata(pdev, NULL);
5246 return -ENODEV;
5247}
5248
5249static void __devexit cas_remove_one(struct pci_dev *pdev)
5250{
5251 struct net_device *dev = pci_get_drvdata(pdev);
5252 struct cas *cp;
5253 if (!dev)
5254 return;
5255
5256 cp = netdev_priv(dev);
5257 unregister_netdev(dev);
5258
Jaswinder Singhfcaa4062008-09-22 19:27:10 -07005259 if (cp->fw_data)
5260 vfree(cp->fw_data);
5261
Ingo Molnar758df692006-03-20 22:34:09 -08005262 mutex_lock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07005263 flush_scheduled_work();
5264 if (cp->hw_running)
5265 cas_shutdown(cp);
Ingo Molnar758df692006-03-20 22:34:09 -08005266 mutex_unlock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07005267
5268#if 1
5269 if (cp->orig_cacheline_size) {
5270 /* Restore the cache line size if we had modified
5271 * it.
5272 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005273 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
David S. Miller1f26dac2005-09-27 15:24:13 -07005274 cp->orig_cacheline_size);
5275 }
5276#endif
5277 pci_free_consistent(pdev, sizeof(struct cas_init_block),
5278 cp->init_block, cp->block_dvma);
Marc Zyngier18e37f22006-04-13 11:38:20 +02005279 pci_iounmap(pdev, cp->regs);
David S. Miller1f26dac2005-09-27 15:24:13 -07005280 free_netdev(dev);
5281 pci_release_regions(pdev);
5282 pci_disable_device(pdev);
5283 pci_set_drvdata(pdev, NULL);
5284}
5285
5286#ifdef CONFIG_PM
Al Viro46d70312005-09-30 03:21:45 +01005287static int cas_suspend(struct pci_dev *pdev, pm_message_t state)
David S. Miller1f26dac2005-09-27 15:24:13 -07005288{
5289 struct net_device *dev = pci_get_drvdata(pdev);
5290 struct cas *cp = netdev_priv(dev);
5291 unsigned long flags;
5292
Ingo Molnar758df692006-03-20 22:34:09 -08005293 mutex_lock(&cp->pm_mutex);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005294
David S. Miller1f26dac2005-09-27 15:24:13 -07005295 /* If the driver is opened, we stop the DMA */
5296 if (cp->opened) {
5297 netif_device_detach(dev);
5298
5299 cas_lock_all_save(cp, flags);
5300
5301 /* We can set the second arg of cas_reset to 0
5302 * because on resume, we'll call cas_init_hw with
5303 * its second arg set so that autonegotiation is
5304 * restarted.
5305 */
5306 cas_reset(cp, 0);
5307 cas_clean_rings(cp);
5308 cas_unlock_all_restore(cp, flags);
5309 }
5310
5311 if (cp->hw_running)
5312 cas_shutdown(cp);
Ingo Molnar758df692006-03-20 22:34:09 -08005313 mutex_unlock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07005314
5315 return 0;
5316}
5317
5318static int cas_resume(struct pci_dev *pdev)
5319{
5320 struct net_device *dev = pci_get_drvdata(pdev);
5321 struct cas *cp = netdev_priv(dev);
5322
5323 printk(KERN_INFO "%s: resuming\n", dev->name);
5324
Ingo Molnar758df692006-03-20 22:34:09 -08005325 mutex_lock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07005326 cas_hard_reset(cp);
5327 if (cp->opened) {
5328 unsigned long flags;
5329 cas_lock_all_save(cp, flags);
5330 cas_reset(cp, 0);
5331 cp->hw_running = 1;
5332 cas_clean_rings(cp);
5333 cas_init_hw(cp, 1);
5334 cas_unlock_all_restore(cp, flags);
5335
5336 netif_device_attach(dev);
5337 }
Ingo Molnar758df692006-03-20 22:34:09 -08005338 mutex_unlock(&cp->pm_mutex);
David S. Miller1f26dac2005-09-27 15:24:13 -07005339 return 0;
5340}
5341#endif /* CONFIG_PM */
5342
5343static struct pci_driver cas_driver = {
5344 .name = DRV_MODULE_NAME,
5345 .id_table = cas_pci_tbl,
5346 .probe = cas_init_one,
5347 .remove = __devexit_p(cas_remove_one),
5348#ifdef CONFIG_PM
5349 .suspend = cas_suspend,
5350 .resume = cas_resume
5351#endif
5352};
5353
5354static int __init cas_init(void)
5355{
5356 if (linkdown_timeout > 0)
5357 link_transition_timeout = linkdown_timeout * HZ;
5358 else
5359 link_transition_timeout = 0;
5360
Jeff Garzik29917622006-08-19 17:48:59 -04005361 return pci_register_driver(&cas_driver);
David S. Miller1f26dac2005-09-27 15:24:13 -07005362}
5363
5364static void __exit cas_cleanup(void)
5365{
5366 pci_unregister_driver(&cas_driver);
5367}
5368
5369module_init(cas_init);
5370module_exit(cas_cleanup);