1 // SPDX-License-Identifier: GPL-2.0
2 /* niu.c: Neptune ethernet driver.
4 * Copyright (C) 2007, 2008 David S. Miller (davem@davemloft.net)
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/interrupt.h>
12 #include <linux/pci.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/netdevice.h>
15 #include <linux/ethtool.h>
16 #include <linux/etherdevice.h>
17 #include <linux/platform_device.h>
18 #include <linux/delay.h>
19 #include <linux/bitops.h>
20 #include <linux/mii.h>
22 #include <linux/if_ether.h>
23 #include <linux/if_vlan.h>
26 #include <linux/ipv6.h>
27 #include <linux/log2.h>
28 #include <linux/jiffies.h>
29 #include <linux/crc32.h>
30 #include <linux/list.h>
31 #include <linux/slab.h>
34 #include <linux/of_device.h>
38 #define DRV_MODULE_NAME "niu"
39 #define DRV_MODULE_VERSION "1.1"
40 #define DRV_MODULE_RELDATE "Apr 22, 2010"
42 static char version[] =
43 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
45 MODULE_AUTHOR("David S. Miller (davem@davemloft.net)");
46 MODULE_DESCRIPTION("NIU ethernet driver");
47 MODULE_LICENSE("GPL");
48 MODULE_VERSION(DRV_MODULE_VERSION);
51 static u64 readq(void __iomem *reg)
53 return ((u64) readl(reg)) | (((u64) readl(reg + 4UL)) << 32);
56 static void writeq(u64 val, void __iomem *reg)
58 writel(val & 0xffffffff, reg);
59 writel(val >> 32, reg + 0x4UL);
63 static const struct pci_device_id niu_pci_tbl[] = {
64 {PCI_DEVICE(PCI_VENDOR_ID_SUN, 0xabcd)},
68 MODULE_DEVICE_TABLE(pci, niu_pci_tbl);
70 #define NIU_TX_TIMEOUT (5 * HZ)
72 #define nr64(reg) readq(np->regs + (reg))
73 #define nw64(reg, val) writeq((val), np->regs + (reg))
75 #define nr64_mac(reg) readq(np->mac_regs + (reg))
76 #define nw64_mac(reg, val) writeq((val), np->mac_regs + (reg))
78 #define nr64_ipp(reg) readq(np->regs + np->ipp_off + (reg))
79 #define nw64_ipp(reg, val) writeq((val), np->regs + np->ipp_off + (reg))
81 #define nr64_pcs(reg) readq(np->regs + np->pcs_off + (reg))
82 #define nw64_pcs(reg, val) writeq((val), np->regs + np->pcs_off + (reg))
84 #define nr64_xpcs(reg) readq(np->regs + np->xpcs_off + (reg))
85 #define nw64_xpcs(reg, val) writeq((val), np->regs + np->xpcs_off + (reg))
87 #define NIU_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
90 static int debug = -1;
91 module_param(debug, int, 0);
92 MODULE_PARM_DESC(debug, "NIU debug level");
94 #define niu_lock_parent(np, flags) \
95 spin_lock_irqsave(&np->parent->lock, flags)
96 #define niu_unlock_parent(np, flags) \
97 spin_unlock_irqrestore(&np->parent->lock, flags)
99 static int serdes_init_10g_serdes(struct niu *np);
101 static int __niu_wait_bits_clear_mac(struct niu *np, unsigned long reg,
102 u64 bits, int limit, int delay)
104 while (--limit >= 0) {
105 u64 val = nr64_mac(reg);
116 static int __niu_set_and_wait_clear_mac(struct niu *np, unsigned long reg,
117 u64 bits, int limit, int delay,
118 const char *reg_name)
123 err = __niu_wait_bits_clear_mac(np, reg, bits, limit, delay);
125 netdev_err(np->dev, "bits (%llx) of register %s would not clear, val[%llx]\n",
126 (unsigned long long)bits, reg_name,
127 (unsigned long long)nr64_mac(reg));
131 #define niu_set_and_wait_clear_mac(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
132 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
133 __niu_set_and_wait_clear_mac(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
136 static int __niu_wait_bits_clear_ipp(struct niu *np, unsigned long reg,
137 u64 bits, int limit, int delay)
139 while (--limit >= 0) {
140 u64 val = nr64_ipp(reg);
151 static int __niu_set_and_wait_clear_ipp(struct niu *np, unsigned long reg,
152 u64 bits, int limit, int delay,
153 const char *reg_name)
162 err = __niu_wait_bits_clear_ipp(np, reg, bits, limit, delay);
164 netdev_err(np->dev, "bits (%llx) of register %s would not clear, val[%llx]\n",
165 (unsigned long long)bits, reg_name,
166 (unsigned long long)nr64_ipp(reg));
170 #define niu_set_and_wait_clear_ipp(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
171 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
172 __niu_set_and_wait_clear_ipp(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
175 static int __niu_wait_bits_clear(struct niu *np, unsigned long reg,
176 u64 bits, int limit, int delay)
178 while (--limit >= 0) {
190 #define niu_wait_bits_clear(NP, REG, BITS, LIMIT, DELAY) \
191 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
192 __niu_wait_bits_clear(NP, REG, BITS, LIMIT, DELAY); \
195 static int __niu_set_and_wait_clear(struct niu *np, unsigned long reg,
196 u64 bits, int limit, int delay,
197 const char *reg_name)
202 err = __niu_wait_bits_clear(np, reg, bits, limit, delay);
204 netdev_err(np->dev, "bits (%llx) of register %s would not clear, val[%llx]\n",
205 (unsigned long long)bits, reg_name,
206 (unsigned long long)nr64(reg));
210 #define niu_set_and_wait_clear(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
211 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
212 __niu_set_and_wait_clear(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
215 static void niu_ldg_rearm(struct niu *np, struct niu_ldg *lp, int on)
217 u64 val = (u64) lp->timer;
220 val |= LDG_IMGMT_ARM;
222 nw64(LDG_IMGMT(lp->ldg_num), val);
225 static int niu_ldn_irq_enable(struct niu *np, int ldn, int on)
227 unsigned long mask_reg, bits;
230 if (ldn < 0 || ldn > LDN_MAX)
234 mask_reg = LD_IM0(ldn);
237 mask_reg = LD_IM1(ldn - 64);
241 val = nr64(mask_reg);
251 static int niu_enable_ldn_in_ldg(struct niu *np, struct niu_ldg *lp, int on)
253 struct niu_parent *parent = np->parent;
256 for (i = 0; i <= LDN_MAX; i++) {
259 if (parent->ldg_map[i] != lp->ldg_num)
262 err = niu_ldn_irq_enable(np, i, on);
269 static int niu_enable_interrupts(struct niu *np, int on)
273 for (i = 0; i < np->num_ldg; i++) {
274 struct niu_ldg *lp = &np->ldg[i];
277 err = niu_enable_ldn_in_ldg(np, lp, on);
281 for (i = 0; i < np->num_ldg; i++)
282 niu_ldg_rearm(np, &np->ldg[i], on);
287 static u32 phy_encode(u32 type, int port)
289 return type << (port * 2);
292 static u32 phy_decode(u32 val, int port)
294 return (val >> (port * 2)) & PORT_TYPE_MASK;
297 static int mdio_wait(struct niu *np)
302 while (--limit > 0) {
303 val = nr64(MIF_FRAME_OUTPUT);
304 if ((val >> MIF_FRAME_OUTPUT_TA_SHIFT) & 0x1)
305 return val & MIF_FRAME_OUTPUT_DATA;
313 static int mdio_read(struct niu *np, int port, int dev, int reg)
317 nw64(MIF_FRAME_OUTPUT, MDIO_ADDR_OP(port, dev, reg));
322 nw64(MIF_FRAME_OUTPUT, MDIO_READ_OP(port, dev));
323 return mdio_wait(np);
326 static int mdio_write(struct niu *np, int port, int dev, int reg, int data)
330 nw64(MIF_FRAME_OUTPUT, MDIO_ADDR_OP(port, dev, reg));
335 nw64(MIF_FRAME_OUTPUT, MDIO_WRITE_OP(port, dev, data));
343 static int mii_read(struct niu *np, int port, int reg)
345 nw64(MIF_FRAME_OUTPUT, MII_READ_OP(port, reg));
346 return mdio_wait(np);
349 static int mii_write(struct niu *np, int port, int reg, int data)
353 nw64(MIF_FRAME_OUTPUT, MII_WRITE_OP(port, reg, data));
361 static int esr2_set_tx_cfg(struct niu *np, unsigned long channel, u32 val)
365 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
366 ESR2_TI_PLL_TX_CFG_L(channel),
369 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
370 ESR2_TI_PLL_TX_CFG_H(channel),
375 static int esr2_set_rx_cfg(struct niu *np, unsigned long channel, u32 val)
379 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
380 ESR2_TI_PLL_RX_CFG_L(channel),
383 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
384 ESR2_TI_PLL_RX_CFG_H(channel),
389 /* Mode is always 10G fiber. */
390 static int serdes_init_niu_10g_fiber(struct niu *np)
392 struct niu_link_config *lp = &np->link_config;
396 tx_cfg = (PLL_TX_CFG_ENTX | PLL_TX_CFG_SWING_1375MV);
397 rx_cfg = (PLL_RX_CFG_ENRX | PLL_RX_CFG_TERM_0P8VDDT |
398 PLL_RX_CFG_ALIGN_ENA | PLL_RX_CFG_LOS_LTHRESH |
399 PLL_RX_CFG_EQ_LP_ADAPTIVE);
401 if (lp->loopback_mode == LOOPBACK_PHY) {
402 u16 test_cfg = PLL_TEST_CFG_LOOPBACK_CML_DIS;
404 mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
405 ESR2_TI_PLL_TEST_CFG_L, test_cfg);
407 tx_cfg |= PLL_TX_CFG_ENTEST;
408 rx_cfg |= PLL_RX_CFG_ENTEST;
411 /* Initialize all 4 lanes of the SERDES. */
412 for (i = 0; i < 4; i++) {
413 int err = esr2_set_tx_cfg(np, i, tx_cfg);
418 for (i = 0; i < 4; i++) {
419 int err = esr2_set_rx_cfg(np, i, rx_cfg);
427 static int serdes_init_niu_1g_serdes(struct niu *np)
429 struct niu_link_config *lp = &np->link_config;
430 u16 pll_cfg, pll_sts;
437 tx_cfg = (PLL_TX_CFG_ENTX | PLL_TX_CFG_SWING_1375MV |
438 PLL_TX_CFG_RATE_HALF);
439 rx_cfg = (PLL_RX_CFG_ENRX | PLL_RX_CFG_TERM_0P8VDDT |
440 PLL_RX_CFG_ALIGN_ENA | PLL_RX_CFG_LOS_LTHRESH |
441 PLL_RX_CFG_RATE_HALF);
444 rx_cfg |= PLL_RX_CFG_EQ_LP_ADAPTIVE;
446 if (lp->loopback_mode == LOOPBACK_PHY) {
447 u16 test_cfg = PLL_TEST_CFG_LOOPBACK_CML_DIS;
449 mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
450 ESR2_TI_PLL_TEST_CFG_L, test_cfg);
452 tx_cfg |= PLL_TX_CFG_ENTEST;
453 rx_cfg |= PLL_RX_CFG_ENTEST;
456 /* Initialize PLL for 1G */
457 pll_cfg = (PLL_CFG_ENPLL | PLL_CFG_MPY_8X);
459 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
460 ESR2_TI_PLL_CFG_L, pll_cfg);
462 netdev_err(np->dev, "NIU Port %d %s() mdio write to ESR2_TI_PLL_CFG_L failed\n",
467 pll_sts = PLL_CFG_ENPLL;
469 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
470 ESR2_TI_PLL_STS_L, pll_sts);
472 netdev_err(np->dev, "NIU Port %d %s() mdio write to ESR2_TI_PLL_STS_L failed\n",
479 /* Initialize all 4 lanes of the SERDES. */
480 for (i = 0; i < 4; i++) {
481 err = esr2_set_tx_cfg(np, i, tx_cfg);
486 for (i = 0; i < 4; i++) {
487 err = esr2_set_rx_cfg(np, i, rx_cfg);
494 val = (ESR_INT_SRDY0_P0 | ESR_INT_DET0_P0);
499 val = (ESR_INT_SRDY0_P1 | ESR_INT_DET0_P1);
507 while (max_retry--) {
508 sig = nr64(ESR_INT_SIGNALS);
509 if ((sig & mask) == val)
515 if ((sig & mask) != val) {
516 netdev_err(np->dev, "Port %u signal bits [%08x] are not [%08x]\n",
517 np->port, (int)(sig & mask), (int)val);
524 static int serdes_init_niu_10g_serdes(struct niu *np)
526 struct niu_link_config *lp = &np->link_config;
527 u32 tx_cfg, rx_cfg, pll_cfg, pll_sts;
533 tx_cfg = (PLL_TX_CFG_ENTX | PLL_TX_CFG_SWING_1375MV);
534 rx_cfg = (PLL_RX_CFG_ENRX | PLL_RX_CFG_TERM_0P8VDDT |
535 PLL_RX_CFG_ALIGN_ENA | PLL_RX_CFG_LOS_LTHRESH |
536 PLL_RX_CFG_EQ_LP_ADAPTIVE);
538 if (lp->loopback_mode == LOOPBACK_PHY) {
539 u16 test_cfg = PLL_TEST_CFG_LOOPBACK_CML_DIS;
541 mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
542 ESR2_TI_PLL_TEST_CFG_L, test_cfg);
544 tx_cfg |= PLL_TX_CFG_ENTEST;
545 rx_cfg |= PLL_RX_CFG_ENTEST;
548 /* Initialize PLL for 10G */
549 pll_cfg = (PLL_CFG_ENPLL | PLL_CFG_MPY_10X);
551 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
552 ESR2_TI_PLL_CFG_L, pll_cfg & 0xffff);
554 netdev_err(np->dev, "NIU Port %d %s() mdio write to ESR2_TI_PLL_CFG_L failed\n",
559 pll_sts = PLL_CFG_ENPLL;
561 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
562 ESR2_TI_PLL_STS_L, pll_sts & 0xffff);
564 netdev_err(np->dev, "NIU Port %d %s() mdio write to ESR2_TI_PLL_STS_L failed\n",
571 /* Initialize all 4 lanes of the SERDES. */
572 for (i = 0; i < 4; i++) {
573 err = esr2_set_tx_cfg(np, i, tx_cfg);
578 for (i = 0; i < 4; i++) {
579 err = esr2_set_rx_cfg(np, i, rx_cfg);
584 /* check if serdes is ready */
588 mask = ESR_INT_SIGNALS_P0_BITS;
589 val = (ESR_INT_SRDY0_P0 |
599 mask = ESR_INT_SIGNALS_P1_BITS;
600 val = (ESR_INT_SRDY0_P1 |
613 while (max_retry--) {
614 sig = nr64(ESR_INT_SIGNALS);
615 if ((sig & mask) == val)
621 if ((sig & mask) != val) {
622 pr_info("NIU Port %u signal bits [%08x] are not [%08x] for 10G...trying 1G\n",
623 np->port, (int)(sig & mask), (int)val);
625 /* 10G failed, try initializing at 1G */
626 err = serdes_init_niu_1g_serdes(np);
628 np->flags &= ~NIU_FLAGS_10G;
629 np->mac_xcvr = MAC_XCVR_PCS;
631 netdev_err(np->dev, "Port %u 10G/1G SERDES Link Failed\n",
639 static int esr_read_rxtx_ctrl(struct niu *np, unsigned long chan, u32 *val)
643 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR, ESR_RXTX_CTRL_L(chan));
645 *val = (err & 0xffff);
646 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
647 ESR_RXTX_CTRL_H(chan));
649 *val |= ((err & 0xffff) << 16);
655 static int esr_read_glue0(struct niu *np, unsigned long chan, u32 *val)
659 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
660 ESR_GLUE_CTRL0_L(chan));
662 *val = (err & 0xffff);
663 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
664 ESR_GLUE_CTRL0_H(chan));
666 *val |= ((err & 0xffff) << 16);
673 static int esr_read_reset(struct niu *np, u32 *val)
677 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
678 ESR_RXTX_RESET_CTRL_L);
680 *val = (err & 0xffff);
681 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
682 ESR_RXTX_RESET_CTRL_H);
684 *val |= ((err & 0xffff) << 16);
691 static int esr_write_rxtx_ctrl(struct niu *np, unsigned long chan, u32 val)
695 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
696 ESR_RXTX_CTRL_L(chan), val & 0xffff);
698 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
699 ESR_RXTX_CTRL_H(chan), (val >> 16));
703 static int esr_write_glue0(struct niu *np, unsigned long chan, u32 val)
707 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
708 ESR_GLUE_CTRL0_L(chan), val & 0xffff);
710 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
711 ESR_GLUE_CTRL0_H(chan), (val >> 16));
715 static int esr_reset(struct niu *np)
720 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
721 ESR_RXTX_RESET_CTRL_L, 0x0000);
724 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
725 ESR_RXTX_RESET_CTRL_H, 0xffff);
730 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
731 ESR_RXTX_RESET_CTRL_L, 0xffff);
736 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
737 ESR_RXTX_RESET_CTRL_H, 0x0000);
742 err = esr_read_reset(np, &reset);
746 netdev_err(np->dev, "Port %u ESR_RESET did not clear [%08x]\n",
754 static int serdes_init_10g(struct niu *np)
756 struct niu_link_config *lp = &np->link_config;
757 unsigned long ctrl_reg, test_cfg_reg, i;
758 u64 ctrl_val, test_cfg_val, sig, mask, val;
763 ctrl_reg = ENET_SERDES_0_CTRL_CFG;
764 test_cfg_reg = ENET_SERDES_0_TEST_CFG;
767 ctrl_reg = ENET_SERDES_1_CTRL_CFG;
768 test_cfg_reg = ENET_SERDES_1_TEST_CFG;
774 ctrl_val = (ENET_SERDES_CTRL_SDET_0 |
775 ENET_SERDES_CTRL_SDET_1 |
776 ENET_SERDES_CTRL_SDET_2 |
777 ENET_SERDES_CTRL_SDET_3 |
778 (0x5 << ENET_SERDES_CTRL_EMPH_0_SHIFT) |
779 (0x5 << ENET_SERDES_CTRL_EMPH_1_SHIFT) |
780 (0x5 << ENET_SERDES_CTRL_EMPH_2_SHIFT) |
781 (0x5 << ENET_SERDES_CTRL_EMPH_3_SHIFT) |
782 (0x1 << ENET_SERDES_CTRL_LADJ_0_SHIFT) |
783 (0x1 << ENET_SERDES_CTRL_LADJ_1_SHIFT) |
784 (0x1 << ENET_SERDES_CTRL_LADJ_2_SHIFT) |
785 (0x1 << ENET_SERDES_CTRL_LADJ_3_SHIFT));
788 if (lp->loopback_mode == LOOPBACK_PHY) {
789 test_cfg_val |= ((ENET_TEST_MD_PAD_LOOPBACK <<
790 ENET_SERDES_TEST_MD_0_SHIFT) |
791 (ENET_TEST_MD_PAD_LOOPBACK <<
792 ENET_SERDES_TEST_MD_1_SHIFT) |
793 (ENET_TEST_MD_PAD_LOOPBACK <<
794 ENET_SERDES_TEST_MD_2_SHIFT) |
795 (ENET_TEST_MD_PAD_LOOPBACK <<
796 ENET_SERDES_TEST_MD_3_SHIFT));
799 nw64(ctrl_reg, ctrl_val);
800 nw64(test_cfg_reg, test_cfg_val);
802 /* Initialize all 4 lanes of the SERDES. */
803 for (i = 0; i < 4; i++) {
804 u32 rxtx_ctrl, glue0;
806 err = esr_read_rxtx_ctrl(np, i, &rxtx_ctrl);
809 err = esr_read_glue0(np, i, &glue0);
813 rxtx_ctrl &= ~(ESR_RXTX_CTRL_VMUXLO);
814 rxtx_ctrl |= (ESR_RXTX_CTRL_ENSTRETCH |
815 (2 << ESR_RXTX_CTRL_VMUXLO_SHIFT));
817 glue0 &= ~(ESR_GLUE_CTRL0_SRATE |
818 ESR_GLUE_CTRL0_THCNT |
819 ESR_GLUE_CTRL0_BLTIME);
820 glue0 |= (ESR_GLUE_CTRL0_RXLOSENAB |
821 (0xf << ESR_GLUE_CTRL0_SRATE_SHIFT) |
822 (0xff << ESR_GLUE_CTRL0_THCNT_SHIFT) |
823 (BLTIME_300_CYCLES <<
824 ESR_GLUE_CTRL0_BLTIME_SHIFT));
826 err = esr_write_rxtx_ctrl(np, i, rxtx_ctrl);
829 err = esr_write_glue0(np, i, glue0);
838 sig = nr64(ESR_INT_SIGNALS);
841 mask = ESR_INT_SIGNALS_P0_BITS;
842 val = (ESR_INT_SRDY0_P0 |
852 mask = ESR_INT_SIGNALS_P1_BITS;
853 val = (ESR_INT_SRDY0_P1 |
866 if ((sig & mask) != val) {
867 if (np->flags & NIU_FLAGS_HOTPLUG_PHY) {
868 np->flags &= ~NIU_FLAGS_HOTPLUG_PHY_PRESENT;
871 netdev_err(np->dev, "Port %u signal bits [%08x] are not [%08x]\n",
872 np->port, (int)(sig & mask), (int)val);
875 if (np->flags & NIU_FLAGS_HOTPLUG_PHY)
876 np->flags |= NIU_FLAGS_HOTPLUG_PHY_PRESENT;
880 static int serdes_init_1g(struct niu *np)
884 val = nr64(ENET_SERDES_1_PLL_CFG);
885 val &= ~ENET_SERDES_PLL_FBDIV2;
888 val |= ENET_SERDES_PLL_HRATE0;
891 val |= ENET_SERDES_PLL_HRATE1;
894 val |= ENET_SERDES_PLL_HRATE2;
897 val |= ENET_SERDES_PLL_HRATE3;
902 nw64(ENET_SERDES_1_PLL_CFG, val);
907 static int serdes_init_1g_serdes(struct niu *np)
909 struct niu_link_config *lp = &np->link_config;
910 unsigned long ctrl_reg, test_cfg_reg, pll_cfg, i;
911 u64 ctrl_val, test_cfg_val, sig, mask, val;
913 u64 reset_val, val_rd;
915 val = ENET_SERDES_PLL_HRATE0 | ENET_SERDES_PLL_HRATE1 |
916 ENET_SERDES_PLL_HRATE2 | ENET_SERDES_PLL_HRATE3 |
917 ENET_SERDES_PLL_FBDIV0;
920 reset_val = ENET_SERDES_RESET_0;
921 ctrl_reg = ENET_SERDES_0_CTRL_CFG;
922 test_cfg_reg = ENET_SERDES_0_TEST_CFG;
923 pll_cfg = ENET_SERDES_0_PLL_CFG;
926 reset_val = ENET_SERDES_RESET_1;
927 ctrl_reg = ENET_SERDES_1_CTRL_CFG;
928 test_cfg_reg = ENET_SERDES_1_TEST_CFG;
929 pll_cfg = ENET_SERDES_1_PLL_CFG;
935 ctrl_val = (ENET_SERDES_CTRL_SDET_0 |
936 ENET_SERDES_CTRL_SDET_1 |
937 ENET_SERDES_CTRL_SDET_2 |
938 ENET_SERDES_CTRL_SDET_3 |
939 (0x5 << ENET_SERDES_CTRL_EMPH_0_SHIFT) |
940 (0x5 << ENET_SERDES_CTRL_EMPH_1_SHIFT) |
941 (0x5 << ENET_SERDES_CTRL_EMPH_2_SHIFT) |
942 (0x5 << ENET_SERDES_CTRL_EMPH_3_SHIFT) |
943 (0x1 << ENET_SERDES_CTRL_LADJ_0_SHIFT) |
944 (0x1 << ENET_SERDES_CTRL_LADJ_1_SHIFT) |
945 (0x1 << ENET_SERDES_CTRL_LADJ_2_SHIFT) |
946 (0x1 << ENET_SERDES_CTRL_LADJ_3_SHIFT));
949 if (lp->loopback_mode == LOOPBACK_PHY) {
950 test_cfg_val |= ((ENET_TEST_MD_PAD_LOOPBACK <<
951 ENET_SERDES_TEST_MD_0_SHIFT) |
952 (ENET_TEST_MD_PAD_LOOPBACK <<
953 ENET_SERDES_TEST_MD_1_SHIFT) |
954 (ENET_TEST_MD_PAD_LOOPBACK <<
955 ENET_SERDES_TEST_MD_2_SHIFT) |
956 (ENET_TEST_MD_PAD_LOOPBACK <<
957 ENET_SERDES_TEST_MD_3_SHIFT));
960 nw64(ENET_SERDES_RESET, reset_val);
962 val_rd = nr64(ENET_SERDES_RESET);
963 val_rd &= ~reset_val;
965 nw64(ctrl_reg, ctrl_val);
966 nw64(test_cfg_reg, test_cfg_val);
967 nw64(ENET_SERDES_RESET, val_rd);
970 /* Initialize all 4 lanes of the SERDES. */
971 for (i = 0; i < 4; i++) {
972 u32 rxtx_ctrl, glue0;
974 err = esr_read_rxtx_ctrl(np, i, &rxtx_ctrl);
977 err = esr_read_glue0(np, i, &glue0);
981 rxtx_ctrl &= ~(ESR_RXTX_CTRL_VMUXLO);
982 rxtx_ctrl |= (ESR_RXTX_CTRL_ENSTRETCH |
983 (2 << ESR_RXTX_CTRL_VMUXLO_SHIFT));
985 glue0 &= ~(ESR_GLUE_CTRL0_SRATE |
986 ESR_GLUE_CTRL0_THCNT |
987 ESR_GLUE_CTRL0_BLTIME);
988 glue0 |= (ESR_GLUE_CTRL0_RXLOSENAB |
989 (0xf << ESR_GLUE_CTRL0_SRATE_SHIFT) |
990 (0xff << ESR_GLUE_CTRL0_THCNT_SHIFT) |
991 (BLTIME_300_CYCLES <<
992 ESR_GLUE_CTRL0_BLTIME_SHIFT));
994 err = esr_write_rxtx_ctrl(np, i, rxtx_ctrl);
997 err = esr_write_glue0(np, i, glue0);
1003 sig = nr64(ESR_INT_SIGNALS);
1006 val = (ESR_INT_SRDY0_P0 | ESR_INT_DET0_P0);
1011 val = (ESR_INT_SRDY0_P1 | ESR_INT_DET0_P1);
1019 if ((sig & mask) != val) {
1020 netdev_err(np->dev, "Port %u signal bits [%08x] are not [%08x]\n",
1021 np->port, (int)(sig & mask), (int)val);
1028 static int link_status_1g_serdes(struct niu *np, int *link_up_p)
1030 struct niu_link_config *lp = &np->link_config;
1034 unsigned long flags;
1038 current_speed = SPEED_INVALID;
1039 current_duplex = DUPLEX_INVALID;
1041 spin_lock_irqsave(&np->lock, flags);
1043 val = nr64_pcs(PCS_MII_STAT);
1045 if (val & PCS_MII_STAT_LINK_STATUS) {
1047 current_speed = SPEED_1000;
1048 current_duplex = DUPLEX_FULL;
1051 lp->active_speed = current_speed;
1052 lp->active_duplex = current_duplex;
1053 spin_unlock_irqrestore(&np->lock, flags);
1055 *link_up_p = link_up;
1059 static int link_status_10g_serdes(struct niu *np, int *link_up_p)
1061 unsigned long flags;
1062 struct niu_link_config *lp = &np->link_config;
1069 if (!(np->flags & NIU_FLAGS_10G))
1070 return link_status_1g_serdes(np, link_up_p);
1072 current_speed = SPEED_INVALID;
1073 current_duplex = DUPLEX_INVALID;
1074 spin_lock_irqsave(&np->lock, flags);
1076 val = nr64_xpcs(XPCS_STATUS(0));
1077 val2 = nr64_mac(XMAC_INTER2);
1078 if (val2 & 0x01000000)
1081 if ((val & 0x1000ULL) && link_ok) {
1083 current_speed = SPEED_10000;
1084 current_duplex = DUPLEX_FULL;
1086 lp->active_speed = current_speed;
1087 lp->active_duplex = current_duplex;
1088 spin_unlock_irqrestore(&np->lock, flags);
1089 *link_up_p = link_up;
1093 static int link_status_mii(struct niu *np, int *link_up_p)
1095 struct niu_link_config *lp = &np->link_config;
1097 int bmsr, advert, ctrl1000, stat1000, lpa, bmcr, estatus;
1098 int supported, advertising, active_speed, active_duplex;
1100 err = mii_read(np, np->phy_addr, MII_BMCR);
1101 if (unlikely(err < 0))
1105 err = mii_read(np, np->phy_addr, MII_BMSR);
1106 if (unlikely(err < 0))
1110 err = mii_read(np, np->phy_addr, MII_ADVERTISE);
1111 if (unlikely(err < 0))
1115 err = mii_read(np, np->phy_addr, MII_LPA);
1116 if (unlikely(err < 0))
1120 if (likely(bmsr & BMSR_ESTATEN)) {
1121 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1122 if (unlikely(err < 0))
1126 err = mii_read(np, np->phy_addr, MII_CTRL1000);
1127 if (unlikely(err < 0))
1131 err = mii_read(np, np->phy_addr, MII_STAT1000);
1132 if (unlikely(err < 0))
1136 estatus = ctrl1000 = stat1000 = 0;
1139 if (bmsr & BMSR_ANEGCAPABLE)
1140 supported |= SUPPORTED_Autoneg;
1141 if (bmsr & BMSR_10HALF)
1142 supported |= SUPPORTED_10baseT_Half;
1143 if (bmsr & BMSR_10FULL)
1144 supported |= SUPPORTED_10baseT_Full;
1145 if (bmsr & BMSR_100HALF)
1146 supported |= SUPPORTED_100baseT_Half;
1147 if (bmsr & BMSR_100FULL)
1148 supported |= SUPPORTED_100baseT_Full;
1149 if (estatus & ESTATUS_1000_THALF)
1150 supported |= SUPPORTED_1000baseT_Half;
1151 if (estatus & ESTATUS_1000_TFULL)
1152 supported |= SUPPORTED_1000baseT_Full;
1153 lp->supported = supported;
1155 advertising = mii_adv_to_ethtool_adv_t(advert);
1156 advertising |= mii_ctrl1000_to_ethtool_adv_t(ctrl1000);
1158 if (bmcr & BMCR_ANENABLE) {
1161 lp->active_autoneg = 1;
1162 advertising |= ADVERTISED_Autoneg;
1165 neg1000 = (ctrl1000 << 2) & stat1000;
1167 if (neg1000 & (LPA_1000FULL | LPA_1000HALF))
1168 active_speed = SPEED_1000;
1169 else if (neg & LPA_100)
1170 active_speed = SPEED_100;
1171 else if (neg & (LPA_10HALF | LPA_10FULL))
1172 active_speed = SPEED_10;
1174 active_speed = SPEED_INVALID;
1176 if ((neg1000 & LPA_1000FULL) || (neg & LPA_DUPLEX))
1177 active_duplex = DUPLEX_FULL;
1178 else if (active_speed != SPEED_INVALID)
1179 active_duplex = DUPLEX_HALF;
1181 active_duplex = DUPLEX_INVALID;
1183 lp->active_autoneg = 0;
1185 if ((bmcr & BMCR_SPEED1000) && !(bmcr & BMCR_SPEED100))
1186 active_speed = SPEED_1000;
1187 else if (bmcr & BMCR_SPEED100)
1188 active_speed = SPEED_100;
1190 active_speed = SPEED_10;
1192 if (bmcr & BMCR_FULLDPLX)
1193 active_duplex = DUPLEX_FULL;
1195 active_duplex = DUPLEX_HALF;
1198 lp->active_advertising = advertising;
1199 lp->active_speed = active_speed;
1200 lp->active_duplex = active_duplex;
1201 *link_up_p = !!(bmsr & BMSR_LSTATUS);
1206 static int link_status_1g_rgmii(struct niu *np, int *link_up_p)
1208 struct niu_link_config *lp = &np->link_config;
1209 u16 current_speed, bmsr;
1210 unsigned long flags;
1215 current_speed = SPEED_INVALID;
1216 current_duplex = DUPLEX_INVALID;
1218 spin_lock_irqsave(&np->lock, flags);
1220 err = mii_read(np, np->phy_addr, MII_BMSR);
1225 if (bmsr & BMSR_LSTATUS) {
1227 current_speed = SPEED_1000;
1228 current_duplex = DUPLEX_FULL;
1230 lp->active_speed = current_speed;
1231 lp->active_duplex = current_duplex;
1235 spin_unlock_irqrestore(&np->lock, flags);
1237 *link_up_p = link_up;
1241 static int link_status_1g(struct niu *np, int *link_up_p)
1243 struct niu_link_config *lp = &np->link_config;
1244 unsigned long flags;
1247 spin_lock_irqsave(&np->lock, flags);
1249 err = link_status_mii(np, link_up_p);
1250 lp->supported |= SUPPORTED_TP;
1251 lp->active_advertising |= ADVERTISED_TP;
1253 spin_unlock_irqrestore(&np->lock, flags);
1257 static int bcm8704_reset(struct niu *np)
1261 err = mdio_read(np, np->phy_addr,
1262 BCM8704_PHYXS_DEV_ADDR, MII_BMCR);
1263 if (err < 0 || err == 0xffff)
1266 err = mdio_write(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
1272 while (--limit >= 0) {
1273 err = mdio_read(np, np->phy_addr,
1274 BCM8704_PHYXS_DEV_ADDR, MII_BMCR);
1277 if (!(err & BMCR_RESET))
1281 netdev_err(np->dev, "Port %u PHY will not reset (bmcr=%04x)\n",
1282 np->port, (err & 0xffff));
1288 /* When written, certain PHY registers need to be read back twice
1289 * in order for the bits to settle properly.
1291 static int bcm8704_user_dev3_readback(struct niu *np, int reg)
1293 int err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, reg);
1296 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, reg);
1302 static int bcm8706_init_user_dev3(struct niu *np)
1307 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1308 BCM8704_USER_OPT_DIGITAL_CTRL);
1311 err &= ~USER_ODIG_CTRL_GPIOS;
1312 err |= (0x3 << USER_ODIG_CTRL_GPIOS_SHIFT);
1313 err |= USER_ODIG_CTRL_RESV2;
1314 err = mdio_write(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1315 BCM8704_USER_OPT_DIGITAL_CTRL, err);
1324 static int bcm8704_init_user_dev3(struct niu *np)
1328 err = mdio_write(np, np->phy_addr,
1329 BCM8704_USER_DEV3_ADDR, BCM8704_USER_CONTROL,
1330 (USER_CONTROL_OPTXRST_LVL |
1331 USER_CONTROL_OPBIASFLT_LVL |
1332 USER_CONTROL_OBTMPFLT_LVL |
1333 USER_CONTROL_OPPRFLT_LVL |
1334 USER_CONTROL_OPTXFLT_LVL |
1335 USER_CONTROL_OPRXLOS_LVL |
1336 USER_CONTROL_OPRXFLT_LVL |
1337 USER_CONTROL_OPTXON_LVL |
1338 (0x3f << USER_CONTROL_RES1_SHIFT)));
1342 err = mdio_write(np, np->phy_addr,
1343 BCM8704_USER_DEV3_ADDR, BCM8704_USER_PMD_TX_CONTROL,
1344 (USER_PMD_TX_CTL_XFP_CLKEN |
1345 (1 << USER_PMD_TX_CTL_TX_DAC_TXD_SH) |
1346 (2 << USER_PMD_TX_CTL_TX_DAC_TXCK_SH) |
1347 USER_PMD_TX_CTL_TSCK_LPWREN));
1351 err = bcm8704_user_dev3_readback(np, BCM8704_USER_CONTROL);
1354 err = bcm8704_user_dev3_readback(np, BCM8704_USER_PMD_TX_CONTROL);
1358 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1359 BCM8704_USER_OPT_DIGITAL_CTRL);
1362 err &= ~USER_ODIG_CTRL_GPIOS;
1363 err |= (0x3 << USER_ODIG_CTRL_GPIOS_SHIFT);
1364 err = mdio_write(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1365 BCM8704_USER_OPT_DIGITAL_CTRL, err);
1374 static int mrvl88x2011_act_led(struct niu *np, int val)
1378 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
1379 MRVL88X2011_LED_8_TO_11_CTL);
1383 err &= ~MRVL88X2011_LED(MRVL88X2011_LED_ACT,MRVL88X2011_LED_CTL_MASK);
1384 err |= MRVL88X2011_LED(MRVL88X2011_LED_ACT,val);
1386 return mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
1387 MRVL88X2011_LED_8_TO_11_CTL, err);
1390 static int mrvl88x2011_led_blink_rate(struct niu *np, int rate)
1394 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
1395 MRVL88X2011_LED_BLINK_CTL);
1397 err &= ~MRVL88X2011_LED_BLKRATE_MASK;
1400 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
1401 MRVL88X2011_LED_BLINK_CTL, err);
1407 static int xcvr_init_10g_mrvl88x2011(struct niu *np)
1411 /* Set LED functions */
1412 err = mrvl88x2011_led_blink_rate(np, MRVL88X2011_LED_BLKRATE_134MS);
1417 err = mrvl88x2011_act_led(np, MRVL88X2011_LED_CTL_OFF);
1421 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1422 MRVL88X2011_GENERAL_CTL);
1426 err |= MRVL88X2011_ENA_XFPREFCLK;
1428 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1429 MRVL88X2011_GENERAL_CTL, err);
1433 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1434 MRVL88X2011_PMA_PMD_CTL_1);
1438 if (np->link_config.loopback_mode == LOOPBACK_MAC)
1439 err |= MRVL88X2011_LOOPBACK;
1441 err &= ~MRVL88X2011_LOOPBACK;
1443 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1444 MRVL88X2011_PMA_PMD_CTL_1, err);
1449 return mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1450 MRVL88X2011_10G_PMD_TX_DIS, MRVL88X2011_ENA_PMDTX);
1454 static int xcvr_diag_bcm870x(struct niu *np)
1456 u16 analog_stat0, tx_alarm_status;
1460 err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
1464 pr_info("Port %u PMA_PMD(MII_STAT1000) [%04x]\n", np->port, err);
1466 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, 0x20);
1469 pr_info("Port %u USER_DEV3(0x20) [%04x]\n", np->port, err);
1471 err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
1475 pr_info("Port %u PHYXS(MII_NWAYTEST) [%04x]\n", np->port, err);
1478 /* XXX dig this out it might not be so useful XXX */
1479 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1480 BCM8704_USER_ANALOG_STATUS0);
1483 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1484 BCM8704_USER_ANALOG_STATUS0);
1489 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1490 BCM8704_USER_TX_ALARM_STATUS);
1493 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1494 BCM8704_USER_TX_ALARM_STATUS);
1497 tx_alarm_status = err;
1499 if (analog_stat0 != 0x03fc) {
1500 if ((analog_stat0 == 0x43bc) && (tx_alarm_status != 0)) {
1501 pr_info("Port %u cable not connected or bad cable\n",
1503 } else if (analog_stat0 == 0x639c) {
1504 pr_info("Port %u optical module is bad or missing\n",
1512 static int xcvr_10g_set_lb_bcm870x(struct niu *np)
1514 struct niu_link_config *lp = &np->link_config;
1517 err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
1522 err &= ~BMCR_LOOPBACK;
1524 if (lp->loopback_mode == LOOPBACK_MAC)
1525 err |= BMCR_LOOPBACK;
1527 err = mdio_write(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
1535 static int xcvr_init_10g_bcm8706(struct niu *np)
1540 if ((np->flags & NIU_FLAGS_HOTPLUG_PHY) &&
1541 (np->flags & NIU_FLAGS_HOTPLUG_PHY_PRESENT) == 0)
1544 val = nr64_mac(XMAC_CONFIG);
1545 val &= ~XMAC_CONFIG_LED_POLARITY;
1546 val |= XMAC_CONFIG_FORCE_LED_ON;
1547 nw64_mac(XMAC_CONFIG, val);
1549 val = nr64(MIF_CONFIG);
1550 val |= MIF_CONFIG_INDIRECT_MODE;
1551 nw64(MIF_CONFIG, val);
1553 err = bcm8704_reset(np);
1557 err = xcvr_10g_set_lb_bcm870x(np);
1561 err = bcm8706_init_user_dev3(np);
1565 err = xcvr_diag_bcm870x(np);
1572 static int xcvr_init_10g_bcm8704(struct niu *np)
1576 err = bcm8704_reset(np);
1580 err = bcm8704_init_user_dev3(np);
1584 err = xcvr_10g_set_lb_bcm870x(np);
1588 err = xcvr_diag_bcm870x(np);
1595 static int xcvr_init_10g(struct niu *np)
1600 val = nr64_mac(XMAC_CONFIG);
1601 val &= ~XMAC_CONFIG_LED_POLARITY;
1602 val |= XMAC_CONFIG_FORCE_LED_ON;
1603 nw64_mac(XMAC_CONFIG, val);
1605 /* XXX shared resource, lock parent XXX */
1606 val = nr64(MIF_CONFIG);
1607 val |= MIF_CONFIG_INDIRECT_MODE;
1608 nw64(MIF_CONFIG, val);
1610 phy_id = phy_decode(np->parent->port_phy, np->port);
1611 phy_id = np->parent->phy_probe_info.phy_id[phy_id][np->port];
1613 /* handle different phy types */
1614 switch (phy_id & NIU_PHY_ID_MASK) {
1615 case NIU_PHY_ID_MRVL88X2011:
1616 err = xcvr_init_10g_mrvl88x2011(np);
1619 default: /* bcom 8704 */
1620 err = xcvr_init_10g_bcm8704(np);
1627 static int mii_reset(struct niu *np)
1631 err = mii_write(np, np->phy_addr, MII_BMCR, BMCR_RESET);
1636 while (--limit >= 0) {
1638 err = mii_read(np, np->phy_addr, MII_BMCR);
1641 if (!(err & BMCR_RESET))
1645 netdev_err(np->dev, "Port %u MII would not reset, bmcr[%04x]\n",
1653 static int xcvr_init_1g_rgmii(struct niu *np)
1657 u16 bmcr, bmsr, estat;
1659 val = nr64(MIF_CONFIG);
1660 val &= ~MIF_CONFIG_INDIRECT_MODE;
1661 nw64(MIF_CONFIG, val);
1663 err = mii_reset(np);
1667 err = mii_read(np, np->phy_addr, MII_BMSR);
1673 if (bmsr & BMSR_ESTATEN) {
1674 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1681 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1685 if (bmsr & BMSR_ESTATEN) {
1688 if (estat & ESTATUS_1000_TFULL)
1689 ctrl1000 |= ADVERTISE_1000FULL;
1690 err = mii_write(np, np->phy_addr, MII_CTRL1000, ctrl1000);
1695 bmcr = (BMCR_SPEED1000 | BMCR_FULLDPLX);
1697 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1701 err = mii_read(np, np->phy_addr, MII_BMCR);
1704 bmcr = mii_read(np, np->phy_addr, MII_BMCR);
1706 err = mii_read(np, np->phy_addr, MII_BMSR);
1713 static int mii_init_common(struct niu *np)
1715 struct niu_link_config *lp = &np->link_config;
1716 u16 bmcr, bmsr, adv, estat;
1719 err = mii_reset(np);
1723 err = mii_read(np, np->phy_addr, MII_BMSR);
1729 if (bmsr & BMSR_ESTATEN) {
1730 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1737 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1741 if (lp->loopback_mode == LOOPBACK_MAC) {
1742 bmcr |= BMCR_LOOPBACK;
1743 if (lp->active_speed == SPEED_1000)
1744 bmcr |= BMCR_SPEED1000;
1745 if (lp->active_duplex == DUPLEX_FULL)
1746 bmcr |= BMCR_FULLDPLX;
1749 if (lp->loopback_mode == LOOPBACK_PHY) {
1752 aux = (BCM5464R_AUX_CTL_EXT_LB |
1753 BCM5464R_AUX_CTL_WRITE_1);
1754 err = mii_write(np, np->phy_addr, BCM5464R_AUX_CTL, aux);
1762 adv = ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP;
1763 if ((bmsr & BMSR_10HALF) &&
1764 (lp->advertising & ADVERTISED_10baseT_Half))
1765 adv |= ADVERTISE_10HALF;
1766 if ((bmsr & BMSR_10FULL) &&
1767 (lp->advertising & ADVERTISED_10baseT_Full))
1768 adv |= ADVERTISE_10FULL;
1769 if ((bmsr & BMSR_100HALF) &&
1770 (lp->advertising & ADVERTISED_100baseT_Half))
1771 adv |= ADVERTISE_100HALF;
1772 if ((bmsr & BMSR_100FULL) &&
1773 (lp->advertising & ADVERTISED_100baseT_Full))
1774 adv |= ADVERTISE_100FULL;
1775 err = mii_write(np, np->phy_addr, MII_ADVERTISE, adv);
1779 if (likely(bmsr & BMSR_ESTATEN)) {
1781 if ((estat & ESTATUS_1000_THALF) &&
1782 (lp->advertising & ADVERTISED_1000baseT_Half))
1783 ctrl1000 |= ADVERTISE_1000HALF;
1784 if ((estat & ESTATUS_1000_TFULL) &&
1785 (lp->advertising & ADVERTISED_1000baseT_Full))
1786 ctrl1000 |= ADVERTISE_1000FULL;
1787 err = mii_write(np, np->phy_addr,
1788 MII_CTRL1000, ctrl1000);
1793 bmcr |= (BMCR_ANENABLE | BMCR_ANRESTART);
1798 if (lp->duplex == DUPLEX_FULL) {
1799 bmcr |= BMCR_FULLDPLX;
1801 } else if (lp->duplex == DUPLEX_HALF)
1806 if (lp->speed == SPEED_1000) {
1807 /* if X-full requested while not supported, or
1808 X-half requested while not supported... */
1809 if ((fulldpx && !(estat & ESTATUS_1000_TFULL)) ||
1810 (!fulldpx && !(estat & ESTATUS_1000_THALF)))
1812 bmcr |= BMCR_SPEED1000;
1813 } else if (lp->speed == SPEED_100) {
1814 if ((fulldpx && !(bmsr & BMSR_100FULL)) ||
1815 (!fulldpx && !(bmsr & BMSR_100HALF)))
1817 bmcr |= BMCR_SPEED100;
1818 } else if (lp->speed == SPEED_10) {
1819 if ((fulldpx && !(bmsr & BMSR_10FULL)) ||
1820 (!fulldpx && !(bmsr & BMSR_10HALF)))
1826 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1831 err = mii_read(np, np->phy_addr, MII_BMCR);
1836 err = mii_read(np, np->phy_addr, MII_BMSR);
1841 pr_info("Port %u after MII init bmcr[%04x] bmsr[%04x]\n",
1842 np->port, bmcr, bmsr);
1848 static int xcvr_init_1g(struct niu *np)
1852 /* XXX shared resource, lock parent XXX */
1853 val = nr64(MIF_CONFIG);
1854 val &= ~MIF_CONFIG_INDIRECT_MODE;
1855 nw64(MIF_CONFIG, val);
1857 return mii_init_common(np);
1860 static int niu_xcvr_init(struct niu *np)
1862 const struct niu_phy_ops *ops = np->phy_ops;
1867 err = ops->xcvr_init(np);
1872 static int niu_serdes_init(struct niu *np)
1874 const struct niu_phy_ops *ops = np->phy_ops;
1878 if (ops->serdes_init)
1879 err = ops->serdes_init(np);
1884 static void niu_init_xif(struct niu *);
1885 static void niu_handle_led(struct niu *, int status);
1887 static int niu_link_status_common(struct niu *np, int link_up)
1889 struct niu_link_config *lp = &np->link_config;
1890 struct net_device *dev = np->dev;
1891 unsigned long flags;
1893 if (!netif_carrier_ok(dev) && link_up) {
1894 netif_info(np, link, dev, "Link is up at %s, %s duplex\n",
1895 lp->active_speed == SPEED_10000 ? "10Gb/sec" :
1896 lp->active_speed == SPEED_1000 ? "1Gb/sec" :
1897 lp->active_speed == SPEED_100 ? "100Mbit/sec" :
1899 lp->active_duplex == DUPLEX_FULL ? "full" : "half");
1901 spin_lock_irqsave(&np->lock, flags);
1903 niu_handle_led(np, 1);
1904 spin_unlock_irqrestore(&np->lock, flags);
1906 netif_carrier_on(dev);
1907 } else if (netif_carrier_ok(dev) && !link_up) {
1908 netif_warn(np, link, dev, "Link is down\n");
1909 spin_lock_irqsave(&np->lock, flags);
1910 niu_handle_led(np, 0);
1911 spin_unlock_irqrestore(&np->lock, flags);
1912 netif_carrier_off(dev);
1918 static int link_status_10g_mrvl(struct niu *np, int *link_up_p)
1920 int err, link_up, pma_status, pcs_status;
1924 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1925 MRVL88X2011_10G_PMD_STATUS_2);
1929 /* Check PMA/PMD Register: 1.0001.2 == 1 */
1930 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1931 MRVL88X2011_PMA_PMD_STATUS_1);
1935 pma_status = ((err & MRVL88X2011_LNK_STATUS_OK) ? 1 : 0);
1937 /* Check PMC Register : 3.0001.2 == 1: read twice */
1938 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1939 MRVL88X2011_PMA_PMD_STATUS_1);
1943 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1944 MRVL88X2011_PMA_PMD_STATUS_1);
1948 pcs_status = ((err & MRVL88X2011_LNK_STATUS_OK) ? 1 : 0);
1950 /* Check XGXS Register : 4.0018.[0-3,12] */
1951 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV4_ADDR,
1952 MRVL88X2011_10G_XGXS_LANE_STAT);
1956 if (err == (PHYXS_XGXS_LANE_STAT_ALINGED | PHYXS_XGXS_LANE_STAT_LANE3 |
1957 PHYXS_XGXS_LANE_STAT_LANE2 | PHYXS_XGXS_LANE_STAT_LANE1 |
1958 PHYXS_XGXS_LANE_STAT_LANE0 | PHYXS_XGXS_LANE_STAT_MAGIC |
1960 link_up = (pma_status && pcs_status) ? 1 : 0;
1962 np->link_config.active_speed = SPEED_10000;
1963 np->link_config.active_duplex = DUPLEX_FULL;
1966 mrvl88x2011_act_led(np, (link_up ?
1967 MRVL88X2011_LED_CTL_PCS_ACT :
1968 MRVL88X2011_LED_CTL_OFF));
1970 *link_up_p = link_up;
1974 static int link_status_10g_bcm8706(struct niu *np, int *link_up_p)
1979 err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
1980 BCM8704_PMD_RCV_SIGDET);
1981 if (err < 0 || err == 0xffff)
1983 if (!(err & PMD_RCV_SIGDET_GLOBAL)) {
1988 err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
1989 BCM8704_PCS_10G_R_STATUS);
1993 if (!(err & PCS_10G_R_STATUS_BLK_LOCK)) {
1998 err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
1999 BCM8704_PHYXS_XGXS_LANE_STAT);
2002 if (err != (PHYXS_XGXS_LANE_STAT_ALINGED |
2003 PHYXS_XGXS_LANE_STAT_MAGIC |
2004 PHYXS_XGXS_LANE_STAT_PATTEST |
2005 PHYXS_XGXS_LANE_STAT_LANE3 |
2006 PHYXS_XGXS_LANE_STAT_LANE2 |
2007 PHYXS_XGXS_LANE_STAT_LANE1 |
2008 PHYXS_XGXS_LANE_STAT_LANE0)) {
2010 np->link_config.active_speed = SPEED_INVALID;
2011 np->link_config.active_duplex = DUPLEX_INVALID;
2016 np->link_config.active_speed = SPEED_10000;
2017 np->link_config.active_duplex = DUPLEX_FULL;
2021 *link_up_p = link_up;
2025 static int link_status_10g_bcom(struct niu *np, int *link_up_p)
2031 err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
2032 BCM8704_PMD_RCV_SIGDET);
2035 if (!(err & PMD_RCV_SIGDET_GLOBAL)) {
2040 err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
2041 BCM8704_PCS_10G_R_STATUS);
2044 if (!(err & PCS_10G_R_STATUS_BLK_LOCK)) {
2049 err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
2050 BCM8704_PHYXS_XGXS_LANE_STAT);
2054 if (err != (PHYXS_XGXS_LANE_STAT_ALINGED |
2055 PHYXS_XGXS_LANE_STAT_MAGIC |
2056 PHYXS_XGXS_LANE_STAT_LANE3 |
2057 PHYXS_XGXS_LANE_STAT_LANE2 |
2058 PHYXS_XGXS_LANE_STAT_LANE1 |
2059 PHYXS_XGXS_LANE_STAT_LANE0)) {
2065 np->link_config.active_speed = SPEED_10000;
2066 np->link_config.active_duplex = DUPLEX_FULL;
2070 *link_up_p = link_up;
2074 static int link_status_10g(struct niu *np, int *link_up_p)
2076 unsigned long flags;
2079 spin_lock_irqsave(&np->lock, flags);
2081 if (np->link_config.loopback_mode == LOOPBACK_DISABLED) {
2084 phy_id = phy_decode(np->parent->port_phy, np->port);
2085 phy_id = np->parent->phy_probe_info.phy_id[phy_id][np->port];
2087 /* handle different phy types */
2088 switch (phy_id & NIU_PHY_ID_MASK) {
2089 case NIU_PHY_ID_MRVL88X2011:
2090 err = link_status_10g_mrvl(np, link_up_p);
2093 default: /* bcom 8704 */
2094 err = link_status_10g_bcom(np, link_up_p);
2099 spin_unlock_irqrestore(&np->lock, flags);
2104 static int niu_10g_phy_present(struct niu *np)
2108 sig = nr64(ESR_INT_SIGNALS);
2111 mask = ESR_INT_SIGNALS_P0_BITS;
2112 val = (ESR_INT_SRDY0_P0 |
2115 ESR_INT_XDP_P0_CH3 |
2116 ESR_INT_XDP_P0_CH2 |
2117 ESR_INT_XDP_P0_CH1 |
2118 ESR_INT_XDP_P0_CH0);
2122 mask = ESR_INT_SIGNALS_P1_BITS;
2123 val = (ESR_INT_SRDY0_P1 |
2126 ESR_INT_XDP_P1_CH3 |
2127 ESR_INT_XDP_P1_CH2 |
2128 ESR_INT_XDP_P1_CH1 |
2129 ESR_INT_XDP_P1_CH0);
2136 if ((sig & mask) != val)
2141 static int link_status_10g_hotplug(struct niu *np, int *link_up_p)
2143 unsigned long flags;
2146 int phy_present_prev;
2148 spin_lock_irqsave(&np->lock, flags);
2150 if (np->link_config.loopback_mode == LOOPBACK_DISABLED) {
2151 phy_present_prev = (np->flags & NIU_FLAGS_HOTPLUG_PHY_PRESENT) ?
2153 phy_present = niu_10g_phy_present(np);
2154 if (phy_present != phy_present_prev) {
2157 /* A NEM was just plugged in */
2158 np->flags |= NIU_FLAGS_HOTPLUG_PHY_PRESENT;
2159 if (np->phy_ops->xcvr_init)
2160 err = np->phy_ops->xcvr_init(np);
2162 err = mdio_read(np, np->phy_addr,
2163 BCM8704_PHYXS_DEV_ADDR, MII_BMCR);
2164 if (err == 0xffff) {
2165 /* No mdio, back-to-back XAUI */
2169 np->flags &= ~NIU_FLAGS_HOTPLUG_PHY_PRESENT;
2172 np->flags &= ~NIU_FLAGS_HOTPLUG_PHY_PRESENT;
2174 netif_warn(np, link, np->dev,
2175 "Hotplug PHY Removed\n");
2179 if (np->flags & NIU_FLAGS_HOTPLUG_PHY_PRESENT) {
2180 err = link_status_10g_bcm8706(np, link_up_p);
2181 if (err == 0xffff) {
2182 /* No mdio, back-to-back XAUI: it is C10NEM */
2184 np->link_config.active_speed = SPEED_10000;
2185 np->link_config.active_duplex = DUPLEX_FULL;
2190 spin_unlock_irqrestore(&np->lock, flags);
2195 static int niu_link_status(struct niu *np, int *link_up_p)
2197 const struct niu_phy_ops *ops = np->phy_ops;
2201 if (ops->link_status)
2202 err = ops->link_status(np, link_up_p);
2207 static void niu_timer(struct timer_list *t)
2209 struct niu *np = from_timer(np, t, timer);
2213 err = niu_link_status(np, &link_up);
2215 niu_link_status_common(np, link_up);
2217 if (netif_carrier_ok(np->dev))
2221 np->timer.expires = jiffies + off;
2223 add_timer(&np->timer);
2226 static const struct niu_phy_ops phy_ops_10g_serdes = {
2227 .serdes_init = serdes_init_10g_serdes,
2228 .link_status = link_status_10g_serdes,
2231 static const struct niu_phy_ops phy_ops_10g_serdes_niu = {
2232 .serdes_init = serdes_init_niu_10g_serdes,
2233 .link_status = link_status_10g_serdes,
2236 static const struct niu_phy_ops phy_ops_1g_serdes_niu = {
2237 .serdes_init = serdes_init_niu_1g_serdes,
2238 .link_status = link_status_1g_serdes,
2241 static const struct niu_phy_ops phy_ops_1g_rgmii = {
2242 .xcvr_init = xcvr_init_1g_rgmii,
2243 .link_status = link_status_1g_rgmii,
2246 static const struct niu_phy_ops phy_ops_10g_fiber_niu = {
2247 .serdes_init = serdes_init_niu_10g_fiber,
2248 .xcvr_init = xcvr_init_10g,
2249 .link_status = link_status_10g,
2252 static const struct niu_phy_ops phy_ops_10g_fiber = {
2253 .serdes_init = serdes_init_10g,
2254 .xcvr_init = xcvr_init_10g,
2255 .link_status = link_status_10g,
2258 static const struct niu_phy_ops phy_ops_10g_fiber_hotplug = {
2259 .serdes_init = serdes_init_10g,
2260 .xcvr_init = xcvr_init_10g_bcm8706,
2261 .link_status = link_status_10g_hotplug,
2264 static const struct niu_phy_ops phy_ops_niu_10g_hotplug = {
2265 .serdes_init = serdes_init_niu_10g_fiber,
2266 .xcvr_init = xcvr_init_10g_bcm8706,
2267 .link_status = link_status_10g_hotplug,
2270 static const struct niu_phy_ops phy_ops_10g_copper = {
2271 .serdes_init = serdes_init_10g,
2272 .link_status = link_status_10g, /* XXX */
2275 static const struct niu_phy_ops phy_ops_1g_fiber = {
2276 .serdes_init = serdes_init_1g,
2277 .xcvr_init = xcvr_init_1g,
2278 .link_status = link_status_1g,
2281 static const struct niu_phy_ops phy_ops_1g_copper = {
2282 .xcvr_init = xcvr_init_1g,
2283 .link_status = link_status_1g,
2286 struct niu_phy_template {
2287 const struct niu_phy_ops *ops;
2291 static const struct niu_phy_template phy_template_niu_10g_fiber = {
2292 .ops = &phy_ops_10g_fiber_niu,
2293 .phy_addr_base = 16,
2296 static const struct niu_phy_template phy_template_niu_10g_serdes = {
2297 .ops = &phy_ops_10g_serdes_niu,
2301 static const struct niu_phy_template phy_template_niu_1g_serdes = {
2302 .ops = &phy_ops_1g_serdes_niu,
2306 static const struct niu_phy_template phy_template_10g_fiber = {
2307 .ops = &phy_ops_10g_fiber,
2311 static const struct niu_phy_template phy_template_10g_fiber_hotplug = {
2312 .ops = &phy_ops_10g_fiber_hotplug,
2316 static const struct niu_phy_template phy_template_niu_10g_hotplug = {
2317 .ops = &phy_ops_niu_10g_hotplug,
2321 static const struct niu_phy_template phy_template_10g_copper = {
2322 .ops = &phy_ops_10g_copper,
2323 .phy_addr_base = 10,
2326 static const struct niu_phy_template phy_template_1g_fiber = {
2327 .ops = &phy_ops_1g_fiber,
2331 static const struct niu_phy_template phy_template_1g_copper = {
2332 .ops = &phy_ops_1g_copper,
2336 static const struct niu_phy_template phy_template_1g_rgmii = {
2337 .ops = &phy_ops_1g_rgmii,
2341 static const struct niu_phy_template phy_template_10g_serdes = {
2342 .ops = &phy_ops_10g_serdes,
2346 static int niu_atca_port_num[4] = {
2350 static int serdes_init_10g_serdes(struct niu *np)
2352 struct niu_link_config *lp = &np->link_config;
2353 unsigned long ctrl_reg, test_cfg_reg, pll_cfg, i;
2354 u64 ctrl_val, test_cfg_val, sig, mask, val;
2358 ctrl_reg = ENET_SERDES_0_CTRL_CFG;
2359 test_cfg_reg = ENET_SERDES_0_TEST_CFG;
2360 pll_cfg = ENET_SERDES_0_PLL_CFG;
2363 ctrl_reg = ENET_SERDES_1_CTRL_CFG;
2364 test_cfg_reg = ENET_SERDES_1_TEST_CFG;
2365 pll_cfg = ENET_SERDES_1_PLL_CFG;
2371 ctrl_val = (ENET_SERDES_CTRL_SDET_0 |
2372 ENET_SERDES_CTRL_SDET_1 |
2373 ENET_SERDES_CTRL_SDET_2 |
2374 ENET_SERDES_CTRL_SDET_3 |
2375 (0x5 << ENET_SERDES_CTRL_EMPH_0_SHIFT) |
2376 (0x5 << ENET_SERDES_CTRL_EMPH_1_SHIFT) |
2377 (0x5 << ENET_SERDES_CTRL_EMPH_2_SHIFT) |
2378 (0x5 << ENET_SERDES_CTRL_EMPH_3_SHIFT) |
2379 (0x1 << ENET_SERDES_CTRL_LADJ_0_SHIFT) |
2380 (0x1 << ENET_SERDES_CTRL_LADJ_1_SHIFT) |
2381 (0x1 << ENET_SERDES_CTRL_LADJ_2_SHIFT) |
2382 (0x1 << ENET_SERDES_CTRL_LADJ_3_SHIFT));
2385 if (lp->loopback_mode == LOOPBACK_PHY) {
2386 test_cfg_val |= ((ENET_TEST_MD_PAD_LOOPBACK <<
2387 ENET_SERDES_TEST_MD_0_SHIFT) |
2388 (ENET_TEST_MD_PAD_LOOPBACK <<
2389 ENET_SERDES_TEST_MD_1_SHIFT) |
2390 (ENET_TEST_MD_PAD_LOOPBACK <<
2391 ENET_SERDES_TEST_MD_2_SHIFT) |
2392 (ENET_TEST_MD_PAD_LOOPBACK <<
2393 ENET_SERDES_TEST_MD_3_SHIFT));
2397 nw64(pll_cfg, ENET_SERDES_PLL_FBDIV2);
2398 nw64(ctrl_reg, ctrl_val);
2399 nw64(test_cfg_reg, test_cfg_val);
2401 /* Initialize all 4 lanes of the SERDES. */
2402 for (i = 0; i < 4; i++) {
2403 u32 rxtx_ctrl, glue0;
2406 err = esr_read_rxtx_ctrl(np, i, &rxtx_ctrl);
2409 err = esr_read_glue0(np, i, &glue0);
2413 rxtx_ctrl &= ~(ESR_RXTX_CTRL_VMUXLO);
2414 rxtx_ctrl |= (ESR_RXTX_CTRL_ENSTRETCH |
2415 (2 << ESR_RXTX_CTRL_VMUXLO_SHIFT));
2417 glue0 &= ~(ESR_GLUE_CTRL0_SRATE |
2418 ESR_GLUE_CTRL0_THCNT |
2419 ESR_GLUE_CTRL0_BLTIME);
2420 glue0 |= (ESR_GLUE_CTRL0_RXLOSENAB |
2421 (0xf << ESR_GLUE_CTRL0_SRATE_SHIFT) |
2422 (0xff << ESR_GLUE_CTRL0_THCNT_SHIFT) |
2423 (BLTIME_300_CYCLES <<
2424 ESR_GLUE_CTRL0_BLTIME_SHIFT));
2426 err = esr_write_rxtx_ctrl(np, i, rxtx_ctrl);
2429 err = esr_write_glue0(np, i, glue0);
2435 sig = nr64(ESR_INT_SIGNALS);
2438 mask = ESR_INT_SIGNALS_P0_BITS;
2439 val = (ESR_INT_SRDY0_P0 |
2442 ESR_INT_XDP_P0_CH3 |
2443 ESR_INT_XDP_P0_CH2 |
2444 ESR_INT_XDP_P0_CH1 |
2445 ESR_INT_XDP_P0_CH0);
2449 mask = ESR_INT_SIGNALS_P1_BITS;
2450 val = (ESR_INT_SRDY0_P1 |
2453 ESR_INT_XDP_P1_CH3 |
2454 ESR_INT_XDP_P1_CH2 |
2455 ESR_INT_XDP_P1_CH1 |
2456 ESR_INT_XDP_P1_CH0);
2463 if ((sig & mask) != val) {
2465 err = serdes_init_1g_serdes(np);
2467 np->flags &= ~NIU_FLAGS_10G;
2468 np->mac_xcvr = MAC_XCVR_PCS;
2470 netdev_err(np->dev, "Port %u 10G/1G SERDES Link Failed\n",
2479 static int niu_determine_phy_disposition(struct niu *np)
2481 struct niu_parent *parent = np->parent;
2482 u8 plat_type = parent->plat_type;
2483 const struct niu_phy_template *tp;
2484 u32 phy_addr_off = 0;
2486 if (plat_type == PLAT_TYPE_NIU) {
2490 NIU_FLAGS_XCVR_SERDES)) {
2491 case NIU_FLAGS_10G | NIU_FLAGS_XCVR_SERDES:
2493 tp = &phy_template_niu_10g_serdes;
2495 case NIU_FLAGS_XCVR_SERDES:
2497 tp = &phy_template_niu_1g_serdes;
2499 case NIU_FLAGS_10G | NIU_FLAGS_FIBER:
2502 if (np->flags & NIU_FLAGS_HOTPLUG_PHY) {
2503 tp = &phy_template_niu_10g_hotplug;
2509 tp = &phy_template_niu_10g_fiber;
2510 phy_addr_off += np->port;
2518 NIU_FLAGS_XCVR_SERDES)) {
2521 tp = &phy_template_1g_copper;
2522 if (plat_type == PLAT_TYPE_VF_P0)
2524 else if (plat_type == PLAT_TYPE_VF_P1)
2527 phy_addr_off += (np->port ^ 0x3);
2532 tp = &phy_template_10g_copper;
2535 case NIU_FLAGS_FIBER:
2537 tp = &phy_template_1g_fiber;
2540 case NIU_FLAGS_10G | NIU_FLAGS_FIBER:
2542 tp = &phy_template_10g_fiber;
2543 if (plat_type == PLAT_TYPE_VF_P0 ||
2544 plat_type == PLAT_TYPE_VF_P1)
2546 phy_addr_off += np->port;
2547 if (np->flags & NIU_FLAGS_HOTPLUG_PHY) {
2548 tp = &phy_template_10g_fiber_hotplug;
2556 case NIU_FLAGS_10G | NIU_FLAGS_XCVR_SERDES:
2557 case NIU_FLAGS_XCVR_SERDES | NIU_FLAGS_FIBER:
2558 case NIU_FLAGS_XCVR_SERDES:
2562 tp = &phy_template_10g_serdes;
2566 tp = &phy_template_1g_rgmii;
2571 phy_addr_off = niu_atca_port_num[np->port];
2579 np->phy_ops = tp->ops;
2580 np->phy_addr = tp->phy_addr_base + phy_addr_off;
2585 static int niu_init_link(struct niu *np)
2587 struct niu_parent *parent = np->parent;
2590 if (parent->plat_type == PLAT_TYPE_NIU) {
2591 err = niu_xcvr_init(np);
2596 err = niu_serdes_init(np);
2597 if (err && !(np->flags & NIU_FLAGS_HOTPLUG_PHY))
2600 err = niu_xcvr_init(np);
2601 if (!err || (np->flags & NIU_FLAGS_HOTPLUG_PHY))
2602 niu_link_status(np, &ignore);
2606 static void niu_set_primary_mac(struct niu *np, unsigned char *addr)
2608 u16 reg0 = addr[4] << 8 | addr[5];
2609 u16 reg1 = addr[2] << 8 | addr[3];
2610 u16 reg2 = addr[0] << 8 | addr[1];
2612 if (np->flags & NIU_FLAGS_XMAC) {
2613 nw64_mac(XMAC_ADDR0, reg0);
2614 nw64_mac(XMAC_ADDR1, reg1);
2615 nw64_mac(XMAC_ADDR2, reg2);
2617 nw64_mac(BMAC_ADDR0, reg0);
2618 nw64_mac(BMAC_ADDR1, reg1);
2619 nw64_mac(BMAC_ADDR2, reg2);
2623 static int niu_num_alt_addr(struct niu *np)
2625 if (np->flags & NIU_FLAGS_XMAC)
2626 return XMAC_NUM_ALT_ADDR;
2628 return BMAC_NUM_ALT_ADDR;
2631 static int niu_set_alt_mac(struct niu *np, int index, unsigned char *addr)
2633 u16 reg0 = addr[4] << 8 | addr[5];
2634 u16 reg1 = addr[2] << 8 | addr[3];
2635 u16 reg2 = addr[0] << 8 | addr[1];
2637 if (index >= niu_num_alt_addr(np))
2640 if (np->flags & NIU_FLAGS_XMAC) {
2641 nw64_mac(XMAC_ALT_ADDR0(index), reg0);
2642 nw64_mac(XMAC_ALT_ADDR1(index), reg1);
2643 nw64_mac(XMAC_ALT_ADDR2(index), reg2);
2645 nw64_mac(BMAC_ALT_ADDR0(index), reg0);
2646 nw64_mac(BMAC_ALT_ADDR1(index), reg1);
2647 nw64_mac(BMAC_ALT_ADDR2(index), reg2);
2653 static int niu_enable_alt_mac(struct niu *np, int index, int on)
2658 if (index >= niu_num_alt_addr(np))
2661 if (np->flags & NIU_FLAGS_XMAC) {
2662 reg = XMAC_ADDR_CMPEN;
2665 reg = BMAC_ADDR_CMPEN;
2666 mask = 1 << (index + 1);
2669 val = nr64_mac(reg);
2679 static void __set_rdc_table_num_hw(struct niu *np, unsigned long reg,
2680 int num, int mac_pref)
2682 u64 val = nr64_mac(reg);
2683 val &= ~(HOST_INFO_MACRDCTBLN | HOST_INFO_MPR);
2686 val |= HOST_INFO_MPR;
2690 static int __set_rdc_table_num(struct niu *np,
2691 int xmac_index, int bmac_index,
2692 int rdc_table_num, int mac_pref)
2696 if (rdc_table_num & ~HOST_INFO_MACRDCTBLN)
2698 if (np->flags & NIU_FLAGS_XMAC)
2699 reg = XMAC_HOST_INFO(xmac_index);
2701 reg = BMAC_HOST_INFO(bmac_index);
2702 __set_rdc_table_num_hw(np, reg, rdc_table_num, mac_pref);
2706 static int niu_set_primary_mac_rdc_table(struct niu *np, int table_num,
2709 return __set_rdc_table_num(np, 17, 0, table_num, mac_pref);
2712 static int niu_set_multicast_mac_rdc_table(struct niu *np, int table_num,
2715 return __set_rdc_table_num(np, 16, 8, table_num, mac_pref);
2718 static int niu_set_alt_mac_rdc_table(struct niu *np, int idx,
2719 int table_num, int mac_pref)
2721 if (idx >= niu_num_alt_addr(np))
2723 return __set_rdc_table_num(np, idx, idx + 1, table_num, mac_pref);
2726 static u64 vlan_entry_set_parity(u64 reg_val)
2731 port01_mask = 0x00ff;
2732 port23_mask = 0xff00;
2734 if (hweight64(reg_val & port01_mask) & 1)
2735 reg_val |= ENET_VLAN_TBL_PARITY0;
2737 reg_val &= ~ENET_VLAN_TBL_PARITY0;
2739 if (hweight64(reg_val & port23_mask) & 1)
2740 reg_val |= ENET_VLAN_TBL_PARITY1;
2742 reg_val &= ~ENET_VLAN_TBL_PARITY1;
2747 static void vlan_tbl_write(struct niu *np, unsigned long index,
2748 int port, int vpr, int rdc_table)
2750 u64 reg_val = nr64(ENET_VLAN_TBL(index));
2752 reg_val &= ~((ENET_VLAN_TBL_VPR |
2753 ENET_VLAN_TBL_VLANRDCTBLN) <<
2754 ENET_VLAN_TBL_SHIFT(port));
2756 reg_val |= (ENET_VLAN_TBL_VPR <<
2757 ENET_VLAN_TBL_SHIFT(port));
2758 reg_val |= (rdc_table << ENET_VLAN_TBL_SHIFT(port));
2760 reg_val = vlan_entry_set_parity(reg_val);
2762 nw64(ENET_VLAN_TBL(index), reg_val);
2765 static void vlan_tbl_clear(struct niu *np)
2769 for (i = 0; i < ENET_VLAN_TBL_NUM_ENTRIES; i++)
2770 nw64(ENET_VLAN_TBL(i), 0);
2773 static int tcam_wait_bit(struct niu *np, u64 bit)
2777 while (--limit > 0) {
2778 if (nr64(TCAM_CTL) & bit)
2788 static int tcam_flush(struct niu *np, int index)
2790 nw64(TCAM_KEY_0, 0x00);
2791 nw64(TCAM_KEY_MASK_0, 0xff);
2792 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_WRITE | index));
2794 return tcam_wait_bit(np, TCAM_CTL_STAT);
2798 static int tcam_read(struct niu *np, int index,
2799 u64 *key, u64 *mask)
2803 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_READ | index));
2804 err = tcam_wait_bit(np, TCAM_CTL_STAT);
2806 key[0] = nr64(TCAM_KEY_0);
2807 key[1] = nr64(TCAM_KEY_1);
2808 key[2] = nr64(TCAM_KEY_2);
2809 key[3] = nr64(TCAM_KEY_3);
2810 mask[0] = nr64(TCAM_KEY_MASK_0);
2811 mask[1] = nr64(TCAM_KEY_MASK_1);
2812 mask[2] = nr64(TCAM_KEY_MASK_2);
2813 mask[3] = nr64(TCAM_KEY_MASK_3);
2819 static int tcam_write(struct niu *np, int index,
2820 u64 *key, u64 *mask)
2822 nw64(TCAM_KEY_0, key[0]);
2823 nw64(TCAM_KEY_1, key[1]);
2824 nw64(TCAM_KEY_2, key[2]);
2825 nw64(TCAM_KEY_3, key[3]);
2826 nw64(TCAM_KEY_MASK_0, mask[0]);
2827 nw64(TCAM_KEY_MASK_1, mask[1]);
2828 nw64(TCAM_KEY_MASK_2, mask[2]);
2829 nw64(TCAM_KEY_MASK_3, mask[3]);
2830 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_WRITE | index));
2832 return tcam_wait_bit(np, TCAM_CTL_STAT);
2836 static int tcam_assoc_read(struct niu *np, int index, u64 *data)
2840 nw64(TCAM_CTL, (TCAM_CTL_RWC_RAM_READ | index));
2841 err = tcam_wait_bit(np, TCAM_CTL_STAT);
2843 *data = nr64(TCAM_KEY_1);
2849 static int tcam_assoc_write(struct niu *np, int index, u64 assoc_data)
2851 nw64(TCAM_KEY_1, assoc_data);
2852 nw64(TCAM_CTL, (TCAM_CTL_RWC_RAM_WRITE | index));
2854 return tcam_wait_bit(np, TCAM_CTL_STAT);
2857 static void tcam_enable(struct niu *np, int on)
2859 u64 val = nr64(FFLP_CFG_1);
2862 val &= ~FFLP_CFG_1_TCAM_DIS;
2864 val |= FFLP_CFG_1_TCAM_DIS;
2865 nw64(FFLP_CFG_1, val);
2868 static void tcam_set_lat_and_ratio(struct niu *np, u64 latency, u64 ratio)
2870 u64 val = nr64(FFLP_CFG_1);
2872 val &= ~(FFLP_CFG_1_FFLPINITDONE |
2874 FFLP_CFG_1_CAMRATIO);
2875 val |= (latency << FFLP_CFG_1_CAMLAT_SHIFT);
2876 val |= (ratio << FFLP_CFG_1_CAMRATIO_SHIFT);
2877 nw64(FFLP_CFG_1, val);
2879 val = nr64(FFLP_CFG_1);
2880 val |= FFLP_CFG_1_FFLPINITDONE;
2881 nw64(FFLP_CFG_1, val);
2884 static int tcam_user_eth_class_enable(struct niu *np, unsigned long class,
2890 if (class < CLASS_CODE_ETHERTYPE1 ||
2891 class > CLASS_CODE_ETHERTYPE2)
2894 reg = L2_CLS(class - CLASS_CODE_ETHERTYPE1);
2906 static int tcam_user_eth_class_set(struct niu *np, unsigned long class,
2912 if (class < CLASS_CODE_ETHERTYPE1 ||
2913 class > CLASS_CODE_ETHERTYPE2 ||
2914 (ether_type & ~(u64)0xffff) != 0)
2917 reg = L2_CLS(class - CLASS_CODE_ETHERTYPE1);
2919 val &= ~L2_CLS_ETYPE;
2920 val |= (ether_type << L2_CLS_ETYPE_SHIFT);
2927 static int tcam_user_ip_class_enable(struct niu *np, unsigned long class,
2933 if (class < CLASS_CODE_USER_PROG1 ||
2934 class > CLASS_CODE_USER_PROG4)
2937 reg = L3_CLS(class - CLASS_CODE_USER_PROG1);
2940 val |= L3_CLS_VALID;
2942 val &= ~L3_CLS_VALID;
2948 static int tcam_user_ip_class_set(struct niu *np, unsigned long class,
2949 int ipv6, u64 protocol_id,
2950 u64 tos_mask, u64 tos_val)
2955 if (class < CLASS_CODE_USER_PROG1 ||
2956 class > CLASS_CODE_USER_PROG4 ||
2957 (protocol_id & ~(u64)0xff) != 0 ||
2958 (tos_mask & ~(u64)0xff) != 0 ||
2959 (tos_val & ~(u64)0xff) != 0)
2962 reg = L3_CLS(class - CLASS_CODE_USER_PROG1);
2964 val &= ~(L3_CLS_IPVER | L3_CLS_PID |
2965 L3_CLS_TOSMASK | L3_CLS_TOS);
2967 val |= L3_CLS_IPVER;
2968 val |= (protocol_id << L3_CLS_PID_SHIFT);
2969 val |= (tos_mask << L3_CLS_TOSMASK_SHIFT);
2970 val |= (tos_val << L3_CLS_TOS_SHIFT);
2976 static int tcam_early_init(struct niu *np)
2982 tcam_set_lat_and_ratio(np,
2983 DEFAULT_TCAM_LATENCY,
2984 DEFAULT_TCAM_ACCESS_RATIO);
2985 for (i = CLASS_CODE_ETHERTYPE1; i <= CLASS_CODE_ETHERTYPE2; i++) {
2986 err = tcam_user_eth_class_enable(np, i, 0);
2990 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_USER_PROG4; i++) {
2991 err = tcam_user_ip_class_enable(np, i, 0);
2999 static int tcam_flush_all(struct niu *np)
3003 for (i = 0; i < np->parent->tcam_num_entries; i++) {
3004 int err = tcam_flush(np, i);
3011 static u64 hash_addr_regval(unsigned long index, unsigned long num_entries)
3013 return (u64)index | (num_entries == 1 ? HASH_TBL_ADDR_AUTOINC : 0);
3017 static int hash_read(struct niu *np, unsigned long partition,
3018 unsigned long index, unsigned long num_entries,
3021 u64 val = hash_addr_regval(index, num_entries);
3024 if (partition >= FCRAM_NUM_PARTITIONS ||
3025 index + num_entries > FCRAM_SIZE)
3028 nw64(HASH_TBL_ADDR(partition), val);
3029 for (i = 0; i < num_entries; i++)
3030 data[i] = nr64(HASH_TBL_DATA(partition));
3036 static int hash_write(struct niu *np, unsigned long partition,
3037 unsigned long index, unsigned long num_entries,
3040 u64 val = hash_addr_regval(index, num_entries);
3043 if (partition >= FCRAM_NUM_PARTITIONS ||
3044 index + (num_entries * 8) > FCRAM_SIZE)
3047 nw64(HASH_TBL_ADDR(partition), val);
3048 for (i = 0; i < num_entries; i++)
3049 nw64(HASH_TBL_DATA(partition), data[i]);
3054 static void fflp_reset(struct niu *np)
3058 nw64(FFLP_CFG_1, FFLP_CFG_1_PIO_FIO_RST);
3060 nw64(FFLP_CFG_1, 0);
3062 val = FFLP_CFG_1_FCRAMOUTDR_NORMAL | FFLP_CFG_1_FFLPINITDONE;
3063 nw64(FFLP_CFG_1, val);
3066 static void fflp_set_timings(struct niu *np)
3068 u64 val = nr64(FFLP_CFG_1);
3070 val &= ~FFLP_CFG_1_FFLPINITDONE;
3071 val |= (DEFAULT_FCRAMRATIO << FFLP_CFG_1_FCRAMRATIO_SHIFT);
3072 nw64(FFLP_CFG_1, val);
3074 val = nr64(FFLP_CFG_1);
3075 val |= FFLP_CFG_1_FFLPINITDONE;
3076 nw64(FFLP_CFG_1, val);
3078 val = nr64(FCRAM_REF_TMR);
3079 val &= ~(FCRAM_REF_TMR_MAX | FCRAM_REF_TMR_MIN);
3080 val |= (DEFAULT_FCRAM_REFRESH_MAX << FCRAM_REF_TMR_MAX_SHIFT);
3081 val |= (DEFAULT_FCRAM_REFRESH_MIN << FCRAM_REF_TMR_MIN_SHIFT);
3082 nw64(FCRAM_REF_TMR, val);
3085 static int fflp_set_partition(struct niu *np, u64 partition,
3086 u64 mask, u64 base, int enable)
3091 if (partition >= FCRAM_NUM_PARTITIONS ||
3092 (mask & ~(u64)0x1f) != 0 ||
3093 (base & ~(u64)0x1f) != 0)
3096 reg = FLW_PRT_SEL(partition);
3099 val &= ~(FLW_PRT_SEL_EXT | FLW_PRT_SEL_MASK | FLW_PRT_SEL_BASE);
3100 val |= (mask << FLW_PRT_SEL_MASK_SHIFT);
3101 val |= (base << FLW_PRT_SEL_BASE_SHIFT);
3103 val |= FLW_PRT_SEL_EXT;
3109 static int fflp_disable_all_partitions(struct niu *np)
3113 for (i = 0; i < FCRAM_NUM_PARTITIONS; i++) {
3114 int err = fflp_set_partition(np, 0, 0, 0, 0);
3121 static void fflp_llcsnap_enable(struct niu *np, int on)
3123 u64 val = nr64(FFLP_CFG_1);
3126 val |= FFLP_CFG_1_LLCSNAP;
3128 val &= ~FFLP_CFG_1_LLCSNAP;
3129 nw64(FFLP_CFG_1, val);
3132 static void fflp_errors_enable(struct niu *np, int on)
3134 u64 val = nr64(FFLP_CFG_1);
3137 val &= ~FFLP_CFG_1_ERRORDIS;
3139 val |= FFLP_CFG_1_ERRORDIS;
3140 nw64(FFLP_CFG_1, val);
3143 static int fflp_hash_clear(struct niu *np)
3145 struct fcram_hash_ipv4 ent;
3148 /* IPV4 hash entry with valid bit clear, rest is don't care. */
3149 memset(&ent, 0, sizeof(ent));
3150 ent.header = HASH_HEADER_EXT;
3152 for (i = 0; i < FCRAM_SIZE; i += sizeof(ent)) {
3153 int err = hash_write(np, 0, i, 1, (u64 *) &ent);
3160 static int fflp_early_init(struct niu *np)
3162 struct niu_parent *parent;
3163 unsigned long flags;
3166 niu_lock_parent(np, flags);
3168 parent = np->parent;
3170 if (!(parent->flags & PARENT_FLGS_CLS_HWINIT)) {
3171 if (np->parent->plat_type != PLAT_TYPE_NIU) {
3173 fflp_set_timings(np);
3174 err = fflp_disable_all_partitions(np);
3176 netif_printk(np, probe, KERN_DEBUG, np->dev,
3177 "fflp_disable_all_partitions failed, err=%d\n",
3183 err = tcam_early_init(np);
3185 netif_printk(np, probe, KERN_DEBUG, np->dev,
3186 "tcam_early_init failed, err=%d\n", err);
3189 fflp_llcsnap_enable(np, 1);
3190 fflp_errors_enable(np, 0);
3194 err = tcam_flush_all(np);
3196 netif_printk(np, probe, KERN_DEBUG, np->dev,
3197 "tcam_flush_all failed, err=%d\n", err);
3200 if (np->parent->plat_type != PLAT_TYPE_NIU) {
3201 err = fflp_hash_clear(np);
3203 netif_printk(np, probe, KERN_DEBUG, np->dev,
3204 "fflp_hash_clear failed, err=%d\n",
3212 parent->flags |= PARENT_FLGS_CLS_HWINIT;
3215 niu_unlock_parent(np, flags);
3219 static int niu_set_flow_key(struct niu *np, unsigned long class_code, u64 key)
3221 if (class_code < CLASS_CODE_USER_PROG1 ||
3222 class_code > CLASS_CODE_SCTP_IPV6)
3225 nw64(FLOW_KEY(class_code - CLASS_CODE_USER_PROG1), key);
3229 static int niu_set_tcam_key(struct niu *np, unsigned long class_code, u64 key)
3231 if (class_code < CLASS_CODE_USER_PROG1 ||
3232 class_code > CLASS_CODE_SCTP_IPV6)
3235 nw64(TCAM_KEY(class_code - CLASS_CODE_USER_PROG1), key);
3239 /* Entries for the ports are interleaved in the TCAM */
3240 static u16 tcam_get_index(struct niu *np, u16 idx)
3242 /* One entry reserved for IP fragment rule */
3243 if (idx >= (np->clas.tcam_sz - 1))
3245 return np->clas.tcam_top + ((idx+1) * np->parent->num_ports);
3248 static u16 tcam_get_size(struct niu *np)
3250 /* One entry reserved for IP fragment rule */
3251 return np->clas.tcam_sz - 1;
3254 static u16 tcam_get_valid_entry_cnt(struct niu *np)
3256 /* One entry reserved for IP fragment rule */
3257 return np->clas.tcam_valid_entries - 1;
3260 static void niu_rx_skb_append(struct sk_buff *skb, struct page *page,
3261 u32 offset, u32 size, u32 truesize)
3263 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, page, offset, size);
3266 skb->data_len += size;
3267 skb->truesize += truesize;
3270 static unsigned int niu_hash_rxaddr(struct rx_ring_info *rp, u64 a)
3273 a ^= (a >> ilog2(MAX_RBR_RING_SIZE));
3275 return a & (MAX_RBR_RING_SIZE - 1);
3278 static struct page *niu_find_rxpage(struct rx_ring_info *rp, u64 addr,
3279 struct page ***link)
3281 unsigned int h = niu_hash_rxaddr(rp, addr);
3282 struct page *p, **pp;
3285 pp = &rp->rxhash[h];
3286 for (; (p = *pp) != NULL; pp = (struct page **) &p->mapping) {
3287 if (p->index == addr) {
3298 static void niu_hash_page(struct rx_ring_info *rp, struct page *page, u64 base)
3300 unsigned int h = niu_hash_rxaddr(rp, base);
3303 page->mapping = (struct address_space *) rp->rxhash[h];
3304 rp->rxhash[h] = page;
3307 static int niu_rbr_add_page(struct niu *np, struct rx_ring_info *rp,
3308 gfp_t mask, int start_index)
3314 page = alloc_page(mask);
3318 addr = np->ops->map_page(np->device, page, 0,
3319 PAGE_SIZE, DMA_FROM_DEVICE);
3325 niu_hash_page(rp, page, addr);
3326 if (rp->rbr_blocks_per_page > 1)
3327 page_ref_add(page, rp->rbr_blocks_per_page - 1);
3329 for (i = 0; i < rp->rbr_blocks_per_page; i++) {
3330 __le32 *rbr = &rp->rbr[start_index + i];
3332 *rbr = cpu_to_le32(addr >> RBR_DESCR_ADDR_SHIFT);
3333 addr += rp->rbr_block_size;
3339 static void niu_rbr_refill(struct niu *np, struct rx_ring_info *rp, gfp_t mask)
3341 int index = rp->rbr_index;
3344 if ((rp->rbr_pending % rp->rbr_blocks_per_page) == 0) {
3345 int err = niu_rbr_add_page(np, rp, mask, index);
3347 if (unlikely(err)) {
3352 rp->rbr_index += rp->rbr_blocks_per_page;
3353 BUG_ON(rp->rbr_index > rp->rbr_table_size);
3354 if (rp->rbr_index == rp->rbr_table_size)
3357 if (rp->rbr_pending >= rp->rbr_kick_thresh) {
3358 nw64(RBR_KICK(rp->rx_channel), rp->rbr_pending);
3359 rp->rbr_pending = 0;
3364 static int niu_rx_pkt_ignore(struct niu *np, struct rx_ring_info *rp)
3366 unsigned int index = rp->rcr_index;
3371 struct page *page, **link;
3377 val = le64_to_cpup(&rp->rcr[index]);
3378 addr = (val & RCR_ENTRY_PKT_BUF_ADDR) <<
3379 RCR_ENTRY_PKT_BUF_ADDR_SHIFT;
3380 page = niu_find_rxpage(rp, addr, &link);
3382 rcr_size = rp->rbr_sizes[(val & RCR_ENTRY_PKTBUFSZ) >>
3383 RCR_ENTRY_PKTBUFSZ_SHIFT];
3384 if ((page->index + PAGE_SIZE) - rcr_size == addr) {
3385 *link = (struct page *) page->mapping;
3386 np->ops->unmap_page(np->device, page->index,
3387 PAGE_SIZE, DMA_FROM_DEVICE);
3389 page->mapping = NULL;
3391 rp->rbr_refill_pending++;
3394 index = NEXT_RCR(rp, index);
3395 if (!(val & RCR_ENTRY_MULTI))
3399 rp->rcr_index = index;
3404 static int niu_process_rx_pkt(struct napi_struct *napi, struct niu *np,
3405 struct rx_ring_info *rp)
3407 unsigned int index = rp->rcr_index;
3408 struct rx_pkt_hdr1 *rh;
3409 struct sk_buff *skb;
3412 skb = netdev_alloc_skb(np->dev, RX_SKB_ALLOC_SIZE);
3414 return niu_rx_pkt_ignore(np, rp);
3418 struct page *page, **link;
3419 u32 rcr_size, append_size;
3424 val = le64_to_cpup(&rp->rcr[index]);
3426 len = (val & RCR_ENTRY_L2_LEN) >>
3427 RCR_ENTRY_L2_LEN_SHIFT;
3428 append_size = len + ETH_HLEN + ETH_FCS_LEN;
3430 addr = (val & RCR_ENTRY_PKT_BUF_ADDR) <<
3431 RCR_ENTRY_PKT_BUF_ADDR_SHIFT;
3432 page = niu_find_rxpage(rp, addr, &link);
3434 rcr_size = rp->rbr_sizes[(val & RCR_ENTRY_PKTBUFSZ) >>
3435 RCR_ENTRY_PKTBUFSZ_SHIFT];
3437 off = addr & ~PAGE_MASK;
3441 ptype = (val >> RCR_ENTRY_PKT_TYPE_SHIFT);
3442 if ((ptype == RCR_PKT_TYPE_TCP ||
3443 ptype == RCR_PKT_TYPE_UDP) &&
3444 !(val & (RCR_ENTRY_NOPORT |
3446 skb->ip_summed = CHECKSUM_UNNECESSARY;
3448 skb_checksum_none_assert(skb);
3449 } else if (!(val & RCR_ENTRY_MULTI))
3450 append_size = append_size - skb->len;
3452 niu_rx_skb_append(skb, page, off, append_size, rcr_size);
3453 if ((page->index + rp->rbr_block_size) - rcr_size == addr) {
3454 *link = (struct page *) page->mapping;
3455 np->ops->unmap_page(np->device, page->index,
3456 PAGE_SIZE, DMA_FROM_DEVICE);
3458 page->mapping = NULL;
3459 rp->rbr_refill_pending++;
3463 index = NEXT_RCR(rp, index);
3464 if (!(val & RCR_ENTRY_MULTI))
3468 rp->rcr_index = index;
3471 len = min_t(int, len, sizeof(*rh) + VLAN_ETH_HLEN);
3472 __pskb_pull_tail(skb, len);
3474 rh = (struct rx_pkt_hdr1 *) skb->data;
3475 if (np->dev->features & NETIF_F_RXHASH)
3477 ((u32)rh->hashval2_0 << 24 |
3478 (u32)rh->hashval2_1 << 16 |
3479 (u32)rh->hashval1_1 << 8 |
3480 (u32)rh->hashval1_2 << 0),
3482 skb_pull(skb, sizeof(*rh));
3485 rp->rx_bytes += skb->len;
3487 skb->protocol = eth_type_trans(skb, np->dev);
3488 skb_record_rx_queue(skb, rp->rx_channel);
3489 napi_gro_receive(napi, skb);
3494 static int niu_rbr_fill(struct niu *np, struct rx_ring_info *rp, gfp_t mask)
3496 int blocks_per_page = rp->rbr_blocks_per_page;
3497 int err, index = rp->rbr_index;
3500 while (index < (rp->rbr_table_size - blocks_per_page)) {
3501 err = niu_rbr_add_page(np, rp, mask, index);
3505 index += blocks_per_page;
3508 rp->rbr_index = index;
3512 static void niu_rbr_free(struct niu *np, struct rx_ring_info *rp)
3516 for (i = 0; i < MAX_RBR_RING_SIZE; i++) {
3519 page = rp->rxhash[i];
3521 struct page *next = (struct page *) page->mapping;
3522 u64 base = page->index;
3524 np->ops->unmap_page(np->device, base, PAGE_SIZE,
3527 page->mapping = NULL;
3535 for (i = 0; i < rp->rbr_table_size; i++)
3536 rp->rbr[i] = cpu_to_le32(0);
3540 static int release_tx_packet(struct niu *np, struct tx_ring_info *rp, int idx)
3542 struct tx_buff_info *tb = &rp->tx_buffs[idx];
3543 struct sk_buff *skb = tb->skb;
3544 struct tx_pkt_hdr *tp;
3548 tp = (struct tx_pkt_hdr *) skb->data;
3549 tx_flags = le64_to_cpup(&tp->flags);
3552 rp->tx_bytes += (((tx_flags & TXHDR_LEN) >> TXHDR_LEN_SHIFT) -
3553 ((tx_flags & TXHDR_PAD) / 2));
3555 len = skb_headlen(skb);
3556 np->ops->unmap_single(np->device, tb->mapping,
3557 len, DMA_TO_DEVICE);
3559 if (le64_to_cpu(rp->descr[idx]) & TX_DESC_MARK)
3564 idx = NEXT_TX(rp, idx);
3565 len -= MAX_TX_DESC_LEN;
3568 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3569 tb = &rp->tx_buffs[idx];
3570 BUG_ON(tb->skb != NULL);
3571 np->ops->unmap_page(np->device, tb->mapping,
3572 skb_frag_size(&skb_shinfo(skb)->frags[i]),
3574 idx = NEXT_TX(rp, idx);
3582 #define NIU_TX_WAKEUP_THRESH(rp) ((rp)->pending / 4)
3584 static void niu_tx_work(struct niu *np, struct tx_ring_info *rp)
3586 struct netdev_queue *txq;
3591 index = (rp - np->tx_rings);
3592 txq = netdev_get_tx_queue(np->dev, index);
3595 if (unlikely(!(cs & (TX_CS_MK | TX_CS_MMK))))
3598 tmp = pkt_cnt = (cs & TX_CS_PKT_CNT) >> TX_CS_PKT_CNT_SHIFT;
3599 pkt_cnt = (pkt_cnt - rp->last_pkt_cnt) &
3600 (TX_CS_PKT_CNT >> TX_CS_PKT_CNT_SHIFT);
3602 rp->last_pkt_cnt = tmp;
3606 netif_printk(np, tx_done, KERN_DEBUG, np->dev,
3607 "%s() pkt_cnt[%u] cons[%d]\n", __func__, pkt_cnt, cons);
3610 cons = release_tx_packet(np, rp, cons);
3616 if (unlikely(netif_tx_queue_stopped(txq) &&
3617 (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp)))) {
3618 __netif_tx_lock(txq, smp_processor_id());
3619 if (netif_tx_queue_stopped(txq) &&
3620 (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp)))
3621 netif_tx_wake_queue(txq);
3622 __netif_tx_unlock(txq);
3626 static inline void niu_sync_rx_discard_stats(struct niu *np,
3627 struct rx_ring_info *rp,
3630 /* This elaborate scheme is needed for reading the RX discard
3631 * counters, as they are only 16-bit and can overflow quickly,
3632 * and because the overflow indication bit is not usable as
3633 * the counter value does not wrap, but remains at max value
3636 * In theory and in practice counters can be lost in between
3637 * reading nr64() and clearing the counter nw64(). For this
3638 * reason, the number of counter clearings nw64() is
3639 * limited/reduced though the limit parameter.
3641 int rx_channel = rp->rx_channel;
3644 /* RXMISC (Receive Miscellaneous Discard Count), covers the
3645 * following discard events: IPP (Input Port Process),
3646 * FFLP/TCAM, Full RCR (Receive Completion Ring) RBR (Receive
3647 * Block Ring) prefetch buffer is empty.
3649 misc = nr64(RXMISC(rx_channel));
3650 if (unlikely((misc & RXMISC_COUNT) > limit)) {
3651 nw64(RXMISC(rx_channel), 0);
3652 rp->rx_errors += misc & RXMISC_COUNT;
3654 if (unlikely(misc & RXMISC_OFLOW))
3655 dev_err(np->device, "rx-%d: Counter overflow RXMISC discard\n",
3658 netif_printk(np, rx_err, KERN_DEBUG, np->dev,
3659 "rx-%d: MISC drop=%u over=%u\n",
3660 rx_channel, misc, misc-limit);
3663 /* WRED (Weighted Random Early Discard) by hardware */
3664 wred = nr64(RED_DIS_CNT(rx_channel));
3665 if (unlikely((wred & RED_DIS_CNT_COUNT) > limit)) {
3666 nw64(RED_DIS_CNT(rx_channel), 0);
3667 rp->rx_dropped += wred & RED_DIS_CNT_COUNT;
3669 if (unlikely(wred & RED_DIS_CNT_OFLOW))
3670 dev_err(np->device, "rx-%d: Counter overflow WRED discard\n", rx_channel);
3672 netif_printk(np, rx_err, KERN_DEBUG, np->dev,
3673 "rx-%d: WRED drop=%u over=%u\n",
3674 rx_channel, wred, wred-limit);
3678 static int niu_rx_work(struct napi_struct *napi, struct niu *np,
3679 struct rx_ring_info *rp, int budget)
3681 int qlen, rcr_done = 0, work_done = 0;
3682 struct rxdma_mailbox *mbox = rp->mbox;
3686 stat = nr64(RX_DMA_CTL_STAT(rp->rx_channel));
3687 qlen = nr64(RCRSTAT_A(rp->rx_channel)) & RCRSTAT_A_QLEN;
3689 stat = le64_to_cpup(&mbox->rx_dma_ctl_stat);
3690 qlen = (le64_to_cpup(&mbox->rcrstat_a) & RCRSTAT_A_QLEN);
3692 mbox->rx_dma_ctl_stat = 0;
3693 mbox->rcrstat_a = 0;
3695 netif_printk(np, rx_status, KERN_DEBUG, np->dev,
3696 "%s(chan[%d]), stat[%llx] qlen=%d\n",
3697 __func__, rp->rx_channel, (unsigned long long)stat, qlen);
3699 rcr_done = work_done = 0;
3700 qlen = min(qlen, budget);
3701 while (work_done < qlen) {
3702 rcr_done += niu_process_rx_pkt(napi, np, rp);
3706 if (rp->rbr_refill_pending >= rp->rbr_kick_thresh) {
3709 for (i = 0; i < rp->rbr_refill_pending; i++)
3710 niu_rbr_refill(np, rp, GFP_ATOMIC);
3711 rp->rbr_refill_pending = 0;
3714 stat = (RX_DMA_CTL_STAT_MEX |
3715 ((u64)work_done << RX_DMA_CTL_STAT_PKTREAD_SHIFT) |
3716 ((u64)rcr_done << RX_DMA_CTL_STAT_PTRREAD_SHIFT));
3718 nw64(RX_DMA_CTL_STAT(rp->rx_channel), stat);
3720 /* Only sync discards stats when qlen indicate potential for drops */
3722 niu_sync_rx_discard_stats(np, rp, 0x7FFF);
3727 static int niu_poll_core(struct niu *np, struct niu_ldg *lp, int budget)
3730 u32 tx_vec = (v0 >> 32);
3731 u32 rx_vec = (v0 & 0xffffffff);
3732 int i, work_done = 0;
3734 netif_printk(np, intr, KERN_DEBUG, np->dev,
3735 "%s() v0[%016llx]\n", __func__, (unsigned long long)v0);
3737 for (i = 0; i < np->num_tx_rings; i++) {
3738 struct tx_ring_info *rp = &np->tx_rings[i];
3739 if (tx_vec & (1 << rp->tx_channel))
3740 niu_tx_work(np, rp);
3741 nw64(LD_IM0(LDN_TXDMA(rp->tx_channel)), 0);
3744 for (i = 0; i < np->num_rx_rings; i++) {
3745 struct rx_ring_info *rp = &np->rx_rings[i];
3747 if (rx_vec & (1 << rp->rx_channel)) {
3750 this_work_done = niu_rx_work(&lp->napi, np, rp,
3753 budget -= this_work_done;
3754 work_done += this_work_done;
3756 nw64(LD_IM0(LDN_RXDMA(rp->rx_channel)), 0);
3762 static int niu_poll(struct napi_struct *napi, int budget)
3764 struct niu_ldg *lp = container_of(napi, struct niu_ldg, napi);
3765 struct niu *np = lp->np;
3768 work_done = niu_poll_core(np, lp, budget);
3770 if (work_done < budget) {
3771 napi_complete_done(napi, work_done);
3772 niu_ldg_rearm(np, lp, 1);
3777 static void niu_log_rxchan_errors(struct niu *np, struct rx_ring_info *rp,
3780 netdev_err(np->dev, "RX channel %u errors ( ", rp->rx_channel);
3782 if (stat & RX_DMA_CTL_STAT_RBR_TMOUT)
3783 pr_cont("RBR_TMOUT ");
3784 if (stat & RX_DMA_CTL_STAT_RSP_CNT_ERR)
3785 pr_cont("RSP_CNT ");
3786 if (stat & RX_DMA_CTL_STAT_BYTE_EN_BUS)
3787 pr_cont("BYTE_EN_BUS ");
3788 if (stat & RX_DMA_CTL_STAT_RSP_DAT_ERR)
3789 pr_cont("RSP_DAT ");
3790 if (stat & RX_DMA_CTL_STAT_RCR_ACK_ERR)
3791 pr_cont("RCR_ACK ");
3792 if (stat & RX_DMA_CTL_STAT_RCR_SHA_PAR)
3793 pr_cont("RCR_SHA_PAR ");
3794 if (stat & RX_DMA_CTL_STAT_RBR_PRE_PAR)
3795 pr_cont("RBR_PRE_PAR ");
3796 if (stat & RX_DMA_CTL_STAT_CONFIG_ERR)
3798 if (stat & RX_DMA_CTL_STAT_RCRINCON)
3799 pr_cont("RCRINCON ");
3800 if (stat & RX_DMA_CTL_STAT_RCRFULL)
3801 pr_cont("RCRFULL ");
3802 if (stat & RX_DMA_CTL_STAT_RBRFULL)
3803 pr_cont("RBRFULL ");
3804 if (stat & RX_DMA_CTL_STAT_RBRLOGPAGE)
3805 pr_cont("RBRLOGPAGE ");
3806 if (stat & RX_DMA_CTL_STAT_CFIGLOGPAGE)
3807 pr_cont("CFIGLOGPAGE ");
3808 if (stat & RX_DMA_CTL_STAT_DC_FIFO_ERR)
3809 pr_cont("DC_FIDO ");
3814 static int niu_rx_error(struct niu *np, struct rx_ring_info *rp)
3816 u64 stat = nr64(RX_DMA_CTL_STAT(rp->rx_channel));
3820 if (stat & (RX_DMA_CTL_STAT_CHAN_FATAL |
3821 RX_DMA_CTL_STAT_PORT_FATAL))
3825 netdev_err(np->dev, "RX channel %u error, stat[%llx]\n",
3827 (unsigned long long) stat);
3829 niu_log_rxchan_errors(np, rp, stat);
3832 nw64(RX_DMA_CTL_STAT(rp->rx_channel),
3833 stat & RX_DMA_CTL_WRITE_CLEAR_ERRS);
3838 static void niu_log_txchan_errors(struct niu *np, struct tx_ring_info *rp,
3841 netdev_err(np->dev, "TX channel %u errors ( ", rp->tx_channel);
3843 if (cs & TX_CS_MBOX_ERR)
3845 if (cs & TX_CS_PKT_SIZE_ERR)
3846 pr_cont("PKT_SIZE ");
3847 if (cs & TX_CS_TX_RING_OFLOW)
3848 pr_cont("TX_RING_OFLOW ");
3849 if (cs & TX_CS_PREF_BUF_PAR_ERR)
3850 pr_cont("PREF_BUF_PAR ");
3851 if (cs & TX_CS_NACK_PREF)
3852 pr_cont("NACK_PREF ");
3853 if (cs & TX_CS_NACK_PKT_RD)
3854 pr_cont("NACK_PKT_RD ");
3855 if (cs & TX_CS_CONF_PART_ERR)
3856 pr_cont("CONF_PART ");
3857 if (cs & TX_CS_PKT_PRT_ERR)
3858 pr_cont("PKT_PTR ");
3863 static int niu_tx_error(struct niu *np, struct tx_ring_info *rp)
3867 cs = nr64(TX_CS(rp->tx_channel));
3868 logh = nr64(TX_RNG_ERR_LOGH(rp->tx_channel));
3869 logl = nr64(TX_RNG_ERR_LOGL(rp->tx_channel));
3871 netdev_err(np->dev, "TX channel %u error, cs[%llx] logh[%llx] logl[%llx]\n",
3873 (unsigned long long)cs,
3874 (unsigned long long)logh,
3875 (unsigned long long)logl);
3877 niu_log_txchan_errors(np, rp, cs);
3882 static int niu_mif_interrupt(struct niu *np)
3884 u64 mif_status = nr64(MIF_STATUS);
3887 if (np->flags & NIU_FLAGS_XMAC) {
3888 u64 xrxmac_stat = nr64_mac(XRXMAC_STATUS);
3890 if (xrxmac_stat & XRXMAC_STATUS_PHY_MDINT)
3894 netdev_err(np->dev, "MIF interrupt, stat[%llx] phy_mdint(%d)\n",
3895 (unsigned long long)mif_status, phy_mdint);
3900 static void niu_xmac_interrupt(struct niu *np)
3902 struct niu_xmac_stats *mp = &np->mac_stats.xmac;
3905 val = nr64_mac(XTXMAC_STATUS);
3906 if (val & XTXMAC_STATUS_FRAME_CNT_EXP)
3907 mp->tx_frames += TXMAC_FRM_CNT_COUNT;
3908 if (val & XTXMAC_STATUS_BYTE_CNT_EXP)
3909 mp->tx_bytes += TXMAC_BYTE_CNT_COUNT;
3910 if (val & XTXMAC_STATUS_TXFIFO_XFR_ERR)
3911 mp->tx_fifo_errors++;
3912 if (val & XTXMAC_STATUS_TXMAC_OFLOW)
3913 mp->tx_overflow_errors++;
3914 if (val & XTXMAC_STATUS_MAX_PSIZE_ERR)
3915 mp->tx_max_pkt_size_errors++;
3916 if (val & XTXMAC_STATUS_TXMAC_UFLOW)
3917 mp->tx_underflow_errors++;
3919 val = nr64_mac(XRXMAC_STATUS);
3920 if (val & XRXMAC_STATUS_LCL_FLT_STATUS)
3921 mp->rx_local_faults++;
3922 if (val & XRXMAC_STATUS_RFLT_DET)
3923 mp->rx_remote_faults++;
3924 if (val & XRXMAC_STATUS_LFLT_CNT_EXP)
3925 mp->rx_link_faults += LINK_FAULT_CNT_COUNT;
3926 if (val & XRXMAC_STATUS_ALIGNERR_CNT_EXP)
3927 mp->rx_align_errors += RXMAC_ALIGN_ERR_CNT_COUNT;
3928 if (val & XRXMAC_STATUS_RXFRAG_CNT_EXP)
3929 mp->rx_frags += RXMAC_FRAG_CNT_COUNT;
3930 if (val & XRXMAC_STATUS_RXMULTF_CNT_EXP)
3931 mp->rx_mcasts += RXMAC_MC_FRM_CNT_COUNT;
3932 if (val & XRXMAC_STATUS_RXBCAST_CNT_EXP)
3933 mp->rx_bcasts += RXMAC_BC_FRM_CNT_COUNT;
3934 if (val & XRXMAC_STATUS_RXHIST1_CNT_EXP)
3935 mp->rx_hist_cnt1 += RXMAC_HIST_CNT1_COUNT;
3936 if (val & XRXMAC_STATUS_RXHIST2_CNT_EXP)
3937 mp->rx_hist_cnt2 += RXMAC_HIST_CNT2_COUNT;
3938 if (val & XRXMAC_STATUS_RXHIST3_CNT_EXP)
3939 mp->rx_hist_cnt3 += RXMAC_HIST_CNT3_COUNT;
3940 if (val & XRXMAC_STATUS_RXHIST4_CNT_EXP)
3941 mp->rx_hist_cnt4 += RXMAC_HIST_CNT4_COUNT;
3942 if (val & XRXMAC_STATUS_RXHIST5_CNT_EXP)
3943 mp->rx_hist_cnt5 += RXMAC_HIST_CNT5_COUNT;
3944 if (val & XRXMAC_STATUS_RXHIST6_CNT_EXP)
3945 mp->rx_hist_cnt6 += RXMAC_HIST_CNT6_COUNT;
3946 if (val & XRXMAC_STATUS_RXHIST7_CNT_EXP)
3947 mp->rx_hist_cnt7 += RXMAC_HIST_CNT7_COUNT;
3948 if (val & XRXMAC_STATUS_RXOCTET_CNT_EXP)
3949 mp->rx_octets += RXMAC_BT_CNT_COUNT;
3950 if (val & XRXMAC_STATUS_CVIOLERR_CNT_EXP)
3951 mp->rx_code_violations += RXMAC_CD_VIO_CNT_COUNT;
3952 if (val & XRXMAC_STATUS_LENERR_CNT_EXP)
3953 mp->rx_len_errors += RXMAC_MPSZER_CNT_COUNT;
3954 if (val & XRXMAC_STATUS_CRCERR_CNT_EXP)
3955 mp->rx_crc_errors += RXMAC_CRC_ER_CNT_COUNT;
3956 if (val & XRXMAC_STATUS_RXUFLOW)
3957 mp->rx_underflows++;
3958 if (val & XRXMAC_STATUS_RXOFLOW)
3961 val = nr64_mac(XMAC_FC_STAT);
3962 if (val & XMAC_FC_STAT_TX_MAC_NPAUSE)
3963 mp->pause_off_state++;
3964 if (val & XMAC_FC_STAT_TX_MAC_PAUSE)
3965 mp->pause_on_state++;
3966 if (val & XMAC_FC_STAT_RX_MAC_RPAUSE)
3967 mp->pause_received++;
3970 static void niu_bmac_interrupt(struct niu *np)
3972 struct niu_bmac_stats *mp = &np->mac_stats.bmac;
3975 val = nr64_mac(BTXMAC_STATUS);
3976 if (val & BTXMAC_STATUS_UNDERRUN)
3977 mp->tx_underflow_errors++;
3978 if (val & BTXMAC_STATUS_MAX_PKT_ERR)
3979 mp->tx_max_pkt_size_errors++;
3980 if (val & BTXMAC_STATUS_BYTE_CNT_EXP)
3981 mp->tx_bytes += BTXMAC_BYTE_CNT_COUNT;
3982 if (val & BTXMAC_STATUS_FRAME_CNT_EXP)
3983 mp->tx_frames += BTXMAC_FRM_CNT_COUNT;
3985 val = nr64_mac(BRXMAC_STATUS);
3986 if (val & BRXMAC_STATUS_OVERFLOW)
3988 if (val & BRXMAC_STATUS_FRAME_CNT_EXP)
3989 mp->rx_frames += BRXMAC_FRAME_CNT_COUNT;
3990 if (val & BRXMAC_STATUS_ALIGN_ERR_EXP)
3991 mp->rx_align_errors += BRXMAC_ALIGN_ERR_CNT_COUNT;
3992 if (val & BRXMAC_STATUS_CRC_ERR_EXP)
3993 mp->rx_crc_errors += BRXMAC_ALIGN_ERR_CNT_COUNT;
3994 if (val & BRXMAC_STATUS_LEN_ERR_EXP)
3995 mp->rx_len_errors += BRXMAC_CODE_VIOL_ERR_CNT_COUNT;
3997 val = nr64_mac(BMAC_CTRL_STATUS);
3998 if (val & BMAC_CTRL_STATUS_NOPAUSE)
3999 mp->pause_off_state++;
4000 if (val & BMAC_CTRL_STATUS_PAUSE)
4001 mp->pause_on_state++;
4002 if (val & BMAC_CTRL_STATUS_PAUSE_RECV)
4003 mp->pause_received++;
4006 static int niu_mac_interrupt(struct niu *np)
4008 if (np->flags & NIU_FLAGS_XMAC)
4009 niu_xmac_interrupt(np);
4011 niu_bmac_interrupt(np);
4016 static void niu_log_device_error(struct niu *np, u64 stat)
4018 netdev_err(np->dev, "Core device errors ( ");
4020 if (stat & SYS_ERR_MASK_META2)
4022 if (stat & SYS_ERR_MASK_META1)
4024 if (stat & SYS_ERR_MASK_PEU)
4026 if (stat & SYS_ERR_MASK_TXC)
4028 if (stat & SYS_ERR_MASK_RDMC)
4030 if (stat & SYS_ERR_MASK_TDMC)
4032 if (stat & SYS_ERR_MASK_ZCP)
4034 if (stat & SYS_ERR_MASK_FFLP)
4036 if (stat & SYS_ERR_MASK_IPP)
4038 if (stat & SYS_ERR_MASK_MAC)
4040 if (stat & SYS_ERR_MASK_SMX)
4046 static int niu_device_error(struct niu *np)
4048 u64 stat = nr64(SYS_ERR_STAT);
4050 netdev_err(np->dev, "Core device error, stat[%llx]\n",
4051 (unsigned long long)stat);
4053 niu_log_device_error(np, stat);
4058 static int niu_slowpath_interrupt(struct niu *np, struct niu_ldg *lp,
4059 u64 v0, u64 v1, u64 v2)
4068 if (v1 & 0x00000000ffffffffULL) {
4069 u32 rx_vec = (v1 & 0xffffffff);
4071 for (i = 0; i < np->num_rx_rings; i++) {
4072 struct rx_ring_info *rp = &np->rx_rings[i];
4074 if (rx_vec & (1 << rp->rx_channel)) {
4075 int r = niu_rx_error(np, rp);
4080 nw64(RX_DMA_CTL_STAT(rp->rx_channel),
4081 RX_DMA_CTL_STAT_MEX);
4086 if (v1 & 0x7fffffff00000000ULL) {
4087 u32 tx_vec = (v1 >> 32) & 0x7fffffff;
4089 for (i = 0; i < np->num_tx_rings; i++) {
4090 struct tx_ring_info *rp = &np->tx_rings[i];
4092 if (tx_vec & (1 << rp->tx_channel)) {
4093 int r = niu_tx_error(np, rp);
4099 if ((v0 | v1) & 0x8000000000000000ULL) {
4100 int r = niu_mif_interrupt(np);
4106 int r = niu_mac_interrupt(np);
4111 int r = niu_device_error(np);
4118 niu_enable_interrupts(np, 0);
4123 static void niu_rxchan_intr(struct niu *np, struct rx_ring_info *rp,
4126 struct rxdma_mailbox *mbox = rp->mbox;
4127 u64 stat_write, stat = le64_to_cpup(&mbox->rx_dma_ctl_stat);
4129 stat_write = (RX_DMA_CTL_STAT_RCRTHRES |
4130 RX_DMA_CTL_STAT_RCRTO);
4131 nw64(RX_DMA_CTL_STAT(rp->rx_channel), stat_write);
4133 netif_printk(np, intr, KERN_DEBUG, np->dev,
4134 "%s() stat[%llx]\n", __func__, (unsigned long long)stat);
4137 static void niu_txchan_intr(struct niu *np, struct tx_ring_info *rp,
4140 rp->tx_cs = nr64(TX_CS(rp->tx_channel));
4142 netif_printk(np, intr, KERN_DEBUG, np->dev,
4143 "%s() cs[%llx]\n", __func__, (unsigned long long)rp->tx_cs);
4146 static void __niu_fastpath_interrupt(struct niu *np, int ldg, u64 v0)
4148 struct niu_parent *parent = np->parent;
4152 tx_vec = (v0 >> 32);
4153 rx_vec = (v0 & 0xffffffff);
4155 for (i = 0; i < np->num_rx_rings; i++) {
4156 struct rx_ring_info *rp = &np->rx_rings[i];
4157 int ldn = LDN_RXDMA(rp->rx_channel);
4159 if (parent->ldg_map[ldn] != ldg)
4162 nw64(LD_IM0(ldn), LD_IM0_MASK);
4163 if (rx_vec & (1 << rp->rx_channel))
4164 niu_rxchan_intr(np, rp, ldn);
4167 for (i = 0; i < np->num_tx_rings; i++) {
4168 struct tx_ring_info *rp = &np->tx_rings[i];
4169 int ldn = LDN_TXDMA(rp->tx_channel);
4171 if (parent->ldg_map[ldn] != ldg)
4174 nw64(LD_IM0(ldn), LD_IM0_MASK);
4175 if (tx_vec & (1 << rp->tx_channel))
4176 niu_txchan_intr(np, rp, ldn);
4180 static void niu_schedule_napi(struct niu *np, struct niu_ldg *lp,
4181 u64 v0, u64 v1, u64 v2)
4183 if (likely(napi_schedule_prep(&lp->napi))) {
4187 __niu_fastpath_interrupt(np, lp->ldg_num, v0);
4188 __napi_schedule(&lp->napi);
4192 static irqreturn_t niu_interrupt(int irq, void *dev_id)
4194 struct niu_ldg *lp = dev_id;
4195 struct niu *np = lp->np;
4196 int ldg = lp->ldg_num;
4197 unsigned long flags;
4200 if (netif_msg_intr(np))
4201 printk(KERN_DEBUG KBUILD_MODNAME ": " "%s() ldg[%p](%d)",
4204 spin_lock_irqsave(&np->lock, flags);
4206 v0 = nr64(LDSV0(ldg));
4207 v1 = nr64(LDSV1(ldg));
4208 v2 = nr64(LDSV2(ldg));
4210 if (netif_msg_intr(np))
4211 pr_cont(" v0[%llx] v1[%llx] v2[%llx]\n",
4212 (unsigned long long) v0,
4213 (unsigned long long) v1,
4214 (unsigned long long) v2);
4216 if (unlikely(!v0 && !v1 && !v2)) {
4217 spin_unlock_irqrestore(&np->lock, flags);
4221 if (unlikely((v0 & ((u64)1 << LDN_MIF)) || v1 || v2)) {
4222 int err = niu_slowpath_interrupt(np, lp, v0, v1, v2);
4226 if (likely(v0 & ~((u64)1 << LDN_MIF)))
4227 niu_schedule_napi(np, lp, v0, v1, v2);
4229 niu_ldg_rearm(np, lp, 1);
4231 spin_unlock_irqrestore(&np->lock, flags);
4236 static void niu_free_rx_ring_info(struct niu *np, struct rx_ring_info *rp)
4239 np->ops->free_coherent(np->device,
4240 sizeof(struct rxdma_mailbox),
4241 rp->mbox, rp->mbox_dma);
4245 np->ops->free_coherent(np->device,
4246 MAX_RCR_RING_SIZE * sizeof(__le64),
4247 rp->rcr, rp->rcr_dma);
4249 rp->rcr_table_size = 0;
4253 niu_rbr_free(np, rp);
4255 np->ops->free_coherent(np->device,
4256 MAX_RBR_RING_SIZE * sizeof(__le32),
4257 rp->rbr, rp->rbr_dma);
4259 rp->rbr_table_size = 0;
4266 static void niu_free_tx_ring_info(struct niu *np, struct tx_ring_info *rp)
4269 np->ops->free_coherent(np->device,
4270 sizeof(struct txdma_mailbox),
4271 rp->mbox, rp->mbox_dma);
4277 for (i = 0; i < MAX_TX_RING_SIZE; i++) {
4278 if (rp->tx_buffs[i].skb)
4279 (void) release_tx_packet(np, rp, i);
4282 np->ops->free_coherent(np->device,
4283 MAX_TX_RING_SIZE * sizeof(__le64),
4284 rp->descr, rp->descr_dma);
4293 static void niu_free_channels(struct niu *np)
4298 for (i = 0; i < np->num_rx_rings; i++) {
4299 struct rx_ring_info *rp = &np->rx_rings[i];
4301 niu_free_rx_ring_info(np, rp);
4303 kfree(np->rx_rings);
4304 np->rx_rings = NULL;
4305 np->num_rx_rings = 0;
4309 for (i = 0; i < np->num_tx_rings; i++) {
4310 struct tx_ring_info *rp = &np->tx_rings[i];
4312 niu_free_tx_ring_info(np, rp);
4314 kfree(np->tx_rings);
4315 np->tx_rings = NULL;
4316 np->num_tx_rings = 0;
4320 static int niu_alloc_rx_ring_info(struct niu *np,
4321 struct rx_ring_info *rp)
4323 BUILD_BUG_ON(sizeof(struct rxdma_mailbox) != 64);
4325 rp->rxhash = kcalloc(MAX_RBR_RING_SIZE, sizeof(struct page *),
4330 rp->mbox = np->ops->alloc_coherent(np->device,
4331 sizeof(struct rxdma_mailbox),
4332 &rp->mbox_dma, GFP_KERNEL);
4335 if ((unsigned long)rp->mbox & (64UL - 1)) {
4336 netdev_err(np->dev, "Coherent alloc gives misaligned RXDMA mailbox %p\n",
4341 rp->rcr = np->ops->alloc_coherent(np->device,
4342 MAX_RCR_RING_SIZE * sizeof(__le64),
4343 &rp->rcr_dma, GFP_KERNEL);
4346 if ((unsigned long)rp->rcr & (64UL - 1)) {
4347 netdev_err(np->dev, "Coherent alloc gives misaligned RXDMA RCR table %p\n",
4351 rp->rcr_table_size = MAX_RCR_RING_SIZE;
4354 rp->rbr = np->ops->alloc_coherent(np->device,
4355 MAX_RBR_RING_SIZE * sizeof(__le32),
4356 &rp->rbr_dma, GFP_KERNEL);
4359 if ((unsigned long)rp->rbr & (64UL - 1)) {
4360 netdev_err(np->dev, "Coherent alloc gives misaligned RXDMA RBR table %p\n",
4364 rp->rbr_table_size = MAX_RBR_RING_SIZE;
4366 rp->rbr_pending = 0;
4371 static void niu_set_max_burst(struct niu *np, struct tx_ring_info *rp)
4373 int mtu = np->dev->mtu;
4375 /* These values are recommended by the HW designers for fair
4376 * utilization of DRR amongst the rings.
4378 rp->max_burst = mtu + 32;
4379 if (rp->max_burst > 4096)
4380 rp->max_burst = 4096;
4383 static int niu_alloc_tx_ring_info(struct niu *np,
4384 struct tx_ring_info *rp)
4386 BUILD_BUG_ON(sizeof(struct txdma_mailbox) != 64);
4388 rp->mbox = np->ops->alloc_coherent(np->device,
4389 sizeof(struct txdma_mailbox),
4390 &rp->mbox_dma, GFP_KERNEL);
4393 if ((unsigned long)rp->mbox & (64UL - 1)) {
4394 netdev_err(np->dev, "Coherent alloc gives misaligned TXDMA mailbox %p\n",
4399 rp->descr = np->ops->alloc_coherent(np->device,
4400 MAX_TX_RING_SIZE * sizeof(__le64),
4401 &rp->descr_dma, GFP_KERNEL);
4404 if ((unsigned long)rp->descr & (64UL - 1)) {
4405 netdev_err(np->dev, "Coherent alloc gives misaligned TXDMA descr table %p\n",
4410 rp->pending = MAX_TX_RING_SIZE;
4415 /* XXX make these configurable... XXX */
4416 rp->mark_freq = rp->pending / 4;
4418 niu_set_max_burst(np, rp);
4423 static void niu_size_rbr(struct niu *np, struct rx_ring_info *rp)
4427 bss = min(PAGE_SHIFT, 15);
4429 rp->rbr_block_size = 1 << bss;
4430 rp->rbr_blocks_per_page = 1 << (PAGE_SHIFT-bss);
4432 rp->rbr_sizes[0] = 256;
4433 rp->rbr_sizes[1] = 1024;
4434 if (np->dev->mtu > ETH_DATA_LEN) {
4435 switch (PAGE_SIZE) {
4437 rp->rbr_sizes[2] = 4096;
4441 rp->rbr_sizes[2] = 8192;
4445 rp->rbr_sizes[2] = 2048;
4447 rp->rbr_sizes[3] = rp->rbr_block_size;
4450 static int niu_alloc_channels(struct niu *np)
4452 struct niu_parent *parent = np->parent;
4453 int first_rx_channel, first_tx_channel;
4454 int num_rx_rings, num_tx_rings;
4455 struct rx_ring_info *rx_rings;
4456 struct tx_ring_info *tx_rings;
4460 first_rx_channel = first_tx_channel = 0;
4461 for (i = 0; i < port; i++) {
4462 first_rx_channel += parent->rxchan_per_port[i];
4463 first_tx_channel += parent->txchan_per_port[i];
4466 num_rx_rings = parent->rxchan_per_port[port];
4467 num_tx_rings = parent->txchan_per_port[port];
4469 rx_rings = kcalloc(num_rx_rings, sizeof(struct rx_ring_info),
4475 np->num_rx_rings = num_rx_rings;
4477 np->rx_rings = rx_rings;
4479 netif_set_real_num_rx_queues(np->dev, num_rx_rings);
4481 for (i = 0; i < np->num_rx_rings; i++) {
4482 struct rx_ring_info *rp = &np->rx_rings[i];
4485 rp->rx_channel = first_rx_channel + i;
4487 err = niu_alloc_rx_ring_info(np, rp);
4491 niu_size_rbr(np, rp);
4493 /* XXX better defaults, configurable, etc... XXX */
4494 rp->nonsyn_window = 64;
4495 rp->nonsyn_threshold = rp->rcr_table_size - 64;
4496 rp->syn_window = 64;
4497 rp->syn_threshold = rp->rcr_table_size - 64;
4498 rp->rcr_pkt_threshold = 16;
4499 rp->rcr_timeout = 8;
4500 rp->rbr_kick_thresh = RBR_REFILL_MIN;
4501 if (rp->rbr_kick_thresh < rp->rbr_blocks_per_page)
4502 rp->rbr_kick_thresh = rp->rbr_blocks_per_page;
4504 err = niu_rbr_fill(np, rp, GFP_KERNEL);
4509 tx_rings = kcalloc(num_tx_rings, sizeof(struct tx_ring_info),
4515 np->num_tx_rings = num_tx_rings;
4517 np->tx_rings = tx_rings;
4519 netif_set_real_num_tx_queues(np->dev, num_tx_rings);
4521 for (i = 0; i < np->num_tx_rings; i++) {
4522 struct tx_ring_info *rp = &np->tx_rings[i];
4525 rp->tx_channel = first_tx_channel + i;
4527 err = niu_alloc_tx_ring_info(np, rp);
4535 niu_free_channels(np);
4539 static int niu_tx_cs_sng_poll(struct niu *np, int channel)
4543 while (--limit > 0) {
4544 u64 val = nr64(TX_CS(channel));
4545 if (val & TX_CS_SNG_STATE)
4551 static int niu_tx_channel_stop(struct niu *np, int channel)
4553 u64 val = nr64(TX_CS(channel));
4555 val |= TX_CS_STOP_N_GO;
4556 nw64(TX_CS(channel), val);
4558 return niu_tx_cs_sng_poll(np, channel);
4561 static int niu_tx_cs_reset_poll(struct niu *np, int channel)
4565 while (--limit > 0) {
4566 u64 val = nr64(TX_CS(channel));
4567 if (!(val & TX_CS_RST))
4573 static int niu_tx_channel_reset(struct niu *np, int channel)
4575 u64 val = nr64(TX_CS(channel));
4579 nw64(TX_CS(channel), val);
4581 err = niu_tx_cs_reset_poll(np, channel);
4583 nw64(TX_RING_KICK(channel), 0);
4588 static int niu_tx_channel_lpage_init(struct niu *np, int channel)
4592 nw64(TX_LOG_MASK1(channel), 0);
4593 nw64(TX_LOG_VAL1(channel), 0);
4594 nw64(TX_LOG_MASK2(channel), 0);
4595 nw64(TX_LOG_VAL2(channel), 0);
4596 nw64(TX_LOG_PAGE_RELO1(channel), 0);
4597 nw64(TX_LOG_PAGE_RELO2(channel), 0);
4598 nw64(TX_LOG_PAGE_HDL(channel), 0);
4600 val = (u64)np->port << TX_LOG_PAGE_VLD_FUNC_SHIFT;
4601 val |= (TX_LOG_PAGE_VLD_PAGE0 | TX_LOG_PAGE_VLD_PAGE1);
4602 nw64(TX_LOG_PAGE_VLD(channel), val);
4604 /* XXX TXDMA 32bit mode? XXX */
4609 static void niu_txc_enable_port(struct niu *np, int on)
4611 unsigned long flags;
4614 niu_lock_parent(np, flags);
4615 val = nr64(TXC_CONTROL);
4616 mask = (u64)1 << np->port;
4618 val |= TXC_CONTROL_ENABLE | mask;
4621 if ((val & ~TXC_CONTROL_ENABLE) == 0)
4622 val &= ~TXC_CONTROL_ENABLE;
4624 nw64(TXC_CONTROL, val);
4625 niu_unlock_parent(np, flags);
4628 static void niu_txc_set_imask(struct niu *np, u64 imask)
4630 unsigned long flags;
4633 niu_lock_parent(np, flags);
4634 val = nr64(TXC_INT_MASK);
4635 val &= ~TXC_INT_MASK_VAL(np->port);
4636 val |= (imask << TXC_INT_MASK_VAL_SHIFT(np->port));
4637 niu_unlock_parent(np, flags);
4640 static void niu_txc_port_dma_enable(struct niu *np, int on)
4647 for (i = 0; i < np->num_tx_rings; i++)
4648 val |= (1 << np->tx_rings[i].tx_channel);
4650 nw64(TXC_PORT_DMA(np->port), val);
4653 static int niu_init_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
4655 int err, channel = rp->tx_channel;
4658 err = niu_tx_channel_stop(np, channel);
4662 err = niu_tx_channel_reset(np, channel);
4666 err = niu_tx_channel_lpage_init(np, channel);
4670 nw64(TXC_DMA_MAX(channel), rp->max_burst);
4671 nw64(TX_ENT_MSK(channel), 0);
4673 if (rp->descr_dma & ~(TX_RNG_CFIG_STADDR_BASE |
4674 TX_RNG_CFIG_STADDR)) {
4675 netdev_err(np->dev, "TX ring channel %d DMA addr (%llx) is not aligned\n",
4676 channel, (unsigned long long)rp->descr_dma);
4680 /* The length field in TX_RNG_CFIG is measured in 64-byte
4681 * blocks. rp->pending is the number of TX descriptors in
4682 * our ring, 8 bytes each, thus we divide by 8 bytes more
4683 * to get the proper value the chip wants.
4685 ring_len = (rp->pending / 8);
4687 val = ((ring_len << TX_RNG_CFIG_LEN_SHIFT) |
4689 nw64(TX_RNG_CFIG(channel), val);
4691 if (((rp->mbox_dma >> 32) & ~TXDMA_MBH_MBADDR) ||
4692 ((u32)rp->mbox_dma & ~TXDMA_MBL_MBADDR)) {
4693 netdev_err(np->dev, "TX ring channel %d MBOX addr (%llx) has invalid bits\n",
4694 channel, (unsigned long long)rp->mbox_dma);
4697 nw64(TXDMA_MBH(channel), rp->mbox_dma >> 32);
4698 nw64(TXDMA_MBL(channel), rp->mbox_dma & TXDMA_MBL_MBADDR);
4700 nw64(TX_CS(channel), 0);
4702 rp->last_pkt_cnt = 0;
4707 static void niu_init_rdc_groups(struct niu *np)
4709 struct niu_rdc_tables *tp = &np->parent->rdc_group_cfg[np->port];
4710 int i, first_table_num = tp->first_table_num;
4712 for (i = 0; i < tp->num_tables; i++) {
4713 struct rdc_table *tbl = &tp->tables[i];
4714 int this_table = first_table_num + i;
4717 for (slot = 0; slot < NIU_RDC_TABLE_SLOTS; slot++)
4718 nw64(RDC_TBL(this_table, slot),
4719 tbl->rxdma_channel[slot]);
4722 nw64(DEF_RDC(np->port), np->parent->rdc_default[np->port]);
4725 static void niu_init_drr_weight(struct niu *np)
4727 int type = phy_decode(np->parent->port_phy, np->port);
4732 val = PT_DRR_WEIGHT_DEFAULT_10G;
4737 val = PT_DRR_WEIGHT_DEFAULT_1G;
4740 nw64(PT_DRR_WT(np->port), val);
4743 static int niu_init_hostinfo(struct niu *np)
4745 struct niu_parent *parent = np->parent;
4746 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
4747 int i, err, num_alt = niu_num_alt_addr(np);
4748 int first_rdc_table = tp->first_table_num;
4750 err = niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
4754 err = niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
4758 for (i = 0; i < num_alt; i++) {
4759 err = niu_set_alt_mac_rdc_table(np, i, first_rdc_table, 1);
4767 static int niu_rx_channel_reset(struct niu *np, int channel)
4769 return niu_set_and_wait_clear(np, RXDMA_CFIG1(channel),
4770 RXDMA_CFIG1_RST, 1000, 10,
4774 static int niu_rx_channel_lpage_init(struct niu *np, int channel)
4778 nw64(RX_LOG_MASK1(channel), 0);
4779 nw64(RX_LOG_VAL1(channel), 0);
4780 nw64(RX_LOG_MASK2(channel), 0);
4781 nw64(RX_LOG_VAL2(channel), 0);
4782 nw64(RX_LOG_PAGE_RELO1(channel), 0);
4783 nw64(RX_LOG_PAGE_RELO2(channel), 0);
4784 nw64(RX_LOG_PAGE_HDL(channel), 0);
4786 val = (u64)np->port << RX_LOG_PAGE_VLD_FUNC_SHIFT;
4787 val |= (RX_LOG_PAGE_VLD_PAGE0 | RX_LOG_PAGE_VLD_PAGE1);
4788 nw64(RX_LOG_PAGE_VLD(channel), val);
4793 static void niu_rx_channel_wred_init(struct niu *np, struct rx_ring_info *rp)
4797 val = (((u64)rp->nonsyn_window << RDC_RED_PARA_WIN_SHIFT) |
4798 ((u64)rp->nonsyn_threshold << RDC_RED_PARA_THRE_SHIFT) |
4799 ((u64)rp->syn_window << RDC_RED_PARA_WIN_SYN_SHIFT) |
4800 ((u64)rp->syn_threshold << RDC_RED_PARA_THRE_SYN_SHIFT));
4801 nw64(RDC_RED_PARA(rp->rx_channel), val);
4804 static int niu_compute_rbr_cfig_b(struct rx_ring_info *rp, u64 *ret)
4809 switch (rp->rbr_block_size) {
4811 val |= (RBR_BLKSIZE_4K << RBR_CFIG_B_BLKSIZE_SHIFT);
4814 val |= (RBR_BLKSIZE_8K << RBR_CFIG_B_BLKSIZE_SHIFT);
4817 val |= (RBR_BLKSIZE_16K << RBR_CFIG_B_BLKSIZE_SHIFT);
4820 val |= (RBR_BLKSIZE_32K << RBR_CFIG_B_BLKSIZE_SHIFT);
4825 val |= RBR_CFIG_B_VLD2;
4826 switch (rp->rbr_sizes[2]) {
4828 val |= (RBR_BUFSZ2_2K << RBR_CFIG_B_BUFSZ2_SHIFT);
4831 val |= (RBR_BUFSZ2_4K << RBR_CFIG_B_BUFSZ2_SHIFT);
4834 val |= (RBR_BUFSZ2_8K << RBR_CFIG_B_BUFSZ2_SHIFT);
4837 val |= (RBR_BUFSZ2_16K << RBR_CFIG_B_BUFSZ2_SHIFT);
4843 val |= RBR_CFIG_B_VLD1;
4844 switch (rp->rbr_sizes[1]) {
4846 val |= (RBR_BUFSZ1_1K << RBR_CFIG_B_BUFSZ1_SHIFT);
4849 val |= (RBR_BUFSZ1_2K << RBR_CFIG_B_BUFSZ1_SHIFT);
4852 val |= (RBR_BUFSZ1_4K << RBR_CFIG_B_BUFSZ1_SHIFT);
4855 val |= (RBR_BUFSZ1_8K << RBR_CFIG_B_BUFSZ1_SHIFT);
4861 val |= RBR_CFIG_B_VLD0;
4862 switch (rp->rbr_sizes[0]) {
4864 val |= (RBR_BUFSZ0_256 << RBR_CFIG_B_BUFSZ0_SHIFT);
4867 val |= (RBR_BUFSZ0_512 << RBR_CFIG_B_BUFSZ0_SHIFT);
4870 val |= (RBR_BUFSZ0_1K << RBR_CFIG_B_BUFSZ0_SHIFT);
4873 val |= (RBR_BUFSZ0_2K << RBR_CFIG_B_BUFSZ0_SHIFT);
4884 static int niu_enable_rx_channel(struct niu *np, int channel, int on)
4886 u64 val = nr64(RXDMA_CFIG1(channel));
4890 val |= RXDMA_CFIG1_EN;
4892 val &= ~RXDMA_CFIG1_EN;
4893 nw64(RXDMA_CFIG1(channel), val);
4896 while (--limit > 0) {
4897 if (nr64(RXDMA_CFIG1(channel)) & RXDMA_CFIG1_QST)
4906 static int niu_init_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
4908 int err, channel = rp->rx_channel;
4911 err = niu_rx_channel_reset(np, channel);
4915 err = niu_rx_channel_lpage_init(np, channel);
4919 niu_rx_channel_wred_init(np, rp);
4921 nw64(RX_DMA_ENT_MSK(channel), RX_DMA_ENT_MSK_RBR_EMPTY);
4922 nw64(RX_DMA_CTL_STAT(channel),
4923 (RX_DMA_CTL_STAT_MEX |
4924 RX_DMA_CTL_STAT_RCRTHRES |
4925 RX_DMA_CTL_STAT_RCRTO |
4926 RX_DMA_CTL_STAT_RBR_EMPTY));
4927 nw64(RXDMA_CFIG1(channel), rp->mbox_dma >> 32);
4928 nw64(RXDMA_CFIG2(channel),
4929 ((rp->mbox_dma & RXDMA_CFIG2_MBADDR_L) |
4930 RXDMA_CFIG2_FULL_HDR));
4931 nw64(RBR_CFIG_A(channel),
4932 ((u64)rp->rbr_table_size << RBR_CFIG_A_LEN_SHIFT) |
4933 (rp->rbr_dma & (RBR_CFIG_A_STADDR_BASE | RBR_CFIG_A_STADDR)));
4934 err = niu_compute_rbr_cfig_b(rp, &val);
4937 nw64(RBR_CFIG_B(channel), val);
4938 nw64(RCRCFIG_A(channel),
4939 ((u64)rp->rcr_table_size << RCRCFIG_A_LEN_SHIFT) |
4940 (rp->rcr_dma & (RCRCFIG_A_STADDR_BASE | RCRCFIG_A_STADDR)));
4941 nw64(RCRCFIG_B(channel),
4942 ((u64)rp->rcr_pkt_threshold << RCRCFIG_B_PTHRES_SHIFT) |
4944 ((u64)rp->rcr_timeout << RCRCFIG_B_TIMEOUT_SHIFT));
4946 err = niu_enable_rx_channel(np, channel, 1);
4950 nw64(RBR_KICK(channel), rp->rbr_index);
4952 val = nr64(RX_DMA_CTL_STAT(channel));
4953 val |= RX_DMA_CTL_STAT_RBR_EMPTY;
4954 nw64(RX_DMA_CTL_STAT(channel), val);
4959 static int niu_init_rx_channels(struct niu *np)
4961 unsigned long flags;
4962 u64 seed = jiffies_64;
4965 niu_lock_parent(np, flags);
4966 nw64(RX_DMA_CK_DIV, np->parent->rxdma_clock_divider);
4967 nw64(RED_RAN_INIT, RED_RAN_INIT_OPMODE | (seed & RED_RAN_INIT_VAL));
4968 niu_unlock_parent(np, flags);
4970 /* XXX RXDMA 32bit mode? XXX */
4972 niu_init_rdc_groups(np);
4973 niu_init_drr_weight(np);
4975 err = niu_init_hostinfo(np);
4979 for (i = 0; i < np->num_rx_rings; i++) {
4980 struct rx_ring_info *rp = &np->rx_rings[i];
4982 err = niu_init_one_rx_channel(np, rp);
4990 static int niu_set_ip_frag_rule(struct niu *np)
4992 struct niu_parent *parent = np->parent;
4993 struct niu_classifier *cp = &np->clas;
4994 struct niu_tcam_entry *tp;
4997 index = cp->tcam_top;
4998 tp = &parent->tcam[index];
5000 /* Note that the noport bit is the same in both ipv4 and
5001 * ipv6 format TCAM entries.
5003 memset(tp, 0, sizeof(*tp));
5004 tp->key[1] = TCAM_V4KEY1_NOPORT;
5005 tp->key_mask[1] = TCAM_V4KEY1_NOPORT;
5006 tp->assoc_data = (TCAM_ASSOCDATA_TRES_USE_OFFSET |
5007 ((u64)0 << TCAM_ASSOCDATA_OFFSET_SHIFT));
5008 err = tcam_write(np, index, tp->key, tp->key_mask);
5011 err = tcam_assoc_write(np, index, tp->assoc_data);
5015 cp->tcam_valid_entries++;
5020 static int niu_init_classifier_hw(struct niu *np)
5022 struct niu_parent *parent = np->parent;
5023 struct niu_classifier *cp = &np->clas;
5026 nw64(H1POLY, cp->h1_init);
5027 nw64(H2POLY, cp->h2_init);
5029 err = niu_init_hostinfo(np);
5033 for (i = 0; i < ENET_VLAN_TBL_NUM_ENTRIES; i++) {
5034 struct niu_vlan_rdc *vp = &cp->vlan_mappings[i];
5036 vlan_tbl_write(np, i, np->port,
5037 vp->vlan_pref, vp->rdc_num);
5040 for (i = 0; i < cp->num_alt_mac_mappings; i++) {
5041 struct niu_altmac_rdc *ap = &cp->alt_mac_mappings[i];
5043 err = niu_set_alt_mac_rdc_table(np, ap->alt_mac_num,
5044 ap->rdc_num, ap->mac_pref);
5049 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_SCTP_IPV6; i++) {
5050 int index = i - CLASS_CODE_USER_PROG1;
5052 err = niu_set_tcam_key(np, i, parent->tcam_key[index]);
5055 err = niu_set_flow_key(np, i, parent->flow_key[index]);
5060 err = niu_set_ip_frag_rule(np);
5069 static int niu_zcp_write(struct niu *np, int index, u64 *data)
5071 nw64(ZCP_RAM_DATA0, data[0]);
5072 nw64(ZCP_RAM_DATA1, data[1]);
5073 nw64(ZCP_RAM_DATA2, data[2]);
5074 nw64(ZCP_RAM_DATA3, data[3]);
5075 nw64(ZCP_RAM_DATA4, data[4]);
5076 nw64(ZCP_RAM_BE, ZCP_RAM_BE_VAL);
5078 (ZCP_RAM_ACC_WRITE |
5079 (0 << ZCP_RAM_ACC_ZFCID_SHIFT) |
5080 (ZCP_RAM_SEL_CFIFO(np->port) << ZCP_RAM_ACC_RAM_SEL_SHIFT)));
5082 return niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
5086 static int niu_zcp_read(struct niu *np, int index, u64 *data)
5090 err = niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
5093 netdev_err(np->dev, "ZCP read busy won't clear, ZCP_RAM_ACC[%llx]\n",
5094 (unsigned long long)nr64(ZCP_RAM_ACC));
5100 (0 << ZCP_RAM_ACC_ZFCID_SHIFT) |
5101 (ZCP_RAM_SEL_CFIFO(np->port) << ZCP_RAM_ACC_RAM_SEL_SHIFT)));
5103 err = niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
5106 netdev_err(np->dev, "ZCP read busy2 won't clear, ZCP_RAM_ACC[%llx]\n",
5107 (unsigned long long)nr64(ZCP_RAM_ACC));
5111 data[0] = nr64(ZCP_RAM_DATA0);
5112 data[1] = nr64(ZCP_RAM_DATA1);
5113 data[2] = nr64(ZCP_RAM_DATA2);
5114 data[3] = nr64(ZCP_RAM_DATA3);
5115 data[4] = nr64(ZCP_RAM_DATA4);
5120 static void niu_zcp_cfifo_reset(struct niu *np)
5122 u64 val = nr64(RESET_CFIFO);
5124 val |= RESET_CFIFO_RST(np->port);
5125 nw64(RESET_CFIFO, val);
5128 val &= ~RESET_CFIFO_RST(np->port);
5129 nw64(RESET_CFIFO, val);
5132 static int niu_init_zcp(struct niu *np)
5134 u64 data[5], rbuf[5];
5137 if (np->parent->plat_type != PLAT_TYPE_NIU) {
5138 if (np->port == 0 || np->port == 1)
5139 max = ATLAS_P0_P1_CFIFO_ENTRIES;
5141 max = ATLAS_P2_P3_CFIFO_ENTRIES;
5143 max = NIU_CFIFO_ENTRIES;
5151 for (i = 0; i < max; i++) {
5152 err = niu_zcp_write(np, i, data);
5155 err = niu_zcp_read(np, i, rbuf);
5160 niu_zcp_cfifo_reset(np);
5161 nw64(CFIFO_ECC(np->port), 0);
5162 nw64(ZCP_INT_STAT, ZCP_INT_STAT_ALL);
5163 (void) nr64(ZCP_INT_STAT);
5164 nw64(ZCP_INT_MASK, ZCP_INT_MASK_ALL);
5169 static void niu_ipp_write(struct niu *np, int index, u64 *data)
5171 u64 val = nr64_ipp(IPP_CFIG);
5173 nw64_ipp(IPP_CFIG, val | IPP_CFIG_DFIFO_PIO_W);
5174 nw64_ipp(IPP_DFIFO_WR_PTR, index);
5175 nw64_ipp(IPP_DFIFO_WR0, data[0]);
5176 nw64_ipp(IPP_DFIFO_WR1, data[1]);
5177 nw64_ipp(IPP_DFIFO_WR2, data[2]);
5178 nw64_ipp(IPP_DFIFO_WR3, data[3]);
5179 nw64_ipp(IPP_DFIFO_WR4, data[4]);
5180 nw64_ipp(IPP_CFIG, val & ~IPP_CFIG_DFIFO_PIO_W);
5183 static void niu_ipp_read(struct niu *np, int index, u64 *data)
5185 nw64_ipp(IPP_DFIFO_RD_PTR, index);
5186 data[0] = nr64_ipp(IPP_DFIFO_RD0);
5187 data[1] = nr64_ipp(IPP_DFIFO_RD1);
5188 data[2] = nr64_ipp(IPP_DFIFO_RD2);
5189 data[3] = nr64_ipp(IPP_DFIFO_RD3);
5190 data[4] = nr64_ipp(IPP_DFIFO_RD4);
5193 static int niu_ipp_reset(struct niu *np)
5195 return niu_set_and_wait_clear_ipp(np, IPP_CFIG, IPP_CFIG_SOFT_RST,
5196 1000, 100, "IPP_CFIG");
5199 static int niu_init_ipp(struct niu *np)
5201 u64 data[5], rbuf[5], val;
5204 if (np->parent->plat_type != PLAT_TYPE_NIU) {
5205 if (np->port == 0 || np->port == 1)
5206 max = ATLAS_P0_P1_DFIFO_ENTRIES;
5208 max = ATLAS_P2_P3_DFIFO_ENTRIES;
5210 max = NIU_DFIFO_ENTRIES;
5218 for (i = 0; i < max; i++) {
5219 niu_ipp_write(np, i, data);
5220 niu_ipp_read(np, i, rbuf);
5223 (void) nr64_ipp(IPP_INT_STAT);
5224 (void) nr64_ipp(IPP_INT_STAT);
5226 err = niu_ipp_reset(np);
5230 (void) nr64_ipp(IPP_PKT_DIS);
5231 (void) nr64_ipp(IPP_BAD_CS_CNT);
5232 (void) nr64_ipp(IPP_ECC);
5234 (void) nr64_ipp(IPP_INT_STAT);
5236 nw64_ipp(IPP_MSK, ~IPP_MSK_ALL);
5238 val = nr64_ipp(IPP_CFIG);
5239 val &= ~IPP_CFIG_IP_MAX_PKT;
5240 val |= (IPP_CFIG_IPP_ENABLE |
5241 IPP_CFIG_DFIFO_ECC_EN |
5242 IPP_CFIG_DROP_BAD_CRC |
5244 (0x1ffff << IPP_CFIG_IP_MAX_PKT_SHIFT));
5245 nw64_ipp(IPP_CFIG, val);
5250 static void niu_handle_led(struct niu *np, int status)
5253 val = nr64_mac(XMAC_CONFIG);
5255 if ((np->flags & NIU_FLAGS_10G) != 0 &&
5256 (np->flags & NIU_FLAGS_FIBER) != 0) {
5258 val |= XMAC_CONFIG_LED_POLARITY;
5259 val &= ~XMAC_CONFIG_FORCE_LED_ON;
5261 val |= XMAC_CONFIG_FORCE_LED_ON;
5262 val &= ~XMAC_CONFIG_LED_POLARITY;
5266 nw64_mac(XMAC_CONFIG, val);
5269 static void niu_init_xif_xmac(struct niu *np)
5271 struct niu_link_config *lp = &np->link_config;
5274 if (np->flags & NIU_FLAGS_XCVR_SERDES) {
5275 val = nr64(MIF_CONFIG);
5276 val |= MIF_CONFIG_ATCA_GE;
5277 nw64(MIF_CONFIG, val);
5280 val = nr64_mac(XMAC_CONFIG);
5281 val &= ~XMAC_CONFIG_SEL_POR_CLK_SRC;
5283 val |= XMAC_CONFIG_TX_OUTPUT_EN;
5285 if (lp->loopback_mode == LOOPBACK_MAC) {
5286 val &= ~XMAC_CONFIG_SEL_POR_CLK_SRC;
5287 val |= XMAC_CONFIG_LOOPBACK;
5289 val &= ~XMAC_CONFIG_LOOPBACK;
5292 if (np->flags & NIU_FLAGS_10G) {
5293 val &= ~XMAC_CONFIG_LFS_DISABLE;
5295 val |= XMAC_CONFIG_LFS_DISABLE;
5296 if (!(np->flags & NIU_FLAGS_FIBER) &&
5297 !(np->flags & NIU_FLAGS_XCVR_SERDES))
5298 val |= XMAC_CONFIG_1G_PCS_BYPASS;
5300 val &= ~XMAC_CONFIG_1G_PCS_BYPASS;
5303 val &= ~XMAC_CONFIG_10G_XPCS_BYPASS;
5305 if (lp->active_speed == SPEED_100)
5306 val |= XMAC_CONFIG_SEL_CLK_25MHZ;
5308 val &= ~XMAC_CONFIG_SEL_CLK_25MHZ;
5310 nw64_mac(XMAC_CONFIG, val);
5312 val = nr64_mac(XMAC_CONFIG);
5313 val &= ~XMAC_CONFIG_MODE_MASK;
5314 if (np->flags & NIU_FLAGS_10G) {
5315 val |= XMAC_CONFIG_MODE_XGMII;
5317 if (lp->active_speed == SPEED_1000)
5318 val |= XMAC_CONFIG_MODE_GMII;
5320 val |= XMAC_CONFIG_MODE_MII;
5323 nw64_mac(XMAC_CONFIG, val);
5326 static void niu_init_xif_bmac(struct niu *np)
5328 struct niu_link_config *lp = &np->link_config;
5331 val = BMAC_XIF_CONFIG_TX_OUTPUT_EN;
5333 if (lp->loopback_mode == LOOPBACK_MAC)
5334 val |= BMAC_XIF_CONFIG_MII_LOOPBACK;
5336 val &= ~BMAC_XIF_CONFIG_MII_LOOPBACK;
5338 if (lp->active_speed == SPEED_1000)
5339 val |= BMAC_XIF_CONFIG_GMII_MODE;
5341 val &= ~BMAC_XIF_CONFIG_GMII_MODE;
5343 val &= ~(BMAC_XIF_CONFIG_LINK_LED |
5344 BMAC_XIF_CONFIG_LED_POLARITY);
5346 if (!(np->flags & NIU_FLAGS_10G) &&
5347 !(np->flags & NIU_FLAGS_FIBER) &&
5348 lp->active_speed == SPEED_100)
5349 val |= BMAC_XIF_CONFIG_25MHZ_CLOCK;
5351 val &= ~BMAC_XIF_CONFIG_25MHZ_CLOCK;
5353 nw64_mac(BMAC_XIF_CONFIG, val);
5356 static void niu_init_xif(struct niu *np)
5358 if (np->flags & NIU_FLAGS_XMAC)
5359 niu_init_xif_xmac(np);
5361 niu_init_xif_bmac(np);
5364 static void niu_pcs_mii_reset(struct niu *np)
5367 u64 val = nr64_pcs(PCS_MII_CTL);
5368 val |= PCS_MII_CTL_RST;
5369 nw64_pcs(PCS_MII_CTL, val);
5370 while ((--limit >= 0) && (val & PCS_MII_CTL_RST)) {
5372 val = nr64_pcs(PCS_MII_CTL);
5376 static void niu_xpcs_reset(struct niu *np)
5379 u64 val = nr64_xpcs(XPCS_CONTROL1);
5380 val |= XPCS_CONTROL1_RESET;
5381 nw64_xpcs(XPCS_CONTROL1, val);
5382 while ((--limit >= 0) && (val & XPCS_CONTROL1_RESET)) {
5384 val = nr64_xpcs(XPCS_CONTROL1);
5388 static int niu_init_pcs(struct niu *np)
5390 struct niu_link_config *lp = &np->link_config;
5393 switch (np->flags & (NIU_FLAGS_10G |
5395 NIU_FLAGS_XCVR_SERDES)) {
5396 case NIU_FLAGS_FIBER:
5398 nw64_pcs(PCS_CONF, PCS_CONF_MASK | PCS_CONF_ENABLE);
5399 nw64_pcs(PCS_DPATH_MODE, 0);
5400 niu_pcs_mii_reset(np);
5404 case NIU_FLAGS_10G | NIU_FLAGS_FIBER:
5405 case NIU_FLAGS_10G | NIU_FLAGS_XCVR_SERDES:
5407 if (!(np->flags & NIU_FLAGS_XMAC))
5410 /* 10G copper or fiber */
5411 val = nr64_mac(XMAC_CONFIG);
5412 val &= ~XMAC_CONFIG_10G_XPCS_BYPASS;
5413 nw64_mac(XMAC_CONFIG, val);
5417 val = nr64_xpcs(XPCS_CONTROL1);
5418 if (lp->loopback_mode == LOOPBACK_PHY)
5419 val |= XPCS_CONTROL1_LOOPBACK;
5421 val &= ~XPCS_CONTROL1_LOOPBACK;
5422 nw64_xpcs(XPCS_CONTROL1, val);
5424 nw64_xpcs(XPCS_DESKEW_ERR_CNT, 0);
5425 (void) nr64_xpcs(XPCS_SYMERR_CNT01);
5426 (void) nr64_xpcs(XPCS_SYMERR_CNT23);
5430 case NIU_FLAGS_XCVR_SERDES:
5432 niu_pcs_mii_reset(np);
5433 nw64_pcs(PCS_CONF, PCS_CONF_MASK | PCS_CONF_ENABLE);
5434 nw64_pcs(PCS_DPATH_MODE, 0);
5439 case NIU_FLAGS_XCVR_SERDES | NIU_FLAGS_FIBER:
5440 /* 1G RGMII FIBER */
5441 nw64_pcs(PCS_DPATH_MODE, PCS_DPATH_MODE_MII);
5442 niu_pcs_mii_reset(np);
5452 static int niu_reset_tx_xmac(struct niu *np)
5454 return niu_set_and_wait_clear_mac(np, XTXMAC_SW_RST,
5455 (XTXMAC_SW_RST_REG_RS |
5456 XTXMAC_SW_RST_SOFT_RST),
5457 1000, 100, "XTXMAC_SW_RST");
5460 static int niu_reset_tx_bmac(struct niu *np)
5464 nw64_mac(BTXMAC_SW_RST, BTXMAC_SW_RST_RESET);
5466 while (--limit >= 0) {
5467 if (!(nr64_mac(BTXMAC_SW_RST) & BTXMAC_SW_RST_RESET))
5472 dev_err(np->device, "Port %u TX BMAC would not reset, BTXMAC_SW_RST[%llx]\n",
5474 (unsigned long long) nr64_mac(BTXMAC_SW_RST));
5481 static int niu_reset_tx_mac(struct niu *np)
5483 if (np->flags & NIU_FLAGS_XMAC)
5484 return niu_reset_tx_xmac(np);
5486 return niu_reset_tx_bmac(np);
5489 static void niu_init_tx_xmac(struct niu *np, u64 min, u64 max)
5493 val = nr64_mac(XMAC_MIN);
5494 val &= ~(XMAC_MIN_TX_MIN_PKT_SIZE |
5495 XMAC_MIN_RX_MIN_PKT_SIZE);
5496 val |= (min << XMAC_MIN_RX_MIN_PKT_SIZE_SHFT);
5497 val |= (min << XMAC_MIN_TX_MIN_PKT_SIZE_SHFT);
5498 nw64_mac(XMAC_MIN, val);
5500 nw64_mac(XMAC_MAX, max);
5502 nw64_mac(XTXMAC_STAT_MSK, ~(u64)0);
5504 val = nr64_mac(XMAC_IPG);
5505 if (np->flags & NIU_FLAGS_10G) {
5506 val &= ~XMAC_IPG_IPG_XGMII;
5507 val |= (IPG_12_15_XGMII << XMAC_IPG_IPG_XGMII_SHIFT);
5509 val &= ~XMAC_IPG_IPG_MII_GMII;
5510 val |= (IPG_12_MII_GMII << XMAC_IPG_IPG_MII_GMII_SHIFT);
5512 nw64_mac(XMAC_IPG, val);
5514 val = nr64_mac(XMAC_CONFIG);
5515 val &= ~(XMAC_CONFIG_ALWAYS_NO_CRC |
5516 XMAC_CONFIG_STRETCH_MODE |
5517 XMAC_CONFIG_VAR_MIN_IPG_EN |
5518 XMAC_CONFIG_TX_ENABLE);
5519 nw64_mac(XMAC_CONFIG, val);
5521 nw64_mac(TXMAC_FRM_CNT, 0);
5522 nw64_mac(TXMAC_BYTE_CNT, 0);
5525 static void niu_init_tx_bmac(struct niu *np, u64 min, u64 max)
5529 nw64_mac(BMAC_MIN_FRAME, min);
5530 nw64_mac(BMAC_MAX_FRAME, max);
5532 nw64_mac(BTXMAC_STATUS_MASK, ~(u64)0);
5533 nw64_mac(BMAC_CTRL_TYPE, 0x8808);
5534 nw64_mac(BMAC_PREAMBLE_SIZE, 7);
5536 val = nr64_mac(BTXMAC_CONFIG);
5537 val &= ~(BTXMAC_CONFIG_FCS_DISABLE |
5538 BTXMAC_CONFIG_ENABLE);
5539 nw64_mac(BTXMAC_CONFIG, val);
5542 static void niu_init_tx_mac(struct niu *np)
5547 if (np->dev->mtu > ETH_DATA_LEN)
5552 /* The XMAC_MIN register only accepts values for TX min which
5553 * have the low 3 bits cleared.
5557 if (np->flags & NIU_FLAGS_XMAC)
5558 niu_init_tx_xmac(np, min, max);
5560 niu_init_tx_bmac(np, min, max);
5563 static int niu_reset_rx_xmac(struct niu *np)
5567 nw64_mac(XRXMAC_SW_RST,
5568 XRXMAC_SW_RST_REG_RS | XRXMAC_SW_RST_SOFT_RST);
5570 while (--limit >= 0) {
5571 if (!(nr64_mac(XRXMAC_SW_RST) & (XRXMAC_SW_RST_REG_RS |
5572 XRXMAC_SW_RST_SOFT_RST)))
5577 dev_err(np->device, "Port %u RX XMAC would not reset, XRXMAC_SW_RST[%llx]\n",
5579 (unsigned long long) nr64_mac(XRXMAC_SW_RST));
5586 static int niu_reset_rx_bmac(struct niu *np)
5590 nw64_mac(BRXMAC_SW_RST, BRXMAC_SW_RST_RESET);
5592 while (--limit >= 0) {
5593 if (!(nr64_mac(BRXMAC_SW_RST) & BRXMAC_SW_RST_RESET))
5598 dev_err(np->device, "Port %u RX BMAC would not reset, BRXMAC_SW_RST[%llx]\n",
5600 (unsigned long long) nr64_mac(BRXMAC_SW_RST));
5607 static int niu_reset_rx_mac(struct niu *np)
5609 if (np->flags & NIU_FLAGS_XMAC)
5610 return niu_reset_rx_xmac(np);
5612 return niu_reset_rx_bmac(np);
5615 static void niu_init_rx_xmac(struct niu *np)
5617 struct niu_parent *parent = np->parent;
5618 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
5619 int first_rdc_table = tp->first_table_num;
5623 nw64_mac(XMAC_ADD_FILT0, 0);
5624 nw64_mac(XMAC_ADD_FILT1, 0);
5625 nw64_mac(XMAC_ADD_FILT2, 0);
5626 nw64_mac(XMAC_ADD_FILT12_MASK, 0);
5627 nw64_mac(XMAC_ADD_FILT00_MASK, 0);
5628 for (i = 0; i < MAC_NUM_HASH; i++)
5629 nw64_mac(XMAC_HASH_TBL(i), 0);
5630 nw64_mac(XRXMAC_STAT_MSK, ~(u64)0);
5631 niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
5632 niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
5634 val = nr64_mac(XMAC_CONFIG);
5635 val &= ~(XMAC_CONFIG_RX_MAC_ENABLE |
5636 XMAC_CONFIG_PROMISCUOUS |
5637 XMAC_CONFIG_PROMISC_GROUP |
5638 XMAC_CONFIG_ERR_CHK_DIS |
5639 XMAC_CONFIG_RX_CRC_CHK_DIS |
5640 XMAC_CONFIG_RESERVED_MULTICAST |
5641 XMAC_CONFIG_RX_CODEV_CHK_DIS |
5642 XMAC_CONFIG_ADDR_FILTER_EN |
5643 XMAC_CONFIG_RCV_PAUSE_ENABLE |
5644 XMAC_CONFIG_STRIP_CRC |
5645 XMAC_CONFIG_PASS_FLOW_CTRL |
5646 XMAC_CONFIG_MAC2IPP_PKT_CNT_EN);
5647 val |= (XMAC_CONFIG_HASH_FILTER_EN);
5648 nw64_mac(XMAC_CONFIG, val);
5650 nw64_mac(RXMAC_BT_CNT, 0);
5651 nw64_mac(RXMAC_BC_FRM_CNT, 0);
5652 nw64_mac(RXMAC_MC_FRM_CNT, 0);
5653 nw64_mac(RXMAC_FRAG_CNT, 0);
5654 nw64_mac(RXMAC_HIST_CNT1, 0);
5655 nw64_mac(RXMAC_HIST_CNT2, 0);
5656 nw64_mac(RXMAC_HIST_CNT3, 0);
5657 nw64_mac(RXMAC_HIST_CNT4, 0);
5658 nw64_mac(RXMAC_HIST_CNT5, 0);
5659 nw64_mac(RXMAC_HIST_CNT6, 0);
5660 nw64_mac(RXMAC_HIST_CNT7, 0);
5661 nw64_mac(RXMAC_MPSZER_CNT, 0);
5662 nw64_mac(RXMAC_CRC_ER_CNT, 0);
5663 nw64_mac(RXMAC_CD_VIO_CNT, 0);
5664 nw64_mac(LINK_FAULT_CNT, 0);
5667 static void niu_init_rx_bmac(struct niu *np)
5669 struct niu_parent *parent = np->parent;
5670 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
5671 int first_rdc_table = tp->first_table_num;
5675 nw64_mac(BMAC_ADD_FILT0, 0);
5676 nw64_mac(BMAC_ADD_FILT1, 0);
5677 nw64_mac(BMAC_ADD_FILT2, 0);
5678 nw64_mac(BMAC_ADD_FILT12_MASK, 0);
5679 nw64_mac(BMAC_ADD_FILT00_MASK, 0);
5680 for (i = 0; i < MAC_NUM_HASH; i++)
5681 nw64_mac(BMAC_HASH_TBL(i), 0);
5682 niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
5683 niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
5684 nw64_mac(BRXMAC_STATUS_MASK, ~(u64)0);
5686 val = nr64_mac(BRXMAC_CONFIG);
5687 val &= ~(BRXMAC_CONFIG_ENABLE |
5688 BRXMAC_CONFIG_STRIP_PAD |
5689 BRXMAC_CONFIG_STRIP_FCS |
5690 BRXMAC_CONFIG_PROMISC |
5691 BRXMAC_CONFIG_PROMISC_GRP |
5692 BRXMAC_CONFIG_ADDR_FILT_EN |
5693 BRXMAC_CONFIG_DISCARD_DIS);
5694 val |= (BRXMAC_CONFIG_HASH_FILT_EN);
5695 nw64_mac(BRXMAC_CONFIG, val);
5697 val = nr64_mac(BMAC_ADDR_CMPEN);
5698 val |= BMAC_ADDR_CMPEN_EN0;
5699 nw64_mac(BMAC_ADDR_CMPEN, val);
5702 static void niu_init_rx_mac(struct niu *np)
5704 niu_set_primary_mac(np, np->dev->dev_addr);
5706 if (np->flags & NIU_FLAGS_XMAC)
5707 niu_init_rx_xmac(np);
5709 niu_init_rx_bmac(np);
5712 static void niu_enable_tx_xmac(struct niu *np, int on)
5714 u64 val = nr64_mac(XMAC_CONFIG);
5717 val |= XMAC_CONFIG_TX_ENABLE;
5719 val &= ~XMAC_CONFIG_TX_ENABLE;
5720 nw64_mac(XMAC_CONFIG, val);
5723 static void niu_enable_tx_bmac(struct niu *np, int on)
5725 u64 val = nr64_mac(BTXMAC_CONFIG);
5728 val |= BTXMAC_CONFIG_ENABLE;
5730 val &= ~BTXMAC_CONFIG_ENABLE;
5731 nw64_mac(BTXMAC_CONFIG, val);
5734 static void niu_enable_tx_mac(struct niu *np, int on)
5736 if (np->flags & NIU_FLAGS_XMAC)
5737 niu_enable_tx_xmac(np, on);
5739 niu_enable_tx_bmac(np, on);
5742 static void niu_enable_rx_xmac(struct niu *np, int on)
5744 u64 val = nr64_mac(XMAC_CONFIG);
5746 val &= ~(XMAC_CONFIG_HASH_FILTER_EN |
5747 XMAC_CONFIG_PROMISCUOUS);
5749 if (np->flags & NIU_FLAGS_MCAST)
5750 val |= XMAC_CONFIG_HASH_FILTER_EN;
5751 if (np->flags & NIU_FLAGS_PROMISC)
5752 val |= XMAC_CONFIG_PROMISCUOUS;
5755 val |= XMAC_CONFIG_RX_MAC_ENABLE;
5757 val &= ~XMAC_CONFIG_RX_MAC_ENABLE;
5758 nw64_mac(XMAC_CONFIG, val);
5761 static void niu_enable_rx_bmac(struct niu *np, int on)
5763 u64 val = nr64_mac(BRXMAC_CONFIG);
5765 val &= ~(BRXMAC_CONFIG_HASH_FILT_EN |
5766 BRXMAC_CONFIG_PROMISC);
5768 if (np->flags & NIU_FLAGS_MCAST)
5769 val |= BRXMAC_CONFIG_HASH_FILT_EN;
5770 if (np->flags & NIU_FLAGS_PROMISC)
5771 val |= BRXMAC_CONFIG_PROMISC;
5774 val |= BRXMAC_CONFIG_ENABLE;
5776 val &= ~BRXMAC_CONFIG_ENABLE;
5777 nw64_mac(BRXMAC_CONFIG, val);
5780 static void niu_enable_rx_mac(struct niu *np, int on)
5782 if (np->flags & NIU_FLAGS_XMAC)
5783 niu_enable_rx_xmac(np, on);
5785 niu_enable_rx_bmac(np, on);
5788 static int niu_init_mac(struct niu *np)
5793 err = niu_init_pcs(np);
5797 err = niu_reset_tx_mac(np);
5800 niu_init_tx_mac(np);
5801 err = niu_reset_rx_mac(np);
5804 niu_init_rx_mac(np);
5806 /* This looks hookey but the RX MAC reset we just did will
5807 * undo some of the state we setup in niu_init_tx_mac() so we
5808 * have to call it again. In particular, the RX MAC reset will
5809 * set the XMAC_MAX register back to it's default value.
5811 niu_init_tx_mac(np);
5812 niu_enable_tx_mac(np, 1);
5814 niu_enable_rx_mac(np, 1);
5819 static void niu_stop_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
5821 (void) niu_tx_channel_stop(np, rp->tx_channel);
5824 static void niu_stop_tx_channels(struct niu *np)
5828 for (i = 0; i < np->num_tx_rings; i++) {
5829 struct tx_ring_info *rp = &np->tx_rings[i];
5831 niu_stop_one_tx_channel(np, rp);
5835 static void niu_reset_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
5837 (void) niu_tx_channel_reset(np, rp->tx_channel);
5840 static void niu_reset_tx_channels(struct niu *np)
5844 for (i = 0; i < np->num_tx_rings; i++) {
5845 struct tx_ring_info *rp = &np->tx_rings[i];
5847 niu_reset_one_tx_channel(np, rp);
5851 static void niu_stop_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
5853 (void) niu_enable_rx_channel(np, rp->rx_channel, 0);
5856 static void niu_stop_rx_channels(struct niu *np)
5860 for (i = 0; i < np->num_rx_rings; i++) {
5861 struct rx_ring_info *rp = &np->rx_rings[i];
5863 niu_stop_one_rx_channel(np, rp);
5867 static void niu_reset_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
5869 int channel = rp->rx_channel;
5871 (void) niu_rx_channel_reset(np, channel);
5872 nw64(RX_DMA_ENT_MSK(channel), RX_DMA_ENT_MSK_ALL);
5873 nw64(RX_DMA_CTL_STAT(channel), 0);
5874 (void) niu_enable_rx_channel(np, channel, 0);
5877 static void niu_reset_rx_channels(struct niu *np)
5881 for (i = 0; i < np->num_rx_rings; i++) {
5882 struct rx_ring_info *rp = &np->rx_rings[i];
5884 niu_reset_one_rx_channel(np, rp);
5888 static void niu_disable_ipp(struct niu *np)
5893 rd = nr64_ipp(IPP_DFIFO_RD_PTR);
5894 wr = nr64_ipp(IPP_DFIFO_WR_PTR);
5896 while (--limit >= 0 && (rd != wr)) {
5897 rd = nr64_ipp(IPP_DFIFO_RD_PTR);
5898 wr = nr64_ipp(IPP_DFIFO_WR_PTR);
5901 (rd != 0 && wr != 1)) {
5902 netdev_err(np->dev, "IPP would not quiesce, rd_ptr[%llx] wr_ptr[%llx]\n",
5903 (unsigned long long)nr64_ipp(IPP_DFIFO_RD_PTR),
5904 (unsigned long long)nr64_ipp(IPP_DFIFO_WR_PTR));
5907 val = nr64_ipp(IPP_CFIG);
5908 val &= ~(IPP_CFIG_IPP_ENABLE |
5909 IPP_CFIG_DFIFO_ECC_EN |
5910 IPP_CFIG_DROP_BAD_CRC |
5912 nw64_ipp(IPP_CFIG, val);
5914 (void) niu_ipp_reset(np);
5917 static int niu_init_hw(struct niu *np)
5921 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize TXC\n");
5922 niu_txc_enable_port(np, 1);
5923 niu_txc_port_dma_enable(np, 1);
5924 niu_txc_set_imask(np, 0);
5926 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize TX channels\n");
5927 for (i = 0; i < np->num_tx_rings; i++) {
5928 struct tx_ring_info *rp = &np->tx_rings[i];
5930 err = niu_init_one_tx_channel(np, rp);
5935 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize RX channels\n");
5936 err = niu_init_rx_channels(np);
5938 goto out_uninit_tx_channels;
5940 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize classifier\n");
5941 err = niu_init_classifier_hw(np);
5943 goto out_uninit_rx_channels;
5945 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize ZCP\n");
5946 err = niu_init_zcp(np);
5948 goto out_uninit_rx_channels;
5950 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize IPP\n");
5951 err = niu_init_ipp(np);
5953 goto out_uninit_rx_channels;
5955 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize MAC\n");
5956 err = niu_init_mac(np);
5958 goto out_uninit_ipp;
5963 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Uninit IPP\n");
5964 niu_disable_ipp(np);
5966 out_uninit_rx_channels:
5967 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Uninit RX channels\n");
5968 niu_stop_rx_channels(np);
5969 niu_reset_rx_channels(np);
5971 out_uninit_tx_channels:
5972 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Uninit TX channels\n");
5973 niu_stop_tx_channels(np);
5974 niu_reset_tx_channels(np);
5979 static void niu_stop_hw(struct niu *np)
5981 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Disable interrupts\n");
5982 niu_enable_interrupts(np, 0);
5984 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Disable RX MAC\n");
5985 niu_enable_rx_mac(np, 0);
5987 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Disable IPP\n");
5988 niu_disable_ipp(np);
5990 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Stop TX channels\n");
5991 niu_stop_tx_channels(np);
5993 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Stop RX channels\n");
5994 niu_stop_rx_channels(np);
5996 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Reset TX channels\n");
5997 niu_reset_tx_channels(np);
5999 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Reset RX channels\n");
6000 niu_reset_rx_channels(np);
6003 static void niu_set_irq_name(struct niu *np)
6005 int port = np->port;
6008 sprintf(np->irq_name[0], "%s:MAC", np->dev->name);
6011 sprintf(np->irq_name[1], "%s:MIF", np->dev->name);
6012 sprintf(np->irq_name[2], "%s:SYSERR", np->dev->name);
6016 for (i = 0; i < np->num_ldg - j; i++) {
6017 if (i < np->num_rx_rings)
6018 sprintf(np->irq_name[i+j], "%s-rx-%d",
6020 else if (i < np->num_tx_rings + np->num_rx_rings)
6021 sprintf(np->irq_name[i+j], "%s-tx-%d", np->dev->name,
6022 i - np->num_rx_rings);
6026 static int niu_request_irq(struct niu *np)
6030 niu_set_irq_name(np);
6033 for (i = 0; i < np->num_ldg; i++) {
6034 struct niu_ldg *lp = &np->ldg[i];
6036 err = request_irq(lp->irq, niu_interrupt, IRQF_SHARED,
6037 np->irq_name[i], lp);
6046 for (j = 0; j < i; j++) {
6047 struct niu_ldg *lp = &np->ldg[j];
6049 free_irq(lp->irq, lp);
6054 static void niu_free_irq(struct niu *np)
6058 for (i = 0; i < np->num_ldg; i++) {
6059 struct niu_ldg *lp = &np->ldg[i];
6061 free_irq(lp->irq, lp);
6065 static void niu_enable_napi(struct niu *np)
6069 for (i = 0; i < np->num_ldg; i++)
6070 napi_enable(&np->ldg[i].napi);
6073 static void niu_disable_napi(struct niu *np)
6077 for (i = 0; i < np->num_ldg; i++)
6078 napi_disable(&np->ldg[i].napi);
6081 static int niu_open(struct net_device *dev)
6083 struct niu *np = netdev_priv(dev);
6086 netif_carrier_off(dev);
6088 err = niu_alloc_channels(np);
6092 err = niu_enable_interrupts(np, 0);
6094 goto out_free_channels;
6096 err = niu_request_irq(np);
6098 goto out_free_channels;
6100 niu_enable_napi(np);
6102 spin_lock_irq(&np->lock);
6104 err = niu_init_hw(np);
6106 timer_setup(&np->timer, niu_timer, 0);
6107 np->timer.expires = jiffies + HZ;
6109 err = niu_enable_interrupts(np, 1);
6114 spin_unlock_irq(&np->lock);
6117 niu_disable_napi(np);
6121 netif_tx_start_all_queues(dev);
6123 if (np->link_config.loopback_mode != LOOPBACK_DISABLED)
6124 netif_carrier_on(dev);
6126 add_timer(&np->timer);
6134 niu_free_channels(np);
6140 static void niu_full_shutdown(struct niu *np, struct net_device *dev)
6142 cancel_work_sync(&np->reset_task);
6144 niu_disable_napi(np);
6145 netif_tx_stop_all_queues(dev);
6147 del_timer_sync(&np->timer);
6149 spin_lock_irq(&np->lock);
6153 spin_unlock_irq(&np->lock);
6156 static int niu_close(struct net_device *dev)
6158 struct niu *np = netdev_priv(dev);
6160 niu_full_shutdown(np, dev);
6164 niu_free_channels(np);
6166 niu_handle_led(np, 0);
6171 static void niu_sync_xmac_stats(struct niu *np)
6173 struct niu_xmac_stats *mp = &np->mac_stats.xmac;
6175 mp->tx_frames += nr64_mac(TXMAC_FRM_CNT);
6176 mp->tx_bytes += nr64_mac(TXMAC_BYTE_CNT);
6178 mp->rx_link_faults += nr64_mac(LINK_FAULT_CNT);
6179 mp->rx_align_errors += nr64_mac(RXMAC_ALIGN_ERR_CNT);
6180 mp->rx_frags += nr64_mac(RXMAC_FRAG_CNT);
6181 mp->rx_mcasts += nr64_mac(RXMAC_MC_FRM_CNT);
6182 mp->rx_bcasts += nr64_mac(RXMAC_BC_FRM_CNT);
6183 mp->rx_hist_cnt1 += nr64_mac(RXMAC_HIST_CNT1);
6184 mp->rx_hist_cnt2 += nr64_mac(RXMAC_HIST_CNT2);
6185 mp->rx_hist_cnt3 += nr64_mac(RXMAC_HIST_CNT3);
6186 mp->rx_hist_cnt4 += nr64_mac(RXMAC_HIST_CNT4);
6187 mp->rx_hist_cnt5 += nr64_mac(RXMAC_HIST_CNT5);
6188 mp->rx_hist_cnt6 += nr64_mac(RXMAC_HIST_CNT6);
6189 mp->rx_hist_cnt7 += nr64_mac(RXMAC_HIST_CNT7);
6190 mp->rx_octets += nr64_mac(RXMAC_BT_CNT);
6191 mp->rx_code_violations += nr64_mac(RXMAC_CD_VIO_CNT);
6192 mp->rx_len_errors += nr64_mac(RXMAC_MPSZER_CNT);
6193 mp->rx_crc_errors += nr64_mac(RXMAC_CRC_ER_CNT);
6196 static void niu_sync_bmac_stats(struct niu *np)
6198 struct niu_bmac_stats *mp = &np->mac_stats.bmac;
6200 mp->tx_bytes += nr64_mac(BTXMAC_BYTE_CNT);
6201 mp->tx_frames += nr64_mac(BTXMAC_FRM_CNT);
6203 mp->rx_frames += nr64_mac(BRXMAC_FRAME_CNT);
6204 mp->rx_align_errors += nr64_mac(BRXMAC_ALIGN_ERR_CNT);
6205 mp->rx_crc_errors += nr64_mac(BRXMAC_ALIGN_ERR_CNT);
6206 mp->rx_len_errors += nr64_mac(BRXMAC_CODE_VIOL_ERR_CNT);
6209 static void niu_sync_mac_stats(struct niu *np)
6211 if (np->flags & NIU_FLAGS_XMAC)
6212 niu_sync_xmac_stats(np);
6214 niu_sync_bmac_stats(np);
6217 static void niu_get_rx_stats(struct niu *np,
6218 struct rtnl_link_stats64 *stats)
6220 u64 pkts, dropped, errors, bytes;
6221 struct rx_ring_info *rx_rings;
6224 pkts = dropped = errors = bytes = 0;
6226 rx_rings = READ_ONCE(np->rx_rings);
6230 for (i = 0; i < np->num_rx_rings; i++) {
6231 struct rx_ring_info *rp = &rx_rings[i];
6233 niu_sync_rx_discard_stats(np, rp, 0);
6235 pkts += rp->rx_packets;
6236 bytes += rp->rx_bytes;
6237 dropped += rp->rx_dropped;
6238 errors += rp->rx_errors;
6242 stats->rx_packets = pkts;
6243 stats->rx_bytes = bytes;
6244 stats->rx_dropped = dropped;
6245 stats->rx_errors = errors;
6248 static void niu_get_tx_stats(struct niu *np,
6249 struct rtnl_link_stats64 *stats)
6251 u64 pkts, errors, bytes;
6252 struct tx_ring_info *tx_rings;
6255 pkts = errors = bytes = 0;
6257 tx_rings = READ_ONCE(np->tx_rings);
6261 for (i = 0; i < np->num_tx_rings; i++) {
6262 struct tx_ring_info *rp = &tx_rings[i];
6264 pkts += rp->tx_packets;
6265 bytes += rp->tx_bytes;
6266 errors += rp->tx_errors;
6270 stats->tx_packets = pkts;
6271 stats->tx_bytes = bytes;
6272 stats->tx_errors = errors;
6275 static void niu_get_stats(struct net_device *dev,
6276 struct rtnl_link_stats64 *stats)
6278 struct niu *np = netdev_priv(dev);
6280 if (netif_running(dev)) {
6281 niu_get_rx_stats(np, stats);
6282 niu_get_tx_stats(np, stats);
6286 static void niu_load_hash_xmac(struct niu *np, u16 *hash)
6290 for (i = 0; i < 16; i++)
6291 nw64_mac(XMAC_HASH_TBL(i), hash[i]);
6294 static void niu_load_hash_bmac(struct niu *np, u16 *hash)
6298 for (i = 0; i < 16; i++)
6299 nw64_mac(BMAC_HASH_TBL(i), hash[i]);
6302 static void niu_load_hash(struct niu *np, u16 *hash)
6304 if (np->flags & NIU_FLAGS_XMAC)
6305 niu_load_hash_xmac(np, hash);
6307 niu_load_hash_bmac(np, hash);
6310 static void niu_set_rx_mode(struct net_device *dev)
6312 struct niu *np = netdev_priv(dev);
6313 int i, alt_cnt, err;
6314 struct netdev_hw_addr *ha;
6315 unsigned long flags;
6316 u16 hash[16] = { 0, };
6318 spin_lock_irqsave(&np->lock, flags);
6319 niu_enable_rx_mac(np, 0);
6321 np->flags &= ~(NIU_FLAGS_MCAST | NIU_FLAGS_PROMISC);
6322 if (dev->flags & IFF_PROMISC)
6323 np->flags |= NIU_FLAGS_PROMISC;
6324 if ((dev->flags & IFF_ALLMULTI) || (!netdev_mc_empty(dev)))
6325 np->flags |= NIU_FLAGS_MCAST;
6327 alt_cnt = netdev_uc_count(dev);
6328 if (alt_cnt > niu_num_alt_addr(np)) {
6330 np->flags |= NIU_FLAGS_PROMISC;
6336 netdev_for_each_uc_addr(ha, dev) {
6337 err = niu_set_alt_mac(np, index, ha->addr);
6339 netdev_warn(dev, "Error %d adding alt mac %d\n",
6341 err = niu_enable_alt_mac(np, index, 1);
6343 netdev_warn(dev, "Error %d enabling alt mac %d\n",
6350 if (np->flags & NIU_FLAGS_XMAC)
6354 for (i = alt_start; i < niu_num_alt_addr(np); i++) {
6355 err = niu_enable_alt_mac(np, i, 0);
6357 netdev_warn(dev, "Error %d disabling alt mac %d\n",
6361 if (dev->flags & IFF_ALLMULTI) {
6362 for (i = 0; i < 16; i++)
6364 } else if (!netdev_mc_empty(dev)) {
6365 netdev_for_each_mc_addr(ha, dev) {
6366 u32 crc = ether_crc_le(ETH_ALEN, ha->addr);
6369 hash[crc >> 4] |= (1 << (15 - (crc & 0xf)));
6373 if (np->flags & NIU_FLAGS_MCAST)
6374 niu_load_hash(np, hash);
6376 niu_enable_rx_mac(np, 1);
6377 spin_unlock_irqrestore(&np->lock, flags);
6380 static int niu_set_mac_addr(struct net_device *dev, void *p)
6382 struct niu *np = netdev_priv(dev);
6383 struct sockaddr *addr = p;
6384 unsigned long flags;
6386 if (!is_valid_ether_addr(addr->sa_data))
6387 return -EADDRNOTAVAIL;
6389 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
6391 if (!netif_running(dev))
6394 spin_lock_irqsave(&np->lock, flags);
6395 niu_enable_rx_mac(np, 0);
6396 niu_set_primary_mac(np, dev->dev_addr);
6397 niu_enable_rx_mac(np, 1);
6398 spin_unlock_irqrestore(&np->lock, flags);
6403 static int niu_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
6408 static void niu_netif_stop(struct niu *np)
6410 netif_trans_update(np->dev); /* prevent tx timeout */
6412 niu_disable_napi(np);
6414 netif_tx_disable(np->dev);
6417 static void niu_netif_start(struct niu *np)
6419 /* NOTE: unconditional netif_wake_queue is only appropriate
6420 * so long as all callers are assured to have free tx slots
6421 * (such as after niu_init_hw).
6423 netif_tx_wake_all_queues(np->dev);
6425 niu_enable_napi(np);
6427 niu_enable_interrupts(np, 1);
6430 static void niu_reset_buffers(struct niu *np)
6435 for (i = 0; i < np->num_rx_rings; i++) {
6436 struct rx_ring_info *rp = &np->rx_rings[i];
6438 for (j = 0, k = 0; j < MAX_RBR_RING_SIZE; j++) {
6441 page = rp->rxhash[j];
6444 (struct page *) page->mapping;
6445 u64 base = page->index;
6446 base = base >> RBR_DESCR_ADDR_SHIFT;
6447 rp->rbr[k++] = cpu_to_le32(base);
6451 for (; k < MAX_RBR_RING_SIZE; k++) {
6452 err = niu_rbr_add_page(np, rp, GFP_ATOMIC, k);
6457 rp->rbr_index = rp->rbr_table_size - 1;
6459 rp->rbr_pending = 0;
6460 rp->rbr_refill_pending = 0;
6464 for (i = 0; i < np->num_tx_rings; i++) {
6465 struct tx_ring_info *rp = &np->tx_rings[i];
6467 for (j = 0; j < MAX_TX_RING_SIZE; j++) {
6468 if (rp->tx_buffs[j].skb)
6469 (void) release_tx_packet(np, rp, j);
6472 rp->pending = MAX_TX_RING_SIZE;
6480 static void niu_reset_task(struct work_struct *work)
6482 struct niu *np = container_of(work, struct niu, reset_task);
6483 unsigned long flags;
6486 spin_lock_irqsave(&np->lock, flags);
6487 if (!netif_running(np->dev)) {
6488 spin_unlock_irqrestore(&np->lock, flags);
6492 spin_unlock_irqrestore(&np->lock, flags);
6494 del_timer_sync(&np->timer);
6498 spin_lock_irqsave(&np->lock, flags);
6502 spin_unlock_irqrestore(&np->lock, flags);
6504 niu_reset_buffers(np);
6506 spin_lock_irqsave(&np->lock, flags);
6508 err = niu_init_hw(np);
6510 np->timer.expires = jiffies + HZ;
6511 add_timer(&np->timer);
6512 niu_netif_start(np);
6515 spin_unlock_irqrestore(&np->lock, flags);
6518 static void niu_tx_timeout(struct net_device *dev, unsigned int txqueue)
6520 struct niu *np = netdev_priv(dev);
6522 dev_err(np->device, "%s: Transmit timed out, resetting\n",
6525 schedule_work(&np->reset_task);
6528 static void niu_set_txd(struct tx_ring_info *rp, int index,
6529 u64 mapping, u64 len, u64 mark,
6532 __le64 *desc = &rp->descr[index];
6534 *desc = cpu_to_le64(mark |
6535 (n_frags << TX_DESC_NUM_PTR_SHIFT) |
6536 (len << TX_DESC_TR_LEN_SHIFT) |
6537 (mapping & TX_DESC_SAD));
6540 static u64 niu_compute_tx_flags(struct sk_buff *skb, struct ethhdr *ehdr,
6541 u64 pad_bytes, u64 len)
6543 u16 eth_proto, eth_proto_inner;
6544 u64 csum_bits, l3off, ihl, ret;
6548 eth_proto = be16_to_cpu(ehdr->h_proto);
6549 eth_proto_inner = eth_proto;
6550 if (eth_proto == ETH_P_8021Q) {
6551 struct vlan_ethhdr *vp = (struct vlan_ethhdr *) ehdr;
6552 __be16 val = vp->h_vlan_encapsulated_proto;
6554 eth_proto_inner = be16_to_cpu(val);
6558 switch (skb->protocol) {
6559 case cpu_to_be16(ETH_P_IP):
6560 ip_proto = ip_hdr(skb)->protocol;
6561 ihl = ip_hdr(skb)->ihl;
6563 case cpu_to_be16(ETH_P_IPV6):
6564 ip_proto = ipv6_hdr(skb)->nexthdr;
6573 csum_bits = TXHDR_CSUM_NONE;
6574 if (skb->ip_summed == CHECKSUM_PARTIAL) {
6577 csum_bits = (ip_proto == IPPROTO_TCP ?
6579 (ip_proto == IPPROTO_UDP ?
6580 TXHDR_CSUM_UDP : TXHDR_CSUM_SCTP));
6582 start = skb_checksum_start_offset(skb) -
6583 (pad_bytes + sizeof(struct tx_pkt_hdr));
6584 stuff = start + skb->csum_offset;
6586 csum_bits |= (start / 2) << TXHDR_L4START_SHIFT;
6587 csum_bits |= (stuff / 2) << TXHDR_L4STUFF_SHIFT;
6590 l3off = skb_network_offset(skb) -
6591 (pad_bytes + sizeof(struct tx_pkt_hdr));
6593 ret = (((pad_bytes / 2) << TXHDR_PAD_SHIFT) |
6594 (len << TXHDR_LEN_SHIFT) |
6595 ((l3off / 2) << TXHDR_L3START_SHIFT) |
6596 (ihl << TXHDR_IHL_SHIFT) |
6597 ((eth_proto_inner < ETH_P_802_3_MIN) ? TXHDR_LLC : 0) |
6598 ((eth_proto == ETH_P_8021Q) ? TXHDR_VLAN : 0) |
6599 (ipv6 ? TXHDR_IP_VER : 0) |
6605 static netdev_tx_t niu_start_xmit(struct sk_buff *skb,
6606 struct net_device *dev)
6608 struct niu *np = netdev_priv(dev);
6609 unsigned long align, headroom;
6610 struct netdev_queue *txq;
6611 struct tx_ring_info *rp;
6612 struct tx_pkt_hdr *tp;
6613 unsigned int len, nfg;
6614 struct ethhdr *ehdr;
6618 i = skb_get_queue_mapping(skb);
6619 rp = &np->tx_rings[i];
6620 txq = netdev_get_tx_queue(dev, i);
6622 if (niu_tx_avail(rp) <= (skb_shinfo(skb)->nr_frags + 1)) {
6623 netif_tx_stop_queue(txq);
6624 dev_err(np->device, "%s: BUG! Tx ring full when queue awake!\n", dev->name);
6626 return NETDEV_TX_BUSY;
6629 if (eth_skb_pad(skb))
6632 len = sizeof(struct tx_pkt_hdr) + 15;
6633 if (skb_headroom(skb) < len) {
6634 struct sk_buff *skb_new;
6636 skb_new = skb_realloc_headroom(skb, len);
6644 align = ((unsigned long) skb->data & (16 - 1));
6645 headroom = align + sizeof(struct tx_pkt_hdr);
6647 ehdr = (struct ethhdr *) skb->data;
6648 tp = skb_push(skb, headroom);
6650 len = skb->len - sizeof(struct tx_pkt_hdr);
6651 tp->flags = cpu_to_le64(niu_compute_tx_flags(skb, ehdr, align, len));
6654 len = skb_headlen(skb);
6655 mapping = np->ops->map_single(np->device, skb->data,
6656 len, DMA_TO_DEVICE);
6660 rp->tx_buffs[prod].skb = skb;
6661 rp->tx_buffs[prod].mapping = mapping;
6664 if (++rp->mark_counter == rp->mark_freq) {
6665 rp->mark_counter = 0;
6666 mrk |= TX_DESC_MARK;
6671 nfg = skb_shinfo(skb)->nr_frags;
6673 tlen -= MAX_TX_DESC_LEN;
6678 unsigned int this_len = len;
6680 if (this_len > MAX_TX_DESC_LEN)
6681 this_len = MAX_TX_DESC_LEN;
6683 niu_set_txd(rp, prod, mapping, this_len, mrk, nfg);
6686 prod = NEXT_TX(rp, prod);
6687 mapping += this_len;
6691 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
6692 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6694 len = skb_frag_size(frag);
6695 mapping = np->ops->map_page(np->device, skb_frag_page(frag),
6696 skb_frag_off(frag), len,
6699 rp->tx_buffs[prod].skb = NULL;
6700 rp->tx_buffs[prod].mapping = mapping;
6702 niu_set_txd(rp, prod, mapping, len, 0, 0);
6704 prod = NEXT_TX(rp, prod);
6707 if (prod < rp->prod)
6708 rp->wrap_bit ^= TX_RING_KICK_WRAP;
6711 nw64(TX_RING_KICK(rp->tx_channel), rp->wrap_bit | (prod << 3));
6713 if (unlikely(niu_tx_avail(rp) <= (MAX_SKB_FRAGS + 1))) {
6714 netif_tx_stop_queue(txq);
6715 if (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp))
6716 netif_tx_wake_queue(txq);
6720 return NETDEV_TX_OK;
6728 static int niu_change_mtu(struct net_device *dev, int new_mtu)
6730 struct niu *np = netdev_priv(dev);
6731 int err, orig_jumbo, new_jumbo;
6733 orig_jumbo = (dev->mtu > ETH_DATA_LEN);
6734 new_jumbo = (new_mtu > ETH_DATA_LEN);
6738 if (!netif_running(dev) ||
6739 (orig_jumbo == new_jumbo))
6742 niu_full_shutdown(np, dev);
6744 niu_free_channels(np);
6746 niu_enable_napi(np);
6748 err = niu_alloc_channels(np);
6752 spin_lock_irq(&np->lock);
6754 err = niu_init_hw(np);
6756 timer_setup(&np->timer, niu_timer, 0);
6757 np->timer.expires = jiffies + HZ;
6759 err = niu_enable_interrupts(np, 1);
6764 spin_unlock_irq(&np->lock);
6767 netif_tx_start_all_queues(dev);
6768 if (np->link_config.loopback_mode != LOOPBACK_DISABLED)
6769 netif_carrier_on(dev);
6771 add_timer(&np->timer);
6777 static void niu_get_drvinfo(struct net_device *dev,
6778 struct ethtool_drvinfo *info)
6780 struct niu *np = netdev_priv(dev);
6781 struct niu_vpd *vpd = &np->vpd;
6783 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
6784 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
6785 snprintf(info->fw_version, sizeof(info->fw_version), "%d.%d",
6786 vpd->fcode_major, vpd->fcode_minor);
6787 if (np->parent->plat_type != PLAT_TYPE_NIU)
6788 strlcpy(info->bus_info, pci_name(np->pdev),
6789 sizeof(info->bus_info));
6792 static int niu_get_link_ksettings(struct net_device *dev,
6793 struct ethtool_link_ksettings *cmd)
6795 struct niu *np = netdev_priv(dev);
6796 struct niu_link_config *lp;
6798 lp = &np->link_config;
6800 memset(cmd, 0, sizeof(*cmd));
6801 cmd->base.phy_address = np->phy_addr;
6802 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
6804 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
6805 lp->active_advertising);
6806 cmd->base.autoneg = lp->active_autoneg;
6807 cmd->base.speed = lp->active_speed;
6808 cmd->base.duplex = lp->active_duplex;
6809 cmd->base.port = (np->flags & NIU_FLAGS_FIBER) ? PORT_FIBRE : PORT_TP;
6814 static int niu_set_link_ksettings(struct net_device *dev,
6815 const struct ethtool_link_ksettings *cmd)
6817 struct niu *np = netdev_priv(dev);
6818 struct niu_link_config *lp = &np->link_config;
6820 ethtool_convert_link_mode_to_legacy_u32(&lp->advertising,
6821 cmd->link_modes.advertising);
6822 lp->speed = cmd->base.speed;
6823 lp->duplex = cmd->base.duplex;
6824 lp->autoneg = cmd->base.autoneg;
6825 return niu_init_link(np);
6828 static u32 niu_get_msglevel(struct net_device *dev)
6830 struct niu *np = netdev_priv(dev);
6831 return np->msg_enable;
6834 static void niu_set_msglevel(struct net_device *dev, u32 value)
6836 struct niu *np = netdev_priv(dev);
6837 np->msg_enable = value;
6840 static int niu_nway_reset(struct net_device *dev)
6842 struct niu *np = netdev_priv(dev);
6844 if (np->link_config.autoneg)
6845 return niu_init_link(np);
6850 static int niu_get_eeprom_len(struct net_device *dev)
6852 struct niu *np = netdev_priv(dev);
6854 return np->eeprom_len;
6857 static int niu_get_eeprom(struct net_device *dev,
6858 struct ethtool_eeprom *eeprom, u8 *data)
6860 struct niu *np = netdev_priv(dev);
6861 u32 offset, len, val;
6863 offset = eeprom->offset;
6866 if (offset + len < offset)
6868 if (offset >= np->eeprom_len)
6870 if (offset + len > np->eeprom_len)
6871 len = eeprom->len = np->eeprom_len - offset;
6874 u32 b_offset, b_count;
6876 b_offset = offset & 3;
6877 b_count = 4 - b_offset;
6881 val = nr64(ESPC_NCR((offset - b_offset) / 4));
6882 memcpy(data, ((char *)&val) + b_offset, b_count);
6888 val = nr64(ESPC_NCR(offset / 4));
6889 memcpy(data, &val, 4);
6895 val = nr64(ESPC_NCR(offset / 4));
6896 memcpy(data, &val, len);
6901 static void niu_ethflow_to_l3proto(int flow_type, u8 *pid)
6903 switch (flow_type) {
6914 *pid = IPPROTO_SCTP;
6930 static int niu_class_to_ethflow(u64 class, int *flow_type)
6933 case CLASS_CODE_TCP_IPV4:
6934 *flow_type = TCP_V4_FLOW;
6936 case CLASS_CODE_UDP_IPV4:
6937 *flow_type = UDP_V4_FLOW;
6939 case CLASS_CODE_AH_ESP_IPV4:
6940 *flow_type = AH_V4_FLOW;
6942 case CLASS_CODE_SCTP_IPV4:
6943 *flow_type = SCTP_V4_FLOW;
6945 case CLASS_CODE_TCP_IPV6:
6946 *flow_type = TCP_V6_FLOW;
6948 case CLASS_CODE_UDP_IPV6:
6949 *flow_type = UDP_V6_FLOW;
6951 case CLASS_CODE_AH_ESP_IPV6:
6952 *flow_type = AH_V6_FLOW;
6954 case CLASS_CODE_SCTP_IPV6:
6955 *flow_type = SCTP_V6_FLOW;
6957 case CLASS_CODE_USER_PROG1:
6958 case CLASS_CODE_USER_PROG2:
6959 case CLASS_CODE_USER_PROG3:
6960 case CLASS_CODE_USER_PROG4:
6961 *flow_type = IP_USER_FLOW;
6970 static int niu_ethflow_to_class(int flow_type, u64 *class)
6972 switch (flow_type) {
6974 *class = CLASS_CODE_TCP_IPV4;
6977 *class = CLASS_CODE_UDP_IPV4;
6979 case AH_ESP_V4_FLOW:
6982 *class = CLASS_CODE_AH_ESP_IPV4;
6985 *class = CLASS_CODE_SCTP_IPV4;
6988 *class = CLASS_CODE_TCP_IPV6;
6991 *class = CLASS_CODE_UDP_IPV6;
6993 case AH_ESP_V6_FLOW:
6996 *class = CLASS_CODE_AH_ESP_IPV6;
6999 *class = CLASS_CODE_SCTP_IPV6;
7008 static u64 niu_flowkey_to_ethflow(u64 flow_key)
7012 if (flow_key & FLOW_KEY_L2DA)
7013 ethflow |= RXH_L2DA;
7014 if (flow_key & FLOW_KEY_VLAN)
7015 ethflow |= RXH_VLAN;
7016 if (flow_key & FLOW_KEY_IPSA)
7017 ethflow |= RXH_IP_SRC;
7018 if (flow_key & FLOW_KEY_IPDA)
7019 ethflow |= RXH_IP_DST;
7020 if (flow_key & FLOW_KEY_PROTO)
7021 ethflow |= RXH_L3_PROTO;
7022 if (flow_key & (FLOW_KEY_L4_BYTE12 << FLOW_KEY_L4_0_SHIFT))
7023 ethflow |= RXH_L4_B_0_1;
7024 if (flow_key & (FLOW_KEY_L4_BYTE12 << FLOW_KEY_L4_1_SHIFT))
7025 ethflow |= RXH_L4_B_2_3;
7031 static int niu_ethflow_to_flowkey(u64 ethflow, u64 *flow_key)
7035 if (ethflow & RXH_L2DA)
7036 key |= FLOW_KEY_L2DA;
7037 if (ethflow & RXH_VLAN)
7038 key |= FLOW_KEY_VLAN;
7039 if (ethflow & RXH_IP_SRC)
7040 key |= FLOW_KEY_IPSA;
7041 if (ethflow & RXH_IP_DST)
7042 key |= FLOW_KEY_IPDA;
7043 if (ethflow & RXH_L3_PROTO)
7044 key |= FLOW_KEY_PROTO;
7045 if (ethflow & RXH_L4_B_0_1)
7046 key |= (FLOW_KEY_L4_BYTE12 << FLOW_KEY_L4_0_SHIFT);
7047 if (ethflow & RXH_L4_B_2_3)
7048 key |= (FLOW_KEY_L4_BYTE12 << FLOW_KEY_L4_1_SHIFT);
7056 static int niu_get_hash_opts(struct niu *np, struct ethtool_rxnfc *nfc)
7062 if (!niu_ethflow_to_class(nfc->flow_type, &class))
7065 if (np->parent->tcam_key[class - CLASS_CODE_USER_PROG1] &
7067 nfc->data = RXH_DISCARD;
7069 nfc->data = niu_flowkey_to_ethflow(np->parent->flow_key[class -
7070 CLASS_CODE_USER_PROG1]);
7074 static void niu_get_ip4fs_from_tcam_key(struct niu_tcam_entry *tp,
7075 struct ethtool_rx_flow_spec *fsp)
7080 tmp = (tp->key[3] & TCAM_V4KEY3_SADDR) >> TCAM_V4KEY3_SADDR_SHIFT;
7081 fsp->h_u.tcp_ip4_spec.ip4src = cpu_to_be32(tmp);
7083 tmp = (tp->key[3] & TCAM_V4KEY3_DADDR) >> TCAM_V4KEY3_DADDR_SHIFT;
7084 fsp->h_u.tcp_ip4_spec.ip4dst = cpu_to_be32(tmp);
7086 tmp = (tp->key_mask[3] & TCAM_V4KEY3_SADDR) >> TCAM_V4KEY3_SADDR_SHIFT;
7087 fsp->m_u.tcp_ip4_spec.ip4src = cpu_to_be32(tmp);
7089 tmp = (tp->key_mask[3] & TCAM_V4KEY3_DADDR) >> TCAM_V4KEY3_DADDR_SHIFT;
7090 fsp->m_u.tcp_ip4_spec.ip4dst = cpu_to_be32(tmp);
7092 fsp->h_u.tcp_ip4_spec.tos = (tp->key[2] & TCAM_V4KEY2_TOS) >>
7093 TCAM_V4KEY2_TOS_SHIFT;
7094 fsp->m_u.tcp_ip4_spec.tos = (tp->key_mask[2] & TCAM_V4KEY2_TOS) >>
7095 TCAM_V4KEY2_TOS_SHIFT;
7097 switch (fsp->flow_type) {
7101 prt = ((tp->key[2] & TCAM_V4KEY2_PORT_SPI) >>
7102 TCAM_V4KEY2_PORT_SPI_SHIFT) >> 16;
7103 fsp->h_u.tcp_ip4_spec.psrc = cpu_to_be16(prt);
7105 prt = ((tp->key[2] & TCAM_V4KEY2_PORT_SPI) >>
7106 TCAM_V4KEY2_PORT_SPI_SHIFT) & 0xffff;
7107 fsp->h_u.tcp_ip4_spec.pdst = cpu_to_be16(prt);
7109 prt = ((tp->key_mask[2] & TCAM_V4KEY2_PORT_SPI) >>
7110 TCAM_V4KEY2_PORT_SPI_SHIFT) >> 16;
7111 fsp->m_u.tcp_ip4_spec.psrc = cpu_to_be16(prt);
7113 prt = ((tp->key_mask[2] & TCAM_V4KEY2_PORT_SPI) >>
7114 TCAM_V4KEY2_PORT_SPI_SHIFT) & 0xffff;
7115 fsp->m_u.tcp_ip4_spec.pdst = cpu_to_be16(prt);
7119 tmp = (tp->key[2] & TCAM_V4KEY2_PORT_SPI) >>
7120 TCAM_V4KEY2_PORT_SPI_SHIFT;
7121 fsp->h_u.ah_ip4_spec.spi = cpu_to_be32(tmp);
7123 tmp = (tp->key_mask[2] & TCAM_V4KEY2_PORT_SPI) >>
7124 TCAM_V4KEY2_PORT_SPI_SHIFT;
7125 fsp->m_u.ah_ip4_spec.spi = cpu_to_be32(tmp);
7128 tmp = (tp->key[2] & TCAM_V4KEY2_PORT_SPI) >>
7129 TCAM_V4KEY2_PORT_SPI_SHIFT;
7130 fsp->h_u.usr_ip4_spec.l4_4_bytes = cpu_to_be32(tmp);
7132 tmp = (tp->key_mask[2] & TCAM_V4KEY2_PORT_SPI) >>
7133 TCAM_V4KEY2_PORT_SPI_SHIFT;
7134 fsp->m_u.usr_ip4_spec.l4_4_bytes = cpu_to_be32(tmp);
7136 fsp->h_u.usr_ip4_spec.proto =
7137 (tp->key[2] & TCAM_V4KEY2_PROTO) >>
7138 TCAM_V4KEY2_PROTO_SHIFT;
7139 fsp->m_u.usr_ip4_spec.proto =
7140 (tp->key_mask[2] & TCAM_V4KEY2_PROTO) >>
7141 TCAM_V4KEY2_PROTO_SHIFT;
7143 fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4;
7150 static int niu_get_ethtool_tcam_entry(struct niu *np,
7151 struct ethtool_rxnfc *nfc)
7153 struct niu_parent *parent = np->parent;
7154 struct niu_tcam_entry *tp;
7155 struct ethtool_rx_flow_spec *fsp = &nfc->fs;
7160 idx = tcam_get_index(np, (u16)nfc->fs.location);
7162 tp = &parent->tcam[idx];
7164 netdev_info(np->dev, "niu%d: entry [%d] invalid for idx[%d]\n",
7165 parent->index, (u16)nfc->fs.location, idx);
7169 /* fill the flow spec entry */
7170 class = (tp->key[0] & TCAM_V4KEY0_CLASS_CODE) >>
7171 TCAM_V4KEY0_CLASS_CODE_SHIFT;
7172 ret = niu_class_to_ethflow(class, &fsp->flow_type);
7174 netdev_info(np->dev, "niu%d: niu_class_to_ethflow failed\n",
7179 if (fsp->flow_type == AH_V4_FLOW || fsp->flow_type == AH_V6_FLOW) {
7180 u32 proto = (tp->key[2] & TCAM_V4KEY2_PROTO) >>
7181 TCAM_V4KEY2_PROTO_SHIFT;
7182 if (proto == IPPROTO_ESP) {
7183 if (fsp->flow_type == AH_V4_FLOW)
7184 fsp->flow_type = ESP_V4_FLOW;
7186 fsp->flow_type = ESP_V6_FLOW;
7190 switch (fsp->flow_type) {
7196 niu_get_ip4fs_from_tcam_key(tp, fsp);
7203 /* Not yet implemented */
7207 niu_get_ip4fs_from_tcam_key(tp, fsp);
7217 if (tp->assoc_data & TCAM_ASSOCDATA_DISC)
7218 fsp->ring_cookie = RX_CLS_FLOW_DISC;
7220 fsp->ring_cookie = (tp->assoc_data & TCAM_ASSOCDATA_OFFSET) >>
7221 TCAM_ASSOCDATA_OFFSET_SHIFT;
7223 /* put the tcam size here */
7224 nfc->data = tcam_get_size(np);
7229 static int niu_get_ethtool_tcam_all(struct niu *np,
7230 struct ethtool_rxnfc *nfc,
7233 struct niu_parent *parent = np->parent;
7234 struct niu_tcam_entry *tp;
7236 unsigned long flags;
7239 /* put the tcam size here */
7240 nfc->data = tcam_get_size(np);
7242 niu_lock_parent(np, flags);
7243 for (cnt = 0, i = 0; i < nfc->data; i++) {
7244 idx = tcam_get_index(np, i);
7245 tp = &parent->tcam[idx];
7248 if (cnt == nfc->rule_cnt) {
7255 niu_unlock_parent(np, flags);
7257 nfc->rule_cnt = cnt;
7262 static int niu_get_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
7265 struct niu *np = netdev_priv(dev);
7270 ret = niu_get_hash_opts(np, cmd);
7272 case ETHTOOL_GRXRINGS:
7273 cmd->data = np->num_rx_rings;
7275 case ETHTOOL_GRXCLSRLCNT:
7276 cmd->rule_cnt = tcam_get_valid_entry_cnt(np);
7278 case ETHTOOL_GRXCLSRULE:
7279 ret = niu_get_ethtool_tcam_entry(np, cmd);
7281 case ETHTOOL_GRXCLSRLALL:
7282 ret = niu_get_ethtool_tcam_all(np, cmd, rule_locs);
7292 static int niu_set_hash_opts(struct niu *np, struct ethtool_rxnfc *nfc)
7296 unsigned long flags;
7298 if (!niu_ethflow_to_class(nfc->flow_type, &class))
7301 if (class < CLASS_CODE_USER_PROG1 ||
7302 class > CLASS_CODE_SCTP_IPV6)
7305 if (nfc->data & RXH_DISCARD) {
7306 niu_lock_parent(np, flags);
7307 flow_key = np->parent->tcam_key[class -
7308 CLASS_CODE_USER_PROG1];
7309 flow_key |= TCAM_KEY_DISC;
7310 nw64(TCAM_KEY(class - CLASS_CODE_USER_PROG1), flow_key);
7311 np->parent->tcam_key[class - CLASS_CODE_USER_PROG1] = flow_key;
7312 niu_unlock_parent(np, flags);
7315 /* Discard was set before, but is not set now */
7316 if (np->parent->tcam_key[class - CLASS_CODE_USER_PROG1] &
7318 niu_lock_parent(np, flags);
7319 flow_key = np->parent->tcam_key[class -
7320 CLASS_CODE_USER_PROG1];
7321 flow_key &= ~TCAM_KEY_DISC;
7322 nw64(TCAM_KEY(class - CLASS_CODE_USER_PROG1),
7324 np->parent->tcam_key[class - CLASS_CODE_USER_PROG1] =
7326 niu_unlock_parent(np, flags);
7330 if (!niu_ethflow_to_flowkey(nfc->data, &flow_key))
7333 niu_lock_parent(np, flags);
7334 nw64(FLOW_KEY(class - CLASS_CODE_USER_PROG1), flow_key);
7335 np->parent->flow_key[class - CLASS_CODE_USER_PROG1] = flow_key;
7336 niu_unlock_parent(np, flags);
7341 static void niu_get_tcamkey_from_ip4fs(struct ethtool_rx_flow_spec *fsp,
7342 struct niu_tcam_entry *tp,
7343 int l2_rdc_tab, u64 class)
7346 u32 sip, dip, sipm, dipm, spi, spim;
7347 u16 sport, dport, spm, dpm;
7349 sip = be32_to_cpu(fsp->h_u.tcp_ip4_spec.ip4src);
7350 sipm = be32_to_cpu(fsp->m_u.tcp_ip4_spec.ip4src);
7351 dip = be32_to_cpu(fsp->h_u.tcp_ip4_spec.ip4dst);
7352 dipm = be32_to_cpu(fsp->m_u.tcp_ip4_spec.ip4dst);
7354 tp->key[0] = class << TCAM_V4KEY0_CLASS_CODE_SHIFT;
7355 tp->key_mask[0] = TCAM_V4KEY0_CLASS_CODE;
7356 tp->key[1] = (u64)l2_rdc_tab << TCAM_V4KEY1_L2RDCNUM_SHIFT;
7357 tp->key_mask[1] = TCAM_V4KEY1_L2RDCNUM;
7359 tp->key[3] = (u64)sip << TCAM_V4KEY3_SADDR_SHIFT;
7362 tp->key_mask[3] = (u64)sipm << TCAM_V4KEY3_SADDR_SHIFT;
7363 tp->key_mask[3] |= dipm;
7365 tp->key[2] |= ((u64)fsp->h_u.tcp_ip4_spec.tos <<
7366 TCAM_V4KEY2_TOS_SHIFT);
7367 tp->key_mask[2] |= ((u64)fsp->m_u.tcp_ip4_spec.tos <<
7368 TCAM_V4KEY2_TOS_SHIFT);
7369 switch (fsp->flow_type) {
7373 sport = be16_to_cpu(fsp->h_u.tcp_ip4_spec.psrc);
7374 spm = be16_to_cpu(fsp->m_u.tcp_ip4_spec.psrc);
7375 dport = be16_to_cpu(fsp->h_u.tcp_ip4_spec.pdst);
7376 dpm = be16_to_cpu(fsp->m_u.tcp_ip4_spec.pdst);
7378 tp->key[2] |= (((u64)sport << 16) | dport);
7379 tp->key_mask[2] |= (((u64)spm << 16) | dpm);
7380 niu_ethflow_to_l3proto(fsp->flow_type, &pid);
7384 spi = be32_to_cpu(fsp->h_u.ah_ip4_spec.spi);
7385 spim = be32_to_cpu(fsp->m_u.ah_ip4_spec.spi);
7388 tp->key_mask[2] |= spim;
7389 niu_ethflow_to_l3proto(fsp->flow_type, &pid);
7392 spi = be32_to_cpu(fsp->h_u.usr_ip4_spec.l4_4_bytes);
7393 spim = be32_to_cpu(fsp->m_u.usr_ip4_spec.l4_4_bytes);
7396 tp->key_mask[2] |= spim;
7397 pid = fsp->h_u.usr_ip4_spec.proto;
7403 tp->key[2] |= ((u64)pid << TCAM_V4KEY2_PROTO_SHIFT);
7405 tp->key_mask[2] |= TCAM_V4KEY2_PROTO;
7409 static int niu_add_ethtool_tcam_entry(struct niu *np,
7410 struct ethtool_rxnfc *nfc)
7412 struct niu_parent *parent = np->parent;
7413 struct niu_tcam_entry *tp;
7414 struct ethtool_rx_flow_spec *fsp = &nfc->fs;
7415 struct niu_rdc_tables *rdc_table = &parent->rdc_group_cfg[np->port];
7416 int l2_rdc_table = rdc_table->first_table_num;
7419 unsigned long flags;
7424 idx = nfc->fs.location;
7425 if (idx >= tcam_get_size(np))
7428 if (fsp->flow_type == IP_USER_FLOW) {
7430 int add_usr_cls = 0;
7431 struct ethtool_usrip4_spec *uspec = &fsp->h_u.usr_ip4_spec;
7432 struct ethtool_usrip4_spec *umask = &fsp->m_u.usr_ip4_spec;
7434 if (uspec->ip_ver != ETH_RX_NFC_IP4)
7437 niu_lock_parent(np, flags);
7439 for (i = 0; i < NIU_L3_PROG_CLS; i++) {
7440 if (parent->l3_cls[i]) {
7441 if (uspec->proto == parent->l3_cls_pid[i]) {
7442 class = parent->l3_cls[i];
7443 parent->l3_cls_refcnt[i]++;
7448 /* Program new user IP class */
7451 class = CLASS_CODE_USER_PROG1;
7454 class = CLASS_CODE_USER_PROG2;
7457 class = CLASS_CODE_USER_PROG3;
7460 class = CLASS_CODE_USER_PROG4;
7463 class = CLASS_CODE_UNRECOG;
7466 ret = tcam_user_ip_class_set(np, class, 0,
7473 ret = tcam_user_ip_class_enable(np, class, 1);
7476 parent->l3_cls[i] = class;
7477 parent->l3_cls_pid[i] = uspec->proto;
7478 parent->l3_cls_refcnt[i]++;
7484 netdev_info(np->dev, "niu%d: %s(): Could not find/insert class for pid %d\n",
7485 parent->index, __func__, uspec->proto);
7489 niu_unlock_parent(np, flags);
7491 if (!niu_ethflow_to_class(fsp->flow_type, &class)) {
7496 niu_lock_parent(np, flags);
7498 idx = tcam_get_index(np, idx);
7499 tp = &parent->tcam[idx];
7501 memset(tp, 0, sizeof(*tp));
7503 /* fill in the tcam key and mask */
7504 switch (fsp->flow_type) {
7510 niu_get_tcamkey_from_ip4fs(fsp, tp, l2_rdc_table, class);
7517 /* Not yet implemented */
7518 netdev_info(np->dev, "niu%d: In %s(): flow %d for IPv6 not implemented\n",
7519 parent->index, __func__, fsp->flow_type);
7523 niu_get_tcamkey_from_ip4fs(fsp, tp, l2_rdc_table, class);
7526 netdev_info(np->dev, "niu%d: In %s(): Unknown flow type %d\n",
7527 parent->index, __func__, fsp->flow_type);
7532 /* fill in the assoc data */
7533 if (fsp->ring_cookie == RX_CLS_FLOW_DISC) {
7534 tp->assoc_data = TCAM_ASSOCDATA_DISC;
7536 if (fsp->ring_cookie >= np->num_rx_rings) {
7537 netdev_info(np->dev, "niu%d: In %s(): Invalid RX ring %lld\n",
7538 parent->index, __func__,
7539 (long long)fsp->ring_cookie);
7543 tp->assoc_data = (TCAM_ASSOCDATA_TRES_USE_OFFSET |
7544 (fsp->ring_cookie <<
7545 TCAM_ASSOCDATA_OFFSET_SHIFT));
7548 err = tcam_write(np, idx, tp->key, tp->key_mask);
7553 err = tcam_assoc_write(np, idx, tp->assoc_data);
7559 /* validate the entry */
7561 np->clas.tcam_valid_entries++;
7563 niu_unlock_parent(np, flags);
7568 static int niu_del_ethtool_tcam_entry(struct niu *np, u32 loc)
7570 struct niu_parent *parent = np->parent;
7571 struct niu_tcam_entry *tp;
7573 unsigned long flags;
7577 if (loc >= tcam_get_size(np))
7580 niu_lock_parent(np, flags);
7582 idx = tcam_get_index(np, loc);
7583 tp = &parent->tcam[idx];
7585 /* if the entry is of a user defined class, then update*/
7586 class = (tp->key[0] & TCAM_V4KEY0_CLASS_CODE) >>
7587 TCAM_V4KEY0_CLASS_CODE_SHIFT;
7589 if (class >= CLASS_CODE_USER_PROG1 && class <= CLASS_CODE_USER_PROG4) {
7591 for (i = 0; i < NIU_L3_PROG_CLS; i++) {
7592 if (parent->l3_cls[i] == class) {
7593 parent->l3_cls_refcnt[i]--;
7594 if (!parent->l3_cls_refcnt[i]) {
7596 ret = tcam_user_ip_class_enable(np,
7601 parent->l3_cls[i] = 0;
7602 parent->l3_cls_pid[i] = 0;
7607 if (i == NIU_L3_PROG_CLS) {
7608 netdev_info(np->dev, "niu%d: In %s(): Usr class 0x%llx not found\n",
7609 parent->index, __func__,
7610 (unsigned long long)class);
7616 ret = tcam_flush(np, idx);
7620 /* invalidate the entry */
7622 np->clas.tcam_valid_entries--;
7624 niu_unlock_parent(np, flags);
7629 static int niu_set_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
7631 struct niu *np = netdev_priv(dev);
7636 ret = niu_set_hash_opts(np, cmd);
7638 case ETHTOOL_SRXCLSRLINS:
7639 ret = niu_add_ethtool_tcam_entry(np, cmd);
7641 case ETHTOOL_SRXCLSRLDEL:
7642 ret = niu_del_ethtool_tcam_entry(np, cmd->fs.location);
7652 static const struct {
7653 const char string[ETH_GSTRING_LEN];
7654 } niu_xmac_stat_keys[] = {
7657 { "tx_fifo_errors" },
7658 { "tx_overflow_errors" },
7659 { "tx_max_pkt_size_errors" },
7660 { "tx_underflow_errors" },
7661 { "rx_local_faults" },
7662 { "rx_remote_faults" },
7663 { "rx_link_faults" },
7664 { "rx_align_errors" },
7676 { "rx_code_violations" },
7677 { "rx_len_errors" },
7678 { "rx_crc_errors" },
7679 { "rx_underflows" },
7681 { "pause_off_state" },
7682 { "pause_on_state" },
7683 { "pause_received" },
7686 #define NUM_XMAC_STAT_KEYS ARRAY_SIZE(niu_xmac_stat_keys)
7688 static const struct {
7689 const char string[ETH_GSTRING_LEN];
7690 } niu_bmac_stat_keys[] = {
7691 { "tx_underflow_errors" },
7692 { "tx_max_pkt_size_errors" },
7697 { "rx_align_errors" },
7698 { "rx_crc_errors" },
7699 { "rx_len_errors" },
7700 { "pause_off_state" },
7701 { "pause_on_state" },
7702 { "pause_received" },
7705 #define NUM_BMAC_STAT_KEYS ARRAY_SIZE(niu_bmac_stat_keys)
7707 static const struct {
7708 const char string[ETH_GSTRING_LEN];
7709 } niu_rxchan_stat_keys[] = {
7717 #define NUM_RXCHAN_STAT_KEYS ARRAY_SIZE(niu_rxchan_stat_keys)
7719 static const struct {
7720 const char string[ETH_GSTRING_LEN];
7721 } niu_txchan_stat_keys[] = {
7728 #define NUM_TXCHAN_STAT_KEYS ARRAY_SIZE(niu_txchan_stat_keys)
7730 static void niu_get_strings(struct net_device *dev, u32 stringset, u8 *data)
7732 struct niu *np = netdev_priv(dev);
7735 if (stringset != ETH_SS_STATS)
7738 if (np->flags & NIU_FLAGS_XMAC) {
7739 memcpy(data, niu_xmac_stat_keys,
7740 sizeof(niu_xmac_stat_keys));
7741 data += sizeof(niu_xmac_stat_keys);
7743 memcpy(data, niu_bmac_stat_keys,
7744 sizeof(niu_bmac_stat_keys));
7745 data += sizeof(niu_bmac_stat_keys);
7747 for (i = 0; i < np->num_rx_rings; i++) {
7748 memcpy(data, niu_rxchan_stat_keys,
7749 sizeof(niu_rxchan_stat_keys));
7750 data += sizeof(niu_rxchan_stat_keys);
7752 for (i = 0; i < np->num_tx_rings; i++) {
7753 memcpy(data, niu_txchan_stat_keys,
7754 sizeof(niu_txchan_stat_keys));
7755 data += sizeof(niu_txchan_stat_keys);
7759 static int niu_get_sset_count(struct net_device *dev, int stringset)
7761 struct niu *np = netdev_priv(dev);
7763 if (stringset != ETH_SS_STATS)
7766 return (np->flags & NIU_FLAGS_XMAC ?
7767 NUM_XMAC_STAT_KEYS :
7768 NUM_BMAC_STAT_KEYS) +
7769 (np->num_rx_rings * NUM_RXCHAN_STAT_KEYS) +
7770 (np->num_tx_rings * NUM_TXCHAN_STAT_KEYS);
7773 static void niu_get_ethtool_stats(struct net_device *dev,
7774 struct ethtool_stats *stats, u64 *data)
7776 struct niu *np = netdev_priv(dev);
7779 niu_sync_mac_stats(np);
7780 if (np->flags & NIU_FLAGS_XMAC) {
7781 memcpy(data, &np->mac_stats.xmac,
7782 sizeof(struct niu_xmac_stats));
7783 data += (sizeof(struct niu_xmac_stats) / sizeof(u64));
7785 memcpy(data, &np->mac_stats.bmac,
7786 sizeof(struct niu_bmac_stats));
7787 data += (sizeof(struct niu_bmac_stats) / sizeof(u64));
7789 for (i = 0; i < np->num_rx_rings; i++) {
7790 struct rx_ring_info *rp = &np->rx_rings[i];
7792 niu_sync_rx_discard_stats(np, rp, 0);
7794 data[0] = rp->rx_channel;
7795 data[1] = rp->rx_packets;
7796 data[2] = rp->rx_bytes;
7797 data[3] = rp->rx_dropped;
7798 data[4] = rp->rx_errors;
7801 for (i = 0; i < np->num_tx_rings; i++) {
7802 struct tx_ring_info *rp = &np->tx_rings[i];
7804 data[0] = rp->tx_channel;
7805 data[1] = rp->tx_packets;
7806 data[2] = rp->tx_bytes;
7807 data[3] = rp->tx_errors;
7812 static u64 niu_led_state_save(struct niu *np)
7814 if (np->flags & NIU_FLAGS_XMAC)
7815 return nr64_mac(XMAC_CONFIG);
7817 return nr64_mac(BMAC_XIF_CONFIG);
7820 static void niu_led_state_restore(struct niu *np, u64 val)
7822 if (np->flags & NIU_FLAGS_XMAC)
7823 nw64_mac(XMAC_CONFIG, val);
7825 nw64_mac(BMAC_XIF_CONFIG, val);
7828 static void niu_force_led(struct niu *np, int on)
7832 if (np->flags & NIU_FLAGS_XMAC) {
7834 bit = XMAC_CONFIG_FORCE_LED_ON;
7836 reg = BMAC_XIF_CONFIG;
7837 bit = BMAC_XIF_CONFIG_LINK_LED;
7840 val = nr64_mac(reg);
7848 static int niu_set_phys_id(struct net_device *dev,
7849 enum ethtool_phys_id_state state)
7852 struct niu *np = netdev_priv(dev);
7854 if (!netif_running(dev))
7858 case ETHTOOL_ID_ACTIVE:
7859 np->orig_led_state = niu_led_state_save(np);
7860 return 1; /* cycle on/off once per second */
7863 niu_force_led(np, 1);
7866 case ETHTOOL_ID_OFF:
7867 niu_force_led(np, 0);
7870 case ETHTOOL_ID_INACTIVE:
7871 niu_led_state_restore(np, np->orig_led_state);
7877 static const struct ethtool_ops niu_ethtool_ops = {
7878 .get_drvinfo = niu_get_drvinfo,
7879 .get_link = ethtool_op_get_link,
7880 .get_msglevel = niu_get_msglevel,
7881 .set_msglevel = niu_set_msglevel,
7882 .nway_reset = niu_nway_reset,
7883 .get_eeprom_len = niu_get_eeprom_len,
7884 .get_eeprom = niu_get_eeprom,
7885 .get_strings = niu_get_strings,
7886 .get_sset_count = niu_get_sset_count,
7887 .get_ethtool_stats = niu_get_ethtool_stats,
7888 .set_phys_id = niu_set_phys_id,
7889 .get_rxnfc = niu_get_nfc,
7890 .set_rxnfc = niu_set_nfc,
7891 .get_link_ksettings = niu_get_link_ksettings,
7892 .set_link_ksettings = niu_set_link_ksettings,
7895 static int niu_ldg_assign_ldn(struct niu *np, struct niu_parent *parent,
7898 if (ldg < NIU_LDG_MIN || ldg > NIU_LDG_MAX)
7900 if (ldn < 0 || ldn > LDN_MAX)
7903 parent->ldg_map[ldn] = ldg;
7905 if (np->parent->plat_type == PLAT_TYPE_NIU) {
7906 /* On N2 NIU, the ldn-->ldg assignments are setup and fixed by
7907 * the firmware, and we're not supposed to change them.
7908 * Validate the mapping, because if it's wrong we probably
7909 * won't get any interrupts and that's painful to debug.
7911 if (nr64(LDG_NUM(ldn)) != ldg) {
7912 dev_err(np->device, "Port %u, mis-matched LDG assignment for ldn %d, should be %d is %llu\n",
7914 (unsigned long long) nr64(LDG_NUM(ldn)));
7918 nw64(LDG_NUM(ldn), ldg);
7923 static int niu_set_ldg_timer_res(struct niu *np, int res)
7925 if (res < 0 || res > LDG_TIMER_RES_VAL)
7929 nw64(LDG_TIMER_RES, res);
7934 static int niu_set_ldg_sid(struct niu *np, int ldg, int func, int vector)
7936 if ((ldg < NIU_LDG_MIN || ldg > NIU_LDG_MAX) ||
7937 (func < 0 || func > 3) ||
7938 (vector < 0 || vector > 0x1f))
7941 nw64(SID(ldg), (func << SID_FUNC_SHIFT) | vector);
7946 static int niu_pci_eeprom_read(struct niu *np, u32 addr)
7948 u64 frame, frame_base = (ESPC_PIO_STAT_READ_START |
7949 (addr << ESPC_PIO_STAT_ADDR_SHIFT));
7952 if (addr > (ESPC_PIO_STAT_ADDR >> ESPC_PIO_STAT_ADDR_SHIFT))
7956 nw64(ESPC_PIO_STAT, frame);
7960 frame = nr64(ESPC_PIO_STAT);
7961 if (frame & ESPC_PIO_STAT_READ_END)
7964 if (!(frame & ESPC_PIO_STAT_READ_END)) {
7965 dev_err(np->device, "EEPROM read timeout frame[%llx]\n",
7966 (unsigned long long) frame);
7971 nw64(ESPC_PIO_STAT, frame);
7975 frame = nr64(ESPC_PIO_STAT);
7976 if (frame & ESPC_PIO_STAT_READ_END)
7979 if (!(frame & ESPC_PIO_STAT_READ_END)) {
7980 dev_err(np->device, "EEPROM read timeout frame[%llx]\n",
7981 (unsigned long long) frame);
7985 frame = nr64(ESPC_PIO_STAT);
7986 return (frame & ESPC_PIO_STAT_DATA) >> ESPC_PIO_STAT_DATA_SHIFT;
7989 static int niu_pci_eeprom_read16(struct niu *np, u32 off)
7991 int err = niu_pci_eeprom_read(np, off);
7997 err = niu_pci_eeprom_read(np, off + 1);
8000 val |= (err & 0xff);
8005 static int niu_pci_eeprom_read16_swp(struct niu *np, u32 off)
8007 int err = niu_pci_eeprom_read(np, off);
8014 err = niu_pci_eeprom_read(np, off + 1);
8018 val |= (err & 0xff) << 8;
8023 static int niu_pci_vpd_get_propname(struct niu *np, u32 off, char *namebuf,
8028 for (i = 0; i < namebuf_len; i++) {
8029 int err = niu_pci_eeprom_read(np, off + i);
8036 if (i >= namebuf_len)
8042 static void niu_vpd_parse_version(struct niu *np)
8044 struct niu_vpd *vpd = &np->vpd;
8045 int len = strlen(vpd->version) + 1;
8046 const char *s = vpd->version;
8049 for (i = 0; i < len - 5; i++) {
8050 if (!strncmp(s + i, "FCode ", 6))
8057 sscanf(s, "%d.%d", &vpd->fcode_major, &vpd->fcode_minor);
8059 netif_printk(np, probe, KERN_DEBUG, np->dev,
8060 "VPD_SCAN: FCODE major(%d) minor(%d)\n",
8061 vpd->fcode_major, vpd->fcode_minor);
8062 if (vpd->fcode_major > NIU_VPD_MIN_MAJOR ||
8063 (vpd->fcode_major == NIU_VPD_MIN_MAJOR &&
8064 vpd->fcode_minor >= NIU_VPD_MIN_MINOR))
8065 np->flags |= NIU_FLAGS_VPD_VALID;
8068 /* ESPC_PIO_EN_ENABLE must be set */
8069 static int niu_pci_vpd_scan_props(struct niu *np, u32 start, u32 end)
8071 unsigned int found_mask = 0;
8072 #define FOUND_MASK_MODEL 0x00000001
8073 #define FOUND_MASK_BMODEL 0x00000002
8074 #define FOUND_MASK_VERS 0x00000004
8075 #define FOUND_MASK_MAC 0x00000008
8076 #define FOUND_MASK_NMAC 0x00000010
8077 #define FOUND_MASK_PHY 0x00000020
8078 #define FOUND_MASK_ALL 0x0000003f
8080 netif_printk(np, probe, KERN_DEBUG, np->dev,
8081 "VPD_SCAN: start[%x] end[%x]\n", start, end);
8082 while (start < end) {
8083 int len, err, prop_len;
8088 if (found_mask == FOUND_MASK_ALL) {
8089 niu_vpd_parse_version(np);
8093 err = niu_pci_eeprom_read(np, start + 2);
8099 prop_len = niu_pci_eeprom_read(np, start + 4);
8102 err = niu_pci_vpd_get_propname(np, start + 5, namebuf, 64);
8108 if (!strcmp(namebuf, "model")) {
8109 prop_buf = np->vpd.model;
8110 max_len = NIU_VPD_MODEL_MAX;
8111 found_mask |= FOUND_MASK_MODEL;
8112 } else if (!strcmp(namebuf, "board-model")) {
8113 prop_buf = np->vpd.board_model;
8114 max_len = NIU_VPD_BD_MODEL_MAX;
8115 found_mask |= FOUND_MASK_BMODEL;
8116 } else if (!strcmp(namebuf, "version")) {
8117 prop_buf = np->vpd.version;
8118 max_len = NIU_VPD_VERSION_MAX;
8119 found_mask |= FOUND_MASK_VERS;
8120 } else if (!strcmp(namebuf, "local-mac-address")) {
8121 prop_buf = np->vpd.local_mac;
8123 found_mask |= FOUND_MASK_MAC;
8124 } else if (!strcmp(namebuf, "num-mac-addresses")) {
8125 prop_buf = &np->vpd.mac_num;
8127 found_mask |= FOUND_MASK_NMAC;
8128 } else if (!strcmp(namebuf, "phy-type")) {
8129 prop_buf = np->vpd.phy_type;
8130 max_len = NIU_VPD_PHY_TYPE_MAX;
8131 found_mask |= FOUND_MASK_PHY;
8134 if (max_len && prop_len > max_len) {
8135 dev_err(np->device, "Property '%s' length (%d) is too long\n", namebuf, prop_len);
8140 u32 off = start + 5 + err;
8143 netif_printk(np, probe, KERN_DEBUG, np->dev,
8144 "VPD_SCAN: Reading in property [%s] len[%d]\n",
8146 for (i = 0; i < prop_len; i++) {
8147 err = niu_pci_eeprom_read(np, off + i);
8160 /* ESPC_PIO_EN_ENABLE must be set */
8161 static int niu_pci_vpd_fetch(struct niu *np, u32 start)
8166 err = niu_pci_eeprom_read16_swp(np, start + 1);
8172 while (start + offset < ESPC_EEPROM_SIZE) {
8173 u32 here = start + offset;
8176 err = niu_pci_eeprom_read(np, here);
8182 err = niu_pci_eeprom_read16_swp(np, here + 1);
8186 here = start + offset + 3;
8187 end = start + offset + err;
8191 err = niu_pci_vpd_scan_props(np, here, end);
8200 /* ESPC_PIO_EN_ENABLE must be set */
8201 static u32 niu_pci_vpd_offset(struct niu *np)
8203 u32 start = 0, end = ESPC_EEPROM_SIZE, ret;
8206 while (start < end) {
8209 /* ROM header signature? */
8210 err = niu_pci_eeprom_read16(np, start + 0);
8214 /* Apply offset to PCI data structure. */
8215 err = niu_pci_eeprom_read16(np, start + 23);
8220 /* Check for "PCIR" signature. */
8221 err = niu_pci_eeprom_read16(np, start + 0);
8224 err = niu_pci_eeprom_read16(np, start + 2);
8228 /* Check for OBP image type. */
8229 err = niu_pci_eeprom_read(np, start + 20);
8233 err = niu_pci_eeprom_read(np, ret + 2);
8237 start = ret + (err * 512);
8241 err = niu_pci_eeprom_read16_swp(np, start + 8);
8246 err = niu_pci_eeprom_read(np, ret + 0);
8256 static int niu_phy_type_prop_decode(struct niu *np, const char *phy_prop)
8258 if (!strcmp(phy_prop, "mif")) {
8259 /* 1G copper, MII */
8260 np->flags &= ~(NIU_FLAGS_FIBER |
8262 np->mac_xcvr = MAC_XCVR_MII;
8263 } else if (!strcmp(phy_prop, "xgf")) {
8264 /* 10G fiber, XPCS */
8265 np->flags |= (NIU_FLAGS_10G |
8267 np->mac_xcvr = MAC_XCVR_XPCS;
8268 } else if (!strcmp(phy_prop, "pcs")) {
8270 np->flags &= ~NIU_FLAGS_10G;
8271 np->flags |= NIU_FLAGS_FIBER;
8272 np->mac_xcvr = MAC_XCVR_PCS;
8273 } else if (!strcmp(phy_prop, "xgc")) {
8274 /* 10G copper, XPCS */
8275 np->flags |= NIU_FLAGS_10G;
8276 np->flags &= ~NIU_FLAGS_FIBER;
8277 np->mac_xcvr = MAC_XCVR_XPCS;
8278 } else if (!strcmp(phy_prop, "xgsd") || !strcmp(phy_prop, "gsd")) {
8279 /* 10G Serdes or 1G Serdes, default to 10G */
8280 np->flags |= NIU_FLAGS_10G;
8281 np->flags &= ~NIU_FLAGS_FIBER;
8282 np->flags |= NIU_FLAGS_XCVR_SERDES;
8283 np->mac_xcvr = MAC_XCVR_XPCS;
8290 static int niu_pci_vpd_get_nports(struct niu *np)
8294 if ((!strcmp(np->vpd.model, NIU_QGC_LP_MDL_STR)) ||
8295 (!strcmp(np->vpd.model, NIU_QGC_PEM_MDL_STR)) ||
8296 (!strcmp(np->vpd.model, NIU_MARAMBA_MDL_STR)) ||
8297 (!strcmp(np->vpd.model, NIU_KIMI_MDL_STR)) ||
8298 (!strcmp(np->vpd.model, NIU_ALONSO_MDL_STR))) {
8300 } else if ((!strcmp(np->vpd.model, NIU_2XGF_LP_MDL_STR)) ||
8301 (!strcmp(np->vpd.model, NIU_2XGF_PEM_MDL_STR)) ||
8302 (!strcmp(np->vpd.model, NIU_FOXXY_MDL_STR)) ||
8303 (!strcmp(np->vpd.model, NIU_2XGF_MRVL_MDL_STR))) {
8310 static void niu_pci_vpd_validate(struct niu *np)
8312 struct net_device *dev = np->dev;
8313 struct niu_vpd *vpd = &np->vpd;
8316 if (!is_valid_ether_addr(&vpd->local_mac[0])) {
8317 dev_err(np->device, "VPD MAC invalid, falling back to SPROM\n");
8319 np->flags &= ~NIU_FLAGS_VPD_VALID;
8323 if (!strcmp(np->vpd.model, NIU_ALONSO_MDL_STR) ||
8324 !strcmp(np->vpd.model, NIU_KIMI_MDL_STR)) {
8325 np->flags |= NIU_FLAGS_10G;
8326 np->flags &= ~NIU_FLAGS_FIBER;
8327 np->flags |= NIU_FLAGS_XCVR_SERDES;
8328 np->mac_xcvr = MAC_XCVR_PCS;
8330 np->flags |= NIU_FLAGS_FIBER;
8331 np->flags &= ~NIU_FLAGS_10G;
8333 if (np->flags & NIU_FLAGS_10G)
8334 np->mac_xcvr = MAC_XCVR_XPCS;
8335 } else if (!strcmp(np->vpd.model, NIU_FOXXY_MDL_STR)) {
8336 np->flags |= (NIU_FLAGS_10G | NIU_FLAGS_FIBER |
8337 NIU_FLAGS_HOTPLUG_PHY);
8338 } else if (niu_phy_type_prop_decode(np, np->vpd.phy_type)) {
8339 dev_err(np->device, "Illegal phy string [%s]\n",
8341 dev_err(np->device, "Falling back to SPROM\n");
8342 np->flags &= ~NIU_FLAGS_VPD_VALID;
8346 memcpy(dev->dev_addr, vpd->local_mac, ETH_ALEN);
8348 val8 = dev->dev_addr[5];
8349 dev->dev_addr[5] += np->port;
8350 if (dev->dev_addr[5] < val8)
8354 static int niu_pci_probe_sprom(struct niu *np)
8356 struct net_device *dev = np->dev;
8361 val = (nr64(ESPC_VER_IMGSZ) & ESPC_VER_IMGSZ_IMGSZ);
8362 val >>= ESPC_VER_IMGSZ_IMGSZ_SHIFT;
8365 np->eeprom_len = len;
8367 netif_printk(np, probe, KERN_DEBUG, np->dev,
8368 "SPROM: Image size %llu\n", (unsigned long long)val);
8371 for (i = 0; i < len; i++) {
8372 val = nr64(ESPC_NCR(i));
8373 sum += (val >> 0) & 0xff;
8374 sum += (val >> 8) & 0xff;
8375 sum += (val >> 16) & 0xff;
8376 sum += (val >> 24) & 0xff;
8378 netif_printk(np, probe, KERN_DEBUG, np->dev,
8379 "SPROM: Checksum %x\n", (int)(sum & 0xff));
8380 if ((sum & 0xff) != 0xab) {
8381 dev_err(np->device, "Bad SPROM checksum (%x, should be 0xab)\n", (int)(sum & 0xff));
8385 val = nr64(ESPC_PHY_TYPE);
8388 val8 = (val & ESPC_PHY_TYPE_PORT0) >>
8389 ESPC_PHY_TYPE_PORT0_SHIFT;
8392 val8 = (val & ESPC_PHY_TYPE_PORT1) >>
8393 ESPC_PHY_TYPE_PORT1_SHIFT;
8396 val8 = (val & ESPC_PHY_TYPE_PORT2) >>
8397 ESPC_PHY_TYPE_PORT2_SHIFT;
8400 val8 = (val & ESPC_PHY_TYPE_PORT3) >>
8401 ESPC_PHY_TYPE_PORT3_SHIFT;
8404 dev_err(np->device, "Bogus port number %u\n",
8408 netif_printk(np, probe, KERN_DEBUG, np->dev,
8409 "SPROM: PHY type %x\n", val8);
8412 case ESPC_PHY_TYPE_1G_COPPER:
8413 /* 1G copper, MII */
8414 np->flags &= ~(NIU_FLAGS_FIBER |
8416 np->mac_xcvr = MAC_XCVR_MII;
8419 case ESPC_PHY_TYPE_1G_FIBER:
8421 np->flags &= ~NIU_FLAGS_10G;
8422 np->flags |= NIU_FLAGS_FIBER;
8423 np->mac_xcvr = MAC_XCVR_PCS;
8426 case ESPC_PHY_TYPE_10G_COPPER:
8427 /* 10G copper, XPCS */
8428 np->flags |= NIU_FLAGS_10G;
8429 np->flags &= ~NIU_FLAGS_FIBER;
8430 np->mac_xcvr = MAC_XCVR_XPCS;
8433 case ESPC_PHY_TYPE_10G_FIBER:
8434 /* 10G fiber, XPCS */
8435 np->flags |= (NIU_FLAGS_10G |
8437 np->mac_xcvr = MAC_XCVR_XPCS;
8441 dev_err(np->device, "Bogus SPROM phy type %u\n", val8);
8445 val = nr64(ESPC_MAC_ADDR0);
8446 netif_printk(np, probe, KERN_DEBUG, np->dev,
8447 "SPROM: MAC_ADDR0[%08llx]\n", (unsigned long long)val);
8448 dev->dev_addr[0] = (val >> 0) & 0xff;
8449 dev->dev_addr[1] = (val >> 8) & 0xff;
8450 dev->dev_addr[2] = (val >> 16) & 0xff;
8451 dev->dev_addr[3] = (val >> 24) & 0xff;
8453 val = nr64(ESPC_MAC_ADDR1);
8454 netif_printk(np, probe, KERN_DEBUG, np->dev,
8455 "SPROM: MAC_ADDR1[%08llx]\n", (unsigned long long)val);
8456 dev->dev_addr[4] = (val >> 0) & 0xff;
8457 dev->dev_addr[5] = (val >> 8) & 0xff;
8459 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
8460 dev_err(np->device, "SPROM MAC address invalid [ %pM ]\n",
8465 val8 = dev->dev_addr[5];
8466 dev->dev_addr[5] += np->port;
8467 if (dev->dev_addr[5] < val8)
8470 val = nr64(ESPC_MOD_STR_LEN);
8471 netif_printk(np, probe, KERN_DEBUG, np->dev,
8472 "SPROM: MOD_STR_LEN[%llu]\n", (unsigned long long)val);
8476 for (i = 0; i < val; i += 4) {
8477 u64 tmp = nr64(ESPC_NCR(5 + (i / 4)));
8479 np->vpd.model[i + 3] = (tmp >> 0) & 0xff;
8480 np->vpd.model[i + 2] = (tmp >> 8) & 0xff;
8481 np->vpd.model[i + 1] = (tmp >> 16) & 0xff;
8482 np->vpd.model[i + 0] = (tmp >> 24) & 0xff;
8484 np->vpd.model[val] = '\0';
8486 val = nr64(ESPC_BD_MOD_STR_LEN);
8487 netif_printk(np, probe, KERN_DEBUG, np->dev,
8488 "SPROM: BD_MOD_STR_LEN[%llu]\n", (unsigned long long)val);
8492 for (i = 0; i < val; i += 4) {
8493 u64 tmp = nr64(ESPC_NCR(14 + (i / 4)));
8495 np->vpd.board_model[i + 3] = (tmp >> 0) & 0xff;
8496 np->vpd.board_model[i + 2] = (tmp >> 8) & 0xff;
8497 np->vpd.board_model[i + 1] = (tmp >> 16) & 0xff;
8498 np->vpd.board_model[i + 0] = (tmp >> 24) & 0xff;
8500 np->vpd.board_model[val] = '\0';
8503 nr64(ESPC_NUM_PORTS_MACS) & ESPC_NUM_PORTS_MACS_VAL;
8504 netif_printk(np, probe, KERN_DEBUG, np->dev,
8505 "SPROM: NUM_PORTS_MACS[%d]\n", np->vpd.mac_num);
8510 static int niu_get_and_validate_port(struct niu *np)
8512 struct niu_parent *parent = np->parent;
8515 np->flags |= NIU_FLAGS_XMAC;
8517 if (!parent->num_ports) {
8518 if (parent->plat_type == PLAT_TYPE_NIU) {
8519 parent->num_ports = 2;
8521 parent->num_ports = niu_pci_vpd_get_nports(np);
8522 if (!parent->num_ports) {
8523 /* Fall back to SPROM as last resort.
8524 * This will fail on most cards.
8526 parent->num_ports = nr64(ESPC_NUM_PORTS_MACS) &
8527 ESPC_NUM_PORTS_MACS_VAL;
8529 /* All of the current probing methods fail on
8530 * Maramba on-board parts.
8532 if (!parent->num_ports)
8533 parent->num_ports = 4;
8538 if (np->port >= parent->num_ports)
8544 static int phy_record(struct niu_parent *parent, struct phy_probe_info *p,
8545 int dev_id_1, int dev_id_2, u8 phy_port, int type)
8547 u32 id = (dev_id_1 << 16) | dev_id_2;
8550 if (dev_id_1 < 0 || dev_id_2 < 0)
8552 if (type == PHY_TYPE_PMA_PMD || type == PHY_TYPE_PCS) {
8553 /* Because of the NIU_PHY_ID_MASK being applied, the 8704
8554 * test covers the 8706 as well.
8556 if (((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_BCM8704) &&
8557 ((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_MRVL88X2011))
8560 if ((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_BCM5464R)
8564 pr_info("niu%d: Found PHY %08x type %s at phy_port %u\n",
8566 type == PHY_TYPE_PMA_PMD ? "PMA/PMD" :
8567 type == PHY_TYPE_PCS ? "PCS" : "MII",
8570 if (p->cur[type] >= NIU_MAX_PORTS) {
8571 pr_err("Too many PHY ports\n");
8575 p->phy_id[type][idx] = id;
8576 p->phy_port[type][idx] = phy_port;
8577 p->cur[type] = idx + 1;
8581 static int port_has_10g(struct phy_probe_info *p, int port)
8585 for (i = 0; i < p->cur[PHY_TYPE_PMA_PMD]; i++) {
8586 if (p->phy_port[PHY_TYPE_PMA_PMD][i] == port)
8589 for (i = 0; i < p->cur[PHY_TYPE_PCS]; i++) {
8590 if (p->phy_port[PHY_TYPE_PCS][i] == port)
8597 static int count_10g_ports(struct phy_probe_info *p, int *lowest)
8603 for (port = 8; port < 32; port++) {
8604 if (port_has_10g(p, port)) {
8614 static int count_1g_ports(struct phy_probe_info *p, int *lowest)
8617 if (p->cur[PHY_TYPE_MII])
8618 *lowest = p->phy_port[PHY_TYPE_MII][0];
8620 return p->cur[PHY_TYPE_MII];
8623 static void niu_n2_divide_channels(struct niu_parent *parent)
8625 int num_ports = parent->num_ports;
8628 for (i = 0; i < num_ports; i++) {
8629 parent->rxchan_per_port[i] = (16 / num_ports);
8630 parent->txchan_per_port[i] = (16 / num_ports);
8632 pr_info("niu%d: Port %u [%u RX chans] [%u TX chans]\n",
8634 parent->rxchan_per_port[i],
8635 parent->txchan_per_port[i]);
8639 static void niu_divide_channels(struct niu_parent *parent,
8640 int num_10g, int num_1g)
8642 int num_ports = parent->num_ports;
8643 int rx_chans_per_10g, rx_chans_per_1g;
8644 int tx_chans_per_10g, tx_chans_per_1g;
8645 int i, tot_rx, tot_tx;
8647 if (!num_10g || !num_1g) {
8648 rx_chans_per_10g = rx_chans_per_1g =
8649 (NIU_NUM_RXCHAN / num_ports);
8650 tx_chans_per_10g = tx_chans_per_1g =
8651 (NIU_NUM_TXCHAN / num_ports);
8653 rx_chans_per_1g = NIU_NUM_RXCHAN / 8;
8654 rx_chans_per_10g = (NIU_NUM_RXCHAN -
8655 (rx_chans_per_1g * num_1g)) /
8658 tx_chans_per_1g = NIU_NUM_TXCHAN / 6;
8659 tx_chans_per_10g = (NIU_NUM_TXCHAN -
8660 (tx_chans_per_1g * num_1g)) /
8664 tot_rx = tot_tx = 0;
8665 for (i = 0; i < num_ports; i++) {
8666 int type = phy_decode(parent->port_phy, i);
8668 if (type == PORT_TYPE_10G) {
8669 parent->rxchan_per_port[i] = rx_chans_per_10g;
8670 parent->txchan_per_port[i] = tx_chans_per_10g;
8672 parent->rxchan_per_port[i] = rx_chans_per_1g;
8673 parent->txchan_per_port[i] = tx_chans_per_1g;
8675 pr_info("niu%d: Port %u [%u RX chans] [%u TX chans]\n",
8677 parent->rxchan_per_port[i],
8678 parent->txchan_per_port[i]);
8679 tot_rx += parent->rxchan_per_port[i];
8680 tot_tx += parent->txchan_per_port[i];
8683 if (tot_rx > NIU_NUM_RXCHAN) {
8684 pr_err("niu%d: Too many RX channels (%d), resetting to one per port\n",
8685 parent->index, tot_rx);
8686 for (i = 0; i < num_ports; i++)
8687 parent->rxchan_per_port[i] = 1;
8689 if (tot_tx > NIU_NUM_TXCHAN) {
8690 pr_err("niu%d: Too many TX channels (%d), resetting to one per port\n",
8691 parent->index, tot_tx);
8692 for (i = 0; i < num_ports; i++)
8693 parent->txchan_per_port[i] = 1;
8695 if (tot_rx < NIU_NUM_RXCHAN || tot_tx < NIU_NUM_TXCHAN) {
8696 pr_warn("niu%d: Driver bug, wasted channels, RX[%d] TX[%d]\n",
8697 parent->index, tot_rx, tot_tx);
8701 static void niu_divide_rdc_groups(struct niu_parent *parent,
8702 int num_10g, int num_1g)
8704 int i, num_ports = parent->num_ports;
8705 int rdc_group, rdc_groups_per_port;
8706 int rdc_channel_base;
8709 rdc_groups_per_port = NIU_NUM_RDC_TABLES / num_ports;
8711 rdc_channel_base = 0;
8713 for (i = 0; i < num_ports; i++) {
8714 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[i];
8715 int grp, num_channels = parent->rxchan_per_port[i];
8716 int this_channel_offset;
8718 tp->first_table_num = rdc_group;
8719 tp->num_tables = rdc_groups_per_port;
8720 this_channel_offset = 0;
8721 for (grp = 0; grp < tp->num_tables; grp++) {
8722 struct rdc_table *rt = &tp->tables[grp];
8725 pr_info("niu%d: Port %d RDC tbl(%d) [ ",
8726 parent->index, i, tp->first_table_num + grp);
8727 for (slot = 0; slot < NIU_RDC_TABLE_SLOTS; slot++) {
8728 rt->rxdma_channel[slot] =
8729 rdc_channel_base + this_channel_offset;
8731 pr_cont("%d ", rt->rxdma_channel[slot]);
8733 if (++this_channel_offset == num_channels)
8734 this_channel_offset = 0;
8739 parent->rdc_default[i] = rdc_channel_base;
8741 rdc_channel_base += num_channels;
8742 rdc_group += rdc_groups_per_port;
8746 static int fill_phy_probe_info(struct niu *np, struct niu_parent *parent,
8747 struct phy_probe_info *info)
8749 unsigned long flags;
8752 memset(info, 0, sizeof(*info));
8754 /* Port 0 to 7 are reserved for onboard Serdes, probe the rest. */
8755 niu_lock_parent(np, flags);
8757 for (port = 8; port < 32; port++) {
8758 int dev_id_1, dev_id_2;
8760 dev_id_1 = mdio_read(np, port,
8761 NIU_PMA_PMD_DEV_ADDR, MII_PHYSID1);
8762 dev_id_2 = mdio_read(np, port,
8763 NIU_PMA_PMD_DEV_ADDR, MII_PHYSID2);
8764 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
8768 dev_id_1 = mdio_read(np, port,
8769 NIU_PCS_DEV_ADDR, MII_PHYSID1);
8770 dev_id_2 = mdio_read(np, port,
8771 NIU_PCS_DEV_ADDR, MII_PHYSID2);
8772 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
8776 dev_id_1 = mii_read(np, port, MII_PHYSID1);
8777 dev_id_2 = mii_read(np, port, MII_PHYSID2);
8778 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
8783 niu_unlock_parent(np, flags);
8788 static int walk_phys(struct niu *np, struct niu_parent *parent)
8790 struct phy_probe_info *info = &parent->phy_probe_info;
8791 int lowest_10g, lowest_1g;
8792 int num_10g, num_1g;
8796 num_10g = num_1g = 0;
8798 if (!strcmp(np->vpd.model, NIU_ALONSO_MDL_STR) ||
8799 !strcmp(np->vpd.model, NIU_KIMI_MDL_STR)) {
8802 parent->plat_type = PLAT_TYPE_ATCA_CP3220;
8803 parent->num_ports = 4;
8804 val = (phy_encode(PORT_TYPE_1G, 0) |
8805 phy_encode(PORT_TYPE_1G, 1) |
8806 phy_encode(PORT_TYPE_1G, 2) |
8807 phy_encode(PORT_TYPE_1G, 3));
8808 } else if (!strcmp(np->vpd.model, NIU_FOXXY_MDL_STR)) {
8811 parent->num_ports = 2;
8812 val = (phy_encode(PORT_TYPE_10G, 0) |
8813 phy_encode(PORT_TYPE_10G, 1));
8814 } else if ((np->flags & NIU_FLAGS_XCVR_SERDES) &&
8815 (parent->plat_type == PLAT_TYPE_NIU)) {
8816 /* this is the Monza case */
8817 if (np->flags & NIU_FLAGS_10G) {
8818 val = (phy_encode(PORT_TYPE_10G, 0) |
8819 phy_encode(PORT_TYPE_10G, 1));
8821 val = (phy_encode(PORT_TYPE_1G, 0) |
8822 phy_encode(PORT_TYPE_1G, 1));
8825 err = fill_phy_probe_info(np, parent, info);
8829 num_10g = count_10g_ports(info, &lowest_10g);
8830 num_1g = count_1g_ports(info, &lowest_1g);
8832 switch ((num_10g << 4) | num_1g) {
8834 if (lowest_1g == 10)
8835 parent->plat_type = PLAT_TYPE_VF_P0;
8836 else if (lowest_1g == 26)
8837 parent->plat_type = PLAT_TYPE_VF_P1;
8839 goto unknown_vg_1g_port;
8843 val = (phy_encode(PORT_TYPE_10G, 0) |
8844 phy_encode(PORT_TYPE_10G, 1) |
8845 phy_encode(PORT_TYPE_1G, 2) |
8846 phy_encode(PORT_TYPE_1G, 3));
8850 val = (phy_encode(PORT_TYPE_10G, 0) |
8851 phy_encode(PORT_TYPE_10G, 1));
8855 val = phy_encode(PORT_TYPE_10G, np->port);
8859 if (lowest_1g == 10)
8860 parent->plat_type = PLAT_TYPE_VF_P0;
8861 else if (lowest_1g == 26)
8862 parent->plat_type = PLAT_TYPE_VF_P1;
8864 goto unknown_vg_1g_port;
8868 if ((lowest_10g & 0x7) == 0)
8869 val = (phy_encode(PORT_TYPE_10G, 0) |
8870 phy_encode(PORT_TYPE_1G, 1) |
8871 phy_encode(PORT_TYPE_1G, 2) |
8872 phy_encode(PORT_TYPE_1G, 3));
8874 val = (phy_encode(PORT_TYPE_1G, 0) |
8875 phy_encode(PORT_TYPE_10G, 1) |
8876 phy_encode(PORT_TYPE_1G, 2) |
8877 phy_encode(PORT_TYPE_1G, 3));
8881 if (lowest_1g == 10)
8882 parent->plat_type = PLAT_TYPE_VF_P0;
8883 else if (lowest_1g == 26)
8884 parent->plat_type = PLAT_TYPE_VF_P1;
8886 goto unknown_vg_1g_port;
8888 val = (phy_encode(PORT_TYPE_1G, 0) |
8889 phy_encode(PORT_TYPE_1G, 1) |
8890 phy_encode(PORT_TYPE_1G, 2) |
8891 phy_encode(PORT_TYPE_1G, 3));
8895 pr_err("Unsupported port config 10G[%d] 1G[%d]\n",
8901 parent->port_phy = val;
8903 if (parent->plat_type == PLAT_TYPE_NIU)
8904 niu_n2_divide_channels(parent);
8906 niu_divide_channels(parent, num_10g, num_1g);
8908 niu_divide_rdc_groups(parent, num_10g, num_1g);
8913 pr_err("Cannot identify platform type, 1gport=%d\n", lowest_1g);
8917 static int niu_probe_ports(struct niu *np)
8919 struct niu_parent *parent = np->parent;
8922 if (parent->port_phy == PORT_PHY_UNKNOWN) {
8923 err = walk_phys(np, parent);
8927 niu_set_ldg_timer_res(np, 2);
8928 for (i = 0; i <= LDN_MAX; i++)
8929 niu_ldn_irq_enable(np, i, 0);
8932 if (parent->port_phy == PORT_PHY_INVALID)
8938 static int niu_classifier_swstate_init(struct niu *np)
8940 struct niu_classifier *cp = &np->clas;
8942 cp->tcam_top = (u16) np->port;
8943 cp->tcam_sz = np->parent->tcam_num_entries / np->parent->num_ports;
8944 cp->h1_init = 0xffffffff;
8945 cp->h2_init = 0xffff;
8947 return fflp_early_init(np);
8950 static void niu_link_config_init(struct niu *np)
8952 struct niu_link_config *lp = &np->link_config;
8954 lp->advertising = (ADVERTISED_10baseT_Half |
8955 ADVERTISED_10baseT_Full |
8956 ADVERTISED_100baseT_Half |
8957 ADVERTISED_100baseT_Full |
8958 ADVERTISED_1000baseT_Half |
8959 ADVERTISED_1000baseT_Full |
8960 ADVERTISED_10000baseT_Full |
8961 ADVERTISED_Autoneg);
8962 lp->speed = lp->active_speed = SPEED_INVALID;
8963 lp->duplex = DUPLEX_FULL;
8964 lp->active_duplex = DUPLEX_INVALID;
8967 lp->loopback_mode = LOOPBACK_MAC;
8968 lp->active_speed = SPEED_10000;
8969 lp->active_duplex = DUPLEX_FULL;
8971 lp->loopback_mode = LOOPBACK_DISABLED;
8975 static int niu_init_mac_ipp_pcs_base(struct niu *np)
8979 np->mac_regs = np->regs + XMAC_PORT0_OFF;
8980 np->ipp_off = 0x00000;
8981 np->pcs_off = 0x04000;
8982 np->xpcs_off = 0x02000;
8986 np->mac_regs = np->regs + XMAC_PORT1_OFF;
8987 np->ipp_off = 0x08000;
8988 np->pcs_off = 0x0a000;
8989 np->xpcs_off = 0x08000;
8993 np->mac_regs = np->regs + BMAC_PORT2_OFF;
8994 np->ipp_off = 0x04000;
8995 np->pcs_off = 0x0e000;
8996 np->xpcs_off = ~0UL;
9000 np->mac_regs = np->regs + BMAC_PORT3_OFF;
9001 np->ipp_off = 0x0c000;
9002 np->pcs_off = 0x12000;
9003 np->xpcs_off = ~0UL;
9007 dev_err(np->device, "Port %u is invalid, cannot compute MAC block offset\n", np->port);
9014 static void niu_try_msix(struct niu *np, u8 *ldg_num_map)
9016 struct msix_entry msi_vec[NIU_NUM_LDG];
9017 struct niu_parent *parent = np->parent;
9018 struct pci_dev *pdev = np->pdev;
9022 first_ldg = (NIU_NUM_LDG / parent->num_ports) * np->port;
9023 for (i = 0; i < (NIU_NUM_LDG / parent->num_ports); i++)
9024 ldg_num_map[i] = first_ldg + i;
9026 num_irqs = (parent->rxchan_per_port[np->port] +
9027 parent->txchan_per_port[np->port] +
9028 (np->port == 0 ? 3 : 1));
9029 BUG_ON(num_irqs > (NIU_NUM_LDG / parent->num_ports));
9031 for (i = 0; i < num_irqs; i++) {
9032 msi_vec[i].vector = 0;
9033 msi_vec[i].entry = i;
9036 num_irqs = pci_enable_msix_range(pdev, msi_vec, 1, num_irqs);
9038 np->flags &= ~NIU_FLAGS_MSIX;
9042 np->flags |= NIU_FLAGS_MSIX;
9043 for (i = 0; i < num_irqs; i++)
9044 np->ldg[i].irq = msi_vec[i].vector;
9045 np->num_ldg = num_irqs;
9048 static int niu_n2_irq_init(struct niu *np, u8 *ldg_num_map)
9050 #ifdef CONFIG_SPARC64
9051 struct platform_device *op = np->op;
9052 const u32 *int_prop;
9055 int_prop = of_get_property(op->dev.of_node, "interrupts", NULL);
9059 for (i = 0; i < op->archdata.num_irqs; i++) {
9060 ldg_num_map[i] = int_prop[i];
9061 np->ldg[i].irq = op->archdata.irqs[i];
9064 np->num_ldg = op->archdata.num_irqs;
9072 static int niu_ldg_init(struct niu *np)
9074 struct niu_parent *parent = np->parent;
9075 u8 ldg_num_map[NIU_NUM_LDG];
9076 int first_chan, num_chan;
9077 int i, err, ldg_rotor;
9081 np->ldg[0].irq = np->dev->irq;
9082 if (parent->plat_type == PLAT_TYPE_NIU) {
9083 err = niu_n2_irq_init(np, ldg_num_map);
9087 niu_try_msix(np, ldg_num_map);
9090 for (i = 0; i < np->num_ldg; i++) {
9091 struct niu_ldg *lp = &np->ldg[i];
9093 netif_napi_add(np->dev, &lp->napi, niu_poll, 64);
9096 lp->ldg_num = ldg_num_map[i];
9097 lp->timer = 2; /* XXX */
9099 /* On N2 NIU the firmware has setup the SID mappings so they go
9100 * to the correct values that will route the LDG to the proper
9101 * interrupt in the NCU interrupt table.
9103 if (np->parent->plat_type != PLAT_TYPE_NIU) {
9104 err = niu_set_ldg_sid(np, lp->ldg_num, port, i);
9110 /* We adopt the LDG assignment ordering used by the N2 NIU
9111 * 'interrupt' properties because that simplifies a lot of
9112 * things. This ordering is:
9115 * MIF (if port zero)
9116 * SYSERR (if port zero)
9123 err = niu_ldg_assign_ldn(np, parent, ldg_num_map[ldg_rotor],
9129 if (ldg_rotor == np->num_ldg)
9133 err = niu_ldg_assign_ldn(np, parent,
9134 ldg_num_map[ldg_rotor],
9140 if (ldg_rotor == np->num_ldg)
9143 err = niu_ldg_assign_ldn(np, parent,
9144 ldg_num_map[ldg_rotor],
9150 if (ldg_rotor == np->num_ldg)
9156 for (i = 0; i < port; i++)
9157 first_chan += parent->rxchan_per_port[i];
9158 num_chan = parent->rxchan_per_port[port];
9160 for (i = first_chan; i < (first_chan + num_chan); i++) {
9161 err = niu_ldg_assign_ldn(np, parent,
9162 ldg_num_map[ldg_rotor],
9167 if (ldg_rotor == np->num_ldg)
9172 for (i = 0; i < port; i++)
9173 first_chan += parent->txchan_per_port[i];
9174 num_chan = parent->txchan_per_port[port];
9175 for (i = first_chan; i < (first_chan + num_chan); i++) {
9176 err = niu_ldg_assign_ldn(np, parent,
9177 ldg_num_map[ldg_rotor],
9182 if (ldg_rotor == np->num_ldg)
9189 static void niu_ldg_free(struct niu *np)
9191 if (np->flags & NIU_FLAGS_MSIX)
9192 pci_disable_msix(np->pdev);
9195 static int niu_get_of_props(struct niu *np)
9197 #ifdef CONFIG_SPARC64
9198 struct net_device *dev = np->dev;
9199 struct device_node *dp;
9200 const char *phy_type;
9205 if (np->parent->plat_type == PLAT_TYPE_NIU)
9206 dp = np->op->dev.of_node;
9208 dp = pci_device_to_OF_node(np->pdev);
9210 phy_type = of_get_property(dp, "phy-type", &prop_len);
9212 netdev_err(dev, "%pOF: OF node lacks phy-type property\n", dp);
9216 if (!strcmp(phy_type, "none"))
9219 strcpy(np->vpd.phy_type, phy_type);
9221 if (niu_phy_type_prop_decode(np, np->vpd.phy_type)) {
9222 netdev_err(dev, "%pOF: Illegal phy string [%s]\n",
9223 dp, np->vpd.phy_type);
9227 mac_addr = of_get_property(dp, "local-mac-address", &prop_len);
9229 netdev_err(dev, "%pOF: OF node lacks local-mac-address property\n",
9233 if (prop_len != dev->addr_len) {
9234 netdev_err(dev, "%pOF: OF MAC address prop len (%d) is wrong\n",
9237 memcpy(dev->dev_addr, mac_addr, dev->addr_len);
9238 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
9239 netdev_err(dev, "%pOF: OF MAC address is invalid\n", dp);
9240 netdev_err(dev, "%pOF: [ %pM ]\n", dp, dev->dev_addr);
9244 model = of_get_property(dp, "model", &prop_len);
9247 strcpy(np->vpd.model, model);
9249 if (of_find_property(dp, "hot-swappable-phy", &prop_len)) {
9250 np->flags |= (NIU_FLAGS_10G | NIU_FLAGS_FIBER |
9251 NIU_FLAGS_HOTPLUG_PHY);
9260 static int niu_get_invariants(struct niu *np)
9262 int err, have_props;
9265 err = niu_get_of_props(np);
9271 err = niu_init_mac_ipp_pcs_base(np);
9276 err = niu_get_and_validate_port(np);
9281 if (np->parent->plat_type == PLAT_TYPE_NIU)
9284 nw64(ESPC_PIO_EN, ESPC_PIO_EN_ENABLE);
9285 offset = niu_pci_vpd_offset(np);
9286 netif_printk(np, probe, KERN_DEBUG, np->dev,
9287 "%s() VPD offset [%08x]\n", __func__, offset);
9289 err = niu_pci_vpd_fetch(np, offset);
9293 nw64(ESPC_PIO_EN, 0);
9295 if (np->flags & NIU_FLAGS_VPD_VALID) {
9296 niu_pci_vpd_validate(np);
9297 err = niu_get_and_validate_port(np);
9302 if (!(np->flags & NIU_FLAGS_VPD_VALID)) {
9303 err = niu_get_and_validate_port(np);
9306 err = niu_pci_probe_sprom(np);
9312 err = niu_probe_ports(np);
9318 niu_classifier_swstate_init(np);
9319 niu_link_config_init(np);
9321 err = niu_determine_phy_disposition(np);
9323 err = niu_init_link(np);
9328 static LIST_HEAD(niu_parent_list);
9329 static DEFINE_MUTEX(niu_parent_lock);
9330 static int niu_parent_index;
9332 static ssize_t show_port_phy(struct device *dev,
9333 struct device_attribute *attr, char *buf)
9335 struct platform_device *plat_dev = to_platform_device(dev);
9336 struct niu_parent *p = dev_get_platdata(&plat_dev->dev);
9337 u32 port_phy = p->port_phy;
9338 char *orig_buf = buf;
9341 if (port_phy == PORT_PHY_UNKNOWN ||
9342 port_phy == PORT_PHY_INVALID)
9345 for (i = 0; i < p->num_ports; i++) {
9346 const char *type_str;
9349 type = phy_decode(port_phy, i);
9350 if (type == PORT_TYPE_10G)
9355 (i == 0) ? "%s" : " %s",
9358 buf += sprintf(buf, "\n");
9359 return buf - orig_buf;
9362 static ssize_t show_plat_type(struct device *dev,
9363 struct device_attribute *attr, char *buf)
9365 struct platform_device *plat_dev = to_platform_device(dev);
9366 struct niu_parent *p = dev_get_platdata(&plat_dev->dev);
9367 const char *type_str;
9369 switch (p->plat_type) {
9370 case PLAT_TYPE_ATLAS:
9376 case PLAT_TYPE_VF_P0:
9379 case PLAT_TYPE_VF_P1:
9383 type_str = "unknown";
9387 return sprintf(buf, "%s\n", type_str);
9390 static ssize_t __show_chan_per_port(struct device *dev,
9391 struct device_attribute *attr, char *buf,
9394 struct platform_device *plat_dev = to_platform_device(dev);
9395 struct niu_parent *p = dev_get_platdata(&plat_dev->dev);
9396 char *orig_buf = buf;
9400 arr = (rx ? p->rxchan_per_port : p->txchan_per_port);
9402 for (i = 0; i < p->num_ports; i++) {
9404 (i == 0) ? "%d" : " %d",
9407 buf += sprintf(buf, "\n");
9409 return buf - orig_buf;
9412 static ssize_t show_rxchan_per_port(struct device *dev,
9413 struct device_attribute *attr, char *buf)
9415 return __show_chan_per_port(dev, attr, buf, 1);
9418 static ssize_t show_txchan_per_port(struct device *dev,
9419 struct device_attribute *attr, char *buf)
9421 return __show_chan_per_port(dev, attr, buf, 1);
9424 static ssize_t show_num_ports(struct device *dev,
9425 struct device_attribute *attr, char *buf)
9427 struct platform_device *plat_dev = to_platform_device(dev);
9428 struct niu_parent *p = dev_get_platdata(&plat_dev->dev);
9430 return sprintf(buf, "%d\n", p->num_ports);
9433 static struct device_attribute niu_parent_attributes[] = {
9434 __ATTR(port_phy, 0444, show_port_phy, NULL),
9435 __ATTR(plat_type, 0444, show_plat_type, NULL),
9436 __ATTR(rxchan_per_port, 0444, show_rxchan_per_port, NULL),
9437 __ATTR(txchan_per_port, 0444, show_txchan_per_port, NULL),
9438 __ATTR(num_ports, 0444, show_num_ports, NULL),
9442 static struct niu_parent *niu_new_parent(struct niu *np,
9443 union niu_parent_id *id, u8 ptype)
9445 struct platform_device *plat_dev;
9446 struct niu_parent *p;
9449 plat_dev = platform_device_register_simple("niu-board", niu_parent_index,
9451 if (IS_ERR(plat_dev))
9454 for (i = 0; niu_parent_attributes[i].attr.name; i++) {
9455 int err = device_create_file(&plat_dev->dev,
9456 &niu_parent_attributes[i]);
9458 goto fail_unregister;
9461 p = kzalloc(sizeof(*p), GFP_KERNEL);
9463 goto fail_unregister;
9465 p->index = niu_parent_index++;
9467 plat_dev->dev.platform_data = p;
9468 p->plat_dev = plat_dev;
9470 memcpy(&p->id, id, sizeof(*id));
9471 p->plat_type = ptype;
9472 INIT_LIST_HEAD(&p->list);
9473 atomic_set(&p->refcnt, 0);
9474 list_add(&p->list, &niu_parent_list);
9475 spin_lock_init(&p->lock);
9477 p->rxdma_clock_divider = 7500;
9479 p->tcam_num_entries = NIU_PCI_TCAM_ENTRIES;
9480 if (p->plat_type == PLAT_TYPE_NIU)
9481 p->tcam_num_entries = NIU_NONPCI_TCAM_ENTRIES;
9483 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_SCTP_IPV6; i++) {
9484 int index = i - CLASS_CODE_USER_PROG1;
9486 p->tcam_key[index] = TCAM_KEY_TSEL;
9487 p->flow_key[index] = (FLOW_KEY_IPSA |
9490 (FLOW_KEY_L4_BYTE12 <<
9491 FLOW_KEY_L4_0_SHIFT) |
9492 (FLOW_KEY_L4_BYTE12 <<
9493 FLOW_KEY_L4_1_SHIFT));
9496 for (i = 0; i < LDN_MAX + 1; i++)
9497 p->ldg_map[i] = LDG_INVALID;
9502 platform_device_unregister(plat_dev);
9506 static struct niu_parent *niu_get_parent(struct niu *np,
9507 union niu_parent_id *id, u8 ptype)
9509 struct niu_parent *p, *tmp;
9510 int port = np->port;
9512 mutex_lock(&niu_parent_lock);
9514 list_for_each_entry(tmp, &niu_parent_list, list) {
9515 if (!memcmp(id, &tmp->id, sizeof(*id))) {
9521 p = niu_new_parent(np, id, ptype);
9527 sprintf(port_name, "port%d", port);
9528 err = sysfs_create_link(&p->plat_dev->dev.kobj,
9532 p->ports[port] = np;
9533 atomic_inc(&p->refcnt);
9536 mutex_unlock(&niu_parent_lock);
9541 static void niu_put_parent(struct niu *np)
9543 struct niu_parent *p = np->parent;
9547 BUG_ON(!p || p->ports[port] != np);
9549 netif_printk(np, probe, KERN_DEBUG, np->dev,
9550 "%s() port[%u]\n", __func__, port);
9552 sprintf(port_name, "port%d", port);
9554 mutex_lock(&niu_parent_lock);
9556 sysfs_remove_link(&p->plat_dev->dev.kobj, port_name);
9558 p->ports[port] = NULL;
9561 if (atomic_dec_and_test(&p->refcnt)) {
9563 platform_device_unregister(p->plat_dev);
9566 mutex_unlock(&niu_parent_lock);
9569 static void *niu_pci_alloc_coherent(struct device *dev, size_t size,
9570 u64 *handle, gfp_t flag)
9575 ret = dma_alloc_coherent(dev, size, &dh, flag);
9581 static void niu_pci_free_coherent(struct device *dev, size_t size,
9582 void *cpu_addr, u64 handle)
9584 dma_free_coherent(dev, size, cpu_addr, handle);
9587 static u64 niu_pci_map_page(struct device *dev, struct page *page,
9588 unsigned long offset, size_t size,
9589 enum dma_data_direction direction)
9591 return dma_map_page(dev, page, offset, size, direction);
9594 static void niu_pci_unmap_page(struct device *dev, u64 dma_address,
9595 size_t size, enum dma_data_direction direction)
9597 dma_unmap_page(dev, dma_address, size, direction);
9600 static u64 niu_pci_map_single(struct device *dev, void *cpu_addr,
9602 enum dma_data_direction direction)
9604 return dma_map_single(dev, cpu_addr, size, direction);
9607 static void niu_pci_unmap_single(struct device *dev, u64 dma_address,
9609 enum dma_data_direction direction)
9611 dma_unmap_single(dev, dma_address, size, direction);
9614 static const struct niu_ops niu_pci_ops = {
9615 .alloc_coherent = niu_pci_alloc_coherent,
9616 .free_coherent = niu_pci_free_coherent,
9617 .map_page = niu_pci_map_page,
9618 .unmap_page = niu_pci_unmap_page,
9619 .map_single = niu_pci_map_single,
9620 .unmap_single = niu_pci_unmap_single,
9623 static void niu_driver_version(void)
9625 static int niu_version_printed;
9627 if (niu_version_printed++ == 0)
9628 pr_info("%s", version);
9631 static struct net_device *niu_alloc_and_init(struct device *gen_dev,
9632 struct pci_dev *pdev,
9633 struct platform_device *op,
9634 const struct niu_ops *ops, u8 port)
9636 struct net_device *dev;
9639 dev = alloc_etherdev_mq(sizeof(struct niu), NIU_NUM_TXCHAN);
9643 SET_NETDEV_DEV(dev, gen_dev);
9645 np = netdev_priv(dev);
9649 np->device = gen_dev;
9652 np->msg_enable = niu_debug;
9654 spin_lock_init(&np->lock);
9655 INIT_WORK(&np->reset_task, niu_reset_task);
9662 static const struct net_device_ops niu_netdev_ops = {
9663 .ndo_open = niu_open,
9664 .ndo_stop = niu_close,
9665 .ndo_start_xmit = niu_start_xmit,
9666 .ndo_get_stats64 = niu_get_stats,
9667 .ndo_set_rx_mode = niu_set_rx_mode,
9668 .ndo_validate_addr = eth_validate_addr,
9669 .ndo_set_mac_address = niu_set_mac_addr,
9670 .ndo_do_ioctl = niu_ioctl,
9671 .ndo_tx_timeout = niu_tx_timeout,
9672 .ndo_change_mtu = niu_change_mtu,
9675 static void niu_assign_netdev_ops(struct net_device *dev)
9677 dev->netdev_ops = &niu_netdev_ops;
9678 dev->ethtool_ops = &niu_ethtool_ops;
9679 dev->watchdog_timeo = NIU_TX_TIMEOUT;
9682 static void niu_device_announce(struct niu *np)
9684 struct net_device *dev = np->dev;
9686 pr_info("%s: NIU Ethernet %pM\n", dev->name, dev->dev_addr);
9688 if (np->parent->plat_type == PLAT_TYPE_ATCA_CP3220) {
9689 pr_info("%s: Port type[%s] mode[%s:%s] XCVR[%s] phy[%s]\n",
9691 (np->flags & NIU_FLAGS_XMAC ? "XMAC" : "BMAC"),
9692 (np->flags & NIU_FLAGS_10G ? "10G" : "1G"),
9693 (np->flags & NIU_FLAGS_FIBER ? "RGMII FIBER" : "SERDES"),
9694 (np->mac_xcvr == MAC_XCVR_MII ? "MII" :
9695 (np->mac_xcvr == MAC_XCVR_PCS ? "PCS" : "XPCS")),
9698 pr_info("%s: Port type[%s] mode[%s:%s] XCVR[%s] phy[%s]\n",
9700 (np->flags & NIU_FLAGS_XMAC ? "XMAC" : "BMAC"),
9701 (np->flags & NIU_FLAGS_10G ? "10G" : "1G"),
9702 (np->flags & NIU_FLAGS_FIBER ? "FIBER" :
9703 (np->flags & NIU_FLAGS_XCVR_SERDES ? "SERDES" :
9705 (np->mac_xcvr == MAC_XCVR_MII ? "MII" :
9706 (np->mac_xcvr == MAC_XCVR_PCS ? "PCS" : "XPCS")),
9711 static void niu_set_basic_features(struct net_device *dev)
9713 dev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXHASH;
9714 dev->features |= dev->hw_features | NETIF_F_RXCSUM;
9717 static int niu_pci_init_one(struct pci_dev *pdev,
9718 const struct pci_device_id *ent)
9720 union niu_parent_id parent_id;
9721 struct net_device *dev;
9726 niu_driver_version();
9728 err = pci_enable_device(pdev);
9730 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
9734 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM) ||
9735 !(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
9736 dev_err(&pdev->dev, "Cannot find proper PCI device base addresses, aborting\n");
9738 goto err_out_disable_pdev;
9741 err = pci_request_regions(pdev, DRV_MODULE_NAME);
9743 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
9744 goto err_out_disable_pdev;
9747 if (!pci_is_pcie(pdev)) {
9748 dev_err(&pdev->dev, "Cannot find PCI Express capability, aborting\n");
9750 goto err_out_free_res;
9753 dev = niu_alloc_and_init(&pdev->dev, pdev, NULL,
9754 &niu_pci_ops, PCI_FUNC(pdev->devfn));
9757 goto err_out_free_res;
9759 np = netdev_priv(dev);
9761 memset(&parent_id, 0, sizeof(parent_id));
9762 parent_id.pci.domain = pci_domain_nr(pdev->bus);
9763 parent_id.pci.bus = pdev->bus->number;
9764 parent_id.pci.device = PCI_SLOT(pdev->devfn);
9766 np->parent = niu_get_parent(np, &parent_id,
9770 goto err_out_free_dev;
9773 pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
9774 PCI_EXP_DEVCTL_NOSNOOP_EN,
9775 PCI_EXP_DEVCTL_CERE | PCI_EXP_DEVCTL_NFERE |
9776 PCI_EXP_DEVCTL_FERE | PCI_EXP_DEVCTL_URRE |
9777 PCI_EXP_DEVCTL_RELAX_EN);
9779 dma_mask = DMA_BIT_MASK(44);
9780 err = pci_set_dma_mask(pdev, dma_mask);
9782 dev->features |= NETIF_F_HIGHDMA;
9783 err = pci_set_consistent_dma_mask(pdev, dma_mask);
9785 dev_err(&pdev->dev, "Unable to obtain 44 bit DMA for consistent allocations, aborting\n");
9786 goto err_out_release_parent;
9790 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
9792 dev_err(&pdev->dev, "No usable DMA configuration, aborting\n");
9793 goto err_out_release_parent;
9797 niu_set_basic_features(dev);
9799 dev->priv_flags |= IFF_UNICAST_FLT;
9801 np->regs = pci_ioremap_bar(pdev, 0);
9803 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
9805 goto err_out_release_parent;
9808 pci_set_master(pdev);
9809 pci_save_state(pdev);
9811 dev->irq = pdev->irq;
9813 /* MTU range: 68 - 9216 */
9814 dev->min_mtu = ETH_MIN_MTU;
9815 dev->max_mtu = NIU_MAX_MTU;
9817 niu_assign_netdev_ops(dev);
9819 err = niu_get_invariants(np);
9822 dev_err(&pdev->dev, "Problem fetching invariants of chip, aborting\n");
9823 goto err_out_iounmap;
9826 err = register_netdev(dev);
9828 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
9829 goto err_out_iounmap;
9832 pci_set_drvdata(pdev, dev);
9834 niu_device_announce(np);
9844 err_out_release_parent:
9851 pci_release_regions(pdev);
9853 err_out_disable_pdev:
9854 pci_disable_device(pdev);
9859 static void niu_pci_remove_one(struct pci_dev *pdev)
9861 struct net_device *dev = pci_get_drvdata(pdev);
9864 struct niu *np = netdev_priv(dev);
9866 unregister_netdev(dev);
9877 pci_release_regions(pdev);
9878 pci_disable_device(pdev);
9882 static int __maybe_unused niu_suspend(struct device *dev_d)
9884 struct net_device *dev = dev_get_drvdata(dev_d);
9885 struct niu *np = netdev_priv(dev);
9886 unsigned long flags;
9888 if (!netif_running(dev))
9891 flush_work(&np->reset_task);
9894 del_timer_sync(&np->timer);
9896 spin_lock_irqsave(&np->lock, flags);
9897 niu_enable_interrupts(np, 0);
9898 spin_unlock_irqrestore(&np->lock, flags);
9900 netif_device_detach(dev);
9902 spin_lock_irqsave(&np->lock, flags);
9904 spin_unlock_irqrestore(&np->lock, flags);
9909 static int __maybe_unused niu_resume(struct device *dev_d)
9911 struct net_device *dev = dev_get_drvdata(dev_d);
9912 struct niu *np = netdev_priv(dev);
9913 unsigned long flags;
9916 if (!netif_running(dev))
9919 netif_device_attach(dev);
9921 spin_lock_irqsave(&np->lock, flags);
9923 err = niu_init_hw(np);
9925 np->timer.expires = jiffies + HZ;
9926 add_timer(&np->timer);
9927 niu_netif_start(np);
9930 spin_unlock_irqrestore(&np->lock, flags);
9935 static SIMPLE_DEV_PM_OPS(niu_pm_ops, niu_suspend, niu_resume);
9937 static struct pci_driver niu_pci_driver = {
9938 .name = DRV_MODULE_NAME,
9939 .id_table = niu_pci_tbl,
9940 .probe = niu_pci_init_one,
9941 .remove = niu_pci_remove_one,
9942 .driver.pm = &niu_pm_ops,
9945 #ifdef CONFIG_SPARC64
9946 static void *niu_phys_alloc_coherent(struct device *dev, size_t size,
9947 u64 *dma_addr, gfp_t flag)
9949 unsigned long order = get_order(size);
9950 unsigned long page = __get_free_pages(flag, order);
9954 memset((char *)page, 0, PAGE_SIZE << order);
9955 *dma_addr = __pa(page);
9957 return (void *) page;
9960 static void niu_phys_free_coherent(struct device *dev, size_t size,
9961 void *cpu_addr, u64 handle)
9963 unsigned long order = get_order(size);
9965 free_pages((unsigned long) cpu_addr, order);
9968 static u64 niu_phys_map_page(struct device *dev, struct page *page,
9969 unsigned long offset, size_t size,
9970 enum dma_data_direction direction)
9972 return page_to_phys(page) + offset;
9975 static void niu_phys_unmap_page(struct device *dev, u64 dma_address,
9976 size_t size, enum dma_data_direction direction)
9978 /* Nothing to do. */
9981 static u64 niu_phys_map_single(struct device *dev, void *cpu_addr,
9983 enum dma_data_direction direction)
9985 return __pa(cpu_addr);
9988 static void niu_phys_unmap_single(struct device *dev, u64 dma_address,
9990 enum dma_data_direction direction)
9992 /* Nothing to do. */
9995 static const struct niu_ops niu_phys_ops = {
9996 .alloc_coherent = niu_phys_alloc_coherent,
9997 .free_coherent = niu_phys_free_coherent,
9998 .map_page = niu_phys_map_page,
9999 .unmap_page = niu_phys_unmap_page,
10000 .map_single = niu_phys_map_single,
10001 .unmap_single = niu_phys_unmap_single,
10004 static int niu_of_probe(struct platform_device *op)
10006 union niu_parent_id parent_id;
10007 struct net_device *dev;
10012 niu_driver_version();
10014 reg = of_get_property(op->dev.of_node, "reg", NULL);
10016 dev_err(&op->dev, "%pOF: No 'reg' property, aborting\n",
10021 dev = niu_alloc_and_init(&op->dev, NULL, op,
10022 &niu_phys_ops, reg[0] & 0x1);
10027 np = netdev_priv(dev);
10029 memset(&parent_id, 0, sizeof(parent_id));
10030 parent_id.of = of_get_parent(op->dev.of_node);
10032 np->parent = niu_get_parent(np, &parent_id,
10036 goto err_out_free_dev;
10039 niu_set_basic_features(dev);
10041 np->regs = of_ioremap(&op->resource[1], 0,
10042 resource_size(&op->resource[1]),
10045 dev_err(&op->dev, "Cannot map device registers, aborting\n");
10047 goto err_out_release_parent;
10050 np->vir_regs_1 = of_ioremap(&op->resource[2], 0,
10051 resource_size(&op->resource[2]),
10053 if (!np->vir_regs_1) {
10054 dev_err(&op->dev, "Cannot map device vir registers 1, aborting\n");
10056 goto err_out_iounmap;
10059 np->vir_regs_2 = of_ioremap(&op->resource[3], 0,
10060 resource_size(&op->resource[3]),
10062 if (!np->vir_regs_2) {
10063 dev_err(&op->dev, "Cannot map device vir registers 2, aborting\n");
10065 goto err_out_iounmap;
10068 niu_assign_netdev_ops(dev);
10070 err = niu_get_invariants(np);
10072 if (err != -ENODEV)
10073 dev_err(&op->dev, "Problem fetching invariants of chip, aborting\n");
10074 goto err_out_iounmap;
10077 err = register_netdev(dev);
10079 dev_err(&op->dev, "Cannot register net device, aborting\n");
10080 goto err_out_iounmap;
10083 platform_set_drvdata(op, dev);
10085 niu_device_announce(np);
10090 if (np->vir_regs_1) {
10091 of_iounmap(&op->resource[2], np->vir_regs_1,
10092 resource_size(&op->resource[2]));
10093 np->vir_regs_1 = NULL;
10096 if (np->vir_regs_2) {
10097 of_iounmap(&op->resource[3], np->vir_regs_2,
10098 resource_size(&op->resource[3]));
10099 np->vir_regs_2 = NULL;
10103 of_iounmap(&op->resource[1], np->regs,
10104 resource_size(&op->resource[1]));
10108 err_out_release_parent:
10109 niu_put_parent(np);
10118 static int niu_of_remove(struct platform_device *op)
10120 struct net_device *dev = platform_get_drvdata(op);
10123 struct niu *np = netdev_priv(dev);
10125 unregister_netdev(dev);
10127 if (np->vir_regs_1) {
10128 of_iounmap(&op->resource[2], np->vir_regs_1,
10129 resource_size(&op->resource[2]));
10130 np->vir_regs_1 = NULL;
10133 if (np->vir_regs_2) {
10134 of_iounmap(&op->resource[3], np->vir_regs_2,
10135 resource_size(&op->resource[3]));
10136 np->vir_regs_2 = NULL;
10140 of_iounmap(&op->resource[1], np->regs,
10141 resource_size(&op->resource[1]));
10147 niu_put_parent(np);
10154 static const struct of_device_id niu_match[] = {
10157 .compatible = "SUNW,niusl",
10161 MODULE_DEVICE_TABLE(of, niu_match);
10163 static struct platform_driver niu_of_driver = {
10166 .of_match_table = niu_match,
10168 .probe = niu_of_probe,
10169 .remove = niu_of_remove,
10172 #endif /* CONFIG_SPARC64 */
10174 static int __init niu_init(void)
10178 BUILD_BUG_ON(PAGE_SIZE < 4 * 1024);
10180 niu_debug = netif_msg_init(debug, NIU_MSG_DEFAULT);
10182 #ifdef CONFIG_SPARC64
10183 err = platform_driver_register(&niu_of_driver);
10187 err = pci_register_driver(&niu_pci_driver);
10188 #ifdef CONFIG_SPARC64
10190 platform_driver_unregister(&niu_of_driver);
10197 static void __exit niu_exit(void)
10199 pci_unregister_driver(&niu_pci_driver);
10200 #ifdef CONFIG_SPARC64
10201 platform_driver_unregister(&niu_of_driver);
10205 module_init(niu_init);
10206 module_exit(niu_exit);