1 /* niu.c: Neptune ethernet driver.
3 * Copyright (C) 2007 David S. Miller (davem@davemloft.net)
6 #include <linux/module.h>
7 #include <linux/init.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/netdevice.h>
11 #include <linux/ethtool.h>
12 #include <linux/etherdevice.h>
13 #include <linux/platform_device.h>
14 #include <linux/delay.h>
15 #include <linux/bitops.h>
16 #include <linux/mii.h>
17 #include <linux/if_ether.h>
18 #include <linux/if_vlan.h>
21 #include <linux/ipv6.h>
22 #include <linux/log2.h>
23 #include <linux/jiffies.h>
24 #include <linux/crc32.h>
29 #include <linux/of_device.h>
34 #define DRV_MODULE_NAME "niu"
35 #define PFX DRV_MODULE_NAME ": "
36 #define DRV_MODULE_VERSION "0.6"
37 #define DRV_MODULE_RELDATE "January 5, 2008"
39 static char version[] __devinitdata =
40 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
42 MODULE_AUTHOR("David S. Miller (davem@davemloft.net)");
43 MODULE_DESCRIPTION("NIU ethernet driver");
44 MODULE_LICENSE("GPL");
45 MODULE_VERSION(DRV_MODULE_VERSION);
47 #ifndef DMA_44BIT_MASK
48 #define DMA_44BIT_MASK 0x00000fffffffffffULL
52 static u64 readq(void __iomem *reg)
54 return (((u64)readl(reg + 0x4UL) << 32) |
58 static void writeq(u64 val, void __iomem *reg)
60 writel(val & 0xffffffff, reg);
61 writel(val >> 32, reg + 0x4UL);
65 static struct pci_device_id niu_pci_tbl[] = {
66 {PCI_DEVICE(PCI_VENDOR_ID_SUN, 0xabcd)},
70 MODULE_DEVICE_TABLE(pci, niu_pci_tbl);
72 #define NIU_TX_TIMEOUT (5 * HZ)
74 #define nr64(reg) readq(np->regs + (reg))
75 #define nw64(reg, val) writeq((val), np->regs + (reg))
77 #define nr64_mac(reg) readq(np->mac_regs + (reg))
78 #define nw64_mac(reg, val) writeq((val), np->mac_regs + (reg))
80 #define nr64_ipp(reg) readq(np->regs + np->ipp_off + (reg))
81 #define nw64_ipp(reg, val) writeq((val), np->regs + np->ipp_off + (reg))
83 #define nr64_pcs(reg) readq(np->regs + np->pcs_off + (reg))
84 #define nw64_pcs(reg, val) writeq((val), np->regs + np->pcs_off + (reg))
86 #define nr64_xpcs(reg) readq(np->regs + np->xpcs_off + (reg))
87 #define nw64_xpcs(reg, val) writeq((val), np->regs + np->xpcs_off + (reg))
89 #define NIU_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
92 static int debug = -1;
93 module_param(debug, int, 0);
94 MODULE_PARM_DESC(debug, "NIU debug level");
96 #define niudbg(TYPE, f, a...) \
97 do { if ((np)->msg_enable & NETIF_MSG_##TYPE) \
98 printk(KERN_DEBUG PFX f, ## a); \
101 #define niuinfo(TYPE, f, a...) \
102 do { if ((np)->msg_enable & NETIF_MSG_##TYPE) \
103 printk(KERN_INFO PFX f, ## a); \
106 #define niuwarn(TYPE, f, a...) \
107 do { if ((np)->msg_enable & NETIF_MSG_##TYPE) \
108 printk(KERN_WARNING PFX f, ## a); \
111 #define niu_lock_parent(np, flags) \
112 spin_lock_irqsave(&np->parent->lock, flags)
113 #define niu_unlock_parent(np, flags) \
114 spin_unlock_irqrestore(&np->parent->lock, flags)
116 static int __niu_wait_bits_clear_mac(struct niu *np, unsigned long reg,
117 u64 bits, int limit, int delay)
119 while (--limit >= 0) {
120 u64 val = nr64_mac(reg);
131 static int __niu_set_and_wait_clear_mac(struct niu *np, unsigned long reg,
132 u64 bits, int limit, int delay,
133 const char *reg_name)
138 err = __niu_wait_bits_clear_mac(np, reg, bits, limit, delay);
140 dev_err(np->device, PFX "%s: bits (%llx) of register %s "
141 "would not clear, val[%llx]\n",
142 np->dev->name, (unsigned long long) bits, reg_name,
143 (unsigned long long) nr64_mac(reg));
147 #define niu_set_and_wait_clear_mac(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
148 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
149 __niu_set_and_wait_clear_mac(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
152 static int __niu_wait_bits_clear_ipp(struct niu *np, unsigned long reg,
153 u64 bits, int limit, int delay)
155 while (--limit >= 0) {
156 u64 val = nr64_ipp(reg);
167 static int __niu_set_and_wait_clear_ipp(struct niu *np, unsigned long reg,
168 u64 bits, int limit, int delay,
169 const char *reg_name)
178 err = __niu_wait_bits_clear_ipp(np, reg, bits, limit, delay);
180 dev_err(np->device, PFX "%s: bits (%llx) of register %s "
181 "would not clear, val[%llx]\n",
182 np->dev->name, (unsigned long long) bits, reg_name,
183 (unsigned long long) nr64_ipp(reg));
187 #define niu_set_and_wait_clear_ipp(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
188 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
189 __niu_set_and_wait_clear_ipp(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
192 static int __niu_wait_bits_clear(struct niu *np, unsigned long reg,
193 u64 bits, int limit, int delay)
195 while (--limit >= 0) {
207 #define niu_wait_bits_clear(NP, REG, BITS, LIMIT, DELAY) \
208 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
209 __niu_wait_bits_clear(NP, REG, BITS, LIMIT, DELAY); \
212 static int __niu_set_and_wait_clear(struct niu *np, unsigned long reg,
213 u64 bits, int limit, int delay,
214 const char *reg_name)
219 err = __niu_wait_bits_clear(np, reg, bits, limit, delay);
221 dev_err(np->device, PFX "%s: bits (%llx) of register %s "
222 "would not clear, val[%llx]\n",
223 np->dev->name, (unsigned long long) bits, reg_name,
224 (unsigned long long) nr64(reg));
228 #define niu_set_and_wait_clear(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
229 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
230 __niu_set_and_wait_clear(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
233 static void niu_ldg_rearm(struct niu *np, struct niu_ldg *lp, int on)
235 u64 val = (u64) lp->timer;
238 val |= LDG_IMGMT_ARM;
240 nw64(LDG_IMGMT(lp->ldg_num), val);
243 static int niu_ldn_irq_enable(struct niu *np, int ldn, int on)
245 unsigned long mask_reg, bits;
248 if (ldn < 0 || ldn > LDN_MAX)
252 mask_reg = LD_IM0(ldn);
255 mask_reg = LD_IM1(ldn - 64);
259 val = nr64(mask_reg);
269 static int niu_enable_ldn_in_ldg(struct niu *np, struct niu_ldg *lp, int on)
271 struct niu_parent *parent = np->parent;
274 for (i = 0; i <= LDN_MAX; i++) {
277 if (parent->ldg_map[i] != lp->ldg_num)
280 err = niu_ldn_irq_enable(np, i, on);
287 static int niu_enable_interrupts(struct niu *np, int on)
291 for (i = 0; i < np->num_ldg; i++) {
292 struct niu_ldg *lp = &np->ldg[i];
295 err = niu_enable_ldn_in_ldg(np, lp, on);
299 for (i = 0; i < np->num_ldg; i++)
300 niu_ldg_rearm(np, &np->ldg[i], on);
305 static u32 phy_encode(u32 type, int port)
307 return (type << (port * 2));
310 static u32 phy_decode(u32 val, int port)
312 return (val >> (port * 2)) & PORT_TYPE_MASK;
315 static int mdio_wait(struct niu *np)
320 while (--limit > 0) {
321 val = nr64(MIF_FRAME_OUTPUT);
322 if ((val >> MIF_FRAME_OUTPUT_TA_SHIFT) & 0x1)
323 return val & MIF_FRAME_OUTPUT_DATA;
331 static int mdio_read(struct niu *np, int port, int dev, int reg)
335 nw64(MIF_FRAME_OUTPUT, MDIO_ADDR_OP(port, dev, reg));
340 nw64(MIF_FRAME_OUTPUT, MDIO_READ_OP(port, dev));
341 return mdio_wait(np);
344 static int mdio_write(struct niu *np, int port, int dev, int reg, int data)
348 nw64(MIF_FRAME_OUTPUT, MDIO_ADDR_OP(port, dev, reg));
353 nw64(MIF_FRAME_OUTPUT, MDIO_WRITE_OP(port, dev, data));
361 static int mii_read(struct niu *np, int port, int reg)
363 nw64(MIF_FRAME_OUTPUT, MII_READ_OP(port, reg));
364 return mdio_wait(np);
367 static int mii_write(struct niu *np, int port, int reg, int data)
371 nw64(MIF_FRAME_OUTPUT, MII_WRITE_OP(port, reg, data));
379 static int esr2_set_tx_cfg(struct niu *np, unsigned long channel, u32 val)
383 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
384 ESR2_TI_PLL_TX_CFG_L(channel),
387 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
388 ESR2_TI_PLL_TX_CFG_H(channel),
393 static int esr2_set_rx_cfg(struct niu *np, unsigned long channel, u32 val)
397 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
398 ESR2_TI_PLL_RX_CFG_L(channel),
401 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
402 ESR2_TI_PLL_RX_CFG_H(channel),
407 /* Mode is always 10G fiber. */
408 static int serdes_init_niu(struct niu *np)
410 struct niu_link_config *lp = &np->link_config;
414 tx_cfg = (PLL_TX_CFG_ENTX | PLL_TX_CFG_SWING_1375MV);
415 rx_cfg = (PLL_RX_CFG_ENRX | PLL_RX_CFG_TERM_0P8VDDT |
416 PLL_RX_CFG_ALIGN_ENA | PLL_RX_CFG_LOS_LTHRESH |
417 PLL_RX_CFG_EQ_LP_ADAPTIVE);
419 if (lp->loopback_mode == LOOPBACK_PHY) {
420 u16 test_cfg = PLL_TEST_CFG_LOOPBACK_CML_DIS;
422 mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
423 ESR2_TI_PLL_TEST_CFG_L, test_cfg);
425 tx_cfg |= PLL_TX_CFG_ENTEST;
426 rx_cfg |= PLL_RX_CFG_ENTEST;
429 /* Initialize all 4 lanes of the SERDES. */
430 for (i = 0; i < 4; i++) {
431 int err = esr2_set_tx_cfg(np, i, tx_cfg);
436 for (i = 0; i < 4; i++) {
437 int err = esr2_set_rx_cfg(np, i, rx_cfg);
445 static int esr_read_rxtx_ctrl(struct niu *np, unsigned long chan, u32 *val)
449 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR, ESR_RXTX_CTRL_L(chan));
451 *val = (err & 0xffff);
452 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
453 ESR_RXTX_CTRL_H(chan));
455 *val |= ((err & 0xffff) << 16);
461 static int esr_read_glue0(struct niu *np, unsigned long chan, u32 *val)
465 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
466 ESR_GLUE_CTRL0_L(chan));
468 *val = (err & 0xffff);
469 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
470 ESR_GLUE_CTRL0_H(chan));
472 *val |= ((err & 0xffff) << 16);
479 static int esr_read_reset(struct niu *np, u32 *val)
483 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
484 ESR_RXTX_RESET_CTRL_L);
486 *val = (err & 0xffff);
487 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
488 ESR_RXTX_RESET_CTRL_H);
490 *val |= ((err & 0xffff) << 16);
497 static int esr_write_rxtx_ctrl(struct niu *np, unsigned long chan, u32 val)
501 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
502 ESR_RXTX_CTRL_L(chan), val & 0xffff);
504 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
505 ESR_RXTX_CTRL_H(chan), (val >> 16));
509 static int esr_write_glue0(struct niu *np, unsigned long chan, u32 val)
513 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
514 ESR_GLUE_CTRL0_L(chan), val & 0xffff);
516 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
517 ESR_GLUE_CTRL0_H(chan), (val >> 16));
521 static int esr_reset(struct niu *np)
526 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
527 ESR_RXTX_RESET_CTRL_L, 0x0000);
530 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
531 ESR_RXTX_RESET_CTRL_H, 0xffff);
536 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
537 ESR_RXTX_RESET_CTRL_L, 0xffff);
542 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
543 ESR_RXTX_RESET_CTRL_H, 0x0000);
548 err = esr_read_reset(np, &reset);
552 dev_err(np->device, PFX "Port %u ESR_RESET "
553 "did not clear [%08x]\n",
561 static int serdes_init_10g(struct niu *np)
563 struct niu_link_config *lp = &np->link_config;
564 unsigned long ctrl_reg, test_cfg_reg, i;
565 u64 ctrl_val, test_cfg_val, sig, mask, val;
570 ctrl_reg = ENET_SERDES_0_CTRL_CFG;
571 test_cfg_reg = ENET_SERDES_0_TEST_CFG;
574 ctrl_reg = ENET_SERDES_1_CTRL_CFG;
575 test_cfg_reg = ENET_SERDES_1_TEST_CFG;
581 ctrl_val = (ENET_SERDES_CTRL_SDET_0 |
582 ENET_SERDES_CTRL_SDET_1 |
583 ENET_SERDES_CTRL_SDET_2 |
584 ENET_SERDES_CTRL_SDET_3 |
585 (0x5 << ENET_SERDES_CTRL_EMPH_0_SHIFT) |
586 (0x5 << ENET_SERDES_CTRL_EMPH_1_SHIFT) |
587 (0x5 << ENET_SERDES_CTRL_EMPH_2_SHIFT) |
588 (0x5 << ENET_SERDES_CTRL_EMPH_3_SHIFT) |
589 (0x1 << ENET_SERDES_CTRL_LADJ_0_SHIFT) |
590 (0x1 << ENET_SERDES_CTRL_LADJ_1_SHIFT) |
591 (0x1 << ENET_SERDES_CTRL_LADJ_2_SHIFT) |
592 (0x1 << ENET_SERDES_CTRL_LADJ_3_SHIFT));
595 if (lp->loopback_mode == LOOPBACK_PHY) {
596 test_cfg_val |= ((ENET_TEST_MD_PAD_LOOPBACK <<
597 ENET_SERDES_TEST_MD_0_SHIFT) |
598 (ENET_TEST_MD_PAD_LOOPBACK <<
599 ENET_SERDES_TEST_MD_1_SHIFT) |
600 (ENET_TEST_MD_PAD_LOOPBACK <<
601 ENET_SERDES_TEST_MD_2_SHIFT) |
602 (ENET_TEST_MD_PAD_LOOPBACK <<
603 ENET_SERDES_TEST_MD_3_SHIFT));
606 nw64(ctrl_reg, ctrl_val);
607 nw64(test_cfg_reg, test_cfg_val);
609 /* Initialize all 4 lanes of the SERDES. */
610 for (i = 0; i < 4; i++) {
611 u32 rxtx_ctrl, glue0;
613 err = esr_read_rxtx_ctrl(np, i, &rxtx_ctrl);
616 err = esr_read_glue0(np, i, &glue0);
620 rxtx_ctrl &= ~(ESR_RXTX_CTRL_VMUXLO);
621 rxtx_ctrl |= (ESR_RXTX_CTRL_ENSTRETCH |
622 (2 << ESR_RXTX_CTRL_VMUXLO_SHIFT));
624 glue0 &= ~(ESR_GLUE_CTRL0_SRATE |
625 ESR_GLUE_CTRL0_THCNT |
626 ESR_GLUE_CTRL0_BLTIME);
627 glue0 |= (ESR_GLUE_CTRL0_RXLOSENAB |
628 (0xf << ESR_GLUE_CTRL0_SRATE_SHIFT) |
629 (0xff << ESR_GLUE_CTRL0_THCNT_SHIFT) |
630 (BLTIME_300_CYCLES <<
631 ESR_GLUE_CTRL0_BLTIME_SHIFT));
633 err = esr_write_rxtx_ctrl(np, i, rxtx_ctrl);
636 err = esr_write_glue0(np, i, glue0);
645 sig = nr64(ESR_INT_SIGNALS);
648 mask = ESR_INT_SIGNALS_P0_BITS;
649 val = (ESR_INT_SRDY0_P0 |
659 mask = ESR_INT_SIGNALS_P1_BITS;
660 val = (ESR_INT_SRDY0_P1 |
673 if ((sig & mask) != val) {
674 dev_err(np->device, PFX "Port %u signal bits [%08x] are not "
675 "[%08x]\n", np->port, (int) (sig & mask), (int) val);
682 static int serdes_init_1g(struct niu *np)
686 val = nr64(ENET_SERDES_1_PLL_CFG);
687 val &= ~ENET_SERDES_PLL_FBDIV2;
690 val |= ENET_SERDES_PLL_HRATE0;
693 val |= ENET_SERDES_PLL_HRATE1;
696 val |= ENET_SERDES_PLL_HRATE2;
699 val |= ENET_SERDES_PLL_HRATE3;
704 nw64(ENET_SERDES_1_PLL_CFG, val);
709 static int bcm8704_reset(struct niu *np)
713 err = mdio_read(np, np->phy_addr,
714 BCM8704_PHYXS_DEV_ADDR, MII_BMCR);
718 err = mdio_write(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
724 while (--limit >= 0) {
725 err = mdio_read(np, np->phy_addr,
726 BCM8704_PHYXS_DEV_ADDR, MII_BMCR);
729 if (!(err & BMCR_RESET))
733 dev_err(np->device, PFX "Port %u PHY will not reset "
734 "(bmcr=%04x)\n", np->port, (err & 0xffff));
740 /* When written, certain PHY registers need to be read back twice
741 * in order for the bits to settle properly.
743 static int bcm8704_user_dev3_readback(struct niu *np, int reg)
745 int err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, reg);
748 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, reg);
754 static int bcm8704_init_user_dev3(struct niu *np)
758 err = mdio_write(np, np->phy_addr,
759 BCM8704_USER_DEV3_ADDR, BCM8704_USER_CONTROL,
760 (USER_CONTROL_OPTXRST_LVL |
761 USER_CONTROL_OPBIASFLT_LVL |
762 USER_CONTROL_OBTMPFLT_LVL |
763 USER_CONTROL_OPPRFLT_LVL |
764 USER_CONTROL_OPTXFLT_LVL |
765 USER_CONTROL_OPRXLOS_LVL |
766 USER_CONTROL_OPRXFLT_LVL |
767 USER_CONTROL_OPTXON_LVL |
768 (0x3f << USER_CONTROL_RES1_SHIFT)));
772 err = mdio_write(np, np->phy_addr,
773 BCM8704_USER_DEV3_ADDR, BCM8704_USER_PMD_TX_CONTROL,
774 (USER_PMD_TX_CTL_XFP_CLKEN |
775 (1 << USER_PMD_TX_CTL_TX_DAC_TXD_SH) |
776 (2 << USER_PMD_TX_CTL_TX_DAC_TXCK_SH) |
777 USER_PMD_TX_CTL_TSCK_LPWREN));
781 err = bcm8704_user_dev3_readback(np, BCM8704_USER_CONTROL);
784 err = bcm8704_user_dev3_readback(np, BCM8704_USER_PMD_TX_CONTROL);
788 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
789 BCM8704_USER_OPT_DIGITAL_CTRL);
792 err &= ~USER_ODIG_CTRL_GPIOS;
793 err |= (0x3 << USER_ODIG_CTRL_GPIOS_SHIFT);
794 err = mdio_write(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
795 BCM8704_USER_OPT_DIGITAL_CTRL, err);
804 static int mrvl88x2011_act_led(struct niu *np, int val)
808 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
809 MRVL88X2011_LED_8_TO_11_CTL);
813 err &= ~MRVL88X2011_LED(MRVL88X2011_LED_ACT,MRVL88X2011_LED_CTL_MASK);
814 err |= MRVL88X2011_LED(MRVL88X2011_LED_ACT,val);
816 return mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
817 MRVL88X2011_LED_8_TO_11_CTL, err);
820 static int mrvl88x2011_led_blink_rate(struct niu *np, int rate)
824 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
825 MRVL88X2011_LED_BLINK_CTL);
827 err &= ~MRVL88X2011_LED_BLKRATE_MASK;
830 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
831 MRVL88X2011_LED_BLINK_CTL, err);
837 static int xcvr_init_10g_mrvl88x2011(struct niu *np)
841 /* Set LED functions */
842 err = mrvl88x2011_led_blink_rate(np, MRVL88X2011_LED_BLKRATE_134MS);
847 err = mrvl88x2011_act_led(np, MRVL88X2011_LED_CTL_OFF);
851 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
852 MRVL88X2011_GENERAL_CTL);
856 err |= MRVL88X2011_ENA_XFPREFCLK;
858 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
859 MRVL88X2011_GENERAL_CTL, err);
863 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
864 MRVL88X2011_PMA_PMD_CTL_1);
868 if (np->link_config.loopback_mode == LOOPBACK_MAC)
869 err |= MRVL88X2011_LOOPBACK;
871 err &= ~MRVL88X2011_LOOPBACK;
873 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
874 MRVL88X2011_PMA_PMD_CTL_1, err);
879 return mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
880 MRVL88X2011_10G_PMD_TX_DIS, MRVL88X2011_ENA_PMDTX);
883 static int xcvr_init_10g_bcm8704(struct niu *np)
885 struct niu_link_config *lp = &np->link_config;
886 u16 analog_stat0, tx_alarm_status;
889 err = bcm8704_reset(np);
893 err = bcm8704_init_user_dev3(np);
897 err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
901 err &= ~BMCR_LOOPBACK;
903 if (lp->loopback_mode == LOOPBACK_MAC)
904 err |= BMCR_LOOPBACK;
906 err = mdio_write(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
912 err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
916 pr_info(PFX "Port %u PMA_PMD(MII_STAT1000) [%04x]\n",
919 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, 0x20);
922 pr_info(PFX "Port %u USER_DEV3(0x20) [%04x]\n",
925 err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
929 pr_info(PFX "Port %u PHYXS(MII_NWAYTEST) [%04x]\n",
933 /* XXX dig this out it might not be so useful XXX */
934 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
935 BCM8704_USER_ANALOG_STATUS0);
938 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
939 BCM8704_USER_ANALOG_STATUS0);
944 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
945 BCM8704_USER_TX_ALARM_STATUS);
948 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
949 BCM8704_USER_TX_ALARM_STATUS);
952 tx_alarm_status = err;
954 if (analog_stat0 != 0x03fc) {
955 if ((analog_stat0 == 0x43bc) && (tx_alarm_status != 0)) {
956 pr_info(PFX "Port %u cable not connected "
957 "or bad cable.\n", np->port);
958 } else if (analog_stat0 == 0x639c) {
959 pr_info(PFX "Port %u optical module is bad "
960 "or missing.\n", np->port);
967 static int xcvr_init_10g(struct niu *np)
972 val = nr64_mac(XMAC_CONFIG);
973 val &= ~XMAC_CONFIG_LED_POLARITY;
974 val |= XMAC_CONFIG_FORCE_LED_ON;
975 nw64_mac(XMAC_CONFIG, val);
977 /* XXX shared resource, lock parent XXX */
978 val = nr64(MIF_CONFIG);
979 val |= MIF_CONFIG_INDIRECT_MODE;
980 nw64(MIF_CONFIG, val);
982 phy_id = phy_decode(np->parent->port_phy, np->port);
983 phy_id = np->parent->phy_probe_info.phy_id[phy_id][np->port];
985 /* handle different phy types */
986 switch (phy_id & NIU_PHY_ID_MASK) {
987 case NIU_PHY_ID_MRVL88X2011:
988 err = xcvr_init_10g_mrvl88x2011(np);
991 default: /* bcom 8704 */
992 err = xcvr_init_10g_bcm8704(np);
999 static int mii_reset(struct niu *np)
1003 err = mii_write(np, np->phy_addr, MII_BMCR, BMCR_RESET);
1008 while (--limit >= 0) {
1010 err = mii_read(np, np->phy_addr, MII_BMCR);
1013 if (!(err & BMCR_RESET))
1017 dev_err(np->device, PFX "Port %u MII would not reset, "
1018 "bmcr[%04x]\n", np->port, err);
1025 static int mii_init_common(struct niu *np)
1027 struct niu_link_config *lp = &np->link_config;
1028 u16 bmcr, bmsr, adv, estat;
1031 err = mii_reset(np);
1035 err = mii_read(np, np->phy_addr, MII_BMSR);
1041 if (bmsr & BMSR_ESTATEN) {
1042 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1049 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1053 if (lp->loopback_mode == LOOPBACK_MAC) {
1054 bmcr |= BMCR_LOOPBACK;
1055 if (lp->active_speed == SPEED_1000)
1056 bmcr |= BMCR_SPEED1000;
1057 if (lp->active_duplex == DUPLEX_FULL)
1058 bmcr |= BMCR_FULLDPLX;
1061 if (lp->loopback_mode == LOOPBACK_PHY) {
1064 aux = (BCM5464R_AUX_CTL_EXT_LB |
1065 BCM5464R_AUX_CTL_WRITE_1);
1066 err = mii_write(np, np->phy_addr, BCM5464R_AUX_CTL, aux);
1071 /* XXX configurable XXX */
1072 /* XXX for now don't advertise half-duplex or asym pause... XXX */
1073 adv = ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP;
1074 if (bmsr & BMSR_10FULL)
1075 adv |= ADVERTISE_10FULL;
1076 if (bmsr & BMSR_100FULL)
1077 adv |= ADVERTISE_100FULL;
1078 err = mii_write(np, np->phy_addr, MII_ADVERTISE, adv);
1082 if (bmsr & BMSR_ESTATEN) {
1085 if (estat & ESTATUS_1000_TFULL)
1086 ctrl1000 |= ADVERTISE_1000FULL;
1087 err = mii_write(np, np->phy_addr, MII_CTRL1000, ctrl1000);
1091 bmcr |= (BMCR_ANENABLE | BMCR_ANRESTART);
1093 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1097 err = mii_read(np, np->phy_addr, MII_BMCR);
1100 err = mii_read(np, np->phy_addr, MII_BMSR);
1104 pr_info(PFX "Port %u after MII init bmcr[%04x] bmsr[%04x]\n",
1105 np->port, bmcr, bmsr);
1111 static int xcvr_init_1g(struct niu *np)
1115 /* XXX shared resource, lock parent XXX */
1116 val = nr64(MIF_CONFIG);
1117 val &= ~MIF_CONFIG_INDIRECT_MODE;
1118 nw64(MIF_CONFIG, val);
1120 return mii_init_common(np);
1123 static int niu_xcvr_init(struct niu *np)
1125 const struct niu_phy_ops *ops = np->phy_ops;
1130 err = ops->xcvr_init(np);
1135 static int niu_serdes_init(struct niu *np)
1137 const struct niu_phy_ops *ops = np->phy_ops;
1141 if (ops->serdes_init)
1142 err = ops->serdes_init(np);
1147 static void niu_init_xif(struct niu *);
1148 static void niu_handle_led(struct niu *, int status);
1150 static int niu_link_status_common(struct niu *np, int link_up)
1152 struct niu_link_config *lp = &np->link_config;
1153 struct net_device *dev = np->dev;
1154 unsigned long flags;
1156 if (!netif_carrier_ok(dev) && link_up) {
1157 niuinfo(LINK, "%s: Link is up at %s, %s duplex\n",
1159 (lp->active_speed == SPEED_10000 ?
1161 (lp->active_speed == SPEED_1000 ?
1163 (lp->active_speed == SPEED_100 ?
1164 "100Mbit/sec" : "10Mbit/sec"))),
1165 (lp->active_duplex == DUPLEX_FULL ?
1168 spin_lock_irqsave(&np->lock, flags);
1170 niu_handle_led(np, 1);
1171 spin_unlock_irqrestore(&np->lock, flags);
1173 netif_carrier_on(dev);
1174 } else if (netif_carrier_ok(dev) && !link_up) {
1175 niuwarn(LINK, "%s: Link is down\n", dev->name);
1176 spin_lock_irqsave(&np->lock, flags);
1177 niu_handle_led(np, 0);
1178 spin_unlock_irqrestore(&np->lock, flags);
1179 netif_carrier_off(dev);
1185 static int link_status_10g_mrvl(struct niu *np, int *link_up_p)
1187 int err, link_up, pma_status, pcs_status;
1191 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1192 MRVL88X2011_10G_PMD_STATUS_2);
1196 /* Check PMA/PMD Register: 1.0001.2 == 1 */
1197 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1198 MRVL88X2011_PMA_PMD_STATUS_1);
1202 pma_status = ((err & MRVL88X2011_LNK_STATUS_OK) ? 1 : 0);
1204 /* Check PMC Register : 3.0001.2 == 1: read twice */
1205 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1206 MRVL88X2011_PMA_PMD_STATUS_1);
1210 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1211 MRVL88X2011_PMA_PMD_STATUS_1);
1215 pcs_status = ((err & MRVL88X2011_LNK_STATUS_OK) ? 1 : 0);
1217 /* Check XGXS Register : 4.0018.[0-3,12] */
1218 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV4_ADDR,
1219 MRVL88X2011_10G_XGXS_LANE_STAT);
1223 if (err == (PHYXS_XGXS_LANE_STAT_ALINGED | PHYXS_XGXS_LANE_STAT_LANE3 |
1224 PHYXS_XGXS_LANE_STAT_LANE2 | PHYXS_XGXS_LANE_STAT_LANE1 |
1225 PHYXS_XGXS_LANE_STAT_LANE0 | PHYXS_XGXS_LANE_STAT_MAGIC |
1227 link_up = (pma_status && pcs_status) ? 1 : 0;
1229 np->link_config.active_speed = SPEED_10000;
1230 np->link_config.active_duplex = DUPLEX_FULL;
1233 mrvl88x2011_act_led(np, (link_up ?
1234 MRVL88X2011_LED_CTL_PCS_ACT :
1235 MRVL88X2011_LED_CTL_OFF));
1237 *link_up_p = link_up;
1241 static int link_status_10g_bcom(struct niu *np, int *link_up_p)
1247 err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
1248 BCM8704_PMD_RCV_SIGDET);
1251 if (!(err & PMD_RCV_SIGDET_GLOBAL)) {
1256 err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
1257 BCM8704_PCS_10G_R_STATUS);
1260 if (!(err & PCS_10G_R_STATUS_BLK_LOCK)) {
1265 err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
1266 BCM8704_PHYXS_XGXS_LANE_STAT);
1270 if (err != (PHYXS_XGXS_LANE_STAT_ALINGED |
1271 PHYXS_XGXS_LANE_STAT_MAGIC |
1272 PHYXS_XGXS_LANE_STAT_LANE3 |
1273 PHYXS_XGXS_LANE_STAT_LANE2 |
1274 PHYXS_XGXS_LANE_STAT_LANE1 |
1275 PHYXS_XGXS_LANE_STAT_LANE0)) {
1281 np->link_config.active_speed = SPEED_10000;
1282 np->link_config.active_duplex = DUPLEX_FULL;
1286 *link_up_p = link_up;
1290 static int link_status_10g(struct niu *np, int *link_up_p)
1292 unsigned long flags;
1295 spin_lock_irqsave(&np->lock, flags);
1297 if (np->link_config.loopback_mode == LOOPBACK_DISABLED) {
1300 phy_id = phy_decode(np->parent->port_phy, np->port);
1301 phy_id = np->parent->phy_probe_info.phy_id[phy_id][np->port];
1303 /* handle different phy types */
1304 switch (phy_id & NIU_PHY_ID_MASK) {
1305 case NIU_PHY_ID_MRVL88X2011:
1306 err = link_status_10g_mrvl(np, link_up_p);
1309 default: /* bcom 8704 */
1310 err = link_status_10g_bcom(np, link_up_p);
1315 spin_unlock_irqrestore(&np->lock, flags);
1320 static int link_status_1g(struct niu *np, int *link_up_p)
1322 struct niu_link_config *lp = &np->link_config;
1323 u16 current_speed, bmsr;
1324 unsigned long flags;
1329 current_speed = SPEED_INVALID;
1330 current_duplex = DUPLEX_INVALID;
1332 spin_lock_irqsave(&np->lock, flags);
1335 if (np->link_config.loopback_mode != LOOPBACK_DISABLED)
1338 err = mii_read(np, np->phy_addr, MII_BMSR);
1343 if (bmsr & BMSR_LSTATUS) {
1344 u16 adv, lpa, common, estat;
1346 err = mii_read(np, np->phy_addr, MII_ADVERTISE);
1351 err = mii_read(np, np->phy_addr, MII_LPA);
1358 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1364 if (estat & (ESTATUS_1000_TFULL | ESTATUS_1000_THALF)) {
1365 current_speed = SPEED_1000;
1366 if (estat & ESTATUS_1000_TFULL)
1367 current_duplex = DUPLEX_FULL;
1369 current_duplex = DUPLEX_HALF;
1371 if (common & ADVERTISE_100BASE4) {
1372 current_speed = SPEED_100;
1373 current_duplex = DUPLEX_HALF;
1374 } else if (common & ADVERTISE_100FULL) {
1375 current_speed = SPEED_100;
1376 current_duplex = DUPLEX_FULL;
1377 } else if (common & ADVERTISE_100HALF) {
1378 current_speed = SPEED_100;
1379 current_duplex = DUPLEX_HALF;
1380 } else if (common & ADVERTISE_10FULL) {
1381 current_speed = SPEED_10;
1382 current_duplex = DUPLEX_FULL;
1383 } else if (common & ADVERTISE_10HALF) {
1384 current_speed = SPEED_10;
1385 current_duplex = DUPLEX_HALF;
1390 lp->active_speed = current_speed;
1391 lp->active_duplex = current_duplex;
1395 spin_unlock_irqrestore(&np->lock, flags);
1397 *link_up_p = link_up;
1401 static int niu_link_status(struct niu *np, int *link_up_p)
1403 const struct niu_phy_ops *ops = np->phy_ops;
1407 if (ops->link_status)
1408 err = ops->link_status(np, link_up_p);
1413 static void niu_timer(unsigned long __opaque)
1415 struct niu *np = (struct niu *) __opaque;
1419 err = niu_link_status(np, &link_up);
1421 niu_link_status_common(np, link_up);
1423 if (netif_carrier_ok(np->dev))
1427 np->timer.expires = jiffies + off;
1429 add_timer(&np->timer);
1432 static const struct niu_phy_ops phy_ops_10g_fiber_niu = {
1433 .serdes_init = serdes_init_niu,
1434 .xcvr_init = xcvr_init_10g,
1435 .link_status = link_status_10g,
1438 static const struct niu_phy_ops phy_ops_10g_fiber = {
1439 .serdes_init = serdes_init_10g,
1440 .xcvr_init = xcvr_init_10g,
1441 .link_status = link_status_10g,
1444 static const struct niu_phy_ops phy_ops_10g_copper = {
1445 .serdes_init = serdes_init_10g,
1446 .link_status = link_status_10g, /* XXX */
1449 static const struct niu_phy_ops phy_ops_1g_fiber = {
1450 .serdes_init = serdes_init_1g,
1451 .xcvr_init = xcvr_init_1g,
1452 .link_status = link_status_1g,
1455 static const struct niu_phy_ops phy_ops_1g_copper = {
1456 .xcvr_init = xcvr_init_1g,
1457 .link_status = link_status_1g,
1460 struct niu_phy_template {
1461 const struct niu_phy_ops *ops;
1465 static const struct niu_phy_template phy_template_niu = {
1466 .ops = &phy_ops_10g_fiber_niu,
1467 .phy_addr_base = 16,
1470 static const struct niu_phy_template phy_template_10g_fiber = {
1471 .ops = &phy_ops_10g_fiber,
1475 static const struct niu_phy_template phy_template_10g_copper = {
1476 .ops = &phy_ops_10g_copper,
1477 .phy_addr_base = 10,
1480 static const struct niu_phy_template phy_template_1g_fiber = {
1481 .ops = &phy_ops_1g_fiber,
1485 static const struct niu_phy_template phy_template_1g_copper = {
1486 .ops = &phy_ops_1g_copper,
1490 static int niu_determine_phy_disposition(struct niu *np)
1492 struct niu_parent *parent = np->parent;
1493 u8 plat_type = parent->plat_type;
1494 const struct niu_phy_template *tp;
1495 u32 phy_addr_off = 0;
1497 if (plat_type == PLAT_TYPE_NIU) {
1498 tp = &phy_template_niu;
1499 phy_addr_off += np->port;
1501 switch (np->flags & (NIU_FLAGS_10G | NIU_FLAGS_FIBER)) {
1504 tp = &phy_template_1g_copper;
1505 if (plat_type == PLAT_TYPE_VF_P0)
1507 else if (plat_type == PLAT_TYPE_VF_P1)
1510 phy_addr_off += (np->port ^ 0x3);
1515 tp = &phy_template_1g_copper;
1518 case NIU_FLAGS_FIBER:
1520 tp = &phy_template_1g_fiber;
1523 case NIU_FLAGS_10G | NIU_FLAGS_FIBER:
1525 tp = &phy_template_10g_fiber;
1526 if (plat_type == PLAT_TYPE_VF_P0 ||
1527 plat_type == PLAT_TYPE_VF_P1)
1529 phy_addr_off += np->port;
1537 np->phy_ops = tp->ops;
1538 np->phy_addr = tp->phy_addr_base + phy_addr_off;
1543 static int niu_init_link(struct niu *np)
1545 struct niu_parent *parent = np->parent;
1548 if (parent->plat_type == PLAT_TYPE_NIU) {
1549 err = niu_xcvr_init(np);
1554 err = niu_serdes_init(np);
1558 err = niu_xcvr_init(np);
1560 niu_link_status(np, &ignore);
1564 static void niu_set_primary_mac(struct niu *np, unsigned char *addr)
1566 u16 reg0 = addr[4] << 8 | addr[5];
1567 u16 reg1 = addr[2] << 8 | addr[3];
1568 u16 reg2 = addr[0] << 8 | addr[1];
1570 if (np->flags & NIU_FLAGS_XMAC) {
1571 nw64_mac(XMAC_ADDR0, reg0);
1572 nw64_mac(XMAC_ADDR1, reg1);
1573 nw64_mac(XMAC_ADDR2, reg2);
1575 nw64_mac(BMAC_ADDR0, reg0);
1576 nw64_mac(BMAC_ADDR1, reg1);
1577 nw64_mac(BMAC_ADDR2, reg2);
1581 static int niu_num_alt_addr(struct niu *np)
1583 if (np->flags & NIU_FLAGS_XMAC)
1584 return XMAC_NUM_ALT_ADDR;
1586 return BMAC_NUM_ALT_ADDR;
1589 static int niu_set_alt_mac(struct niu *np, int index, unsigned char *addr)
1591 u16 reg0 = addr[4] << 8 | addr[5];
1592 u16 reg1 = addr[2] << 8 | addr[3];
1593 u16 reg2 = addr[0] << 8 | addr[1];
1595 if (index >= niu_num_alt_addr(np))
1598 if (np->flags & NIU_FLAGS_XMAC) {
1599 nw64_mac(XMAC_ALT_ADDR0(index), reg0);
1600 nw64_mac(XMAC_ALT_ADDR1(index), reg1);
1601 nw64_mac(XMAC_ALT_ADDR2(index), reg2);
1603 nw64_mac(BMAC_ALT_ADDR0(index), reg0);
1604 nw64_mac(BMAC_ALT_ADDR1(index), reg1);
1605 nw64_mac(BMAC_ALT_ADDR2(index), reg2);
1611 static int niu_enable_alt_mac(struct niu *np, int index, int on)
1616 if (index >= niu_num_alt_addr(np))
1619 if (np->flags & NIU_FLAGS_XMAC)
1620 reg = XMAC_ADDR_CMPEN;
1622 reg = BMAC_ADDR_CMPEN;
1626 val = nr64_mac(reg);
1636 static void __set_rdc_table_num_hw(struct niu *np, unsigned long reg,
1637 int num, int mac_pref)
1639 u64 val = nr64_mac(reg);
1640 val &= ~(HOST_INFO_MACRDCTBLN | HOST_INFO_MPR);
1643 val |= HOST_INFO_MPR;
1647 static int __set_rdc_table_num(struct niu *np,
1648 int xmac_index, int bmac_index,
1649 int rdc_table_num, int mac_pref)
1653 if (rdc_table_num & ~HOST_INFO_MACRDCTBLN)
1655 if (np->flags & NIU_FLAGS_XMAC)
1656 reg = XMAC_HOST_INFO(xmac_index);
1658 reg = BMAC_HOST_INFO(bmac_index);
1659 __set_rdc_table_num_hw(np, reg, rdc_table_num, mac_pref);
1663 static int niu_set_primary_mac_rdc_table(struct niu *np, int table_num,
1666 return __set_rdc_table_num(np, 17, 0, table_num, mac_pref);
1669 static int niu_set_multicast_mac_rdc_table(struct niu *np, int table_num,
1672 return __set_rdc_table_num(np, 16, 8, table_num, mac_pref);
1675 static int niu_set_alt_mac_rdc_table(struct niu *np, int idx,
1676 int table_num, int mac_pref)
1678 if (idx >= niu_num_alt_addr(np))
1680 return __set_rdc_table_num(np, idx, idx + 1, table_num, mac_pref);
1683 static u64 vlan_entry_set_parity(u64 reg_val)
1688 port01_mask = 0x00ff;
1689 port23_mask = 0xff00;
1691 if (hweight64(reg_val & port01_mask) & 1)
1692 reg_val |= ENET_VLAN_TBL_PARITY0;
1694 reg_val &= ~ENET_VLAN_TBL_PARITY0;
1696 if (hweight64(reg_val & port23_mask) & 1)
1697 reg_val |= ENET_VLAN_TBL_PARITY1;
1699 reg_val &= ~ENET_VLAN_TBL_PARITY1;
1704 static void vlan_tbl_write(struct niu *np, unsigned long index,
1705 int port, int vpr, int rdc_table)
1707 u64 reg_val = nr64(ENET_VLAN_TBL(index));
1709 reg_val &= ~((ENET_VLAN_TBL_VPR |
1710 ENET_VLAN_TBL_VLANRDCTBLN) <<
1711 ENET_VLAN_TBL_SHIFT(port));
1713 reg_val |= (ENET_VLAN_TBL_VPR <<
1714 ENET_VLAN_TBL_SHIFT(port));
1715 reg_val |= (rdc_table << ENET_VLAN_TBL_SHIFT(port));
1717 reg_val = vlan_entry_set_parity(reg_val);
1719 nw64(ENET_VLAN_TBL(index), reg_val);
1722 static void vlan_tbl_clear(struct niu *np)
1726 for (i = 0; i < ENET_VLAN_TBL_NUM_ENTRIES; i++)
1727 nw64(ENET_VLAN_TBL(i), 0);
1730 static int tcam_wait_bit(struct niu *np, u64 bit)
1734 while (--limit > 0) {
1735 if (nr64(TCAM_CTL) & bit)
1745 static int tcam_flush(struct niu *np, int index)
1747 nw64(TCAM_KEY_0, 0x00);
1748 nw64(TCAM_KEY_MASK_0, 0xff);
1749 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_WRITE | index));
1751 return tcam_wait_bit(np, TCAM_CTL_STAT);
1755 static int tcam_read(struct niu *np, int index,
1756 u64 *key, u64 *mask)
1760 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_READ | index));
1761 err = tcam_wait_bit(np, TCAM_CTL_STAT);
1763 key[0] = nr64(TCAM_KEY_0);
1764 key[1] = nr64(TCAM_KEY_1);
1765 key[2] = nr64(TCAM_KEY_2);
1766 key[3] = nr64(TCAM_KEY_3);
1767 mask[0] = nr64(TCAM_KEY_MASK_0);
1768 mask[1] = nr64(TCAM_KEY_MASK_1);
1769 mask[2] = nr64(TCAM_KEY_MASK_2);
1770 mask[3] = nr64(TCAM_KEY_MASK_3);
1776 static int tcam_write(struct niu *np, int index,
1777 u64 *key, u64 *mask)
1779 nw64(TCAM_KEY_0, key[0]);
1780 nw64(TCAM_KEY_1, key[1]);
1781 nw64(TCAM_KEY_2, key[2]);
1782 nw64(TCAM_KEY_3, key[3]);
1783 nw64(TCAM_KEY_MASK_0, mask[0]);
1784 nw64(TCAM_KEY_MASK_1, mask[1]);
1785 nw64(TCAM_KEY_MASK_2, mask[2]);
1786 nw64(TCAM_KEY_MASK_3, mask[3]);
1787 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_WRITE | index));
1789 return tcam_wait_bit(np, TCAM_CTL_STAT);
1793 static int tcam_assoc_read(struct niu *np, int index, u64 *data)
1797 nw64(TCAM_CTL, (TCAM_CTL_RWC_RAM_READ | index));
1798 err = tcam_wait_bit(np, TCAM_CTL_STAT);
1800 *data = nr64(TCAM_KEY_1);
1806 static int tcam_assoc_write(struct niu *np, int index, u64 assoc_data)
1808 nw64(TCAM_KEY_1, assoc_data);
1809 nw64(TCAM_CTL, (TCAM_CTL_RWC_RAM_WRITE | index));
1811 return tcam_wait_bit(np, TCAM_CTL_STAT);
1814 static void tcam_enable(struct niu *np, int on)
1816 u64 val = nr64(FFLP_CFG_1);
1819 val &= ~FFLP_CFG_1_TCAM_DIS;
1821 val |= FFLP_CFG_1_TCAM_DIS;
1822 nw64(FFLP_CFG_1, val);
1825 static void tcam_set_lat_and_ratio(struct niu *np, u64 latency, u64 ratio)
1827 u64 val = nr64(FFLP_CFG_1);
1829 val &= ~(FFLP_CFG_1_FFLPINITDONE |
1831 FFLP_CFG_1_CAMRATIO);
1832 val |= (latency << FFLP_CFG_1_CAMLAT_SHIFT);
1833 val |= (ratio << FFLP_CFG_1_CAMRATIO_SHIFT);
1834 nw64(FFLP_CFG_1, val);
1836 val = nr64(FFLP_CFG_1);
1837 val |= FFLP_CFG_1_FFLPINITDONE;
1838 nw64(FFLP_CFG_1, val);
1841 static int tcam_user_eth_class_enable(struct niu *np, unsigned long class,
1847 if (class < CLASS_CODE_ETHERTYPE1 ||
1848 class > CLASS_CODE_ETHERTYPE2)
1851 reg = L2_CLS(class - CLASS_CODE_ETHERTYPE1);
1863 static int tcam_user_eth_class_set(struct niu *np, unsigned long class,
1869 if (class < CLASS_CODE_ETHERTYPE1 ||
1870 class > CLASS_CODE_ETHERTYPE2 ||
1871 (ether_type & ~(u64)0xffff) != 0)
1874 reg = L2_CLS(class - CLASS_CODE_ETHERTYPE1);
1876 val &= ~L2_CLS_ETYPE;
1877 val |= (ether_type << L2_CLS_ETYPE_SHIFT);
1884 static int tcam_user_ip_class_enable(struct niu *np, unsigned long class,
1890 if (class < CLASS_CODE_USER_PROG1 ||
1891 class > CLASS_CODE_USER_PROG4)
1894 reg = L3_CLS(class - CLASS_CODE_USER_PROG1);
1897 val |= L3_CLS_VALID;
1899 val &= ~L3_CLS_VALID;
1906 static int tcam_user_ip_class_set(struct niu *np, unsigned long class,
1907 int ipv6, u64 protocol_id,
1908 u64 tos_mask, u64 tos_val)
1913 if (class < CLASS_CODE_USER_PROG1 ||
1914 class > CLASS_CODE_USER_PROG4 ||
1915 (protocol_id & ~(u64)0xff) != 0 ||
1916 (tos_mask & ~(u64)0xff) != 0 ||
1917 (tos_val & ~(u64)0xff) != 0)
1920 reg = L3_CLS(class - CLASS_CODE_USER_PROG1);
1922 val &= ~(L3_CLS_IPVER | L3_CLS_PID |
1923 L3_CLS_TOSMASK | L3_CLS_TOS);
1925 val |= L3_CLS_IPVER;
1926 val |= (protocol_id << L3_CLS_PID_SHIFT);
1927 val |= (tos_mask << L3_CLS_TOSMASK_SHIFT);
1928 val |= (tos_val << L3_CLS_TOS_SHIFT);
1935 static int tcam_early_init(struct niu *np)
1941 tcam_set_lat_and_ratio(np,
1942 DEFAULT_TCAM_LATENCY,
1943 DEFAULT_TCAM_ACCESS_RATIO);
1944 for (i = CLASS_CODE_ETHERTYPE1; i <= CLASS_CODE_ETHERTYPE2; i++) {
1945 err = tcam_user_eth_class_enable(np, i, 0);
1949 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_USER_PROG4; i++) {
1950 err = tcam_user_ip_class_enable(np, i, 0);
1958 static int tcam_flush_all(struct niu *np)
1962 for (i = 0; i < np->parent->tcam_num_entries; i++) {
1963 int err = tcam_flush(np, i);
1970 static u64 hash_addr_regval(unsigned long index, unsigned long num_entries)
1972 return ((u64)index | (num_entries == 1 ?
1973 HASH_TBL_ADDR_AUTOINC : 0));
1977 static int hash_read(struct niu *np, unsigned long partition,
1978 unsigned long index, unsigned long num_entries,
1981 u64 val = hash_addr_regval(index, num_entries);
1984 if (partition >= FCRAM_NUM_PARTITIONS ||
1985 index + num_entries > FCRAM_SIZE)
1988 nw64(HASH_TBL_ADDR(partition), val);
1989 for (i = 0; i < num_entries; i++)
1990 data[i] = nr64(HASH_TBL_DATA(partition));
1996 static int hash_write(struct niu *np, unsigned long partition,
1997 unsigned long index, unsigned long num_entries,
2000 u64 val = hash_addr_regval(index, num_entries);
2003 if (partition >= FCRAM_NUM_PARTITIONS ||
2004 index + (num_entries * 8) > FCRAM_SIZE)
2007 nw64(HASH_TBL_ADDR(partition), val);
2008 for (i = 0; i < num_entries; i++)
2009 nw64(HASH_TBL_DATA(partition), data[i]);
2014 static void fflp_reset(struct niu *np)
2018 nw64(FFLP_CFG_1, FFLP_CFG_1_PIO_FIO_RST);
2020 nw64(FFLP_CFG_1, 0);
2022 val = FFLP_CFG_1_FCRAMOUTDR_NORMAL | FFLP_CFG_1_FFLPINITDONE;
2023 nw64(FFLP_CFG_1, val);
2026 static void fflp_set_timings(struct niu *np)
2028 u64 val = nr64(FFLP_CFG_1);
2030 val &= ~FFLP_CFG_1_FFLPINITDONE;
2031 val |= (DEFAULT_FCRAMRATIO << FFLP_CFG_1_FCRAMRATIO_SHIFT);
2032 nw64(FFLP_CFG_1, val);
2034 val = nr64(FFLP_CFG_1);
2035 val |= FFLP_CFG_1_FFLPINITDONE;
2036 nw64(FFLP_CFG_1, val);
2038 val = nr64(FCRAM_REF_TMR);
2039 val &= ~(FCRAM_REF_TMR_MAX | FCRAM_REF_TMR_MIN);
2040 val |= (DEFAULT_FCRAM_REFRESH_MAX << FCRAM_REF_TMR_MAX_SHIFT);
2041 val |= (DEFAULT_FCRAM_REFRESH_MIN << FCRAM_REF_TMR_MIN_SHIFT);
2042 nw64(FCRAM_REF_TMR, val);
2045 static int fflp_set_partition(struct niu *np, u64 partition,
2046 u64 mask, u64 base, int enable)
2051 if (partition >= FCRAM_NUM_PARTITIONS ||
2052 (mask & ~(u64)0x1f) != 0 ||
2053 (base & ~(u64)0x1f) != 0)
2056 reg = FLW_PRT_SEL(partition);
2059 val &= ~(FLW_PRT_SEL_EXT | FLW_PRT_SEL_MASK | FLW_PRT_SEL_BASE);
2060 val |= (mask << FLW_PRT_SEL_MASK_SHIFT);
2061 val |= (base << FLW_PRT_SEL_BASE_SHIFT);
2063 val |= FLW_PRT_SEL_EXT;
2069 static int fflp_disable_all_partitions(struct niu *np)
2073 for (i = 0; i < FCRAM_NUM_PARTITIONS; i++) {
2074 int err = fflp_set_partition(np, 0, 0, 0, 0);
2081 static void fflp_llcsnap_enable(struct niu *np, int on)
2083 u64 val = nr64(FFLP_CFG_1);
2086 val |= FFLP_CFG_1_LLCSNAP;
2088 val &= ~FFLP_CFG_1_LLCSNAP;
2089 nw64(FFLP_CFG_1, val);
2092 static void fflp_errors_enable(struct niu *np, int on)
2094 u64 val = nr64(FFLP_CFG_1);
2097 val &= ~FFLP_CFG_1_ERRORDIS;
2099 val |= FFLP_CFG_1_ERRORDIS;
2100 nw64(FFLP_CFG_1, val);
2103 static int fflp_hash_clear(struct niu *np)
2105 struct fcram_hash_ipv4 ent;
2108 /* IPV4 hash entry with valid bit clear, rest is don't care. */
2109 memset(&ent, 0, sizeof(ent));
2110 ent.header = HASH_HEADER_EXT;
2112 for (i = 0; i < FCRAM_SIZE; i += sizeof(ent)) {
2113 int err = hash_write(np, 0, i, 1, (u64 *) &ent);
2120 static int fflp_early_init(struct niu *np)
2122 struct niu_parent *parent;
2123 unsigned long flags;
2126 niu_lock_parent(np, flags);
2128 parent = np->parent;
2130 if (!(parent->flags & PARENT_FLGS_CLS_HWINIT)) {
2131 niudbg(PROBE, "fflp_early_init: Initting hw on port %u\n",
2133 if (np->parent->plat_type != PLAT_TYPE_NIU) {
2135 fflp_set_timings(np);
2136 err = fflp_disable_all_partitions(np);
2138 niudbg(PROBE, "fflp_disable_all_partitions "
2139 "failed, err=%d\n", err);
2144 err = tcam_early_init(np);
2146 niudbg(PROBE, "tcam_early_init failed, err=%d\n",
2150 fflp_llcsnap_enable(np, 1);
2151 fflp_errors_enable(np, 0);
2155 err = tcam_flush_all(np);
2157 niudbg(PROBE, "tcam_flush_all failed, err=%d\n",
2161 if (np->parent->plat_type != PLAT_TYPE_NIU) {
2162 err = fflp_hash_clear(np);
2164 niudbg(PROBE, "fflp_hash_clear failed, "
2172 niudbg(PROBE, "fflp_early_init: Success\n");
2173 parent->flags |= PARENT_FLGS_CLS_HWINIT;
2176 niu_unlock_parent(np, flags);
2180 static int niu_set_flow_key(struct niu *np, unsigned long class_code, u64 key)
2182 if (class_code < CLASS_CODE_USER_PROG1 ||
2183 class_code > CLASS_CODE_SCTP_IPV6)
2186 nw64(FLOW_KEY(class_code - CLASS_CODE_USER_PROG1), key);
2190 static int niu_set_tcam_key(struct niu *np, unsigned long class_code, u64 key)
2192 if (class_code < CLASS_CODE_USER_PROG1 ||
2193 class_code > CLASS_CODE_SCTP_IPV6)
2196 nw64(TCAM_KEY(class_code - CLASS_CODE_USER_PROG1), key);
2200 static void niu_rx_skb_append(struct sk_buff *skb, struct page *page,
2201 u32 offset, u32 size)
2203 int i = skb_shinfo(skb)->nr_frags;
2204 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2207 frag->page_offset = offset;
2211 skb->data_len += size;
2212 skb->truesize += size;
2214 skb_shinfo(skb)->nr_frags = i + 1;
2217 static unsigned int niu_hash_rxaddr(struct rx_ring_info *rp, u64 a)
2220 a ^= (a >> ilog2(MAX_RBR_RING_SIZE));
2222 return (a & (MAX_RBR_RING_SIZE - 1));
2225 static struct page *niu_find_rxpage(struct rx_ring_info *rp, u64 addr,
2226 struct page ***link)
2228 unsigned int h = niu_hash_rxaddr(rp, addr);
2229 struct page *p, **pp;
2232 pp = &rp->rxhash[h];
2233 for (; (p = *pp) != NULL; pp = (struct page **) &p->mapping) {
2234 if (p->index == addr) {
2243 static void niu_hash_page(struct rx_ring_info *rp, struct page *page, u64 base)
2245 unsigned int h = niu_hash_rxaddr(rp, base);
2248 page->mapping = (struct address_space *) rp->rxhash[h];
2249 rp->rxhash[h] = page;
2252 static int niu_rbr_add_page(struct niu *np, struct rx_ring_info *rp,
2253 gfp_t mask, int start_index)
2259 page = alloc_page(mask);
2263 addr = np->ops->map_page(np->device, page, 0,
2264 PAGE_SIZE, DMA_FROM_DEVICE);
2266 niu_hash_page(rp, page, addr);
2267 if (rp->rbr_blocks_per_page > 1)
2268 atomic_add(rp->rbr_blocks_per_page - 1,
2269 &compound_head(page)->_count);
2271 for (i = 0; i < rp->rbr_blocks_per_page; i++) {
2272 __le32 *rbr = &rp->rbr[start_index + i];
2274 *rbr = cpu_to_le32(addr >> RBR_DESCR_ADDR_SHIFT);
2275 addr += rp->rbr_block_size;
2281 static void niu_rbr_refill(struct niu *np, struct rx_ring_info *rp, gfp_t mask)
2283 int index = rp->rbr_index;
2286 if ((rp->rbr_pending % rp->rbr_blocks_per_page) == 0) {
2287 int err = niu_rbr_add_page(np, rp, mask, index);
2289 if (unlikely(err)) {
2294 rp->rbr_index += rp->rbr_blocks_per_page;
2295 BUG_ON(rp->rbr_index > rp->rbr_table_size);
2296 if (rp->rbr_index == rp->rbr_table_size)
2299 if (rp->rbr_pending >= rp->rbr_kick_thresh) {
2300 nw64(RBR_KICK(rp->rx_channel), rp->rbr_pending);
2301 rp->rbr_pending = 0;
2306 static int niu_rx_pkt_ignore(struct niu *np, struct rx_ring_info *rp)
2308 unsigned int index = rp->rcr_index;
2313 struct page *page, **link;
2319 val = le64_to_cpup(&rp->rcr[index]);
2320 addr = (val & RCR_ENTRY_PKT_BUF_ADDR) <<
2321 RCR_ENTRY_PKT_BUF_ADDR_SHIFT;
2322 page = niu_find_rxpage(rp, addr, &link);
2324 rcr_size = rp->rbr_sizes[(val & RCR_ENTRY_PKTBUFSZ) >>
2325 RCR_ENTRY_PKTBUFSZ_SHIFT];
2326 if ((page->index + PAGE_SIZE) - rcr_size == addr) {
2327 *link = (struct page *) page->mapping;
2328 np->ops->unmap_page(np->device, page->index,
2329 PAGE_SIZE, DMA_FROM_DEVICE);
2331 page->mapping = NULL;
2333 rp->rbr_refill_pending++;
2336 index = NEXT_RCR(rp, index);
2337 if (!(val & RCR_ENTRY_MULTI))
2341 rp->rcr_index = index;
2346 static int niu_process_rx_pkt(struct niu *np, struct rx_ring_info *rp)
2348 unsigned int index = rp->rcr_index;
2349 struct sk_buff *skb;
2352 skb = netdev_alloc_skb(np->dev, RX_SKB_ALLOC_SIZE);
2354 return niu_rx_pkt_ignore(np, rp);
2358 struct page *page, **link;
2359 u32 rcr_size, append_size;
2364 val = le64_to_cpup(&rp->rcr[index]);
2366 len = (val & RCR_ENTRY_L2_LEN) >>
2367 RCR_ENTRY_L2_LEN_SHIFT;
2370 addr = (val & RCR_ENTRY_PKT_BUF_ADDR) <<
2371 RCR_ENTRY_PKT_BUF_ADDR_SHIFT;
2372 page = niu_find_rxpage(rp, addr, &link);
2374 rcr_size = rp->rbr_sizes[(val & RCR_ENTRY_PKTBUFSZ) >>
2375 RCR_ENTRY_PKTBUFSZ_SHIFT];
2377 off = addr & ~PAGE_MASK;
2378 append_size = rcr_size;
2385 ptype = (val >> RCR_ENTRY_PKT_TYPE_SHIFT);
2386 if ((ptype == RCR_PKT_TYPE_TCP ||
2387 ptype == RCR_PKT_TYPE_UDP) &&
2388 !(val & (RCR_ENTRY_NOPORT |
2390 skb->ip_summed = CHECKSUM_UNNECESSARY;
2392 skb->ip_summed = CHECKSUM_NONE;
2394 if (!(val & RCR_ENTRY_MULTI))
2395 append_size = len - skb->len;
2397 niu_rx_skb_append(skb, page, off, append_size);
2398 if ((page->index + rp->rbr_block_size) - rcr_size == addr) {
2399 *link = (struct page *) page->mapping;
2400 np->ops->unmap_page(np->device, page->index,
2401 PAGE_SIZE, DMA_FROM_DEVICE);
2403 page->mapping = NULL;
2404 rp->rbr_refill_pending++;
2408 index = NEXT_RCR(rp, index);
2409 if (!(val & RCR_ENTRY_MULTI))
2413 rp->rcr_index = index;
2415 skb_reserve(skb, NET_IP_ALIGN);
2416 __pskb_pull_tail(skb, min(len, NIU_RXPULL_MAX));
2419 rp->rx_bytes += skb->len;
2421 skb->protocol = eth_type_trans(skb, np->dev);
2422 netif_receive_skb(skb);
2424 np->dev->last_rx = jiffies;
2429 static int niu_rbr_fill(struct niu *np, struct rx_ring_info *rp, gfp_t mask)
2431 int blocks_per_page = rp->rbr_blocks_per_page;
2432 int err, index = rp->rbr_index;
2435 while (index < (rp->rbr_table_size - blocks_per_page)) {
2436 err = niu_rbr_add_page(np, rp, mask, index);
2440 index += blocks_per_page;
2443 rp->rbr_index = index;
2447 static void niu_rbr_free(struct niu *np, struct rx_ring_info *rp)
2451 for (i = 0; i < MAX_RBR_RING_SIZE; i++) {
2454 page = rp->rxhash[i];
2456 struct page *next = (struct page *) page->mapping;
2457 u64 base = page->index;
2459 np->ops->unmap_page(np->device, base, PAGE_SIZE,
2462 page->mapping = NULL;
2470 for (i = 0; i < rp->rbr_table_size; i++)
2471 rp->rbr[i] = cpu_to_le32(0);
2475 static int release_tx_packet(struct niu *np, struct tx_ring_info *rp, int idx)
2477 struct tx_buff_info *tb = &rp->tx_buffs[idx];
2478 struct sk_buff *skb = tb->skb;
2479 struct tx_pkt_hdr *tp;
2483 tp = (struct tx_pkt_hdr *) skb->data;
2484 tx_flags = le64_to_cpup(&tp->flags);
2487 rp->tx_bytes += (((tx_flags & TXHDR_LEN) >> TXHDR_LEN_SHIFT) -
2488 ((tx_flags & TXHDR_PAD) / 2));
2490 len = skb_headlen(skb);
2491 np->ops->unmap_single(np->device, tb->mapping,
2492 len, DMA_TO_DEVICE);
2494 if (le64_to_cpu(rp->descr[idx]) & TX_DESC_MARK)
2499 idx = NEXT_TX(rp, idx);
2500 len -= MAX_TX_DESC_LEN;
2503 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2504 tb = &rp->tx_buffs[idx];
2505 BUG_ON(tb->skb != NULL);
2506 np->ops->unmap_page(np->device, tb->mapping,
2507 skb_shinfo(skb)->frags[i].size,
2509 idx = NEXT_TX(rp, idx);
2517 #define NIU_TX_WAKEUP_THRESH(rp) ((rp)->pending / 4)
2519 static void niu_tx_work(struct niu *np, struct tx_ring_info *rp)
2526 if (unlikely(!(cs & (TX_CS_MK | TX_CS_MMK))))
2529 tmp = pkt_cnt = (cs & TX_CS_PKT_CNT) >> TX_CS_PKT_CNT_SHIFT;
2530 pkt_cnt = (pkt_cnt - rp->last_pkt_cnt) &
2531 (TX_CS_PKT_CNT >> TX_CS_PKT_CNT_SHIFT);
2533 rp->last_pkt_cnt = tmp;
2537 niudbg(TX_DONE, "%s: niu_tx_work() pkt_cnt[%u] cons[%d]\n",
2538 np->dev->name, pkt_cnt, cons);
2541 cons = release_tx_packet(np, rp, cons);
2547 if (unlikely(netif_queue_stopped(np->dev) &&
2548 (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp)))) {
2549 netif_tx_lock(np->dev);
2550 if (netif_queue_stopped(np->dev) &&
2551 (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp)))
2552 netif_wake_queue(np->dev);
2553 netif_tx_unlock(np->dev);
2557 static int niu_rx_work(struct niu *np, struct rx_ring_info *rp, int budget)
2559 int qlen, rcr_done = 0, work_done = 0;
2560 struct rxdma_mailbox *mbox = rp->mbox;
2564 stat = nr64(RX_DMA_CTL_STAT(rp->rx_channel));
2565 qlen = nr64(RCRSTAT_A(rp->rx_channel)) & RCRSTAT_A_QLEN;
2567 stat = le64_to_cpup(&mbox->rx_dma_ctl_stat);
2568 qlen = (le64_to_cpup(&mbox->rcrstat_a) & RCRSTAT_A_QLEN);
2570 mbox->rx_dma_ctl_stat = 0;
2571 mbox->rcrstat_a = 0;
2573 niudbg(RX_STATUS, "%s: niu_rx_work(chan[%d]), stat[%llx] qlen=%d\n",
2574 np->dev->name, rp->rx_channel, (unsigned long long) stat, qlen);
2576 rcr_done = work_done = 0;
2577 qlen = min(qlen, budget);
2578 while (work_done < qlen) {
2579 rcr_done += niu_process_rx_pkt(np, rp);
2583 if (rp->rbr_refill_pending >= rp->rbr_kick_thresh) {
2586 for (i = 0; i < rp->rbr_refill_pending; i++)
2587 niu_rbr_refill(np, rp, GFP_ATOMIC);
2588 rp->rbr_refill_pending = 0;
2591 stat = (RX_DMA_CTL_STAT_MEX |
2592 ((u64)work_done << RX_DMA_CTL_STAT_PKTREAD_SHIFT) |
2593 ((u64)rcr_done << RX_DMA_CTL_STAT_PTRREAD_SHIFT));
2595 nw64(RX_DMA_CTL_STAT(rp->rx_channel), stat);
2600 static int niu_poll_core(struct niu *np, struct niu_ldg *lp, int budget)
2603 u32 tx_vec = (v0 >> 32);
2604 u32 rx_vec = (v0 & 0xffffffff);
2605 int i, work_done = 0;
2607 niudbg(INTR, "%s: niu_poll_core() v0[%016llx]\n",
2608 np->dev->name, (unsigned long long) v0);
2610 for (i = 0; i < np->num_tx_rings; i++) {
2611 struct tx_ring_info *rp = &np->tx_rings[i];
2612 if (tx_vec & (1 << rp->tx_channel))
2613 niu_tx_work(np, rp);
2614 nw64(LD_IM0(LDN_TXDMA(rp->tx_channel)), 0);
2617 for (i = 0; i < np->num_rx_rings; i++) {
2618 struct rx_ring_info *rp = &np->rx_rings[i];
2620 if (rx_vec & (1 << rp->rx_channel)) {
2623 this_work_done = niu_rx_work(np, rp,
2626 budget -= this_work_done;
2627 work_done += this_work_done;
2629 nw64(LD_IM0(LDN_RXDMA(rp->rx_channel)), 0);
2635 static int niu_poll(struct napi_struct *napi, int budget)
2637 struct niu_ldg *lp = container_of(napi, struct niu_ldg, napi);
2638 struct niu *np = lp->np;
2641 work_done = niu_poll_core(np, lp, budget);
2643 if (work_done < budget) {
2644 netif_rx_complete(np->dev, napi);
2645 niu_ldg_rearm(np, lp, 1);
2650 static void niu_log_rxchan_errors(struct niu *np, struct rx_ring_info *rp,
2653 dev_err(np->device, PFX "%s: RX channel %u errors ( ",
2654 np->dev->name, rp->rx_channel);
2656 if (stat & RX_DMA_CTL_STAT_RBR_TMOUT)
2657 printk("RBR_TMOUT ");
2658 if (stat & RX_DMA_CTL_STAT_RSP_CNT_ERR)
2660 if (stat & RX_DMA_CTL_STAT_BYTE_EN_BUS)
2661 printk("BYTE_EN_BUS ");
2662 if (stat & RX_DMA_CTL_STAT_RSP_DAT_ERR)
2664 if (stat & RX_DMA_CTL_STAT_RCR_ACK_ERR)
2666 if (stat & RX_DMA_CTL_STAT_RCR_SHA_PAR)
2667 printk("RCR_SHA_PAR ");
2668 if (stat & RX_DMA_CTL_STAT_RBR_PRE_PAR)
2669 printk("RBR_PRE_PAR ");
2670 if (stat & RX_DMA_CTL_STAT_CONFIG_ERR)
2672 if (stat & RX_DMA_CTL_STAT_RCRINCON)
2673 printk("RCRINCON ");
2674 if (stat & RX_DMA_CTL_STAT_RCRFULL)
2676 if (stat & RX_DMA_CTL_STAT_RBRFULL)
2678 if (stat & RX_DMA_CTL_STAT_RBRLOGPAGE)
2679 printk("RBRLOGPAGE ");
2680 if (stat & RX_DMA_CTL_STAT_CFIGLOGPAGE)
2681 printk("CFIGLOGPAGE ");
2682 if (stat & RX_DMA_CTL_STAT_DC_FIFO_ERR)
2688 static int niu_rx_error(struct niu *np, struct rx_ring_info *rp)
2690 u64 stat = nr64(RX_DMA_CTL_STAT(rp->rx_channel));
2694 if (stat & (RX_DMA_CTL_STAT_CHAN_FATAL |
2695 RX_DMA_CTL_STAT_PORT_FATAL))
2699 dev_err(np->device, PFX "%s: RX channel %u error, stat[%llx]\n",
2700 np->dev->name, rp->rx_channel,
2701 (unsigned long long) stat);
2703 niu_log_rxchan_errors(np, rp, stat);
2706 nw64(RX_DMA_CTL_STAT(rp->rx_channel),
2707 stat & RX_DMA_CTL_WRITE_CLEAR_ERRS);
2712 static void niu_log_txchan_errors(struct niu *np, struct tx_ring_info *rp,
2715 dev_err(np->device, PFX "%s: TX channel %u errors ( ",
2716 np->dev->name, rp->tx_channel);
2718 if (cs & TX_CS_MBOX_ERR)
2720 if (cs & TX_CS_PKT_SIZE_ERR)
2721 printk("PKT_SIZE ");
2722 if (cs & TX_CS_TX_RING_OFLOW)
2723 printk("TX_RING_OFLOW ");
2724 if (cs & TX_CS_PREF_BUF_PAR_ERR)
2725 printk("PREF_BUF_PAR ");
2726 if (cs & TX_CS_NACK_PREF)
2727 printk("NACK_PREF ");
2728 if (cs & TX_CS_NACK_PKT_RD)
2729 printk("NACK_PKT_RD ");
2730 if (cs & TX_CS_CONF_PART_ERR)
2731 printk("CONF_PART ");
2732 if (cs & TX_CS_PKT_PRT_ERR)
2738 static int niu_tx_error(struct niu *np, struct tx_ring_info *rp)
2742 cs = nr64(TX_CS(rp->tx_channel));
2743 logh = nr64(TX_RNG_ERR_LOGH(rp->tx_channel));
2744 logl = nr64(TX_RNG_ERR_LOGL(rp->tx_channel));
2746 dev_err(np->device, PFX "%s: TX channel %u error, "
2747 "cs[%llx] logh[%llx] logl[%llx]\n",
2748 np->dev->name, rp->tx_channel,
2749 (unsigned long long) cs,
2750 (unsigned long long) logh,
2751 (unsigned long long) logl);
2753 niu_log_txchan_errors(np, rp, cs);
2758 static int niu_mif_interrupt(struct niu *np)
2760 u64 mif_status = nr64(MIF_STATUS);
2763 if (np->flags & NIU_FLAGS_XMAC) {
2764 u64 xrxmac_stat = nr64_mac(XRXMAC_STATUS);
2766 if (xrxmac_stat & XRXMAC_STATUS_PHY_MDINT)
2770 dev_err(np->device, PFX "%s: MIF interrupt, "
2771 "stat[%llx] phy_mdint(%d)\n",
2772 np->dev->name, (unsigned long long) mif_status, phy_mdint);
2777 static void niu_xmac_interrupt(struct niu *np)
2779 struct niu_xmac_stats *mp = &np->mac_stats.xmac;
2782 val = nr64_mac(XTXMAC_STATUS);
2783 if (val & XTXMAC_STATUS_FRAME_CNT_EXP)
2784 mp->tx_frames += TXMAC_FRM_CNT_COUNT;
2785 if (val & XTXMAC_STATUS_BYTE_CNT_EXP)
2786 mp->tx_bytes += TXMAC_BYTE_CNT_COUNT;
2787 if (val & XTXMAC_STATUS_TXFIFO_XFR_ERR)
2788 mp->tx_fifo_errors++;
2789 if (val & XTXMAC_STATUS_TXMAC_OFLOW)
2790 mp->tx_overflow_errors++;
2791 if (val & XTXMAC_STATUS_MAX_PSIZE_ERR)
2792 mp->tx_max_pkt_size_errors++;
2793 if (val & XTXMAC_STATUS_TXMAC_UFLOW)
2794 mp->tx_underflow_errors++;
2796 val = nr64_mac(XRXMAC_STATUS);
2797 if (val & XRXMAC_STATUS_LCL_FLT_STATUS)
2798 mp->rx_local_faults++;
2799 if (val & XRXMAC_STATUS_RFLT_DET)
2800 mp->rx_remote_faults++;
2801 if (val & XRXMAC_STATUS_LFLT_CNT_EXP)
2802 mp->rx_link_faults += LINK_FAULT_CNT_COUNT;
2803 if (val & XRXMAC_STATUS_ALIGNERR_CNT_EXP)
2804 mp->rx_align_errors += RXMAC_ALIGN_ERR_CNT_COUNT;
2805 if (val & XRXMAC_STATUS_RXFRAG_CNT_EXP)
2806 mp->rx_frags += RXMAC_FRAG_CNT_COUNT;
2807 if (val & XRXMAC_STATUS_RXMULTF_CNT_EXP)
2808 mp->rx_mcasts += RXMAC_MC_FRM_CNT_COUNT;
2809 if (val & XRXMAC_STATUS_RXBCAST_CNT_EXP)
2810 mp->rx_bcasts += RXMAC_BC_FRM_CNT_COUNT;
2811 if (val & XRXMAC_STATUS_RXBCAST_CNT_EXP)
2812 mp->rx_bcasts += RXMAC_BC_FRM_CNT_COUNT;
2813 if (val & XRXMAC_STATUS_RXHIST1_CNT_EXP)
2814 mp->rx_hist_cnt1 += RXMAC_HIST_CNT1_COUNT;
2815 if (val & XRXMAC_STATUS_RXHIST2_CNT_EXP)
2816 mp->rx_hist_cnt2 += RXMAC_HIST_CNT2_COUNT;
2817 if (val & XRXMAC_STATUS_RXHIST3_CNT_EXP)
2818 mp->rx_hist_cnt3 += RXMAC_HIST_CNT3_COUNT;
2819 if (val & XRXMAC_STATUS_RXHIST4_CNT_EXP)
2820 mp->rx_hist_cnt4 += RXMAC_HIST_CNT4_COUNT;
2821 if (val & XRXMAC_STATUS_RXHIST5_CNT_EXP)
2822 mp->rx_hist_cnt5 += RXMAC_HIST_CNT5_COUNT;
2823 if (val & XRXMAC_STATUS_RXHIST6_CNT_EXP)
2824 mp->rx_hist_cnt6 += RXMAC_HIST_CNT6_COUNT;
2825 if (val & XRXMAC_STATUS_RXHIST7_CNT_EXP)
2826 mp->rx_hist_cnt7 += RXMAC_HIST_CNT7_COUNT;
2827 if (val & XRXMAC_STAT_MSK_RXOCTET_CNT_EXP)
2828 mp->rx_octets += RXMAC_BT_CNT_COUNT;
2829 if (val & XRXMAC_STATUS_CVIOLERR_CNT_EXP)
2830 mp->rx_code_violations += RXMAC_CD_VIO_CNT_COUNT;
2831 if (val & XRXMAC_STATUS_LENERR_CNT_EXP)
2832 mp->rx_len_errors += RXMAC_MPSZER_CNT_COUNT;
2833 if (val & XRXMAC_STATUS_CRCERR_CNT_EXP)
2834 mp->rx_crc_errors += RXMAC_CRC_ER_CNT_COUNT;
2835 if (val & XRXMAC_STATUS_RXUFLOW)
2836 mp->rx_underflows++;
2837 if (val & XRXMAC_STATUS_RXOFLOW)
2840 val = nr64_mac(XMAC_FC_STAT);
2841 if (val & XMAC_FC_STAT_TX_MAC_NPAUSE)
2842 mp->pause_off_state++;
2843 if (val & XMAC_FC_STAT_TX_MAC_PAUSE)
2844 mp->pause_on_state++;
2845 if (val & XMAC_FC_STAT_RX_MAC_RPAUSE)
2846 mp->pause_received++;
2849 static void niu_bmac_interrupt(struct niu *np)
2851 struct niu_bmac_stats *mp = &np->mac_stats.bmac;
2854 val = nr64_mac(BTXMAC_STATUS);
2855 if (val & BTXMAC_STATUS_UNDERRUN)
2856 mp->tx_underflow_errors++;
2857 if (val & BTXMAC_STATUS_MAX_PKT_ERR)
2858 mp->tx_max_pkt_size_errors++;
2859 if (val & BTXMAC_STATUS_BYTE_CNT_EXP)
2860 mp->tx_bytes += BTXMAC_BYTE_CNT_COUNT;
2861 if (val & BTXMAC_STATUS_FRAME_CNT_EXP)
2862 mp->tx_frames += BTXMAC_FRM_CNT_COUNT;
2864 val = nr64_mac(BRXMAC_STATUS);
2865 if (val & BRXMAC_STATUS_OVERFLOW)
2867 if (val & BRXMAC_STATUS_FRAME_CNT_EXP)
2868 mp->rx_frames += BRXMAC_FRAME_CNT_COUNT;
2869 if (val & BRXMAC_STATUS_ALIGN_ERR_EXP)
2870 mp->rx_align_errors += BRXMAC_ALIGN_ERR_CNT_COUNT;
2871 if (val & BRXMAC_STATUS_CRC_ERR_EXP)
2872 mp->rx_crc_errors += BRXMAC_ALIGN_ERR_CNT_COUNT;
2873 if (val & BRXMAC_STATUS_LEN_ERR_EXP)
2874 mp->rx_len_errors += BRXMAC_CODE_VIOL_ERR_CNT_COUNT;
2876 val = nr64_mac(BMAC_CTRL_STATUS);
2877 if (val & BMAC_CTRL_STATUS_NOPAUSE)
2878 mp->pause_off_state++;
2879 if (val & BMAC_CTRL_STATUS_PAUSE)
2880 mp->pause_on_state++;
2881 if (val & BMAC_CTRL_STATUS_PAUSE_RECV)
2882 mp->pause_received++;
2885 static int niu_mac_interrupt(struct niu *np)
2887 if (np->flags & NIU_FLAGS_XMAC)
2888 niu_xmac_interrupt(np);
2890 niu_bmac_interrupt(np);
2895 static void niu_log_device_error(struct niu *np, u64 stat)
2897 dev_err(np->device, PFX "%s: Core device errors ( ",
2900 if (stat & SYS_ERR_MASK_META2)
2902 if (stat & SYS_ERR_MASK_META1)
2904 if (stat & SYS_ERR_MASK_PEU)
2906 if (stat & SYS_ERR_MASK_TXC)
2908 if (stat & SYS_ERR_MASK_RDMC)
2910 if (stat & SYS_ERR_MASK_TDMC)
2912 if (stat & SYS_ERR_MASK_ZCP)
2914 if (stat & SYS_ERR_MASK_FFLP)
2916 if (stat & SYS_ERR_MASK_IPP)
2918 if (stat & SYS_ERR_MASK_MAC)
2920 if (stat & SYS_ERR_MASK_SMX)
2926 static int niu_device_error(struct niu *np)
2928 u64 stat = nr64(SYS_ERR_STAT);
2930 dev_err(np->device, PFX "%s: Core device error, stat[%llx]\n",
2931 np->dev->name, (unsigned long long) stat);
2933 niu_log_device_error(np, stat);
2938 static int niu_slowpath_interrupt(struct niu *np, struct niu_ldg *lp,
2939 u64 v0, u64 v1, u64 v2)
2948 if (v1 & 0x00000000ffffffffULL) {
2949 u32 rx_vec = (v1 & 0xffffffff);
2951 for (i = 0; i < np->num_rx_rings; i++) {
2952 struct rx_ring_info *rp = &np->rx_rings[i];
2954 if (rx_vec & (1 << rp->rx_channel)) {
2955 int r = niu_rx_error(np, rp);
2960 nw64(RX_DMA_CTL_STAT(rp->rx_channel),
2961 RX_DMA_CTL_STAT_MEX);
2966 if (v1 & 0x7fffffff00000000ULL) {
2967 u32 tx_vec = (v1 >> 32) & 0x7fffffff;
2969 for (i = 0; i < np->num_tx_rings; i++) {
2970 struct tx_ring_info *rp = &np->tx_rings[i];
2972 if (tx_vec & (1 << rp->tx_channel)) {
2973 int r = niu_tx_error(np, rp);
2979 if ((v0 | v1) & 0x8000000000000000ULL) {
2980 int r = niu_mif_interrupt(np);
2986 int r = niu_mac_interrupt(np);
2991 int r = niu_device_error(np);
2998 niu_enable_interrupts(np, 0);
3003 static void niu_rxchan_intr(struct niu *np, struct rx_ring_info *rp,
3006 struct rxdma_mailbox *mbox = rp->mbox;
3007 u64 stat_write, stat = le64_to_cpup(&mbox->rx_dma_ctl_stat);
3009 stat_write = (RX_DMA_CTL_STAT_RCRTHRES |
3010 RX_DMA_CTL_STAT_RCRTO);
3011 nw64(RX_DMA_CTL_STAT(rp->rx_channel), stat_write);
3013 niudbg(INTR, "%s: rxchan_intr stat[%llx]\n",
3014 np->dev->name, (unsigned long long) stat);
3017 static void niu_txchan_intr(struct niu *np, struct tx_ring_info *rp,
3020 rp->tx_cs = nr64(TX_CS(rp->tx_channel));
3022 niudbg(INTR, "%s: txchan_intr cs[%llx]\n",
3023 np->dev->name, (unsigned long long) rp->tx_cs);
3026 static void __niu_fastpath_interrupt(struct niu *np, int ldg, u64 v0)
3028 struct niu_parent *parent = np->parent;
3032 tx_vec = (v0 >> 32);
3033 rx_vec = (v0 & 0xffffffff);
3035 for (i = 0; i < np->num_rx_rings; i++) {
3036 struct rx_ring_info *rp = &np->rx_rings[i];
3037 int ldn = LDN_RXDMA(rp->rx_channel);
3039 if (parent->ldg_map[ldn] != ldg)
3042 nw64(LD_IM0(ldn), LD_IM0_MASK);
3043 if (rx_vec & (1 << rp->rx_channel))
3044 niu_rxchan_intr(np, rp, ldn);
3047 for (i = 0; i < np->num_tx_rings; i++) {
3048 struct tx_ring_info *rp = &np->tx_rings[i];
3049 int ldn = LDN_TXDMA(rp->tx_channel);
3051 if (parent->ldg_map[ldn] != ldg)
3054 nw64(LD_IM0(ldn), LD_IM0_MASK);
3055 if (tx_vec & (1 << rp->tx_channel))
3056 niu_txchan_intr(np, rp, ldn);
3060 static void niu_schedule_napi(struct niu *np, struct niu_ldg *lp,
3061 u64 v0, u64 v1, u64 v2)
3063 if (likely(netif_rx_schedule_prep(np->dev, &lp->napi))) {
3067 __niu_fastpath_interrupt(np, lp->ldg_num, v0);
3068 __netif_rx_schedule(np->dev, &lp->napi);
3072 static irqreturn_t niu_interrupt(int irq, void *dev_id)
3074 struct niu_ldg *lp = dev_id;
3075 struct niu *np = lp->np;
3076 int ldg = lp->ldg_num;
3077 unsigned long flags;
3080 if (netif_msg_intr(np))
3081 printk(KERN_DEBUG PFX "niu_interrupt() ldg[%p](%d) ",
3084 spin_lock_irqsave(&np->lock, flags);
3086 v0 = nr64(LDSV0(ldg));
3087 v1 = nr64(LDSV1(ldg));
3088 v2 = nr64(LDSV2(ldg));
3090 if (netif_msg_intr(np))
3091 printk("v0[%llx] v1[%llx] v2[%llx]\n",
3092 (unsigned long long) v0,
3093 (unsigned long long) v1,
3094 (unsigned long long) v2);
3096 if (unlikely(!v0 && !v1 && !v2)) {
3097 spin_unlock_irqrestore(&np->lock, flags);
3101 if (unlikely((v0 & ((u64)1 << LDN_MIF)) || v1 || v2)) {
3102 int err = niu_slowpath_interrupt(np, lp, v0, v1, v2);
3106 if (likely(v0 & ~((u64)1 << LDN_MIF)))
3107 niu_schedule_napi(np, lp, v0, v1, v2);
3109 niu_ldg_rearm(np, lp, 1);
3111 spin_unlock_irqrestore(&np->lock, flags);
3116 static void niu_free_rx_ring_info(struct niu *np, struct rx_ring_info *rp)
3119 np->ops->free_coherent(np->device,
3120 sizeof(struct rxdma_mailbox),
3121 rp->mbox, rp->mbox_dma);
3125 np->ops->free_coherent(np->device,
3126 MAX_RCR_RING_SIZE * sizeof(__le64),
3127 rp->rcr, rp->rcr_dma);
3129 rp->rcr_table_size = 0;
3133 niu_rbr_free(np, rp);
3135 np->ops->free_coherent(np->device,
3136 MAX_RBR_RING_SIZE * sizeof(__le32),
3137 rp->rbr, rp->rbr_dma);
3139 rp->rbr_table_size = 0;
3146 static void niu_free_tx_ring_info(struct niu *np, struct tx_ring_info *rp)
3149 np->ops->free_coherent(np->device,
3150 sizeof(struct txdma_mailbox),
3151 rp->mbox, rp->mbox_dma);
3157 for (i = 0; i < MAX_TX_RING_SIZE; i++) {
3158 if (rp->tx_buffs[i].skb)
3159 (void) release_tx_packet(np, rp, i);
3162 np->ops->free_coherent(np->device,
3163 MAX_TX_RING_SIZE * sizeof(__le64),
3164 rp->descr, rp->descr_dma);
3173 static void niu_free_channels(struct niu *np)
3178 for (i = 0; i < np->num_rx_rings; i++) {
3179 struct rx_ring_info *rp = &np->rx_rings[i];
3181 niu_free_rx_ring_info(np, rp);
3183 kfree(np->rx_rings);
3184 np->rx_rings = NULL;
3185 np->num_rx_rings = 0;
3189 for (i = 0; i < np->num_tx_rings; i++) {
3190 struct tx_ring_info *rp = &np->tx_rings[i];
3192 niu_free_tx_ring_info(np, rp);
3194 kfree(np->tx_rings);
3195 np->tx_rings = NULL;
3196 np->num_tx_rings = 0;
3200 static int niu_alloc_rx_ring_info(struct niu *np,
3201 struct rx_ring_info *rp)
3203 BUILD_BUG_ON(sizeof(struct rxdma_mailbox) != 64);
3205 rp->rxhash = kzalloc(MAX_RBR_RING_SIZE * sizeof(struct page *),
3210 rp->mbox = np->ops->alloc_coherent(np->device,
3211 sizeof(struct rxdma_mailbox),
3212 &rp->mbox_dma, GFP_KERNEL);
3215 if ((unsigned long)rp->mbox & (64UL - 1)) {
3216 dev_err(np->device, PFX "%s: Coherent alloc gives misaligned "
3217 "RXDMA mailbox %p\n", np->dev->name, rp->mbox);
3221 rp->rcr = np->ops->alloc_coherent(np->device,
3222 MAX_RCR_RING_SIZE * sizeof(__le64),
3223 &rp->rcr_dma, GFP_KERNEL);
3226 if ((unsigned long)rp->rcr & (64UL - 1)) {
3227 dev_err(np->device, PFX "%s: Coherent alloc gives misaligned "
3228 "RXDMA RCR table %p\n", np->dev->name, rp->rcr);
3231 rp->rcr_table_size = MAX_RCR_RING_SIZE;
3234 rp->rbr = np->ops->alloc_coherent(np->device,
3235 MAX_RBR_RING_SIZE * sizeof(__le32),
3236 &rp->rbr_dma, GFP_KERNEL);
3239 if ((unsigned long)rp->rbr & (64UL - 1)) {
3240 dev_err(np->device, PFX "%s: Coherent alloc gives misaligned "
3241 "RXDMA RBR table %p\n", np->dev->name, rp->rbr);
3244 rp->rbr_table_size = MAX_RBR_RING_SIZE;
3246 rp->rbr_pending = 0;
3251 static void niu_set_max_burst(struct niu *np, struct tx_ring_info *rp)
3253 int mtu = np->dev->mtu;
3255 /* These values are recommended by the HW designers for fair
3256 * utilization of DRR amongst the rings.
3258 rp->max_burst = mtu + 32;
3259 if (rp->max_burst > 4096)
3260 rp->max_burst = 4096;
3263 static int niu_alloc_tx_ring_info(struct niu *np,
3264 struct tx_ring_info *rp)
3266 BUILD_BUG_ON(sizeof(struct txdma_mailbox) != 64);
3268 rp->mbox = np->ops->alloc_coherent(np->device,
3269 sizeof(struct txdma_mailbox),
3270 &rp->mbox_dma, GFP_KERNEL);
3273 if ((unsigned long)rp->mbox & (64UL - 1)) {
3274 dev_err(np->device, PFX "%s: Coherent alloc gives misaligned "
3275 "TXDMA mailbox %p\n", np->dev->name, rp->mbox);
3279 rp->descr = np->ops->alloc_coherent(np->device,
3280 MAX_TX_RING_SIZE * sizeof(__le64),
3281 &rp->descr_dma, GFP_KERNEL);
3284 if ((unsigned long)rp->descr & (64UL - 1)) {
3285 dev_err(np->device, PFX "%s: Coherent alloc gives misaligned "
3286 "TXDMA descr table %p\n", np->dev->name, rp->descr);
3290 rp->pending = MAX_TX_RING_SIZE;
3295 /* XXX make these configurable... XXX */
3296 rp->mark_freq = rp->pending / 4;
3298 niu_set_max_burst(np, rp);
3303 static void niu_size_rbr(struct niu *np, struct rx_ring_info *rp)
3307 bss = min(PAGE_SHIFT, 15);
3309 rp->rbr_block_size = 1 << bss;
3310 rp->rbr_blocks_per_page = 1 << (PAGE_SHIFT-bss);
3312 rp->rbr_sizes[0] = 256;
3313 rp->rbr_sizes[1] = 1024;
3314 if (np->dev->mtu > ETH_DATA_LEN) {
3315 switch (PAGE_SIZE) {
3317 rp->rbr_sizes[2] = 4096;
3321 rp->rbr_sizes[2] = 8192;
3325 rp->rbr_sizes[2] = 2048;
3327 rp->rbr_sizes[3] = rp->rbr_block_size;
3330 static int niu_alloc_channels(struct niu *np)
3332 struct niu_parent *parent = np->parent;
3333 int first_rx_channel, first_tx_channel;
3337 first_rx_channel = first_tx_channel = 0;
3338 for (i = 0; i < port; i++) {
3339 first_rx_channel += parent->rxchan_per_port[i];
3340 first_tx_channel += parent->txchan_per_port[i];
3343 np->num_rx_rings = parent->rxchan_per_port[port];
3344 np->num_tx_rings = parent->txchan_per_port[port];
3346 np->rx_rings = kzalloc(np->num_rx_rings * sizeof(struct rx_ring_info),
3352 for (i = 0; i < np->num_rx_rings; i++) {
3353 struct rx_ring_info *rp = &np->rx_rings[i];
3356 rp->rx_channel = first_rx_channel + i;
3358 err = niu_alloc_rx_ring_info(np, rp);
3362 niu_size_rbr(np, rp);
3364 /* XXX better defaults, configurable, etc... XXX */
3365 rp->nonsyn_window = 64;
3366 rp->nonsyn_threshold = rp->rcr_table_size - 64;
3367 rp->syn_window = 64;
3368 rp->syn_threshold = rp->rcr_table_size - 64;
3369 rp->rcr_pkt_threshold = 16;
3370 rp->rcr_timeout = 8;
3371 rp->rbr_kick_thresh = RBR_REFILL_MIN;
3372 if (rp->rbr_kick_thresh < rp->rbr_blocks_per_page)
3373 rp->rbr_kick_thresh = rp->rbr_blocks_per_page;
3375 err = niu_rbr_fill(np, rp, GFP_KERNEL);
3380 np->tx_rings = kzalloc(np->num_tx_rings * sizeof(struct tx_ring_info),
3386 for (i = 0; i < np->num_tx_rings; i++) {
3387 struct tx_ring_info *rp = &np->tx_rings[i];
3390 rp->tx_channel = first_tx_channel + i;
3392 err = niu_alloc_tx_ring_info(np, rp);
3400 niu_free_channels(np);
3404 static int niu_tx_cs_sng_poll(struct niu *np, int channel)
3408 while (--limit > 0) {
3409 u64 val = nr64(TX_CS(channel));
3410 if (val & TX_CS_SNG_STATE)
3416 static int niu_tx_channel_stop(struct niu *np, int channel)
3418 u64 val = nr64(TX_CS(channel));
3420 val |= TX_CS_STOP_N_GO;
3421 nw64(TX_CS(channel), val);
3423 return niu_tx_cs_sng_poll(np, channel);
3426 static int niu_tx_cs_reset_poll(struct niu *np, int channel)
3430 while (--limit > 0) {
3431 u64 val = nr64(TX_CS(channel));
3432 if (!(val & TX_CS_RST))
3438 static int niu_tx_channel_reset(struct niu *np, int channel)
3440 u64 val = nr64(TX_CS(channel));
3444 nw64(TX_CS(channel), val);
3446 err = niu_tx_cs_reset_poll(np, channel);
3448 nw64(TX_RING_KICK(channel), 0);
3453 static int niu_tx_channel_lpage_init(struct niu *np, int channel)
3457 nw64(TX_LOG_MASK1(channel), 0);
3458 nw64(TX_LOG_VAL1(channel), 0);
3459 nw64(TX_LOG_MASK2(channel), 0);
3460 nw64(TX_LOG_VAL2(channel), 0);
3461 nw64(TX_LOG_PAGE_RELO1(channel), 0);
3462 nw64(TX_LOG_PAGE_RELO2(channel), 0);
3463 nw64(TX_LOG_PAGE_HDL(channel), 0);
3465 val = (u64)np->port << TX_LOG_PAGE_VLD_FUNC_SHIFT;
3466 val |= (TX_LOG_PAGE_VLD_PAGE0 | TX_LOG_PAGE_VLD_PAGE1);
3467 nw64(TX_LOG_PAGE_VLD(channel), val);
3469 /* XXX TXDMA 32bit mode? XXX */
3474 static void niu_txc_enable_port(struct niu *np, int on)
3476 unsigned long flags;
3479 niu_lock_parent(np, flags);
3480 val = nr64(TXC_CONTROL);
3481 mask = (u64)1 << np->port;
3483 val |= TXC_CONTROL_ENABLE | mask;
3486 if ((val & ~TXC_CONTROL_ENABLE) == 0)
3487 val &= ~TXC_CONTROL_ENABLE;
3489 nw64(TXC_CONTROL, val);
3490 niu_unlock_parent(np, flags);
3493 static void niu_txc_set_imask(struct niu *np, u64 imask)
3495 unsigned long flags;
3498 niu_lock_parent(np, flags);
3499 val = nr64(TXC_INT_MASK);
3500 val &= ~TXC_INT_MASK_VAL(np->port);
3501 val |= (imask << TXC_INT_MASK_VAL_SHIFT(np->port));
3502 niu_unlock_parent(np, flags);
3505 static void niu_txc_port_dma_enable(struct niu *np, int on)
3512 for (i = 0; i < np->num_tx_rings; i++)
3513 val |= (1 << np->tx_rings[i].tx_channel);
3515 nw64(TXC_PORT_DMA(np->port), val);
3518 static int niu_init_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
3520 int err, channel = rp->tx_channel;
3523 err = niu_tx_channel_stop(np, channel);
3527 err = niu_tx_channel_reset(np, channel);
3531 err = niu_tx_channel_lpage_init(np, channel);
3535 nw64(TXC_DMA_MAX(channel), rp->max_burst);
3536 nw64(TX_ENT_MSK(channel), 0);
3538 if (rp->descr_dma & ~(TX_RNG_CFIG_STADDR_BASE |
3539 TX_RNG_CFIG_STADDR)) {
3540 dev_err(np->device, PFX "%s: TX ring channel %d "
3541 "DMA addr (%llx) is not aligned.\n",
3542 np->dev->name, channel,
3543 (unsigned long long) rp->descr_dma);
3547 /* The length field in TX_RNG_CFIG is measured in 64-byte
3548 * blocks. rp->pending is the number of TX descriptors in
3549 * our ring, 8 bytes each, thus we divide by 8 bytes more
3550 * to get the proper value the chip wants.
3552 ring_len = (rp->pending / 8);
3554 val = ((ring_len << TX_RNG_CFIG_LEN_SHIFT) |
3556 nw64(TX_RNG_CFIG(channel), val);
3558 if (((rp->mbox_dma >> 32) & ~TXDMA_MBH_MBADDR) ||
3559 ((u32)rp->mbox_dma & ~TXDMA_MBL_MBADDR)) {
3560 dev_err(np->device, PFX "%s: TX ring channel %d "
3561 "MBOX addr (%llx) is has illegal bits.\n",
3562 np->dev->name, channel,
3563 (unsigned long long) rp->mbox_dma);
3566 nw64(TXDMA_MBH(channel), rp->mbox_dma >> 32);
3567 nw64(TXDMA_MBL(channel), rp->mbox_dma & TXDMA_MBL_MBADDR);
3569 nw64(TX_CS(channel), 0);
3571 rp->last_pkt_cnt = 0;
3576 static void niu_init_rdc_groups(struct niu *np)
3578 struct niu_rdc_tables *tp = &np->parent->rdc_group_cfg[np->port];
3579 int i, first_table_num = tp->first_table_num;
3581 for (i = 0; i < tp->num_tables; i++) {
3582 struct rdc_table *tbl = &tp->tables[i];
3583 int this_table = first_table_num + i;
3586 for (slot = 0; slot < NIU_RDC_TABLE_SLOTS; slot++)
3587 nw64(RDC_TBL(this_table, slot),
3588 tbl->rxdma_channel[slot]);
3591 nw64(DEF_RDC(np->port), np->parent->rdc_default[np->port]);
3594 static void niu_init_drr_weight(struct niu *np)
3596 int type = phy_decode(np->parent->port_phy, np->port);
3601 val = PT_DRR_WEIGHT_DEFAULT_10G;
3606 val = PT_DRR_WEIGHT_DEFAULT_1G;
3609 nw64(PT_DRR_WT(np->port), val);
3612 static int niu_init_hostinfo(struct niu *np)
3614 struct niu_parent *parent = np->parent;
3615 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
3616 int i, err, num_alt = niu_num_alt_addr(np);
3617 int first_rdc_table = tp->first_table_num;
3619 err = niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
3623 err = niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
3627 for (i = 0; i < num_alt; i++) {
3628 err = niu_set_alt_mac_rdc_table(np, i, first_rdc_table, 1);
3636 static int niu_rx_channel_reset(struct niu *np, int channel)
3638 return niu_set_and_wait_clear(np, RXDMA_CFIG1(channel),
3639 RXDMA_CFIG1_RST, 1000, 10,
3643 static int niu_rx_channel_lpage_init(struct niu *np, int channel)
3647 nw64(RX_LOG_MASK1(channel), 0);
3648 nw64(RX_LOG_VAL1(channel), 0);
3649 nw64(RX_LOG_MASK2(channel), 0);
3650 nw64(RX_LOG_VAL2(channel), 0);
3651 nw64(RX_LOG_PAGE_RELO1(channel), 0);
3652 nw64(RX_LOG_PAGE_RELO2(channel), 0);
3653 nw64(RX_LOG_PAGE_HDL(channel), 0);
3655 val = (u64)np->port << RX_LOG_PAGE_VLD_FUNC_SHIFT;
3656 val |= (RX_LOG_PAGE_VLD_PAGE0 | RX_LOG_PAGE_VLD_PAGE1);
3657 nw64(RX_LOG_PAGE_VLD(channel), val);
3662 static void niu_rx_channel_wred_init(struct niu *np, struct rx_ring_info *rp)
3666 val = (((u64)rp->nonsyn_window << RDC_RED_PARA_WIN_SHIFT) |
3667 ((u64)rp->nonsyn_threshold << RDC_RED_PARA_THRE_SHIFT) |
3668 ((u64)rp->syn_window << RDC_RED_PARA_WIN_SYN_SHIFT) |
3669 ((u64)rp->syn_threshold << RDC_RED_PARA_THRE_SYN_SHIFT));
3670 nw64(RDC_RED_PARA(rp->rx_channel), val);
3673 static int niu_compute_rbr_cfig_b(struct rx_ring_info *rp, u64 *ret)
3677 switch (rp->rbr_block_size) {
3679 val |= (RBR_BLKSIZE_4K << RBR_CFIG_B_BLKSIZE_SHIFT);
3682 val |= (RBR_BLKSIZE_8K << RBR_CFIG_B_BLKSIZE_SHIFT);
3685 val |= (RBR_BLKSIZE_16K << RBR_CFIG_B_BLKSIZE_SHIFT);
3688 val |= (RBR_BLKSIZE_32K << RBR_CFIG_B_BLKSIZE_SHIFT);
3693 val |= RBR_CFIG_B_VLD2;
3694 switch (rp->rbr_sizes[2]) {
3696 val |= (RBR_BUFSZ2_2K << RBR_CFIG_B_BUFSZ2_SHIFT);
3699 val |= (RBR_BUFSZ2_4K << RBR_CFIG_B_BUFSZ2_SHIFT);
3702 val |= (RBR_BUFSZ2_8K << RBR_CFIG_B_BUFSZ2_SHIFT);
3705 val |= (RBR_BUFSZ2_16K << RBR_CFIG_B_BUFSZ2_SHIFT);
3711 val |= RBR_CFIG_B_VLD1;
3712 switch (rp->rbr_sizes[1]) {
3714 val |= (RBR_BUFSZ1_1K << RBR_CFIG_B_BUFSZ1_SHIFT);
3717 val |= (RBR_BUFSZ1_2K << RBR_CFIG_B_BUFSZ1_SHIFT);
3720 val |= (RBR_BUFSZ1_4K << RBR_CFIG_B_BUFSZ1_SHIFT);
3723 val |= (RBR_BUFSZ1_8K << RBR_CFIG_B_BUFSZ1_SHIFT);
3729 val |= RBR_CFIG_B_VLD0;
3730 switch (rp->rbr_sizes[0]) {
3732 val |= (RBR_BUFSZ0_256 << RBR_CFIG_B_BUFSZ0_SHIFT);
3735 val |= (RBR_BUFSZ0_512 << RBR_CFIG_B_BUFSZ0_SHIFT);
3738 val |= (RBR_BUFSZ0_1K << RBR_CFIG_B_BUFSZ0_SHIFT);
3741 val |= (RBR_BUFSZ0_2K << RBR_CFIG_B_BUFSZ0_SHIFT);
3752 static int niu_enable_rx_channel(struct niu *np, int channel, int on)
3754 u64 val = nr64(RXDMA_CFIG1(channel));
3758 val |= RXDMA_CFIG1_EN;
3760 val &= ~RXDMA_CFIG1_EN;
3761 nw64(RXDMA_CFIG1(channel), val);
3764 while (--limit > 0) {
3765 if (nr64(RXDMA_CFIG1(channel)) & RXDMA_CFIG1_QST)
3774 static int niu_init_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
3776 int err, channel = rp->rx_channel;
3779 err = niu_rx_channel_reset(np, channel);
3783 err = niu_rx_channel_lpage_init(np, channel);
3787 niu_rx_channel_wred_init(np, rp);
3789 nw64(RX_DMA_ENT_MSK(channel), RX_DMA_ENT_MSK_RBR_EMPTY);
3790 nw64(RX_DMA_CTL_STAT(channel),
3791 (RX_DMA_CTL_STAT_MEX |
3792 RX_DMA_CTL_STAT_RCRTHRES |
3793 RX_DMA_CTL_STAT_RCRTO |
3794 RX_DMA_CTL_STAT_RBR_EMPTY));
3795 nw64(RXDMA_CFIG1(channel), rp->mbox_dma >> 32);
3796 nw64(RXDMA_CFIG2(channel), (rp->mbox_dma & 0x00000000ffffffc0));
3797 nw64(RBR_CFIG_A(channel),
3798 ((u64)rp->rbr_table_size << RBR_CFIG_A_LEN_SHIFT) |
3799 (rp->rbr_dma & (RBR_CFIG_A_STADDR_BASE | RBR_CFIG_A_STADDR)));
3800 err = niu_compute_rbr_cfig_b(rp, &val);
3803 nw64(RBR_CFIG_B(channel), val);
3804 nw64(RCRCFIG_A(channel),
3805 ((u64)rp->rcr_table_size << RCRCFIG_A_LEN_SHIFT) |
3806 (rp->rcr_dma & (RCRCFIG_A_STADDR_BASE | RCRCFIG_A_STADDR)));
3807 nw64(RCRCFIG_B(channel),
3808 ((u64)rp->rcr_pkt_threshold << RCRCFIG_B_PTHRES_SHIFT) |
3810 ((u64)rp->rcr_timeout << RCRCFIG_B_TIMEOUT_SHIFT));
3812 err = niu_enable_rx_channel(np, channel, 1);
3816 nw64(RBR_KICK(channel), rp->rbr_index);
3818 val = nr64(RX_DMA_CTL_STAT(channel));
3819 val |= RX_DMA_CTL_STAT_RBR_EMPTY;
3820 nw64(RX_DMA_CTL_STAT(channel), val);
3825 static int niu_init_rx_channels(struct niu *np)
3827 unsigned long flags;
3828 u64 seed = jiffies_64;
3831 niu_lock_parent(np, flags);
3832 nw64(RX_DMA_CK_DIV, np->parent->rxdma_clock_divider);
3833 nw64(RED_RAN_INIT, RED_RAN_INIT_OPMODE | (seed & RED_RAN_INIT_VAL));
3834 niu_unlock_parent(np, flags);
3836 /* XXX RXDMA 32bit mode? XXX */
3838 niu_init_rdc_groups(np);
3839 niu_init_drr_weight(np);
3841 err = niu_init_hostinfo(np);
3845 for (i = 0; i < np->num_rx_rings; i++) {
3846 struct rx_ring_info *rp = &np->rx_rings[i];
3848 err = niu_init_one_rx_channel(np, rp);
3856 static int niu_set_ip_frag_rule(struct niu *np)
3858 struct niu_parent *parent = np->parent;
3859 struct niu_classifier *cp = &np->clas;
3860 struct niu_tcam_entry *tp;
3863 /* XXX fix this allocation scheme XXX */
3864 index = cp->tcam_index;
3865 tp = &parent->tcam[index];
3867 /* Note that the noport bit is the same in both ipv4 and
3868 * ipv6 format TCAM entries.
3870 memset(tp, 0, sizeof(*tp));
3871 tp->key[1] = TCAM_V4KEY1_NOPORT;
3872 tp->key_mask[1] = TCAM_V4KEY1_NOPORT;
3873 tp->assoc_data = (TCAM_ASSOCDATA_TRES_USE_OFFSET |
3874 ((u64)0 << TCAM_ASSOCDATA_OFFSET_SHIFT));
3875 err = tcam_write(np, index, tp->key, tp->key_mask);
3878 err = tcam_assoc_write(np, index, tp->assoc_data);
3885 static int niu_init_classifier_hw(struct niu *np)
3887 struct niu_parent *parent = np->parent;
3888 struct niu_classifier *cp = &np->clas;
3891 nw64(H1POLY, cp->h1_init);
3892 nw64(H2POLY, cp->h2_init);
3894 err = niu_init_hostinfo(np);
3898 for (i = 0; i < ENET_VLAN_TBL_NUM_ENTRIES; i++) {
3899 struct niu_vlan_rdc *vp = &cp->vlan_mappings[i];
3901 vlan_tbl_write(np, i, np->port,
3902 vp->vlan_pref, vp->rdc_num);
3905 for (i = 0; i < cp->num_alt_mac_mappings; i++) {
3906 struct niu_altmac_rdc *ap = &cp->alt_mac_mappings[i];
3908 err = niu_set_alt_mac_rdc_table(np, ap->alt_mac_num,
3909 ap->rdc_num, ap->mac_pref);
3914 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_SCTP_IPV6; i++) {
3915 int index = i - CLASS_CODE_USER_PROG1;
3917 err = niu_set_tcam_key(np, i, parent->tcam_key[index]);
3920 err = niu_set_flow_key(np, i, parent->flow_key[index]);
3925 err = niu_set_ip_frag_rule(np);
3934 static int niu_zcp_write(struct niu *np, int index, u64 *data)
3936 nw64(ZCP_RAM_DATA0, data[0]);
3937 nw64(ZCP_RAM_DATA1, data[1]);
3938 nw64(ZCP_RAM_DATA2, data[2]);
3939 nw64(ZCP_RAM_DATA3, data[3]);
3940 nw64(ZCP_RAM_DATA4, data[4]);
3941 nw64(ZCP_RAM_BE, ZCP_RAM_BE_VAL);
3943 (ZCP_RAM_ACC_WRITE |
3944 (0 << ZCP_RAM_ACC_ZFCID_SHIFT) |
3945 (ZCP_RAM_SEL_CFIFO(np->port) << ZCP_RAM_ACC_RAM_SEL_SHIFT)));
3947 return niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
3951 static int niu_zcp_read(struct niu *np, int index, u64 *data)
3955 err = niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
3958 dev_err(np->device, PFX "%s: ZCP read busy won't clear, "
3959 "ZCP_RAM_ACC[%llx]\n", np->dev->name,
3960 (unsigned long long) nr64(ZCP_RAM_ACC));
3966 (0 << ZCP_RAM_ACC_ZFCID_SHIFT) |
3967 (ZCP_RAM_SEL_CFIFO(np->port) << ZCP_RAM_ACC_RAM_SEL_SHIFT)));
3969 err = niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
3972 dev_err(np->device, PFX "%s: ZCP read busy2 won't clear, "
3973 "ZCP_RAM_ACC[%llx]\n", np->dev->name,
3974 (unsigned long long) nr64(ZCP_RAM_ACC));
3978 data[0] = nr64(ZCP_RAM_DATA0);
3979 data[1] = nr64(ZCP_RAM_DATA1);
3980 data[2] = nr64(ZCP_RAM_DATA2);
3981 data[3] = nr64(ZCP_RAM_DATA3);
3982 data[4] = nr64(ZCP_RAM_DATA4);
3987 static void niu_zcp_cfifo_reset(struct niu *np)
3989 u64 val = nr64(RESET_CFIFO);
3991 val |= RESET_CFIFO_RST(np->port);
3992 nw64(RESET_CFIFO, val);
3995 val &= ~RESET_CFIFO_RST(np->port);
3996 nw64(RESET_CFIFO, val);
3999 static int niu_init_zcp(struct niu *np)
4001 u64 data[5], rbuf[5];
4004 if (np->parent->plat_type != PLAT_TYPE_NIU) {
4005 if (np->port == 0 || np->port == 1)
4006 max = ATLAS_P0_P1_CFIFO_ENTRIES;
4008 max = ATLAS_P2_P3_CFIFO_ENTRIES;
4010 max = NIU_CFIFO_ENTRIES;
4018 for (i = 0; i < max; i++) {
4019 err = niu_zcp_write(np, i, data);
4022 err = niu_zcp_read(np, i, rbuf);
4027 niu_zcp_cfifo_reset(np);
4028 nw64(CFIFO_ECC(np->port), 0);
4029 nw64(ZCP_INT_STAT, ZCP_INT_STAT_ALL);
4030 (void) nr64(ZCP_INT_STAT);
4031 nw64(ZCP_INT_MASK, ZCP_INT_MASK_ALL);
4036 static void niu_ipp_write(struct niu *np, int index, u64 *data)
4038 u64 val = nr64_ipp(IPP_CFIG);
4040 nw64_ipp(IPP_CFIG, val | IPP_CFIG_DFIFO_PIO_W);
4041 nw64_ipp(IPP_DFIFO_WR_PTR, index);
4042 nw64_ipp(IPP_DFIFO_WR0, data[0]);
4043 nw64_ipp(IPP_DFIFO_WR1, data[1]);
4044 nw64_ipp(IPP_DFIFO_WR2, data[2]);
4045 nw64_ipp(IPP_DFIFO_WR3, data[3]);
4046 nw64_ipp(IPP_DFIFO_WR4, data[4]);
4047 nw64_ipp(IPP_CFIG, val & ~IPP_CFIG_DFIFO_PIO_W);
4050 static void niu_ipp_read(struct niu *np, int index, u64 *data)
4052 nw64_ipp(IPP_DFIFO_RD_PTR, index);
4053 data[0] = nr64_ipp(IPP_DFIFO_RD0);
4054 data[1] = nr64_ipp(IPP_DFIFO_RD1);
4055 data[2] = nr64_ipp(IPP_DFIFO_RD2);
4056 data[3] = nr64_ipp(IPP_DFIFO_RD3);
4057 data[4] = nr64_ipp(IPP_DFIFO_RD4);
4060 static int niu_ipp_reset(struct niu *np)
4062 return niu_set_and_wait_clear_ipp(np, IPP_CFIG, IPP_CFIG_SOFT_RST,
4063 1000, 100, "IPP_CFIG");
4066 static int niu_init_ipp(struct niu *np)
4068 u64 data[5], rbuf[5], val;
4071 if (np->parent->plat_type != PLAT_TYPE_NIU) {
4072 if (np->port == 0 || np->port == 1)
4073 max = ATLAS_P0_P1_DFIFO_ENTRIES;
4075 max = ATLAS_P2_P3_DFIFO_ENTRIES;
4077 max = NIU_DFIFO_ENTRIES;
4085 for (i = 0; i < max; i++) {
4086 niu_ipp_write(np, i, data);
4087 niu_ipp_read(np, i, rbuf);
4090 (void) nr64_ipp(IPP_INT_STAT);
4091 (void) nr64_ipp(IPP_INT_STAT);
4093 err = niu_ipp_reset(np);
4097 (void) nr64_ipp(IPP_PKT_DIS);
4098 (void) nr64_ipp(IPP_BAD_CS_CNT);
4099 (void) nr64_ipp(IPP_ECC);
4101 (void) nr64_ipp(IPP_INT_STAT);
4103 nw64_ipp(IPP_MSK, ~IPP_MSK_ALL);
4105 val = nr64_ipp(IPP_CFIG);
4106 val &= ~IPP_CFIG_IP_MAX_PKT;
4107 val |= (IPP_CFIG_IPP_ENABLE |
4108 IPP_CFIG_DFIFO_ECC_EN |
4109 IPP_CFIG_DROP_BAD_CRC |
4111 (0x1ffff << IPP_CFIG_IP_MAX_PKT_SHIFT));
4112 nw64_ipp(IPP_CFIG, val);
4117 static void niu_handle_led(struct niu *np, int status)
4120 val = nr64_mac(XMAC_CONFIG);
4122 if ((np->flags & NIU_FLAGS_10G) != 0 &&
4123 (np->flags & NIU_FLAGS_FIBER) != 0) {
4125 val |= XMAC_CONFIG_LED_POLARITY;
4126 val &= ~XMAC_CONFIG_FORCE_LED_ON;
4128 val |= XMAC_CONFIG_FORCE_LED_ON;
4129 val &= ~XMAC_CONFIG_LED_POLARITY;
4133 nw64_mac(XMAC_CONFIG, val);
4136 static void niu_init_xif_xmac(struct niu *np)
4138 struct niu_link_config *lp = &np->link_config;
4141 val = nr64_mac(XMAC_CONFIG);
4142 val &= ~XMAC_CONFIG_SEL_POR_CLK_SRC;
4144 val |= XMAC_CONFIG_TX_OUTPUT_EN;
4146 if (lp->loopback_mode == LOOPBACK_MAC) {
4147 val &= ~XMAC_CONFIG_SEL_POR_CLK_SRC;
4148 val |= XMAC_CONFIG_LOOPBACK;
4150 val &= ~XMAC_CONFIG_LOOPBACK;
4153 if (np->flags & NIU_FLAGS_10G) {
4154 val &= ~XMAC_CONFIG_LFS_DISABLE;
4156 val |= XMAC_CONFIG_LFS_DISABLE;
4157 if (!(np->flags & NIU_FLAGS_FIBER))
4158 val |= XMAC_CONFIG_1G_PCS_BYPASS;
4160 val &= ~XMAC_CONFIG_1G_PCS_BYPASS;
4163 val &= ~XMAC_CONFIG_10G_XPCS_BYPASS;
4165 if (lp->active_speed == SPEED_100)
4166 val |= XMAC_CONFIG_SEL_CLK_25MHZ;
4168 val &= ~XMAC_CONFIG_SEL_CLK_25MHZ;
4170 nw64_mac(XMAC_CONFIG, val);
4172 val = nr64_mac(XMAC_CONFIG);
4173 val &= ~XMAC_CONFIG_MODE_MASK;
4174 if (np->flags & NIU_FLAGS_10G) {
4175 val |= XMAC_CONFIG_MODE_XGMII;
4177 if (lp->active_speed == SPEED_100)
4178 val |= XMAC_CONFIG_MODE_MII;
4180 val |= XMAC_CONFIG_MODE_GMII;
4183 nw64_mac(XMAC_CONFIG, val);
4186 static void niu_init_xif_bmac(struct niu *np)
4188 struct niu_link_config *lp = &np->link_config;
4191 val = BMAC_XIF_CONFIG_TX_OUTPUT_EN;
4193 if (lp->loopback_mode == LOOPBACK_MAC)
4194 val |= BMAC_XIF_CONFIG_MII_LOOPBACK;
4196 val &= ~BMAC_XIF_CONFIG_MII_LOOPBACK;
4198 if (lp->active_speed == SPEED_1000)
4199 val |= BMAC_XIF_CONFIG_GMII_MODE;
4201 val &= ~BMAC_XIF_CONFIG_GMII_MODE;
4203 val &= ~(BMAC_XIF_CONFIG_LINK_LED |
4204 BMAC_XIF_CONFIG_LED_POLARITY);
4206 if (!(np->flags & NIU_FLAGS_10G) &&
4207 !(np->flags & NIU_FLAGS_FIBER) &&
4208 lp->active_speed == SPEED_100)
4209 val |= BMAC_XIF_CONFIG_25MHZ_CLOCK;
4211 val &= ~BMAC_XIF_CONFIG_25MHZ_CLOCK;
4213 nw64_mac(BMAC_XIF_CONFIG, val);
4216 static void niu_init_xif(struct niu *np)
4218 if (np->flags & NIU_FLAGS_XMAC)
4219 niu_init_xif_xmac(np);
4221 niu_init_xif_bmac(np);
4224 static void niu_pcs_mii_reset(struct niu *np)
4226 u64 val = nr64_pcs(PCS_MII_CTL);
4227 val |= PCS_MII_CTL_RST;
4228 nw64_pcs(PCS_MII_CTL, val);
4231 static void niu_xpcs_reset(struct niu *np)
4233 u64 val = nr64_xpcs(XPCS_CONTROL1);
4234 val |= XPCS_CONTROL1_RESET;
4235 nw64_xpcs(XPCS_CONTROL1, val);
4238 static int niu_init_pcs(struct niu *np)
4240 struct niu_link_config *lp = &np->link_config;
4243 switch (np->flags & (NIU_FLAGS_10G | NIU_FLAGS_FIBER)) {
4244 case NIU_FLAGS_FIBER:
4246 nw64_pcs(PCS_CONF, PCS_CONF_MASK | PCS_CONF_ENABLE);
4247 nw64_pcs(PCS_DPATH_MODE, 0);
4248 niu_pcs_mii_reset(np);
4252 case NIU_FLAGS_10G | NIU_FLAGS_FIBER:
4253 if (!(np->flags & NIU_FLAGS_XMAC))
4256 /* 10G copper or fiber */
4257 val = nr64_mac(XMAC_CONFIG);
4258 val &= ~XMAC_CONFIG_10G_XPCS_BYPASS;
4259 nw64_mac(XMAC_CONFIG, val);
4263 val = nr64_xpcs(XPCS_CONTROL1);
4264 if (lp->loopback_mode == LOOPBACK_PHY)
4265 val |= XPCS_CONTROL1_LOOPBACK;
4267 val &= ~XPCS_CONTROL1_LOOPBACK;
4268 nw64_xpcs(XPCS_CONTROL1, val);
4270 nw64_xpcs(XPCS_DESKEW_ERR_CNT, 0);
4271 (void) nr64_xpcs(XPCS_SYMERR_CNT01);
4272 (void) nr64_xpcs(XPCS_SYMERR_CNT23);
4277 nw64_pcs(PCS_DPATH_MODE, PCS_DPATH_MODE_MII);
4278 niu_pcs_mii_reset(np);
4288 static int niu_reset_tx_xmac(struct niu *np)
4290 return niu_set_and_wait_clear_mac(np, XTXMAC_SW_RST,
4291 (XTXMAC_SW_RST_REG_RS |
4292 XTXMAC_SW_RST_SOFT_RST),
4293 1000, 100, "XTXMAC_SW_RST");
4296 static int niu_reset_tx_bmac(struct niu *np)
4300 nw64_mac(BTXMAC_SW_RST, BTXMAC_SW_RST_RESET);
4302 while (--limit >= 0) {
4303 if (!(nr64_mac(BTXMAC_SW_RST) & BTXMAC_SW_RST_RESET))
4308 dev_err(np->device, PFX "Port %u TX BMAC would not reset, "
4309 "BTXMAC_SW_RST[%llx]\n",
4311 (unsigned long long) nr64_mac(BTXMAC_SW_RST));
4318 static int niu_reset_tx_mac(struct niu *np)
4320 if (np->flags & NIU_FLAGS_XMAC)
4321 return niu_reset_tx_xmac(np);
4323 return niu_reset_tx_bmac(np);
4326 static void niu_init_tx_xmac(struct niu *np, u64 min, u64 max)
4330 val = nr64_mac(XMAC_MIN);
4331 val &= ~(XMAC_MIN_TX_MIN_PKT_SIZE |
4332 XMAC_MIN_RX_MIN_PKT_SIZE);
4333 val |= (min << XMAC_MIN_RX_MIN_PKT_SIZE_SHFT);
4334 val |= (min << XMAC_MIN_TX_MIN_PKT_SIZE_SHFT);
4335 nw64_mac(XMAC_MIN, val);
4337 nw64_mac(XMAC_MAX, max);
4339 nw64_mac(XTXMAC_STAT_MSK, ~(u64)0);
4341 val = nr64_mac(XMAC_IPG);
4342 if (np->flags & NIU_FLAGS_10G) {
4343 val &= ~XMAC_IPG_IPG_XGMII;
4344 val |= (IPG_12_15_XGMII << XMAC_IPG_IPG_XGMII_SHIFT);
4346 val &= ~XMAC_IPG_IPG_MII_GMII;
4347 val |= (IPG_12_MII_GMII << XMAC_IPG_IPG_MII_GMII_SHIFT);
4349 nw64_mac(XMAC_IPG, val);
4351 val = nr64_mac(XMAC_CONFIG);
4352 val &= ~(XMAC_CONFIG_ALWAYS_NO_CRC |
4353 XMAC_CONFIG_STRETCH_MODE |
4354 XMAC_CONFIG_VAR_MIN_IPG_EN |
4355 XMAC_CONFIG_TX_ENABLE);
4356 nw64_mac(XMAC_CONFIG, val);
4358 nw64_mac(TXMAC_FRM_CNT, 0);
4359 nw64_mac(TXMAC_BYTE_CNT, 0);
4362 static void niu_init_tx_bmac(struct niu *np, u64 min, u64 max)
4366 nw64_mac(BMAC_MIN_FRAME, min);
4367 nw64_mac(BMAC_MAX_FRAME, max);
4369 nw64_mac(BTXMAC_STATUS_MASK, ~(u64)0);
4370 nw64_mac(BMAC_CTRL_TYPE, 0x8808);
4371 nw64_mac(BMAC_PREAMBLE_SIZE, 7);
4373 val = nr64_mac(BTXMAC_CONFIG);
4374 val &= ~(BTXMAC_CONFIG_FCS_DISABLE |
4375 BTXMAC_CONFIG_ENABLE);
4376 nw64_mac(BTXMAC_CONFIG, val);
4379 static void niu_init_tx_mac(struct niu *np)
4384 if (np->dev->mtu > ETH_DATA_LEN)
4389 /* The XMAC_MIN register only accepts values for TX min which
4390 * have the low 3 bits cleared.
4392 BUILD_BUG_ON(min & 0x7);
4394 if (np->flags & NIU_FLAGS_XMAC)
4395 niu_init_tx_xmac(np, min, max);
4397 niu_init_tx_bmac(np, min, max);
4400 static int niu_reset_rx_xmac(struct niu *np)
4404 nw64_mac(XRXMAC_SW_RST,
4405 XRXMAC_SW_RST_REG_RS | XRXMAC_SW_RST_SOFT_RST);
4407 while (--limit >= 0) {
4408 if (!(nr64_mac(XRXMAC_SW_RST) & (XRXMAC_SW_RST_REG_RS |
4409 XRXMAC_SW_RST_SOFT_RST)))
4414 dev_err(np->device, PFX "Port %u RX XMAC would not reset, "
4415 "XRXMAC_SW_RST[%llx]\n",
4417 (unsigned long long) nr64_mac(XRXMAC_SW_RST));
4424 static int niu_reset_rx_bmac(struct niu *np)
4428 nw64_mac(BRXMAC_SW_RST, BRXMAC_SW_RST_RESET);
4430 while (--limit >= 0) {
4431 if (!(nr64_mac(BRXMAC_SW_RST) & BRXMAC_SW_RST_RESET))
4436 dev_err(np->device, PFX "Port %u RX BMAC would not reset, "
4437 "BRXMAC_SW_RST[%llx]\n",
4439 (unsigned long long) nr64_mac(BRXMAC_SW_RST));
4446 static int niu_reset_rx_mac(struct niu *np)
4448 if (np->flags & NIU_FLAGS_XMAC)
4449 return niu_reset_rx_xmac(np);
4451 return niu_reset_rx_bmac(np);
4454 static void niu_init_rx_xmac(struct niu *np)
4456 struct niu_parent *parent = np->parent;
4457 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
4458 int first_rdc_table = tp->first_table_num;
4462 nw64_mac(XMAC_ADD_FILT0, 0);
4463 nw64_mac(XMAC_ADD_FILT1, 0);
4464 nw64_mac(XMAC_ADD_FILT2, 0);
4465 nw64_mac(XMAC_ADD_FILT12_MASK, 0);
4466 nw64_mac(XMAC_ADD_FILT00_MASK, 0);
4467 for (i = 0; i < MAC_NUM_HASH; i++)
4468 nw64_mac(XMAC_HASH_TBL(i), 0);
4469 nw64_mac(XRXMAC_STAT_MSK, ~(u64)0);
4470 niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
4471 niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
4473 val = nr64_mac(XMAC_CONFIG);
4474 val &= ~(XMAC_CONFIG_RX_MAC_ENABLE |
4475 XMAC_CONFIG_PROMISCUOUS |
4476 XMAC_CONFIG_PROMISC_GROUP |
4477 XMAC_CONFIG_ERR_CHK_DIS |
4478 XMAC_CONFIG_RX_CRC_CHK_DIS |
4479 XMAC_CONFIG_RESERVED_MULTICAST |
4480 XMAC_CONFIG_RX_CODEV_CHK_DIS |
4481 XMAC_CONFIG_ADDR_FILTER_EN |
4482 XMAC_CONFIG_RCV_PAUSE_ENABLE |
4483 XMAC_CONFIG_STRIP_CRC |
4484 XMAC_CONFIG_PASS_FLOW_CTRL |
4485 XMAC_CONFIG_MAC2IPP_PKT_CNT_EN);
4486 val |= (XMAC_CONFIG_HASH_FILTER_EN);
4487 nw64_mac(XMAC_CONFIG, val);
4489 nw64_mac(RXMAC_BT_CNT, 0);
4490 nw64_mac(RXMAC_BC_FRM_CNT, 0);
4491 nw64_mac(RXMAC_MC_FRM_CNT, 0);
4492 nw64_mac(RXMAC_FRAG_CNT, 0);
4493 nw64_mac(RXMAC_HIST_CNT1, 0);
4494 nw64_mac(RXMAC_HIST_CNT2, 0);
4495 nw64_mac(RXMAC_HIST_CNT3, 0);
4496 nw64_mac(RXMAC_HIST_CNT4, 0);
4497 nw64_mac(RXMAC_HIST_CNT5, 0);
4498 nw64_mac(RXMAC_HIST_CNT6, 0);
4499 nw64_mac(RXMAC_HIST_CNT7, 0);
4500 nw64_mac(RXMAC_MPSZER_CNT, 0);
4501 nw64_mac(RXMAC_CRC_ER_CNT, 0);
4502 nw64_mac(RXMAC_CD_VIO_CNT, 0);
4503 nw64_mac(LINK_FAULT_CNT, 0);
4506 static void niu_init_rx_bmac(struct niu *np)
4508 struct niu_parent *parent = np->parent;
4509 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
4510 int first_rdc_table = tp->first_table_num;
4514 nw64_mac(BMAC_ADD_FILT0, 0);
4515 nw64_mac(BMAC_ADD_FILT1, 0);
4516 nw64_mac(BMAC_ADD_FILT2, 0);
4517 nw64_mac(BMAC_ADD_FILT12_MASK, 0);
4518 nw64_mac(BMAC_ADD_FILT00_MASK, 0);
4519 for (i = 0; i < MAC_NUM_HASH; i++)
4520 nw64_mac(BMAC_HASH_TBL(i), 0);
4521 niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
4522 niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
4523 nw64_mac(BRXMAC_STATUS_MASK, ~(u64)0);
4525 val = nr64_mac(BRXMAC_CONFIG);
4526 val &= ~(BRXMAC_CONFIG_ENABLE |
4527 BRXMAC_CONFIG_STRIP_PAD |
4528 BRXMAC_CONFIG_STRIP_FCS |
4529 BRXMAC_CONFIG_PROMISC |
4530 BRXMAC_CONFIG_PROMISC_GRP |
4531 BRXMAC_CONFIG_ADDR_FILT_EN |
4532 BRXMAC_CONFIG_DISCARD_DIS);
4533 val |= (BRXMAC_CONFIG_HASH_FILT_EN);
4534 nw64_mac(BRXMAC_CONFIG, val);
4536 val = nr64_mac(BMAC_ADDR_CMPEN);
4537 val |= BMAC_ADDR_CMPEN_EN0;
4538 nw64_mac(BMAC_ADDR_CMPEN, val);
4541 static void niu_init_rx_mac(struct niu *np)
4543 niu_set_primary_mac(np, np->dev->dev_addr);
4545 if (np->flags & NIU_FLAGS_XMAC)
4546 niu_init_rx_xmac(np);
4548 niu_init_rx_bmac(np);
4551 static void niu_enable_tx_xmac(struct niu *np, int on)
4553 u64 val = nr64_mac(XMAC_CONFIG);
4556 val |= XMAC_CONFIG_TX_ENABLE;
4558 val &= ~XMAC_CONFIG_TX_ENABLE;
4559 nw64_mac(XMAC_CONFIG, val);
4562 static void niu_enable_tx_bmac(struct niu *np, int on)
4564 u64 val = nr64_mac(BTXMAC_CONFIG);
4567 val |= BTXMAC_CONFIG_ENABLE;
4569 val &= ~BTXMAC_CONFIG_ENABLE;
4570 nw64_mac(BTXMAC_CONFIG, val);
4573 static void niu_enable_tx_mac(struct niu *np, int on)
4575 if (np->flags & NIU_FLAGS_XMAC)
4576 niu_enable_tx_xmac(np, on);
4578 niu_enable_tx_bmac(np, on);
4581 static void niu_enable_rx_xmac(struct niu *np, int on)
4583 u64 val = nr64_mac(XMAC_CONFIG);
4585 val &= ~(XMAC_CONFIG_HASH_FILTER_EN |
4586 XMAC_CONFIG_PROMISCUOUS);
4588 if (np->flags & NIU_FLAGS_MCAST)
4589 val |= XMAC_CONFIG_HASH_FILTER_EN;
4590 if (np->flags & NIU_FLAGS_PROMISC)
4591 val |= XMAC_CONFIG_PROMISCUOUS;
4594 val |= XMAC_CONFIG_RX_MAC_ENABLE;
4596 val &= ~XMAC_CONFIG_RX_MAC_ENABLE;
4597 nw64_mac(XMAC_CONFIG, val);
4600 static void niu_enable_rx_bmac(struct niu *np, int on)
4602 u64 val = nr64_mac(BRXMAC_CONFIG);
4604 val &= ~(BRXMAC_CONFIG_HASH_FILT_EN |
4605 BRXMAC_CONFIG_PROMISC);
4607 if (np->flags & NIU_FLAGS_MCAST)
4608 val |= BRXMAC_CONFIG_HASH_FILT_EN;
4609 if (np->flags & NIU_FLAGS_PROMISC)
4610 val |= BRXMAC_CONFIG_PROMISC;
4613 val |= BRXMAC_CONFIG_ENABLE;
4615 val &= ~BRXMAC_CONFIG_ENABLE;
4616 nw64_mac(BRXMAC_CONFIG, val);
4619 static void niu_enable_rx_mac(struct niu *np, int on)
4621 if (np->flags & NIU_FLAGS_XMAC)
4622 niu_enable_rx_xmac(np, on);
4624 niu_enable_rx_bmac(np, on);
4627 static int niu_init_mac(struct niu *np)
4632 err = niu_init_pcs(np);
4636 err = niu_reset_tx_mac(np);
4639 niu_init_tx_mac(np);
4640 err = niu_reset_rx_mac(np);
4643 niu_init_rx_mac(np);
4645 /* This looks hookey but the RX MAC reset we just did will
4646 * undo some of the state we setup in niu_init_tx_mac() so we
4647 * have to call it again. In particular, the RX MAC reset will
4648 * set the XMAC_MAX register back to it's default value.
4650 niu_init_tx_mac(np);
4651 niu_enable_tx_mac(np, 1);
4653 niu_enable_rx_mac(np, 1);
4658 static void niu_stop_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
4660 (void) niu_tx_channel_stop(np, rp->tx_channel);
4663 static void niu_stop_tx_channels(struct niu *np)
4667 for (i = 0; i < np->num_tx_rings; i++) {
4668 struct tx_ring_info *rp = &np->tx_rings[i];
4670 niu_stop_one_tx_channel(np, rp);
4674 static void niu_reset_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
4676 (void) niu_tx_channel_reset(np, rp->tx_channel);
4679 static void niu_reset_tx_channels(struct niu *np)
4683 for (i = 0; i < np->num_tx_rings; i++) {
4684 struct tx_ring_info *rp = &np->tx_rings[i];
4686 niu_reset_one_tx_channel(np, rp);
4690 static void niu_stop_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
4692 (void) niu_enable_rx_channel(np, rp->rx_channel, 0);
4695 static void niu_stop_rx_channels(struct niu *np)
4699 for (i = 0; i < np->num_rx_rings; i++) {
4700 struct rx_ring_info *rp = &np->rx_rings[i];
4702 niu_stop_one_rx_channel(np, rp);
4706 static void niu_reset_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
4708 int channel = rp->rx_channel;
4710 (void) niu_rx_channel_reset(np, channel);
4711 nw64(RX_DMA_ENT_MSK(channel), RX_DMA_ENT_MSK_ALL);
4712 nw64(RX_DMA_CTL_STAT(channel), 0);
4713 (void) niu_enable_rx_channel(np, channel, 0);
4716 static void niu_reset_rx_channels(struct niu *np)
4720 for (i = 0; i < np->num_rx_rings; i++) {
4721 struct rx_ring_info *rp = &np->rx_rings[i];
4723 niu_reset_one_rx_channel(np, rp);
4727 static void niu_disable_ipp(struct niu *np)
4732 rd = nr64_ipp(IPP_DFIFO_RD_PTR);
4733 wr = nr64_ipp(IPP_DFIFO_WR_PTR);
4735 while (--limit >= 0 && (rd != wr)) {
4736 rd = nr64_ipp(IPP_DFIFO_RD_PTR);
4737 wr = nr64_ipp(IPP_DFIFO_WR_PTR);
4740 (rd != 0 && wr != 1)) {
4741 dev_err(np->device, PFX "%s: IPP would not quiesce, "
4742 "rd_ptr[%llx] wr_ptr[%llx]\n",
4744 (unsigned long long) nr64_ipp(IPP_DFIFO_RD_PTR),
4745 (unsigned long long) nr64_ipp(IPP_DFIFO_WR_PTR));
4748 val = nr64_ipp(IPP_CFIG);
4749 val &= ~(IPP_CFIG_IPP_ENABLE |
4750 IPP_CFIG_DFIFO_ECC_EN |
4751 IPP_CFIG_DROP_BAD_CRC |
4753 nw64_ipp(IPP_CFIG, val);
4755 (void) niu_ipp_reset(np);
4758 static int niu_init_hw(struct niu *np)
4762 niudbg(IFUP, "%s: Initialize TXC\n", np->dev->name);
4763 niu_txc_enable_port(np, 1);
4764 niu_txc_port_dma_enable(np, 1);
4765 niu_txc_set_imask(np, 0);
4767 niudbg(IFUP, "%s: Initialize TX channels\n", np->dev->name);
4768 for (i = 0; i < np->num_tx_rings; i++) {
4769 struct tx_ring_info *rp = &np->tx_rings[i];
4771 err = niu_init_one_tx_channel(np, rp);
4776 niudbg(IFUP, "%s: Initialize RX channels\n", np->dev->name);
4777 err = niu_init_rx_channels(np);
4779 goto out_uninit_tx_channels;
4781 niudbg(IFUP, "%s: Initialize classifier\n", np->dev->name);
4782 err = niu_init_classifier_hw(np);
4784 goto out_uninit_rx_channels;
4786 niudbg(IFUP, "%s: Initialize ZCP\n", np->dev->name);
4787 err = niu_init_zcp(np);
4789 goto out_uninit_rx_channels;
4791 niudbg(IFUP, "%s: Initialize IPP\n", np->dev->name);
4792 err = niu_init_ipp(np);
4794 goto out_uninit_rx_channels;
4796 niudbg(IFUP, "%s: Initialize MAC\n", np->dev->name);
4797 err = niu_init_mac(np);
4799 goto out_uninit_ipp;
4804 niudbg(IFUP, "%s: Uninit IPP\n", np->dev->name);
4805 niu_disable_ipp(np);
4807 out_uninit_rx_channels:
4808 niudbg(IFUP, "%s: Uninit RX channels\n", np->dev->name);
4809 niu_stop_rx_channels(np);
4810 niu_reset_rx_channels(np);
4812 out_uninit_tx_channels:
4813 niudbg(IFUP, "%s: Uninit TX channels\n", np->dev->name);
4814 niu_stop_tx_channels(np);
4815 niu_reset_tx_channels(np);
4820 static void niu_stop_hw(struct niu *np)
4822 niudbg(IFDOWN, "%s: Disable interrupts\n", np->dev->name);
4823 niu_enable_interrupts(np, 0);
4825 niudbg(IFDOWN, "%s: Disable RX MAC\n", np->dev->name);
4826 niu_enable_rx_mac(np, 0);
4828 niudbg(IFDOWN, "%s: Disable IPP\n", np->dev->name);
4829 niu_disable_ipp(np);
4831 niudbg(IFDOWN, "%s: Stop TX channels\n", np->dev->name);
4832 niu_stop_tx_channels(np);
4834 niudbg(IFDOWN, "%s: Stop RX channels\n", np->dev->name);
4835 niu_stop_rx_channels(np);
4837 niudbg(IFDOWN, "%s: Reset TX channels\n", np->dev->name);
4838 niu_reset_tx_channels(np);
4840 niudbg(IFDOWN, "%s: Reset RX channels\n", np->dev->name);
4841 niu_reset_rx_channels(np);
4844 static int niu_request_irq(struct niu *np)
4849 for (i = 0; i < np->num_ldg; i++) {
4850 struct niu_ldg *lp = &np->ldg[i];
4852 err = request_irq(lp->irq, niu_interrupt,
4853 IRQF_SHARED | IRQF_SAMPLE_RANDOM,
4863 for (j = 0; j < i; j++) {
4864 struct niu_ldg *lp = &np->ldg[j];
4866 free_irq(lp->irq, lp);
4871 static void niu_free_irq(struct niu *np)
4875 for (i = 0; i < np->num_ldg; i++) {
4876 struct niu_ldg *lp = &np->ldg[i];
4878 free_irq(lp->irq, lp);
4882 static void niu_enable_napi(struct niu *np)
4886 for (i = 0; i < np->num_ldg; i++)
4887 napi_enable(&np->ldg[i].napi);
4890 static void niu_disable_napi(struct niu *np)
4894 for (i = 0; i < np->num_ldg; i++)
4895 napi_disable(&np->ldg[i].napi);
4898 static int niu_open(struct net_device *dev)
4900 struct niu *np = netdev_priv(dev);
4903 netif_carrier_off(dev);
4905 err = niu_alloc_channels(np);
4909 err = niu_enable_interrupts(np, 0);
4911 goto out_free_channels;
4913 err = niu_request_irq(np);
4915 goto out_free_channels;
4917 niu_enable_napi(np);
4919 spin_lock_irq(&np->lock);
4921 err = niu_init_hw(np);
4923 init_timer(&np->timer);
4924 np->timer.expires = jiffies + HZ;
4925 np->timer.data = (unsigned long) np;
4926 np->timer.function = niu_timer;
4928 err = niu_enable_interrupts(np, 1);
4933 spin_unlock_irq(&np->lock);
4936 niu_disable_napi(np);
4940 netif_start_queue(dev);
4942 if (np->link_config.loopback_mode != LOOPBACK_DISABLED)
4943 netif_carrier_on(dev);
4945 add_timer(&np->timer);
4953 niu_free_channels(np);
4959 static void niu_full_shutdown(struct niu *np, struct net_device *dev)
4961 cancel_work_sync(&np->reset_task);
4963 niu_disable_napi(np);
4964 netif_stop_queue(dev);
4966 del_timer_sync(&np->timer);
4968 spin_lock_irq(&np->lock);
4972 spin_unlock_irq(&np->lock);
4975 static int niu_close(struct net_device *dev)
4977 struct niu *np = netdev_priv(dev);
4979 niu_full_shutdown(np, dev);
4983 niu_free_channels(np);
4985 niu_handle_led(np, 0);
4990 static void niu_sync_xmac_stats(struct niu *np)
4992 struct niu_xmac_stats *mp = &np->mac_stats.xmac;
4994 mp->tx_frames += nr64_mac(TXMAC_FRM_CNT);
4995 mp->tx_bytes += nr64_mac(TXMAC_BYTE_CNT);
4997 mp->rx_link_faults += nr64_mac(LINK_FAULT_CNT);
4998 mp->rx_align_errors += nr64_mac(RXMAC_ALIGN_ERR_CNT);
4999 mp->rx_frags += nr64_mac(RXMAC_FRAG_CNT);
5000 mp->rx_mcasts += nr64_mac(RXMAC_MC_FRM_CNT);
5001 mp->rx_bcasts += nr64_mac(RXMAC_BC_FRM_CNT);
5002 mp->rx_hist_cnt1 += nr64_mac(RXMAC_HIST_CNT1);
5003 mp->rx_hist_cnt2 += nr64_mac(RXMAC_HIST_CNT2);
5004 mp->rx_hist_cnt3 += nr64_mac(RXMAC_HIST_CNT3);
5005 mp->rx_hist_cnt4 += nr64_mac(RXMAC_HIST_CNT4);
5006 mp->rx_hist_cnt5 += nr64_mac(RXMAC_HIST_CNT5);
5007 mp->rx_hist_cnt6 += nr64_mac(RXMAC_HIST_CNT6);
5008 mp->rx_hist_cnt7 += nr64_mac(RXMAC_HIST_CNT7);
5009 mp->rx_octets += nr64_mac(RXMAC_BT_CNT);
5010 mp->rx_code_violations += nr64_mac(RXMAC_CD_VIO_CNT);
5011 mp->rx_len_errors += nr64_mac(RXMAC_MPSZER_CNT);
5012 mp->rx_crc_errors += nr64_mac(RXMAC_CRC_ER_CNT);
5015 static void niu_sync_bmac_stats(struct niu *np)
5017 struct niu_bmac_stats *mp = &np->mac_stats.bmac;
5019 mp->tx_bytes += nr64_mac(BTXMAC_BYTE_CNT);
5020 mp->tx_frames += nr64_mac(BTXMAC_FRM_CNT);
5022 mp->rx_frames += nr64_mac(BRXMAC_FRAME_CNT);
5023 mp->rx_align_errors += nr64_mac(BRXMAC_ALIGN_ERR_CNT);
5024 mp->rx_crc_errors += nr64_mac(BRXMAC_ALIGN_ERR_CNT);
5025 mp->rx_len_errors += nr64_mac(BRXMAC_CODE_VIOL_ERR_CNT);
5028 static void niu_sync_mac_stats(struct niu *np)
5030 if (np->flags & NIU_FLAGS_XMAC)
5031 niu_sync_xmac_stats(np);
5033 niu_sync_bmac_stats(np);
5036 static void niu_get_rx_stats(struct niu *np)
5038 unsigned long pkts, dropped, errors, bytes;
5041 pkts = dropped = errors = bytes = 0;
5042 for (i = 0; i < np->num_rx_rings; i++) {
5043 struct rx_ring_info *rp = &np->rx_rings[i];
5045 pkts += rp->rx_packets;
5046 bytes += rp->rx_bytes;
5047 dropped += rp->rx_dropped;
5048 errors += rp->rx_errors;
5050 np->net_stats.rx_packets = pkts;
5051 np->net_stats.rx_bytes = bytes;
5052 np->net_stats.rx_dropped = dropped;
5053 np->net_stats.rx_errors = errors;
5056 static void niu_get_tx_stats(struct niu *np)
5058 unsigned long pkts, errors, bytes;
5061 pkts = errors = bytes = 0;
5062 for (i = 0; i < np->num_tx_rings; i++) {
5063 struct tx_ring_info *rp = &np->tx_rings[i];
5065 pkts += rp->tx_packets;
5066 bytes += rp->tx_bytes;
5067 errors += rp->tx_errors;
5069 np->net_stats.tx_packets = pkts;
5070 np->net_stats.tx_bytes = bytes;
5071 np->net_stats.tx_errors = errors;
5074 static struct net_device_stats *niu_get_stats(struct net_device *dev)
5076 struct niu *np = netdev_priv(dev);
5078 niu_get_rx_stats(np);
5079 niu_get_tx_stats(np);
5081 return &np->net_stats;
5084 static void niu_load_hash_xmac(struct niu *np, u16 *hash)
5088 for (i = 0; i < 16; i++)
5089 nw64_mac(XMAC_HASH_TBL(i), hash[i]);
5092 static void niu_load_hash_bmac(struct niu *np, u16 *hash)
5096 for (i = 0; i < 16; i++)
5097 nw64_mac(BMAC_HASH_TBL(i), hash[i]);
5100 static void niu_load_hash(struct niu *np, u16 *hash)
5102 if (np->flags & NIU_FLAGS_XMAC)
5103 niu_load_hash_xmac(np, hash);
5105 niu_load_hash_bmac(np, hash);
5108 static void niu_set_rx_mode(struct net_device *dev)
5110 struct niu *np = netdev_priv(dev);
5111 int i, alt_cnt, err;
5112 struct dev_addr_list *addr;
5113 unsigned long flags;
5114 u16 hash[16] = { 0, };
5116 spin_lock_irqsave(&np->lock, flags);
5117 niu_enable_rx_mac(np, 0);
5119 np->flags &= ~(NIU_FLAGS_MCAST | NIU_FLAGS_PROMISC);
5120 if (dev->flags & IFF_PROMISC)
5121 np->flags |= NIU_FLAGS_PROMISC;
5122 if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 0))
5123 np->flags |= NIU_FLAGS_MCAST;
5125 alt_cnt = dev->uc_count;
5126 if (alt_cnt > niu_num_alt_addr(np)) {
5128 np->flags |= NIU_FLAGS_PROMISC;
5134 for (addr = dev->uc_list; addr; addr = addr->next) {
5135 err = niu_set_alt_mac(np, index,
5138 printk(KERN_WARNING PFX "%s: Error %d "
5139 "adding alt mac %d\n",
5140 dev->name, err, index);
5141 err = niu_enable_alt_mac(np, index, 1);
5143 printk(KERN_WARNING PFX "%s: Error %d "
5144 "enabling alt mac %d\n",
5145 dev->name, err, index);
5151 if (np->flags & NIU_FLAGS_XMAC)
5155 for (i = alt_start; i < niu_num_alt_addr(np); i++) {
5156 err = niu_enable_alt_mac(np, i, 0);
5158 printk(KERN_WARNING PFX "%s: Error %d "
5159 "disabling alt mac %d\n",
5163 if (dev->flags & IFF_ALLMULTI) {
5164 for (i = 0; i < 16; i++)
5166 } else if (dev->mc_count > 0) {
5167 for (addr = dev->mc_list; addr; addr = addr->next) {
5168 u32 crc = ether_crc_le(ETH_ALEN, addr->da_addr);
5171 hash[crc >> 4] |= (1 << (15 - (crc & 0xf)));
5175 if (np->flags & NIU_FLAGS_MCAST)
5176 niu_load_hash(np, hash);
5178 niu_enable_rx_mac(np, 1);
5179 spin_unlock_irqrestore(&np->lock, flags);
5182 static int niu_set_mac_addr(struct net_device *dev, void *p)
5184 struct niu *np = netdev_priv(dev);
5185 struct sockaddr *addr = p;
5186 unsigned long flags;
5188 if (!is_valid_ether_addr(addr->sa_data))
5191 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
5193 if (!netif_running(dev))
5196 spin_lock_irqsave(&np->lock, flags);
5197 niu_enable_rx_mac(np, 0);
5198 niu_set_primary_mac(np, dev->dev_addr);
5199 niu_enable_rx_mac(np, 1);
5200 spin_unlock_irqrestore(&np->lock, flags);
5205 static int niu_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
5210 static void niu_netif_stop(struct niu *np)
5212 np->dev->trans_start = jiffies; /* prevent tx timeout */
5214 niu_disable_napi(np);
5216 netif_tx_disable(np->dev);
5219 static void niu_netif_start(struct niu *np)
5221 /* NOTE: unconditional netif_wake_queue is only appropriate
5222 * so long as all callers are assured to have free tx slots
5223 * (such as after niu_init_hw).
5225 netif_wake_queue(np->dev);
5227 niu_enable_napi(np);
5229 niu_enable_interrupts(np, 1);
5232 static void niu_reset_task(struct work_struct *work)
5234 struct niu *np = container_of(work, struct niu, reset_task);
5235 unsigned long flags;
5238 spin_lock_irqsave(&np->lock, flags);
5239 if (!netif_running(np->dev)) {
5240 spin_unlock_irqrestore(&np->lock, flags);
5244 spin_unlock_irqrestore(&np->lock, flags);
5246 del_timer_sync(&np->timer);
5250 spin_lock_irqsave(&np->lock, flags);
5254 err = niu_init_hw(np);
5256 np->timer.expires = jiffies + HZ;
5257 add_timer(&np->timer);
5258 niu_netif_start(np);
5261 spin_unlock_irqrestore(&np->lock, flags);
5264 static void niu_tx_timeout(struct net_device *dev)
5266 struct niu *np = netdev_priv(dev);
5268 dev_err(np->device, PFX "%s: Transmit timed out, resetting\n",
5271 schedule_work(&np->reset_task);
5274 static void niu_set_txd(struct tx_ring_info *rp, int index,
5275 u64 mapping, u64 len, u64 mark,
5278 __le64 *desc = &rp->descr[index];
5280 *desc = cpu_to_le64(mark |
5281 (n_frags << TX_DESC_NUM_PTR_SHIFT) |
5282 (len << TX_DESC_TR_LEN_SHIFT) |
5283 (mapping & TX_DESC_SAD));
5286 static u64 niu_compute_tx_flags(struct sk_buff *skb, struct ethhdr *ehdr,
5287 u64 pad_bytes, u64 len)
5289 u16 eth_proto, eth_proto_inner;
5290 u64 csum_bits, l3off, ihl, ret;
5294 eth_proto = be16_to_cpu(ehdr->h_proto);
5295 eth_proto_inner = eth_proto;
5296 if (eth_proto == ETH_P_8021Q) {
5297 struct vlan_ethhdr *vp = (struct vlan_ethhdr *) ehdr;
5298 __be16 val = vp->h_vlan_encapsulated_proto;
5300 eth_proto_inner = be16_to_cpu(val);
5304 switch (skb->protocol) {
5305 case __constant_htons(ETH_P_IP):
5306 ip_proto = ip_hdr(skb)->protocol;
5307 ihl = ip_hdr(skb)->ihl;
5309 case __constant_htons(ETH_P_IPV6):
5310 ip_proto = ipv6_hdr(skb)->nexthdr;
5319 csum_bits = TXHDR_CSUM_NONE;
5320 if (skb->ip_summed == CHECKSUM_PARTIAL) {
5323 csum_bits = (ip_proto == IPPROTO_TCP ?
5325 (ip_proto == IPPROTO_UDP ?
5326 TXHDR_CSUM_UDP : TXHDR_CSUM_SCTP));
5328 start = skb_transport_offset(skb) -
5329 (pad_bytes + sizeof(struct tx_pkt_hdr));
5330 stuff = start + skb->csum_offset;
5332 csum_bits |= (start / 2) << TXHDR_L4START_SHIFT;
5333 csum_bits |= (stuff / 2) << TXHDR_L4STUFF_SHIFT;
5336 l3off = skb_network_offset(skb) -
5337 (pad_bytes + sizeof(struct tx_pkt_hdr));
5339 ret = (((pad_bytes / 2) << TXHDR_PAD_SHIFT) |
5340 (len << TXHDR_LEN_SHIFT) |
5341 ((l3off / 2) << TXHDR_L3START_SHIFT) |
5342 (ihl << TXHDR_IHL_SHIFT) |
5343 ((eth_proto_inner < 1536) ? TXHDR_LLC : 0) |
5344 ((eth_proto == ETH_P_8021Q) ? TXHDR_VLAN : 0) |
5345 (ipv6 ? TXHDR_IP_VER : 0) |
5351 static struct tx_ring_info *tx_ring_select(struct niu *np, struct sk_buff *skb)
5353 return &np->tx_rings[0];
5356 static int niu_start_xmit(struct sk_buff *skb, struct net_device *dev)
5358 struct niu *np = netdev_priv(dev);
5359 unsigned long align, headroom;
5360 struct tx_ring_info *rp;
5361 struct tx_pkt_hdr *tp;
5362 unsigned int len, nfg;
5363 struct ethhdr *ehdr;
5367 rp = tx_ring_select(np, skb);
5369 if (niu_tx_avail(rp) <= (skb_shinfo(skb)->nr_frags + 1)) {
5370 netif_stop_queue(dev);
5371 dev_err(np->device, PFX "%s: BUG! Tx ring full when "
5372 "queue awake!\n", dev->name);
5374 return NETDEV_TX_BUSY;
5377 if (skb->len < ETH_ZLEN) {
5378 unsigned int pad_bytes = ETH_ZLEN - skb->len;
5380 if (skb_pad(skb, pad_bytes))
5382 skb_put(skb, pad_bytes);
5385 len = sizeof(struct tx_pkt_hdr) + 15;
5386 if (skb_headroom(skb) < len) {
5387 struct sk_buff *skb_new;
5389 skb_new = skb_realloc_headroom(skb, len);
5399 align = ((unsigned long) skb->data & (16 - 1));
5400 headroom = align + sizeof(struct tx_pkt_hdr);
5402 ehdr = (struct ethhdr *) skb->data;
5403 tp = (struct tx_pkt_hdr *) skb_push(skb, headroom);
5405 len = skb->len - sizeof(struct tx_pkt_hdr);
5406 tp->flags = cpu_to_le64(niu_compute_tx_flags(skb, ehdr, align, len));
5409 len = skb_headlen(skb);
5410 mapping = np->ops->map_single(np->device, skb->data,
5411 len, DMA_TO_DEVICE);
5415 rp->tx_buffs[prod].skb = skb;
5416 rp->tx_buffs[prod].mapping = mapping;
5419 if (++rp->mark_counter == rp->mark_freq) {
5420 rp->mark_counter = 0;
5421 mrk |= TX_DESC_MARK;
5426 nfg = skb_shinfo(skb)->nr_frags;
5428 tlen -= MAX_TX_DESC_LEN;
5433 unsigned int this_len = len;
5435 if (this_len > MAX_TX_DESC_LEN)
5436 this_len = MAX_TX_DESC_LEN;
5438 niu_set_txd(rp, prod, mapping, this_len, mrk, nfg);
5441 prod = NEXT_TX(rp, prod);
5442 mapping += this_len;
5446 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
5447 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5450 mapping = np->ops->map_page(np->device, frag->page,
5451 frag->page_offset, len,
5454 rp->tx_buffs[prod].skb = NULL;
5455 rp->tx_buffs[prod].mapping = mapping;
5457 niu_set_txd(rp, prod, mapping, len, 0, 0);
5459 prod = NEXT_TX(rp, prod);
5462 if (prod < rp->prod)
5463 rp->wrap_bit ^= TX_RING_KICK_WRAP;
5466 nw64(TX_RING_KICK(rp->tx_channel), rp->wrap_bit | (prod << 3));
5468 if (unlikely(niu_tx_avail(rp) <= (MAX_SKB_FRAGS + 1))) {
5469 netif_stop_queue(dev);
5470 if (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp))
5471 netif_wake_queue(dev);
5474 dev->trans_start = jiffies;
5477 return NETDEV_TX_OK;
5485 static int niu_change_mtu(struct net_device *dev, int new_mtu)
5487 struct niu *np = netdev_priv(dev);
5488 int err, orig_jumbo, new_jumbo;
5490 if (new_mtu < 68 || new_mtu > NIU_MAX_MTU)
5493 orig_jumbo = (dev->mtu > ETH_DATA_LEN);
5494 new_jumbo = (new_mtu > ETH_DATA_LEN);
5498 if (!netif_running(dev) ||
5499 (orig_jumbo == new_jumbo))
5502 niu_full_shutdown(np, dev);
5504 niu_free_channels(np);
5506 niu_enable_napi(np);
5508 err = niu_alloc_channels(np);
5512 spin_lock_irq(&np->lock);
5514 err = niu_init_hw(np);
5516 init_timer(&np->timer);
5517 np->timer.expires = jiffies + HZ;
5518 np->timer.data = (unsigned long) np;
5519 np->timer.function = niu_timer;
5521 err = niu_enable_interrupts(np, 1);
5526 spin_unlock_irq(&np->lock);
5529 netif_start_queue(dev);
5530 if (np->link_config.loopback_mode != LOOPBACK_DISABLED)
5531 netif_carrier_on(dev);
5533 add_timer(&np->timer);
5539 static void niu_get_drvinfo(struct net_device *dev,
5540 struct ethtool_drvinfo *info)
5542 struct niu *np = netdev_priv(dev);
5543 struct niu_vpd *vpd = &np->vpd;
5545 strcpy(info->driver, DRV_MODULE_NAME);
5546 strcpy(info->version, DRV_MODULE_VERSION);
5547 sprintf(info->fw_version, "%d.%d",
5548 vpd->fcode_major, vpd->fcode_minor);
5549 if (np->parent->plat_type != PLAT_TYPE_NIU)
5550 strcpy(info->bus_info, pci_name(np->pdev));
5553 static int niu_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
5555 struct niu *np = netdev_priv(dev);
5556 struct niu_link_config *lp;
5558 lp = &np->link_config;
5560 memset(cmd, 0, sizeof(*cmd));
5561 cmd->phy_address = np->phy_addr;
5562 cmd->supported = lp->supported;
5563 cmd->advertising = lp->advertising;
5564 cmd->autoneg = lp->autoneg;
5565 cmd->speed = lp->active_speed;
5566 cmd->duplex = lp->active_duplex;
5571 static int niu_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
5576 static u32 niu_get_msglevel(struct net_device *dev)
5578 struct niu *np = netdev_priv(dev);
5579 return np->msg_enable;
5582 static void niu_set_msglevel(struct net_device *dev, u32 value)
5584 struct niu *np = netdev_priv(dev);
5585 np->msg_enable = value;
5588 static int niu_get_eeprom_len(struct net_device *dev)
5590 struct niu *np = netdev_priv(dev);
5592 return np->eeprom_len;
5595 static int niu_get_eeprom(struct net_device *dev,
5596 struct ethtool_eeprom *eeprom, u8 *data)
5598 struct niu *np = netdev_priv(dev);
5599 u32 offset, len, val;
5601 offset = eeprom->offset;
5604 if (offset + len < offset)
5606 if (offset >= np->eeprom_len)
5608 if (offset + len > np->eeprom_len)
5609 len = eeprom->len = np->eeprom_len - offset;
5612 u32 b_offset, b_count;
5614 b_offset = offset & 3;
5615 b_count = 4 - b_offset;
5619 val = nr64(ESPC_NCR((offset - b_offset) / 4));
5620 memcpy(data, ((char *)&val) + b_offset, b_count);
5626 val = nr64(ESPC_NCR(offset / 4));
5627 memcpy(data, &val, 4);
5633 val = nr64(ESPC_NCR(offset / 4));
5634 memcpy(data, &val, len);
5639 static const struct {
5640 const char string[ETH_GSTRING_LEN];
5641 } niu_xmac_stat_keys[] = {
5644 { "tx_fifo_errors" },
5645 { "tx_overflow_errors" },
5646 { "tx_max_pkt_size_errors" },
5647 { "tx_underflow_errors" },
5648 { "rx_local_faults" },
5649 { "rx_remote_faults" },
5650 { "rx_link_faults" },
5651 { "rx_align_errors" },
5663 { "rx_code_violations" },
5664 { "rx_len_errors" },
5665 { "rx_crc_errors" },
5666 { "rx_underflows" },
5668 { "pause_off_state" },
5669 { "pause_on_state" },
5670 { "pause_received" },
5673 #define NUM_XMAC_STAT_KEYS ARRAY_SIZE(niu_xmac_stat_keys)
5675 static const struct {
5676 const char string[ETH_GSTRING_LEN];
5677 } niu_bmac_stat_keys[] = {
5678 { "tx_underflow_errors" },
5679 { "tx_max_pkt_size_errors" },
5684 { "rx_align_errors" },
5685 { "rx_crc_errors" },
5686 { "rx_len_errors" },
5687 { "pause_off_state" },
5688 { "pause_on_state" },
5689 { "pause_received" },
5692 #define NUM_BMAC_STAT_KEYS ARRAY_SIZE(niu_bmac_stat_keys)
5694 static const struct {
5695 const char string[ETH_GSTRING_LEN];
5696 } niu_rxchan_stat_keys[] = {
5704 #define NUM_RXCHAN_STAT_KEYS ARRAY_SIZE(niu_rxchan_stat_keys)
5706 static const struct {
5707 const char string[ETH_GSTRING_LEN];
5708 } niu_txchan_stat_keys[] = {
5715 #define NUM_TXCHAN_STAT_KEYS ARRAY_SIZE(niu_txchan_stat_keys)
5717 static void niu_get_strings(struct net_device *dev, u32 stringset, u8 *data)
5719 struct niu *np = netdev_priv(dev);
5722 if (stringset != ETH_SS_STATS)
5725 if (np->flags & NIU_FLAGS_XMAC) {
5726 memcpy(data, niu_xmac_stat_keys,
5727 sizeof(niu_xmac_stat_keys));
5728 data += sizeof(niu_xmac_stat_keys);
5730 memcpy(data, niu_bmac_stat_keys,
5731 sizeof(niu_bmac_stat_keys));
5732 data += sizeof(niu_bmac_stat_keys);
5734 for (i = 0; i < np->num_rx_rings; i++) {
5735 memcpy(data, niu_rxchan_stat_keys,
5736 sizeof(niu_rxchan_stat_keys));
5737 data += sizeof(niu_rxchan_stat_keys);
5739 for (i = 0; i < np->num_tx_rings; i++) {
5740 memcpy(data, niu_txchan_stat_keys,
5741 sizeof(niu_txchan_stat_keys));
5742 data += sizeof(niu_txchan_stat_keys);
5746 static int niu_get_stats_count(struct net_device *dev)
5748 struct niu *np = netdev_priv(dev);
5750 return ((np->flags & NIU_FLAGS_XMAC ?
5751 NUM_XMAC_STAT_KEYS :
5752 NUM_BMAC_STAT_KEYS) +
5753 (np->num_rx_rings * NUM_RXCHAN_STAT_KEYS) +
5754 (np->num_tx_rings * NUM_TXCHAN_STAT_KEYS));
5757 static void niu_get_ethtool_stats(struct net_device *dev,
5758 struct ethtool_stats *stats, u64 *data)
5760 struct niu *np = netdev_priv(dev);
5763 niu_sync_mac_stats(np);
5764 if (np->flags & NIU_FLAGS_XMAC) {
5765 memcpy(data, &np->mac_stats.xmac,
5766 sizeof(struct niu_xmac_stats));
5767 data += (sizeof(struct niu_xmac_stats) / sizeof(u64));
5769 memcpy(data, &np->mac_stats.bmac,
5770 sizeof(struct niu_bmac_stats));
5771 data += (sizeof(struct niu_bmac_stats) / sizeof(u64));
5773 for (i = 0; i < np->num_rx_rings; i++) {
5774 struct rx_ring_info *rp = &np->rx_rings[i];
5776 data[0] = rp->rx_channel;
5777 data[1] = rp->rx_packets;
5778 data[2] = rp->rx_bytes;
5779 data[3] = rp->rx_dropped;
5780 data[4] = rp->rx_errors;
5783 for (i = 0; i < np->num_tx_rings; i++) {
5784 struct tx_ring_info *rp = &np->tx_rings[i];
5786 data[0] = rp->tx_channel;
5787 data[1] = rp->tx_packets;
5788 data[2] = rp->tx_bytes;
5789 data[3] = rp->tx_errors;
5794 static u64 niu_led_state_save(struct niu *np)
5796 if (np->flags & NIU_FLAGS_XMAC)
5797 return nr64_mac(XMAC_CONFIG);
5799 return nr64_mac(BMAC_XIF_CONFIG);
5802 static void niu_led_state_restore(struct niu *np, u64 val)
5804 if (np->flags & NIU_FLAGS_XMAC)
5805 nw64_mac(XMAC_CONFIG, val);
5807 nw64_mac(BMAC_XIF_CONFIG, val);
5810 static void niu_force_led(struct niu *np, int on)
5814 if (np->flags & NIU_FLAGS_XMAC) {
5816 bit = XMAC_CONFIG_FORCE_LED_ON;
5818 reg = BMAC_XIF_CONFIG;
5819 bit = BMAC_XIF_CONFIG_LINK_LED;
5822 val = nr64_mac(reg);
5830 static int niu_phys_id(struct net_device *dev, u32 data)
5832 struct niu *np = netdev_priv(dev);
5836 if (!netif_running(dev))
5842 orig_led_state = niu_led_state_save(np);
5843 for (i = 0; i < (data * 2); i++) {
5844 int on = ((i % 2) == 0);
5846 niu_force_led(np, on);
5848 if (msleep_interruptible(500))
5851 niu_led_state_restore(np, orig_led_state);
5856 static const struct ethtool_ops niu_ethtool_ops = {
5857 .get_drvinfo = niu_get_drvinfo,
5858 .get_link = ethtool_op_get_link,
5859 .get_msglevel = niu_get_msglevel,
5860 .set_msglevel = niu_set_msglevel,
5861 .get_eeprom_len = niu_get_eeprom_len,
5862 .get_eeprom = niu_get_eeprom,
5863 .get_settings = niu_get_settings,
5864 .set_settings = niu_set_settings,
5865 .get_strings = niu_get_strings,
5866 .get_stats_count = niu_get_stats_count,
5867 .get_ethtool_stats = niu_get_ethtool_stats,
5868 .phys_id = niu_phys_id,
5871 static int niu_ldg_assign_ldn(struct niu *np, struct niu_parent *parent,
5874 if (ldg < NIU_LDG_MIN || ldg > NIU_LDG_MAX)
5876 if (ldn < 0 || ldn > LDN_MAX)
5879 parent->ldg_map[ldn] = ldg;
5881 if (np->parent->plat_type == PLAT_TYPE_NIU) {
5882 /* On N2 NIU, the ldn-->ldg assignments are setup and fixed by
5883 * the firmware, and we're not supposed to change them.
5884 * Validate the mapping, because if it's wrong we probably
5885 * won't get any interrupts and that's painful to debug.
5887 if (nr64(LDG_NUM(ldn)) != ldg) {
5888 dev_err(np->device, PFX "Port %u, mis-matched "
5890 "for ldn %d, should be %d is %llu\n",
5892 (unsigned long long) nr64(LDG_NUM(ldn)));
5896 nw64(LDG_NUM(ldn), ldg);
5901 static int niu_set_ldg_timer_res(struct niu *np, int res)
5903 if (res < 0 || res > LDG_TIMER_RES_VAL)
5907 nw64(LDG_TIMER_RES, res);
5912 static int niu_set_ldg_sid(struct niu *np, int ldg, int func, int vector)
5914 if ((ldg < NIU_LDG_MIN || ldg > NIU_LDG_MAX) ||
5915 (func < 0 || func > 3) ||
5916 (vector < 0 || vector > 0x1f))
5919 nw64(SID(ldg), (func << SID_FUNC_SHIFT) | vector);
5924 static int __devinit niu_pci_eeprom_read(struct niu *np, u32 addr)
5926 u64 frame, frame_base = (ESPC_PIO_STAT_READ_START |
5927 (addr << ESPC_PIO_STAT_ADDR_SHIFT));
5930 if (addr > (ESPC_PIO_STAT_ADDR >> ESPC_PIO_STAT_ADDR_SHIFT))
5934 nw64(ESPC_PIO_STAT, frame);
5938 frame = nr64(ESPC_PIO_STAT);
5939 if (frame & ESPC_PIO_STAT_READ_END)
5942 if (!(frame & ESPC_PIO_STAT_READ_END)) {
5943 dev_err(np->device, PFX "EEPROM read timeout frame[%llx]\n",
5944 (unsigned long long) frame);
5949 nw64(ESPC_PIO_STAT, frame);
5953 frame = nr64(ESPC_PIO_STAT);
5954 if (frame & ESPC_PIO_STAT_READ_END)
5957 if (!(frame & ESPC_PIO_STAT_READ_END)) {
5958 dev_err(np->device, PFX "EEPROM read timeout frame[%llx]\n",
5959 (unsigned long long) frame);
5963 frame = nr64(ESPC_PIO_STAT);
5964 return (frame & ESPC_PIO_STAT_DATA) >> ESPC_PIO_STAT_DATA_SHIFT;
5967 static int __devinit niu_pci_eeprom_read16(struct niu *np, u32 off)
5969 int err = niu_pci_eeprom_read(np, off);
5975 err = niu_pci_eeprom_read(np, off + 1);
5978 val |= (err & 0xff);
5983 static int __devinit niu_pci_eeprom_read16_swp(struct niu *np, u32 off)
5985 int err = niu_pci_eeprom_read(np, off);
5992 err = niu_pci_eeprom_read(np, off + 1);
5996 val |= (err & 0xff) << 8;
6001 static int __devinit niu_pci_vpd_get_propname(struct niu *np,
6008 for (i = 0; i < namebuf_len; i++) {
6009 int err = niu_pci_eeprom_read(np, off + i);
6016 if (i >= namebuf_len)
6022 static void __devinit niu_vpd_parse_version(struct niu *np)
6024 struct niu_vpd *vpd = &np->vpd;
6025 int len = strlen(vpd->version) + 1;
6026 const char *s = vpd->version;
6029 for (i = 0; i < len - 5; i++) {
6030 if (!strncmp(s + i, "FCode ", 5))
6037 sscanf(s, "%d.%d", &vpd->fcode_major, &vpd->fcode_minor);
6039 niudbg(PROBE, "VPD_SCAN: FCODE major(%d) minor(%d)\n",
6040 vpd->fcode_major, vpd->fcode_minor);
6041 if (vpd->fcode_major > NIU_VPD_MIN_MAJOR ||
6042 (vpd->fcode_major == NIU_VPD_MIN_MAJOR &&
6043 vpd->fcode_minor >= NIU_VPD_MIN_MINOR))
6044 np->flags |= NIU_FLAGS_VPD_VALID;
6047 /* ESPC_PIO_EN_ENABLE must be set */
6048 static int __devinit niu_pci_vpd_scan_props(struct niu *np,
6051 unsigned int found_mask = 0;
6052 #define FOUND_MASK_MODEL 0x00000001
6053 #define FOUND_MASK_BMODEL 0x00000002
6054 #define FOUND_MASK_VERS 0x00000004
6055 #define FOUND_MASK_MAC 0x00000008
6056 #define FOUND_MASK_NMAC 0x00000010
6057 #define FOUND_MASK_PHY 0x00000020
6058 #define FOUND_MASK_ALL 0x0000003f
6060 niudbg(PROBE, "VPD_SCAN: start[%x] end[%x]\n",
6062 while (start < end) {
6063 int len, err, instance, type, prop_len;
6068 if (found_mask == FOUND_MASK_ALL) {
6069 niu_vpd_parse_version(np);
6073 err = niu_pci_eeprom_read(np, start + 2);
6079 instance = niu_pci_eeprom_read(np, start);
6080 type = niu_pci_eeprom_read(np, start + 3);
6081 prop_len = niu_pci_eeprom_read(np, start + 4);
6082 err = niu_pci_vpd_get_propname(np, start + 5, namebuf, 64);
6088 if (!strcmp(namebuf, "model")) {
6089 prop_buf = np->vpd.model;
6090 max_len = NIU_VPD_MODEL_MAX;
6091 found_mask |= FOUND_MASK_MODEL;
6092 } else if (!strcmp(namebuf, "board-model")) {
6093 prop_buf = np->vpd.board_model;
6094 max_len = NIU_VPD_BD_MODEL_MAX;
6095 found_mask |= FOUND_MASK_BMODEL;
6096 } else if (!strcmp(namebuf, "version")) {
6097 prop_buf = np->vpd.version;
6098 max_len = NIU_VPD_VERSION_MAX;
6099 found_mask |= FOUND_MASK_VERS;
6100 } else if (!strcmp(namebuf, "local-mac-address")) {
6101 prop_buf = np->vpd.local_mac;
6103 found_mask |= FOUND_MASK_MAC;
6104 } else if (!strcmp(namebuf, "num-mac-addresses")) {
6105 prop_buf = &np->vpd.mac_num;
6107 found_mask |= FOUND_MASK_NMAC;
6108 } else if (!strcmp(namebuf, "phy-type")) {
6109 prop_buf = np->vpd.phy_type;
6110 max_len = NIU_VPD_PHY_TYPE_MAX;
6111 found_mask |= FOUND_MASK_PHY;
6114 if (max_len && prop_len > max_len) {
6115 dev_err(np->device, PFX "Property '%s' length (%d) is "
6116 "too long.\n", namebuf, prop_len);
6121 u32 off = start + 5 + err;
6124 niudbg(PROBE, "VPD_SCAN: Reading in property [%s] "
6125 "len[%d]\n", namebuf, prop_len);
6126 for (i = 0; i < prop_len; i++)
6127 *prop_buf++ = niu_pci_eeprom_read(np, off + i);
6136 /* ESPC_PIO_EN_ENABLE must be set */
6137 static void __devinit niu_pci_vpd_fetch(struct niu *np, u32 start)
6142 err = niu_pci_eeprom_read16_swp(np, start + 1);
6148 while (start + offset < ESPC_EEPROM_SIZE) {
6149 u32 here = start + offset;
6152 err = niu_pci_eeprom_read(np, here);
6156 err = niu_pci_eeprom_read16_swp(np, here + 1);
6160 here = start + offset + 3;
6161 end = start + offset + err;
6165 err = niu_pci_vpd_scan_props(np, here, end);
6166 if (err < 0 || err == 1)
6171 /* ESPC_PIO_EN_ENABLE must be set */
6172 static u32 __devinit niu_pci_vpd_offset(struct niu *np)
6174 u32 start = 0, end = ESPC_EEPROM_SIZE, ret;
6177 while (start < end) {
6180 /* ROM header signature? */
6181 err = niu_pci_eeprom_read16(np, start + 0);
6185 /* Apply offset to PCI data structure. */
6186 err = niu_pci_eeprom_read16(np, start + 23);
6191 /* Check for "PCIR" signature. */
6192 err = niu_pci_eeprom_read16(np, start + 0);
6195 err = niu_pci_eeprom_read16(np, start + 2);
6199 /* Check for OBP image type. */
6200 err = niu_pci_eeprom_read(np, start + 20);
6204 err = niu_pci_eeprom_read(np, ret + 2);
6208 start = ret + (err * 512);
6212 err = niu_pci_eeprom_read16_swp(np, start + 8);
6217 err = niu_pci_eeprom_read(np, ret + 0);
6227 static int __devinit niu_phy_type_prop_decode(struct niu *np,
6228 const char *phy_prop)
6230 if (!strcmp(phy_prop, "mif")) {
6231 /* 1G copper, MII */
6232 np->flags &= ~(NIU_FLAGS_FIBER |
6234 np->mac_xcvr = MAC_XCVR_MII;
6235 } else if (!strcmp(phy_prop, "xgf")) {
6236 /* 10G fiber, XPCS */
6237 np->flags |= (NIU_FLAGS_10G |
6239 np->mac_xcvr = MAC_XCVR_XPCS;
6240 } else if (!strcmp(phy_prop, "pcs")) {
6242 np->flags &= ~NIU_FLAGS_10G;
6243 np->flags |= NIU_FLAGS_FIBER;
6244 np->mac_xcvr = MAC_XCVR_PCS;
6245 } else if (!strcmp(phy_prop, "xgc")) {
6246 /* 10G copper, XPCS */
6247 np->flags |= NIU_FLAGS_10G;
6248 np->flags &= ~NIU_FLAGS_FIBER;
6249 np->mac_xcvr = MAC_XCVR_XPCS;
6256 static void __devinit niu_pci_vpd_validate(struct niu *np)
6258 struct net_device *dev = np->dev;
6259 struct niu_vpd *vpd = &np->vpd;
6262 if (!is_valid_ether_addr(&vpd->local_mac[0])) {
6263 dev_err(np->device, PFX "VPD MAC invalid, "
6264 "falling back to SPROM.\n");
6266 np->flags &= ~NIU_FLAGS_VPD_VALID;
6270 if (niu_phy_type_prop_decode(np, np->vpd.phy_type)) {
6271 dev_err(np->device, PFX "Illegal phy string [%s].\n",
6273 dev_err(np->device, PFX "Falling back to SPROM.\n");
6274 np->flags &= ~NIU_FLAGS_VPD_VALID;
6278 memcpy(dev->perm_addr, vpd->local_mac, ETH_ALEN);
6280 val8 = dev->perm_addr[5];
6281 dev->perm_addr[5] += np->port;
6282 if (dev->perm_addr[5] < val8)
6283 dev->perm_addr[4]++;
6285 memcpy(dev->dev_addr, dev->perm_addr, dev->addr_len);
6288 static int __devinit niu_pci_probe_sprom(struct niu *np)
6290 struct net_device *dev = np->dev;
6295 val = (nr64(ESPC_VER_IMGSZ) & ESPC_VER_IMGSZ_IMGSZ);
6296 val >>= ESPC_VER_IMGSZ_IMGSZ_SHIFT;
6299 np->eeprom_len = len;
6301 niudbg(PROBE, "SPROM: Image size %llu\n", (unsigned long long) val);
6304 for (i = 0; i < len; i++) {
6305 val = nr64(ESPC_NCR(i));
6306 sum += (val >> 0) & 0xff;
6307 sum += (val >> 8) & 0xff;
6308 sum += (val >> 16) & 0xff;
6309 sum += (val >> 24) & 0xff;
6311 niudbg(PROBE, "SPROM: Checksum %x\n", (int)(sum & 0xff));
6312 if ((sum & 0xff) != 0xab) {
6313 dev_err(np->device, PFX "Bad SPROM checksum "
6314 "(%x, should be 0xab)\n", (int) (sum & 0xff));
6318 val = nr64(ESPC_PHY_TYPE);
6321 val8 = (val & ESPC_PHY_TYPE_PORT0) >>
6322 ESPC_PHY_TYPE_PORT0_SHIFT;
6325 val8 = (val & ESPC_PHY_TYPE_PORT1) >>
6326 ESPC_PHY_TYPE_PORT1_SHIFT;
6329 val8 = (val & ESPC_PHY_TYPE_PORT2) >>
6330 ESPC_PHY_TYPE_PORT2_SHIFT;
6333 val8 = (val & ESPC_PHY_TYPE_PORT3) >>
6334 ESPC_PHY_TYPE_PORT3_SHIFT;
6337 dev_err(np->device, PFX "Bogus port number %u\n",
6341 niudbg(PROBE, "SPROM: PHY type %x\n", val8);
6344 case ESPC_PHY_TYPE_1G_COPPER:
6345 /* 1G copper, MII */
6346 np->flags &= ~(NIU_FLAGS_FIBER |
6348 np->mac_xcvr = MAC_XCVR_MII;
6351 case ESPC_PHY_TYPE_1G_FIBER:
6353 np->flags &= ~NIU_FLAGS_10G;
6354 np->flags |= NIU_FLAGS_FIBER;
6355 np->mac_xcvr = MAC_XCVR_PCS;
6358 case ESPC_PHY_TYPE_10G_COPPER:
6359 /* 10G copper, XPCS */
6360 np->flags |= NIU_FLAGS_10G;
6361 np->flags &= ~NIU_FLAGS_FIBER;
6362 np->mac_xcvr = MAC_XCVR_XPCS;
6365 case ESPC_PHY_TYPE_10G_FIBER:
6366 /* 10G fiber, XPCS */
6367 np->flags |= (NIU_FLAGS_10G |
6369 np->mac_xcvr = MAC_XCVR_XPCS;
6373 dev_err(np->device, PFX "Bogus SPROM phy type %u\n", val8);
6377 val = nr64(ESPC_MAC_ADDR0);
6378 niudbg(PROBE, "SPROM: MAC_ADDR0[%08llx]\n",
6379 (unsigned long long) val);
6380 dev->perm_addr[0] = (val >> 0) & 0xff;
6381 dev->perm_addr[1] = (val >> 8) & 0xff;
6382 dev->perm_addr[2] = (val >> 16) & 0xff;
6383 dev->perm_addr[3] = (val >> 24) & 0xff;
6385 val = nr64(ESPC_MAC_ADDR1);
6386 niudbg(PROBE, "SPROM: MAC_ADDR1[%08llx]\n",
6387 (unsigned long long) val);
6388 dev->perm_addr[4] = (val >> 0) & 0xff;
6389 dev->perm_addr[5] = (val >> 8) & 0xff;
6391 if (!is_valid_ether_addr(&dev->perm_addr[0])) {
6392 dev_err(np->device, PFX "SPROM MAC address invalid\n");
6393 dev_err(np->device, PFX "[ \n");
6394 for (i = 0; i < 6; i++)
6395 printk("%02x ", dev->perm_addr[i]);
6400 val8 = dev->perm_addr[5];
6401 dev->perm_addr[5] += np->port;
6402 if (dev->perm_addr[5] < val8)
6403 dev->perm_addr[4]++;
6405 memcpy(dev->dev_addr, dev->perm_addr, dev->addr_len);
6407 val = nr64(ESPC_MOD_STR_LEN);
6408 niudbg(PROBE, "SPROM: MOD_STR_LEN[%llu]\n",
6409 (unsigned long long) val);
6413 for (i = 0; i < val; i += 4) {
6414 u64 tmp = nr64(ESPC_NCR(5 + (i / 4)));
6416 np->vpd.model[i + 3] = (tmp >> 0) & 0xff;
6417 np->vpd.model[i + 2] = (tmp >> 8) & 0xff;
6418 np->vpd.model[i + 1] = (tmp >> 16) & 0xff;
6419 np->vpd.model[i + 0] = (tmp >> 24) & 0xff;
6421 np->vpd.model[val] = '\0';
6423 val = nr64(ESPC_BD_MOD_STR_LEN);
6424 niudbg(PROBE, "SPROM: BD_MOD_STR_LEN[%llu]\n",
6425 (unsigned long long) val);
6429 for (i = 0; i < val; i += 4) {
6430 u64 tmp = nr64(ESPC_NCR(14 + (i / 4)));
6432 np->vpd.board_model[i + 3] = (tmp >> 0) & 0xff;
6433 np->vpd.board_model[i + 2] = (tmp >> 8) & 0xff;
6434 np->vpd.board_model[i + 1] = (tmp >> 16) & 0xff;
6435 np->vpd.board_model[i + 0] = (tmp >> 24) & 0xff;
6437 np->vpd.board_model[val] = '\0';
6440 nr64(ESPC_NUM_PORTS_MACS) & ESPC_NUM_PORTS_MACS_VAL;
6441 niudbg(PROBE, "SPROM: NUM_PORTS_MACS[%d]\n",
6447 static int __devinit niu_get_and_validate_port(struct niu *np)
6449 struct niu_parent *parent = np->parent;
6452 np->flags |= NIU_FLAGS_XMAC;
6454 if (!parent->num_ports) {
6455 if (parent->plat_type == PLAT_TYPE_NIU) {
6456 parent->num_ports = 2;
6458 parent->num_ports = nr64(ESPC_NUM_PORTS_MACS) &
6459 ESPC_NUM_PORTS_MACS_VAL;
6461 if (!parent->num_ports)
6462 parent->num_ports = 4;
6466 niudbg(PROBE, "niu_get_and_validate_port: port[%d] num_ports[%d]\n",
6467 np->port, parent->num_ports);
6468 if (np->port >= parent->num_ports)
6474 static int __devinit phy_record(struct niu_parent *parent,
6475 struct phy_probe_info *p,
6476 int dev_id_1, int dev_id_2, u8 phy_port,
6479 u32 id = (dev_id_1 << 16) | dev_id_2;
6482 if (dev_id_1 < 0 || dev_id_2 < 0)
6484 if (type == PHY_TYPE_PMA_PMD || type == PHY_TYPE_PCS) {
6485 if (((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_BCM8704) &&
6486 ((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_MRVL88X2011))
6489 if ((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_BCM5464R)
6493 pr_info("niu%d: Found PHY %08x type %s at phy_port %u\n",
6495 (type == PHY_TYPE_PMA_PMD ?
6497 (type == PHY_TYPE_PCS ?
6501 if (p->cur[type] >= NIU_MAX_PORTS) {
6502 printk(KERN_ERR PFX "Too many PHY ports.\n");
6506 p->phy_id[type][idx] = id;
6507 p->phy_port[type][idx] = phy_port;
6508 p->cur[type] = idx + 1;
6512 static int __devinit port_has_10g(struct phy_probe_info *p, int port)
6516 for (i = 0; i < p->cur[PHY_TYPE_PMA_PMD]; i++) {
6517 if (p->phy_port[PHY_TYPE_PMA_PMD][i] == port)
6520 for (i = 0; i < p->cur[PHY_TYPE_PCS]; i++) {
6521 if (p->phy_port[PHY_TYPE_PCS][i] == port)
6528 static int __devinit count_10g_ports(struct phy_probe_info *p, int *lowest)
6534 for (port = 8; port < 32; port++) {
6535 if (port_has_10g(p, port)) {
6545 static int __devinit count_1g_ports(struct phy_probe_info *p, int *lowest)
6548 if (p->cur[PHY_TYPE_MII])
6549 *lowest = p->phy_port[PHY_TYPE_MII][0];
6551 return p->cur[PHY_TYPE_MII];
6554 static void __devinit niu_n2_divide_channels(struct niu_parent *parent)
6556 int num_ports = parent->num_ports;
6559 for (i = 0; i < num_ports; i++) {
6560 parent->rxchan_per_port[i] = (16 / num_ports);
6561 parent->txchan_per_port[i] = (16 / num_ports);
6563 pr_info(PFX "niu%d: Port %u [%u RX chans] "
6566 parent->rxchan_per_port[i],
6567 parent->txchan_per_port[i]);
6571 static void __devinit niu_divide_channels(struct niu_parent *parent,
6572 int num_10g, int num_1g)
6574 int num_ports = parent->num_ports;
6575 int rx_chans_per_10g, rx_chans_per_1g;
6576 int tx_chans_per_10g, tx_chans_per_1g;
6577 int i, tot_rx, tot_tx;
6579 if (!num_10g || !num_1g) {
6580 rx_chans_per_10g = rx_chans_per_1g =
6581 (NIU_NUM_RXCHAN / num_ports);
6582 tx_chans_per_10g = tx_chans_per_1g =
6583 (NIU_NUM_TXCHAN / num_ports);
6585 rx_chans_per_1g = NIU_NUM_RXCHAN / 8;
6586 rx_chans_per_10g = (NIU_NUM_RXCHAN -
6587 (rx_chans_per_1g * num_1g)) /
6590 tx_chans_per_1g = NIU_NUM_TXCHAN / 6;
6591 tx_chans_per_10g = (NIU_NUM_TXCHAN -
6592 (tx_chans_per_1g * num_1g)) /
6596 tot_rx = tot_tx = 0;
6597 for (i = 0; i < num_ports; i++) {
6598 int type = phy_decode(parent->port_phy, i);
6600 if (type == PORT_TYPE_10G) {
6601 parent->rxchan_per_port[i] = rx_chans_per_10g;
6602 parent->txchan_per_port[i] = tx_chans_per_10g;
6604 parent->rxchan_per_port[i] = rx_chans_per_1g;
6605 parent->txchan_per_port[i] = tx_chans_per_1g;
6607 pr_info(PFX "niu%d: Port %u [%u RX chans] "
6610 parent->rxchan_per_port[i],
6611 parent->txchan_per_port[i]);
6612 tot_rx += parent->rxchan_per_port[i];
6613 tot_tx += parent->txchan_per_port[i];
6616 if (tot_rx > NIU_NUM_RXCHAN) {
6617 printk(KERN_ERR PFX "niu%d: Too many RX channels (%d), "
6618 "resetting to one per port.\n",
6619 parent->index, tot_rx);
6620 for (i = 0; i < num_ports; i++)
6621 parent->rxchan_per_port[i] = 1;
6623 if (tot_tx > NIU_NUM_TXCHAN) {
6624 printk(KERN_ERR PFX "niu%d: Too many TX channels (%d), "
6625 "resetting to one per port.\n",
6626 parent->index, tot_tx);
6627 for (i = 0; i < num_ports; i++)
6628 parent->txchan_per_port[i] = 1;
6630 if (tot_rx < NIU_NUM_RXCHAN || tot_tx < NIU_NUM_TXCHAN) {
6631 printk(KERN_WARNING PFX "niu%d: Driver bug, wasted channels, "
6633 parent->index, tot_rx, tot_tx);
6637 static void __devinit niu_divide_rdc_groups(struct niu_parent *parent,
6638 int num_10g, int num_1g)
6640 int i, num_ports = parent->num_ports;
6641 int rdc_group, rdc_groups_per_port;
6642 int rdc_channel_base;
6645 rdc_groups_per_port = NIU_NUM_RDC_TABLES / num_ports;
6647 rdc_channel_base = 0;
6649 for (i = 0; i < num_ports; i++) {
6650 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[i];
6651 int grp, num_channels = parent->rxchan_per_port[i];
6652 int this_channel_offset;
6654 tp->first_table_num = rdc_group;
6655 tp->num_tables = rdc_groups_per_port;
6656 this_channel_offset = 0;
6657 for (grp = 0; grp < tp->num_tables; grp++) {
6658 struct rdc_table *rt = &tp->tables[grp];
6661 pr_info(PFX "niu%d: Port %d RDC tbl(%d) [ ",
6662 parent->index, i, tp->first_table_num + grp);
6663 for (slot = 0; slot < NIU_RDC_TABLE_SLOTS; slot++) {
6664 rt->rxdma_channel[slot] =
6665 rdc_channel_base + this_channel_offset;
6667 printk("%d ", rt->rxdma_channel[slot]);
6669 if (++this_channel_offset == num_channels)
6670 this_channel_offset = 0;
6675 parent->rdc_default[i] = rdc_channel_base;
6677 rdc_channel_base += num_channels;
6678 rdc_group += rdc_groups_per_port;
6682 static int __devinit fill_phy_probe_info(struct niu *np,
6683 struct niu_parent *parent,
6684 struct phy_probe_info *info)
6686 unsigned long flags;
6689 memset(info, 0, sizeof(*info));
6691 /* Port 0 to 7 are reserved for onboard Serdes, probe the rest. */
6692 niu_lock_parent(np, flags);
6694 for (port = 8; port < 32; port++) {
6695 int dev_id_1, dev_id_2;
6697 dev_id_1 = mdio_read(np, port,
6698 NIU_PMA_PMD_DEV_ADDR, MII_PHYSID1);
6699 dev_id_2 = mdio_read(np, port,
6700 NIU_PMA_PMD_DEV_ADDR, MII_PHYSID2);
6701 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
6705 dev_id_1 = mdio_read(np, port,
6706 NIU_PCS_DEV_ADDR, MII_PHYSID1);
6707 dev_id_2 = mdio_read(np, port,
6708 NIU_PCS_DEV_ADDR, MII_PHYSID2);
6709 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
6713 dev_id_1 = mii_read(np, port, MII_PHYSID1);
6714 dev_id_2 = mii_read(np, port, MII_PHYSID2);
6715 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
6720 niu_unlock_parent(np, flags);
6725 static int __devinit walk_phys(struct niu *np, struct niu_parent *parent)
6727 struct phy_probe_info *info = &parent->phy_probe_info;
6728 int lowest_10g, lowest_1g;
6729 int num_10g, num_1g;
6733 err = fill_phy_probe_info(np, parent, info);
6737 num_10g = count_10g_ports(info, &lowest_10g);
6738 num_1g = count_1g_ports(info, &lowest_1g);
6740 switch ((num_10g << 4) | num_1g) {
6742 if (lowest_1g == 10)
6743 parent->plat_type = PLAT_TYPE_VF_P0;
6744 else if (lowest_1g == 26)
6745 parent->plat_type = PLAT_TYPE_VF_P1;
6747 goto unknown_vg_1g_port;
6751 val = (phy_encode(PORT_TYPE_10G, 0) |
6752 phy_encode(PORT_TYPE_10G, 1) |
6753 phy_encode(PORT_TYPE_1G, 2) |
6754 phy_encode(PORT_TYPE_1G, 3));
6758 val = (phy_encode(PORT_TYPE_10G, 0) |
6759 phy_encode(PORT_TYPE_10G, 1));
6763 val = phy_encode(PORT_TYPE_10G, np->port);
6767 if (lowest_1g == 10)
6768 parent->plat_type = PLAT_TYPE_VF_P0;
6769 else if (lowest_1g == 26)
6770 parent->plat_type = PLAT_TYPE_VF_P1;
6772 goto unknown_vg_1g_port;
6776 if ((lowest_10g & 0x7) == 0)
6777 val = (phy_encode(PORT_TYPE_10G, 0) |
6778 phy_encode(PORT_TYPE_1G, 1) |
6779 phy_encode(PORT_TYPE_1G, 2) |
6780 phy_encode(PORT_TYPE_1G, 3));
6782 val = (phy_encode(PORT_TYPE_1G, 0) |
6783 phy_encode(PORT_TYPE_10G, 1) |
6784 phy_encode(PORT_TYPE_1G, 2) |
6785 phy_encode(PORT_TYPE_1G, 3));
6789 if (lowest_1g == 10)
6790 parent->plat_type = PLAT_TYPE_VF_P0;
6791 else if (lowest_1g == 26)
6792 parent->plat_type = PLAT_TYPE_VF_P1;
6794 goto unknown_vg_1g_port;
6796 val = (phy_encode(PORT_TYPE_1G, 0) |
6797 phy_encode(PORT_TYPE_1G, 1) |
6798 phy_encode(PORT_TYPE_1G, 2) |
6799 phy_encode(PORT_TYPE_1G, 3));
6803 printk(KERN_ERR PFX "Unsupported port config "
6809 parent->port_phy = val;
6811 if (parent->plat_type == PLAT_TYPE_NIU)
6812 niu_n2_divide_channels(parent);
6814 niu_divide_channels(parent, num_10g, num_1g);
6816 niu_divide_rdc_groups(parent, num_10g, num_1g);
6821 printk(KERN_ERR PFX "Cannot identify platform type, 1gport=%d\n",
6826 static int __devinit niu_probe_ports(struct niu *np)
6828 struct niu_parent *parent = np->parent;
6831 niudbg(PROBE, "niu_probe_ports(): port_phy[%08x]\n",
6834 if (parent->port_phy == PORT_PHY_UNKNOWN) {
6835 err = walk_phys(np, parent);
6839 niu_set_ldg_timer_res(np, 2);
6840 for (i = 0; i <= LDN_MAX; i++)
6841 niu_ldn_irq_enable(np, i, 0);
6844 if (parent->port_phy == PORT_PHY_INVALID)
6850 static int __devinit niu_classifier_swstate_init(struct niu *np)
6852 struct niu_classifier *cp = &np->clas;
6854 niudbg(PROBE, "niu_classifier_swstate_init: num_tcam(%d)\n",
6855 np->parent->tcam_num_entries);
6857 cp->tcam_index = (u16) np->port;
6858 cp->h1_init = 0xffffffff;
6859 cp->h2_init = 0xffff;
6861 return fflp_early_init(np);
6864 static void __devinit niu_link_config_init(struct niu *np)
6866 struct niu_link_config *lp = &np->link_config;
6868 lp->advertising = (ADVERTISED_10baseT_Half |
6869 ADVERTISED_10baseT_Full |
6870 ADVERTISED_100baseT_Half |
6871 ADVERTISED_100baseT_Full |
6872 ADVERTISED_1000baseT_Half |
6873 ADVERTISED_1000baseT_Full |
6874 ADVERTISED_10000baseT_Full |
6875 ADVERTISED_Autoneg);
6876 lp->speed = lp->active_speed = SPEED_INVALID;
6877 lp->duplex = lp->active_duplex = DUPLEX_INVALID;
6879 lp->loopback_mode = LOOPBACK_MAC;
6880 lp->active_speed = SPEED_10000;
6881 lp->active_duplex = DUPLEX_FULL;
6883 lp->loopback_mode = LOOPBACK_DISABLED;
6887 static int __devinit niu_init_mac_ipp_pcs_base(struct niu *np)
6891 np->mac_regs = np->regs + XMAC_PORT0_OFF;
6892 np->ipp_off = 0x00000;
6893 np->pcs_off = 0x04000;
6894 np->xpcs_off = 0x02000;
6898 np->mac_regs = np->regs + XMAC_PORT1_OFF;
6899 np->ipp_off = 0x08000;
6900 np->pcs_off = 0x0a000;
6901 np->xpcs_off = 0x08000;
6905 np->mac_regs = np->regs + BMAC_PORT2_OFF;
6906 np->ipp_off = 0x04000;
6907 np->pcs_off = 0x0e000;
6908 np->xpcs_off = ~0UL;
6912 np->mac_regs = np->regs + BMAC_PORT3_OFF;
6913 np->ipp_off = 0x0c000;
6914 np->pcs_off = 0x12000;
6915 np->xpcs_off = ~0UL;
6919 dev_err(np->device, PFX "Port %u is invalid, cannot "
6920 "compute MAC block offset.\n", np->port);
6927 static void __devinit niu_try_msix(struct niu *np, u8 *ldg_num_map)
6929 struct msix_entry msi_vec[NIU_NUM_LDG];
6930 struct niu_parent *parent = np->parent;
6931 struct pci_dev *pdev = np->pdev;
6932 int i, num_irqs, err;
6935 first_ldg = (NIU_NUM_LDG / parent->num_ports) * np->port;
6936 for (i = 0; i < (NIU_NUM_LDG / parent->num_ports); i++)
6937 ldg_num_map[i] = first_ldg + i;
6939 num_irqs = (parent->rxchan_per_port[np->port] +
6940 parent->txchan_per_port[np->port] +
6941 (np->port == 0 ? 3 : 1));
6942 BUG_ON(num_irqs > (NIU_NUM_LDG / parent->num_ports));
6945 for (i = 0; i < num_irqs; i++) {
6946 msi_vec[i].vector = 0;
6947 msi_vec[i].entry = i;
6950 err = pci_enable_msix(pdev, msi_vec, num_irqs);
6952 np->flags &= ~NIU_FLAGS_MSIX;
6960 np->flags |= NIU_FLAGS_MSIX;
6961 for (i = 0; i < num_irqs; i++)
6962 np->ldg[i].irq = msi_vec[i].vector;
6963 np->num_ldg = num_irqs;
6966 static int __devinit niu_n2_irq_init(struct niu *np, u8 *ldg_num_map)
6968 #ifdef CONFIG_SPARC64
6969 struct of_device *op = np->op;
6970 const u32 *int_prop;
6973 int_prop = of_get_property(op->node, "interrupts", NULL);
6977 for (i = 0; i < op->num_irqs; i++) {
6978 ldg_num_map[i] = int_prop[i];
6979 np->ldg[i].irq = op->irqs[i];
6982 np->num_ldg = op->num_irqs;
6990 static int __devinit niu_ldg_init(struct niu *np)
6992 struct niu_parent *parent = np->parent;
6993 u8 ldg_num_map[NIU_NUM_LDG];
6994 int first_chan, num_chan;
6995 int i, err, ldg_rotor;
6999 np->ldg[0].irq = np->dev->irq;
7000 if (parent->plat_type == PLAT_TYPE_NIU) {
7001 err = niu_n2_irq_init(np, ldg_num_map);
7005 niu_try_msix(np, ldg_num_map);
7008 for (i = 0; i < np->num_ldg; i++) {
7009 struct niu_ldg *lp = &np->ldg[i];
7011 netif_napi_add(np->dev, &lp->napi, niu_poll, 64);
7014 lp->ldg_num = ldg_num_map[i];
7015 lp->timer = 2; /* XXX */
7017 /* On N2 NIU the firmware has setup the SID mappings so they go
7018 * to the correct values that will route the LDG to the proper
7019 * interrupt in the NCU interrupt table.
7021 if (np->parent->plat_type != PLAT_TYPE_NIU) {
7022 err = niu_set_ldg_sid(np, lp->ldg_num, port, i);
7028 /* We adopt the LDG assignment ordering used by the N2 NIU
7029 * 'interrupt' properties because that simplifies a lot of
7030 * things. This ordering is:
7033 * MIF (if port zero)
7034 * SYSERR (if port zero)
7041 err = niu_ldg_assign_ldn(np, parent, ldg_num_map[ldg_rotor],
7047 if (ldg_rotor == np->num_ldg)
7051 err = niu_ldg_assign_ldn(np, parent,
7052 ldg_num_map[ldg_rotor],
7058 if (ldg_rotor == np->num_ldg)
7061 err = niu_ldg_assign_ldn(np, parent,
7062 ldg_num_map[ldg_rotor],
7068 if (ldg_rotor == np->num_ldg)
7074 for (i = 0; i < port; i++)
7075 first_chan += parent->rxchan_per_port[port];
7076 num_chan = parent->rxchan_per_port[port];
7078 for (i = first_chan; i < (first_chan + num_chan); i++) {
7079 err = niu_ldg_assign_ldn(np, parent,
7080 ldg_num_map[ldg_rotor],
7085 if (ldg_rotor == np->num_ldg)
7090 for (i = 0; i < port; i++)
7091 first_chan += parent->txchan_per_port[port];
7092 num_chan = parent->txchan_per_port[port];
7093 for (i = first_chan; i < (first_chan + num_chan); i++) {
7094 err = niu_ldg_assign_ldn(np, parent,
7095 ldg_num_map[ldg_rotor],
7100 if (ldg_rotor == np->num_ldg)
7107 static void __devexit niu_ldg_free(struct niu *np)
7109 if (np->flags & NIU_FLAGS_MSIX)
7110 pci_disable_msix(np->pdev);
7113 static int __devinit niu_get_of_props(struct niu *np)
7115 #ifdef CONFIG_SPARC64
7116 struct net_device *dev = np->dev;
7117 struct device_node *dp;
7118 const char *phy_type;
7122 if (np->parent->plat_type == PLAT_TYPE_NIU)
7125 dp = pci_device_to_OF_node(np->pdev);
7127 phy_type = of_get_property(dp, "phy-type", &prop_len);
7129 dev_err(np->device, PFX "%s: OF node lacks "
7130 "phy-type property\n",
7135 if (!strcmp(phy_type, "none"))
7138 strcpy(np->vpd.phy_type, phy_type);
7140 if (niu_phy_type_prop_decode(np, np->vpd.phy_type)) {
7141 dev_err(np->device, PFX "%s: Illegal phy string [%s].\n",
7142 dp->full_name, np->vpd.phy_type);
7146 mac_addr = of_get_property(dp, "local-mac-address", &prop_len);
7148 dev_err(np->device, PFX "%s: OF node lacks "
7149 "local-mac-address property\n",
7153 if (prop_len != dev->addr_len) {
7154 dev_err(np->device, PFX "%s: OF MAC address prop len (%d) "
7156 dp->full_name, prop_len);
7158 memcpy(dev->perm_addr, mac_addr, dev->addr_len);
7159 if (!is_valid_ether_addr(&dev->perm_addr[0])) {
7162 dev_err(np->device, PFX "%s: OF MAC address is invalid\n",
7164 dev_err(np->device, PFX "%s: [ \n",
7166 for (i = 0; i < 6; i++)
7167 printk("%02x ", dev->perm_addr[i]);
7172 memcpy(dev->dev_addr, dev->perm_addr, dev->addr_len);
7180 static int __devinit niu_get_invariants(struct niu *np)
7182 int err, have_props;
7185 err = niu_get_of_props(np);
7191 err = niu_get_and_validate_port(np);
7195 err = niu_init_mac_ipp_pcs_base(np);
7200 if (np->parent->plat_type == PLAT_TYPE_NIU)
7203 nw64(ESPC_PIO_EN, ESPC_PIO_EN_ENABLE);
7204 offset = niu_pci_vpd_offset(np);
7205 niudbg(PROBE, "niu_get_invariants: VPD offset [%08x]\n",
7208 niu_pci_vpd_fetch(np, offset);
7209 nw64(ESPC_PIO_EN, 0);
7211 if (np->flags & NIU_FLAGS_VPD_VALID)
7212 niu_pci_vpd_validate(np);
7214 if (!(np->flags & NIU_FLAGS_VPD_VALID)) {
7215 err = niu_pci_probe_sprom(np);
7221 err = niu_probe_ports(np);
7227 niu_classifier_swstate_init(np);
7228 niu_link_config_init(np);
7230 err = niu_determine_phy_disposition(np);
7232 err = niu_init_link(np);
7237 static LIST_HEAD(niu_parent_list);
7238 static DEFINE_MUTEX(niu_parent_lock);
7239 static int niu_parent_index;
7241 static ssize_t show_port_phy(struct device *dev,
7242 struct device_attribute *attr, char *buf)
7244 struct platform_device *plat_dev = to_platform_device(dev);
7245 struct niu_parent *p = plat_dev->dev.platform_data;
7246 u32 port_phy = p->port_phy;
7247 char *orig_buf = buf;
7250 if (port_phy == PORT_PHY_UNKNOWN ||
7251 port_phy == PORT_PHY_INVALID)
7254 for (i = 0; i < p->num_ports; i++) {
7255 const char *type_str;
7258 type = phy_decode(port_phy, i);
7259 if (type == PORT_TYPE_10G)
7264 (i == 0) ? "%s" : " %s",
7267 buf += sprintf(buf, "\n");
7268 return buf - orig_buf;
7271 static ssize_t show_plat_type(struct device *dev,
7272 struct device_attribute *attr, char *buf)
7274 struct platform_device *plat_dev = to_platform_device(dev);
7275 struct niu_parent *p = plat_dev->dev.platform_data;
7276 const char *type_str;
7278 switch (p->plat_type) {
7279 case PLAT_TYPE_ATLAS:
7285 case PLAT_TYPE_VF_P0:
7288 case PLAT_TYPE_VF_P1:
7292 type_str = "unknown";
7296 return sprintf(buf, "%s\n", type_str);
7299 static ssize_t __show_chan_per_port(struct device *dev,
7300 struct device_attribute *attr, char *buf,
7303 struct platform_device *plat_dev = to_platform_device(dev);
7304 struct niu_parent *p = plat_dev->dev.platform_data;
7305 char *orig_buf = buf;
7309 arr = (rx ? p->rxchan_per_port : p->txchan_per_port);
7311 for (i = 0; i < p->num_ports; i++) {
7313 (i == 0) ? "%d" : " %d",
7316 buf += sprintf(buf, "\n");
7318 return buf - orig_buf;
7321 static ssize_t show_rxchan_per_port(struct device *dev,
7322 struct device_attribute *attr, char *buf)
7324 return __show_chan_per_port(dev, attr, buf, 1);
7327 static ssize_t show_txchan_per_port(struct device *dev,
7328 struct device_attribute *attr, char *buf)
7330 return __show_chan_per_port(dev, attr, buf, 1);
7333 static ssize_t show_num_ports(struct device *dev,
7334 struct device_attribute *attr, char *buf)
7336 struct platform_device *plat_dev = to_platform_device(dev);
7337 struct niu_parent *p = plat_dev->dev.platform_data;
7339 return sprintf(buf, "%d\n", p->num_ports);
7342 static struct device_attribute niu_parent_attributes[] = {
7343 __ATTR(port_phy, S_IRUGO, show_port_phy, NULL),
7344 __ATTR(plat_type, S_IRUGO, show_plat_type, NULL),
7345 __ATTR(rxchan_per_port, S_IRUGO, show_rxchan_per_port, NULL),
7346 __ATTR(txchan_per_port, S_IRUGO, show_txchan_per_port, NULL),
7347 __ATTR(num_ports, S_IRUGO, show_num_ports, NULL),
7351 static struct niu_parent * __devinit niu_new_parent(struct niu *np,
7352 union niu_parent_id *id,
7355 struct platform_device *plat_dev;
7356 struct niu_parent *p;
7359 niudbg(PROBE, "niu_new_parent: Creating new parent.\n");
7361 plat_dev = platform_device_register_simple("niu", niu_parent_index,
7366 for (i = 0; attr_name(niu_parent_attributes[i]); i++) {
7367 int err = device_create_file(&plat_dev->dev,
7368 &niu_parent_attributes[i]);
7370 goto fail_unregister;
7373 p = kzalloc(sizeof(*p), GFP_KERNEL);
7375 goto fail_unregister;
7377 p->index = niu_parent_index++;
7379 plat_dev->dev.platform_data = p;
7380 p->plat_dev = plat_dev;
7382 memcpy(&p->id, id, sizeof(*id));
7383 p->plat_type = ptype;
7384 INIT_LIST_HEAD(&p->list);
7385 atomic_set(&p->refcnt, 0);
7386 list_add(&p->list, &niu_parent_list);
7387 spin_lock_init(&p->lock);
7389 p->rxdma_clock_divider = 7500;
7391 p->tcam_num_entries = NIU_PCI_TCAM_ENTRIES;
7392 if (p->plat_type == PLAT_TYPE_NIU)
7393 p->tcam_num_entries = NIU_NONPCI_TCAM_ENTRIES;
7395 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_SCTP_IPV6; i++) {
7396 int index = i - CLASS_CODE_USER_PROG1;
7398 p->tcam_key[index] = TCAM_KEY_TSEL;
7399 p->flow_key[index] = (FLOW_KEY_IPSA |
7402 (FLOW_KEY_L4_BYTE12 <<
7403 FLOW_KEY_L4_0_SHIFT) |
7404 (FLOW_KEY_L4_BYTE12 <<
7405 FLOW_KEY_L4_1_SHIFT));
7408 for (i = 0; i < LDN_MAX + 1; i++)
7409 p->ldg_map[i] = LDG_INVALID;
7414 platform_device_unregister(plat_dev);
7418 static struct niu_parent * __devinit niu_get_parent(struct niu *np,
7419 union niu_parent_id *id,
7422 struct niu_parent *p, *tmp;
7423 int port = np->port;
7425 niudbg(PROBE, "niu_get_parent: platform_type[%u] port[%u]\n",
7428 mutex_lock(&niu_parent_lock);
7430 list_for_each_entry(tmp, &niu_parent_list, list) {
7431 if (!memcmp(id, &tmp->id, sizeof(*id))) {
7437 p = niu_new_parent(np, id, ptype);
7443 sprintf(port_name, "port%d", port);
7444 err = sysfs_create_link(&p->plat_dev->dev.kobj,
7448 p->ports[port] = np;
7449 atomic_inc(&p->refcnt);
7452 mutex_unlock(&niu_parent_lock);
7457 static void niu_put_parent(struct niu *np)
7459 struct niu_parent *p = np->parent;
7463 BUG_ON(!p || p->ports[port] != np);
7465 niudbg(PROBE, "niu_put_parent: port[%u]\n", port);
7467 sprintf(port_name, "port%d", port);
7469 mutex_lock(&niu_parent_lock);
7471 sysfs_remove_link(&p->plat_dev->dev.kobj, port_name);
7473 p->ports[port] = NULL;
7476 if (atomic_dec_and_test(&p->refcnt)) {
7478 platform_device_unregister(p->plat_dev);
7481 mutex_unlock(&niu_parent_lock);
7484 static void *niu_pci_alloc_coherent(struct device *dev, size_t size,
7485 u64 *handle, gfp_t flag)
7490 ret = dma_alloc_coherent(dev, size, &dh, flag);
7496 static void niu_pci_free_coherent(struct device *dev, size_t size,
7497 void *cpu_addr, u64 handle)
7499 dma_free_coherent(dev, size, cpu_addr, handle);
7502 static u64 niu_pci_map_page(struct device *dev, struct page *page,
7503 unsigned long offset, size_t size,
7504 enum dma_data_direction direction)
7506 return dma_map_page(dev, page, offset, size, direction);
7509 static void niu_pci_unmap_page(struct device *dev, u64 dma_address,
7510 size_t size, enum dma_data_direction direction)
7512 return dma_unmap_page(dev, dma_address, size, direction);
7515 static u64 niu_pci_map_single(struct device *dev, void *cpu_addr,
7517 enum dma_data_direction direction)
7519 return dma_map_single(dev, cpu_addr, size, direction);
7522 static void niu_pci_unmap_single(struct device *dev, u64 dma_address,
7524 enum dma_data_direction direction)
7526 dma_unmap_single(dev, dma_address, size, direction);
7529 static const struct niu_ops niu_pci_ops = {
7530 .alloc_coherent = niu_pci_alloc_coherent,
7531 .free_coherent = niu_pci_free_coherent,
7532 .map_page = niu_pci_map_page,
7533 .unmap_page = niu_pci_unmap_page,
7534 .map_single = niu_pci_map_single,
7535 .unmap_single = niu_pci_unmap_single,
7538 static void __devinit niu_driver_version(void)
7540 static int niu_version_printed;
7542 if (niu_version_printed++ == 0)
7543 pr_info("%s", version);
7546 static struct net_device * __devinit niu_alloc_and_init(
7547 struct device *gen_dev, struct pci_dev *pdev,
7548 struct of_device *op, const struct niu_ops *ops,
7551 struct net_device *dev = alloc_etherdev(sizeof(struct niu));
7555 dev_err(gen_dev, PFX "Etherdev alloc failed, aborting.\n");
7559 SET_NETDEV_DEV(dev, gen_dev);
7561 np = netdev_priv(dev);
7565 np->device = gen_dev;
7568 np->msg_enable = niu_debug;
7570 spin_lock_init(&np->lock);
7571 INIT_WORK(&np->reset_task, niu_reset_task);
7578 static void __devinit niu_assign_netdev_ops(struct net_device *dev)
7580 dev->open = niu_open;
7581 dev->stop = niu_close;
7582 dev->get_stats = niu_get_stats;
7583 dev->set_multicast_list = niu_set_rx_mode;
7584 dev->set_mac_address = niu_set_mac_addr;
7585 dev->do_ioctl = niu_ioctl;
7586 dev->tx_timeout = niu_tx_timeout;
7587 dev->hard_start_xmit = niu_start_xmit;
7588 dev->ethtool_ops = &niu_ethtool_ops;
7589 dev->watchdog_timeo = NIU_TX_TIMEOUT;
7590 dev->change_mtu = niu_change_mtu;
7593 static void __devinit niu_device_announce(struct niu *np)
7595 struct net_device *dev = np->dev;
7596 DECLARE_MAC_BUF(mac);
7598 pr_info("%s: NIU Ethernet %s\n",
7599 dev->name, print_mac(mac, dev->dev_addr));
7601 pr_info("%s: Port type[%s] mode[%s:%s] XCVR[%s] phy[%s]\n",
7603 (np->flags & NIU_FLAGS_XMAC ? "XMAC" : "BMAC"),
7604 (np->flags & NIU_FLAGS_10G ? "10G" : "1G"),
7605 (np->flags & NIU_FLAGS_FIBER ? "FIBER" : "COPPER"),
7606 (np->mac_xcvr == MAC_XCVR_MII ? "MII" :
7607 (np->mac_xcvr == MAC_XCVR_PCS ? "PCS" : "XPCS")),
7611 static int __devinit niu_pci_init_one(struct pci_dev *pdev,
7612 const struct pci_device_id *ent)
7614 unsigned long niureg_base, niureg_len;
7615 union niu_parent_id parent_id;
7616 struct net_device *dev;
7622 niu_driver_version();
7624 err = pci_enable_device(pdev);
7626 dev_err(&pdev->dev, PFX "Cannot enable PCI device, "
7631 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM) ||
7632 !(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
7633 dev_err(&pdev->dev, PFX "Cannot find proper PCI device "
7634 "base addresses, aborting.\n");
7636 goto err_out_disable_pdev;
7639 err = pci_request_regions(pdev, DRV_MODULE_NAME);
7641 dev_err(&pdev->dev, PFX "Cannot obtain PCI resources, "
7643 goto err_out_disable_pdev;
7646 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
7648 dev_err(&pdev->dev, PFX "Cannot find PCI Express capability, "
7650 goto err_out_free_res;
7653 dev = niu_alloc_and_init(&pdev->dev, pdev, NULL,
7654 &niu_pci_ops, PCI_FUNC(pdev->devfn));
7657 goto err_out_free_res;
7659 np = netdev_priv(dev);
7661 memset(&parent_id, 0, sizeof(parent_id));
7662 parent_id.pci.domain = pci_domain_nr(pdev->bus);
7663 parent_id.pci.bus = pdev->bus->number;
7664 parent_id.pci.device = PCI_SLOT(pdev->devfn);
7666 np->parent = niu_get_parent(np, &parent_id,
7670 goto err_out_free_dev;
7673 pci_read_config_word(pdev, pos + PCI_EXP_DEVCTL, &val16);
7674 val16 &= ~PCI_EXP_DEVCTL_NOSNOOP_EN;
7675 val16 |= (PCI_EXP_DEVCTL_CERE |
7676 PCI_EXP_DEVCTL_NFERE |
7677 PCI_EXP_DEVCTL_FERE |
7678 PCI_EXP_DEVCTL_URRE |
7679 PCI_EXP_DEVCTL_RELAX_EN);
7680 pci_write_config_word(pdev, pos + PCI_EXP_DEVCTL, val16);
7682 dma_mask = DMA_44BIT_MASK;
7683 err = pci_set_dma_mask(pdev, dma_mask);
7685 dev->features |= NETIF_F_HIGHDMA;
7686 err = pci_set_consistent_dma_mask(pdev, dma_mask);
7688 dev_err(&pdev->dev, PFX "Unable to obtain 44 bit "
7689 "DMA for consistent allocations, "
7691 goto err_out_release_parent;
7694 if (err || dma_mask == DMA_32BIT_MASK) {
7695 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7697 dev_err(&pdev->dev, PFX "No usable DMA configuration, "
7699 goto err_out_release_parent;
7703 dev->features |= (NETIF_F_SG | NETIF_F_HW_CSUM);
7705 niureg_base = pci_resource_start(pdev, 0);
7706 niureg_len = pci_resource_len(pdev, 0);
7708 np->regs = ioremap_nocache(niureg_base, niureg_len);
7710 dev_err(&pdev->dev, PFX "Cannot map device registers, "
7713 goto err_out_release_parent;
7716 pci_set_master(pdev);
7717 pci_save_state(pdev);
7719 dev->irq = pdev->irq;
7721 niu_assign_netdev_ops(dev);
7723 err = niu_get_invariants(np);
7726 dev_err(&pdev->dev, PFX "Problem fetching invariants "
7727 "of chip, aborting.\n");
7728 goto err_out_iounmap;
7731 err = register_netdev(dev);
7733 dev_err(&pdev->dev, PFX "Cannot register net device, "
7735 goto err_out_iounmap;
7738 pci_set_drvdata(pdev, dev);
7740 niu_device_announce(np);
7750 err_out_release_parent:
7757 pci_release_regions(pdev);
7759 err_out_disable_pdev:
7760 pci_disable_device(pdev);
7761 pci_set_drvdata(pdev, NULL);
7766 static void __devexit niu_pci_remove_one(struct pci_dev *pdev)
7768 struct net_device *dev = pci_get_drvdata(pdev);
7771 struct niu *np = netdev_priv(dev);
7773 unregister_netdev(dev);
7784 pci_release_regions(pdev);
7785 pci_disable_device(pdev);
7786 pci_set_drvdata(pdev, NULL);
7790 static int niu_suspend(struct pci_dev *pdev, pm_message_t state)
7792 struct net_device *dev = pci_get_drvdata(pdev);
7793 struct niu *np = netdev_priv(dev);
7794 unsigned long flags;
7796 if (!netif_running(dev))
7799 flush_scheduled_work();
7802 del_timer_sync(&np->timer);
7804 spin_lock_irqsave(&np->lock, flags);
7805 niu_enable_interrupts(np, 0);
7806 spin_unlock_irqrestore(&np->lock, flags);
7808 netif_device_detach(dev);
7810 spin_lock_irqsave(&np->lock, flags);
7812 spin_unlock_irqrestore(&np->lock, flags);
7814 pci_save_state(pdev);
7819 static int niu_resume(struct pci_dev *pdev)
7821 struct net_device *dev = pci_get_drvdata(pdev);
7822 struct niu *np = netdev_priv(dev);
7823 unsigned long flags;
7826 if (!netif_running(dev))
7829 pci_restore_state(pdev);
7831 netif_device_attach(dev);
7833 spin_lock_irqsave(&np->lock, flags);
7835 err = niu_init_hw(np);
7837 np->timer.expires = jiffies + HZ;
7838 add_timer(&np->timer);
7839 niu_netif_start(np);
7842 spin_unlock_irqrestore(&np->lock, flags);
7847 static struct pci_driver niu_pci_driver = {
7848 .name = DRV_MODULE_NAME,
7849 .id_table = niu_pci_tbl,
7850 .probe = niu_pci_init_one,
7851 .remove = __devexit_p(niu_pci_remove_one),
7852 .suspend = niu_suspend,
7853 .resume = niu_resume,
7856 #ifdef CONFIG_SPARC64
7857 static void *niu_phys_alloc_coherent(struct device *dev, size_t size,
7858 u64 *dma_addr, gfp_t flag)
7860 unsigned long order = get_order(size);
7861 unsigned long page = __get_free_pages(flag, order);
7865 memset((char *)page, 0, PAGE_SIZE << order);
7866 *dma_addr = __pa(page);
7868 return (void *) page;
7871 static void niu_phys_free_coherent(struct device *dev, size_t size,
7872 void *cpu_addr, u64 handle)
7874 unsigned long order = get_order(size);
7876 free_pages((unsigned long) cpu_addr, order);
7879 static u64 niu_phys_map_page(struct device *dev, struct page *page,
7880 unsigned long offset, size_t size,
7881 enum dma_data_direction direction)
7883 return page_to_phys(page) + offset;
7886 static void niu_phys_unmap_page(struct device *dev, u64 dma_address,
7887 size_t size, enum dma_data_direction direction)
7889 /* Nothing to do. */
7892 static u64 niu_phys_map_single(struct device *dev, void *cpu_addr,
7894 enum dma_data_direction direction)
7896 return __pa(cpu_addr);
7899 static void niu_phys_unmap_single(struct device *dev, u64 dma_address,
7901 enum dma_data_direction direction)
7903 /* Nothing to do. */
7906 static const struct niu_ops niu_phys_ops = {
7907 .alloc_coherent = niu_phys_alloc_coherent,
7908 .free_coherent = niu_phys_free_coherent,
7909 .map_page = niu_phys_map_page,
7910 .unmap_page = niu_phys_unmap_page,
7911 .map_single = niu_phys_map_single,
7912 .unmap_single = niu_phys_unmap_single,
7915 static unsigned long res_size(struct resource *r)
7917 return r->end - r->start + 1UL;
7920 static int __devinit niu_of_probe(struct of_device *op,
7921 const struct of_device_id *match)
7923 union niu_parent_id parent_id;
7924 struct net_device *dev;
7929 niu_driver_version();
7931 reg = of_get_property(op->node, "reg", NULL);
7933 dev_err(&op->dev, PFX "%s: No 'reg' property, aborting.\n",
7934 op->node->full_name);
7938 dev = niu_alloc_and_init(&op->dev, NULL, op,
7939 &niu_phys_ops, reg[0] & 0x1);
7944 np = netdev_priv(dev);
7946 memset(&parent_id, 0, sizeof(parent_id));
7947 parent_id.of = of_get_parent(op->node);
7949 np->parent = niu_get_parent(np, &parent_id,
7953 goto err_out_free_dev;
7956 dev->features |= (NETIF_F_SG | NETIF_F_HW_CSUM);
7958 np->regs = of_ioremap(&op->resource[1], 0,
7959 res_size(&op->resource[1]),
7962 dev_err(&op->dev, PFX "Cannot map device registers, "
7965 goto err_out_release_parent;
7968 np->vir_regs_1 = of_ioremap(&op->resource[2], 0,
7969 res_size(&op->resource[2]),
7971 if (!np->vir_regs_1) {
7972 dev_err(&op->dev, PFX "Cannot map device vir registers 1, "
7975 goto err_out_iounmap;
7978 np->vir_regs_2 = of_ioremap(&op->resource[3], 0,
7979 res_size(&op->resource[3]),
7981 if (!np->vir_regs_2) {
7982 dev_err(&op->dev, PFX "Cannot map device vir registers 2, "
7985 goto err_out_iounmap;
7988 niu_assign_netdev_ops(dev);
7990 err = niu_get_invariants(np);
7993 dev_err(&op->dev, PFX "Problem fetching invariants "
7994 "of chip, aborting.\n");
7995 goto err_out_iounmap;
7998 err = register_netdev(dev);
8000 dev_err(&op->dev, PFX "Cannot register net device, "
8002 goto err_out_iounmap;
8005 dev_set_drvdata(&op->dev, dev);
8007 niu_device_announce(np);
8012 if (np->vir_regs_1) {
8013 of_iounmap(&op->resource[2], np->vir_regs_1,
8014 res_size(&op->resource[2]));
8015 np->vir_regs_1 = NULL;
8018 if (np->vir_regs_2) {
8019 of_iounmap(&op->resource[3], np->vir_regs_2,
8020 res_size(&op->resource[3]));
8021 np->vir_regs_2 = NULL;
8025 of_iounmap(&op->resource[1], np->regs,
8026 res_size(&op->resource[1]));
8030 err_out_release_parent:
8040 static int __devexit niu_of_remove(struct of_device *op)
8042 struct net_device *dev = dev_get_drvdata(&op->dev);
8045 struct niu *np = netdev_priv(dev);
8047 unregister_netdev(dev);
8049 if (np->vir_regs_1) {
8050 of_iounmap(&op->resource[2], np->vir_regs_1,
8051 res_size(&op->resource[2]));
8052 np->vir_regs_1 = NULL;
8055 if (np->vir_regs_2) {
8056 of_iounmap(&op->resource[3], np->vir_regs_2,
8057 res_size(&op->resource[3]));
8058 np->vir_regs_2 = NULL;
8062 of_iounmap(&op->resource[1], np->regs,
8063 res_size(&op->resource[1]));
8072 dev_set_drvdata(&op->dev, NULL);
8077 static struct of_device_id niu_match[] = {
8080 .compatible = "SUNW,niusl",
8084 MODULE_DEVICE_TABLE(of, niu_match);
8086 static struct of_platform_driver niu_of_driver = {
8088 .match_table = niu_match,
8089 .probe = niu_of_probe,
8090 .remove = __devexit_p(niu_of_remove),
8093 #endif /* CONFIG_SPARC64 */
8095 static int __init niu_init(void)
8099 BUILD_BUG_ON(PAGE_SIZE < 4 * 1024);
8101 niu_debug = netif_msg_init(debug, NIU_MSG_DEFAULT);
8103 #ifdef CONFIG_SPARC64
8104 err = of_register_driver(&niu_of_driver, &of_bus_type);
8108 err = pci_register_driver(&niu_pci_driver);
8109 #ifdef CONFIG_SPARC64
8111 of_unregister_driver(&niu_of_driver);
8118 static void __exit niu_exit(void)
8120 pci_unregister_driver(&niu_pci_driver);
8121 #ifdef CONFIG_SPARC64
8122 of_unregister_driver(&niu_of_driver);
8126 module_init(niu_init);
8127 module_exit(niu_exit);