1 // SPDX-License-Identifier: GPL-2.0
2 /* sunhme.c: Sparc HME/BigMac 10/100baseT half/full duplex auto switching,
3 * auto carrier detecting ethernet driver. Also known as the
4 * "Happy Meal Ethernet" found on SunSwift SBUS cards.
6 * Copyright (C) 1996, 1998, 1999, 2002, 2003,
10 * 2000/11/11 Willy Tarreau <willy AT meta-x.org>
11 * - port to non-sparc architectures. Tested only on x86 and
12 * only currently works with QFE PCI cards.
13 * - ability to specify the MAC address at module load time by passing this
14 * argument : macaddr=0x00,0x10,0x20,0x30,0x40,0x50
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/types.h>
20 #include <linux/fcntl.h>
21 #include <linux/interrupt.h>
22 #include <linux/ioport.h>
24 #include <linux/slab.h>
25 #include <linux/string.h>
26 #include <linux/delay.h>
27 #include <linux/init.h>
28 #include <linux/ethtool.h>
29 #include <linux/mii.h>
30 #include <linux/crc32.h>
31 #include <linux/random.h>
32 #include <linux/errno.h>
33 #include <linux/netdevice.h>
34 #include <linux/etherdevice.h>
35 #include <linux/skbuff.h>
37 #include <linux/bitops.h>
38 #include <linux/dma-mapping.h>
42 #include <asm/byteorder.h>
46 #include <linux/of_device.h>
47 #include <asm/idprom.h>
48 #include <asm/openprom.h>
49 #include <asm/oplib.h>
51 #include <asm/auxio.h>
53 #include <linux/uaccess.h>
55 #include <asm/pgtable.h>
59 #include <linux/pci.h>
64 #define DRV_NAME "sunhme"
65 #define DRV_VERSION "3.10"
66 #define DRV_RELDATE "August 26, 2008"
69 static char version[] =
70 DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " " DRV_AUTHOR "\n";
72 MODULE_VERSION(DRV_VERSION);
73 MODULE_AUTHOR(DRV_AUTHOR);
74 MODULE_DESCRIPTION("Sun HappyMealEthernet(HME) 10/100baseT ethernet driver");
75 MODULE_LICENSE("GPL");
77 static int macaddr[6];
79 /* accept MAC address of the form macaddr=0x08,0x00,0x20,0x30,0x40,0x50 */
80 module_param_array(macaddr, int, NULL, 0);
81 MODULE_PARM_DESC(macaddr, "Happy Meal MAC address to set");
84 static struct quattro *qfe_sbus_list;
88 static struct quattro *qfe_pci_list;
98 struct hme_tx_logent {
102 #define TXLOG_ACTION_IRQ 0x01
103 #define TXLOG_ACTION_TXMIT 0x02
104 #define TXLOG_ACTION_TBUSY 0x04
105 #define TXLOG_ACTION_NBUFS 0x08
108 #define TX_LOG_LEN 128
109 static struct hme_tx_logent tx_log[TX_LOG_LEN];
110 static int txlog_cur_entry;
111 static __inline__ void tx_add_log(struct happy_meal *hp, unsigned int a, unsigned int s)
113 struct hme_tx_logent *tlp;
116 local_irq_save(flags);
117 tlp = &tx_log[txlog_cur_entry];
118 tlp->tstamp = (unsigned int)jiffies;
119 tlp->tx_new = hp->tx_new;
120 tlp->tx_old = hp->tx_old;
123 txlog_cur_entry = (txlog_cur_entry + 1) & (TX_LOG_LEN - 1);
124 local_irq_restore(flags);
126 static __inline__ void tx_dump_log(void)
130 this = txlog_cur_entry;
131 for (i = 0; i < TX_LOG_LEN; i++) {
132 printk("TXLOG[%d]: j[%08x] tx[N(%d)O(%d)] action[%08x] stat[%08x]\n", i,
134 tx_log[this].tx_new, tx_log[this].tx_old,
135 tx_log[this].action, tx_log[this].status);
136 this = (this + 1) & (TX_LOG_LEN - 1);
139 static __inline__ void tx_dump_ring(struct happy_meal *hp)
141 struct hmeal_init_block *hb = hp->happy_block;
142 struct happy_meal_txd *tp = &hb->happy_meal_txd[0];
145 for (i = 0; i < TX_RING_SIZE; i+=4) {
146 printk("TXD[%d..%d]: [%08x:%08x] [%08x:%08x] [%08x:%08x] [%08x:%08x]\n",
148 le32_to_cpu(tp[i].tx_flags), le32_to_cpu(tp[i].tx_addr),
149 le32_to_cpu(tp[i + 1].tx_flags), le32_to_cpu(tp[i + 1].tx_addr),
150 le32_to_cpu(tp[i + 2].tx_flags), le32_to_cpu(tp[i + 2].tx_addr),
151 le32_to_cpu(tp[i + 3].tx_flags), le32_to_cpu(tp[i + 3].tx_addr));
155 #define tx_add_log(hp, a, s) do { } while(0)
156 #define tx_dump_log() do { } while(0)
157 #define tx_dump_ring(hp) do { } while(0)
161 #define HMD(x) printk x
166 /* #define AUTO_SWITCH_DEBUG */
168 #ifdef AUTO_SWITCH_DEBUG
169 #define ASD(x) printk x
174 #define DEFAULT_IPG0 16 /* For lance-mode only */
175 #define DEFAULT_IPG1 8 /* For all modes */
176 #define DEFAULT_IPG2 4 /* For all modes */
177 #define DEFAULT_JAMSIZE 4 /* Toe jam */
179 /* NOTE: In the descriptor writes one _must_ write the address
180 * member _first_. The card must not be allowed to see
181 * the updated descriptor flags until the address is
182 * correct. I've added a write memory barrier between
183 * the two stores so that I can sleep well at night... -DaveM
186 #if defined(CONFIG_SBUS) && defined(CONFIG_PCI)
187 static void sbus_hme_write32(void __iomem *reg, u32 val)
189 sbus_writel(val, reg);
192 static u32 sbus_hme_read32(void __iomem *reg)
194 return sbus_readl(reg);
197 static void sbus_hme_write_rxd(struct happy_meal_rxd *rxd, u32 flags, u32 addr)
199 rxd->rx_addr = (__force hme32)addr;
201 rxd->rx_flags = (__force hme32)flags;
204 static void sbus_hme_write_txd(struct happy_meal_txd *txd, u32 flags, u32 addr)
206 txd->tx_addr = (__force hme32)addr;
208 txd->tx_flags = (__force hme32)flags;
211 static u32 sbus_hme_read_desc32(hme32 *p)
213 return (__force u32)*p;
216 static void pci_hme_write32(void __iomem *reg, u32 val)
221 static u32 pci_hme_read32(void __iomem *reg)
226 static void pci_hme_write_rxd(struct happy_meal_rxd *rxd, u32 flags, u32 addr)
228 rxd->rx_addr = (__force hme32)cpu_to_le32(addr);
230 rxd->rx_flags = (__force hme32)cpu_to_le32(flags);
233 static void pci_hme_write_txd(struct happy_meal_txd *txd, u32 flags, u32 addr)
235 txd->tx_addr = (__force hme32)cpu_to_le32(addr);
237 txd->tx_flags = (__force hme32)cpu_to_le32(flags);
240 static u32 pci_hme_read_desc32(hme32 *p)
242 return le32_to_cpup((__le32 *)p);
245 #define hme_write32(__hp, __reg, __val) \
246 ((__hp)->write32((__reg), (__val)))
247 #define hme_read32(__hp, __reg) \
248 ((__hp)->read32(__reg))
249 #define hme_write_rxd(__hp, __rxd, __flags, __addr) \
250 ((__hp)->write_rxd((__rxd), (__flags), (__addr)))
251 #define hme_write_txd(__hp, __txd, __flags, __addr) \
252 ((__hp)->write_txd((__txd), (__flags), (__addr)))
253 #define hme_read_desc32(__hp, __p) \
254 ((__hp)->read_desc32(__p))
255 #define hme_dma_map(__hp, __ptr, __size, __dir) \
256 ((__hp)->dma_map((__hp)->dma_dev, (__ptr), (__size), (__dir)))
257 #define hme_dma_unmap(__hp, __addr, __size, __dir) \
258 ((__hp)->dma_unmap((__hp)->dma_dev, (__addr), (__size), (__dir)))
259 #define hme_dma_sync_for_cpu(__hp, __addr, __size, __dir) \
260 ((__hp)->dma_sync_for_cpu((__hp)->dma_dev, (__addr), (__size), (__dir)))
261 #define hme_dma_sync_for_device(__hp, __addr, __size, __dir) \
262 ((__hp)->dma_sync_for_device((__hp)->dma_dev, (__addr), (__size), (__dir)))
265 /* SBUS only compilation */
266 #define hme_write32(__hp, __reg, __val) \
267 sbus_writel((__val), (__reg))
268 #define hme_read32(__hp, __reg) \
270 #define hme_write_rxd(__hp, __rxd, __flags, __addr) \
271 do { (__rxd)->rx_addr = (__force hme32)(u32)(__addr); \
273 (__rxd)->rx_flags = (__force hme32)(u32)(__flags); \
275 #define hme_write_txd(__hp, __txd, __flags, __addr) \
276 do { (__txd)->tx_addr = (__force hme32)(u32)(__addr); \
278 (__txd)->tx_flags = (__force hme32)(u32)(__flags); \
280 #define hme_read_desc32(__hp, __p) ((__force u32)(hme32)*(__p))
281 #define hme_dma_map(__hp, __ptr, __size, __dir) \
282 dma_map_single((__hp)->dma_dev, (__ptr), (__size), (__dir))
283 #define hme_dma_unmap(__hp, __addr, __size, __dir) \
284 dma_unmap_single((__hp)->dma_dev, (__addr), (__size), (__dir))
285 #define hme_dma_sync_for_cpu(__hp, __addr, __size, __dir) \
286 dma_dma_sync_single_for_cpu((__hp)->dma_dev, (__addr), (__size), (__dir))
287 #define hme_dma_sync_for_device(__hp, __addr, __size, __dir) \
288 dma_dma_sync_single_for_device((__hp)->dma_dev, (__addr), (__size), (__dir))
290 /* PCI only compilation */
291 #define hme_write32(__hp, __reg, __val) \
292 writel((__val), (__reg))
293 #define hme_read32(__hp, __reg) \
295 #define hme_write_rxd(__hp, __rxd, __flags, __addr) \
296 do { (__rxd)->rx_addr = (__force hme32)cpu_to_le32(__addr); \
298 (__rxd)->rx_flags = (__force hme32)cpu_to_le32(__flags); \
300 #define hme_write_txd(__hp, __txd, __flags, __addr) \
301 do { (__txd)->tx_addr = (__force hme32)cpu_to_le32(__addr); \
303 (__txd)->tx_flags = (__force hme32)cpu_to_le32(__flags); \
305 static inline u32 hme_read_desc32(struct happy_meal *hp, hme32 *p)
307 return le32_to_cpup((__le32 *)p);
309 #define hme_dma_map(__hp, __ptr, __size, __dir) \
310 pci_map_single((__hp)->dma_dev, (__ptr), (__size), (__dir))
311 #define hme_dma_unmap(__hp, __addr, __size, __dir) \
312 pci_unmap_single((__hp)->dma_dev, (__addr), (__size), (__dir))
313 #define hme_dma_sync_for_cpu(__hp, __addr, __size, __dir) \
314 pci_dma_sync_single_for_cpu((__hp)->dma_dev, (__addr), (__size), (__dir))
315 #define hme_dma_sync_for_device(__hp, __addr, __size, __dir) \
316 pci_dma_sync_single_for_device((__hp)->dma_dev, (__addr), (__size), (__dir))
321 /* Oh yes, the MIF BitBang is mighty fun to program. BitBucket is more like it. */
322 static void BB_PUT_BIT(struct happy_meal *hp, void __iomem *tregs, int bit)
324 hme_write32(hp, tregs + TCVR_BBDATA, bit);
325 hme_write32(hp, tregs + TCVR_BBCLOCK, 0);
326 hme_write32(hp, tregs + TCVR_BBCLOCK, 1);
330 static u32 BB_GET_BIT(struct happy_meal *hp, void __iomem *tregs, int internal)
334 hme_write32(hp, tregs + TCVR_BBCLOCK, 0);
335 hme_write32(hp, tregs + TCVR_BBCLOCK, 1);
336 ret = hme_read32(hp, tregs + TCVR_CFG);
338 ret &= TCV_CFG_MDIO0;
340 ret &= TCV_CFG_MDIO1;
346 static u32 BB_GET_BIT2(struct happy_meal *hp, void __iomem *tregs, int internal)
350 hme_write32(hp, tregs + TCVR_BBCLOCK, 0);
352 retval = hme_read32(hp, tregs + TCVR_CFG);
354 retval &= TCV_CFG_MDIO0;
356 retval &= TCV_CFG_MDIO1;
357 hme_write32(hp, tregs + TCVR_BBCLOCK, 1);
362 #define TCVR_FAILURE 0x80000000 /* Impossible MIF read value */
364 static int happy_meal_bb_read(struct happy_meal *hp,
365 void __iomem *tregs, int reg)
371 ASD(("happy_meal_bb_read: reg=%d ", reg));
373 /* Enable the MIF BitBang outputs. */
374 hme_write32(hp, tregs + TCVR_BBOENAB, 1);
376 /* Force BitBang into the idle state. */
377 for (i = 0; i < 32; i++)
378 BB_PUT_BIT(hp, tregs, 1);
380 /* Give it the read sequence. */
381 BB_PUT_BIT(hp, tregs, 0);
382 BB_PUT_BIT(hp, tregs, 1);
383 BB_PUT_BIT(hp, tregs, 1);
384 BB_PUT_BIT(hp, tregs, 0);
386 /* Give it the PHY address. */
387 tmp = hp->paddr & 0xff;
388 for (i = 4; i >= 0; i--)
389 BB_PUT_BIT(hp, tregs, ((tmp >> i) & 1));
391 /* Tell it what register we want to read. */
393 for (i = 4; i >= 0; i--)
394 BB_PUT_BIT(hp, tregs, ((tmp >> i) & 1));
396 /* Close down the MIF BitBang outputs. */
397 hme_write32(hp, tregs + TCVR_BBOENAB, 0);
399 /* Now read in the value. */
400 (void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal));
401 for (i = 15; i >= 0; i--)
402 retval |= BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal));
403 (void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal));
404 (void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal));
405 (void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal));
406 ASD(("value=%x\n", retval));
410 static void happy_meal_bb_write(struct happy_meal *hp,
411 void __iomem *tregs, int reg,
412 unsigned short value)
417 ASD(("happy_meal_bb_write: reg=%d value=%x\n", reg, value));
419 /* Enable the MIF BitBang outputs. */
420 hme_write32(hp, tregs + TCVR_BBOENAB, 1);
422 /* Force BitBang into the idle state. */
423 for (i = 0; i < 32; i++)
424 BB_PUT_BIT(hp, tregs, 1);
426 /* Give it write sequence. */
427 BB_PUT_BIT(hp, tregs, 0);
428 BB_PUT_BIT(hp, tregs, 1);
429 BB_PUT_BIT(hp, tregs, 0);
430 BB_PUT_BIT(hp, tregs, 1);
432 /* Give it the PHY address. */
433 tmp = (hp->paddr & 0xff);
434 for (i = 4; i >= 0; i--)
435 BB_PUT_BIT(hp, tregs, ((tmp >> i) & 1));
437 /* Tell it what register we will be writing. */
439 for (i = 4; i >= 0; i--)
440 BB_PUT_BIT(hp, tregs, ((tmp >> i) & 1));
442 /* Tell it to become ready for the bits. */
443 BB_PUT_BIT(hp, tregs, 1);
444 BB_PUT_BIT(hp, tregs, 0);
446 for (i = 15; i >= 0; i--)
447 BB_PUT_BIT(hp, tregs, ((value >> i) & 1));
449 /* Close down the MIF BitBang outputs. */
450 hme_write32(hp, tregs + TCVR_BBOENAB, 0);
453 #define TCVR_READ_TRIES 16
455 static int happy_meal_tcvr_read(struct happy_meal *hp,
456 void __iomem *tregs, int reg)
458 int tries = TCVR_READ_TRIES;
461 ASD(("happy_meal_tcvr_read: reg=0x%02x ", reg));
462 if (hp->tcvr_type == none) {
463 ASD(("no transceiver, value=TCVR_FAILURE\n"));
467 if (!(hp->happy_flags & HFLAG_FENABLE)) {
468 ASD(("doing bit bang\n"));
469 return happy_meal_bb_read(hp, tregs, reg);
472 hme_write32(hp, tregs + TCVR_FRAME,
473 (FRAME_READ | (hp->paddr << 23) | ((reg & 0xff) << 18)));
474 while (!(hme_read32(hp, tregs + TCVR_FRAME) & 0x10000) && --tries)
477 printk(KERN_ERR "happy meal: Aieee, transceiver MIF read bolixed\n");
480 retval = hme_read32(hp, tregs + TCVR_FRAME) & 0xffff;
481 ASD(("value=%04x\n", retval));
485 #define TCVR_WRITE_TRIES 16
487 static void happy_meal_tcvr_write(struct happy_meal *hp,
488 void __iomem *tregs, int reg,
489 unsigned short value)
491 int tries = TCVR_WRITE_TRIES;
493 ASD(("happy_meal_tcvr_write: reg=0x%02x value=%04x\n", reg, value));
495 /* Welcome to Sun Microsystems, can I take your order please? */
496 if (!(hp->happy_flags & HFLAG_FENABLE)) {
497 happy_meal_bb_write(hp, tregs, reg, value);
501 /* Would you like fries with that? */
502 hme_write32(hp, tregs + TCVR_FRAME,
503 (FRAME_WRITE | (hp->paddr << 23) |
504 ((reg & 0xff) << 18) | (value & 0xffff)));
505 while (!(hme_read32(hp, tregs + TCVR_FRAME) & 0x10000) && --tries)
510 printk(KERN_ERR "happy meal: Aieee, transceiver MIF write bolixed\n");
512 /* Fifty-two cents is your change, have a nice day. */
515 /* Auto negotiation. The scheme is very simple. We have a timer routine
516 * that keeps watching the auto negotiation process as it progresses.
517 * The DP83840 is first told to start doing it's thing, we set up the time
518 * and place the timer state machine in it's initial state.
520 * Here the timer peeks at the DP83840 status registers at each click to see
521 * if the auto negotiation has completed, we assume here that the DP83840 PHY
522 * will time out at some point and just tell us what (didn't) happen. For
523 * complete coverage we only allow so many of the ticks at this level to run,
524 * when this has expired we print a warning message and try another strategy.
525 * This "other" strategy is to force the interface into various speed/duplex
526 * configurations and we stop when we see a link-up condition before the
527 * maximum number of "peek" ticks have occurred.
529 * Once a valid link status has been detected we configure the BigMAC and
530 * the rest of the Happy Meal to speak the most efficient protocol we could
531 * get a clean link for. The priority for link configurations, highest first
533 * 100 Base-T Full Duplex
534 * 100 Base-T Half Duplex
535 * 10 Base-T Full Duplex
536 * 10 Base-T Half Duplex
538 * We start a new timer now, after a successful auto negotiation status has
539 * been detected. This timer just waits for the link-up bit to get set in
540 * the BMCR of the DP83840. When this occurs we print a kernel log message
541 * describing the link type in use and the fact that it is up.
543 * If a fatal error of some sort is signalled and detected in the interrupt
544 * service routine, and the chip is reset, or the link is ifconfig'd down
545 * and then back up, this entire process repeats itself all over again.
547 static int try_next_permutation(struct happy_meal *hp, void __iomem *tregs)
549 hp->sw_bmcr = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
551 /* Downgrade from full to half duplex. Only possible
554 if (hp->sw_bmcr & BMCR_FULLDPLX) {
555 hp->sw_bmcr &= ~(BMCR_FULLDPLX);
556 happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
560 /* Downgrade from 100 to 10. */
561 if (hp->sw_bmcr & BMCR_SPEED100) {
562 hp->sw_bmcr &= ~(BMCR_SPEED100);
563 happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
567 /* We've tried everything. */
571 static void display_link_mode(struct happy_meal *hp, void __iomem *tregs)
573 printk(KERN_INFO "%s: Link is up using ", hp->dev->name);
574 if (hp->tcvr_type == external)
578 printk("transceiver at ");
579 hp->sw_lpa = happy_meal_tcvr_read(hp, tregs, MII_LPA);
580 if (hp->sw_lpa & (LPA_100HALF | LPA_100FULL)) {
581 if (hp->sw_lpa & LPA_100FULL)
582 printk("100Mb/s, Full Duplex.\n");
584 printk("100Mb/s, Half Duplex.\n");
586 if (hp->sw_lpa & LPA_10FULL)
587 printk("10Mb/s, Full Duplex.\n");
589 printk("10Mb/s, Half Duplex.\n");
593 static void display_forced_link_mode(struct happy_meal *hp, void __iomem *tregs)
595 printk(KERN_INFO "%s: Link has been forced up using ", hp->dev->name);
596 if (hp->tcvr_type == external)
600 printk("transceiver at ");
601 hp->sw_bmcr = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
602 if (hp->sw_bmcr & BMCR_SPEED100)
606 if (hp->sw_bmcr & BMCR_FULLDPLX)
607 printk("Full Duplex.\n");
609 printk("Half Duplex.\n");
612 static int set_happy_link_modes(struct happy_meal *hp, void __iomem *tregs)
616 /* All we care about is making sure the bigmac tx_cfg has a
617 * proper duplex setting.
619 if (hp->timer_state == arbwait) {
620 hp->sw_lpa = happy_meal_tcvr_read(hp, tregs, MII_LPA);
621 if (!(hp->sw_lpa & (LPA_10HALF | LPA_10FULL | LPA_100HALF | LPA_100FULL)))
623 if (hp->sw_lpa & LPA_100FULL)
625 else if (hp->sw_lpa & LPA_100HALF)
627 else if (hp->sw_lpa & LPA_10FULL)
632 /* Forcing a link mode. */
633 hp->sw_bmcr = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
634 if (hp->sw_bmcr & BMCR_FULLDPLX)
640 /* Before changing other bits in the tx_cfg register, and in
641 * general any of other the TX config registers too, you
644 * 2) Poll with reads until that bit reads back as zero
645 * 3) Make TX configuration changes
646 * 4) Set Enable once more
648 hme_write32(hp, hp->bigmacregs + BMAC_TXCFG,
649 hme_read32(hp, hp->bigmacregs + BMAC_TXCFG) &
650 ~(BIGMAC_TXCFG_ENABLE));
651 while (hme_read32(hp, hp->bigmacregs + BMAC_TXCFG) & BIGMAC_TXCFG_ENABLE)
654 hp->happy_flags |= HFLAG_FULL;
655 hme_write32(hp, hp->bigmacregs + BMAC_TXCFG,
656 hme_read32(hp, hp->bigmacregs + BMAC_TXCFG) |
657 BIGMAC_TXCFG_FULLDPLX);
659 hp->happy_flags &= ~(HFLAG_FULL);
660 hme_write32(hp, hp->bigmacregs + BMAC_TXCFG,
661 hme_read32(hp, hp->bigmacregs + BMAC_TXCFG) &
662 ~(BIGMAC_TXCFG_FULLDPLX));
664 hme_write32(hp, hp->bigmacregs + BMAC_TXCFG,
665 hme_read32(hp, hp->bigmacregs + BMAC_TXCFG) |
666 BIGMAC_TXCFG_ENABLE);
672 static int happy_meal_init(struct happy_meal *hp);
674 static int is_lucent_phy(struct happy_meal *hp)
676 void __iomem *tregs = hp->tcvregs;
677 unsigned short mr2, mr3;
680 mr2 = happy_meal_tcvr_read(hp, tregs, 2);
681 mr3 = happy_meal_tcvr_read(hp, tregs, 3);
682 if ((mr2 & 0xffff) == 0x0180 &&
683 ((mr3 & 0xffff) >> 10) == 0x1d)
689 static void happy_meal_timer(struct timer_list *t)
691 struct happy_meal *hp = from_timer(hp, t, happy_timer);
692 void __iomem *tregs = hp->tcvregs;
693 int restart_timer = 0;
695 spin_lock_irq(&hp->happy_lock);
698 switch(hp->timer_state) {
700 /* Only allow for 5 ticks, thats 10 seconds and much too
701 * long to wait for arbitration to complete.
703 if (hp->timer_ticks >= 10) {
704 /* Enter force mode. */
706 hp->sw_bmcr = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
707 printk(KERN_NOTICE "%s: Auto-Negotiation unsuccessful, trying force link mode\n",
709 hp->sw_bmcr = BMCR_SPEED100;
710 happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
712 if (!is_lucent_phy(hp)) {
713 /* OK, seems we need do disable the transceiver for the first
714 * tick to make sure we get an accurate link state at the
717 hp->sw_csconfig = happy_meal_tcvr_read(hp, tregs, DP83840_CSCONFIG);
718 hp->sw_csconfig &= ~(CSCONFIG_TCVDISAB);
719 happy_meal_tcvr_write(hp, tregs, DP83840_CSCONFIG, hp->sw_csconfig);
721 hp->timer_state = ltrywait;
725 /* Anything interesting happen? */
726 hp->sw_bmsr = happy_meal_tcvr_read(hp, tregs, MII_BMSR);
727 if (hp->sw_bmsr & BMSR_ANEGCOMPLETE) {
730 /* Just what we've been waiting for... */
731 ret = set_happy_link_modes(hp, tregs);
733 /* Ooops, something bad happened, go to force
736 * XXX Broken hubs which don't support 802.3u
737 * XXX auto-negotiation make this happen as well.
742 /* Success, at least so far, advance our state engine. */
743 hp->timer_state = lupwait;
752 /* Auto negotiation was successful and we are awaiting a
753 * link up status. I have decided to let this timer run
754 * forever until some sort of error is signalled, reporting
755 * a message to the user at 10 second intervals.
757 hp->sw_bmsr = happy_meal_tcvr_read(hp, tregs, MII_BMSR);
758 if (hp->sw_bmsr & BMSR_LSTATUS) {
759 /* Wheee, it's up, display the link mode in use and put
760 * the timer to sleep.
762 display_link_mode(hp, tregs);
763 hp->timer_state = asleep;
766 if (hp->timer_ticks >= 10) {
767 printk(KERN_NOTICE "%s: Auto negotiation successful, link still "
768 "not completely up.\n", hp->dev->name);
778 /* Making the timeout here too long can make it take
779 * annoyingly long to attempt all of the link mode
780 * permutations, but then again this is essentially
781 * error recovery code for the most part.
783 hp->sw_bmsr = happy_meal_tcvr_read(hp, tregs, MII_BMSR);
784 hp->sw_csconfig = happy_meal_tcvr_read(hp, tregs, DP83840_CSCONFIG);
785 if (hp->timer_ticks == 1) {
786 if (!is_lucent_phy(hp)) {
787 /* Re-enable transceiver, we'll re-enable the transceiver next
788 * tick, then check link state on the following tick.
790 hp->sw_csconfig |= CSCONFIG_TCVDISAB;
791 happy_meal_tcvr_write(hp, tregs,
792 DP83840_CSCONFIG, hp->sw_csconfig);
797 if (hp->timer_ticks == 2) {
798 if (!is_lucent_phy(hp)) {
799 hp->sw_csconfig &= ~(CSCONFIG_TCVDISAB);
800 happy_meal_tcvr_write(hp, tregs,
801 DP83840_CSCONFIG, hp->sw_csconfig);
806 if (hp->sw_bmsr & BMSR_LSTATUS) {
807 /* Force mode selection success. */
808 display_forced_link_mode(hp, tregs);
809 set_happy_link_modes(hp, tregs); /* XXX error? then what? */
810 hp->timer_state = asleep;
813 if (hp->timer_ticks >= 4) { /* 6 seconds or so... */
816 ret = try_next_permutation(hp, tregs);
818 /* Aieee, tried them all, reset the
819 * chip and try all over again.
822 /* Let the user know... */
823 printk(KERN_NOTICE "%s: Link down, cable problem?\n",
826 ret = happy_meal_init(hp);
829 printk(KERN_ERR "%s: Error, cannot re-init the "
830 "Happy Meal.\n", hp->dev->name);
834 if (!is_lucent_phy(hp)) {
835 hp->sw_csconfig = happy_meal_tcvr_read(hp, tregs,
837 hp->sw_csconfig |= CSCONFIG_TCVDISAB;
838 happy_meal_tcvr_write(hp, tregs,
839 DP83840_CSCONFIG, hp->sw_csconfig);
851 /* Can't happens.... */
852 printk(KERN_ERR "%s: Aieee, link timer is asleep but we got one anyways!\n",
856 hp->timer_state = asleep; /* foo on you */
861 hp->happy_timer.expires = jiffies + ((12 * HZ)/10); /* 1.2 sec. */
862 add_timer(&hp->happy_timer);
866 spin_unlock_irq(&hp->happy_lock);
869 #define TX_RESET_TRIES 32
870 #define RX_RESET_TRIES 32
872 /* hp->happy_lock must be held */
873 static void happy_meal_tx_reset(struct happy_meal *hp, void __iomem *bregs)
875 int tries = TX_RESET_TRIES;
877 HMD(("happy_meal_tx_reset: reset, "));
879 /* Would you like to try our SMCC Delux? */
880 hme_write32(hp, bregs + BMAC_TXSWRESET, 0);
881 while ((hme_read32(hp, bregs + BMAC_TXSWRESET) & 1) && --tries)
884 /* Lettuce, tomato, buggy hardware (no extra charge)? */
886 printk(KERN_ERR "happy meal: Transceiver BigMac ATTACK!");
892 /* hp->happy_lock must be held */
893 static void happy_meal_rx_reset(struct happy_meal *hp, void __iomem *bregs)
895 int tries = RX_RESET_TRIES;
897 HMD(("happy_meal_rx_reset: reset, "));
899 /* We have a special on GNU/Viking hardware bugs today. */
900 hme_write32(hp, bregs + BMAC_RXSWRESET, 0);
901 while ((hme_read32(hp, bregs + BMAC_RXSWRESET) & 1) && --tries)
904 /* Will that be all? */
906 printk(KERN_ERR "happy meal: Receiver BigMac ATTACK!");
908 /* Don't forget your vik_1137125_wa. Have a nice day. */
912 #define STOP_TRIES 16
914 /* hp->happy_lock must be held */
915 static void happy_meal_stop(struct happy_meal *hp, void __iomem *gregs)
917 int tries = STOP_TRIES;
919 HMD(("happy_meal_stop: reset, "));
921 /* We're consolidating our STB products, it's your lucky day. */
922 hme_write32(hp, gregs + GREG_SWRESET, GREG_RESET_ALL);
923 while (hme_read32(hp, gregs + GREG_SWRESET) && --tries)
926 /* Come back next week when we are "Sun Microelectronics". */
928 printk(KERN_ERR "happy meal: Fry guys.");
930 /* Remember: "Different name, same old buggy as shit hardware." */
934 /* hp->happy_lock must be held */
935 static void happy_meal_get_counters(struct happy_meal *hp, void __iomem *bregs)
937 struct net_device_stats *stats = &hp->dev->stats;
939 stats->rx_crc_errors += hme_read32(hp, bregs + BMAC_RCRCECTR);
940 hme_write32(hp, bregs + BMAC_RCRCECTR, 0);
942 stats->rx_frame_errors += hme_read32(hp, bregs + BMAC_UNALECTR);
943 hme_write32(hp, bregs + BMAC_UNALECTR, 0);
945 stats->rx_length_errors += hme_read32(hp, bregs + BMAC_GLECTR);
946 hme_write32(hp, bregs + BMAC_GLECTR, 0);
948 stats->tx_aborted_errors += hme_read32(hp, bregs + BMAC_EXCTR);
951 (hme_read32(hp, bregs + BMAC_EXCTR) +
952 hme_read32(hp, bregs + BMAC_LTCTR));
953 hme_write32(hp, bregs + BMAC_EXCTR, 0);
954 hme_write32(hp, bregs + BMAC_LTCTR, 0);
957 /* hp->happy_lock must be held */
958 static void happy_meal_poll_stop(struct happy_meal *hp, void __iomem *tregs)
960 ASD(("happy_meal_poll_stop: "));
962 /* If polling disabled or not polling already, nothing to do. */
963 if ((hp->happy_flags & (HFLAG_POLLENABLE | HFLAG_POLL)) !=
964 (HFLAG_POLLENABLE | HFLAG_POLL)) {
965 HMD(("not polling, return\n"));
969 /* Shut up the MIF. */
970 ASD(("were polling, mif ints off, "));
971 hme_write32(hp, tregs + TCVR_IMASK, 0xffff);
973 /* Turn off polling. */
974 ASD(("polling off, "));
975 hme_write32(hp, tregs + TCVR_CFG,
976 hme_read32(hp, tregs + TCVR_CFG) & ~(TCV_CFG_PENABLE));
978 /* We are no longer polling. */
979 hp->happy_flags &= ~(HFLAG_POLL);
981 /* Let the bits set. */
986 /* Only Sun can take such nice parts and fuck up the programming interface
987 * like this. Good job guys...
989 #define TCVR_RESET_TRIES 16 /* It should reset quickly */
990 #define TCVR_UNISOLATE_TRIES 32 /* Dis-isolation can take longer. */
992 /* hp->happy_lock must be held */
993 static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs)
996 int result, tries = TCVR_RESET_TRIES;
998 tconfig = hme_read32(hp, tregs + TCVR_CFG);
999 ASD(("happy_meal_tcvr_reset: tcfg<%08lx> ", tconfig));
1000 if (hp->tcvr_type == external) {
1002 hme_write32(hp, tregs + TCVR_CFG, tconfig & ~(TCV_CFG_PSELECT));
1003 hp->tcvr_type = internal;
1004 hp->paddr = TCV_PADDR_ITX;
1006 happy_meal_tcvr_write(hp, tregs, MII_BMCR,
1007 (BMCR_LOOPBACK|BMCR_PDOWN|BMCR_ISOLATE));
1008 result = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
1009 if (result == TCVR_FAILURE) {
1010 ASD(("phyread_fail>\n"));
1013 ASD(("phyread_ok,PSELECT>"));
1014 hme_write32(hp, tregs + TCVR_CFG, tconfig | TCV_CFG_PSELECT);
1015 hp->tcvr_type = external;
1016 hp->paddr = TCV_PADDR_ETX;
1018 if (tconfig & TCV_CFG_MDIO1) {
1019 ASD(("internal<PSELECT,"));
1020 hme_write32(hp, tregs + TCVR_CFG, (tconfig | TCV_CFG_PSELECT));
1022 happy_meal_tcvr_write(hp, tregs, MII_BMCR,
1023 (BMCR_LOOPBACK|BMCR_PDOWN|BMCR_ISOLATE));
1024 result = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
1025 if (result == TCVR_FAILURE) {
1026 ASD(("phyread_fail>\n"));
1029 ASD(("phyread_ok,~PSELECT>"));
1030 hme_write32(hp, tregs + TCVR_CFG, (tconfig & ~(TCV_CFG_PSELECT)));
1031 hp->tcvr_type = internal;
1032 hp->paddr = TCV_PADDR_ITX;
1036 ASD(("BMCR_RESET "));
1037 happy_meal_tcvr_write(hp, tregs, MII_BMCR, BMCR_RESET);
1040 result = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
1041 if (result == TCVR_FAILURE)
1043 hp->sw_bmcr = result;
1044 if (!(result & BMCR_RESET))
1049 ASD(("BMCR RESET FAILED!\n"));
1052 ASD(("RESET_OK\n"));
1054 /* Get fresh copies of the PHY registers. */
1055 hp->sw_bmsr = happy_meal_tcvr_read(hp, tregs, MII_BMSR);
1056 hp->sw_physid1 = happy_meal_tcvr_read(hp, tregs, MII_PHYSID1);
1057 hp->sw_physid2 = happy_meal_tcvr_read(hp, tregs, MII_PHYSID2);
1058 hp->sw_advertise = happy_meal_tcvr_read(hp, tregs, MII_ADVERTISE);
1061 hp->sw_bmcr &= ~(BMCR_ISOLATE);
1062 happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
1064 tries = TCVR_UNISOLATE_TRIES;
1066 result = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
1067 if (result == TCVR_FAILURE)
1069 if (!(result & BMCR_ISOLATE))
1074 ASD((" FAILED!\n"));
1077 ASD((" SUCCESS and CSCONFIG_DFBYPASS\n"));
1078 if (!is_lucent_phy(hp)) {
1079 result = happy_meal_tcvr_read(hp, tregs,
1081 happy_meal_tcvr_write(hp, tregs,
1082 DP83840_CSCONFIG, (result | CSCONFIG_DFBYPASS));
1087 /* Figure out whether we have an internal or external transceiver.
1089 * hp->happy_lock must be held
1091 static void happy_meal_transceiver_check(struct happy_meal *hp, void __iomem *tregs)
1093 unsigned long tconfig = hme_read32(hp, tregs + TCVR_CFG);
1095 ASD(("happy_meal_transceiver_check: tcfg=%08lx ", tconfig));
1096 if (hp->happy_flags & HFLAG_POLL) {
1097 /* If we are polling, we must stop to get the transceiver type. */
1098 ASD(("<polling> "));
1099 if (hp->tcvr_type == internal) {
1100 if (tconfig & TCV_CFG_MDIO1) {
1101 ASD(("<internal> <poll stop> "));
1102 happy_meal_poll_stop(hp, tregs);
1103 hp->paddr = TCV_PADDR_ETX;
1104 hp->tcvr_type = external;
1105 ASD(("<external>\n"));
1106 tconfig &= ~(TCV_CFG_PENABLE);
1107 tconfig |= TCV_CFG_PSELECT;
1108 hme_write32(hp, tregs + TCVR_CFG, tconfig);
1111 if (hp->tcvr_type == external) {
1112 ASD(("<external> "));
1113 if (!(hme_read32(hp, tregs + TCVR_STATUS) >> 16)) {
1114 ASD(("<poll stop> "));
1115 happy_meal_poll_stop(hp, tregs);
1116 hp->paddr = TCV_PADDR_ITX;
1117 hp->tcvr_type = internal;
1118 ASD(("<internal>\n"));
1119 hme_write32(hp, tregs + TCVR_CFG,
1120 hme_read32(hp, tregs + TCVR_CFG) &
1121 ~(TCV_CFG_PSELECT));
1129 u32 reread = hme_read32(hp, tregs + TCVR_CFG);
1131 /* Else we can just work off of the MDIO bits. */
1132 ASD(("<not polling> "));
1133 if (reread & TCV_CFG_MDIO1) {
1134 hme_write32(hp, tregs + TCVR_CFG, tconfig | TCV_CFG_PSELECT);
1135 hp->paddr = TCV_PADDR_ETX;
1136 hp->tcvr_type = external;
1137 ASD(("<external>\n"));
1139 if (reread & TCV_CFG_MDIO0) {
1140 hme_write32(hp, tregs + TCVR_CFG,
1141 tconfig & ~(TCV_CFG_PSELECT));
1142 hp->paddr = TCV_PADDR_ITX;
1143 hp->tcvr_type = internal;
1144 ASD(("<internal>\n"));
1146 printk(KERN_ERR "happy meal: Transceiver and a coke please.");
1147 hp->tcvr_type = none; /* Grrr... */
1154 /* The receive ring buffers are a bit tricky to get right. Here goes...
1156 * The buffers we dma into must be 64 byte aligned. So we use a special
1157 * alloc_skb() routine for the happy meal to allocate 64 bytes more than
1160 * We use skb_reserve() to align the data block we get in the skb. We
1161 * also program the etxregs->cfg register to use an offset of 2. This
1162 * imperical constant plus the ethernet header size will always leave
1163 * us with a nicely aligned ip header once we pass things up to the
1166 * The numbers work out to:
1168 * Max ethernet frame size 1518
1169 * Ethernet header size 14
1170 * Happy Meal base offset 2
1172 * Say a skb data area is at 0xf001b010, and its size alloced is
1173 * (ETH_FRAME_LEN + 64 + 2) = (1514 + 64 + 2) = 1580 bytes.
1175 * First our alloc_skb() routine aligns the data base to a 64 byte
1176 * boundary. We now have 0xf001b040 as our skb data address. We
1177 * plug this into the receive descriptor address.
1179 * Next, we skb_reserve() 2 bytes to account for the Happy Meal offset.
1180 * So now the data we will end up looking at starts at 0xf001b042. When
1181 * the packet arrives, we will check out the size received and subtract
1182 * this from the skb->length. Then we just pass the packet up to the
1183 * protocols as is, and allocate a new skb to replace this slot we have
1184 * just received from.
1186 * The ethernet layer will strip the ether header from the front of the
1187 * skb we just sent to it, this leaves us with the ip header sitting
1188 * nicely aligned at 0xf001b050. Also, for tcp and udp packets the
1189 * Happy Meal has even checksummed the tcp/udp data for us. The 16
1190 * bit checksum is obtained from the low bits of the receive descriptor
1193 * skb->csum = rxd->rx_flags & 0xffff;
1194 * skb->ip_summed = CHECKSUM_COMPLETE;
1196 * before sending off the skb to the protocols, and we are good as gold.
1198 static void happy_meal_clean_rings(struct happy_meal *hp)
1202 for (i = 0; i < RX_RING_SIZE; i++) {
1203 if (hp->rx_skbs[i] != NULL) {
1204 struct sk_buff *skb = hp->rx_skbs[i];
1205 struct happy_meal_rxd *rxd;
1208 rxd = &hp->happy_block->happy_meal_rxd[i];
1209 dma_addr = hme_read_desc32(hp, &rxd->rx_addr);
1210 dma_unmap_single(hp->dma_dev, dma_addr,
1211 RX_BUF_ALLOC_SIZE, DMA_FROM_DEVICE);
1212 dev_kfree_skb_any(skb);
1213 hp->rx_skbs[i] = NULL;
1217 for (i = 0; i < TX_RING_SIZE; i++) {
1218 if (hp->tx_skbs[i] != NULL) {
1219 struct sk_buff *skb = hp->tx_skbs[i];
1220 struct happy_meal_txd *txd;
1224 hp->tx_skbs[i] = NULL;
1226 for (frag = 0; frag <= skb_shinfo(skb)->nr_frags; frag++) {
1227 txd = &hp->happy_block->happy_meal_txd[i];
1228 dma_addr = hme_read_desc32(hp, &txd->tx_addr);
1230 dma_unmap_single(hp->dma_dev, dma_addr,
1231 (hme_read_desc32(hp, &txd->tx_flags)
1235 dma_unmap_page(hp->dma_dev, dma_addr,
1236 (hme_read_desc32(hp, &txd->tx_flags)
1240 if (frag != skb_shinfo(skb)->nr_frags)
1244 dev_kfree_skb_any(skb);
1249 /* hp->happy_lock must be held */
1250 static void happy_meal_init_rings(struct happy_meal *hp)
1252 struct hmeal_init_block *hb = hp->happy_block;
1255 HMD(("happy_meal_init_rings: counters to zero, "));
1256 hp->rx_new = hp->rx_old = hp->tx_new = hp->tx_old = 0;
1258 /* Free any skippy bufs left around in the rings. */
1260 happy_meal_clean_rings(hp);
1262 /* Now get new skippy bufs for the receive ring. */
1263 HMD(("init rxring, "));
1264 for (i = 0; i < RX_RING_SIZE; i++) {
1265 struct sk_buff *skb;
1268 skb = happy_meal_alloc_skb(RX_BUF_ALLOC_SIZE, GFP_ATOMIC);
1270 hme_write_rxd(hp, &hb->happy_meal_rxd[i], 0, 0);
1273 hp->rx_skbs[i] = skb;
1275 /* Because we reserve afterwards. */
1276 skb_put(skb, (ETH_FRAME_LEN + RX_OFFSET + 4));
1277 mapping = dma_map_single(hp->dma_dev, skb->data, RX_BUF_ALLOC_SIZE,
1279 if (dma_mapping_error(hp->dma_dev, mapping)) {
1280 dev_kfree_skb_any(skb);
1281 hme_write_rxd(hp, &hb->happy_meal_rxd[i], 0, 0);
1284 hme_write_rxd(hp, &hb->happy_meal_rxd[i],
1285 (RXFLAG_OWN | ((RX_BUF_ALLOC_SIZE - RX_OFFSET) << 16)),
1287 skb_reserve(skb, RX_OFFSET);
1290 HMD(("init txring, "));
1291 for (i = 0; i < TX_RING_SIZE; i++)
1292 hme_write_txd(hp, &hb->happy_meal_txd[i], 0, 0);
1297 /* hp->happy_lock must be held */
1299 happy_meal_begin_auto_negotiation(struct happy_meal *hp,
1300 void __iomem *tregs,
1301 const struct ethtool_link_ksettings *ep)
1305 /* Read all of the registers we are interested in now. */
1306 hp->sw_bmsr = happy_meal_tcvr_read(hp, tregs, MII_BMSR);
1307 hp->sw_bmcr = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
1308 hp->sw_physid1 = happy_meal_tcvr_read(hp, tregs, MII_PHYSID1);
1309 hp->sw_physid2 = happy_meal_tcvr_read(hp, tregs, MII_PHYSID2);
1311 /* XXX Check BMSR_ANEGCAPABLE, should not be necessary though. */
1313 hp->sw_advertise = happy_meal_tcvr_read(hp, tregs, MII_ADVERTISE);
1314 if (!ep || ep->base.autoneg == AUTONEG_ENABLE) {
1315 /* Advertise everything we can support. */
1316 if (hp->sw_bmsr & BMSR_10HALF)
1317 hp->sw_advertise |= (ADVERTISE_10HALF);
1319 hp->sw_advertise &= ~(ADVERTISE_10HALF);
1321 if (hp->sw_bmsr & BMSR_10FULL)
1322 hp->sw_advertise |= (ADVERTISE_10FULL);
1324 hp->sw_advertise &= ~(ADVERTISE_10FULL);
1325 if (hp->sw_bmsr & BMSR_100HALF)
1326 hp->sw_advertise |= (ADVERTISE_100HALF);
1328 hp->sw_advertise &= ~(ADVERTISE_100HALF);
1329 if (hp->sw_bmsr & BMSR_100FULL)
1330 hp->sw_advertise |= (ADVERTISE_100FULL);
1332 hp->sw_advertise &= ~(ADVERTISE_100FULL);
1333 happy_meal_tcvr_write(hp, tregs, MII_ADVERTISE, hp->sw_advertise);
1335 /* XXX Currently no Happy Meal cards I know off support 100BaseT4,
1336 * XXX and this is because the DP83840 does not support it, changes
1337 * XXX would need to be made to the tx/rx logic in the driver as well
1338 * XXX so I completely skip checking for it in the BMSR for now.
1341 #ifdef AUTO_SWITCH_DEBUG
1342 ASD(("%s: Advertising [ ", hp->dev->name));
1343 if (hp->sw_advertise & ADVERTISE_10HALF)
1345 if (hp->sw_advertise & ADVERTISE_10FULL)
1347 if (hp->sw_advertise & ADVERTISE_100HALF)
1349 if (hp->sw_advertise & ADVERTISE_100FULL)
1353 /* Enable Auto-Negotiation, this is usually on already... */
1354 hp->sw_bmcr |= BMCR_ANENABLE;
1355 happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
1357 /* Restart it to make sure it is going. */
1358 hp->sw_bmcr |= BMCR_ANRESTART;
1359 happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
1361 /* BMCR_ANRESTART self clears when the process has begun. */
1363 timeout = 64; /* More than enough. */
1365 hp->sw_bmcr = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
1366 if (!(hp->sw_bmcr & BMCR_ANRESTART))
1367 break; /* got it. */
1371 printk(KERN_ERR "%s: Happy Meal would not start auto negotiation "
1372 "BMCR=0x%04x\n", hp->dev->name, hp->sw_bmcr);
1373 printk(KERN_NOTICE "%s: Performing force link detection.\n",
1377 hp->timer_state = arbwait;
1381 /* Force the link up, trying first a particular mode.
1382 * Either we are here at the request of ethtool or
1383 * because the Happy Meal would not start to autoneg.
1386 /* Disable auto-negotiation in BMCR, enable the duplex and
1387 * speed setting, init the timer state machine, and fire it off.
1389 if (!ep || ep->base.autoneg == AUTONEG_ENABLE) {
1390 hp->sw_bmcr = BMCR_SPEED100;
1392 if (ep->base.speed == SPEED_100)
1393 hp->sw_bmcr = BMCR_SPEED100;
1396 if (ep->base.duplex == DUPLEX_FULL)
1397 hp->sw_bmcr |= BMCR_FULLDPLX;
1399 happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
1401 if (!is_lucent_phy(hp)) {
1402 /* OK, seems we need do disable the transceiver for the first
1403 * tick to make sure we get an accurate link state at the
1406 hp->sw_csconfig = happy_meal_tcvr_read(hp, tregs,
1408 hp->sw_csconfig &= ~(CSCONFIG_TCVDISAB);
1409 happy_meal_tcvr_write(hp, tregs, DP83840_CSCONFIG,
1412 hp->timer_state = ltrywait;
1415 hp->timer_ticks = 0;
1416 hp->happy_timer.expires = jiffies + (12 * HZ)/10; /* 1.2 sec. */
1417 add_timer(&hp->happy_timer);
1420 /* hp->happy_lock must be held */
1421 static int happy_meal_init(struct happy_meal *hp)
1423 void __iomem *gregs = hp->gregs;
1424 void __iomem *etxregs = hp->etxregs;
1425 void __iomem *erxregs = hp->erxregs;
1426 void __iomem *bregs = hp->bigmacregs;
1427 void __iomem *tregs = hp->tcvregs;
1429 unsigned char *e = &hp->dev->dev_addr[0];
1431 /* If auto-negotiation timer is running, kill it. */
1432 del_timer(&hp->happy_timer);
1434 HMD(("happy_meal_init: happy_flags[%08x] ",
1436 if (!(hp->happy_flags & HFLAG_INIT)) {
1437 HMD(("set HFLAG_INIT, "));
1438 hp->happy_flags |= HFLAG_INIT;
1439 happy_meal_get_counters(hp, bregs);
1443 HMD(("to happy_meal_poll_stop\n"));
1444 happy_meal_poll_stop(hp, tregs);
1446 /* Stop transmitter and receiver. */
1447 HMD(("happy_meal_init: to happy_meal_stop\n"));
1448 happy_meal_stop(hp, gregs);
1450 /* Alloc and reset the tx/rx descriptor chains. */
1451 HMD(("happy_meal_init: to happy_meal_init_rings\n"));
1452 happy_meal_init_rings(hp);
1454 /* Shut up the MIF. */
1455 HMD(("happy_meal_init: Disable all MIF irqs (old[%08x]), ",
1456 hme_read32(hp, tregs + TCVR_IMASK)));
1457 hme_write32(hp, tregs + TCVR_IMASK, 0xffff);
1459 /* See if we can enable the MIF frame on this card to speak to the DP83840. */
1460 if (hp->happy_flags & HFLAG_FENABLE) {
1461 HMD(("use frame old[%08x], ",
1462 hme_read32(hp, tregs + TCVR_CFG)));
1463 hme_write32(hp, tregs + TCVR_CFG,
1464 hme_read32(hp, tregs + TCVR_CFG) & ~(TCV_CFG_BENABLE));
1466 HMD(("use bitbang old[%08x], ",
1467 hme_read32(hp, tregs + TCVR_CFG)));
1468 hme_write32(hp, tregs + TCVR_CFG,
1469 hme_read32(hp, tregs + TCVR_CFG) | TCV_CFG_BENABLE);
1472 /* Check the state of the transceiver. */
1473 HMD(("to happy_meal_transceiver_check\n"));
1474 happy_meal_transceiver_check(hp, tregs);
1476 /* Put the Big Mac into a sane state. */
1477 HMD(("happy_meal_init: "));
1478 switch(hp->tcvr_type) {
1480 /* Cannot operate if we don't know the transceiver type! */
1481 HMD(("AAIEEE no transceiver type, EAGAIN"));
1485 /* Using the MII buffers. */
1486 HMD(("internal, using MII, "));
1487 hme_write32(hp, bregs + BMAC_XIFCFG, 0);
1491 /* Not using the MII, disable it. */
1492 HMD(("external, disable MII, "));
1493 hme_write32(hp, bregs + BMAC_XIFCFG, BIGMAC_XCFG_MIIDISAB);
1497 if (happy_meal_tcvr_reset(hp, tregs))
1500 /* Reset the Happy Meal Big Mac transceiver and the receiver. */
1501 HMD(("tx/rx reset, "));
1502 happy_meal_tx_reset(hp, bregs);
1503 happy_meal_rx_reset(hp, bregs);
1505 /* Set jam size and inter-packet gaps to reasonable defaults. */
1506 HMD(("jsize/ipg1/ipg2, "));
1507 hme_write32(hp, bregs + BMAC_JSIZE, DEFAULT_JAMSIZE);
1508 hme_write32(hp, bregs + BMAC_IGAP1, DEFAULT_IPG1);
1509 hme_write32(hp, bregs + BMAC_IGAP2, DEFAULT_IPG2);
1511 /* Load up the MAC address and random seed. */
1512 HMD(("rseed/macaddr, "));
1514 /* The docs recommend to use the 10LSB of our MAC here. */
1515 hme_write32(hp, bregs + BMAC_RSEED, ((e[5] | e[4]<<8)&0x3ff));
1517 hme_write32(hp, bregs + BMAC_MACADDR2, ((e[4] << 8) | e[5]));
1518 hme_write32(hp, bregs + BMAC_MACADDR1, ((e[2] << 8) | e[3]));
1519 hme_write32(hp, bregs + BMAC_MACADDR0, ((e[0] << 8) | e[1]));
1522 if ((hp->dev->flags & IFF_ALLMULTI) ||
1523 (netdev_mc_count(hp->dev) > 64)) {
1524 hme_write32(hp, bregs + BMAC_HTABLE0, 0xffff);
1525 hme_write32(hp, bregs + BMAC_HTABLE1, 0xffff);
1526 hme_write32(hp, bregs + BMAC_HTABLE2, 0xffff);
1527 hme_write32(hp, bregs + BMAC_HTABLE3, 0xffff);
1528 } else if ((hp->dev->flags & IFF_PROMISC) == 0) {
1530 struct netdev_hw_addr *ha;
1533 memset(hash_table, 0, sizeof(hash_table));
1534 netdev_for_each_mc_addr(ha, hp->dev) {
1535 crc = ether_crc_le(6, ha->addr);
1537 hash_table[crc >> 4] |= 1 << (crc & 0xf);
1539 hme_write32(hp, bregs + BMAC_HTABLE0, hash_table[0]);
1540 hme_write32(hp, bregs + BMAC_HTABLE1, hash_table[1]);
1541 hme_write32(hp, bregs + BMAC_HTABLE2, hash_table[2]);
1542 hme_write32(hp, bregs + BMAC_HTABLE3, hash_table[3]);
1544 hme_write32(hp, bregs + BMAC_HTABLE3, 0);
1545 hme_write32(hp, bregs + BMAC_HTABLE2, 0);
1546 hme_write32(hp, bregs + BMAC_HTABLE1, 0);
1547 hme_write32(hp, bregs + BMAC_HTABLE0, 0);
1550 /* Set the RX and TX ring ptrs. */
1551 HMD(("ring ptrs rxr[%08x] txr[%08x]\n",
1552 ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_rxd, 0)),
1553 ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_txd, 0))));
1554 hme_write32(hp, erxregs + ERX_RING,
1555 ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_rxd, 0)));
1556 hme_write32(hp, etxregs + ETX_RING,
1557 ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_txd, 0)));
1559 /* Parity issues in the ERX unit of some HME revisions can cause some
1560 * registers to not be written unless their parity is even. Detect such
1561 * lost writes and simply rewrite with a low bit set (which will be ignored
1562 * since the rxring needs to be 2K aligned).
1564 if (hme_read32(hp, erxregs + ERX_RING) !=
1565 ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_rxd, 0)))
1566 hme_write32(hp, erxregs + ERX_RING,
1567 ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_rxd, 0))
1570 /* Set the supported burst sizes. */
1571 HMD(("happy_meal_init: old[%08x] bursts<",
1572 hme_read32(hp, gregs + GREG_CFG)));
1574 #ifndef CONFIG_SPARC
1575 /* It is always PCI and can handle 64byte bursts. */
1576 hme_write32(hp, gregs + GREG_CFG, GREG_CFG_BURST64);
1578 if ((hp->happy_bursts & DMA_BURST64) &&
1579 ((hp->happy_flags & HFLAG_PCI) != 0
1581 || sbus_can_burst64()
1584 u32 gcfg = GREG_CFG_BURST64;
1586 /* I have no idea if I should set the extended
1587 * transfer mode bit for Cheerio, so for now I
1591 if ((hp->happy_flags & HFLAG_PCI) == 0) {
1592 struct platform_device *op = hp->happy_dev;
1593 if (sbus_can_dma_64bit()) {
1594 sbus_set_sbus64(&op->dev,
1596 gcfg |= GREG_CFG_64BIT;
1602 hme_write32(hp, gregs + GREG_CFG, gcfg);
1603 } else if (hp->happy_bursts & DMA_BURST32) {
1605 hme_write32(hp, gregs + GREG_CFG, GREG_CFG_BURST32);
1606 } else if (hp->happy_bursts & DMA_BURST16) {
1608 hme_write32(hp, gregs + GREG_CFG, GREG_CFG_BURST16);
1611 hme_write32(hp, gregs + GREG_CFG, 0);
1613 #endif /* CONFIG_SPARC */
1615 /* Turn off interrupts we do not want to hear. */
1616 HMD((", enable global interrupts, "));
1617 hme_write32(hp, gregs + GREG_IMASK,
1618 (GREG_IMASK_GOTFRAME | GREG_IMASK_RCNTEXP |
1619 GREG_IMASK_SENTFRAME | GREG_IMASK_TXPERR));
1621 /* Set the transmit ring buffer size. */
1622 HMD(("tx rsize=%d oreg[%08x], ", (int)TX_RING_SIZE,
1623 hme_read32(hp, etxregs + ETX_RSIZE)));
1624 hme_write32(hp, etxregs + ETX_RSIZE, (TX_RING_SIZE >> ETX_RSIZE_SHIFT) - 1);
1626 /* Enable transmitter DVMA. */
1627 HMD(("tx dma enable old[%08x], ",
1628 hme_read32(hp, etxregs + ETX_CFG)));
1629 hme_write32(hp, etxregs + ETX_CFG,
1630 hme_read32(hp, etxregs + ETX_CFG) | ETX_CFG_DMAENABLE);
1632 /* This chip really rots, for the receiver sometimes when you
1633 * write to its control registers not all the bits get there
1634 * properly. I cannot think of a sane way to provide complete
1635 * coverage for this hardware bug yet.
1637 HMD(("erx regs bug old[%08x]\n",
1638 hme_read32(hp, erxregs + ERX_CFG)));
1639 hme_write32(hp, erxregs + ERX_CFG, ERX_CFG_DEFAULT(RX_OFFSET));
1640 regtmp = hme_read32(hp, erxregs + ERX_CFG);
1641 hme_write32(hp, erxregs + ERX_CFG, ERX_CFG_DEFAULT(RX_OFFSET));
1642 if (hme_read32(hp, erxregs + ERX_CFG) != ERX_CFG_DEFAULT(RX_OFFSET)) {
1643 printk(KERN_ERR "happy meal: Eieee, rx config register gets greasy fries.\n");
1644 printk(KERN_ERR "happy meal: Trying to set %08x, reread gives %08x\n",
1645 ERX_CFG_DEFAULT(RX_OFFSET), regtmp);
1646 /* XXX Should return failure here... */
1649 /* Enable Big Mac hash table filter. */
1650 HMD(("happy_meal_init: enable hash rx_cfg_old[%08x], ",
1651 hme_read32(hp, bregs + BMAC_RXCFG)));
1652 rxcfg = BIGMAC_RXCFG_HENABLE | BIGMAC_RXCFG_REJME;
1653 if (hp->dev->flags & IFF_PROMISC)
1654 rxcfg |= BIGMAC_RXCFG_PMISC;
1655 hme_write32(hp, bregs + BMAC_RXCFG, rxcfg);
1657 /* Let the bits settle in the chip. */
1660 /* Ok, configure the Big Mac transmitter. */
1661 HMD(("BIGMAC init, "));
1663 if (hp->happy_flags & HFLAG_FULL)
1664 regtmp |= BIGMAC_TXCFG_FULLDPLX;
1666 /* Don't turn on the "don't give up" bit for now. It could cause hme
1667 * to deadlock with the PHY if a Jabber occurs.
1669 hme_write32(hp, bregs + BMAC_TXCFG, regtmp /*| BIGMAC_TXCFG_DGIVEUP*/);
1671 /* Give up after 16 TX attempts. */
1672 hme_write32(hp, bregs + BMAC_ALIMIT, 16);
1674 /* Enable the output drivers no matter what. */
1675 regtmp = BIGMAC_XCFG_ODENABLE;
1677 /* If card can do lance mode, enable it. */
1678 if (hp->happy_flags & HFLAG_LANCE)
1679 regtmp |= (DEFAULT_IPG0 << 5) | BIGMAC_XCFG_LANCE;
1681 /* Disable the MII buffers if using external transceiver. */
1682 if (hp->tcvr_type == external)
1683 regtmp |= BIGMAC_XCFG_MIIDISAB;
1685 HMD(("XIF config old[%08x], ",
1686 hme_read32(hp, bregs + BMAC_XIFCFG)));
1687 hme_write32(hp, bregs + BMAC_XIFCFG, regtmp);
1689 /* Start things up. */
1690 HMD(("tx old[%08x] and rx [%08x] ON!\n",
1691 hme_read32(hp, bregs + BMAC_TXCFG),
1692 hme_read32(hp, bregs + BMAC_RXCFG)));
1694 /* Set larger TX/RX size to allow for 802.1q */
1695 hme_write32(hp, bregs + BMAC_TXMAX, ETH_FRAME_LEN + 8);
1696 hme_write32(hp, bregs + BMAC_RXMAX, ETH_FRAME_LEN + 8);
1698 hme_write32(hp, bregs + BMAC_TXCFG,
1699 hme_read32(hp, bregs + BMAC_TXCFG) | BIGMAC_TXCFG_ENABLE);
1700 hme_write32(hp, bregs + BMAC_RXCFG,
1701 hme_read32(hp, bregs + BMAC_RXCFG) | BIGMAC_RXCFG_ENABLE);
1703 /* Get the autonegotiation started, and the watch timer ticking. */
1704 happy_meal_begin_auto_negotiation(hp, tregs, NULL);
1710 /* hp->happy_lock must be held */
1711 static void happy_meal_set_initial_advertisement(struct happy_meal *hp)
1713 void __iomem *tregs = hp->tcvregs;
1714 void __iomem *bregs = hp->bigmacregs;
1715 void __iomem *gregs = hp->gregs;
1717 happy_meal_stop(hp, gregs);
1718 hme_write32(hp, tregs + TCVR_IMASK, 0xffff);
1719 if (hp->happy_flags & HFLAG_FENABLE)
1720 hme_write32(hp, tregs + TCVR_CFG,
1721 hme_read32(hp, tregs + TCVR_CFG) & ~(TCV_CFG_BENABLE));
1723 hme_write32(hp, tregs + TCVR_CFG,
1724 hme_read32(hp, tregs + TCVR_CFG) | TCV_CFG_BENABLE);
1725 happy_meal_transceiver_check(hp, tregs);
1726 switch(hp->tcvr_type) {
1730 hme_write32(hp, bregs + BMAC_XIFCFG, 0);
1733 hme_write32(hp, bregs + BMAC_XIFCFG, BIGMAC_XCFG_MIIDISAB);
1736 if (happy_meal_tcvr_reset(hp, tregs))
1739 /* Latch PHY registers as of now. */
1740 hp->sw_bmsr = happy_meal_tcvr_read(hp, tregs, MII_BMSR);
1741 hp->sw_advertise = happy_meal_tcvr_read(hp, tregs, MII_ADVERTISE);
1743 /* Advertise everything we can support. */
1744 if (hp->sw_bmsr & BMSR_10HALF)
1745 hp->sw_advertise |= (ADVERTISE_10HALF);
1747 hp->sw_advertise &= ~(ADVERTISE_10HALF);
1749 if (hp->sw_bmsr & BMSR_10FULL)
1750 hp->sw_advertise |= (ADVERTISE_10FULL);
1752 hp->sw_advertise &= ~(ADVERTISE_10FULL);
1753 if (hp->sw_bmsr & BMSR_100HALF)
1754 hp->sw_advertise |= (ADVERTISE_100HALF);
1756 hp->sw_advertise &= ~(ADVERTISE_100HALF);
1757 if (hp->sw_bmsr & BMSR_100FULL)
1758 hp->sw_advertise |= (ADVERTISE_100FULL);
1760 hp->sw_advertise &= ~(ADVERTISE_100FULL);
1762 /* Update the PHY advertisement register. */
1763 happy_meal_tcvr_write(hp, tregs, MII_ADVERTISE, hp->sw_advertise);
1766 /* Once status is latched (by happy_meal_interrupt) it is cleared by
1767 * the hardware, so we cannot re-read it and get a correct value.
1769 * hp->happy_lock must be held
1771 static int happy_meal_is_not_so_happy(struct happy_meal *hp, u32 status)
1775 /* Only print messages for non-counter related interrupts. */
1776 if (status & (GREG_STAT_STSTERR | GREG_STAT_TFIFO_UND |
1777 GREG_STAT_MAXPKTERR | GREG_STAT_RXERR |
1778 GREG_STAT_RXPERR | GREG_STAT_RXTERR | GREG_STAT_EOPERR |
1779 GREG_STAT_MIFIRQ | GREG_STAT_TXEACK | GREG_STAT_TXLERR |
1780 GREG_STAT_TXPERR | GREG_STAT_TXTERR | GREG_STAT_SLVERR |
1782 printk(KERN_ERR "%s: Error interrupt for happy meal, status = %08x\n",
1783 hp->dev->name, status);
1785 if (status & GREG_STAT_RFIFOVF) {
1786 /* Receive FIFO overflow is harmless and the hardware will take
1787 care of it, just some packets are lost. Who cares. */
1788 printk(KERN_DEBUG "%s: Happy Meal receive FIFO overflow.\n", hp->dev->name);
1791 if (status & GREG_STAT_STSTERR) {
1792 /* BigMAC SQE link test failed. */
1793 printk(KERN_ERR "%s: Happy Meal BigMAC SQE test failed.\n", hp->dev->name);
1797 if (status & GREG_STAT_TFIFO_UND) {
1798 /* Transmit FIFO underrun, again DMA error likely. */
1799 printk(KERN_ERR "%s: Happy Meal transmitter FIFO underrun, DMA error.\n",
1804 if (status & GREG_STAT_MAXPKTERR) {
1805 /* Driver error, tried to transmit something larger
1806 * than ethernet max mtu.
1808 printk(KERN_ERR "%s: Happy Meal MAX Packet size error.\n", hp->dev->name);
1812 if (status & GREG_STAT_NORXD) {
1813 /* This is harmless, it just means the system is
1814 * quite loaded and the incoming packet rate was
1815 * faster than the interrupt handler could keep up
1818 printk(KERN_INFO "%s: Happy Meal out of receive "
1819 "descriptors, packet dropped.\n",
1823 if (status & (GREG_STAT_RXERR|GREG_STAT_RXPERR|GREG_STAT_RXTERR)) {
1824 /* All sorts of DMA receive errors. */
1825 printk(KERN_ERR "%s: Happy Meal rx DMA errors [ ", hp->dev->name);
1826 if (status & GREG_STAT_RXERR)
1827 printk("GenericError ");
1828 if (status & GREG_STAT_RXPERR)
1829 printk("ParityError ");
1830 if (status & GREG_STAT_RXTERR)
1831 printk("RxTagBotch ");
1836 if (status & GREG_STAT_EOPERR) {
1837 /* Driver bug, didn't set EOP bit in tx descriptor given
1838 * to the happy meal.
1840 printk(KERN_ERR "%s: EOP not set in happy meal transmit descriptor!\n",
1845 if (status & GREG_STAT_MIFIRQ) {
1846 /* MIF signalled an interrupt, were we polling it? */
1847 printk(KERN_ERR "%s: Happy Meal MIF interrupt.\n", hp->dev->name);
1851 (GREG_STAT_TXEACK|GREG_STAT_TXLERR|GREG_STAT_TXPERR|GREG_STAT_TXTERR)) {
1852 /* All sorts of transmit DMA errors. */
1853 printk(KERN_ERR "%s: Happy Meal tx DMA errors [ ", hp->dev->name);
1854 if (status & GREG_STAT_TXEACK)
1855 printk("GenericError ");
1856 if (status & GREG_STAT_TXLERR)
1857 printk("LateError ");
1858 if (status & GREG_STAT_TXPERR)
1859 printk("ParityError ");
1860 if (status & GREG_STAT_TXTERR)
1861 printk("TagBotch ");
1866 if (status & (GREG_STAT_SLVERR|GREG_STAT_SLVPERR)) {
1867 /* Bus or parity error when cpu accessed happy meal registers
1868 * or it's internal FIFO's. Should never see this.
1870 printk(KERN_ERR "%s: Happy Meal register access SBUS slave (%s) error.\n",
1872 (status & GREG_STAT_SLVPERR) ? "parity" : "generic");
1877 printk(KERN_NOTICE "%s: Resetting...\n", hp->dev->name);
1878 happy_meal_init(hp);
1884 /* hp->happy_lock must be held */
1885 static void happy_meal_mif_interrupt(struct happy_meal *hp)
1887 void __iomem *tregs = hp->tcvregs;
1889 printk(KERN_INFO "%s: Link status change.\n", hp->dev->name);
1890 hp->sw_bmcr = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
1891 hp->sw_lpa = happy_meal_tcvr_read(hp, tregs, MII_LPA);
1893 /* Use the fastest transmission protocol possible. */
1894 if (hp->sw_lpa & LPA_100FULL) {
1895 printk(KERN_INFO "%s: Switching to 100Mbps at full duplex.", hp->dev->name);
1896 hp->sw_bmcr |= (BMCR_FULLDPLX | BMCR_SPEED100);
1897 } else if (hp->sw_lpa & LPA_100HALF) {
1898 printk(KERN_INFO "%s: Switching to 100MBps at half duplex.", hp->dev->name);
1899 hp->sw_bmcr |= BMCR_SPEED100;
1900 } else if (hp->sw_lpa & LPA_10FULL) {
1901 printk(KERN_INFO "%s: Switching to 10MBps at full duplex.", hp->dev->name);
1902 hp->sw_bmcr |= BMCR_FULLDPLX;
1904 printk(KERN_INFO "%s: Using 10Mbps at half duplex.", hp->dev->name);
1906 happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
1908 /* Finally stop polling and shut up the MIF. */
1909 happy_meal_poll_stop(hp, tregs);
1913 #define TXD(x) printk x
1918 /* hp->happy_lock must be held */
1919 static void happy_meal_tx(struct happy_meal *hp)
1921 struct happy_meal_txd *txbase = &hp->happy_block->happy_meal_txd[0];
1922 struct happy_meal_txd *this;
1923 struct net_device *dev = hp->dev;
1928 while (elem != hp->tx_new) {
1929 struct sk_buff *skb;
1930 u32 flags, dma_addr, dma_len;
1933 TXD(("[%d]", elem));
1934 this = &txbase[elem];
1935 flags = hme_read_desc32(hp, &this->tx_flags);
1936 if (flags & TXFLAG_OWN)
1938 skb = hp->tx_skbs[elem];
1939 if (skb_shinfo(skb)->nr_frags) {
1942 last = elem + skb_shinfo(skb)->nr_frags;
1943 last &= (TX_RING_SIZE - 1);
1944 flags = hme_read_desc32(hp, &txbase[last].tx_flags);
1945 if (flags & TXFLAG_OWN)
1948 hp->tx_skbs[elem] = NULL;
1949 dev->stats.tx_bytes += skb->len;
1951 for (frag = 0; frag <= skb_shinfo(skb)->nr_frags; frag++) {
1952 dma_addr = hme_read_desc32(hp, &this->tx_addr);
1953 dma_len = hme_read_desc32(hp, &this->tx_flags);
1955 dma_len &= TXFLAG_SIZE;
1957 dma_unmap_single(hp->dma_dev, dma_addr, dma_len, DMA_TO_DEVICE);
1959 dma_unmap_page(hp->dma_dev, dma_addr, dma_len, DMA_TO_DEVICE);
1961 elem = NEXT_TX(elem);
1962 this = &txbase[elem];
1965 dev_consume_skb_irq(skb);
1966 dev->stats.tx_packets++;
1971 if (netif_queue_stopped(dev) &&
1972 TX_BUFFS_AVAIL(hp) > (MAX_SKB_FRAGS + 1))
1973 netif_wake_queue(dev);
1977 #define RXD(x) printk x
1982 /* Originally I used to handle the allocation failure by just giving back just
1983 * that one ring buffer to the happy meal. Problem is that usually when that
1984 * condition is triggered, the happy meal expects you to do something reasonable
1985 * with all of the packets it has DMA'd in. So now I just drop the entire
1986 * ring when we cannot get a new skb and give them all back to the happy meal,
1987 * maybe things will be "happier" now.
1989 * hp->happy_lock must be held
1991 static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev)
1993 struct happy_meal_rxd *rxbase = &hp->happy_block->happy_meal_rxd[0];
1994 struct happy_meal_rxd *this;
1995 int elem = hp->rx_new, drops = 0;
1999 this = &rxbase[elem];
2000 while (!((flags = hme_read_desc32(hp, &this->rx_flags)) & RXFLAG_OWN)) {
2001 struct sk_buff *skb;
2002 int len = flags >> 16;
2003 u16 csum = flags & RXFLAG_CSUM;
2004 u32 dma_addr = hme_read_desc32(hp, &this->rx_addr);
2006 RXD(("[%d ", elem));
2008 /* Check for errors. */
2009 if ((len < ETH_ZLEN) || (flags & RXFLAG_OVERFLOW)) {
2010 RXD(("ERR(%08x)]", flags));
2011 dev->stats.rx_errors++;
2013 dev->stats.rx_length_errors++;
2014 if (len & (RXFLAG_OVERFLOW >> 16)) {
2015 dev->stats.rx_over_errors++;
2016 dev->stats.rx_fifo_errors++;
2019 /* Return it to the Happy meal. */
2021 dev->stats.rx_dropped++;
2022 hme_write_rxd(hp, this,
2023 (RXFLAG_OWN|((RX_BUF_ALLOC_SIZE-RX_OFFSET)<<16)),
2027 skb = hp->rx_skbs[elem];
2028 if (len > RX_COPY_THRESHOLD) {
2029 struct sk_buff *new_skb;
2032 /* Now refill the entry, if we can. */
2033 new_skb = happy_meal_alloc_skb(RX_BUF_ALLOC_SIZE, GFP_ATOMIC);
2034 if (new_skb == NULL) {
2038 skb_put(new_skb, (ETH_FRAME_LEN + RX_OFFSET + 4));
2039 mapping = dma_map_single(hp->dma_dev, new_skb->data,
2042 if (unlikely(dma_mapping_error(hp->dma_dev, mapping))) {
2043 dev_kfree_skb_any(new_skb);
2048 dma_unmap_single(hp->dma_dev, dma_addr, RX_BUF_ALLOC_SIZE, DMA_FROM_DEVICE);
2049 hp->rx_skbs[elem] = new_skb;
2050 hme_write_rxd(hp, this,
2051 (RXFLAG_OWN|((RX_BUF_ALLOC_SIZE-RX_OFFSET)<<16)),
2053 skb_reserve(new_skb, RX_OFFSET);
2055 /* Trim the original skb for the netif. */
2058 struct sk_buff *copy_skb = netdev_alloc_skb(dev, len + 2);
2060 if (copy_skb == NULL) {
2065 skb_reserve(copy_skb, 2);
2066 skb_put(copy_skb, len);
2067 dma_sync_single_for_cpu(hp->dma_dev, dma_addr, len, DMA_FROM_DEVICE);
2068 skb_copy_from_linear_data(skb, copy_skb->data, len);
2069 dma_sync_single_for_device(hp->dma_dev, dma_addr, len, DMA_FROM_DEVICE);
2070 /* Reuse original ring buffer. */
2071 hme_write_rxd(hp, this,
2072 (RXFLAG_OWN|((RX_BUF_ALLOC_SIZE-RX_OFFSET)<<16)),
2078 /* This card is _fucking_ hot... */
2079 skb->csum = csum_unfold(~(__force __sum16)htons(csum));
2080 skb->ip_summed = CHECKSUM_COMPLETE;
2082 RXD(("len=%d csum=%4x]", len, csum));
2083 skb->protocol = eth_type_trans(skb, dev);
2086 dev->stats.rx_packets++;
2087 dev->stats.rx_bytes += len;
2089 elem = NEXT_RX(elem);
2090 this = &rxbase[elem];
2094 printk(KERN_INFO "%s: Memory squeeze, deferring packet.\n", hp->dev->name);
2098 static irqreturn_t happy_meal_interrupt(int irq, void *dev_id)
2100 struct net_device *dev = dev_id;
2101 struct happy_meal *hp = netdev_priv(dev);
2102 u32 happy_status = hme_read32(hp, hp->gregs + GREG_STAT);
2104 HMD(("happy_meal_interrupt: status=%08x ", happy_status));
2106 spin_lock(&hp->happy_lock);
2108 if (happy_status & GREG_STAT_ERRORS) {
2110 if (happy_meal_is_not_so_happy(hp, /* un- */ happy_status))
2114 if (happy_status & GREG_STAT_MIFIRQ) {
2116 happy_meal_mif_interrupt(hp);
2119 if (happy_status & GREG_STAT_TXALL) {
2124 if (happy_status & GREG_STAT_RXTOHOST) {
2126 happy_meal_rx(hp, dev);
2131 spin_unlock(&hp->happy_lock);
2137 static irqreturn_t quattro_sbus_interrupt(int irq, void *cookie)
2139 struct quattro *qp = (struct quattro *) cookie;
2142 for (i = 0; i < 4; i++) {
2143 struct net_device *dev = qp->happy_meals[i];
2144 struct happy_meal *hp = netdev_priv(dev);
2145 u32 happy_status = hme_read32(hp, hp->gregs + GREG_STAT);
2147 HMD(("quattro_interrupt: status=%08x ", happy_status));
2149 if (!(happy_status & (GREG_STAT_ERRORS |
2152 GREG_STAT_RXTOHOST)))
2155 spin_lock(&hp->happy_lock);
2157 if (happy_status & GREG_STAT_ERRORS) {
2159 if (happy_meal_is_not_so_happy(hp, happy_status))
2163 if (happy_status & GREG_STAT_MIFIRQ) {
2165 happy_meal_mif_interrupt(hp);
2168 if (happy_status & GREG_STAT_TXALL) {
2173 if (happy_status & GREG_STAT_RXTOHOST) {
2175 happy_meal_rx(hp, dev);
2179 spin_unlock(&hp->happy_lock);
2187 static int happy_meal_open(struct net_device *dev)
2189 struct happy_meal *hp = netdev_priv(dev);
2192 HMD(("happy_meal_open: "));
2194 /* On SBUS Quattro QFE cards, all hme interrupts are concentrated
2195 * into a single source which we register handling at probe time.
2197 if ((hp->happy_flags & (HFLAG_QUATTRO|HFLAG_PCI)) != HFLAG_QUATTRO) {
2198 res = request_irq(hp->irq, happy_meal_interrupt, IRQF_SHARED,
2202 printk(KERN_ERR "happy_meal(SBUS): Can't order irq %d to go.\n",
2209 HMD(("to happy_meal_init\n"));
2211 spin_lock_irq(&hp->happy_lock);
2212 res = happy_meal_init(hp);
2213 spin_unlock_irq(&hp->happy_lock);
2215 if (res && ((hp->happy_flags & (HFLAG_QUATTRO|HFLAG_PCI)) != HFLAG_QUATTRO))
2216 free_irq(hp->irq, dev);
2220 static int happy_meal_close(struct net_device *dev)
2222 struct happy_meal *hp = netdev_priv(dev);
2224 spin_lock_irq(&hp->happy_lock);
2225 happy_meal_stop(hp, hp->gregs);
2226 happy_meal_clean_rings(hp);
2228 /* If auto-negotiation timer is running, kill it. */
2229 del_timer(&hp->happy_timer);
2231 spin_unlock_irq(&hp->happy_lock);
2233 /* On Quattro QFE cards, all hme interrupts are concentrated
2234 * into a single source which we register handling at probe
2235 * time and never unregister.
2237 if ((hp->happy_flags & (HFLAG_QUATTRO|HFLAG_PCI)) != HFLAG_QUATTRO)
2238 free_irq(hp->irq, dev);
2244 #define SXD(x) printk x
2249 static void happy_meal_tx_timeout(struct net_device *dev, unsigned int txqueue)
2251 struct happy_meal *hp = netdev_priv(dev);
2253 printk (KERN_ERR "%s: transmit timed out, resetting\n", dev->name);
2255 printk (KERN_ERR "%s: Happy Status %08x TX[%08x:%08x]\n", dev->name,
2256 hme_read32(hp, hp->gregs + GREG_STAT),
2257 hme_read32(hp, hp->etxregs + ETX_CFG),
2258 hme_read32(hp, hp->bigmacregs + BMAC_TXCFG));
2260 spin_lock_irq(&hp->happy_lock);
2261 happy_meal_init(hp);
2262 spin_unlock_irq(&hp->happy_lock);
2264 netif_wake_queue(dev);
2267 static void unmap_partial_tx_skb(struct happy_meal *hp, u32 first_mapping,
2268 u32 first_len, u32 first_entry, u32 entry)
2270 struct happy_meal_txd *txbase = &hp->happy_block->happy_meal_txd[0];
2272 dma_unmap_single(hp->dma_dev, first_mapping, first_len, DMA_TO_DEVICE);
2274 first_entry = NEXT_TX(first_entry);
2275 while (first_entry != entry) {
2276 struct happy_meal_txd *this = &txbase[first_entry];
2279 addr = hme_read_desc32(hp, &this->tx_addr);
2280 len = hme_read_desc32(hp, &this->tx_flags);
2282 dma_unmap_page(hp->dma_dev, addr, len, DMA_TO_DEVICE);
2286 static netdev_tx_t happy_meal_start_xmit(struct sk_buff *skb,
2287 struct net_device *dev)
2289 struct happy_meal *hp = netdev_priv(dev);
2293 tx_flags = TXFLAG_OWN;
2294 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2295 const u32 csum_start_off = skb_checksum_start_offset(skb);
2296 const u32 csum_stuff_off = csum_start_off + skb->csum_offset;
2298 tx_flags = (TXFLAG_OWN | TXFLAG_CSENABLE |
2299 ((csum_start_off << 14) & TXFLAG_CSBUFBEGIN) |
2300 ((csum_stuff_off << 20) & TXFLAG_CSLOCATION));
2303 spin_lock_irq(&hp->happy_lock);
2305 if (TX_BUFFS_AVAIL(hp) <= (skb_shinfo(skb)->nr_frags + 1)) {
2306 netif_stop_queue(dev);
2307 spin_unlock_irq(&hp->happy_lock);
2308 printk(KERN_ERR "%s: BUG! Tx Ring full when queue awake!\n",
2310 return NETDEV_TX_BUSY;
2314 SXD(("SX<l[%d]e[%d]>", len, entry));
2315 hp->tx_skbs[entry] = skb;
2317 if (skb_shinfo(skb)->nr_frags == 0) {
2321 mapping = dma_map_single(hp->dma_dev, skb->data, len, DMA_TO_DEVICE);
2322 if (unlikely(dma_mapping_error(hp->dma_dev, mapping)))
2324 tx_flags |= (TXFLAG_SOP | TXFLAG_EOP);
2325 hme_write_txd(hp, &hp->happy_block->happy_meal_txd[entry],
2326 (tx_flags | (len & TXFLAG_SIZE)),
2328 entry = NEXT_TX(entry);
2330 u32 first_len, first_mapping;
2331 int frag, first_entry = entry;
2333 /* We must give this initial chunk to the device last.
2334 * Otherwise we could race with the device.
2336 first_len = skb_headlen(skb);
2337 first_mapping = dma_map_single(hp->dma_dev, skb->data, first_len,
2339 if (unlikely(dma_mapping_error(hp->dma_dev, first_mapping)))
2341 entry = NEXT_TX(entry);
2343 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
2344 const skb_frag_t *this_frag = &skb_shinfo(skb)->frags[frag];
2345 u32 len, mapping, this_txflags;
2347 len = skb_frag_size(this_frag);
2348 mapping = skb_frag_dma_map(hp->dma_dev, this_frag,
2349 0, len, DMA_TO_DEVICE);
2350 if (unlikely(dma_mapping_error(hp->dma_dev, mapping))) {
2351 unmap_partial_tx_skb(hp, first_mapping, first_len,
2352 first_entry, entry);
2355 this_txflags = tx_flags;
2356 if (frag == skb_shinfo(skb)->nr_frags - 1)
2357 this_txflags |= TXFLAG_EOP;
2358 hme_write_txd(hp, &hp->happy_block->happy_meal_txd[entry],
2359 (this_txflags | (len & TXFLAG_SIZE)),
2361 entry = NEXT_TX(entry);
2363 hme_write_txd(hp, &hp->happy_block->happy_meal_txd[first_entry],
2364 (tx_flags | TXFLAG_SOP | (first_len & TXFLAG_SIZE)),
2370 if (TX_BUFFS_AVAIL(hp) <= (MAX_SKB_FRAGS + 1))
2371 netif_stop_queue(dev);
2374 hme_write32(hp, hp->etxregs + ETX_PENDING, ETX_TP_DMAWAKEUP);
2376 spin_unlock_irq(&hp->happy_lock);
2378 tx_add_log(hp, TXLOG_ACTION_TXMIT, 0);
2379 return NETDEV_TX_OK;
2382 hp->tx_skbs[hp->tx_new] = NULL;
2383 spin_unlock_irq(&hp->happy_lock);
2385 dev_kfree_skb_any(skb);
2386 dev->stats.tx_dropped++;
2387 return NETDEV_TX_OK;
2390 static struct net_device_stats *happy_meal_get_stats(struct net_device *dev)
2392 struct happy_meal *hp = netdev_priv(dev);
2394 spin_lock_irq(&hp->happy_lock);
2395 happy_meal_get_counters(hp, hp->bigmacregs);
2396 spin_unlock_irq(&hp->happy_lock);
2401 static void happy_meal_set_multicast(struct net_device *dev)
2403 struct happy_meal *hp = netdev_priv(dev);
2404 void __iomem *bregs = hp->bigmacregs;
2405 struct netdev_hw_addr *ha;
2408 spin_lock_irq(&hp->happy_lock);
2410 if ((dev->flags & IFF_ALLMULTI) || (netdev_mc_count(dev) > 64)) {
2411 hme_write32(hp, bregs + BMAC_HTABLE0, 0xffff);
2412 hme_write32(hp, bregs + BMAC_HTABLE1, 0xffff);
2413 hme_write32(hp, bregs + BMAC_HTABLE2, 0xffff);
2414 hme_write32(hp, bregs + BMAC_HTABLE3, 0xffff);
2415 } else if (dev->flags & IFF_PROMISC) {
2416 hme_write32(hp, bregs + BMAC_RXCFG,
2417 hme_read32(hp, bregs + BMAC_RXCFG) | BIGMAC_RXCFG_PMISC);
2421 memset(hash_table, 0, sizeof(hash_table));
2422 netdev_for_each_mc_addr(ha, dev) {
2423 crc = ether_crc_le(6, ha->addr);
2425 hash_table[crc >> 4] |= 1 << (crc & 0xf);
2427 hme_write32(hp, bregs + BMAC_HTABLE0, hash_table[0]);
2428 hme_write32(hp, bregs + BMAC_HTABLE1, hash_table[1]);
2429 hme_write32(hp, bregs + BMAC_HTABLE2, hash_table[2]);
2430 hme_write32(hp, bregs + BMAC_HTABLE3, hash_table[3]);
2433 spin_unlock_irq(&hp->happy_lock);
2436 /* Ethtool support... */
2437 static int hme_get_link_ksettings(struct net_device *dev,
2438 struct ethtool_link_ksettings *cmd)
2440 struct happy_meal *hp = netdev_priv(dev);
2445 (SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full |
2446 SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full |
2447 SUPPORTED_Autoneg | SUPPORTED_TP | SUPPORTED_MII);
2449 /* XXX hardcoded stuff for now */
2450 cmd->base.port = PORT_TP; /* XXX no MII support */
2451 cmd->base.phy_address = 0; /* XXX fixed PHYAD */
2453 /* Record PHY settings. */
2454 spin_lock_irq(&hp->happy_lock);
2455 hp->sw_bmcr = happy_meal_tcvr_read(hp, hp->tcvregs, MII_BMCR);
2456 hp->sw_lpa = happy_meal_tcvr_read(hp, hp->tcvregs, MII_LPA);
2457 spin_unlock_irq(&hp->happy_lock);
2459 if (hp->sw_bmcr & BMCR_ANENABLE) {
2460 cmd->base.autoneg = AUTONEG_ENABLE;
2461 speed = ((hp->sw_lpa & (LPA_100HALF | LPA_100FULL)) ?
2462 SPEED_100 : SPEED_10);
2463 if (speed == SPEED_100)
2465 (hp->sw_lpa & (LPA_100FULL)) ?
2466 DUPLEX_FULL : DUPLEX_HALF;
2469 (hp->sw_lpa & (LPA_10FULL)) ?
2470 DUPLEX_FULL : DUPLEX_HALF;
2472 cmd->base.autoneg = AUTONEG_DISABLE;
2473 speed = (hp->sw_bmcr & BMCR_SPEED100) ? SPEED_100 : SPEED_10;
2475 (hp->sw_bmcr & BMCR_FULLDPLX) ?
2476 DUPLEX_FULL : DUPLEX_HALF;
2478 cmd->base.speed = speed;
2479 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
2485 static int hme_set_link_ksettings(struct net_device *dev,
2486 const struct ethtool_link_ksettings *cmd)
2488 struct happy_meal *hp = netdev_priv(dev);
2490 /* Verify the settings we care about. */
2491 if (cmd->base.autoneg != AUTONEG_ENABLE &&
2492 cmd->base.autoneg != AUTONEG_DISABLE)
2494 if (cmd->base.autoneg == AUTONEG_DISABLE &&
2495 ((cmd->base.speed != SPEED_100 &&
2496 cmd->base.speed != SPEED_10) ||
2497 (cmd->base.duplex != DUPLEX_HALF &&
2498 cmd->base.duplex != DUPLEX_FULL)))
2501 /* Ok, do it to it. */
2502 spin_lock_irq(&hp->happy_lock);
2503 del_timer(&hp->happy_timer);
2504 happy_meal_begin_auto_negotiation(hp, hp->tcvregs, cmd);
2505 spin_unlock_irq(&hp->happy_lock);
2510 static void hme_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
2512 struct happy_meal *hp = netdev_priv(dev);
2514 strlcpy(info->driver, "sunhme", sizeof(info->driver));
2515 strlcpy(info->version, "2.02", sizeof(info->version));
2516 if (hp->happy_flags & HFLAG_PCI) {
2517 struct pci_dev *pdev = hp->happy_dev;
2518 strlcpy(info->bus_info, pci_name(pdev), sizeof(info->bus_info));
2522 const struct linux_prom_registers *regs;
2523 struct platform_device *op = hp->happy_dev;
2524 regs = of_get_property(op->dev.of_node, "regs", NULL);
2526 snprintf(info->bus_info, sizeof(info->bus_info),
2533 static u32 hme_get_link(struct net_device *dev)
2535 struct happy_meal *hp = netdev_priv(dev);
2537 spin_lock_irq(&hp->happy_lock);
2538 hp->sw_bmcr = happy_meal_tcvr_read(hp, hp->tcvregs, MII_BMCR);
2539 spin_unlock_irq(&hp->happy_lock);
2541 return hp->sw_bmsr & BMSR_LSTATUS;
2544 static const struct ethtool_ops hme_ethtool_ops = {
2545 .get_drvinfo = hme_get_drvinfo,
2546 .get_link = hme_get_link,
2547 .get_link_ksettings = hme_get_link_ksettings,
2548 .set_link_ksettings = hme_set_link_ksettings,
2551 static int hme_version_printed;
2554 /* Given a happy meal sbus device, find it's quattro parent.
2555 * If none exist, allocate and return a new one.
2557 * Return NULL on failure.
2559 static struct quattro *quattro_sbus_find(struct platform_device *child)
2561 struct device *parent = child->dev.parent;
2562 struct platform_device *op;
2565 op = to_platform_device(parent);
2566 qp = platform_get_drvdata(op);
2570 qp = kmalloc(sizeof(struct quattro), GFP_KERNEL);
2574 for (i = 0; i < 4; i++)
2575 qp->happy_meals[i] = NULL;
2577 qp->quattro_dev = child;
2578 qp->next = qfe_sbus_list;
2581 platform_set_drvdata(op, qp);
2586 /* After all quattro cards have been probed, we call these functions
2587 * to register the IRQ handlers for the cards that have been
2588 * successfully probed and skip the cards that failed to initialize
2590 static int __init quattro_sbus_register_irqs(void)
2594 for (qp = qfe_sbus_list; qp != NULL; qp = qp->next) {
2595 struct platform_device *op = qp->quattro_dev;
2596 int err, qfe_slot, skip = 0;
2598 for (qfe_slot = 0; qfe_slot < 4; qfe_slot++) {
2599 if (!qp->happy_meals[qfe_slot])
2605 err = request_irq(op->archdata.irqs[0],
2606 quattro_sbus_interrupt,
2607 IRQF_SHARED, "Quattro",
2610 printk(KERN_ERR "Quattro HME: IRQ registration "
2611 "error %d.\n", err);
2619 static void quattro_sbus_free_irqs(void)
2623 for (qp = qfe_sbus_list; qp != NULL; qp = qp->next) {
2624 struct platform_device *op = qp->quattro_dev;
2625 int qfe_slot, skip = 0;
2627 for (qfe_slot = 0; qfe_slot < 4; qfe_slot++) {
2628 if (!qp->happy_meals[qfe_slot])
2634 free_irq(op->archdata.irqs[0], qp);
2637 #endif /* CONFIG_SBUS */
2640 static struct quattro *quattro_pci_find(struct pci_dev *pdev)
2642 struct pci_dev *bdev = pdev->bus->self;
2645 if (!bdev) return NULL;
2646 for (qp = qfe_pci_list; qp != NULL; qp = qp->next) {
2647 struct pci_dev *qpdev = qp->quattro_dev;
2652 qp = kmalloc(sizeof(struct quattro), GFP_KERNEL);
2656 for (i = 0; i < 4; i++)
2657 qp->happy_meals[i] = NULL;
2659 qp->quattro_dev = bdev;
2660 qp->next = qfe_pci_list;
2663 /* No range tricks necessary on PCI. */
2668 #endif /* CONFIG_PCI */
2670 static const struct net_device_ops hme_netdev_ops = {
2671 .ndo_open = happy_meal_open,
2672 .ndo_stop = happy_meal_close,
2673 .ndo_start_xmit = happy_meal_start_xmit,
2674 .ndo_tx_timeout = happy_meal_tx_timeout,
2675 .ndo_get_stats = happy_meal_get_stats,
2676 .ndo_set_rx_mode = happy_meal_set_multicast,
2677 .ndo_set_mac_address = eth_mac_addr,
2678 .ndo_validate_addr = eth_validate_addr,
2682 static int happy_meal_sbus_probe_one(struct platform_device *op, int is_qfe)
2684 struct device_node *dp = op->dev.of_node, *sbus_dp;
2685 struct quattro *qp = NULL;
2686 struct happy_meal *hp;
2687 struct net_device *dev;
2688 int i, qfe_slot = -1;
2691 sbus_dp = op->dev.parent->of_node;
2693 /* We can match PCI devices too, do not accept those here. */
2694 if (!of_node_name_eq(sbus_dp, "sbus") && !of_node_name_eq(sbus_dp, "sbi"))
2698 qp = quattro_sbus_find(op);
2701 for (qfe_slot = 0; qfe_slot < 4; qfe_slot++)
2702 if (qp->happy_meals[qfe_slot] == NULL)
2709 dev = alloc_etherdev(sizeof(struct happy_meal));
2712 SET_NETDEV_DEV(dev, &op->dev);
2714 if (hme_version_printed++ == 0)
2715 printk(KERN_INFO "%s", version);
2717 /* If user did not specify a MAC address specifically, use
2718 * the Quattro local-mac-address property...
2720 for (i = 0; i < 6; i++) {
2721 if (macaddr[i] != 0)
2724 if (i < 6) { /* a mac address was given */
2725 for (i = 0; i < 6; i++)
2726 dev->dev_addr[i] = macaddr[i];
2729 const unsigned char *addr;
2732 addr = of_get_property(dp, "local-mac-address", &len);
2734 if (qfe_slot != -1 && addr && len == ETH_ALEN)
2735 memcpy(dev->dev_addr, addr, ETH_ALEN);
2737 memcpy(dev->dev_addr, idprom->id_ethaddr, ETH_ALEN);
2740 hp = netdev_priv(dev);
2743 hp->dma_dev = &op->dev;
2745 spin_lock_init(&hp->happy_lock);
2749 hp->qfe_parent = qp;
2750 hp->qfe_ent = qfe_slot;
2751 qp->happy_meals[qfe_slot] = dev;
2754 hp->gregs = of_ioremap(&op->resource[0], 0,
2755 GREG_REG_SIZE, "HME Global Regs");
2757 printk(KERN_ERR "happymeal: Cannot map global registers.\n");
2758 goto err_out_free_netdev;
2761 hp->etxregs = of_ioremap(&op->resource[1], 0,
2762 ETX_REG_SIZE, "HME TX Regs");
2764 printk(KERN_ERR "happymeal: Cannot map MAC TX registers.\n");
2765 goto err_out_iounmap;
2768 hp->erxregs = of_ioremap(&op->resource[2], 0,
2769 ERX_REG_SIZE, "HME RX Regs");
2771 printk(KERN_ERR "happymeal: Cannot map MAC RX registers.\n");
2772 goto err_out_iounmap;
2775 hp->bigmacregs = of_ioremap(&op->resource[3], 0,
2776 BMAC_REG_SIZE, "HME BIGMAC Regs");
2777 if (!hp->bigmacregs) {
2778 printk(KERN_ERR "happymeal: Cannot map BIGMAC registers.\n");
2779 goto err_out_iounmap;
2782 hp->tcvregs = of_ioremap(&op->resource[4], 0,
2783 TCVR_REG_SIZE, "HME Tranceiver Regs");
2785 printk(KERN_ERR "happymeal: Cannot map TCVR registers.\n");
2786 goto err_out_iounmap;
2789 hp->hm_revision = of_getintprop_default(dp, "hm-rev", 0xff);
2790 if (hp->hm_revision == 0xff)
2791 hp->hm_revision = 0xa0;
2793 /* Now enable the feature flags we can. */
2794 if (hp->hm_revision == 0x20 || hp->hm_revision == 0x21)
2795 hp->happy_flags = HFLAG_20_21;
2796 else if (hp->hm_revision != 0xa0)
2797 hp->happy_flags = HFLAG_NOT_A0;
2800 hp->happy_flags |= HFLAG_QUATTRO;
2802 /* Get the supported DVMA burst sizes from our Happy SBUS. */
2803 hp->happy_bursts = of_getintprop_default(sbus_dp,
2804 "burst-sizes", 0x00);
2806 hp->happy_block = dma_alloc_coherent(hp->dma_dev,
2811 if (!hp->happy_block)
2812 goto err_out_iounmap;
2814 /* Force check of the link first time we are brought up. */
2817 /* Force timer state to 'asleep' with count of zero. */
2818 hp->timer_state = asleep;
2819 hp->timer_ticks = 0;
2821 timer_setup(&hp->happy_timer, happy_meal_timer, 0);
2824 dev->netdev_ops = &hme_netdev_ops;
2825 dev->watchdog_timeo = 5*HZ;
2826 dev->ethtool_ops = &hme_ethtool_ops;
2828 /* Happy Meal can do it all... */
2829 dev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM;
2830 dev->features |= dev->hw_features | NETIF_F_RXCSUM;
2832 hp->irq = op->archdata.irqs[0];
2834 #if defined(CONFIG_SBUS) && defined(CONFIG_PCI)
2835 /* Hook up SBUS register/descriptor accessors. */
2836 hp->read_desc32 = sbus_hme_read_desc32;
2837 hp->write_txd = sbus_hme_write_txd;
2838 hp->write_rxd = sbus_hme_write_rxd;
2839 hp->read32 = sbus_hme_read32;
2840 hp->write32 = sbus_hme_write32;
2843 /* Grrr, Happy Meal comes up by default not advertising
2844 * full duplex 100baseT capabilities, fix this.
2846 spin_lock_irq(&hp->happy_lock);
2847 happy_meal_set_initial_advertisement(hp);
2848 spin_unlock_irq(&hp->happy_lock);
2850 err = register_netdev(hp->dev);
2852 printk(KERN_ERR "happymeal: Cannot register net device, "
2854 goto err_out_free_coherent;
2857 platform_set_drvdata(op, hp);
2860 printk(KERN_INFO "%s: Quattro HME slot %d (SBUS) 10/100baseT Ethernet ",
2861 dev->name, qfe_slot);
2863 printk(KERN_INFO "%s: HAPPY MEAL (SBUS) 10/100baseT Ethernet ",
2866 printk("%pM\n", dev->dev_addr);
2870 err_out_free_coherent:
2871 dma_free_coherent(hp->dma_dev,
2878 of_iounmap(&op->resource[0], hp->gregs, GREG_REG_SIZE);
2880 of_iounmap(&op->resource[1], hp->etxregs, ETX_REG_SIZE);
2882 of_iounmap(&op->resource[2], hp->erxregs, ERX_REG_SIZE);
2884 of_iounmap(&op->resource[3], hp->bigmacregs, BMAC_REG_SIZE);
2886 of_iounmap(&op->resource[4], hp->tcvregs, TCVR_REG_SIZE);
2889 qp->happy_meals[qfe_slot] = NULL;
2891 err_out_free_netdev:
2900 #ifndef CONFIG_SPARC
2901 static int is_quattro_p(struct pci_dev *pdev)
2903 struct pci_dev *busdev = pdev->bus->self;
2904 struct pci_dev *this_pdev;
2907 if (busdev == NULL ||
2908 busdev->vendor != PCI_VENDOR_ID_DEC ||
2909 busdev->device != PCI_DEVICE_ID_DEC_21153)
2913 list_for_each_entry(this_pdev, &pdev->bus->devices, bus_list) {
2914 if (this_pdev->vendor == PCI_VENDOR_ID_SUN &&
2915 this_pdev->device == PCI_DEVICE_ID_SUN_HAPPYMEAL)
2925 /* Fetch MAC address from vital product data of PCI ROM. */
2926 static int find_eth_addr_in_vpd(void __iomem *rom_base, int len, int index, unsigned char *dev_addr)
2930 for (this_offset = 0x20; this_offset < len; this_offset++) {
2931 void __iomem *p = rom_base + this_offset;
2933 if (readb(p + 0) != 0x90 ||
2934 readb(p + 1) != 0x00 ||
2935 readb(p + 2) != 0x09 ||
2936 readb(p + 3) != 0x4e ||
2937 readb(p + 4) != 0x41 ||
2938 readb(p + 5) != 0x06)
2947 for (i = 0; i < 6; i++)
2948 dev_addr[i] = readb(p + i);
2956 static void get_hme_mac_nonsparc(struct pci_dev *pdev, unsigned char *dev_addr)
2959 void __iomem *p = pci_map_rom(pdev, &size);
2965 if (is_quattro_p(pdev))
2966 index = PCI_SLOT(pdev->devfn);
2968 found = readb(p) == 0x55 &&
2969 readb(p + 1) == 0xaa &&
2970 find_eth_addr_in_vpd(p, (64 * 1024), index, dev_addr);
2971 pci_unmap_rom(pdev, p);
2976 /* Sun MAC prefix then 3 random bytes. */
2980 get_random_bytes(&dev_addr[3], 3);
2982 #endif /* !(CONFIG_SPARC) */
2984 static int happy_meal_pci_probe(struct pci_dev *pdev,
2985 const struct pci_device_id *ent)
2987 struct quattro *qp = NULL;
2989 struct device_node *dp;
2991 struct happy_meal *hp;
2992 struct net_device *dev;
2993 void __iomem *hpreg_base;
2994 unsigned long hpreg_res;
2995 int i, qfe_slot = -1;
2999 /* Now make sure pci_dev cookie is there. */
3001 dp = pci_device_to_OF_node(pdev);
3002 snprintf(prom_name, sizeof(prom_name), "%pOFn", dp);
3004 if (is_quattro_p(pdev))
3005 strcpy(prom_name, "SUNW,qfe");
3007 strcpy(prom_name, "SUNW,hme");
3012 if (pci_enable_device(pdev))
3014 pci_set_master(pdev);
3016 if (!strcmp(prom_name, "SUNW,qfe") || !strcmp(prom_name, "qfe")) {
3017 qp = quattro_pci_find(pdev);
3020 for (qfe_slot = 0; qfe_slot < 4; qfe_slot++)
3021 if (qp->happy_meals[qfe_slot] == NULL)
3027 dev = alloc_etherdev(sizeof(struct happy_meal));
3031 SET_NETDEV_DEV(dev, &pdev->dev);
3033 if (hme_version_printed++ == 0)
3034 printk(KERN_INFO "%s", version);
3036 hp = netdev_priv(dev);
3038 hp->happy_dev = pdev;
3039 hp->dma_dev = &pdev->dev;
3041 spin_lock_init(&hp->happy_lock);
3044 hp->qfe_parent = qp;
3045 hp->qfe_ent = qfe_slot;
3046 qp->happy_meals[qfe_slot] = dev;
3049 hpreg_res = pci_resource_start(pdev, 0);
3051 if ((pci_resource_flags(pdev, 0) & IORESOURCE_IO) != 0) {
3052 printk(KERN_ERR "happymeal(PCI): Cannot find proper PCI device base address.\n");
3053 goto err_out_clear_quattro;
3055 if (pci_request_regions(pdev, DRV_NAME)) {
3056 printk(KERN_ERR "happymeal(PCI): Cannot obtain PCI resources, "
3058 goto err_out_clear_quattro;
3061 if ((hpreg_base = ioremap(hpreg_res, 0x8000)) == NULL) {
3062 printk(KERN_ERR "happymeal(PCI): Unable to remap card memory.\n");
3063 goto err_out_free_res;
3066 for (i = 0; i < 6; i++) {
3067 if (macaddr[i] != 0)
3070 if (i < 6) { /* a mac address was given */
3071 for (i = 0; i < 6; i++)
3072 dev->dev_addr[i] = macaddr[i];
3076 const unsigned char *addr;
3079 if (qfe_slot != -1 &&
3080 (addr = of_get_property(dp, "local-mac-address", &len))
3083 memcpy(dev->dev_addr, addr, ETH_ALEN);
3085 memcpy(dev->dev_addr, idprom->id_ethaddr, ETH_ALEN);
3088 get_hme_mac_nonsparc(pdev, &dev->dev_addr[0]);
3092 /* Layout registers. */
3093 hp->gregs = (hpreg_base + 0x0000UL);
3094 hp->etxregs = (hpreg_base + 0x2000UL);
3095 hp->erxregs = (hpreg_base + 0x4000UL);
3096 hp->bigmacregs = (hpreg_base + 0x6000UL);
3097 hp->tcvregs = (hpreg_base + 0x7000UL);
3100 hp->hm_revision = of_getintprop_default(dp, "hm-rev", 0xff);
3101 if (hp->hm_revision == 0xff)
3102 hp->hm_revision = 0xc0 | (pdev->revision & 0x0f);
3104 /* works with this on non-sparc hosts */
3105 hp->hm_revision = 0x20;
3108 /* Now enable the feature flags we can. */
3109 if (hp->hm_revision == 0x20 || hp->hm_revision == 0x21)
3110 hp->happy_flags = HFLAG_20_21;
3111 else if (hp->hm_revision != 0xa0 && hp->hm_revision != 0xc0)
3112 hp->happy_flags = HFLAG_NOT_A0;
3115 hp->happy_flags |= HFLAG_QUATTRO;
3117 /* And of course, indicate this is PCI. */
3118 hp->happy_flags |= HFLAG_PCI;
3121 /* Assume PCI happy meals can handle all burst sizes. */
3122 hp->happy_bursts = DMA_BURSTBITS;
3125 hp->happy_block = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,
3126 &hp->hblock_dvma, GFP_KERNEL);
3128 if (!hp->happy_block)
3129 goto err_out_iounmap;
3132 hp->timer_state = asleep;
3133 hp->timer_ticks = 0;
3135 timer_setup(&hp->happy_timer, happy_meal_timer, 0);
3137 hp->irq = pdev->irq;
3139 dev->netdev_ops = &hme_netdev_ops;
3140 dev->watchdog_timeo = 5*HZ;
3141 dev->ethtool_ops = &hme_ethtool_ops;
3143 /* Happy Meal can do it all... */
3144 dev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM;
3145 dev->features |= dev->hw_features | NETIF_F_RXCSUM;
3147 #if defined(CONFIG_SBUS) && defined(CONFIG_PCI)
3148 /* Hook up PCI register/descriptor accessors. */
3149 hp->read_desc32 = pci_hme_read_desc32;
3150 hp->write_txd = pci_hme_write_txd;
3151 hp->write_rxd = pci_hme_write_rxd;
3152 hp->read32 = pci_hme_read32;
3153 hp->write32 = pci_hme_write32;
3156 /* Grrr, Happy Meal comes up by default not advertising
3157 * full duplex 100baseT capabilities, fix this.
3159 spin_lock_irq(&hp->happy_lock);
3160 happy_meal_set_initial_advertisement(hp);
3161 spin_unlock_irq(&hp->happy_lock);
3163 err = register_netdev(hp->dev);
3165 printk(KERN_ERR "happymeal(PCI): Cannot register net device, "
3167 goto err_out_iounmap;
3170 pci_set_drvdata(pdev, hp);
3173 struct pci_dev *qpdev = qp->quattro_dev;
3176 if (!strncmp(dev->name, "eth", 3)) {
3177 int i = simple_strtoul(dev->name + 3, NULL, 10);
3178 sprintf(prom_name, "-%d", i + 3);
3180 printk(KERN_INFO "%s%s: Quattro HME (PCI/CheerIO) 10/100baseT Ethernet ", dev->name, prom_name);
3181 if (qpdev->vendor == PCI_VENDOR_ID_DEC &&
3182 qpdev->device == PCI_DEVICE_ID_DEC_21153)
3183 printk("DEC 21153 PCI Bridge\n");
3185 printk("unknown bridge %04x.%04x\n",
3186 qpdev->vendor, qpdev->device);
3190 printk(KERN_INFO "%s: Quattro HME slot %d (PCI/CheerIO) 10/100baseT Ethernet ",
3191 dev->name, qfe_slot);
3193 printk(KERN_INFO "%s: HAPPY MEAL (PCI/CheerIO) 10/100BaseT Ethernet ",
3196 printk("%pM\n", dev->dev_addr);
3204 pci_release_regions(pdev);
3206 err_out_clear_quattro:
3208 qp->happy_meals[qfe_slot] = NULL;
3216 static void happy_meal_pci_remove(struct pci_dev *pdev)
3218 struct happy_meal *hp = pci_get_drvdata(pdev);
3219 struct net_device *net_dev = hp->dev;
3221 unregister_netdev(net_dev);
3223 dma_free_coherent(hp->dma_dev, PAGE_SIZE,
3224 hp->happy_block, hp->hblock_dvma);
3226 pci_release_regions(hp->happy_dev);
3228 free_netdev(net_dev);
3231 static const struct pci_device_id happymeal_pci_ids[] = {
3232 { PCI_DEVICE(PCI_VENDOR_ID_SUN, PCI_DEVICE_ID_SUN_HAPPYMEAL) },
3233 { } /* Terminating entry */
3236 MODULE_DEVICE_TABLE(pci, happymeal_pci_ids);
3238 static struct pci_driver hme_pci_driver = {
3240 .id_table = happymeal_pci_ids,
3241 .probe = happy_meal_pci_probe,
3242 .remove = happy_meal_pci_remove,
3245 static int __init happy_meal_pci_init(void)
3247 return pci_register_driver(&hme_pci_driver);
3250 static void happy_meal_pci_exit(void)
3252 pci_unregister_driver(&hme_pci_driver);
3254 while (qfe_pci_list) {
3255 struct quattro *qfe = qfe_pci_list;
3256 struct quattro *next = qfe->next;
3260 qfe_pci_list = next;
3267 static const struct of_device_id hme_sbus_match[];
3268 static int hme_sbus_probe(struct platform_device *op)
3270 const struct of_device_id *match;
3271 struct device_node *dp = op->dev.of_node;
3272 const char *model = of_get_property(dp, "model", NULL);
3275 match = of_match_device(hme_sbus_match, &op->dev);
3278 is_qfe = (match->data != NULL);
3280 if (!is_qfe && model && !strcmp(model, "SUNW,sbus-qfe"))
3283 return happy_meal_sbus_probe_one(op, is_qfe);
3286 static int hme_sbus_remove(struct platform_device *op)
3288 struct happy_meal *hp = platform_get_drvdata(op);
3289 struct net_device *net_dev = hp->dev;
3291 unregister_netdev(net_dev);
3293 /* XXX qfe parent interrupt... */
3295 of_iounmap(&op->resource[0], hp->gregs, GREG_REG_SIZE);
3296 of_iounmap(&op->resource[1], hp->etxregs, ETX_REG_SIZE);
3297 of_iounmap(&op->resource[2], hp->erxregs, ERX_REG_SIZE);
3298 of_iounmap(&op->resource[3], hp->bigmacregs, BMAC_REG_SIZE);
3299 of_iounmap(&op->resource[4], hp->tcvregs, TCVR_REG_SIZE);
3300 dma_free_coherent(hp->dma_dev,
3305 free_netdev(net_dev);
3310 static const struct of_device_id hme_sbus_match[] = {
3325 MODULE_DEVICE_TABLE(of, hme_sbus_match);
3327 static struct platform_driver hme_sbus_driver = {
3330 .of_match_table = hme_sbus_match,
3332 .probe = hme_sbus_probe,
3333 .remove = hme_sbus_remove,
3336 static int __init happy_meal_sbus_init(void)
3340 err = platform_driver_register(&hme_sbus_driver);
3342 err = quattro_sbus_register_irqs();
3347 static void happy_meal_sbus_exit(void)
3349 platform_driver_unregister(&hme_sbus_driver);
3350 quattro_sbus_free_irqs();
3352 while (qfe_sbus_list) {
3353 struct quattro *qfe = qfe_sbus_list;
3354 struct quattro *next = qfe->next;
3358 qfe_sbus_list = next;
3363 static int __init happy_meal_probe(void)
3368 err = happy_meal_sbus_init();
3372 err = happy_meal_pci_init();
3375 happy_meal_sbus_exit();
3384 static void __exit happy_meal_exit(void)
3387 happy_meal_sbus_exit();
3390 happy_meal_pci_exit();
3394 module_init(happy_meal_probe);
3395 module_exit(happy_meal_exit);