1 /* niu.c: Neptune ethernet driver.
3 * Copyright (C) 2007 David S. Miller (davem@davemloft.net)
6 #include <linux/module.h>
7 #include <linux/init.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/netdevice.h>
11 #include <linux/ethtool.h>
12 #include <linux/etherdevice.h>
13 #include <linux/platform_device.h>
14 #include <linux/delay.h>
15 #include <linux/bitops.h>
16 #include <linux/mii.h>
17 #include <linux/if_ether.h>
18 #include <linux/if_vlan.h>
21 #include <linux/ipv6.h>
22 #include <linux/log2.h>
23 #include <linux/jiffies.h>
24 #include <linux/crc32.h>
29 #include <linux/of_device.h>
34 #define DRV_MODULE_NAME "niu"
35 #define PFX DRV_MODULE_NAME ": "
36 #define DRV_MODULE_VERSION "0.6"
37 #define DRV_MODULE_RELDATE "January 5, 2008"
39 static char version
[] __devinitdata
=
40 DRV_MODULE_NAME
".c:v" DRV_MODULE_VERSION
" (" DRV_MODULE_RELDATE
")\n";
42 MODULE_AUTHOR("David S. Miller (davem@davemloft.net)");
43 MODULE_DESCRIPTION("NIU ethernet driver");
44 MODULE_LICENSE("GPL");
45 MODULE_VERSION(DRV_MODULE_VERSION
);
47 #ifndef DMA_44BIT_MASK
48 #define DMA_44BIT_MASK 0x00000fffffffffffULL
52 static u64
readq(void __iomem
*reg
)
54 return (((u64
)readl(reg
+ 0x4UL
) << 32) |
58 static void writeq(u64 val
, void __iomem
*reg
)
60 writel(val
& 0xffffffff, reg
);
61 writel(val
>> 32, reg
+ 0x4UL
);
65 static struct pci_device_id niu_pci_tbl
[] = {
66 {PCI_DEVICE(PCI_VENDOR_ID_SUN
, 0xabcd)},
70 MODULE_DEVICE_TABLE(pci
, niu_pci_tbl
);
72 #define NIU_TX_TIMEOUT (5 * HZ)
74 #define nr64(reg) readq(np->regs + (reg))
75 #define nw64(reg, val) writeq((val), np->regs + (reg))
77 #define nr64_mac(reg) readq(np->mac_regs + (reg))
78 #define nw64_mac(reg, val) writeq((val), np->mac_regs + (reg))
80 #define nr64_ipp(reg) readq(np->regs + np->ipp_off + (reg))
81 #define nw64_ipp(reg, val) writeq((val), np->regs + np->ipp_off + (reg))
83 #define nr64_pcs(reg) readq(np->regs + np->pcs_off + (reg))
84 #define nw64_pcs(reg, val) writeq((val), np->regs + np->pcs_off + (reg))
86 #define nr64_xpcs(reg) readq(np->regs + np->xpcs_off + (reg))
87 #define nw64_xpcs(reg, val) writeq((val), np->regs + np->xpcs_off + (reg))
89 #define NIU_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
92 static int debug
= -1;
93 module_param(debug
, int, 0);
94 MODULE_PARM_DESC(debug
, "NIU debug level");
96 #define niudbg(TYPE, f, a...) \
97 do { if ((np)->msg_enable & NETIF_MSG_##TYPE) \
98 printk(KERN_DEBUG PFX f, ## a); \
101 #define niuinfo(TYPE, f, a...) \
102 do { if ((np)->msg_enable & NETIF_MSG_##TYPE) \
103 printk(KERN_INFO PFX f, ## a); \
106 #define niuwarn(TYPE, f, a...) \
107 do { if ((np)->msg_enable & NETIF_MSG_##TYPE) \
108 printk(KERN_WARNING PFX f, ## a); \
111 #define niu_lock_parent(np, flags) \
112 spin_lock_irqsave(&np->parent->lock, flags)
113 #define niu_unlock_parent(np, flags) \
114 spin_unlock_irqrestore(&np->parent->lock, flags)
116 static int __niu_wait_bits_clear_mac(struct niu
*np
, unsigned long reg
,
117 u64 bits
, int limit
, int delay
)
119 while (--limit
>= 0) {
120 u64 val
= nr64_mac(reg
);
131 static int __niu_set_and_wait_clear_mac(struct niu
*np
, unsigned long reg
,
132 u64 bits
, int limit
, int delay
,
133 const char *reg_name
)
138 err
= __niu_wait_bits_clear_mac(np
, reg
, bits
, limit
, delay
);
140 dev_err(np
->device
, PFX
"%s: bits (%llx) of register %s "
141 "would not clear, val[%llx]\n",
142 np
->dev
->name
, (unsigned long long) bits
, reg_name
,
143 (unsigned long long) nr64_mac(reg
));
147 #define niu_set_and_wait_clear_mac(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
148 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
149 __niu_set_and_wait_clear_mac(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
152 static int __niu_wait_bits_clear_ipp(struct niu
*np
, unsigned long reg
,
153 u64 bits
, int limit
, int delay
)
155 while (--limit
>= 0) {
156 u64 val
= nr64_ipp(reg
);
167 static int __niu_set_and_wait_clear_ipp(struct niu
*np
, unsigned long reg
,
168 u64 bits
, int limit
, int delay
,
169 const char *reg_name
)
178 err
= __niu_wait_bits_clear_ipp(np
, reg
, bits
, limit
, delay
);
180 dev_err(np
->device
, PFX
"%s: bits (%llx) of register %s "
181 "would not clear, val[%llx]\n",
182 np
->dev
->name
, (unsigned long long) bits
, reg_name
,
183 (unsigned long long) nr64_ipp(reg
));
187 #define niu_set_and_wait_clear_ipp(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
188 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
189 __niu_set_and_wait_clear_ipp(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
192 static int __niu_wait_bits_clear(struct niu
*np
, unsigned long reg
,
193 u64 bits
, int limit
, int delay
)
195 while (--limit
>= 0) {
207 #define niu_wait_bits_clear(NP, REG, BITS, LIMIT, DELAY) \
208 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
209 __niu_wait_bits_clear(NP, REG, BITS, LIMIT, DELAY); \
212 static int __niu_set_and_wait_clear(struct niu
*np
, unsigned long reg
,
213 u64 bits
, int limit
, int delay
,
214 const char *reg_name
)
219 err
= __niu_wait_bits_clear(np
, reg
, bits
, limit
, delay
);
221 dev_err(np
->device
, PFX
"%s: bits (%llx) of register %s "
222 "would not clear, val[%llx]\n",
223 np
->dev
->name
, (unsigned long long) bits
, reg_name
,
224 (unsigned long long) nr64(reg
));
228 #define niu_set_and_wait_clear(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
229 ({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
230 __niu_set_and_wait_clear(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
233 static void niu_ldg_rearm(struct niu
*np
, struct niu_ldg
*lp
, int on
)
235 u64 val
= (u64
) lp
->timer
;
238 val
|= LDG_IMGMT_ARM
;
240 nw64(LDG_IMGMT(lp
->ldg_num
), val
);
243 static int niu_ldn_irq_enable(struct niu
*np
, int ldn
, int on
)
245 unsigned long mask_reg
, bits
;
248 if (ldn
< 0 || ldn
> LDN_MAX
)
252 mask_reg
= LD_IM0(ldn
);
255 mask_reg
= LD_IM1(ldn
- 64);
259 val
= nr64(mask_reg
);
269 static int niu_enable_ldn_in_ldg(struct niu
*np
, struct niu_ldg
*lp
, int on
)
271 struct niu_parent
*parent
= np
->parent
;
274 for (i
= 0; i
<= LDN_MAX
; i
++) {
277 if (parent
->ldg_map
[i
] != lp
->ldg_num
)
280 err
= niu_ldn_irq_enable(np
, i
, on
);
287 static int niu_enable_interrupts(struct niu
*np
, int on
)
291 for (i
= 0; i
< np
->num_ldg
; i
++) {
292 struct niu_ldg
*lp
= &np
->ldg
[i
];
295 err
= niu_enable_ldn_in_ldg(np
, lp
, on
);
299 for (i
= 0; i
< np
->num_ldg
; i
++)
300 niu_ldg_rearm(np
, &np
->ldg
[i
], on
);
305 static u32
phy_encode(u32 type
, int port
)
307 return (type
<< (port
* 2));
310 static u32
phy_decode(u32 val
, int port
)
312 return (val
>> (port
* 2)) & PORT_TYPE_MASK
;
315 static int mdio_wait(struct niu
*np
)
320 while (--limit
> 0) {
321 val
= nr64(MIF_FRAME_OUTPUT
);
322 if ((val
>> MIF_FRAME_OUTPUT_TA_SHIFT
) & 0x1)
323 return val
& MIF_FRAME_OUTPUT_DATA
;
331 static int mdio_read(struct niu
*np
, int port
, int dev
, int reg
)
335 nw64(MIF_FRAME_OUTPUT
, MDIO_ADDR_OP(port
, dev
, reg
));
340 nw64(MIF_FRAME_OUTPUT
, MDIO_READ_OP(port
, dev
));
341 return mdio_wait(np
);
344 static int mdio_write(struct niu
*np
, int port
, int dev
, int reg
, int data
)
348 nw64(MIF_FRAME_OUTPUT
, MDIO_ADDR_OP(port
, dev
, reg
));
353 nw64(MIF_FRAME_OUTPUT
, MDIO_WRITE_OP(port
, dev
, data
));
361 static int mii_read(struct niu
*np
, int port
, int reg
)
363 nw64(MIF_FRAME_OUTPUT
, MII_READ_OP(port
, reg
));
364 return mdio_wait(np
);
367 static int mii_write(struct niu
*np
, int port
, int reg
, int data
)
371 nw64(MIF_FRAME_OUTPUT
, MII_WRITE_OP(port
, reg
, data
));
379 static int esr2_set_tx_cfg(struct niu
*np
, unsigned long channel
, u32 val
)
383 err
= mdio_write(np
, np
->port
, NIU_ESR2_DEV_ADDR
,
384 ESR2_TI_PLL_TX_CFG_L(channel
),
387 err
= mdio_write(np
, np
->port
, NIU_ESR2_DEV_ADDR
,
388 ESR2_TI_PLL_TX_CFG_H(channel
),
393 static int esr2_set_rx_cfg(struct niu
*np
, unsigned long channel
, u32 val
)
397 err
= mdio_write(np
, np
->port
, NIU_ESR2_DEV_ADDR
,
398 ESR2_TI_PLL_RX_CFG_L(channel
),
401 err
= mdio_write(np
, np
->port
, NIU_ESR2_DEV_ADDR
,
402 ESR2_TI_PLL_RX_CFG_H(channel
),
407 /* Mode is always 10G fiber. */
408 static int serdes_init_niu(struct niu
*np
)
410 struct niu_link_config
*lp
= &np
->link_config
;
414 tx_cfg
= (PLL_TX_CFG_ENTX
| PLL_TX_CFG_SWING_1375MV
);
415 rx_cfg
= (PLL_RX_CFG_ENRX
| PLL_RX_CFG_TERM_0P8VDDT
|
416 PLL_RX_CFG_ALIGN_ENA
| PLL_RX_CFG_LOS_LTHRESH
|
417 PLL_RX_CFG_EQ_LP_ADAPTIVE
);
419 if (lp
->loopback_mode
== LOOPBACK_PHY
) {
420 u16 test_cfg
= PLL_TEST_CFG_LOOPBACK_CML_DIS
;
422 mdio_write(np
, np
->port
, NIU_ESR2_DEV_ADDR
,
423 ESR2_TI_PLL_TEST_CFG_L
, test_cfg
);
425 tx_cfg
|= PLL_TX_CFG_ENTEST
;
426 rx_cfg
|= PLL_RX_CFG_ENTEST
;
429 /* Initialize all 4 lanes of the SERDES. */
430 for (i
= 0; i
< 4; i
++) {
431 int err
= esr2_set_tx_cfg(np
, i
, tx_cfg
);
436 for (i
= 0; i
< 4; i
++) {
437 int err
= esr2_set_rx_cfg(np
, i
, rx_cfg
);
445 static int esr_read_rxtx_ctrl(struct niu
*np
, unsigned long chan
, u32
*val
)
449 err
= mdio_read(np
, np
->port
, NIU_ESR_DEV_ADDR
, ESR_RXTX_CTRL_L(chan
));
451 *val
= (err
& 0xffff);
452 err
= mdio_read(np
, np
->port
, NIU_ESR_DEV_ADDR
,
453 ESR_RXTX_CTRL_H(chan
));
455 *val
|= ((err
& 0xffff) << 16);
461 static int esr_read_glue0(struct niu
*np
, unsigned long chan
, u32
*val
)
465 err
= mdio_read(np
, np
->port
, NIU_ESR_DEV_ADDR
,
466 ESR_GLUE_CTRL0_L(chan
));
468 *val
= (err
& 0xffff);
469 err
= mdio_read(np
, np
->port
, NIU_ESR_DEV_ADDR
,
470 ESR_GLUE_CTRL0_H(chan
));
472 *val
|= ((err
& 0xffff) << 16);
479 static int esr_read_reset(struct niu
*np
, u32
*val
)
483 err
= mdio_read(np
, np
->port
, NIU_ESR_DEV_ADDR
,
484 ESR_RXTX_RESET_CTRL_L
);
486 *val
= (err
& 0xffff);
487 err
= mdio_read(np
, np
->port
, NIU_ESR_DEV_ADDR
,
488 ESR_RXTX_RESET_CTRL_H
);
490 *val
|= ((err
& 0xffff) << 16);
497 static int esr_write_rxtx_ctrl(struct niu
*np
, unsigned long chan
, u32 val
)
501 err
= mdio_write(np
, np
->port
, NIU_ESR_DEV_ADDR
,
502 ESR_RXTX_CTRL_L(chan
), val
& 0xffff);
504 err
= mdio_write(np
, np
->port
, NIU_ESR_DEV_ADDR
,
505 ESR_RXTX_CTRL_H(chan
), (val
>> 16));
509 static int esr_write_glue0(struct niu
*np
, unsigned long chan
, u32 val
)
513 err
= mdio_write(np
, np
->port
, NIU_ESR_DEV_ADDR
,
514 ESR_GLUE_CTRL0_L(chan
), val
& 0xffff);
516 err
= mdio_write(np
, np
->port
, NIU_ESR_DEV_ADDR
,
517 ESR_GLUE_CTRL0_H(chan
), (val
>> 16));
521 static int esr_reset(struct niu
*np
)
526 err
= mdio_write(np
, np
->port
, NIU_ESR_DEV_ADDR
,
527 ESR_RXTX_RESET_CTRL_L
, 0x0000);
530 err
= mdio_write(np
, np
->port
, NIU_ESR_DEV_ADDR
,
531 ESR_RXTX_RESET_CTRL_H
, 0xffff);
536 err
= mdio_write(np
, np
->port
, NIU_ESR_DEV_ADDR
,
537 ESR_RXTX_RESET_CTRL_L
, 0xffff);
542 err
= mdio_write(np
, np
->port
, NIU_ESR_DEV_ADDR
,
543 ESR_RXTX_RESET_CTRL_H
, 0x0000);
548 err
= esr_read_reset(np
, &reset
);
552 dev_err(np
->device
, PFX
"Port %u ESR_RESET "
553 "did not clear [%08x]\n",
561 static int serdes_init_10g(struct niu
*np
)
563 struct niu_link_config
*lp
= &np
->link_config
;
564 unsigned long ctrl_reg
, test_cfg_reg
, i
;
565 u64 ctrl_val
, test_cfg_val
, sig
, mask
, val
;
570 ctrl_reg
= ENET_SERDES_0_CTRL_CFG
;
571 test_cfg_reg
= ENET_SERDES_0_TEST_CFG
;
574 ctrl_reg
= ENET_SERDES_1_CTRL_CFG
;
575 test_cfg_reg
= ENET_SERDES_1_TEST_CFG
;
581 ctrl_val
= (ENET_SERDES_CTRL_SDET_0
|
582 ENET_SERDES_CTRL_SDET_1
|
583 ENET_SERDES_CTRL_SDET_2
|
584 ENET_SERDES_CTRL_SDET_3
|
585 (0x5 << ENET_SERDES_CTRL_EMPH_0_SHIFT
) |
586 (0x5 << ENET_SERDES_CTRL_EMPH_1_SHIFT
) |
587 (0x5 << ENET_SERDES_CTRL_EMPH_2_SHIFT
) |
588 (0x5 << ENET_SERDES_CTRL_EMPH_3_SHIFT
) |
589 (0x1 << ENET_SERDES_CTRL_LADJ_0_SHIFT
) |
590 (0x1 << ENET_SERDES_CTRL_LADJ_1_SHIFT
) |
591 (0x1 << ENET_SERDES_CTRL_LADJ_2_SHIFT
) |
592 (0x1 << ENET_SERDES_CTRL_LADJ_3_SHIFT
));
595 if (lp
->loopback_mode
== LOOPBACK_PHY
) {
596 test_cfg_val
|= ((ENET_TEST_MD_PAD_LOOPBACK
<<
597 ENET_SERDES_TEST_MD_0_SHIFT
) |
598 (ENET_TEST_MD_PAD_LOOPBACK
<<
599 ENET_SERDES_TEST_MD_1_SHIFT
) |
600 (ENET_TEST_MD_PAD_LOOPBACK
<<
601 ENET_SERDES_TEST_MD_2_SHIFT
) |
602 (ENET_TEST_MD_PAD_LOOPBACK
<<
603 ENET_SERDES_TEST_MD_3_SHIFT
));
606 nw64(ctrl_reg
, ctrl_val
);
607 nw64(test_cfg_reg
, test_cfg_val
);
609 /* Initialize all 4 lanes of the SERDES. */
610 for (i
= 0; i
< 4; i
++) {
611 u32 rxtx_ctrl
, glue0
;
613 err
= esr_read_rxtx_ctrl(np
, i
, &rxtx_ctrl
);
616 err
= esr_read_glue0(np
, i
, &glue0
);
620 rxtx_ctrl
&= ~(ESR_RXTX_CTRL_VMUXLO
);
621 rxtx_ctrl
|= (ESR_RXTX_CTRL_ENSTRETCH
|
622 (2 << ESR_RXTX_CTRL_VMUXLO_SHIFT
));
624 glue0
&= ~(ESR_GLUE_CTRL0_SRATE
|
625 ESR_GLUE_CTRL0_THCNT
|
626 ESR_GLUE_CTRL0_BLTIME
);
627 glue0
|= (ESR_GLUE_CTRL0_RXLOSENAB
|
628 (0xf << ESR_GLUE_CTRL0_SRATE_SHIFT
) |
629 (0xff << ESR_GLUE_CTRL0_THCNT_SHIFT
) |
630 (BLTIME_300_CYCLES
<<
631 ESR_GLUE_CTRL0_BLTIME_SHIFT
));
633 err
= esr_write_rxtx_ctrl(np
, i
, rxtx_ctrl
);
636 err
= esr_write_glue0(np
, i
, glue0
);
645 sig
= nr64(ESR_INT_SIGNALS
);
648 mask
= ESR_INT_SIGNALS_P0_BITS
;
649 val
= (ESR_INT_SRDY0_P0
|
659 mask
= ESR_INT_SIGNALS_P1_BITS
;
660 val
= (ESR_INT_SRDY0_P1
|
673 if ((sig
& mask
) != val
) {
674 dev_err(np
->device
, PFX
"Port %u signal bits [%08x] are not "
675 "[%08x]\n", np
->port
, (int) (sig
& mask
), (int) val
);
682 static int serdes_init_1g(struct niu
*np
)
686 val
= nr64(ENET_SERDES_1_PLL_CFG
);
687 val
&= ~ENET_SERDES_PLL_FBDIV2
;
690 val
|= ENET_SERDES_PLL_HRATE0
;
693 val
|= ENET_SERDES_PLL_HRATE1
;
696 val
|= ENET_SERDES_PLL_HRATE2
;
699 val
|= ENET_SERDES_PLL_HRATE3
;
704 nw64(ENET_SERDES_1_PLL_CFG
, val
);
709 static int bcm8704_reset(struct niu
*np
)
713 err
= mdio_read(np
, np
->phy_addr
,
714 BCM8704_PHYXS_DEV_ADDR
, MII_BMCR
);
718 err
= mdio_write(np
, np
->phy_addr
, BCM8704_PHYXS_DEV_ADDR
,
724 while (--limit
>= 0) {
725 err
= mdio_read(np
, np
->phy_addr
,
726 BCM8704_PHYXS_DEV_ADDR
, MII_BMCR
);
729 if (!(err
& BMCR_RESET
))
733 dev_err(np
->device
, PFX
"Port %u PHY will not reset "
734 "(bmcr=%04x)\n", np
->port
, (err
& 0xffff));
740 /* When written, certain PHY registers need to be read back twice
741 * in order for the bits to settle properly.
743 static int bcm8704_user_dev3_readback(struct niu
*np
, int reg
)
745 int err
= mdio_read(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
, reg
);
748 err
= mdio_read(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
, reg
);
754 static int bcm8704_init_user_dev3(struct niu
*np
)
758 err
= mdio_write(np
, np
->phy_addr
,
759 BCM8704_USER_DEV3_ADDR
, BCM8704_USER_CONTROL
,
760 (USER_CONTROL_OPTXRST_LVL
|
761 USER_CONTROL_OPBIASFLT_LVL
|
762 USER_CONTROL_OBTMPFLT_LVL
|
763 USER_CONTROL_OPPRFLT_LVL
|
764 USER_CONTROL_OPTXFLT_LVL
|
765 USER_CONTROL_OPRXLOS_LVL
|
766 USER_CONTROL_OPRXFLT_LVL
|
767 USER_CONTROL_OPTXON_LVL
|
768 (0x3f << USER_CONTROL_RES1_SHIFT
)));
772 err
= mdio_write(np
, np
->phy_addr
,
773 BCM8704_USER_DEV3_ADDR
, BCM8704_USER_PMD_TX_CONTROL
,
774 (USER_PMD_TX_CTL_XFP_CLKEN
|
775 (1 << USER_PMD_TX_CTL_TX_DAC_TXD_SH
) |
776 (2 << USER_PMD_TX_CTL_TX_DAC_TXCK_SH
) |
777 USER_PMD_TX_CTL_TSCK_LPWREN
));
781 err
= bcm8704_user_dev3_readback(np
, BCM8704_USER_CONTROL
);
784 err
= bcm8704_user_dev3_readback(np
, BCM8704_USER_PMD_TX_CONTROL
);
788 err
= mdio_read(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
,
789 BCM8704_USER_OPT_DIGITAL_CTRL
);
792 err
&= ~USER_ODIG_CTRL_GPIOS
;
793 err
|= (0x3 << USER_ODIG_CTRL_GPIOS_SHIFT
);
794 err
= mdio_write(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
,
795 BCM8704_USER_OPT_DIGITAL_CTRL
, err
);
804 static int xcvr_init_10g(struct niu
*np
)
806 struct niu_link_config
*lp
= &np
->link_config
;
807 u16 analog_stat0
, tx_alarm_status
;
811 val
= nr64_mac(XMAC_CONFIG
);
812 val
&= ~XMAC_CONFIG_LED_POLARITY
;
813 val
|= XMAC_CONFIG_FORCE_LED_ON
;
814 nw64_mac(XMAC_CONFIG
, val
);
816 /* XXX shared resource, lock parent XXX */
817 val
= nr64(MIF_CONFIG
);
818 val
|= MIF_CONFIG_INDIRECT_MODE
;
819 nw64(MIF_CONFIG
, val
);
821 err
= bcm8704_reset(np
);
825 err
= bcm8704_init_user_dev3(np
);
829 err
= mdio_read(np
, np
->phy_addr
, BCM8704_PCS_DEV_ADDR
,
833 err
&= ~BMCR_LOOPBACK
;
835 if (lp
->loopback_mode
== LOOPBACK_MAC
)
836 err
|= BMCR_LOOPBACK
;
838 err
= mdio_write(np
, np
->phy_addr
, BCM8704_PCS_DEV_ADDR
,
844 err
= mdio_read(np
, np
->phy_addr
, BCM8704_PMA_PMD_DEV_ADDR
,
848 pr_info(PFX
"Port %u PMA_PMD(MII_STAT1000) [%04x]\n",
851 err
= mdio_read(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
, 0x20);
854 pr_info(PFX
"Port %u USER_DEV3(0x20) [%04x]\n",
857 err
= mdio_read(np
, np
->phy_addr
, BCM8704_PHYXS_DEV_ADDR
,
861 pr_info(PFX
"Port %u PHYXS(MII_NWAYTEST) [%04x]\n",
865 /* XXX dig this out it might not be so useful XXX */
866 err
= mdio_read(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
,
867 BCM8704_USER_ANALOG_STATUS0
);
870 err
= mdio_read(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
,
871 BCM8704_USER_ANALOG_STATUS0
);
876 err
= mdio_read(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
,
877 BCM8704_USER_TX_ALARM_STATUS
);
880 err
= mdio_read(np
, np
->phy_addr
, BCM8704_USER_DEV3_ADDR
,
881 BCM8704_USER_TX_ALARM_STATUS
);
884 tx_alarm_status
= err
;
886 if (analog_stat0
!= 0x03fc) {
887 if ((analog_stat0
== 0x43bc) && (tx_alarm_status
!= 0)) {
888 pr_info(PFX
"Port %u cable not connected "
889 "or bad cable.\n", np
->port
);
890 } else if (analog_stat0
== 0x639c) {
891 pr_info(PFX
"Port %u optical module is bad "
892 "or missing.\n", np
->port
);
899 static int mii_reset(struct niu
*np
)
903 err
= mii_write(np
, np
->phy_addr
, MII_BMCR
, BMCR_RESET
);
908 while (--limit
>= 0) {
910 err
= mii_read(np
, np
->phy_addr
, MII_BMCR
);
913 if (!(err
& BMCR_RESET
))
917 dev_err(np
->device
, PFX
"Port %u MII would not reset, "
918 "bmcr[%04x]\n", np
->port
, err
);
925 static int mii_init_common(struct niu
*np
)
927 struct niu_link_config
*lp
= &np
->link_config
;
928 u16 bmcr
, bmsr
, adv
, estat
;
935 err
= mii_read(np
, np
->phy_addr
, MII_BMSR
);
941 if (bmsr
& BMSR_ESTATEN
) {
942 err
= mii_read(np
, np
->phy_addr
, MII_ESTATUS
);
949 err
= mii_write(np
, np
->phy_addr
, MII_BMCR
, bmcr
);
953 if (lp
->loopback_mode
== LOOPBACK_MAC
) {
954 bmcr
|= BMCR_LOOPBACK
;
955 if (lp
->active_speed
== SPEED_1000
)
956 bmcr
|= BMCR_SPEED1000
;
957 if (lp
->active_duplex
== DUPLEX_FULL
)
958 bmcr
|= BMCR_FULLDPLX
;
961 if (lp
->loopback_mode
== LOOPBACK_PHY
) {
964 aux
= (BCM5464R_AUX_CTL_EXT_LB
|
965 BCM5464R_AUX_CTL_WRITE_1
);
966 err
= mii_write(np
, np
->phy_addr
, BCM5464R_AUX_CTL
, aux
);
971 /* XXX configurable XXX */
972 /* XXX for now don't advertise half-duplex or asym pause... XXX */
973 adv
= ADVERTISE_CSMA
| ADVERTISE_PAUSE_CAP
;
974 if (bmsr
& BMSR_10FULL
)
975 adv
|= ADVERTISE_10FULL
;
976 if (bmsr
& BMSR_100FULL
)
977 adv
|= ADVERTISE_100FULL
;
978 err
= mii_write(np
, np
->phy_addr
, MII_ADVERTISE
, adv
);
982 if (bmsr
& BMSR_ESTATEN
) {
985 if (estat
& ESTATUS_1000_TFULL
)
986 ctrl1000
|= ADVERTISE_1000FULL
;
987 err
= mii_write(np
, np
->phy_addr
, MII_CTRL1000
, ctrl1000
);
991 bmcr
|= (BMCR_ANENABLE
| BMCR_ANRESTART
);
993 err
= mii_write(np
, np
->phy_addr
, MII_BMCR
, bmcr
);
997 err
= mii_read(np
, np
->phy_addr
, MII_BMCR
);
1000 err
= mii_read(np
, np
->phy_addr
, MII_BMSR
);
1004 pr_info(PFX
"Port %u after MII init bmcr[%04x] bmsr[%04x]\n",
1005 np
->port
, bmcr
, bmsr
);
1011 static int xcvr_init_1g(struct niu
*np
)
1015 /* XXX shared resource, lock parent XXX */
1016 val
= nr64(MIF_CONFIG
);
1017 val
&= ~MIF_CONFIG_INDIRECT_MODE
;
1018 nw64(MIF_CONFIG
, val
);
1020 return mii_init_common(np
);
1023 static int niu_xcvr_init(struct niu
*np
)
1025 const struct niu_phy_ops
*ops
= np
->phy_ops
;
1030 err
= ops
->xcvr_init(np
);
1035 static int niu_serdes_init(struct niu
*np
)
1037 const struct niu_phy_ops
*ops
= np
->phy_ops
;
1041 if (ops
->serdes_init
)
1042 err
= ops
->serdes_init(np
);
1047 static void niu_init_xif(struct niu
*);
1048 static void niu_handle_led(struct niu
*, int status
);
1050 static int niu_link_status_common(struct niu
*np
, int link_up
)
1052 struct niu_link_config
*lp
= &np
->link_config
;
1053 struct net_device
*dev
= np
->dev
;
1054 unsigned long flags
;
1056 if (!netif_carrier_ok(dev
) && link_up
) {
1057 niuinfo(LINK
, "%s: Link is up at %s, %s duplex\n",
1059 (lp
->active_speed
== SPEED_10000
?
1061 (lp
->active_speed
== SPEED_1000
?
1063 (lp
->active_speed
== SPEED_100
?
1064 "100Mbit/sec" : "10Mbit/sec"))),
1065 (lp
->active_duplex
== DUPLEX_FULL
?
1068 spin_lock_irqsave(&np
->lock
, flags
);
1070 niu_handle_led(np
, 1);
1071 spin_unlock_irqrestore(&np
->lock
, flags
);
1073 netif_carrier_on(dev
);
1074 } else if (netif_carrier_ok(dev
) && !link_up
) {
1075 niuwarn(LINK
, "%s: Link is down\n", dev
->name
);
1076 spin_lock_irqsave(&np
->lock
, flags
);
1077 niu_handle_led(np
, 0);
1078 spin_unlock_irqrestore(&np
->lock
, flags
);
1079 netif_carrier_off(dev
);
1085 static int link_status_10g(struct niu
*np
, int *link_up_p
)
1087 unsigned long flags
;
1092 spin_lock_irqsave(&np
->lock
, flags
);
1095 if (np
->link_config
.loopback_mode
!= LOOPBACK_DISABLED
)
1098 err
= mdio_read(np
, np
->phy_addr
, BCM8704_PMA_PMD_DEV_ADDR
,
1099 BCM8704_PMD_RCV_SIGDET
);
1102 if (!(err
& PMD_RCV_SIGDET_GLOBAL
)) {
1107 err
= mdio_read(np
, np
->phy_addr
, BCM8704_PCS_DEV_ADDR
,
1108 BCM8704_PCS_10G_R_STATUS
);
1111 if (!(err
& PCS_10G_R_STATUS_BLK_LOCK
)) {
1116 err
= mdio_read(np
, np
->phy_addr
, BCM8704_PHYXS_DEV_ADDR
,
1117 BCM8704_PHYXS_XGXS_LANE_STAT
);
1121 if (err
!= (PHYXS_XGXS_LANE_STAT_ALINGED
|
1122 PHYXS_XGXS_LANE_STAT_MAGIC
|
1123 PHYXS_XGXS_LANE_STAT_LANE3
|
1124 PHYXS_XGXS_LANE_STAT_LANE2
|
1125 PHYXS_XGXS_LANE_STAT_LANE1
|
1126 PHYXS_XGXS_LANE_STAT_LANE0
)) {
1132 np
->link_config
.active_speed
= SPEED_10000
;
1133 np
->link_config
.active_duplex
= DUPLEX_FULL
;
1137 spin_unlock_irqrestore(&np
->lock
, flags
);
1139 *link_up_p
= link_up
;
1143 static int link_status_1g(struct niu
*np
, int *link_up_p
)
1145 u16 current_speed
, bmsr
;
1146 unsigned long flags
;
1151 current_speed
= SPEED_INVALID
;
1152 current_duplex
= DUPLEX_INVALID
;
1154 spin_lock_irqsave(&np
->lock
, flags
);
1157 if (np
->link_config
.loopback_mode
!= LOOPBACK_DISABLED
)
1160 err
= mii_read(np
, np
->phy_addr
, MII_BMSR
);
1165 if (bmsr
& BMSR_LSTATUS
) {
1166 u16 adv
, lpa
, common
, estat
;
1168 err
= mii_read(np
, np
->phy_addr
, MII_ADVERTISE
);
1173 err
= mii_read(np
, np
->phy_addr
, MII_LPA
);
1180 err
= mii_read(np
, np
->phy_addr
, MII_ESTATUS
);
1186 if (estat
& (ESTATUS_1000_TFULL
| ESTATUS_1000_THALF
)) {
1187 current_speed
= SPEED_1000
;
1188 if (estat
& ESTATUS_1000_TFULL
)
1189 current_duplex
= DUPLEX_FULL
;
1191 current_duplex
= DUPLEX_HALF
;
1193 if (common
& ADVERTISE_100BASE4
) {
1194 current_speed
= SPEED_100
;
1195 current_duplex
= DUPLEX_HALF
;
1196 } else if (common
& ADVERTISE_100FULL
) {
1197 current_speed
= SPEED_100
;
1198 current_duplex
= DUPLEX_FULL
;
1199 } else if (common
& ADVERTISE_100HALF
) {
1200 current_speed
= SPEED_100
;
1201 current_duplex
= DUPLEX_HALF
;
1202 } else if (common
& ADVERTISE_10FULL
) {
1203 current_speed
= SPEED_10
;
1204 current_duplex
= DUPLEX_FULL
;
1205 } else if (common
& ADVERTISE_10HALF
) {
1206 current_speed
= SPEED_10
;
1207 current_duplex
= DUPLEX_HALF
;
1215 spin_unlock_irqrestore(&np
->lock
, flags
);
1217 *link_up_p
= link_up
;
1221 static int niu_link_status(struct niu
*np
, int *link_up_p
)
1223 const struct niu_phy_ops
*ops
= np
->phy_ops
;
1227 if (ops
->link_status
)
1228 err
= ops
->link_status(np
, link_up_p
);
1233 static void niu_timer(unsigned long __opaque
)
1235 struct niu
*np
= (struct niu
*) __opaque
;
1239 err
= niu_link_status(np
, &link_up
);
1241 niu_link_status_common(np
, link_up
);
1243 if (netif_carrier_ok(np
->dev
))
1247 np
->timer
.expires
= jiffies
+ off
;
1249 add_timer(&np
->timer
);
1252 static const struct niu_phy_ops phy_ops_10g_fiber_niu
= {
1253 .serdes_init
= serdes_init_niu
,
1254 .xcvr_init
= xcvr_init_10g
,
1255 .link_status
= link_status_10g
,
1258 static const struct niu_phy_ops phy_ops_10g_fiber
= {
1259 .serdes_init
= serdes_init_10g
,
1260 .xcvr_init
= xcvr_init_10g
,
1261 .link_status
= link_status_10g
,
1264 static const struct niu_phy_ops phy_ops_10g_copper
= {
1265 .serdes_init
= serdes_init_10g
,
1266 .link_status
= link_status_10g
, /* XXX */
1269 static const struct niu_phy_ops phy_ops_1g_fiber
= {
1270 .serdes_init
= serdes_init_1g
,
1271 .xcvr_init
= xcvr_init_1g
,
1272 .link_status
= link_status_1g
,
1275 static const struct niu_phy_ops phy_ops_1g_copper
= {
1276 .xcvr_init
= xcvr_init_1g
,
1277 .link_status
= link_status_1g
,
1280 struct niu_phy_template
{
1281 const struct niu_phy_ops
*ops
;
1285 static const struct niu_phy_template phy_template_niu
= {
1286 .ops
= &phy_ops_10g_fiber_niu
,
1287 .phy_addr_base
= 16,
1290 static const struct niu_phy_template phy_template_10g_fiber
= {
1291 .ops
= &phy_ops_10g_fiber
,
1295 static const struct niu_phy_template phy_template_10g_copper
= {
1296 .ops
= &phy_ops_10g_copper
,
1297 .phy_addr_base
= 10,
1300 static const struct niu_phy_template phy_template_1g_fiber
= {
1301 .ops
= &phy_ops_1g_fiber
,
1305 static const struct niu_phy_template phy_template_1g_copper
= {
1306 .ops
= &phy_ops_1g_copper
,
1310 static int niu_determine_phy_disposition(struct niu
*np
)
1312 struct niu_parent
*parent
= np
->parent
;
1313 u8 plat_type
= parent
->plat_type
;
1314 const struct niu_phy_template
*tp
;
1315 u32 phy_addr_off
= 0;
1317 if (plat_type
== PLAT_TYPE_NIU
) {
1318 tp
= &phy_template_niu
;
1319 phy_addr_off
+= np
->port
;
1321 switch (np
->flags
& (NIU_FLAGS_10G
| NIU_FLAGS_FIBER
)) {
1324 tp
= &phy_template_1g_copper
;
1325 if (plat_type
== PLAT_TYPE_VF_P0
)
1327 else if (plat_type
== PLAT_TYPE_VF_P1
)
1330 phy_addr_off
+= (np
->port
^ 0x3);
1335 tp
= &phy_template_1g_copper
;
1338 case NIU_FLAGS_FIBER
:
1340 tp
= &phy_template_1g_fiber
;
1343 case NIU_FLAGS_10G
| NIU_FLAGS_FIBER
:
1345 tp
= &phy_template_10g_fiber
;
1346 if (plat_type
== PLAT_TYPE_VF_P0
||
1347 plat_type
== PLAT_TYPE_VF_P1
)
1349 phy_addr_off
+= np
->port
;
1357 np
->phy_ops
= tp
->ops
;
1358 np
->phy_addr
= tp
->phy_addr_base
+ phy_addr_off
;
1363 static int niu_init_link(struct niu
*np
)
1365 struct niu_parent
*parent
= np
->parent
;
1368 if (parent
->plat_type
== PLAT_TYPE_NIU
) {
1369 err
= niu_xcvr_init(np
);
1374 err
= niu_serdes_init(np
);
1378 err
= niu_xcvr_init(np
);
1380 niu_link_status(np
, &ignore
);
1384 static void niu_set_primary_mac(struct niu
*np
, unsigned char *addr
)
1386 u16 reg0
= addr
[4] << 8 | addr
[5];
1387 u16 reg1
= addr
[2] << 8 | addr
[3];
1388 u16 reg2
= addr
[0] << 8 | addr
[1];
1390 if (np
->flags
& NIU_FLAGS_XMAC
) {
1391 nw64_mac(XMAC_ADDR0
, reg0
);
1392 nw64_mac(XMAC_ADDR1
, reg1
);
1393 nw64_mac(XMAC_ADDR2
, reg2
);
1395 nw64_mac(BMAC_ADDR0
, reg0
);
1396 nw64_mac(BMAC_ADDR1
, reg1
);
1397 nw64_mac(BMAC_ADDR2
, reg2
);
1401 static int niu_num_alt_addr(struct niu
*np
)
1403 if (np
->flags
& NIU_FLAGS_XMAC
)
1404 return XMAC_NUM_ALT_ADDR
;
1406 return BMAC_NUM_ALT_ADDR
;
1409 static int niu_set_alt_mac(struct niu
*np
, int index
, unsigned char *addr
)
1411 u16 reg0
= addr
[4] << 8 | addr
[5];
1412 u16 reg1
= addr
[2] << 8 | addr
[3];
1413 u16 reg2
= addr
[0] << 8 | addr
[1];
1415 if (index
>= niu_num_alt_addr(np
))
1418 if (np
->flags
& NIU_FLAGS_XMAC
) {
1419 nw64_mac(XMAC_ALT_ADDR0(index
), reg0
);
1420 nw64_mac(XMAC_ALT_ADDR1(index
), reg1
);
1421 nw64_mac(XMAC_ALT_ADDR2(index
), reg2
);
1423 nw64_mac(BMAC_ALT_ADDR0(index
), reg0
);
1424 nw64_mac(BMAC_ALT_ADDR1(index
), reg1
);
1425 nw64_mac(BMAC_ALT_ADDR2(index
), reg2
);
1431 static int niu_enable_alt_mac(struct niu
*np
, int index
, int on
)
1436 if (index
>= niu_num_alt_addr(np
))
1439 if (np
->flags
& NIU_FLAGS_XMAC
)
1440 reg
= XMAC_ADDR_CMPEN
;
1442 reg
= BMAC_ADDR_CMPEN
;
1446 val
= nr64_mac(reg
);
1456 static void __set_rdc_table_num_hw(struct niu
*np
, unsigned long reg
,
1457 int num
, int mac_pref
)
1459 u64 val
= nr64_mac(reg
);
1460 val
&= ~(HOST_INFO_MACRDCTBLN
| HOST_INFO_MPR
);
1463 val
|= HOST_INFO_MPR
;
1467 static int __set_rdc_table_num(struct niu
*np
,
1468 int xmac_index
, int bmac_index
,
1469 int rdc_table_num
, int mac_pref
)
1473 if (rdc_table_num
& ~HOST_INFO_MACRDCTBLN
)
1475 if (np
->flags
& NIU_FLAGS_XMAC
)
1476 reg
= XMAC_HOST_INFO(xmac_index
);
1478 reg
= BMAC_HOST_INFO(bmac_index
);
1479 __set_rdc_table_num_hw(np
, reg
, rdc_table_num
, mac_pref
);
1483 static int niu_set_primary_mac_rdc_table(struct niu
*np
, int table_num
,
1486 return __set_rdc_table_num(np
, 17, 0, table_num
, mac_pref
);
1489 static int niu_set_multicast_mac_rdc_table(struct niu
*np
, int table_num
,
1492 return __set_rdc_table_num(np
, 16, 8, table_num
, mac_pref
);
1495 static int niu_set_alt_mac_rdc_table(struct niu
*np
, int idx
,
1496 int table_num
, int mac_pref
)
1498 if (idx
>= niu_num_alt_addr(np
))
1500 return __set_rdc_table_num(np
, idx
, idx
+ 1, table_num
, mac_pref
);
1503 static u64
vlan_entry_set_parity(u64 reg_val
)
1508 port01_mask
= 0x00ff;
1509 port23_mask
= 0xff00;
1511 if (hweight64(reg_val
& port01_mask
) & 1)
1512 reg_val
|= ENET_VLAN_TBL_PARITY0
;
1514 reg_val
&= ~ENET_VLAN_TBL_PARITY0
;
1516 if (hweight64(reg_val
& port23_mask
) & 1)
1517 reg_val
|= ENET_VLAN_TBL_PARITY1
;
1519 reg_val
&= ~ENET_VLAN_TBL_PARITY1
;
1524 static void vlan_tbl_write(struct niu
*np
, unsigned long index
,
1525 int port
, int vpr
, int rdc_table
)
1527 u64 reg_val
= nr64(ENET_VLAN_TBL(index
));
1529 reg_val
&= ~((ENET_VLAN_TBL_VPR
|
1530 ENET_VLAN_TBL_VLANRDCTBLN
) <<
1531 ENET_VLAN_TBL_SHIFT(port
));
1533 reg_val
|= (ENET_VLAN_TBL_VPR
<<
1534 ENET_VLAN_TBL_SHIFT(port
));
1535 reg_val
|= (rdc_table
<< ENET_VLAN_TBL_SHIFT(port
));
1537 reg_val
= vlan_entry_set_parity(reg_val
);
1539 nw64(ENET_VLAN_TBL(index
), reg_val
);
1542 static void vlan_tbl_clear(struct niu
*np
)
1546 for (i
= 0; i
< ENET_VLAN_TBL_NUM_ENTRIES
; i
++)
1547 nw64(ENET_VLAN_TBL(i
), 0);
1550 static int tcam_wait_bit(struct niu
*np
, u64 bit
)
1554 while (--limit
> 0) {
1555 if (nr64(TCAM_CTL
) & bit
)
1565 static int tcam_flush(struct niu
*np
, int index
)
1567 nw64(TCAM_KEY_0
, 0x00);
1568 nw64(TCAM_KEY_MASK_0
, 0xff);
1569 nw64(TCAM_CTL
, (TCAM_CTL_RWC_TCAM_WRITE
| index
));
1571 return tcam_wait_bit(np
, TCAM_CTL_STAT
);
1575 static int tcam_read(struct niu
*np
, int index
,
1576 u64
*key
, u64
*mask
)
1580 nw64(TCAM_CTL
, (TCAM_CTL_RWC_TCAM_READ
| index
));
1581 err
= tcam_wait_bit(np
, TCAM_CTL_STAT
);
1583 key
[0] = nr64(TCAM_KEY_0
);
1584 key
[1] = nr64(TCAM_KEY_1
);
1585 key
[2] = nr64(TCAM_KEY_2
);
1586 key
[3] = nr64(TCAM_KEY_3
);
1587 mask
[0] = nr64(TCAM_KEY_MASK_0
);
1588 mask
[1] = nr64(TCAM_KEY_MASK_1
);
1589 mask
[2] = nr64(TCAM_KEY_MASK_2
);
1590 mask
[3] = nr64(TCAM_KEY_MASK_3
);
1596 static int tcam_write(struct niu
*np
, int index
,
1597 u64
*key
, u64
*mask
)
1599 nw64(TCAM_KEY_0
, key
[0]);
1600 nw64(TCAM_KEY_1
, key
[1]);
1601 nw64(TCAM_KEY_2
, key
[2]);
1602 nw64(TCAM_KEY_3
, key
[3]);
1603 nw64(TCAM_KEY_MASK_0
, mask
[0]);
1604 nw64(TCAM_KEY_MASK_1
, mask
[1]);
1605 nw64(TCAM_KEY_MASK_2
, mask
[2]);
1606 nw64(TCAM_KEY_MASK_3
, mask
[3]);
1607 nw64(TCAM_CTL
, (TCAM_CTL_RWC_TCAM_WRITE
| index
));
1609 return tcam_wait_bit(np
, TCAM_CTL_STAT
);
1613 static int tcam_assoc_read(struct niu
*np
, int index
, u64
*data
)
1617 nw64(TCAM_CTL
, (TCAM_CTL_RWC_RAM_READ
| index
));
1618 err
= tcam_wait_bit(np
, TCAM_CTL_STAT
);
1620 *data
= nr64(TCAM_KEY_1
);
1626 static int tcam_assoc_write(struct niu
*np
, int index
, u64 assoc_data
)
1628 nw64(TCAM_KEY_1
, assoc_data
);
1629 nw64(TCAM_CTL
, (TCAM_CTL_RWC_RAM_WRITE
| index
));
1631 return tcam_wait_bit(np
, TCAM_CTL_STAT
);
1634 static void tcam_enable(struct niu
*np
, int on
)
1636 u64 val
= nr64(FFLP_CFG_1
);
1639 val
&= ~FFLP_CFG_1_TCAM_DIS
;
1641 val
|= FFLP_CFG_1_TCAM_DIS
;
1642 nw64(FFLP_CFG_1
, val
);
1645 static void tcam_set_lat_and_ratio(struct niu
*np
, u64 latency
, u64 ratio
)
1647 u64 val
= nr64(FFLP_CFG_1
);
1649 val
&= ~(FFLP_CFG_1_FFLPINITDONE
|
1651 FFLP_CFG_1_CAMRATIO
);
1652 val
|= (latency
<< FFLP_CFG_1_CAMLAT_SHIFT
);
1653 val
|= (ratio
<< FFLP_CFG_1_CAMRATIO_SHIFT
);
1654 nw64(FFLP_CFG_1
, val
);
1656 val
= nr64(FFLP_CFG_1
);
1657 val
|= FFLP_CFG_1_FFLPINITDONE
;
1658 nw64(FFLP_CFG_1
, val
);
1661 static int tcam_user_eth_class_enable(struct niu
*np
, unsigned long class,
1667 if (class < CLASS_CODE_ETHERTYPE1
||
1668 class > CLASS_CODE_ETHERTYPE2
)
1671 reg
= L2_CLS(class - CLASS_CODE_ETHERTYPE1
);
1683 static int tcam_user_eth_class_set(struct niu
*np
, unsigned long class,
1689 if (class < CLASS_CODE_ETHERTYPE1
||
1690 class > CLASS_CODE_ETHERTYPE2
||
1691 (ether_type
& ~(u64
)0xffff) != 0)
1694 reg
= L2_CLS(class - CLASS_CODE_ETHERTYPE1
);
1696 val
&= ~L2_CLS_ETYPE
;
1697 val
|= (ether_type
<< L2_CLS_ETYPE_SHIFT
);
1704 static int tcam_user_ip_class_enable(struct niu
*np
, unsigned long class,
1710 if (class < CLASS_CODE_USER_PROG1
||
1711 class > CLASS_CODE_USER_PROG4
)
1714 reg
= L3_CLS(class - CLASS_CODE_USER_PROG1
);
1717 val
|= L3_CLS_VALID
;
1719 val
&= ~L3_CLS_VALID
;
1726 static int tcam_user_ip_class_set(struct niu
*np
, unsigned long class,
1727 int ipv6
, u64 protocol_id
,
1728 u64 tos_mask
, u64 tos_val
)
1733 if (class < CLASS_CODE_USER_PROG1
||
1734 class > CLASS_CODE_USER_PROG4
||
1735 (protocol_id
& ~(u64
)0xff) != 0 ||
1736 (tos_mask
& ~(u64
)0xff) != 0 ||
1737 (tos_val
& ~(u64
)0xff) != 0)
1740 reg
= L3_CLS(class - CLASS_CODE_USER_PROG1
);
1742 val
&= ~(L3_CLS_IPVER
| L3_CLS_PID
|
1743 L3_CLS_TOSMASK
| L3_CLS_TOS
);
1745 val
|= L3_CLS_IPVER
;
1746 val
|= (protocol_id
<< L3_CLS_PID_SHIFT
);
1747 val
|= (tos_mask
<< L3_CLS_TOSMASK_SHIFT
);
1748 val
|= (tos_val
<< L3_CLS_TOS_SHIFT
);
1755 static int tcam_early_init(struct niu
*np
)
1761 tcam_set_lat_and_ratio(np
,
1762 DEFAULT_TCAM_LATENCY
,
1763 DEFAULT_TCAM_ACCESS_RATIO
);
1764 for (i
= CLASS_CODE_ETHERTYPE1
; i
<= CLASS_CODE_ETHERTYPE2
; i
++) {
1765 err
= tcam_user_eth_class_enable(np
, i
, 0);
1769 for (i
= CLASS_CODE_USER_PROG1
; i
<= CLASS_CODE_USER_PROG4
; i
++) {
1770 err
= tcam_user_ip_class_enable(np
, i
, 0);
1778 static int tcam_flush_all(struct niu
*np
)
1782 for (i
= 0; i
< np
->parent
->tcam_num_entries
; i
++) {
1783 int err
= tcam_flush(np
, i
);
1790 static u64
hash_addr_regval(unsigned long index
, unsigned long num_entries
)
1792 return ((u64
)index
| (num_entries
== 1 ?
1793 HASH_TBL_ADDR_AUTOINC
: 0));
1797 static int hash_read(struct niu
*np
, unsigned long partition
,
1798 unsigned long index
, unsigned long num_entries
,
1801 u64 val
= hash_addr_regval(index
, num_entries
);
1804 if (partition
>= FCRAM_NUM_PARTITIONS
||
1805 index
+ num_entries
> FCRAM_SIZE
)
1808 nw64(HASH_TBL_ADDR(partition
), val
);
1809 for (i
= 0; i
< num_entries
; i
++)
1810 data
[i
] = nr64(HASH_TBL_DATA(partition
));
1816 static int hash_write(struct niu
*np
, unsigned long partition
,
1817 unsigned long index
, unsigned long num_entries
,
1820 u64 val
= hash_addr_regval(index
, num_entries
);
1823 if (partition
>= FCRAM_NUM_PARTITIONS
||
1824 index
+ (num_entries
* 8) > FCRAM_SIZE
)
1827 nw64(HASH_TBL_ADDR(partition
), val
);
1828 for (i
= 0; i
< num_entries
; i
++)
1829 nw64(HASH_TBL_DATA(partition
), data
[i
]);
1834 static void fflp_reset(struct niu
*np
)
1838 nw64(FFLP_CFG_1
, FFLP_CFG_1_PIO_FIO_RST
);
1840 nw64(FFLP_CFG_1
, 0);
1842 val
= FFLP_CFG_1_FCRAMOUTDR_NORMAL
| FFLP_CFG_1_FFLPINITDONE
;
1843 nw64(FFLP_CFG_1
, val
);
1846 static void fflp_set_timings(struct niu
*np
)
1848 u64 val
= nr64(FFLP_CFG_1
);
1850 val
&= ~FFLP_CFG_1_FFLPINITDONE
;
1851 val
|= (DEFAULT_FCRAMRATIO
<< FFLP_CFG_1_FCRAMRATIO_SHIFT
);
1852 nw64(FFLP_CFG_1
, val
);
1854 val
= nr64(FFLP_CFG_1
);
1855 val
|= FFLP_CFG_1_FFLPINITDONE
;
1856 nw64(FFLP_CFG_1
, val
);
1858 val
= nr64(FCRAM_REF_TMR
);
1859 val
&= ~(FCRAM_REF_TMR_MAX
| FCRAM_REF_TMR_MIN
);
1860 val
|= (DEFAULT_FCRAM_REFRESH_MAX
<< FCRAM_REF_TMR_MAX_SHIFT
);
1861 val
|= (DEFAULT_FCRAM_REFRESH_MIN
<< FCRAM_REF_TMR_MIN_SHIFT
);
1862 nw64(FCRAM_REF_TMR
, val
);
1865 static int fflp_set_partition(struct niu
*np
, u64 partition
,
1866 u64 mask
, u64 base
, int enable
)
1871 if (partition
>= FCRAM_NUM_PARTITIONS
||
1872 (mask
& ~(u64
)0x1f) != 0 ||
1873 (base
& ~(u64
)0x1f) != 0)
1876 reg
= FLW_PRT_SEL(partition
);
1879 val
&= ~(FLW_PRT_SEL_EXT
| FLW_PRT_SEL_MASK
| FLW_PRT_SEL_BASE
);
1880 val
|= (mask
<< FLW_PRT_SEL_MASK_SHIFT
);
1881 val
|= (base
<< FLW_PRT_SEL_BASE_SHIFT
);
1883 val
|= FLW_PRT_SEL_EXT
;
1889 static int fflp_disable_all_partitions(struct niu
*np
)
1893 for (i
= 0; i
< FCRAM_NUM_PARTITIONS
; i
++) {
1894 int err
= fflp_set_partition(np
, 0, 0, 0, 0);
1901 static void fflp_llcsnap_enable(struct niu
*np
, int on
)
1903 u64 val
= nr64(FFLP_CFG_1
);
1906 val
|= FFLP_CFG_1_LLCSNAP
;
1908 val
&= ~FFLP_CFG_1_LLCSNAP
;
1909 nw64(FFLP_CFG_1
, val
);
1912 static void fflp_errors_enable(struct niu
*np
, int on
)
1914 u64 val
= nr64(FFLP_CFG_1
);
1917 val
&= ~FFLP_CFG_1_ERRORDIS
;
1919 val
|= FFLP_CFG_1_ERRORDIS
;
1920 nw64(FFLP_CFG_1
, val
);
1923 static int fflp_hash_clear(struct niu
*np
)
1925 struct fcram_hash_ipv4 ent
;
1928 /* IPV4 hash entry with valid bit clear, rest is don't care. */
1929 memset(&ent
, 0, sizeof(ent
));
1930 ent
.header
= HASH_HEADER_EXT
;
1932 for (i
= 0; i
< FCRAM_SIZE
; i
+= sizeof(ent
)) {
1933 int err
= hash_write(np
, 0, i
, 1, (u64
*) &ent
);
1940 static int fflp_early_init(struct niu
*np
)
1942 struct niu_parent
*parent
;
1943 unsigned long flags
;
1946 niu_lock_parent(np
, flags
);
1948 parent
= np
->parent
;
1950 if (!(parent
->flags
& PARENT_FLGS_CLS_HWINIT
)) {
1951 niudbg(PROBE
, "fflp_early_init: Initting hw on port %u\n",
1953 if (np
->parent
->plat_type
!= PLAT_TYPE_NIU
) {
1955 fflp_set_timings(np
);
1956 err
= fflp_disable_all_partitions(np
);
1958 niudbg(PROBE
, "fflp_disable_all_partitions "
1959 "failed, err=%d\n", err
);
1964 err
= tcam_early_init(np
);
1966 niudbg(PROBE
, "tcam_early_init failed, err=%d\n",
1970 fflp_llcsnap_enable(np
, 1);
1971 fflp_errors_enable(np
, 0);
1975 err
= tcam_flush_all(np
);
1977 niudbg(PROBE
, "tcam_flush_all failed, err=%d\n",
1981 if (np
->parent
->plat_type
!= PLAT_TYPE_NIU
) {
1982 err
= fflp_hash_clear(np
);
1984 niudbg(PROBE
, "fflp_hash_clear failed, "
1992 niudbg(PROBE
, "fflp_early_init: Success\n");
1993 parent
->flags
|= PARENT_FLGS_CLS_HWINIT
;
1996 niu_unlock_parent(np
, flags
);
2000 static int niu_set_flow_key(struct niu
*np
, unsigned long class_code
, u64 key
)
2002 if (class_code
< CLASS_CODE_USER_PROG1
||
2003 class_code
> CLASS_CODE_SCTP_IPV6
)
2006 nw64(FLOW_KEY(class_code
- CLASS_CODE_USER_PROG1
), key
);
2010 static int niu_set_tcam_key(struct niu
*np
, unsigned long class_code
, u64 key
)
2012 if (class_code
< CLASS_CODE_USER_PROG1
||
2013 class_code
> CLASS_CODE_SCTP_IPV6
)
2016 nw64(TCAM_KEY(class_code
- CLASS_CODE_USER_PROG1
), key
);
2020 static void niu_rx_skb_append(struct sk_buff
*skb
, struct page
*page
,
2021 u32 offset
, u32 size
)
2023 int i
= skb_shinfo(skb
)->nr_frags
;
2024 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
2027 frag
->page_offset
= offset
;
2031 skb
->data_len
+= size
;
2032 skb
->truesize
+= size
;
2034 skb_shinfo(skb
)->nr_frags
= i
+ 1;
2037 static unsigned int niu_hash_rxaddr(struct rx_ring_info
*rp
, u64 a
)
2040 a
^= (a
>> ilog2(MAX_RBR_RING_SIZE
));
2042 return (a
& (MAX_RBR_RING_SIZE
- 1));
2045 static struct page
*niu_find_rxpage(struct rx_ring_info
*rp
, u64 addr
,
2046 struct page
***link
)
2048 unsigned int h
= niu_hash_rxaddr(rp
, addr
);
2049 struct page
*p
, **pp
;
2052 pp
= &rp
->rxhash
[h
];
2053 for (; (p
= *pp
) != NULL
; pp
= (struct page
**) &p
->mapping
) {
2054 if (p
->index
== addr
) {
2063 static void niu_hash_page(struct rx_ring_info
*rp
, struct page
*page
, u64 base
)
2065 unsigned int h
= niu_hash_rxaddr(rp
, base
);
2068 page
->mapping
= (struct address_space
*) rp
->rxhash
[h
];
2069 rp
->rxhash
[h
] = page
;
2072 static int niu_rbr_add_page(struct niu
*np
, struct rx_ring_info
*rp
,
2073 gfp_t mask
, int start_index
)
2079 page
= alloc_page(mask
);
2083 addr
= np
->ops
->map_page(np
->device
, page
, 0,
2084 PAGE_SIZE
, DMA_FROM_DEVICE
);
2086 niu_hash_page(rp
, page
, addr
);
2087 if (rp
->rbr_blocks_per_page
> 1)
2088 atomic_add(rp
->rbr_blocks_per_page
- 1,
2089 &compound_head(page
)->_count
);
2091 for (i
= 0; i
< rp
->rbr_blocks_per_page
; i
++) {
2092 __le32
*rbr
= &rp
->rbr
[start_index
+ i
];
2094 *rbr
= cpu_to_le32(addr
>> RBR_DESCR_ADDR_SHIFT
);
2095 addr
+= rp
->rbr_block_size
;
2101 static void niu_rbr_refill(struct niu
*np
, struct rx_ring_info
*rp
, gfp_t mask
)
2103 int index
= rp
->rbr_index
;
2106 if ((rp
->rbr_pending
% rp
->rbr_blocks_per_page
) == 0) {
2107 int err
= niu_rbr_add_page(np
, rp
, mask
, index
);
2109 if (unlikely(err
)) {
2114 rp
->rbr_index
+= rp
->rbr_blocks_per_page
;
2115 BUG_ON(rp
->rbr_index
> rp
->rbr_table_size
);
2116 if (rp
->rbr_index
== rp
->rbr_table_size
)
2119 if (rp
->rbr_pending
>= rp
->rbr_kick_thresh
) {
2120 nw64(RBR_KICK(rp
->rx_channel
), rp
->rbr_pending
);
2121 rp
->rbr_pending
= 0;
2126 static int niu_rx_pkt_ignore(struct niu
*np
, struct rx_ring_info
*rp
)
2128 unsigned int index
= rp
->rcr_index
;
2133 struct page
*page
, **link
;
2139 val
= le64_to_cpup(&rp
->rcr
[index
]);
2140 addr
= (val
& RCR_ENTRY_PKT_BUF_ADDR
) <<
2141 RCR_ENTRY_PKT_BUF_ADDR_SHIFT
;
2142 page
= niu_find_rxpage(rp
, addr
, &link
);
2144 rcr_size
= rp
->rbr_sizes
[(val
& RCR_ENTRY_PKTBUFSZ
) >>
2145 RCR_ENTRY_PKTBUFSZ_SHIFT
];
2146 if ((page
->index
+ PAGE_SIZE
) - rcr_size
== addr
) {
2147 *link
= (struct page
*) page
->mapping
;
2148 np
->ops
->unmap_page(np
->device
, page
->index
,
2149 PAGE_SIZE
, DMA_FROM_DEVICE
);
2151 page
->mapping
= NULL
;
2153 rp
->rbr_refill_pending
++;
2156 index
= NEXT_RCR(rp
, index
);
2157 if (!(val
& RCR_ENTRY_MULTI
))
2161 rp
->rcr_index
= index
;
2166 static int niu_process_rx_pkt(struct niu
*np
, struct rx_ring_info
*rp
)
2168 unsigned int index
= rp
->rcr_index
;
2169 struct sk_buff
*skb
;
2172 skb
= netdev_alloc_skb(np
->dev
, RX_SKB_ALLOC_SIZE
);
2174 return niu_rx_pkt_ignore(np
, rp
);
2178 struct page
*page
, **link
;
2179 u32 rcr_size
, append_size
;
2184 val
= le64_to_cpup(&rp
->rcr
[index
]);
2186 len
= (val
& RCR_ENTRY_L2_LEN
) >>
2187 RCR_ENTRY_L2_LEN_SHIFT
;
2190 addr
= (val
& RCR_ENTRY_PKT_BUF_ADDR
) <<
2191 RCR_ENTRY_PKT_BUF_ADDR_SHIFT
;
2192 page
= niu_find_rxpage(rp
, addr
, &link
);
2194 rcr_size
= rp
->rbr_sizes
[(val
& RCR_ENTRY_PKTBUFSZ
) >>
2195 RCR_ENTRY_PKTBUFSZ_SHIFT
];
2197 off
= addr
& ~PAGE_MASK
;
2198 append_size
= rcr_size
;
2205 ptype
= (val
>> RCR_ENTRY_PKT_TYPE_SHIFT
);
2206 if ((ptype
== RCR_PKT_TYPE_TCP
||
2207 ptype
== RCR_PKT_TYPE_UDP
) &&
2208 !(val
& (RCR_ENTRY_NOPORT
|
2210 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
2212 skb
->ip_summed
= CHECKSUM_NONE
;
2214 if (!(val
& RCR_ENTRY_MULTI
))
2215 append_size
= len
- skb
->len
;
2217 niu_rx_skb_append(skb
, page
, off
, append_size
);
2218 if ((page
->index
+ rp
->rbr_block_size
) - rcr_size
== addr
) {
2219 *link
= (struct page
*) page
->mapping
;
2220 np
->ops
->unmap_page(np
->device
, page
->index
,
2221 PAGE_SIZE
, DMA_FROM_DEVICE
);
2223 page
->mapping
= NULL
;
2224 rp
->rbr_refill_pending
++;
2228 index
= NEXT_RCR(rp
, index
);
2229 if (!(val
& RCR_ENTRY_MULTI
))
2233 rp
->rcr_index
= index
;
2235 skb_reserve(skb
, NET_IP_ALIGN
);
2236 __pskb_pull_tail(skb
, min(len
, NIU_RXPULL_MAX
));
2239 rp
->rx_bytes
+= skb
->len
;
2241 skb
->protocol
= eth_type_trans(skb
, np
->dev
);
2242 netif_receive_skb(skb
);
2244 np
->dev
->last_rx
= jiffies
;
2249 static int niu_rbr_fill(struct niu
*np
, struct rx_ring_info
*rp
, gfp_t mask
)
2251 int blocks_per_page
= rp
->rbr_blocks_per_page
;
2252 int err
, index
= rp
->rbr_index
;
2255 while (index
< (rp
->rbr_table_size
- blocks_per_page
)) {
2256 err
= niu_rbr_add_page(np
, rp
, mask
, index
);
2260 index
+= blocks_per_page
;
2263 rp
->rbr_index
= index
;
2267 static void niu_rbr_free(struct niu
*np
, struct rx_ring_info
*rp
)
2271 for (i
= 0; i
< MAX_RBR_RING_SIZE
; i
++) {
2274 page
= rp
->rxhash
[i
];
2276 struct page
*next
= (struct page
*) page
->mapping
;
2277 u64 base
= page
->index
;
2279 np
->ops
->unmap_page(np
->device
, base
, PAGE_SIZE
,
2282 page
->mapping
= NULL
;
2290 for (i
= 0; i
< rp
->rbr_table_size
; i
++)
2291 rp
->rbr
[i
] = cpu_to_le32(0);
2295 static int release_tx_packet(struct niu
*np
, struct tx_ring_info
*rp
, int idx
)
2297 struct tx_buff_info
*tb
= &rp
->tx_buffs
[idx
];
2298 struct sk_buff
*skb
= tb
->skb
;
2299 struct tx_pkt_hdr
*tp
;
2303 tp
= (struct tx_pkt_hdr
*) skb
->data
;
2304 tx_flags
= le64_to_cpup(&tp
->flags
);
2307 rp
->tx_bytes
+= (((tx_flags
& TXHDR_LEN
) >> TXHDR_LEN_SHIFT
) -
2308 ((tx_flags
& TXHDR_PAD
) / 2));
2310 len
= skb_headlen(skb
);
2311 np
->ops
->unmap_single(np
->device
, tb
->mapping
,
2312 len
, DMA_TO_DEVICE
);
2314 if (le64_to_cpu(rp
->descr
[idx
]) & TX_DESC_MARK
)
2319 idx
= NEXT_TX(rp
, idx
);
2320 len
-= MAX_TX_DESC_LEN
;
2323 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
2324 tb
= &rp
->tx_buffs
[idx
];
2325 BUG_ON(tb
->skb
!= NULL
);
2326 np
->ops
->unmap_page(np
->device
, tb
->mapping
,
2327 skb_shinfo(skb
)->frags
[i
].size
,
2329 idx
= NEXT_TX(rp
, idx
);
2337 #define NIU_TX_WAKEUP_THRESH(rp) ((rp)->pending / 4)
2339 static void niu_tx_work(struct niu
*np
, struct tx_ring_info
*rp
)
2346 if (unlikely(!(cs
& (TX_CS_MK
| TX_CS_MMK
))))
2349 tmp
= pkt_cnt
= (cs
& TX_CS_PKT_CNT
) >> TX_CS_PKT_CNT_SHIFT
;
2350 pkt_cnt
= (pkt_cnt
- rp
->last_pkt_cnt
) &
2351 (TX_CS_PKT_CNT
>> TX_CS_PKT_CNT_SHIFT
);
2353 rp
->last_pkt_cnt
= tmp
;
2357 niudbg(TX_DONE
, "%s: niu_tx_work() pkt_cnt[%u] cons[%d]\n",
2358 np
->dev
->name
, pkt_cnt
, cons
);
2361 cons
= release_tx_packet(np
, rp
, cons
);
2367 if (unlikely(netif_queue_stopped(np
->dev
) &&
2368 (niu_tx_avail(rp
) > NIU_TX_WAKEUP_THRESH(rp
)))) {
2369 netif_tx_lock(np
->dev
);
2370 if (netif_queue_stopped(np
->dev
) &&
2371 (niu_tx_avail(rp
) > NIU_TX_WAKEUP_THRESH(rp
)))
2372 netif_wake_queue(np
->dev
);
2373 netif_tx_unlock(np
->dev
);
2377 static int niu_rx_work(struct niu
*np
, struct rx_ring_info
*rp
, int budget
)
2379 int qlen
, rcr_done
= 0, work_done
= 0;
2380 struct rxdma_mailbox
*mbox
= rp
->mbox
;
2384 stat
= nr64(RX_DMA_CTL_STAT(rp
->rx_channel
));
2385 qlen
= nr64(RCRSTAT_A(rp
->rx_channel
)) & RCRSTAT_A_QLEN
;
2387 stat
= le64_to_cpup(&mbox
->rx_dma_ctl_stat
);
2388 qlen
= (le64_to_cpup(&mbox
->rcrstat_a
) & RCRSTAT_A_QLEN
);
2390 mbox
->rx_dma_ctl_stat
= 0;
2391 mbox
->rcrstat_a
= 0;
2393 niudbg(RX_STATUS
, "%s: niu_rx_work(chan[%d]), stat[%llx] qlen=%d\n",
2394 np
->dev
->name
, rp
->rx_channel
, (unsigned long long) stat
, qlen
);
2396 rcr_done
= work_done
= 0;
2397 qlen
= min(qlen
, budget
);
2398 while (work_done
< qlen
) {
2399 rcr_done
+= niu_process_rx_pkt(np
, rp
);
2403 if (rp
->rbr_refill_pending
>= rp
->rbr_kick_thresh
) {
2406 for (i
= 0; i
< rp
->rbr_refill_pending
; i
++)
2407 niu_rbr_refill(np
, rp
, GFP_ATOMIC
);
2408 rp
->rbr_refill_pending
= 0;
2411 stat
= (RX_DMA_CTL_STAT_MEX
|
2412 ((u64
)work_done
<< RX_DMA_CTL_STAT_PKTREAD_SHIFT
) |
2413 ((u64
)rcr_done
<< RX_DMA_CTL_STAT_PTRREAD_SHIFT
));
2415 nw64(RX_DMA_CTL_STAT(rp
->rx_channel
), stat
);
2420 static int niu_poll_core(struct niu
*np
, struct niu_ldg
*lp
, int budget
)
2423 u32 tx_vec
= (v0
>> 32);
2424 u32 rx_vec
= (v0
& 0xffffffff);
2425 int i
, work_done
= 0;
2427 niudbg(INTR
, "%s: niu_poll_core() v0[%016llx]\n",
2428 np
->dev
->name
, (unsigned long long) v0
);
2430 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
2431 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
2432 if (tx_vec
& (1 << rp
->tx_channel
))
2433 niu_tx_work(np
, rp
);
2434 nw64(LD_IM0(LDN_TXDMA(rp
->tx_channel
)), 0);
2437 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
2438 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
2440 if (rx_vec
& (1 << rp
->rx_channel
)) {
2443 this_work_done
= niu_rx_work(np
, rp
,
2446 budget
-= this_work_done
;
2447 work_done
+= this_work_done
;
2449 nw64(LD_IM0(LDN_RXDMA(rp
->rx_channel
)), 0);
2455 static int niu_poll(struct napi_struct
*napi
, int budget
)
2457 struct niu_ldg
*lp
= container_of(napi
, struct niu_ldg
, napi
);
2458 struct niu
*np
= lp
->np
;
2461 work_done
= niu_poll_core(np
, lp
, budget
);
2463 if (work_done
< budget
) {
2464 netif_rx_complete(np
->dev
, napi
);
2465 niu_ldg_rearm(np
, lp
, 1);
2470 static void niu_log_rxchan_errors(struct niu
*np
, struct rx_ring_info
*rp
,
2473 dev_err(np
->device
, PFX
"%s: RX channel %u errors ( ",
2474 np
->dev
->name
, rp
->rx_channel
);
2476 if (stat
& RX_DMA_CTL_STAT_RBR_TMOUT
)
2477 printk("RBR_TMOUT ");
2478 if (stat
& RX_DMA_CTL_STAT_RSP_CNT_ERR
)
2480 if (stat
& RX_DMA_CTL_STAT_BYTE_EN_BUS
)
2481 printk("BYTE_EN_BUS ");
2482 if (stat
& RX_DMA_CTL_STAT_RSP_DAT_ERR
)
2484 if (stat
& RX_DMA_CTL_STAT_RCR_ACK_ERR
)
2486 if (stat
& RX_DMA_CTL_STAT_RCR_SHA_PAR
)
2487 printk("RCR_SHA_PAR ");
2488 if (stat
& RX_DMA_CTL_STAT_RBR_PRE_PAR
)
2489 printk("RBR_PRE_PAR ");
2490 if (stat
& RX_DMA_CTL_STAT_CONFIG_ERR
)
2492 if (stat
& RX_DMA_CTL_STAT_RCRINCON
)
2493 printk("RCRINCON ");
2494 if (stat
& RX_DMA_CTL_STAT_RCRFULL
)
2496 if (stat
& RX_DMA_CTL_STAT_RBRFULL
)
2498 if (stat
& RX_DMA_CTL_STAT_RBRLOGPAGE
)
2499 printk("RBRLOGPAGE ");
2500 if (stat
& RX_DMA_CTL_STAT_CFIGLOGPAGE
)
2501 printk("CFIGLOGPAGE ");
2502 if (stat
& RX_DMA_CTL_STAT_DC_FIFO_ERR
)
2508 static int niu_rx_error(struct niu
*np
, struct rx_ring_info
*rp
)
2510 u64 stat
= nr64(RX_DMA_CTL_STAT(rp
->rx_channel
));
2514 if (stat
& (RX_DMA_CTL_STAT_CHAN_FATAL
|
2515 RX_DMA_CTL_STAT_PORT_FATAL
))
2519 dev_err(np
->device
, PFX
"%s: RX channel %u error, stat[%llx]\n",
2520 np
->dev
->name
, rp
->rx_channel
,
2521 (unsigned long long) stat
);
2523 niu_log_rxchan_errors(np
, rp
, stat
);
2526 nw64(RX_DMA_CTL_STAT(rp
->rx_channel
),
2527 stat
& RX_DMA_CTL_WRITE_CLEAR_ERRS
);
2532 static void niu_log_txchan_errors(struct niu
*np
, struct tx_ring_info
*rp
,
2535 dev_err(np
->device
, PFX
"%s: TX channel %u errors ( ",
2536 np
->dev
->name
, rp
->tx_channel
);
2538 if (cs
& TX_CS_MBOX_ERR
)
2540 if (cs
& TX_CS_PKT_SIZE_ERR
)
2541 printk("PKT_SIZE ");
2542 if (cs
& TX_CS_TX_RING_OFLOW
)
2543 printk("TX_RING_OFLOW ");
2544 if (cs
& TX_CS_PREF_BUF_PAR_ERR
)
2545 printk("PREF_BUF_PAR ");
2546 if (cs
& TX_CS_NACK_PREF
)
2547 printk("NACK_PREF ");
2548 if (cs
& TX_CS_NACK_PKT_RD
)
2549 printk("NACK_PKT_RD ");
2550 if (cs
& TX_CS_CONF_PART_ERR
)
2551 printk("CONF_PART ");
2552 if (cs
& TX_CS_PKT_PRT_ERR
)
2558 static int niu_tx_error(struct niu
*np
, struct tx_ring_info
*rp
)
2562 cs
= nr64(TX_CS(rp
->tx_channel
));
2563 logh
= nr64(TX_RNG_ERR_LOGH(rp
->tx_channel
));
2564 logl
= nr64(TX_RNG_ERR_LOGL(rp
->tx_channel
));
2566 dev_err(np
->device
, PFX
"%s: TX channel %u error, "
2567 "cs[%llx] logh[%llx] logl[%llx]\n",
2568 np
->dev
->name
, rp
->tx_channel
,
2569 (unsigned long long) cs
,
2570 (unsigned long long) logh
,
2571 (unsigned long long) logl
);
2573 niu_log_txchan_errors(np
, rp
, cs
);
2578 static int niu_mif_interrupt(struct niu
*np
)
2580 u64 mif_status
= nr64(MIF_STATUS
);
2583 if (np
->flags
& NIU_FLAGS_XMAC
) {
2584 u64 xrxmac_stat
= nr64_mac(XRXMAC_STATUS
);
2586 if (xrxmac_stat
& XRXMAC_STATUS_PHY_MDINT
)
2590 dev_err(np
->device
, PFX
"%s: MIF interrupt, "
2591 "stat[%llx] phy_mdint(%d)\n",
2592 np
->dev
->name
, (unsigned long long) mif_status
, phy_mdint
);
2597 static void niu_xmac_interrupt(struct niu
*np
)
2599 struct niu_xmac_stats
*mp
= &np
->mac_stats
.xmac
;
2602 val
= nr64_mac(XTXMAC_STATUS
);
2603 if (val
& XTXMAC_STATUS_FRAME_CNT_EXP
)
2604 mp
->tx_frames
+= TXMAC_FRM_CNT_COUNT
;
2605 if (val
& XTXMAC_STATUS_BYTE_CNT_EXP
)
2606 mp
->tx_bytes
+= TXMAC_BYTE_CNT_COUNT
;
2607 if (val
& XTXMAC_STATUS_TXFIFO_XFR_ERR
)
2608 mp
->tx_fifo_errors
++;
2609 if (val
& XTXMAC_STATUS_TXMAC_OFLOW
)
2610 mp
->tx_overflow_errors
++;
2611 if (val
& XTXMAC_STATUS_MAX_PSIZE_ERR
)
2612 mp
->tx_max_pkt_size_errors
++;
2613 if (val
& XTXMAC_STATUS_TXMAC_UFLOW
)
2614 mp
->tx_underflow_errors
++;
2616 val
= nr64_mac(XRXMAC_STATUS
);
2617 if (val
& XRXMAC_STATUS_LCL_FLT_STATUS
)
2618 mp
->rx_local_faults
++;
2619 if (val
& XRXMAC_STATUS_RFLT_DET
)
2620 mp
->rx_remote_faults
++;
2621 if (val
& XRXMAC_STATUS_LFLT_CNT_EXP
)
2622 mp
->rx_link_faults
+= LINK_FAULT_CNT_COUNT
;
2623 if (val
& XRXMAC_STATUS_ALIGNERR_CNT_EXP
)
2624 mp
->rx_align_errors
+= RXMAC_ALIGN_ERR_CNT_COUNT
;
2625 if (val
& XRXMAC_STATUS_RXFRAG_CNT_EXP
)
2626 mp
->rx_frags
+= RXMAC_FRAG_CNT_COUNT
;
2627 if (val
& XRXMAC_STATUS_RXMULTF_CNT_EXP
)
2628 mp
->rx_mcasts
+= RXMAC_MC_FRM_CNT_COUNT
;
2629 if (val
& XRXMAC_STATUS_RXBCAST_CNT_EXP
)
2630 mp
->rx_bcasts
+= RXMAC_BC_FRM_CNT_COUNT
;
2631 if (val
& XRXMAC_STATUS_RXBCAST_CNT_EXP
)
2632 mp
->rx_bcasts
+= RXMAC_BC_FRM_CNT_COUNT
;
2633 if (val
& XRXMAC_STATUS_RXHIST1_CNT_EXP
)
2634 mp
->rx_hist_cnt1
+= RXMAC_HIST_CNT1_COUNT
;
2635 if (val
& XRXMAC_STATUS_RXHIST2_CNT_EXP
)
2636 mp
->rx_hist_cnt2
+= RXMAC_HIST_CNT2_COUNT
;
2637 if (val
& XRXMAC_STATUS_RXHIST3_CNT_EXP
)
2638 mp
->rx_hist_cnt3
+= RXMAC_HIST_CNT3_COUNT
;
2639 if (val
& XRXMAC_STATUS_RXHIST4_CNT_EXP
)
2640 mp
->rx_hist_cnt4
+= RXMAC_HIST_CNT4_COUNT
;
2641 if (val
& XRXMAC_STATUS_RXHIST5_CNT_EXP
)
2642 mp
->rx_hist_cnt5
+= RXMAC_HIST_CNT5_COUNT
;
2643 if (val
& XRXMAC_STATUS_RXHIST6_CNT_EXP
)
2644 mp
->rx_hist_cnt6
+= RXMAC_HIST_CNT6_COUNT
;
2645 if (val
& XRXMAC_STATUS_RXHIST7_CNT_EXP
)
2646 mp
->rx_hist_cnt7
+= RXMAC_HIST_CNT7_COUNT
;
2647 if (val
& XRXMAC_STAT_MSK_RXOCTET_CNT_EXP
)
2648 mp
->rx_octets
+= RXMAC_BT_CNT_COUNT
;
2649 if (val
& XRXMAC_STATUS_CVIOLERR_CNT_EXP
)
2650 mp
->rx_code_violations
+= RXMAC_CD_VIO_CNT_COUNT
;
2651 if (val
& XRXMAC_STATUS_LENERR_CNT_EXP
)
2652 mp
->rx_len_errors
+= RXMAC_MPSZER_CNT_COUNT
;
2653 if (val
& XRXMAC_STATUS_CRCERR_CNT_EXP
)
2654 mp
->rx_crc_errors
+= RXMAC_CRC_ER_CNT_COUNT
;
2655 if (val
& XRXMAC_STATUS_RXUFLOW
)
2656 mp
->rx_underflows
++;
2657 if (val
& XRXMAC_STATUS_RXOFLOW
)
2660 val
= nr64_mac(XMAC_FC_STAT
);
2661 if (val
& XMAC_FC_STAT_TX_MAC_NPAUSE
)
2662 mp
->pause_off_state
++;
2663 if (val
& XMAC_FC_STAT_TX_MAC_PAUSE
)
2664 mp
->pause_on_state
++;
2665 if (val
& XMAC_FC_STAT_RX_MAC_RPAUSE
)
2666 mp
->pause_received
++;
2669 static void niu_bmac_interrupt(struct niu
*np
)
2671 struct niu_bmac_stats
*mp
= &np
->mac_stats
.bmac
;
2674 val
= nr64_mac(BTXMAC_STATUS
);
2675 if (val
& BTXMAC_STATUS_UNDERRUN
)
2676 mp
->tx_underflow_errors
++;
2677 if (val
& BTXMAC_STATUS_MAX_PKT_ERR
)
2678 mp
->tx_max_pkt_size_errors
++;
2679 if (val
& BTXMAC_STATUS_BYTE_CNT_EXP
)
2680 mp
->tx_bytes
+= BTXMAC_BYTE_CNT_COUNT
;
2681 if (val
& BTXMAC_STATUS_FRAME_CNT_EXP
)
2682 mp
->tx_frames
+= BTXMAC_FRM_CNT_COUNT
;
2684 val
= nr64_mac(BRXMAC_STATUS
);
2685 if (val
& BRXMAC_STATUS_OVERFLOW
)
2687 if (val
& BRXMAC_STATUS_FRAME_CNT_EXP
)
2688 mp
->rx_frames
+= BRXMAC_FRAME_CNT_COUNT
;
2689 if (val
& BRXMAC_STATUS_ALIGN_ERR_EXP
)
2690 mp
->rx_align_errors
+= BRXMAC_ALIGN_ERR_CNT_COUNT
;
2691 if (val
& BRXMAC_STATUS_CRC_ERR_EXP
)
2692 mp
->rx_crc_errors
+= BRXMAC_ALIGN_ERR_CNT_COUNT
;
2693 if (val
& BRXMAC_STATUS_LEN_ERR_EXP
)
2694 mp
->rx_len_errors
+= BRXMAC_CODE_VIOL_ERR_CNT_COUNT
;
2696 val
= nr64_mac(BMAC_CTRL_STATUS
);
2697 if (val
& BMAC_CTRL_STATUS_NOPAUSE
)
2698 mp
->pause_off_state
++;
2699 if (val
& BMAC_CTRL_STATUS_PAUSE
)
2700 mp
->pause_on_state
++;
2701 if (val
& BMAC_CTRL_STATUS_PAUSE_RECV
)
2702 mp
->pause_received
++;
2705 static int niu_mac_interrupt(struct niu
*np
)
2707 if (np
->flags
& NIU_FLAGS_XMAC
)
2708 niu_xmac_interrupt(np
);
2710 niu_bmac_interrupt(np
);
2715 static void niu_log_device_error(struct niu
*np
, u64 stat
)
2717 dev_err(np
->device
, PFX
"%s: Core device errors ( ",
2720 if (stat
& SYS_ERR_MASK_META2
)
2722 if (stat
& SYS_ERR_MASK_META1
)
2724 if (stat
& SYS_ERR_MASK_PEU
)
2726 if (stat
& SYS_ERR_MASK_TXC
)
2728 if (stat
& SYS_ERR_MASK_RDMC
)
2730 if (stat
& SYS_ERR_MASK_TDMC
)
2732 if (stat
& SYS_ERR_MASK_ZCP
)
2734 if (stat
& SYS_ERR_MASK_FFLP
)
2736 if (stat
& SYS_ERR_MASK_IPP
)
2738 if (stat
& SYS_ERR_MASK_MAC
)
2740 if (stat
& SYS_ERR_MASK_SMX
)
2746 static int niu_device_error(struct niu
*np
)
2748 u64 stat
= nr64(SYS_ERR_STAT
);
2750 dev_err(np
->device
, PFX
"%s: Core device error, stat[%llx]\n",
2751 np
->dev
->name
, (unsigned long long) stat
);
2753 niu_log_device_error(np
, stat
);
2758 static int niu_slowpath_interrupt(struct niu
*np
, struct niu_ldg
*lp
,
2759 u64 v0
, u64 v1
, u64 v2
)
2768 if (v1
& 0x00000000ffffffffULL
) {
2769 u32 rx_vec
= (v1
& 0xffffffff);
2771 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
2772 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
2774 if (rx_vec
& (1 << rp
->rx_channel
)) {
2775 int r
= niu_rx_error(np
, rp
);
2780 nw64(RX_DMA_CTL_STAT(rp
->rx_channel
),
2781 RX_DMA_CTL_STAT_MEX
);
2786 if (v1
& 0x7fffffff00000000ULL
) {
2787 u32 tx_vec
= (v1
>> 32) & 0x7fffffff;
2789 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
2790 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
2792 if (tx_vec
& (1 << rp
->tx_channel
)) {
2793 int r
= niu_tx_error(np
, rp
);
2799 if ((v0
| v1
) & 0x8000000000000000ULL
) {
2800 int r
= niu_mif_interrupt(np
);
2806 int r
= niu_mac_interrupt(np
);
2811 int r
= niu_device_error(np
);
2818 niu_enable_interrupts(np
, 0);
2823 static void niu_rxchan_intr(struct niu
*np
, struct rx_ring_info
*rp
,
2826 struct rxdma_mailbox
*mbox
= rp
->mbox
;
2827 u64 stat_write
, stat
= le64_to_cpup(&mbox
->rx_dma_ctl_stat
);
2829 stat_write
= (RX_DMA_CTL_STAT_RCRTHRES
|
2830 RX_DMA_CTL_STAT_RCRTO
);
2831 nw64(RX_DMA_CTL_STAT(rp
->rx_channel
), stat_write
);
2833 niudbg(INTR
, "%s: rxchan_intr stat[%llx]\n",
2834 np
->dev
->name
, (unsigned long long) stat
);
2837 static void niu_txchan_intr(struct niu
*np
, struct tx_ring_info
*rp
,
2840 rp
->tx_cs
= nr64(TX_CS(rp
->tx_channel
));
2842 niudbg(INTR
, "%s: txchan_intr cs[%llx]\n",
2843 np
->dev
->name
, (unsigned long long) rp
->tx_cs
);
2846 static void __niu_fastpath_interrupt(struct niu
*np
, int ldg
, u64 v0
)
2848 struct niu_parent
*parent
= np
->parent
;
2852 tx_vec
= (v0
>> 32);
2853 rx_vec
= (v0
& 0xffffffff);
2855 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
2856 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
2857 int ldn
= LDN_RXDMA(rp
->rx_channel
);
2859 if (parent
->ldg_map
[ldn
] != ldg
)
2862 nw64(LD_IM0(ldn
), LD_IM0_MASK
);
2863 if (rx_vec
& (1 << rp
->rx_channel
))
2864 niu_rxchan_intr(np
, rp
, ldn
);
2867 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
2868 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
2869 int ldn
= LDN_TXDMA(rp
->tx_channel
);
2871 if (parent
->ldg_map
[ldn
] != ldg
)
2874 nw64(LD_IM0(ldn
), LD_IM0_MASK
);
2875 if (tx_vec
& (1 << rp
->tx_channel
))
2876 niu_txchan_intr(np
, rp
, ldn
);
2880 static void niu_schedule_napi(struct niu
*np
, struct niu_ldg
*lp
,
2881 u64 v0
, u64 v1
, u64 v2
)
2883 if (likely(netif_rx_schedule_prep(np
->dev
, &lp
->napi
))) {
2887 __niu_fastpath_interrupt(np
, lp
->ldg_num
, v0
);
2888 __netif_rx_schedule(np
->dev
, &lp
->napi
);
2892 static irqreturn_t
niu_interrupt(int irq
, void *dev_id
)
2894 struct niu_ldg
*lp
= dev_id
;
2895 struct niu
*np
= lp
->np
;
2896 int ldg
= lp
->ldg_num
;
2897 unsigned long flags
;
2900 if (netif_msg_intr(np
))
2901 printk(KERN_DEBUG PFX
"niu_interrupt() ldg[%p](%d) ",
2904 spin_lock_irqsave(&np
->lock
, flags
);
2906 v0
= nr64(LDSV0(ldg
));
2907 v1
= nr64(LDSV1(ldg
));
2908 v2
= nr64(LDSV2(ldg
));
2910 if (netif_msg_intr(np
))
2911 printk("v0[%llx] v1[%llx] v2[%llx]\n",
2912 (unsigned long long) v0
,
2913 (unsigned long long) v1
,
2914 (unsigned long long) v2
);
2916 if (unlikely(!v0
&& !v1
&& !v2
)) {
2917 spin_unlock_irqrestore(&np
->lock
, flags
);
2921 if (unlikely((v0
& ((u64
)1 << LDN_MIF
)) || v1
|| v2
)) {
2922 int err
= niu_slowpath_interrupt(np
, lp
, v0
, v1
, v2
);
2926 if (likely(v0
& ~((u64
)1 << LDN_MIF
)))
2927 niu_schedule_napi(np
, lp
, v0
, v1
, v2
);
2929 niu_ldg_rearm(np
, lp
, 1);
2931 spin_unlock_irqrestore(&np
->lock
, flags
);
2936 static void niu_free_rx_ring_info(struct niu
*np
, struct rx_ring_info
*rp
)
2939 np
->ops
->free_coherent(np
->device
,
2940 sizeof(struct rxdma_mailbox
),
2941 rp
->mbox
, rp
->mbox_dma
);
2945 np
->ops
->free_coherent(np
->device
,
2946 MAX_RCR_RING_SIZE
* sizeof(__le64
),
2947 rp
->rcr
, rp
->rcr_dma
);
2949 rp
->rcr_table_size
= 0;
2953 niu_rbr_free(np
, rp
);
2955 np
->ops
->free_coherent(np
->device
,
2956 MAX_RBR_RING_SIZE
* sizeof(__le32
),
2957 rp
->rbr
, rp
->rbr_dma
);
2959 rp
->rbr_table_size
= 0;
2966 static void niu_free_tx_ring_info(struct niu
*np
, struct tx_ring_info
*rp
)
2969 np
->ops
->free_coherent(np
->device
,
2970 sizeof(struct txdma_mailbox
),
2971 rp
->mbox
, rp
->mbox_dma
);
2977 for (i
= 0; i
< MAX_TX_RING_SIZE
; i
++) {
2978 if (rp
->tx_buffs
[i
].skb
)
2979 (void) release_tx_packet(np
, rp
, i
);
2982 np
->ops
->free_coherent(np
->device
,
2983 MAX_TX_RING_SIZE
* sizeof(__le64
),
2984 rp
->descr
, rp
->descr_dma
);
2993 static void niu_free_channels(struct niu
*np
)
2998 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
2999 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
3001 niu_free_rx_ring_info(np
, rp
);
3003 kfree(np
->rx_rings
);
3004 np
->rx_rings
= NULL
;
3005 np
->num_rx_rings
= 0;
3009 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
3010 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
3012 niu_free_tx_ring_info(np
, rp
);
3014 kfree(np
->tx_rings
);
3015 np
->tx_rings
= NULL
;
3016 np
->num_tx_rings
= 0;
3020 static int niu_alloc_rx_ring_info(struct niu
*np
,
3021 struct rx_ring_info
*rp
)
3023 BUILD_BUG_ON(sizeof(struct rxdma_mailbox
) != 64);
3025 rp
->rxhash
= kzalloc(MAX_RBR_RING_SIZE
* sizeof(struct page
*),
3030 rp
->mbox
= np
->ops
->alloc_coherent(np
->device
,
3031 sizeof(struct rxdma_mailbox
),
3032 &rp
->mbox_dma
, GFP_KERNEL
);
3035 if ((unsigned long)rp
->mbox
& (64UL - 1)) {
3036 dev_err(np
->device
, PFX
"%s: Coherent alloc gives misaligned "
3037 "RXDMA mailbox %p\n", np
->dev
->name
, rp
->mbox
);
3041 rp
->rcr
= np
->ops
->alloc_coherent(np
->device
,
3042 MAX_RCR_RING_SIZE
* sizeof(__le64
),
3043 &rp
->rcr_dma
, GFP_KERNEL
);
3046 if ((unsigned long)rp
->rcr
& (64UL - 1)) {
3047 dev_err(np
->device
, PFX
"%s: Coherent alloc gives misaligned "
3048 "RXDMA RCR table %p\n", np
->dev
->name
, rp
->rcr
);
3051 rp
->rcr_table_size
= MAX_RCR_RING_SIZE
;
3054 rp
->rbr
= np
->ops
->alloc_coherent(np
->device
,
3055 MAX_RBR_RING_SIZE
* sizeof(__le32
),
3056 &rp
->rbr_dma
, GFP_KERNEL
);
3059 if ((unsigned long)rp
->rbr
& (64UL - 1)) {
3060 dev_err(np
->device
, PFX
"%s: Coherent alloc gives misaligned "
3061 "RXDMA RBR table %p\n", np
->dev
->name
, rp
->rbr
);
3064 rp
->rbr_table_size
= MAX_RBR_RING_SIZE
;
3066 rp
->rbr_pending
= 0;
3071 static void niu_set_max_burst(struct niu
*np
, struct tx_ring_info
*rp
)
3073 int mtu
= np
->dev
->mtu
;
3075 /* These values are recommended by the HW designers for fair
3076 * utilization of DRR amongst the rings.
3078 rp
->max_burst
= mtu
+ 32;
3079 if (rp
->max_burst
> 4096)
3080 rp
->max_burst
= 4096;
3083 static int niu_alloc_tx_ring_info(struct niu
*np
,
3084 struct tx_ring_info
*rp
)
3086 BUILD_BUG_ON(sizeof(struct txdma_mailbox
) != 64);
3088 rp
->mbox
= np
->ops
->alloc_coherent(np
->device
,
3089 sizeof(struct txdma_mailbox
),
3090 &rp
->mbox_dma
, GFP_KERNEL
);
3093 if ((unsigned long)rp
->mbox
& (64UL - 1)) {
3094 dev_err(np
->device
, PFX
"%s: Coherent alloc gives misaligned "
3095 "TXDMA mailbox %p\n", np
->dev
->name
, rp
->mbox
);
3099 rp
->descr
= np
->ops
->alloc_coherent(np
->device
,
3100 MAX_TX_RING_SIZE
* sizeof(__le64
),
3101 &rp
->descr_dma
, GFP_KERNEL
);
3104 if ((unsigned long)rp
->descr
& (64UL - 1)) {
3105 dev_err(np
->device
, PFX
"%s: Coherent alloc gives misaligned "
3106 "TXDMA descr table %p\n", np
->dev
->name
, rp
->descr
);
3110 rp
->pending
= MAX_TX_RING_SIZE
;
3115 /* XXX make these configurable... XXX */
3116 rp
->mark_freq
= rp
->pending
/ 4;
3118 niu_set_max_burst(np
, rp
);
3123 static void niu_size_rbr(struct niu
*np
, struct rx_ring_info
*rp
)
3127 bss
= min(PAGE_SHIFT
, 15);
3129 rp
->rbr_block_size
= 1 << bss
;
3130 rp
->rbr_blocks_per_page
= 1 << (PAGE_SHIFT
-bss
);
3132 rp
->rbr_sizes
[0] = 256;
3133 rp
->rbr_sizes
[1] = 1024;
3134 if (np
->dev
->mtu
> ETH_DATA_LEN
) {
3135 switch (PAGE_SIZE
) {
3137 rp
->rbr_sizes
[2] = 4096;
3141 rp
->rbr_sizes
[2] = 8192;
3145 rp
->rbr_sizes
[2] = 2048;
3147 rp
->rbr_sizes
[3] = rp
->rbr_block_size
;
3150 static int niu_alloc_channels(struct niu
*np
)
3152 struct niu_parent
*parent
= np
->parent
;
3153 int first_rx_channel
, first_tx_channel
;
3157 first_rx_channel
= first_tx_channel
= 0;
3158 for (i
= 0; i
< port
; i
++) {
3159 first_rx_channel
+= parent
->rxchan_per_port
[i
];
3160 first_tx_channel
+= parent
->txchan_per_port
[i
];
3163 np
->num_rx_rings
= parent
->rxchan_per_port
[port
];
3164 np
->num_tx_rings
= parent
->txchan_per_port
[port
];
3166 np
->rx_rings
= kzalloc(np
->num_rx_rings
* sizeof(struct rx_ring_info
),
3172 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
3173 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
3176 rp
->rx_channel
= first_rx_channel
+ i
;
3178 err
= niu_alloc_rx_ring_info(np
, rp
);
3182 niu_size_rbr(np
, rp
);
3184 /* XXX better defaults, configurable, etc... XXX */
3185 rp
->nonsyn_window
= 64;
3186 rp
->nonsyn_threshold
= rp
->rcr_table_size
- 64;
3187 rp
->syn_window
= 64;
3188 rp
->syn_threshold
= rp
->rcr_table_size
- 64;
3189 rp
->rcr_pkt_threshold
= 16;
3190 rp
->rcr_timeout
= 8;
3191 rp
->rbr_kick_thresh
= RBR_REFILL_MIN
;
3192 if (rp
->rbr_kick_thresh
< rp
->rbr_blocks_per_page
)
3193 rp
->rbr_kick_thresh
= rp
->rbr_blocks_per_page
;
3195 err
= niu_rbr_fill(np
, rp
, GFP_KERNEL
);
3200 np
->tx_rings
= kzalloc(np
->num_tx_rings
* sizeof(struct tx_ring_info
),
3206 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
3207 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
3210 rp
->tx_channel
= first_tx_channel
+ i
;
3212 err
= niu_alloc_tx_ring_info(np
, rp
);
3220 niu_free_channels(np
);
3224 static int niu_tx_cs_sng_poll(struct niu
*np
, int channel
)
3228 while (--limit
> 0) {
3229 u64 val
= nr64(TX_CS(channel
));
3230 if (val
& TX_CS_SNG_STATE
)
3236 static int niu_tx_channel_stop(struct niu
*np
, int channel
)
3238 u64 val
= nr64(TX_CS(channel
));
3240 val
|= TX_CS_STOP_N_GO
;
3241 nw64(TX_CS(channel
), val
);
3243 return niu_tx_cs_sng_poll(np
, channel
);
3246 static int niu_tx_cs_reset_poll(struct niu
*np
, int channel
)
3250 while (--limit
> 0) {
3251 u64 val
= nr64(TX_CS(channel
));
3252 if (!(val
& TX_CS_RST
))
3258 static int niu_tx_channel_reset(struct niu
*np
, int channel
)
3260 u64 val
= nr64(TX_CS(channel
));
3264 nw64(TX_CS(channel
), val
);
3266 err
= niu_tx_cs_reset_poll(np
, channel
);
3268 nw64(TX_RING_KICK(channel
), 0);
3273 static int niu_tx_channel_lpage_init(struct niu
*np
, int channel
)
3277 nw64(TX_LOG_MASK1(channel
), 0);
3278 nw64(TX_LOG_VAL1(channel
), 0);
3279 nw64(TX_LOG_MASK2(channel
), 0);
3280 nw64(TX_LOG_VAL2(channel
), 0);
3281 nw64(TX_LOG_PAGE_RELO1(channel
), 0);
3282 nw64(TX_LOG_PAGE_RELO2(channel
), 0);
3283 nw64(TX_LOG_PAGE_HDL(channel
), 0);
3285 val
= (u64
)np
->port
<< TX_LOG_PAGE_VLD_FUNC_SHIFT
;
3286 val
|= (TX_LOG_PAGE_VLD_PAGE0
| TX_LOG_PAGE_VLD_PAGE1
);
3287 nw64(TX_LOG_PAGE_VLD(channel
), val
);
3289 /* XXX TXDMA 32bit mode? XXX */
3294 static void niu_txc_enable_port(struct niu
*np
, int on
)
3296 unsigned long flags
;
3299 niu_lock_parent(np
, flags
);
3300 val
= nr64(TXC_CONTROL
);
3301 mask
= (u64
)1 << np
->port
;
3303 val
|= TXC_CONTROL_ENABLE
| mask
;
3306 if ((val
& ~TXC_CONTROL_ENABLE
) == 0)
3307 val
&= ~TXC_CONTROL_ENABLE
;
3309 nw64(TXC_CONTROL
, val
);
3310 niu_unlock_parent(np
, flags
);
3313 static void niu_txc_set_imask(struct niu
*np
, u64 imask
)
3315 unsigned long flags
;
3318 niu_lock_parent(np
, flags
);
3319 val
= nr64(TXC_INT_MASK
);
3320 val
&= ~TXC_INT_MASK_VAL(np
->port
);
3321 val
|= (imask
<< TXC_INT_MASK_VAL_SHIFT(np
->port
));
3322 niu_unlock_parent(np
, flags
);
3325 static void niu_txc_port_dma_enable(struct niu
*np
, int on
)
3332 for (i
= 0; i
< np
->num_tx_rings
; i
++)
3333 val
|= (1 << np
->tx_rings
[i
].tx_channel
);
3335 nw64(TXC_PORT_DMA(np
->port
), val
);
3338 static int niu_init_one_tx_channel(struct niu
*np
, struct tx_ring_info
*rp
)
3340 int err
, channel
= rp
->tx_channel
;
3343 err
= niu_tx_channel_stop(np
, channel
);
3347 err
= niu_tx_channel_reset(np
, channel
);
3351 err
= niu_tx_channel_lpage_init(np
, channel
);
3355 nw64(TXC_DMA_MAX(channel
), rp
->max_burst
);
3356 nw64(TX_ENT_MSK(channel
), 0);
3358 if (rp
->descr_dma
& ~(TX_RNG_CFIG_STADDR_BASE
|
3359 TX_RNG_CFIG_STADDR
)) {
3360 dev_err(np
->device
, PFX
"%s: TX ring channel %d "
3361 "DMA addr (%llx) is not aligned.\n",
3362 np
->dev
->name
, channel
,
3363 (unsigned long long) rp
->descr_dma
);
3367 /* The length field in TX_RNG_CFIG is measured in 64-byte
3368 * blocks. rp->pending is the number of TX descriptors in
3369 * our ring, 8 bytes each, thus we divide by 8 bytes more
3370 * to get the proper value the chip wants.
3372 ring_len
= (rp
->pending
/ 8);
3374 val
= ((ring_len
<< TX_RNG_CFIG_LEN_SHIFT
) |
3376 nw64(TX_RNG_CFIG(channel
), val
);
3378 if (((rp
->mbox_dma
>> 32) & ~TXDMA_MBH_MBADDR
) ||
3379 ((u32
)rp
->mbox_dma
& ~TXDMA_MBL_MBADDR
)) {
3380 dev_err(np
->device
, PFX
"%s: TX ring channel %d "
3381 "MBOX addr (%llx) is has illegal bits.\n",
3382 np
->dev
->name
, channel
,
3383 (unsigned long long) rp
->mbox_dma
);
3386 nw64(TXDMA_MBH(channel
), rp
->mbox_dma
>> 32);
3387 nw64(TXDMA_MBL(channel
), rp
->mbox_dma
& TXDMA_MBL_MBADDR
);
3389 nw64(TX_CS(channel
), 0);
3391 rp
->last_pkt_cnt
= 0;
3396 static void niu_init_rdc_groups(struct niu
*np
)
3398 struct niu_rdc_tables
*tp
= &np
->parent
->rdc_group_cfg
[np
->port
];
3399 int i
, first_table_num
= tp
->first_table_num
;
3401 for (i
= 0; i
< tp
->num_tables
; i
++) {
3402 struct rdc_table
*tbl
= &tp
->tables
[i
];
3403 int this_table
= first_table_num
+ i
;
3406 for (slot
= 0; slot
< NIU_RDC_TABLE_SLOTS
; slot
++)
3407 nw64(RDC_TBL(this_table
, slot
),
3408 tbl
->rxdma_channel
[slot
]);
3411 nw64(DEF_RDC(np
->port
), np
->parent
->rdc_default
[np
->port
]);
3414 static void niu_init_drr_weight(struct niu
*np
)
3416 int type
= phy_decode(np
->parent
->port_phy
, np
->port
);
3421 val
= PT_DRR_WEIGHT_DEFAULT_10G
;
3426 val
= PT_DRR_WEIGHT_DEFAULT_1G
;
3429 nw64(PT_DRR_WT(np
->port
), val
);
3432 static int niu_init_hostinfo(struct niu
*np
)
3434 struct niu_parent
*parent
= np
->parent
;
3435 struct niu_rdc_tables
*tp
= &parent
->rdc_group_cfg
[np
->port
];
3436 int i
, err
, num_alt
= niu_num_alt_addr(np
);
3437 int first_rdc_table
= tp
->first_table_num
;
3439 err
= niu_set_primary_mac_rdc_table(np
, first_rdc_table
, 1);
3443 err
= niu_set_multicast_mac_rdc_table(np
, first_rdc_table
, 1);
3447 for (i
= 0; i
< num_alt
; i
++) {
3448 err
= niu_set_alt_mac_rdc_table(np
, i
, first_rdc_table
, 1);
3456 static int niu_rx_channel_reset(struct niu
*np
, int channel
)
3458 return niu_set_and_wait_clear(np
, RXDMA_CFIG1(channel
),
3459 RXDMA_CFIG1_RST
, 1000, 10,
3463 static int niu_rx_channel_lpage_init(struct niu
*np
, int channel
)
3467 nw64(RX_LOG_MASK1(channel
), 0);
3468 nw64(RX_LOG_VAL1(channel
), 0);
3469 nw64(RX_LOG_MASK2(channel
), 0);
3470 nw64(RX_LOG_VAL2(channel
), 0);
3471 nw64(RX_LOG_PAGE_RELO1(channel
), 0);
3472 nw64(RX_LOG_PAGE_RELO2(channel
), 0);
3473 nw64(RX_LOG_PAGE_HDL(channel
), 0);
3475 val
= (u64
)np
->port
<< RX_LOG_PAGE_VLD_FUNC_SHIFT
;
3476 val
|= (RX_LOG_PAGE_VLD_PAGE0
| RX_LOG_PAGE_VLD_PAGE1
);
3477 nw64(RX_LOG_PAGE_VLD(channel
), val
);
3482 static void niu_rx_channel_wred_init(struct niu
*np
, struct rx_ring_info
*rp
)
3486 val
= (((u64
)rp
->nonsyn_window
<< RDC_RED_PARA_WIN_SHIFT
) |
3487 ((u64
)rp
->nonsyn_threshold
<< RDC_RED_PARA_THRE_SHIFT
) |
3488 ((u64
)rp
->syn_window
<< RDC_RED_PARA_WIN_SYN_SHIFT
) |
3489 ((u64
)rp
->syn_threshold
<< RDC_RED_PARA_THRE_SYN_SHIFT
));
3490 nw64(RDC_RED_PARA(rp
->rx_channel
), val
);
3493 static int niu_compute_rbr_cfig_b(struct rx_ring_info
*rp
, u64
*ret
)
3497 switch (rp
->rbr_block_size
) {
3499 val
|= (RBR_BLKSIZE_4K
<< RBR_CFIG_B_BLKSIZE_SHIFT
);
3502 val
|= (RBR_BLKSIZE_8K
<< RBR_CFIG_B_BLKSIZE_SHIFT
);
3505 val
|= (RBR_BLKSIZE_16K
<< RBR_CFIG_B_BLKSIZE_SHIFT
);
3508 val
|= (RBR_BLKSIZE_32K
<< RBR_CFIG_B_BLKSIZE_SHIFT
);
3513 val
|= RBR_CFIG_B_VLD2
;
3514 switch (rp
->rbr_sizes
[2]) {
3516 val
|= (RBR_BUFSZ2_2K
<< RBR_CFIG_B_BUFSZ2_SHIFT
);
3519 val
|= (RBR_BUFSZ2_4K
<< RBR_CFIG_B_BUFSZ2_SHIFT
);
3522 val
|= (RBR_BUFSZ2_8K
<< RBR_CFIG_B_BUFSZ2_SHIFT
);
3525 val
|= (RBR_BUFSZ2_16K
<< RBR_CFIG_B_BUFSZ2_SHIFT
);
3531 val
|= RBR_CFIG_B_VLD1
;
3532 switch (rp
->rbr_sizes
[1]) {
3534 val
|= (RBR_BUFSZ1_1K
<< RBR_CFIG_B_BUFSZ1_SHIFT
);
3537 val
|= (RBR_BUFSZ1_2K
<< RBR_CFIG_B_BUFSZ1_SHIFT
);
3540 val
|= (RBR_BUFSZ1_4K
<< RBR_CFIG_B_BUFSZ1_SHIFT
);
3543 val
|= (RBR_BUFSZ1_8K
<< RBR_CFIG_B_BUFSZ1_SHIFT
);
3549 val
|= RBR_CFIG_B_VLD0
;
3550 switch (rp
->rbr_sizes
[0]) {
3552 val
|= (RBR_BUFSZ0_256
<< RBR_CFIG_B_BUFSZ0_SHIFT
);
3555 val
|= (RBR_BUFSZ0_512
<< RBR_CFIG_B_BUFSZ0_SHIFT
);
3558 val
|= (RBR_BUFSZ0_1K
<< RBR_CFIG_B_BUFSZ0_SHIFT
);
3561 val
|= (RBR_BUFSZ0_2K
<< RBR_CFIG_B_BUFSZ0_SHIFT
);
3572 static int niu_enable_rx_channel(struct niu
*np
, int channel
, int on
)
3574 u64 val
= nr64(RXDMA_CFIG1(channel
));
3578 val
|= RXDMA_CFIG1_EN
;
3580 val
&= ~RXDMA_CFIG1_EN
;
3581 nw64(RXDMA_CFIG1(channel
), val
);
3584 while (--limit
> 0) {
3585 if (nr64(RXDMA_CFIG1(channel
)) & RXDMA_CFIG1_QST
)
3594 static int niu_init_one_rx_channel(struct niu
*np
, struct rx_ring_info
*rp
)
3596 int err
, channel
= rp
->rx_channel
;
3599 err
= niu_rx_channel_reset(np
, channel
);
3603 err
= niu_rx_channel_lpage_init(np
, channel
);
3607 niu_rx_channel_wred_init(np
, rp
);
3609 nw64(RX_DMA_ENT_MSK(channel
), RX_DMA_ENT_MSK_RBR_EMPTY
);
3610 nw64(RX_DMA_CTL_STAT(channel
),
3611 (RX_DMA_CTL_STAT_MEX
|
3612 RX_DMA_CTL_STAT_RCRTHRES
|
3613 RX_DMA_CTL_STAT_RCRTO
|
3614 RX_DMA_CTL_STAT_RBR_EMPTY
));
3615 nw64(RXDMA_CFIG1(channel
), rp
->mbox_dma
>> 32);
3616 nw64(RXDMA_CFIG2(channel
), (rp
->mbox_dma
& 0x00000000ffffffc0));
3617 nw64(RBR_CFIG_A(channel
),
3618 ((u64
)rp
->rbr_table_size
<< RBR_CFIG_A_LEN_SHIFT
) |
3619 (rp
->rbr_dma
& (RBR_CFIG_A_STADDR_BASE
| RBR_CFIG_A_STADDR
)));
3620 err
= niu_compute_rbr_cfig_b(rp
, &val
);
3623 nw64(RBR_CFIG_B(channel
), val
);
3624 nw64(RCRCFIG_A(channel
),
3625 ((u64
)rp
->rcr_table_size
<< RCRCFIG_A_LEN_SHIFT
) |
3626 (rp
->rcr_dma
& (RCRCFIG_A_STADDR_BASE
| RCRCFIG_A_STADDR
)));
3627 nw64(RCRCFIG_B(channel
),
3628 ((u64
)rp
->rcr_pkt_threshold
<< RCRCFIG_B_PTHRES_SHIFT
) |
3630 ((u64
)rp
->rcr_timeout
<< RCRCFIG_B_TIMEOUT_SHIFT
));
3632 err
= niu_enable_rx_channel(np
, channel
, 1);
3636 nw64(RBR_KICK(channel
), rp
->rbr_index
);
3638 val
= nr64(RX_DMA_CTL_STAT(channel
));
3639 val
|= RX_DMA_CTL_STAT_RBR_EMPTY
;
3640 nw64(RX_DMA_CTL_STAT(channel
), val
);
3645 static int niu_init_rx_channels(struct niu
*np
)
3647 unsigned long flags
;
3648 u64 seed
= jiffies_64
;
3651 niu_lock_parent(np
, flags
);
3652 nw64(RX_DMA_CK_DIV
, np
->parent
->rxdma_clock_divider
);
3653 nw64(RED_RAN_INIT
, RED_RAN_INIT_OPMODE
| (seed
& RED_RAN_INIT_VAL
));
3654 niu_unlock_parent(np
, flags
);
3656 /* XXX RXDMA 32bit mode? XXX */
3658 niu_init_rdc_groups(np
);
3659 niu_init_drr_weight(np
);
3661 err
= niu_init_hostinfo(np
);
3665 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
3666 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
3668 err
= niu_init_one_rx_channel(np
, rp
);
3676 static int niu_set_ip_frag_rule(struct niu
*np
)
3678 struct niu_parent
*parent
= np
->parent
;
3679 struct niu_classifier
*cp
= &np
->clas
;
3680 struct niu_tcam_entry
*tp
;
3683 /* XXX fix this allocation scheme XXX */
3684 index
= cp
->tcam_index
;
3685 tp
= &parent
->tcam
[index
];
3687 /* Note that the noport bit is the same in both ipv4 and
3688 * ipv6 format TCAM entries.
3690 memset(tp
, 0, sizeof(*tp
));
3691 tp
->key
[1] = TCAM_V4KEY1_NOPORT
;
3692 tp
->key_mask
[1] = TCAM_V4KEY1_NOPORT
;
3693 tp
->assoc_data
= (TCAM_ASSOCDATA_TRES_USE_OFFSET
|
3694 ((u64
)0 << TCAM_ASSOCDATA_OFFSET_SHIFT
));
3695 err
= tcam_write(np
, index
, tp
->key
, tp
->key_mask
);
3698 err
= tcam_assoc_write(np
, index
, tp
->assoc_data
);
3705 static int niu_init_classifier_hw(struct niu
*np
)
3707 struct niu_parent
*parent
= np
->parent
;
3708 struct niu_classifier
*cp
= &np
->clas
;
3711 nw64(H1POLY
, cp
->h1_init
);
3712 nw64(H2POLY
, cp
->h2_init
);
3714 err
= niu_init_hostinfo(np
);
3718 for (i
= 0; i
< ENET_VLAN_TBL_NUM_ENTRIES
; i
++) {
3719 struct niu_vlan_rdc
*vp
= &cp
->vlan_mappings
[i
];
3721 vlan_tbl_write(np
, i
, np
->port
,
3722 vp
->vlan_pref
, vp
->rdc_num
);
3725 for (i
= 0; i
< cp
->num_alt_mac_mappings
; i
++) {
3726 struct niu_altmac_rdc
*ap
= &cp
->alt_mac_mappings
[i
];
3728 err
= niu_set_alt_mac_rdc_table(np
, ap
->alt_mac_num
,
3729 ap
->rdc_num
, ap
->mac_pref
);
3734 for (i
= CLASS_CODE_USER_PROG1
; i
<= CLASS_CODE_SCTP_IPV6
; i
++) {
3735 int index
= i
- CLASS_CODE_USER_PROG1
;
3737 err
= niu_set_tcam_key(np
, i
, parent
->tcam_key
[index
]);
3740 err
= niu_set_flow_key(np
, i
, parent
->flow_key
[index
]);
3745 err
= niu_set_ip_frag_rule(np
);
3754 static int niu_zcp_write(struct niu
*np
, int index
, u64
*data
)
3756 nw64(ZCP_RAM_DATA0
, data
[0]);
3757 nw64(ZCP_RAM_DATA1
, data
[1]);
3758 nw64(ZCP_RAM_DATA2
, data
[2]);
3759 nw64(ZCP_RAM_DATA3
, data
[3]);
3760 nw64(ZCP_RAM_DATA4
, data
[4]);
3761 nw64(ZCP_RAM_BE
, ZCP_RAM_BE_VAL
);
3763 (ZCP_RAM_ACC_WRITE
|
3764 (0 << ZCP_RAM_ACC_ZFCID_SHIFT
) |
3765 (ZCP_RAM_SEL_CFIFO(np
->port
) << ZCP_RAM_ACC_RAM_SEL_SHIFT
)));
3767 return niu_wait_bits_clear(np
, ZCP_RAM_ACC
, ZCP_RAM_ACC_BUSY
,
3771 static int niu_zcp_read(struct niu
*np
, int index
, u64
*data
)
3775 err
= niu_wait_bits_clear(np
, ZCP_RAM_ACC
, ZCP_RAM_ACC_BUSY
,
3778 dev_err(np
->device
, PFX
"%s: ZCP read busy won't clear, "
3779 "ZCP_RAM_ACC[%llx]\n", np
->dev
->name
,
3780 (unsigned long long) nr64(ZCP_RAM_ACC
));
3786 (0 << ZCP_RAM_ACC_ZFCID_SHIFT
) |
3787 (ZCP_RAM_SEL_CFIFO(np
->port
) << ZCP_RAM_ACC_RAM_SEL_SHIFT
)));
3789 err
= niu_wait_bits_clear(np
, ZCP_RAM_ACC
, ZCP_RAM_ACC_BUSY
,
3792 dev_err(np
->device
, PFX
"%s: ZCP read busy2 won't clear, "
3793 "ZCP_RAM_ACC[%llx]\n", np
->dev
->name
,
3794 (unsigned long long) nr64(ZCP_RAM_ACC
));
3798 data
[0] = nr64(ZCP_RAM_DATA0
);
3799 data
[1] = nr64(ZCP_RAM_DATA1
);
3800 data
[2] = nr64(ZCP_RAM_DATA2
);
3801 data
[3] = nr64(ZCP_RAM_DATA3
);
3802 data
[4] = nr64(ZCP_RAM_DATA4
);
3807 static void niu_zcp_cfifo_reset(struct niu
*np
)
3809 u64 val
= nr64(RESET_CFIFO
);
3811 val
|= RESET_CFIFO_RST(np
->port
);
3812 nw64(RESET_CFIFO
, val
);
3815 val
&= ~RESET_CFIFO_RST(np
->port
);
3816 nw64(RESET_CFIFO
, val
);
3819 static int niu_init_zcp(struct niu
*np
)
3821 u64 data
[5], rbuf
[5];
3824 if (np
->parent
->plat_type
!= PLAT_TYPE_NIU
) {
3825 if (np
->port
== 0 || np
->port
== 1)
3826 max
= ATLAS_P0_P1_CFIFO_ENTRIES
;
3828 max
= ATLAS_P2_P3_CFIFO_ENTRIES
;
3830 max
= NIU_CFIFO_ENTRIES
;
3838 for (i
= 0; i
< max
; i
++) {
3839 err
= niu_zcp_write(np
, i
, data
);
3842 err
= niu_zcp_read(np
, i
, rbuf
);
3847 niu_zcp_cfifo_reset(np
);
3848 nw64(CFIFO_ECC(np
->port
), 0);
3849 nw64(ZCP_INT_STAT
, ZCP_INT_STAT_ALL
);
3850 (void) nr64(ZCP_INT_STAT
);
3851 nw64(ZCP_INT_MASK
, ZCP_INT_MASK_ALL
);
3856 static void niu_ipp_write(struct niu
*np
, int index
, u64
*data
)
3858 u64 val
= nr64_ipp(IPP_CFIG
);
3860 nw64_ipp(IPP_CFIG
, val
| IPP_CFIG_DFIFO_PIO_W
);
3861 nw64_ipp(IPP_DFIFO_WR_PTR
, index
);
3862 nw64_ipp(IPP_DFIFO_WR0
, data
[0]);
3863 nw64_ipp(IPP_DFIFO_WR1
, data
[1]);
3864 nw64_ipp(IPP_DFIFO_WR2
, data
[2]);
3865 nw64_ipp(IPP_DFIFO_WR3
, data
[3]);
3866 nw64_ipp(IPP_DFIFO_WR4
, data
[4]);
3867 nw64_ipp(IPP_CFIG
, val
& ~IPP_CFIG_DFIFO_PIO_W
);
3870 static void niu_ipp_read(struct niu
*np
, int index
, u64
*data
)
3872 nw64_ipp(IPP_DFIFO_RD_PTR
, index
);
3873 data
[0] = nr64_ipp(IPP_DFIFO_RD0
);
3874 data
[1] = nr64_ipp(IPP_DFIFO_RD1
);
3875 data
[2] = nr64_ipp(IPP_DFIFO_RD2
);
3876 data
[3] = nr64_ipp(IPP_DFIFO_RD3
);
3877 data
[4] = nr64_ipp(IPP_DFIFO_RD4
);
3880 static int niu_ipp_reset(struct niu
*np
)
3882 return niu_set_and_wait_clear_ipp(np
, IPP_CFIG
, IPP_CFIG_SOFT_RST
,
3883 1000, 100, "IPP_CFIG");
3886 static int niu_init_ipp(struct niu
*np
)
3888 u64 data
[5], rbuf
[5], val
;
3891 if (np
->parent
->plat_type
!= PLAT_TYPE_NIU
) {
3892 if (np
->port
== 0 || np
->port
== 1)
3893 max
= ATLAS_P0_P1_DFIFO_ENTRIES
;
3895 max
= ATLAS_P2_P3_DFIFO_ENTRIES
;
3897 max
= NIU_DFIFO_ENTRIES
;
3905 for (i
= 0; i
< max
; i
++) {
3906 niu_ipp_write(np
, i
, data
);
3907 niu_ipp_read(np
, i
, rbuf
);
3910 (void) nr64_ipp(IPP_INT_STAT
);
3911 (void) nr64_ipp(IPP_INT_STAT
);
3913 err
= niu_ipp_reset(np
);
3917 (void) nr64_ipp(IPP_PKT_DIS
);
3918 (void) nr64_ipp(IPP_BAD_CS_CNT
);
3919 (void) nr64_ipp(IPP_ECC
);
3921 (void) nr64_ipp(IPP_INT_STAT
);
3923 nw64_ipp(IPP_MSK
, ~IPP_MSK_ALL
);
3925 val
= nr64_ipp(IPP_CFIG
);
3926 val
&= ~IPP_CFIG_IP_MAX_PKT
;
3927 val
|= (IPP_CFIG_IPP_ENABLE
|
3928 IPP_CFIG_DFIFO_ECC_EN
|
3929 IPP_CFIG_DROP_BAD_CRC
|
3931 (0x1ffff << IPP_CFIG_IP_MAX_PKT_SHIFT
));
3932 nw64_ipp(IPP_CFIG
, val
);
3937 static void niu_handle_led(struct niu
*np
, int status
)
3940 val
= nr64_mac(XMAC_CONFIG
);
3942 if ((np
->flags
& NIU_FLAGS_10G
) != 0 &&
3943 (np
->flags
& NIU_FLAGS_FIBER
) != 0) {
3945 val
|= XMAC_CONFIG_LED_POLARITY
;
3946 val
&= ~XMAC_CONFIG_FORCE_LED_ON
;
3948 val
|= XMAC_CONFIG_FORCE_LED_ON
;
3949 val
&= ~XMAC_CONFIG_LED_POLARITY
;
3953 nw64_mac(XMAC_CONFIG
, val
);
3956 static void niu_init_xif_xmac(struct niu
*np
)
3958 struct niu_link_config
*lp
= &np
->link_config
;
3961 val
= nr64_mac(XMAC_CONFIG
);
3962 val
&= ~XMAC_CONFIG_SEL_POR_CLK_SRC
;
3964 val
|= XMAC_CONFIG_TX_OUTPUT_EN
;
3966 if (lp
->loopback_mode
== LOOPBACK_MAC
) {
3967 val
&= ~XMAC_CONFIG_SEL_POR_CLK_SRC
;
3968 val
|= XMAC_CONFIG_LOOPBACK
;
3970 val
&= ~XMAC_CONFIG_LOOPBACK
;
3973 if (np
->flags
& NIU_FLAGS_10G
) {
3974 val
&= ~XMAC_CONFIG_LFS_DISABLE
;
3976 val
|= XMAC_CONFIG_LFS_DISABLE
;
3977 if (!(np
->flags
& NIU_FLAGS_FIBER
))
3978 val
|= XMAC_CONFIG_1G_PCS_BYPASS
;
3980 val
&= ~XMAC_CONFIG_1G_PCS_BYPASS
;
3983 val
&= ~XMAC_CONFIG_10G_XPCS_BYPASS
;
3985 if (lp
->active_speed
== SPEED_100
)
3986 val
|= XMAC_CONFIG_SEL_CLK_25MHZ
;
3988 val
&= ~XMAC_CONFIG_SEL_CLK_25MHZ
;
3990 nw64_mac(XMAC_CONFIG
, val
);
3992 val
= nr64_mac(XMAC_CONFIG
);
3993 val
&= ~XMAC_CONFIG_MODE_MASK
;
3994 if (np
->flags
& NIU_FLAGS_10G
) {
3995 val
|= XMAC_CONFIG_MODE_XGMII
;
3997 if (lp
->active_speed
== SPEED_100
)
3998 val
|= XMAC_CONFIG_MODE_MII
;
4000 val
|= XMAC_CONFIG_MODE_GMII
;
4003 nw64_mac(XMAC_CONFIG
, val
);
4006 static void niu_init_xif_bmac(struct niu
*np
)
4008 struct niu_link_config
*lp
= &np
->link_config
;
4011 val
= BMAC_XIF_CONFIG_TX_OUTPUT_EN
;
4013 if (lp
->loopback_mode
== LOOPBACK_MAC
)
4014 val
|= BMAC_XIF_CONFIG_MII_LOOPBACK
;
4016 val
&= ~BMAC_XIF_CONFIG_MII_LOOPBACK
;
4018 if (lp
->active_speed
== SPEED_1000
)
4019 val
|= BMAC_XIF_CONFIG_GMII_MODE
;
4021 val
&= ~BMAC_XIF_CONFIG_GMII_MODE
;
4023 val
&= ~(BMAC_XIF_CONFIG_LINK_LED
|
4024 BMAC_XIF_CONFIG_LED_POLARITY
);
4026 if (!(np
->flags
& NIU_FLAGS_10G
) &&
4027 !(np
->flags
& NIU_FLAGS_FIBER
) &&
4028 lp
->active_speed
== SPEED_100
)
4029 val
|= BMAC_XIF_CONFIG_25MHZ_CLOCK
;
4031 val
&= ~BMAC_XIF_CONFIG_25MHZ_CLOCK
;
4033 nw64_mac(BMAC_XIF_CONFIG
, val
);
4036 static void niu_init_xif(struct niu
*np
)
4038 if (np
->flags
& NIU_FLAGS_XMAC
)
4039 niu_init_xif_xmac(np
);
4041 niu_init_xif_bmac(np
);
4044 static void niu_pcs_mii_reset(struct niu
*np
)
4046 u64 val
= nr64_pcs(PCS_MII_CTL
);
4047 val
|= PCS_MII_CTL_RST
;
4048 nw64_pcs(PCS_MII_CTL
, val
);
4051 static void niu_xpcs_reset(struct niu
*np
)
4053 u64 val
= nr64_xpcs(XPCS_CONTROL1
);
4054 val
|= XPCS_CONTROL1_RESET
;
4055 nw64_xpcs(XPCS_CONTROL1
, val
);
4058 static int niu_init_pcs(struct niu
*np
)
4060 struct niu_link_config
*lp
= &np
->link_config
;
4063 switch (np
->flags
& (NIU_FLAGS_10G
| NIU_FLAGS_FIBER
)) {
4064 case NIU_FLAGS_FIBER
:
4066 nw64_pcs(PCS_CONF
, PCS_CONF_MASK
| PCS_CONF_ENABLE
);
4067 nw64_pcs(PCS_DPATH_MODE
, 0);
4068 niu_pcs_mii_reset(np
);
4072 case NIU_FLAGS_10G
| NIU_FLAGS_FIBER
:
4073 if (!(np
->flags
& NIU_FLAGS_XMAC
))
4076 /* 10G copper or fiber */
4077 val
= nr64_mac(XMAC_CONFIG
);
4078 val
&= ~XMAC_CONFIG_10G_XPCS_BYPASS
;
4079 nw64_mac(XMAC_CONFIG
, val
);
4083 val
= nr64_xpcs(XPCS_CONTROL1
);
4084 if (lp
->loopback_mode
== LOOPBACK_PHY
)
4085 val
|= XPCS_CONTROL1_LOOPBACK
;
4087 val
&= ~XPCS_CONTROL1_LOOPBACK
;
4088 nw64_xpcs(XPCS_CONTROL1
, val
);
4090 nw64_xpcs(XPCS_DESKEW_ERR_CNT
, 0);
4091 (void) nr64_xpcs(XPCS_SYMERR_CNT01
);
4092 (void) nr64_xpcs(XPCS_SYMERR_CNT23
);
4097 nw64_pcs(PCS_DPATH_MODE
, PCS_DPATH_MODE_MII
);
4098 niu_pcs_mii_reset(np
);
4108 static int niu_reset_tx_xmac(struct niu
*np
)
4110 return niu_set_and_wait_clear_mac(np
, XTXMAC_SW_RST
,
4111 (XTXMAC_SW_RST_REG_RS
|
4112 XTXMAC_SW_RST_SOFT_RST
),
4113 1000, 100, "XTXMAC_SW_RST");
4116 static int niu_reset_tx_bmac(struct niu
*np
)
4120 nw64_mac(BTXMAC_SW_RST
, BTXMAC_SW_RST_RESET
);
4122 while (--limit
>= 0) {
4123 if (!(nr64_mac(BTXMAC_SW_RST
) & BTXMAC_SW_RST_RESET
))
4128 dev_err(np
->device
, PFX
"Port %u TX BMAC would not reset, "
4129 "BTXMAC_SW_RST[%llx]\n",
4131 (unsigned long long) nr64_mac(BTXMAC_SW_RST
));
4138 static int niu_reset_tx_mac(struct niu
*np
)
4140 if (np
->flags
& NIU_FLAGS_XMAC
)
4141 return niu_reset_tx_xmac(np
);
4143 return niu_reset_tx_bmac(np
);
4146 static void niu_init_tx_xmac(struct niu
*np
, u64 min
, u64 max
)
4150 val
= nr64_mac(XMAC_MIN
);
4151 val
&= ~(XMAC_MIN_TX_MIN_PKT_SIZE
|
4152 XMAC_MIN_RX_MIN_PKT_SIZE
);
4153 val
|= (min
<< XMAC_MIN_RX_MIN_PKT_SIZE_SHFT
);
4154 val
|= (min
<< XMAC_MIN_TX_MIN_PKT_SIZE_SHFT
);
4155 nw64_mac(XMAC_MIN
, val
);
4157 nw64_mac(XMAC_MAX
, max
);
4159 nw64_mac(XTXMAC_STAT_MSK
, ~(u64
)0);
4161 val
= nr64_mac(XMAC_IPG
);
4162 if (np
->flags
& NIU_FLAGS_10G
) {
4163 val
&= ~XMAC_IPG_IPG_XGMII
;
4164 val
|= (IPG_12_15_XGMII
<< XMAC_IPG_IPG_XGMII_SHIFT
);
4166 val
&= ~XMAC_IPG_IPG_MII_GMII
;
4167 val
|= (IPG_12_MII_GMII
<< XMAC_IPG_IPG_MII_GMII_SHIFT
);
4169 nw64_mac(XMAC_IPG
, val
);
4171 val
= nr64_mac(XMAC_CONFIG
);
4172 val
&= ~(XMAC_CONFIG_ALWAYS_NO_CRC
|
4173 XMAC_CONFIG_STRETCH_MODE
|
4174 XMAC_CONFIG_VAR_MIN_IPG_EN
|
4175 XMAC_CONFIG_TX_ENABLE
);
4176 nw64_mac(XMAC_CONFIG
, val
);
4178 nw64_mac(TXMAC_FRM_CNT
, 0);
4179 nw64_mac(TXMAC_BYTE_CNT
, 0);
4182 static void niu_init_tx_bmac(struct niu
*np
, u64 min
, u64 max
)
4186 nw64_mac(BMAC_MIN_FRAME
, min
);
4187 nw64_mac(BMAC_MAX_FRAME
, max
);
4189 nw64_mac(BTXMAC_STATUS_MASK
, ~(u64
)0);
4190 nw64_mac(BMAC_CTRL_TYPE
, 0x8808);
4191 nw64_mac(BMAC_PREAMBLE_SIZE
, 7);
4193 val
= nr64_mac(BTXMAC_CONFIG
);
4194 val
&= ~(BTXMAC_CONFIG_FCS_DISABLE
|
4195 BTXMAC_CONFIG_ENABLE
);
4196 nw64_mac(BTXMAC_CONFIG
, val
);
4199 static void niu_init_tx_mac(struct niu
*np
)
4204 if (np
->dev
->mtu
> ETH_DATA_LEN
)
4209 /* The XMAC_MIN register only accepts values for TX min which
4210 * have the low 3 bits cleared.
4212 BUILD_BUG_ON(min
& 0x7);
4214 if (np
->flags
& NIU_FLAGS_XMAC
)
4215 niu_init_tx_xmac(np
, min
, max
);
4217 niu_init_tx_bmac(np
, min
, max
);
4220 static int niu_reset_rx_xmac(struct niu
*np
)
4224 nw64_mac(XRXMAC_SW_RST
,
4225 XRXMAC_SW_RST_REG_RS
| XRXMAC_SW_RST_SOFT_RST
);
4227 while (--limit
>= 0) {
4228 if (!(nr64_mac(XRXMAC_SW_RST
) & (XRXMAC_SW_RST_REG_RS
|
4229 XRXMAC_SW_RST_SOFT_RST
)))
4234 dev_err(np
->device
, PFX
"Port %u RX XMAC would not reset, "
4235 "XRXMAC_SW_RST[%llx]\n",
4237 (unsigned long long) nr64_mac(XRXMAC_SW_RST
));
4244 static int niu_reset_rx_bmac(struct niu
*np
)
4248 nw64_mac(BRXMAC_SW_RST
, BRXMAC_SW_RST_RESET
);
4250 while (--limit
>= 0) {
4251 if (!(nr64_mac(BRXMAC_SW_RST
) & BRXMAC_SW_RST_RESET
))
4256 dev_err(np
->device
, PFX
"Port %u RX BMAC would not reset, "
4257 "BRXMAC_SW_RST[%llx]\n",
4259 (unsigned long long) nr64_mac(BRXMAC_SW_RST
));
4266 static int niu_reset_rx_mac(struct niu
*np
)
4268 if (np
->flags
& NIU_FLAGS_XMAC
)
4269 return niu_reset_rx_xmac(np
);
4271 return niu_reset_rx_bmac(np
);
4274 static void niu_init_rx_xmac(struct niu
*np
)
4276 struct niu_parent
*parent
= np
->parent
;
4277 struct niu_rdc_tables
*tp
= &parent
->rdc_group_cfg
[np
->port
];
4278 int first_rdc_table
= tp
->first_table_num
;
4282 nw64_mac(XMAC_ADD_FILT0
, 0);
4283 nw64_mac(XMAC_ADD_FILT1
, 0);
4284 nw64_mac(XMAC_ADD_FILT2
, 0);
4285 nw64_mac(XMAC_ADD_FILT12_MASK
, 0);
4286 nw64_mac(XMAC_ADD_FILT00_MASK
, 0);
4287 for (i
= 0; i
< MAC_NUM_HASH
; i
++)
4288 nw64_mac(XMAC_HASH_TBL(i
), 0);
4289 nw64_mac(XRXMAC_STAT_MSK
, ~(u64
)0);
4290 niu_set_primary_mac_rdc_table(np
, first_rdc_table
, 1);
4291 niu_set_multicast_mac_rdc_table(np
, first_rdc_table
, 1);
4293 val
= nr64_mac(XMAC_CONFIG
);
4294 val
&= ~(XMAC_CONFIG_RX_MAC_ENABLE
|
4295 XMAC_CONFIG_PROMISCUOUS
|
4296 XMAC_CONFIG_PROMISC_GROUP
|
4297 XMAC_CONFIG_ERR_CHK_DIS
|
4298 XMAC_CONFIG_RX_CRC_CHK_DIS
|
4299 XMAC_CONFIG_RESERVED_MULTICAST
|
4300 XMAC_CONFIG_RX_CODEV_CHK_DIS
|
4301 XMAC_CONFIG_ADDR_FILTER_EN
|
4302 XMAC_CONFIG_RCV_PAUSE_ENABLE
|
4303 XMAC_CONFIG_STRIP_CRC
|
4304 XMAC_CONFIG_PASS_FLOW_CTRL
|
4305 XMAC_CONFIG_MAC2IPP_PKT_CNT_EN
);
4306 val
|= (XMAC_CONFIG_HASH_FILTER_EN
);
4307 nw64_mac(XMAC_CONFIG
, val
);
4309 nw64_mac(RXMAC_BT_CNT
, 0);
4310 nw64_mac(RXMAC_BC_FRM_CNT
, 0);
4311 nw64_mac(RXMAC_MC_FRM_CNT
, 0);
4312 nw64_mac(RXMAC_FRAG_CNT
, 0);
4313 nw64_mac(RXMAC_HIST_CNT1
, 0);
4314 nw64_mac(RXMAC_HIST_CNT2
, 0);
4315 nw64_mac(RXMAC_HIST_CNT3
, 0);
4316 nw64_mac(RXMAC_HIST_CNT4
, 0);
4317 nw64_mac(RXMAC_HIST_CNT5
, 0);
4318 nw64_mac(RXMAC_HIST_CNT6
, 0);
4319 nw64_mac(RXMAC_HIST_CNT7
, 0);
4320 nw64_mac(RXMAC_MPSZER_CNT
, 0);
4321 nw64_mac(RXMAC_CRC_ER_CNT
, 0);
4322 nw64_mac(RXMAC_CD_VIO_CNT
, 0);
4323 nw64_mac(LINK_FAULT_CNT
, 0);
4326 static void niu_init_rx_bmac(struct niu
*np
)
4328 struct niu_parent
*parent
= np
->parent
;
4329 struct niu_rdc_tables
*tp
= &parent
->rdc_group_cfg
[np
->port
];
4330 int first_rdc_table
= tp
->first_table_num
;
4334 nw64_mac(BMAC_ADD_FILT0
, 0);
4335 nw64_mac(BMAC_ADD_FILT1
, 0);
4336 nw64_mac(BMAC_ADD_FILT2
, 0);
4337 nw64_mac(BMAC_ADD_FILT12_MASK
, 0);
4338 nw64_mac(BMAC_ADD_FILT00_MASK
, 0);
4339 for (i
= 0; i
< MAC_NUM_HASH
; i
++)
4340 nw64_mac(BMAC_HASH_TBL(i
), 0);
4341 niu_set_primary_mac_rdc_table(np
, first_rdc_table
, 1);
4342 niu_set_multicast_mac_rdc_table(np
, first_rdc_table
, 1);
4343 nw64_mac(BRXMAC_STATUS_MASK
, ~(u64
)0);
4345 val
= nr64_mac(BRXMAC_CONFIG
);
4346 val
&= ~(BRXMAC_CONFIG_ENABLE
|
4347 BRXMAC_CONFIG_STRIP_PAD
|
4348 BRXMAC_CONFIG_STRIP_FCS
|
4349 BRXMAC_CONFIG_PROMISC
|
4350 BRXMAC_CONFIG_PROMISC_GRP
|
4351 BRXMAC_CONFIG_ADDR_FILT_EN
|
4352 BRXMAC_CONFIG_DISCARD_DIS
);
4353 val
|= (BRXMAC_CONFIG_HASH_FILT_EN
);
4354 nw64_mac(BRXMAC_CONFIG
, val
);
4356 val
= nr64_mac(BMAC_ADDR_CMPEN
);
4357 val
|= BMAC_ADDR_CMPEN_EN0
;
4358 nw64_mac(BMAC_ADDR_CMPEN
, val
);
4361 static void niu_init_rx_mac(struct niu
*np
)
4363 niu_set_primary_mac(np
, np
->dev
->dev_addr
);
4365 if (np
->flags
& NIU_FLAGS_XMAC
)
4366 niu_init_rx_xmac(np
);
4368 niu_init_rx_bmac(np
);
4371 static void niu_enable_tx_xmac(struct niu
*np
, int on
)
4373 u64 val
= nr64_mac(XMAC_CONFIG
);
4376 val
|= XMAC_CONFIG_TX_ENABLE
;
4378 val
&= ~XMAC_CONFIG_TX_ENABLE
;
4379 nw64_mac(XMAC_CONFIG
, val
);
4382 static void niu_enable_tx_bmac(struct niu
*np
, int on
)
4384 u64 val
= nr64_mac(BTXMAC_CONFIG
);
4387 val
|= BTXMAC_CONFIG_ENABLE
;
4389 val
&= ~BTXMAC_CONFIG_ENABLE
;
4390 nw64_mac(BTXMAC_CONFIG
, val
);
4393 static void niu_enable_tx_mac(struct niu
*np
, int on
)
4395 if (np
->flags
& NIU_FLAGS_XMAC
)
4396 niu_enable_tx_xmac(np
, on
);
4398 niu_enable_tx_bmac(np
, on
);
4401 static void niu_enable_rx_xmac(struct niu
*np
, int on
)
4403 u64 val
= nr64_mac(XMAC_CONFIG
);
4405 val
&= ~(XMAC_CONFIG_HASH_FILTER_EN
|
4406 XMAC_CONFIG_PROMISCUOUS
);
4408 if (np
->flags
& NIU_FLAGS_MCAST
)
4409 val
|= XMAC_CONFIG_HASH_FILTER_EN
;
4410 if (np
->flags
& NIU_FLAGS_PROMISC
)
4411 val
|= XMAC_CONFIG_PROMISCUOUS
;
4414 val
|= XMAC_CONFIG_RX_MAC_ENABLE
;
4416 val
&= ~XMAC_CONFIG_RX_MAC_ENABLE
;
4417 nw64_mac(XMAC_CONFIG
, val
);
4420 static void niu_enable_rx_bmac(struct niu
*np
, int on
)
4422 u64 val
= nr64_mac(BRXMAC_CONFIG
);
4424 val
&= ~(BRXMAC_CONFIG_HASH_FILT_EN
|
4425 BRXMAC_CONFIG_PROMISC
);
4427 if (np
->flags
& NIU_FLAGS_MCAST
)
4428 val
|= BRXMAC_CONFIG_HASH_FILT_EN
;
4429 if (np
->flags
& NIU_FLAGS_PROMISC
)
4430 val
|= BRXMAC_CONFIG_PROMISC
;
4433 val
|= BRXMAC_CONFIG_ENABLE
;
4435 val
&= ~BRXMAC_CONFIG_ENABLE
;
4436 nw64_mac(BRXMAC_CONFIG
, val
);
4439 static void niu_enable_rx_mac(struct niu
*np
, int on
)
4441 if (np
->flags
& NIU_FLAGS_XMAC
)
4442 niu_enable_rx_xmac(np
, on
);
4444 niu_enable_rx_bmac(np
, on
);
4447 static int niu_init_mac(struct niu
*np
)
4452 err
= niu_init_pcs(np
);
4456 err
= niu_reset_tx_mac(np
);
4459 niu_init_tx_mac(np
);
4460 err
= niu_reset_rx_mac(np
);
4463 niu_init_rx_mac(np
);
4465 /* This looks hookey but the RX MAC reset we just did will
4466 * undo some of the state we setup in niu_init_tx_mac() so we
4467 * have to call it again. In particular, the RX MAC reset will
4468 * set the XMAC_MAX register back to it's default value.
4470 niu_init_tx_mac(np
);
4471 niu_enable_tx_mac(np
, 1);
4473 niu_enable_rx_mac(np
, 1);
4478 static void niu_stop_one_tx_channel(struct niu
*np
, struct tx_ring_info
*rp
)
4480 (void) niu_tx_channel_stop(np
, rp
->tx_channel
);
4483 static void niu_stop_tx_channels(struct niu
*np
)
4487 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
4488 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
4490 niu_stop_one_tx_channel(np
, rp
);
4494 static void niu_reset_one_tx_channel(struct niu
*np
, struct tx_ring_info
*rp
)
4496 (void) niu_tx_channel_reset(np
, rp
->tx_channel
);
4499 static void niu_reset_tx_channels(struct niu
*np
)
4503 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
4504 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
4506 niu_reset_one_tx_channel(np
, rp
);
4510 static void niu_stop_one_rx_channel(struct niu
*np
, struct rx_ring_info
*rp
)
4512 (void) niu_enable_rx_channel(np
, rp
->rx_channel
, 0);
4515 static void niu_stop_rx_channels(struct niu
*np
)
4519 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
4520 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
4522 niu_stop_one_rx_channel(np
, rp
);
4526 static void niu_reset_one_rx_channel(struct niu
*np
, struct rx_ring_info
*rp
)
4528 int channel
= rp
->rx_channel
;
4530 (void) niu_rx_channel_reset(np
, channel
);
4531 nw64(RX_DMA_ENT_MSK(channel
), RX_DMA_ENT_MSK_ALL
);
4532 nw64(RX_DMA_CTL_STAT(channel
), 0);
4533 (void) niu_enable_rx_channel(np
, channel
, 0);
4536 static void niu_reset_rx_channels(struct niu
*np
)
4540 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
4541 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
4543 niu_reset_one_rx_channel(np
, rp
);
4547 static void niu_disable_ipp(struct niu
*np
)
4552 rd
= nr64_ipp(IPP_DFIFO_RD_PTR
);
4553 wr
= nr64_ipp(IPP_DFIFO_WR_PTR
);
4555 while (--limit
>= 0 && (rd
!= wr
)) {
4556 rd
= nr64_ipp(IPP_DFIFO_RD_PTR
);
4557 wr
= nr64_ipp(IPP_DFIFO_WR_PTR
);
4560 (rd
!= 0 && wr
!= 1)) {
4561 dev_err(np
->device
, PFX
"%s: IPP would not quiesce, "
4562 "rd_ptr[%llx] wr_ptr[%llx]\n",
4564 (unsigned long long) nr64_ipp(IPP_DFIFO_RD_PTR
),
4565 (unsigned long long) nr64_ipp(IPP_DFIFO_WR_PTR
));
4568 val
= nr64_ipp(IPP_CFIG
);
4569 val
&= ~(IPP_CFIG_IPP_ENABLE
|
4570 IPP_CFIG_DFIFO_ECC_EN
|
4571 IPP_CFIG_DROP_BAD_CRC
|
4573 nw64_ipp(IPP_CFIG
, val
);
4575 (void) niu_ipp_reset(np
);
4578 static int niu_init_hw(struct niu
*np
)
4582 niudbg(IFUP
, "%s: Initialize TXC\n", np
->dev
->name
);
4583 niu_txc_enable_port(np
, 1);
4584 niu_txc_port_dma_enable(np
, 1);
4585 niu_txc_set_imask(np
, 0);
4587 niudbg(IFUP
, "%s: Initialize TX channels\n", np
->dev
->name
);
4588 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
4589 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
4591 err
= niu_init_one_tx_channel(np
, rp
);
4596 niudbg(IFUP
, "%s: Initialize RX channels\n", np
->dev
->name
);
4597 err
= niu_init_rx_channels(np
);
4599 goto out_uninit_tx_channels
;
4601 niudbg(IFUP
, "%s: Initialize classifier\n", np
->dev
->name
);
4602 err
= niu_init_classifier_hw(np
);
4604 goto out_uninit_rx_channels
;
4606 niudbg(IFUP
, "%s: Initialize ZCP\n", np
->dev
->name
);
4607 err
= niu_init_zcp(np
);
4609 goto out_uninit_rx_channels
;
4611 niudbg(IFUP
, "%s: Initialize IPP\n", np
->dev
->name
);
4612 err
= niu_init_ipp(np
);
4614 goto out_uninit_rx_channels
;
4616 niudbg(IFUP
, "%s: Initialize MAC\n", np
->dev
->name
);
4617 err
= niu_init_mac(np
);
4619 goto out_uninit_ipp
;
4624 niudbg(IFUP
, "%s: Uninit IPP\n", np
->dev
->name
);
4625 niu_disable_ipp(np
);
4627 out_uninit_rx_channels
:
4628 niudbg(IFUP
, "%s: Uninit RX channels\n", np
->dev
->name
);
4629 niu_stop_rx_channels(np
);
4630 niu_reset_rx_channels(np
);
4632 out_uninit_tx_channels
:
4633 niudbg(IFUP
, "%s: Uninit TX channels\n", np
->dev
->name
);
4634 niu_stop_tx_channels(np
);
4635 niu_reset_tx_channels(np
);
4640 static void niu_stop_hw(struct niu
*np
)
4642 niudbg(IFDOWN
, "%s: Disable interrupts\n", np
->dev
->name
);
4643 niu_enable_interrupts(np
, 0);
4645 niudbg(IFDOWN
, "%s: Disable RX MAC\n", np
->dev
->name
);
4646 niu_enable_rx_mac(np
, 0);
4648 niudbg(IFDOWN
, "%s: Disable IPP\n", np
->dev
->name
);
4649 niu_disable_ipp(np
);
4651 niudbg(IFDOWN
, "%s: Stop TX channels\n", np
->dev
->name
);
4652 niu_stop_tx_channels(np
);
4654 niudbg(IFDOWN
, "%s: Stop RX channels\n", np
->dev
->name
);
4655 niu_stop_rx_channels(np
);
4657 niudbg(IFDOWN
, "%s: Reset TX channels\n", np
->dev
->name
);
4658 niu_reset_tx_channels(np
);
4660 niudbg(IFDOWN
, "%s: Reset RX channels\n", np
->dev
->name
);
4661 niu_reset_rx_channels(np
);
4664 static int niu_request_irq(struct niu
*np
)
4669 for (i
= 0; i
< np
->num_ldg
; i
++) {
4670 struct niu_ldg
*lp
= &np
->ldg
[i
];
4672 err
= request_irq(lp
->irq
, niu_interrupt
,
4673 IRQF_SHARED
| IRQF_SAMPLE_RANDOM
,
4683 for (j
= 0; j
< i
; j
++) {
4684 struct niu_ldg
*lp
= &np
->ldg
[j
];
4686 free_irq(lp
->irq
, lp
);
4691 static void niu_free_irq(struct niu
*np
)
4695 for (i
= 0; i
< np
->num_ldg
; i
++) {
4696 struct niu_ldg
*lp
= &np
->ldg
[i
];
4698 free_irq(lp
->irq
, lp
);
4702 static void niu_enable_napi(struct niu
*np
)
4706 for (i
= 0; i
< np
->num_ldg
; i
++)
4707 napi_enable(&np
->ldg
[i
].napi
);
4710 static void niu_disable_napi(struct niu
*np
)
4714 for (i
= 0; i
< np
->num_ldg
; i
++)
4715 napi_disable(&np
->ldg
[i
].napi
);
4718 static int niu_open(struct net_device
*dev
)
4720 struct niu
*np
= netdev_priv(dev
);
4723 netif_carrier_off(dev
);
4725 err
= niu_alloc_channels(np
);
4729 err
= niu_enable_interrupts(np
, 0);
4731 goto out_free_channels
;
4733 err
= niu_request_irq(np
);
4735 goto out_free_channels
;
4737 niu_enable_napi(np
);
4739 spin_lock_irq(&np
->lock
);
4741 err
= niu_init_hw(np
);
4743 init_timer(&np
->timer
);
4744 np
->timer
.expires
= jiffies
+ HZ
;
4745 np
->timer
.data
= (unsigned long) np
;
4746 np
->timer
.function
= niu_timer
;
4748 err
= niu_enable_interrupts(np
, 1);
4753 spin_unlock_irq(&np
->lock
);
4756 niu_disable_napi(np
);
4760 netif_start_queue(dev
);
4762 if (np
->link_config
.loopback_mode
!= LOOPBACK_DISABLED
)
4763 netif_carrier_on(dev
);
4765 add_timer(&np
->timer
);
4773 niu_free_channels(np
);
4779 static void niu_full_shutdown(struct niu
*np
, struct net_device
*dev
)
4781 cancel_work_sync(&np
->reset_task
);
4783 niu_disable_napi(np
);
4784 netif_stop_queue(dev
);
4786 del_timer_sync(&np
->timer
);
4788 spin_lock_irq(&np
->lock
);
4792 spin_unlock_irq(&np
->lock
);
4795 static int niu_close(struct net_device
*dev
)
4797 struct niu
*np
= netdev_priv(dev
);
4799 niu_full_shutdown(np
, dev
);
4803 niu_free_channels(np
);
4805 niu_handle_led(np
, 0);
4810 static void niu_sync_xmac_stats(struct niu
*np
)
4812 struct niu_xmac_stats
*mp
= &np
->mac_stats
.xmac
;
4814 mp
->tx_frames
+= nr64_mac(TXMAC_FRM_CNT
);
4815 mp
->tx_bytes
+= nr64_mac(TXMAC_BYTE_CNT
);
4817 mp
->rx_link_faults
+= nr64_mac(LINK_FAULT_CNT
);
4818 mp
->rx_align_errors
+= nr64_mac(RXMAC_ALIGN_ERR_CNT
);
4819 mp
->rx_frags
+= nr64_mac(RXMAC_FRAG_CNT
);
4820 mp
->rx_mcasts
+= nr64_mac(RXMAC_MC_FRM_CNT
);
4821 mp
->rx_bcasts
+= nr64_mac(RXMAC_BC_FRM_CNT
);
4822 mp
->rx_hist_cnt1
+= nr64_mac(RXMAC_HIST_CNT1
);
4823 mp
->rx_hist_cnt2
+= nr64_mac(RXMAC_HIST_CNT2
);
4824 mp
->rx_hist_cnt3
+= nr64_mac(RXMAC_HIST_CNT3
);
4825 mp
->rx_hist_cnt4
+= nr64_mac(RXMAC_HIST_CNT4
);
4826 mp
->rx_hist_cnt5
+= nr64_mac(RXMAC_HIST_CNT5
);
4827 mp
->rx_hist_cnt6
+= nr64_mac(RXMAC_HIST_CNT6
);
4828 mp
->rx_hist_cnt7
+= nr64_mac(RXMAC_HIST_CNT7
);
4829 mp
->rx_octets
+= nr64_mac(RXMAC_BT_CNT
);
4830 mp
->rx_code_violations
+= nr64_mac(RXMAC_CD_VIO_CNT
);
4831 mp
->rx_len_errors
+= nr64_mac(RXMAC_MPSZER_CNT
);
4832 mp
->rx_crc_errors
+= nr64_mac(RXMAC_CRC_ER_CNT
);
4835 static void niu_sync_bmac_stats(struct niu
*np
)
4837 struct niu_bmac_stats
*mp
= &np
->mac_stats
.bmac
;
4839 mp
->tx_bytes
+= nr64_mac(BTXMAC_BYTE_CNT
);
4840 mp
->tx_frames
+= nr64_mac(BTXMAC_FRM_CNT
);
4842 mp
->rx_frames
+= nr64_mac(BRXMAC_FRAME_CNT
);
4843 mp
->rx_align_errors
+= nr64_mac(BRXMAC_ALIGN_ERR_CNT
);
4844 mp
->rx_crc_errors
+= nr64_mac(BRXMAC_ALIGN_ERR_CNT
);
4845 mp
->rx_len_errors
+= nr64_mac(BRXMAC_CODE_VIOL_ERR_CNT
);
4848 static void niu_sync_mac_stats(struct niu
*np
)
4850 if (np
->flags
& NIU_FLAGS_XMAC
)
4851 niu_sync_xmac_stats(np
);
4853 niu_sync_bmac_stats(np
);
4856 static void niu_get_rx_stats(struct niu
*np
)
4858 unsigned long pkts
, dropped
, errors
, bytes
;
4861 pkts
= dropped
= errors
= bytes
= 0;
4862 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
4863 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
4865 pkts
+= rp
->rx_packets
;
4866 bytes
+= rp
->rx_bytes
;
4867 dropped
+= rp
->rx_dropped
;
4868 errors
+= rp
->rx_errors
;
4870 np
->net_stats
.rx_packets
= pkts
;
4871 np
->net_stats
.rx_bytes
= bytes
;
4872 np
->net_stats
.rx_dropped
= dropped
;
4873 np
->net_stats
.rx_errors
= errors
;
4876 static void niu_get_tx_stats(struct niu
*np
)
4878 unsigned long pkts
, errors
, bytes
;
4881 pkts
= errors
= bytes
= 0;
4882 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
4883 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
4885 pkts
+= rp
->tx_packets
;
4886 bytes
+= rp
->tx_bytes
;
4887 errors
+= rp
->tx_errors
;
4889 np
->net_stats
.tx_packets
= pkts
;
4890 np
->net_stats
.tx_bytes
= bytes
;
4891 np
->net_stats
.tx_errors
= errors
;
4894 static struct net_device_stats
*niu_get_stats(struct net_device
*dev
)
4896 struct niu
*np
= netdev_priv(dev
);
4898 niu_get_rx_stats(np
);
4899 niu_get_tx_stats(np
);
4901 return &np
->net_stats
;
4904 static void niu_load_hash_xmac(struct niu
*np
, u16
*hash
)
4908 for (i
= 0; i
< 16; i
++)
4909 nw64_mac(XMAC_HASH_TBL(i
), hash
[i
]);
4912 static void niu_load_hash_bmac(struct niu
*np
, u16
*hash
)
4916 for (i
= 0; i
< 16; i
++)
4917 nw64_mac(BMAC_HASH_TBL(i
), hash
[i
]);
4920 static void niu_load_hash(struct niu
*np
, u16
*hash
)
4922 if (np
->flags
& NIU_FLAGS_XMAC
)
4923 niu_load_hash_xmac(np
, hash
);
4925 niu_load_hash_bmac(np
, hash
);
4928 static void niu_set_rx_mode(struct net_device
*dev
)
4930 struct niu
*np
= netdev_priv(dev
);
4931 int i
, alt_cnt
, err
;
4932 struct dev_addr_list
*addr
;
4933 unsigned long flags
;
4934 u16 hash
[16] = { 0, };
4936 spin_lock_irqsave(&np
->lock
, flags
);
4937 niu_enable_rx_mac(np
, 0);
4939 np
->flags
&= ~(NIU_FLAGS_MCAST
| NIU_FLAGS_PROMISC
);
4940 if (dev
->flags
& IFF_PROMISC
)
4941 np
->flags
|= NIU_FLAGS_PROMISC
;
4942 if ((dev
->flags
& IFF_ALLMULTI
) || (dev
->mc_count
> 0))
4943 np
->flags
|= NIU_FLAGS_MCAST
;
4945 alt_cnt
= dev
->uc_count
;
4946 if (alt_cnt
> niu_num_alt_addr(np
)) {
4948 np
->flags
|= NIU_FLAGS_PROMISC
;
4954 for (addr
= dev
->uc_list
; addr
; addr
= addr
->next
) {
4955 err
= niu_set_alt_mac(np
, index
,
4958 printk(KERN_WARNING PFX
"%s: Error %d "
4959 "adding alt mac %d\n",
4960 dev
->name
, err
, index
);
4961 err
= niu_enable_alt_mac(np
, index
, 1);
4963 printk(KERN_WARNING PFX
"%s: Error %d "
4964 "enabling alt mac %d\n",
4965 dev
->name
, err
, index
);
4970 for (i
= 0; i
< niu_num_alt_addr(np
); i
++) {
4971 err
= niu_enable_alt_mac(np
, i
, 0);
4973 printk(KERN_WARNING PFX
"%s: Error %d "
4974 "disabling alt mac %d\n",
4978 if (dev
->flags
& IFF_ALLMULTI
) {
4979 for (i
= 0; i
< 16; i
++)
4981 } else if (dev
->mc_count
> 0) {
4982 for (addr
= dev
->mc_list
; addr
; addr
= addr
->next
) {
4983 u32 crc
= ether_crc_le(ETH_ALEN
, addr
->da_addr
);
4986 hash
[crc
>> 4] |= (1 << (15 - (crc
& 0xf)));
4990 if (np
->flags
& NIU_FLAGS_MCAST
)
4991 niu_load_hash(np
, hash
);
4993 niu_enable_rx_mac(np
, 1);
4994 spin_unlock_irqrestore(&np
->lock
, flags
);
4997 static int niu_set_mac_addr(struct net_device
*dev
, void *p
)
4999 struct niu
*np
= netdev_priv(dev
);
5000 struct sockaddr
*addr
= p
;
5001 unsigned long flags
;
5003 if (!is_valid_ether_addr(addr
->sa_data
))
5006 memcpy(dev
->dev_addr
, addr
->sa_data
, ETH_ALEN
);
5008 if (!netif_running(dev
))
5011 spin_lock_irqsave(&np
->lock
, flags
);
5012 niu_enable_rx_mac(np
, 0);
5013 niu_set_primary_mac(np
, dev
->dev_addr
);
5014 niu_enable_rx_mac(np
, 1);
5015 spin_unlock_irqrestore(&np
->lock
, flags
);
5020 static int niu_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
5025 static void niu_netif_stop(struct niu
*np
)
5027 np
->dev
->trans_start
= jiffies
; /* prevent tx timeout */
5029 niu_disable_napi(np
);
5031 netif_tx_disable(np
->dev
);
5034 static void niu_netif_start(struct niu
*np
)
5036 /* NOTE: unconditional netif_wake_queue is only appropriate
5037 * so long as all callers are assured to have free tx slots
5038 * (such as after niu_init_hw).
5040 netif_wake_queue(np
->dev
);
5042 niu_enable_napi(np
);
5044 niu_enable_interrupts(np
, 1);
5047 static void niu_reset_task(struct work_struct
*work
)
5049 struct niu
*np
= container_of(work
, struct niu
, reset_task
);
5050 unsigned long flags
;
5053 spin_lock_irqsave(&np
->lock
, flags
);
5054 if (!netif_running(np
->dev
)) {
5055 spin_unlock_irqrestore(&np
->lock
, flags
);
5059 spin_unlock_irqrestore(&np
->lock
, flags
);
5061 del_timer_sync(&np
->timer
);
5065 spin_lock_irqsave(&np
->lock
, flags
);
5069 err
= niu_init_hw(np
);
5071 np
->timer
.expires
= jiffies
+ HZ
;
5072 add_timer(&np
->timer
);
5073 niu_netif_start(np
);
5076 spin_unlock_irqrestore(&np
->lock
, flags
);
5079 static void niu_tx_timeout(struct net_device
*dev
)
5081 struct niu
*np
= netdev_priv(dev
);
5083 dev_err(np
->device
, PFX
"%s: Transmit timed out, resetting\n",
5086 schedule_work(&np
->reset_task
);
5089 static void niu_set_txd(struct tx_ring_info
*rp
, int index
,
5090 u64 mapping
, u64 len
, u64 mark
,
5093 __le64
*desc
= &rp
->descr
[index
];
5095 *desc
= cpu_to_le64(mark
|
5096 (n_frags
<< TX_DESC_NUM_PTR_SHIFT
) |
5097 (len
<< TX_DESC_TR_LEN_SHIFT
) |
5098 (mapping
& TX_DESC_SAD
));
5101 static u64
niu_compute_tx_flags(struct sk_buff
*skb
, struct ethhdr
*ehdr
,
5102 u64 pad_bytes
, u64 len
)
5104 u16 eth_proto
, eth_proto_inner
;
5105 u64 csum_bits
, l3off
, ihl
, ret
;
5109 eth_proto
= be16_to_cpu(ehdr
->h_proto
);
5110 eth_proto_inner
= eth_proto
;
5111 if (eth_proto
== ETH_P_8021Q
) {
5112 struct vlan_ethhdr
*vp
= (struct vlan_ethhdr
*) ehdr
;
5113 __be16 val
= vp
->h_vlan_encapsulated_proto
;
5115 eth_proto_inner
= be16_to_cpu(val
);
5119 switch (skb
->protocol
) {
5120 case __constant_htons(ETH_P_IP
):
5121 ip_proto
= ip_hdr(skb
)->protocol
;
5122 ihl
= ip_hdr(skb
)->ihl
;
5124 case __constant_htons(ETH_P_IPV6
):
5125 ip_proto
= ipv6_hdr(skb
)->nexthdr
;
5134 csum_bits
= TXHDR_CSUM_NONE
;
5135 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
5138 csum_bits
= (ip_proto
== IPPROTO_TCP
?
5140 (ip_proto
== IPPROTO_UDP
?
5141 TXHDR_CSUM_UDP
: TXHDR_CSUM_SCTP
));
5143 start
= skb_transport_offset(skb
) -
5144 (pad_bytes
+ sizeof(struct tx_pkt_hdr
));
5145 stuff
= start
+ skb
->csum_offset
;
5147 csum_bits
|= (start
/ 2) << TXHDR_L4START_SHIFT
;
5148 csum_bits
|= (stuff
/ 2) << TXHDR_L4STUFF_SHIFT
;
5151 l3off
= skb_network_offset(skb
) -
5152 (pad_bytes
+ sizeof(struct tx_pkt_hdr
));
5154 ret
= (((pad_bytes
/ 2) << TXHDR_PAD_SHIFT
) |
5155 (len
<< TXHDR_LEN_SHIFT
) |
5156 ((l3off
/ 2) << TXHDR_L3START_SHIFT
) |
5157 (ihl
<< TXHDR_IHL_SHIFT
) |
5158 ((eth_proto_inner
< 1536) ? TXHDR_LLC
: 0) |
5159 ((eth_proto
== ETH_P_8021Q
) ? TXHDR_VLAN
: 0) |
5160 (ipv6
? TXHDR_IP_VER
: 0) |
5166 static struct tx_ring_info
*tx_ring_select(struct niu
*np
, struct sk_buff
*skb
)
5168 return &np
->tx_rings
[0];
5171 static int niu_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
5173 struct niu
*np
= netdev_priv(dev
);
5174 unsigned long align
, headroom
;
5175 struct tx_ring_info
*rp
;
5176 struct tx_pkt_hdr
*tp
;
5177 unsigned int len
, nfg
;
5178 struct ethhdr
*ehdr
;
5182 rp
= tx_ring_select(np
, skb
);
5184 if (niu_tx_avail(rp
) <= (skb_shinfo(skb
)->nr_frags
+ 1)) {
5185 netif_stop_queue(dev
);
5186 dev_err(np
->device
, PFX
"%s: BUG! Tx ring full when "
5187 "queue awake!\n", dev
->name
);
5189 return NETDEV_TX_BUSY
;
5192 if (skb
->len
< ETH_ZLEN
) {
5193 unsigned int pad_bytes
= ETH_ZLEN
- skb
->len
;
5195 if (skb_pad(skb
, pad_bytes
))
5197 skb_put(skb
, pad_bytes
);
5200 len
= sizeof(struct tx_pkt_hdr
) + 15;
5201 if (skb_headroom(skb
) < len
) {
5202 struct sk_buff
*skb_new
;
5204 skb_new
= skb_realloc_headroom(skb
, len
);
5214 align
= ((unsigned long) skb
->data
& (16 - 1));
5215 headroom
= align
+ sizeof(struct tx_pkt_hdr
);
5217 ehdr
= (struct ethhdr
*) skb
->data
;
5218 tp
= (struct tx_pkt_hdr
*) skb_push(skb
, headroom
);
5220 len
= skb
->len
- sizeof(struct tx_pkt_hdr
);
5221 tp
->flags
= cpu_to_le64(niu_compute_tx_flags(skb
, ehdr
, align
, len
));
5224 len
= skb_headlen(skb
);
5225 mapping
= np
->ops
->map_single(np
->device
, skb
->data
,
5226 len
, DMA_TO_DEVICE
);
5230 rp
->tx_buffs
[prod
].skb
= skb
;
5231 rp
->tx_buffs
[prod
].mapping
= mapping
;
5234 if (++rp
->mark_counter
== rp
->mark_freq
) {
5235 rp
->mark_counter
= 0;
5236 mrk
|= TX_DESC_MARK
;
5241 nfg
= skb_shinfo(skb
)->nr_frags
;
5243 tlen
-= MAX_TX_DESC_LEN
;
5248 unsigned int this_len
= len
;
5250 if (this_len
> MAX_TX_DESC_LEN
)
5251 this_len
= MAX_TX_DESC_LEN
;
5253 niu_set_txd(rp
, prod
, mapping
, this_len
, mrk
, nfg
);
5256 prod
= NEXT_TX(rp
, prod
);
5257 mapping
+= this_len
;
5261 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
5262 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
5265 mapping
= np
->ops
->map_page(np
->device
, frag
->page
,
5266 frag
->page_offset
, len
,
5269 rp
->tx_buffs
[prod
].skb
= NULL
;
5270 rp
->tx_buffs
[prod
].mapping
= mapping
;
5272 niu_set_txd(rp
, prod
, mapping
, len
, 0, 0);
5274 prod
= NEXT_TX(rp
, prod
);
5277 if (prod
< rp
->prod
)
5278 rp
->wrap_bit
^= TX_RING_KICK_WRAP
;
5281 nw64(TX_RING_KICK(rp
->tx_channel
), rp
->wrap_bit
| (prod
<< 3));
5283 if (unlikely(niu_tx_avail(rp
) <= (MAX_SKB_FRAGS
+ 1))) {
5284 netif_stop_queue(dev
);
5285 if (niu_tx_avail(rp
) > NIU_TX_WAKEUP_THRESH(rp
))
5286 netif_wake_queue(dev
);
5289 dev
->trans_start
= jiffies
;
5292 return NETDEV_TX_OK
;
5300 static int niu_change_mtu(struct net_device
*dev
, int new_mtu
)
5302 struct niu
*np
= netdev_priv(dev
);
5303 int err
, orig_jumbo
, new_jumbo
;
5305 if (new_mtu
< 68 || new_mtu
> NIU_MAX_MTU
)
5308 orig_jumbo
= (dev
->mtu
> ETH_DATA_LEN
);
5309 new_jumbo
= (new_mtu
> ETH_DATA_LEN
);
5313 if (!netif_running(dev
) ||
5314 (orig_jumbo
== new_jumbo
))
5317 niu_full_shutdown(np
, dev
);
5319 niu_free_channels(np
);
5321 niu_enable_napi(np
);
5323 err
= niu_alloc_channels(np
);
5327 spin_lock_irq(&np
->lock
);
5329 err
= niu_init_hw(np
);
5331 init_timer(&np
->timer
);
5332 np
->timer
.expires
= jiffies
+ HZ
;
5333 np
->timer
.data
= (unsigned long) np
;
5334 np
->timer
.function
= niu_timer
;
5336 err
= niu_enable_interrupts(np
, 1);
5341 spin_unlock_irq(&np
->lock
);
5344 netif_start_queue(dev
);
5345 if (np
->link_config
.loopback_mode
!= LOOPBACK_DISABLED
)
5346 netif_carrier_on(dev
);
5348 add_timer(&np
->timer
);
5354 static void niu_get_drvinfo(struct net_device
*dev
,
5355 struct ethtool_drvinfo
*info
)
5357 struct niu
*np
= netdev_priv(dev
);
5358 struct niu_vpd
*vpd
= &np
->vpd
;
5360 strcpy(info
->driver
, DRV_MODULE_NAME
);
5361 strcpy(info
->version
, DRV_MODULE_VERSION
);
5362 sprintf(info
->fw_version
, "%d.%d",
5363 vpd
->fcode_major
, vpd
->fcode_minor
);
5364 if (np
->parent
->plat_type
!= PLAT_TYPE_NIU
)
5365 strcpy(info
->bus_info
, pci_name(np
->pdev
));
5368 static int niu_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
5370 struct niu
*np
= netdev_priv(dev
);
5371 struct niu_link_config
*lp
;
5373 lp
= &np
->link_config
;
5375 memset(cmd
, 0, sizeof(*cmd
));
5376 cmd
->phy_address
= np
->phy_addr
;
5377 cmd
->supported
= lp
->supported
;
5378 cmd
->advertising
= lp
->advertising
;
5379 cmd
->autoneg
= lp
->autoneg
;
5380 cmd
->speed
= lp
->active_speed
;
5381 cmd
->duplex
= lp
->active_duplex
;
5386 static int niu_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
5391 static u32
niu_get_msglevel(struct net_device
*dev
)
5393 struct niu
*np
= netdev_priv(dev
);
5394 return np
->msg_enable
;
5397 static void niu_set_msglevel(struct net_device
*dev
, u32 value
)
5399 struct niu
*np
= netdev_priv(dev
);
5400 np
->msg_enable
= value
;
5403 static int niu_get_eeprom_len(struct net_device
*dev
)
5405 struct niu
*np
= netdev_priv(dev
);
5407 return np
->eeprom_len
;
5410 static int niu_get_eeprom(struct net_device
*dev
,
5411 struct ethtool_eeprom
*eeprom
, u8
*data
)
5413 struct niu
*np
= netdev_priv(dev
);
5414 u32 offset
, len
, val
;
5416 offset
= eeprom
->offset
;
5419 if (offset
+ len
< offset
)
5421 if (offset
>= np
->eeprom_len
)
5423 if (offset
+ len
> np
->eeprom_len
)
5424 len
= eeprom
->len
= np
->eeprom_len
- offset
;
5427 u32 b_offset
, b_count
;
5429 b_offset
= offset
& 3;
5430 b_count
= 4 - b_offset
;
5434 val
= nr64(ESPC_NCR((offset
- b_offset
) / 4));
5435 memcpy(data
, ((char *)&val
) + b_offset
, b_count
);
5441 val
= nr64(ESPC_NCR(offset
/ 4));
5442 memcpy(data
, &val
, 4);
5448 val
= nr64(ESPC_NCR(offset
/ 4));
5449 memcpy(data
, &val
, len
);
5454 static const struct {
5455 const char string
[ETH_GSTRING_LEN
];
5456 } niu_xmac_stat_keys
[] = {
5459 { "tx_fifo_errors" },
5460 { "tx_overflow_errors" },
5461 { "tx_max_pkt_size_errors" },
5462 { "tx_underflow_errors" },
5463 { "rx_local_faults" },
5464 { "rx_remote_faults" },
5465 { "rx_link_faults" },
5466 { "rx_align_errors" },
5478 { "rx_code_violations" },
5479 { "rx_len_errors" },
5480 { "rx_crc_errors" },
5481 { "rx_underflows" },
5483 { "pause_off_state" },
5484 { "pause_on_state" },
5485 { "pause_received" },
5488 #define NUM_XMAC_STAT_KEYS ARRAY_SIZE(niu_xmac_stat_keys)
5490 static const struct {
5491 const char string
[ETH_GSTRING_LEN
];
5492 } niu_bmac_stat_keys
[] = {
5493 { "tx_underflow_errors" },
5494 { "tx_max_pkt_size_errors" },
5499 { "rx_align_errors" },
5500 { "rx_crc_errors" },
5501 { "rx_len_errors" },
5502 { "pause_off_state" },
5503 { "pause_on_state" },
5504 { "pause_received" },
5507 #define NUM_BMAC_STAT_KEYS ARRAY_SIZE(niu_bmac_stat_keys)
5509 static const struct {
5510 const char string
[ETH_GSTRING_LEN
];
5511 } niu_rxchan_stat_keys
[] = {
5519 #define NUM_RXCHAN_STAT_KEYS ARRAY_SIZE(niu_rxchan_stat_keys)
5521 static const struct {
5522 const char string
[ETH_GSTRING_LEN
];
5523 } niu_txchan_stat_keys
[] = {
5530 #define NUM_TXCHAN_STAT_KEYS ARRAY_SIZE(niu_txchan_stat_keys)
5532 static void niu_get_strings(struct net_device
*dev
, u32 stringset
, u8
*data
)
5534 struct niu
*np
= netdev_priv(dev
);
5537 if (stringset
!= ETH_SS_STATS
)
5540 if (np
->flags
& NIU_FLAGS_XMAC
) {
5541 memcpy(data
, niu_xmac_stat_keys
,
5542 sizeof(niu_xmac_stat_keys
));
5543 data
+= sizeof(niu_xmac_stat_keys
);
5545 memcpy(data
, niu_bmac_stat_keys
,
5546 sizeof(niu_bmac_stat_keys
));
5547 data
+= sizeof(niu_bmac_stat_keys
);
5549 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
5550 memcpy(data
, niu_rxchan_stat_keys
,
5551 sizeof(niu_rxchan_stat_keys
));
5552 data
+= sizeof(niu_rxchan_stat_keys
);
5554 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
5555 memcpy(data
, niu_txchan_stat_keys
,
5556 sizeof(niu_txchan_stat_keys
));
5557 data
+= sizeof(niu_txchan_stat_keys
);
5561 static int niu_get_stats_count(struct net_device
*dev
)
5563 struct niu
*np
= netdev_priv(dev
);
5565 return ((np
->flags
& NIU_FLAGS_XMAC
?
5566 NUM_XMAC_STAT_KEYS
:
5567 NUM_BMAC_STAT_KEYS
) +
5568 (np
->num_rx_rings
* NUM_RXCHAN_STAT_KEYS
) +
5569 (np
->num_tx_rings
* NUM_TXCHAN_STAT_KEYS
));
5572 static void niu_get_ethtool_stats(struct net_device
*dev
,
5573 struct ethtool_stats
*stats
, u64
*data
)
5575 struct niu
*np
= netdev_priv(dev
);
5578 niu_sync_mac_stats(np
);
5579 if (np
->flags
& NIU_FLAGS_XMAC
) {
5580 memcpy(data
, &np
->mac_stats
.xmac
,
5581 sizeof(struct niu_xmac_stats
));
5582 data
+= (sizeof(struct niu_xmac_stats
) / sizeof(u64
));
5584 memcpy(data
, &np
->mac_stats
.bmac
,
5585 sizeof(struct niu_bmac_stats
));
5586 data
+= (sizeof(struct niu_bmac_stats
) / sizeof(u64
));
5588 for (i
= 0; i
< np
->num_rx_rings
; i
++) {
5589 struct rx_ring_info
*rp
= &np
->rx_rings
[i
];
5591 data
[0] = rp
->rx_channel
;
5592 data
[1] = rp
->rx_packets
;
5593 data
[2] = rp
->rx_bytes
;
5594 data
[3] = rp
->rx_dropped
;
5595 data
[4] = rp
->rx_errors
;
5598 for (i
= 0; i
< np
->num_tx_rings
; i
++) {
5599 struct tx_ring_info
*rp
= &np
->tx_rings
[i
];
5601 data
[0] = rp
->tx_channel
;
5602 data
[1] = rp
->tx_packets
;
5603 data
[2] = rp
->tx_bytes
;
5604 data
[3] = rp
->tx_errors
;
5609 static u64
niu_led_state_save(struct niu
*np
)
5611 if (np
->flags
& NIU_FLAGS_XMAC
)
5612 return nr64_mac(XMAC_CONFIG
);
5614 return nr64_mac(BMAC_XIF_CONFIG
);
5617 static void niu_led_state_restore(struct niu
*np
, u64 val
)
5619 if (np
->flags
& NIU_FLAGS_XMAC
)
5620 nw64_mac(XMAC_CONFIG
, val
);
5622 nw64_mac(BMAC_XIF_CONFIG
, val
);
5625 static void niu_force_led(struct niu
*np
, int on
)
5629 if (np
->flags
& NIU_FLAGS_XMAC
) {
5631 bit
= XMAC_CONFIG_FORCE_LED_ON
;
5633 reg
= BMAC_XIF_CONFIG
;
5634 bit
= BMAC_XIF_CONFIG_LINK_LED
;
5637 val
= nr64_mac(reg
);
5645 static int niu_phys_id(struct net_device
*dev
, u32 data
)
5647 struct niu
*np
= netdev_priv(dev
);
5651 if (!netif_running(dev
))
5657 orig_led_state
= niu_led_state_save(np
);
5658 for (i
= 0; i
< (data
* 2); i
++) {
5659 int on
= ((i
% 2) == 0);
5661 niu_force_led(np
, on
);
5663 if (msleep_interruptible(500))
5666 niu_led_state_restore(np
, orig_led_state
);
5671 static const struct ethtool_ops niu_ethtool_ops
= {
5672 .get_drvinfo
= niu_get_drvinfo
,
5673 .get_link
= ethtool_op_get_link
,
5674 .get_msglevel
= niu_get_msglevel
,
5675 .set_msglevel
= niu_set_msglevel
,
5676 .get_eeprom_len
= niu_get_eeprom_len
,
5677 .get_eeprom
= niu_get_eeprom
,
5678 .get_settings
= niu_get_settings
,
5679 .set_settings
= niu_set_settings
,
5680 .get_strings
= niu_get_strings
,
5681 .get_stats_count
= niu_get_stats_count
,
5682 .get_ethtool_stats
= niu_get_ethtool_stats
,
5683 .phys_id
= niu_phys_id
,
5686 static int niu_ldg_assign_ldn(struct niu
*np
, struct niu_parent
*parent
,
5689 if (ldg
< NIU_LDG_MIN
|| ldg
> NIU_LDG_MAX
)
5691 if (ldn
< 0 || ldn
> LDN_MAX
)
5694 parent
->ldg_map
[ldn
] = ldg
;
5696 if (np
->parent
->plat_type
== PLAT_TYPE_NIU
) {
5697 /* On N2 NIU, the ldn-->ldg assignments are setup and fixed by
5698 * the firmware, and we're not supposed to change them.
5699 * Validate the mapping, because if it's wrong we probably
5700 * won't get any interrupts and that's painful to debug.
5702 if (nr64(LDG_NUM(ldn
)) != ldg
) {
5703 dev_err(np
->device
, PFX
"Port %u, mis-matched "
5705 "for ldn %d, should be %d is %llu\n",
5707 (unsigned long long) nr64(LDG_NUM(ldn
)));
5711 nw64(LDG_NUM(ldn
), ldg
);
5716 static int niu_set_ldg_timer_res(struct niu
*np
, int res
)
5718 if (res
< 0 || res
> LDG_TIMER_RES_VAL
)
5722 nw64(LDG_TIMER_RES
, res
);
5727 static int niu_set_ldg_sid(struct niu
*np
, int ldg
, int func
, int vector
)
5729 if ((ldg
< NIU_LDG_MIN
|| ldg
> NIU_LDG_MAX
) ||
5730 (func
< 0 || func
> 3) ||
5731 (vector
< 0 || vector
> 0x1f))
5734 nw64(SID(ldg
), (func
<< SID_FUNC_SHIFT
) | vector
);
5739 static int __devinit
niu_pci_eeprom_read(struct niu
*np
, u32 addr
)
5741 u64 frame
, frame_base
= (ESPC_PIO_STAT_READ_START
|
5742 (addr
<< ESPC_PIO_STAT_ADDR_SHIFT
));
5745 if (addr
> (ESPC_PIO_STAT_ADDR
>> ESPC_PIO_STAT_ADDR_SHIFT
))
5749 nw64(ESPC_PIO_STAT
, frame
);
5753 frame
= nr64(ESPC_PIO_STAT
);
5754 if (frame
& ESPC_PIO_STAT_READ_END
)
5757 if (!(frame
& ESPC_PIO_STAT_READ_END
)) {
5758 dev_err(np
->device
, PFX
"EEPROM read timeout frame[%llx]\n",
5759 (unsigned long long) frame
);
5764 nw64(ESPC_PIO_STAT
, frame
);
5768 frame
= nr64(ESPC_PIO_STAT
);
5769 if (frame
& ESPC_PIO_STAT_READ_END
)
5772 if (!(frame
& ESPC_PIO_STAT_READ_END
)) {
5773 dev_err(np
->device
, PFX
"EEPROM read timeout frame[%llx]\n",
5774 (unsigned long long) frame
);
5778 frame
= nr64(ESPC_PIO_STAT
);
5779 return (frame
& ESPC_PIO_STAT_DATA
) >> ESPC_PIO_STAT_DATA_SHIFT
;
5782 static int __devinit
niu_pci_eeprom_read16(struct niu
*np
, u32 off
)
5784 int err
= niu_pci_eeprom_read(np
, off
);
5790 err
= niu_pci_eeprom_read(np
, off
+ 1);
5793 val
|= (err
& 0xff);
5798 static int __devinit
niu_pci_eeprom_read16_swp(struct niu
*np
, u32 off
)
5800 int err
= niu_pci_eeprom_read(np
, off
);
5807 err
= niu_pci_eeprom_read(np
, off
+ 1);
5811 val
|= (err
& 0xff) << 8;
5816 static int __devinit
niu_pci_vpd_get_propname(struct niu
*np
,
5823 for (i
= 0; i
< namebuf_len
; i
++) {
5824 int err
= niu_pci_eeprom_read(np
, off
+ i
);
5831 if (i
>= namebuf_len
)
5837 static void __devinit
niu_vpd_parse_version(struct niu
*np
)
5839 struct niu_vpd
*vpd
= &np
->vpd
;
5840 int len
= strlen(vpd
->version
) + 1;
5841 const char *s
= vpd
->version
;
5844 for (i
= 0; i
< len
- 5; i
++) {
5845 if (!strncmp(s
+ i
, "FCode ", 5))
5852 sscanf(s
, "%d.%d", &vpd
->fcode_major
, &vpd
->fcode_minor
);
5854 niudbg(PROBE
, "VPD_SCAN: FCODE major(%d) minor(%d)\n",
5855 vpd
->fcode_major
, vpd
->fcode_minor
);
5856 if (vpd
->fcode_major
> NIU_VPD_MIN_MAJOR
||
5857 (vpd
->fcode_major
== NIU_VPD_MIN_MAJOR
&&
5858 vpd
->fcode_minor
>= NIU_VPD_MIN_MINOR
))
5859 np
->flags
|= NIU_FLAGS_VPD_VALID
;
5862 /* ESPC_PIO_EN_ENABLE must be set */
5863 static int __devinit
niu_pci_vpd_scan_props(struct niu
*np
,
5866 unsigned int found_mask
= 0;
5867 #define FOUND_MASK_MODEL 0x00000001
5868 #define FOUND_MASK_BMODEL 0x00000002
5869 #define FOUND_MASK_VERS 0x00000004
5870 #define FOUND_MASK_MAC 0x00000008
5871 #define FOUND_MASK_NMAC 0x00000010
5872 #define FOUND_MASK_PHY 0x00000020
5873 #define FOUND_MASK_ALL 0x0000003f
5875 niudbg(PROBE
, "VPD_SCAN: start[%x] end[%x]\n",
5877 while (start
< end
) {
5878 int len
, err
, instance
, type
, prop_len
;
5883 if (found_mask
== FOUND_MASK_ALL
) {
5884 niu_vpd_parse_version(np
);
5888 err
= niu_pci_eeprom_read(np
, start
+ 2);
5894 instance
= niu_pci_eeprom_read(np
, start
);
5895 type
= niu_pci_eeprom_read(np
, start
+ 3);
5896 prop_len
= niu_pci_eeprom_read(np
, start
+ 4);
5897 err
= niu_pci_vpd_get_propname(np
, start
+ 5, namebuf
, 64);
5903 if (!strcmp(namebuf
, "model")) {
5904 prop_buf
= np
->vpd
.model
;
5905 max_len
= NIU_VPD_MODEL_MAX
;
5906 found_mask
|= FOUND_MASK_MODEL
;
5907 } else if (!strcmp(namebuf
, "board-model")) {
5908 prop_buf
= np
->vpd
.board_model
;
5909 max_len
= NIU_VPD_BD_MODEL_MAX
;
5910 found_mask
|= FOUND_MASK_BMODEL
;
5911 } else if (!strcmp(namebuf
, "version")) {
5912 prop_buf
= np
->vpd
.version
;
5913 max_len
= NIU_VPD_VERSION_MAX
;
5914 found_mask
|= FOUND_MASK_VERS
;
5915 } else if (!strcmp(namebuf
, "local-mac-address")) {
5916 prop_buf
= np
->vpd
.local_mac
;
5918 found_mask
|= FOUND_MASK_MAC
;
5919 } else if (!strcmp(namebuf
, "num-mac-addresses")) {
5920 prop_buf
= &np
->vpd
.mac_num
;
5922 found_mask
|= FOUND_MASK_NMAC
;
5923 } else if (!strcmp(namebuf
, "phy-type")) {
5924 prop_buf
= np
->vpd
.phy_type
;
5925 max_len
= NIU_VPD_PHY_TYPE_MAX
;
5926 found_mask
|= FOUND_MASK_PHY
;
5929 if (max_len
&& prop_len
> max_len
) {
5930 dev_err(np
->device
, PFX
"Property '%s' length (%d) is "
5931 "too long.\n", namebuf
, prop_len
);
5936 u32 off
= start
+ 5 + err
;
5939 niudbg(PROBE
, "VPD_SCAN: Reading in property [%s] "
5940 "len[%d]\n", namebuf
, prop_len
);
5941 for (i
= 0; i
< prop_len
; i
++)
5942 *prop_buf
++ = niu_pci_eeprom_read(np
, off
+ i
);
5951 /* ESPC_PIO_EN_ENABLE must be set */
5952 static void __devinit
niu_pci_vpd_fetch(struct niu
*np
, u32 start
)
5957 err
= niu_pci_eeprom_read16_swp(np
, start
+ 1);
5963 while (start
+ offset
< ESPC_EEPROM_SIZE
) {
5964 u32 here
= start
+ offset
;
5967 err
= niu_pci_eeprom_read(np
, here
);
5971 err
= niu_pci_eeprom_read16_swp(np
, here
+ 1);
5975 here
= start
+ offset
+ 3;
5976 end
= start
+ offset
+ err
;
5980 err
= niu_pci_vpd_scan_props(np
, here
, end
);
5981 if (err
< 0 || err
== 1)
5986 /* ESPC_PIO_EN_ENABLE must be set */
5987 static u32 __devinit
niu_pci_vpd_offset(struct niu
*np
)
5989 u32 start
= 0, end
= ESPC_EEPROM_SIZE
, ret
;
5992 while (start
< end
) {
5995 /* ROM header signature? */
5996 err
= niu_pci_eeprom_read16(np
, start
+ 0);
6000 /* Apply offset to PCI data structure. */
6001 err
= niu_pci_eeprom_read16(np
, start
+ 23);
6006 /* Check for "PCIR" signature. */
6007 err
= niu_pci_eeprom_read16(np
, start
+ 0);
6010 err
= niu_pci_eeprom_read16(np
, start
+ 2);
6014 /* Check for OBP image type. */
6015 err
= niu_pci_eeprom_read(np
, start
+ 20);
6019 err
= niu_pci_eeprom_read(np
, ret
+ 2);
6023 start
= ret
+ (err
* 512);
6027 err
= niu_pci_eeprom_read16_swp(np
, start
+ 8);
6032 err
= niu_pci_eeprom_read(np
, ret
+ 0);
6042 static int __devinit
niu_phy_type_prop_decode(struct niu
*np
,
6043 const char *phy_prop
)
6045 if (!strcmp(phy_prop
, "mif")) {
6046 /* 1G copper, MII */
6047 np
->flags
&= ~(NIU_FLAGS_FIBER
|
6049 np
->mac_xcvr
= MAC_XCVR_MII
;
6050 } else if (!strcmp(phy_prop
, "xgf")) {
6051 /* 10G fiber, XPCS */
6052 np
->flags
|= (NIU_FLAGS_10G
|
6054 np
->mac_xcvr
= MAC_XCVR_XPCS
;
6055 } else if (!strcmp(phy_prop
, "pcs")) {
6057 np
->flags
&= ~NIU_FLAGS_10G
;
6058 np
->flags
|= NIU_FLAGS_FIBER
;
6059 np
->mac_xcvr
= MAC_XCVR_PCS
;
6060 } else if (!strcmp(phy_prop
, "xgc")) {
6061 /* 10G copper, XPCS */
6062 np
->flags
|= NIU_FLAGS_10G
;
6063 np
->flags
&= ~NIU_FLAGS_FIBER
;
6064 np
->mac_xcvr
= MAC_XCVR_XPCS
;
6071 static void __devinit
niu_pci_vpd_validate(struct niu
*np
)
6073 struct net_device
*dev
= np
->dev
;
6074 struct niu_vpd
*vpd
= &np
->vpd
;
6077 if (!is_valid_ether_addr(&vpd
->local_mac
[0])) {
6078 dev_err(np
->device
, PFX
"VPD MAC invalid, "
6079 "falling back to SPROM.\n");
6081 np
->flags
&= ~NIU_FLAGS_VPD_VALID
;
6085 if (niu_phy_type_prop_decode(np
, np
->vpd
.phy_type
)) {
6086 dev_err(np
->device
, PFX
"Illegal phy string [%s].\n",
6088 dev_err(np
->device
, PFX
"Falling back to SPROM.\n");
6089 np
->flags
&= ~NIU_FLAGS_VPD_VALID
;
6093 memcpy(dev
->perm_addr
, vpd
->local_mac
, ETH_ALEN
);
6095 val8
= dev
->perm_addr
[5];
6096 dev
->perm_addr
[5] += np
->port
;
6097 if (dev
->perm_addr
[5] < val8
)
6098 dev
->perm_addr
[4]++;
6100 memcpy(dev
->dev_addr
, dev
->perm_addr
, dev
->addr_len
);
6103 static int __devinit
niu_pci_probe_sprom(struct niu
*np
)
6105 struct net_device
*dev
= np
->dev
;
6110 val
= (nr64(ESPC_VER_IMGSZ
) & ESPC_VER_IMGSZ_IMGSZ
);
6111 val
>>= ESPC_VER_IMGSZ_IMGSZ_SHIFT
;
6114 np
->eeprom_len
= len
;
6116 niudbg(PROBE
, "SPROM: Image size %llu\n", (unsigned long long) val
);
6119 for (i
= 0; i
< len
; i
++) {
6120 val
= nr64(ESPC_NCR(i
));
6121 sum
+= (val
>> 0) & 0xff;
6122 sum
+= (val
>> 8) & 0xff;
6123 sum
+= (val
>> 16) & 0xff;
6124 sum
+= (val
>> 24) & 0xff;
6126 niudbg(PROBE
, "SPROM: Checksum %x\n", (int)(sum
& 0xff));
6127 if ((sum
& 0xff) != 0xab) {
6128 dev_err(np
->device
, PFX
"Bad SPROM checksum "
6129 "(%x, should be 0xab)\n", (int) (sum
& 0xff));
6133 val
= nr64(ESPC_PHY_TYPE
);
6136 val8
= (val
& ESPC_PHY_TYPE_PORT0
) >>
6137 ESPC_PHY_TYPE_PORT0_SHIFT
;
6140 val8
= (val
& ESPC_PHY_TYPE_PORT1
) >>
6141 ESPC_PHY_TYPE_PORT1_SHIFT
;
6144 val8
= (val
& ESPC_PHY_TYPE_PORT2
) >>
6145 ESPC_PHY_TYPE_PORT2_SHIFT
;
6148 val8
= (val
& ESPC_PHY_TYPE_PORT3
) >>
6149 ESPC_PHY_TYPE_PORT3_SHIFT
;
6152 dev_err(np
->device
, PFX
"Bogus port number %u\n",
6156 niudbg(PROBE
, "SPROM: PHY type %x\n", val8
);
6159 case ESPC_PHY_TYPE_1G_COPPER
:
6160 /* 1G copper, MII */
6161 np
->flags
&= ~(NIU_FLAGS_FIBER
|
6163 np
->mac_xcvr
= MAC_XCVR_MII
;
6166 case ESPC_PHY_TYPE_1G_FIBER
:
6168 np
->flags
&= ~NIU_FLAGS_10G
;
6169 np
->flags
|= NIU_FLAGS_FIBER
;
6170 np
->mac_xcvr
= MAC_XCVR_PCS
;
6173 case ESPC_PHY_TYPE_10G_COPPER
:
6174 /* 10G copper, XPCS */
6175 np
->flags
|= NIU_FLAGS_10G
;
6176 np
->flags
&= ~NIU_FLAGS_FIBER
;
6177 np
->mac_xcvr
= MAC_XCVR_XPCS
;
6180 case ESPC_PHY_TYPE_10G_FIBER
:
6181 /* 10G fiber, XPCS */
6182 np
->flags
|= (NIU_FLAGS_10G
|
6184 np
->mac_xcvr
= MAC_XCVR_XPCS
;
6188 dev_err(np
->device
, PFX
"Bogus SPROM phy type %u\n", val8
);
6192 val
= nr64(ESPC_MAC_ADDR0
);
6193 niudbg(PROBE
, "SPROM: MAC_ADDR0[%08llx]\n",
6194 (unsigned long long) val
);
6195 dev
->perm_addr
[0] = (val
>> 0) & 0xff;
6196 dev
->perm_addr
[1] = (val
>> 8) & 0xff;
6197 dev
->perm_addr
[2] = (val
>> 16) & 0xff;
6198 dev
->perm_addr
[3] = (val
>> 24) & 0xff;
6200 val
= nr64(ESPC_MAC_ADDR1
);
6201 niudbg(PROBE
, "SPROM: MAC_ADDR1[%08llx]\n",
6202 (unsigned long long) val
);
6203 dev
->perm_addr
[4] = (val
>> 0) & 0xff;
6204 dev
->perm_addr
[5] = (val
>> 8) & 0xff;
6206 if (!is_valid_ether_addr(&dev
->perm_addr
[0])) {
6207 dev_err(np
->device
, PFX
"SPROM MAC address invalid\n");
6208 dev_err(np
->device
, PFX
"[ \n");
6209 for (i
= 0; i
< 6; i
++)
6210 printk("%02x ", dev
->perm_addr
[i
]);
6215 val8
= dev
->perm_addr
[5];
6216 dev
->perm_addr
[5] += np
->port
;
6217 if (dev
->perm_addr
[5] < val8
)
6218 dev
->perm_addr
[4]++;
6220 memcpy(dev
->dev_addr
, dev
->perm_addr
, dev
->addr_len
);
6222 val
= nr64(ESPC_MOD_STR_LEN
);
6223 niudbg(PROBE
, "SPROM: MOD_STR_LEN[%llu]\n",
6224 (unsigned long long) val
);
6228 for (i
= 0; i
< val
; i
+= 4) {
6229 u64 tmp
= nr64(ESPC_NCR(5 + (i
/ 4)));
6231 np
->vpd
.model
[i
+ 3] = (tmp
>> 0) & 0xff;
6232 np
->vpd
.model
[i
+ 2] = (tmp
>> 8) & 0xff;
6233 np
->vpd
.model
[i
+ 1] = (tmp
>> 16) & 0xff;
6234 np
->vpd
.model
[i
+ 0] = (tmp
>> 24) & 0xff;
6236 np
->vpd
.model
[val
] = '\0';
6238 val
= nr64(ESPC_BD_MOD_STR_LEN
);
6239 niudbg(PROBE
, "SPROM: BD_MOD_STR_LEN[%llu]\n",
6240 (unsigned long long) val
);
6244 for (i
= 0; i
< val
; i
+= 4) {
6245 u64 tmp
= nr64(ESPC_NCR(14 + (i
/ 4)));
6247 np
->vpd
.board_model
[i
+ 3] = (tmp
>> 0) & 0xff;
6248 np
->vpd
.board_model
[i
+ 2] = (tmp
>> 8) & 0xff;
6249 np
->vpd
.board_model
[i
+ 1] = (tmp
>> 16) & 0xff;
6250 np
->vpd
.board_model
[i
+ 0] = (tmp
>> 24) & 0xff;
6252 np
->vpd
.board_model
[val
] = '\0';
6255 nr64(ESPC_NUM_PORTS_MACS
) & ESPC_NUM_PORTS_MACS_VAL
;
6256 niudbg(PROBE
, "SPROM: NUM_PORTS_MACS[%d]\n",
6262 static int __devinit
niu_get_and_validate_port(struct niu
*np
)
6264 struct niu_parent
*parent
= np
->parent
;
6267 np
->flags
|= NIU_FLAGS_XMAC
;
6269 if (!parent
->num_ports
) {
6270 if (parent
->plat_type
== PLAT_TYPE_NIU
) {
6271 parent
->num_ports
= 2;
6273 parent
->num_ports
= nr64(ESPC_NUM_PORTS_MACS
) &
6274 ESPC_NUM_PORTS_MACS_VAL
;
6276 if (!parent
->num_ports
)
6277 parent
->num_ports
= 4;
6281 niudbg(PROBE
, "niu_get_and_validate_port: port[%d] num_ports[%d]\n",
6282 np
->port
, parent
->num_ports
);
6283 if (np
->port
>= parent
->num_ports
)
6289 static int __devinit
phy_record(struct niu_parent
*parent
,
6290 struct phy_probe_info
*p
,
6291 int dev_id_1
, int dev_id_2
, u8 phy_port
,
6294 u32 id
= (dev_id_1
<< 16) | dev_id_2
;
6297 if (dev_id_1
< 0 || dev_id_2
< 0)
6299 if (type
== PHY_TYPE_PMA_PMD
|| type
== PHY_TYPE_PCS
) {
6300 if ((id
& NIU_PHY_ID_MASK
) != NIU_PHY_ID_BCM8704
)
6303 if ((id
& NIU_PHY_ID_MASK
) != NIU_PHY_ID_BCM5464R
)
6307 pr_info("niu%d: Found PHY %08x type %s at phy_port %u\n",
6309 (type
== PHY_TYPE_PMA_PMD
?
6311 (type
== PHY_TYPE_PCS
?
6315 if (p
->cur
[type
] >= NIU_MAX_PORTS
) {
6316 printk(KERN_ERR PFX
"Too many PHY ports.\n");
6320 p
->phy_id
[type
][idx
] = id
;
6321 p
->phy_port
[type
][idx
] = phy_port
;
6322 p
->cur
[type
] = idx
+ 1;
6326 static int __devinit
port_has_10g(struct phy_probe_info
*p
, int port
)
6330 for (i
= 0; i
< p
->cur
[PHY_TYPE_PMA_PMD
]; i
++) {
6331 if (p
->phy_port
[PHY_TYPE_PMA_PMD
][i
] == port
)
6334 for (i
= 0; i
< p
->cur
[PHY_TYPE_PCS
]; i
++) {
6335 if (p
->phy_port
[PHY_TYPE_PCS
][i
] == port
)
6342 static int __devinit
count_10g_ports(struct phy_probe_info
*p
, int *lowest
)
6348 for (port
= 8; port
< 32; port
++) {
6349 if (port_has_10g(p
, port
)) {
6359 static int __devinit
count_1g_ports(struct phy_probe_info
*p
, int *lowest
)
6362 if (p
->cur
[PHY_TYPE_MII
])
6363 *lowest
= p
->phy_port
[PHY_TYPE_MII
][0];
6365 return p
->cur
[PHY_TYPE_MII
];
6368 static void __devinit
niu_n2_divide_channels(struct niu_parent
*parent
)
6370 int num_ports
= parent
->num_ports
;
6373 for (i
= 0; i
< num_ports
; i
++) {
6374 parent
->rxchan_per_port
[i
] = (16 / num_ports
);
6375 parent
->txchan_per_port
[i
] = (16 / num_ports
);
6377 pr_info(PFX
"niu%d: Port %u [%u RX chans] "
6380 parent
->rxchan_per_port
[i
],
6381 parent
->txchan_per_port
[i
]);
6385 static void __devinit
niu_divide_channels(struct niu_parent
*parent
,
6386 int num_10g
, int num_1g
)
6388 int num_ports
= parent
->num_ports
;
6389 int rx_chans_per_10g
, rx_chans_per_1g
;
6390 int tx_chans_per_10g
, tx_chans_per_1g
;
6391 int i
, tot_rx
, tot_tx
;
6393 if (!num_10g
|| !num_1g
) {
6394 rx_chans_per_10g
= rx_chans_per_1g
=
6395 (NIU_NUM_RXCHAN
/ num_ports
);
6396 tx_chans_per_10g
= tx_chans_per_1g
=
6397 (NIU_NUM_TXCHAN
/ num_ports
);
6399 rx_chans_per_1g
= NIU_NUM_RXCHAN
/ 8;
6400 rx_chans_per_10g
= (NIU_NUM_RXCHAN
-
6401 (rx_chans_per_1g
* num_1g
)) /
6404 tx_chans_per_1g
= NIU_NUM_TXCHAN
/ 6;
6405 tx_chans_per_10g
= (NIU_NUM_TXCHAN
-
6406 (tx_chans_per_1g
* num_1g
)) /
6410 tot_rx
= tot_tx
= 0;
6411 for (i
= 0; i
< num_ports
; i
++) {
6412 int type
= phy_decode(parent
->port_phy
, i
);
6414 if (type
== PORT_TYPE_10G
) {
6415 parent
->rxchan_per_port
[i
] = rx_chans_per_10g
;
6416 parent
->txchan_per_port
[i
] = tx_chans_per_10g
;
6418 parent
->rxchan_per_port
[i
] = rx_chans_per_1g
;
6419 parent
->txchan_per_port
[i
] = tx_chans_per_1g
;
6421 pr_info(PFX
"niu%d: Port %u [%u RX chans] "
6424 parent
->rxchan_per_port
[i
],
6425 parent
->txchan_per_port
[i
]);
6426 tot_rx
+= parent
->rxchan_per_port
[i
];
6427 tot_tx
+= parent
->txchan_per_port
[i
];
6430 if (tot_rx
> NIU_NUM_RXCHAN
) {
6431 printk(KERN_ERR PFX
"niu%d: Too many RX channels (%d), "
6432 "resetting to one per port.\n",
6433 parent
->index
, tot_rx
);
6434 for (i
= 0; i
< num_ports
; i
++)
6435 parent
->rxchan_per_port
[i
] = 1;
6437 if (tot_tx
> NIU_NUM_TXCHAN
) {
6438 printk(KERN_ERR PFX
"niu%d: Too many TX channels (%d), "
6439 "resetting to one per port.\n",
6440 parent
->index
, tot_tx
);
6441 for (i
= 0; i
< num_ports
; i
++)
6442 parent
->txchan_per_port
[i
] = 1;
6444 if (tot_rx
< NIU_NUM_RXCHAN
|| tot_tx
< NIU_NUM_TXCHAN
) {
6445 printk(KERN_WARNING PFX
"niu%d: Driver bug, wasted channels, "
6447 parent
->index
, tot_rx
, tot_tx
);
6451 static void __devinit
niu_divide_rdc_groups(struct niu_parent
*parent
,
6452 int num_10g
, int num_1g
)
6454 int i
, num_ports
= parent
->num_ports
;
6455 int rdc_group
, rdc_groups_per_port
;
6456 int rdc_channel_base
;
6459 rdc_groups_per_port
= NIU_NUM_RDC_TABLES
/ num_ports
;
6461 rdc_channel_base
= 0;
6463 for (i
= 0; i
< num_ports
; i
++) {
6464 struct niu_rdc_tables
*tp
= &parent
->rdc_group_cfg
[i
];
6465 int grp
, num_channels
= parent
->rxchan_per_port
[i
];
6466 int this_channel_offset
;
6468 tp
->first_table_num
= rdc_group
;
6469 tp
->num_tables
= rdc_groups_per_port
;
6470 this_channel_offset
= 0;
6471 for (grp
= 0; grp
< tp
->num_tables
; grp
++) {
6472 struct rdc_table
*rt
= &tp
->tables
[grp
];
6475 pr_info(PFX
"niu%d: Port %d RDC tbl(%d) [ ",
6476 parent
->index
, i
, tp
->first_table_num
+ grp
);
6477 for (slot
= 0; slot
< NIU_RDC_TABLE_SLOTS
; slot
++) {
6478 rt
->rxdma_channel
[slot
] =
6479 rdc_channel_base
+ this_channel_offset
;
6481 printk("%d ", rt
->rxdma_channel
[slot
]);
6483 if (++this_channel_offset
== num_channels
)
6484 this_channel_offset
= 0;
6489 parent
->rdc_default
[i
] = rdc_channel_base
;
6491 rdc_channel_base
+= num_channels
;
6492 rdc_group
+= rdc_groups_per_port
;
6496 static int __devinit
fill_phy_probe_info(struct niu
*np
,
6497 struct niu_parent
*parent
,
6498 struct phy_probe_info
*info
)
6500 unsigned long flags
;
6503 memset(info
, 0, sizeof(*info
));
6505 /* Port 0 to 7 are reserved for onboard Serdes, probe the rest. */
6506 niu_lock_parent(np
, flags
);
6508 for (port
= 8; port
< 32; port
++) {
6509 int dev_id_1
, dev_id_2
;
6511 dev_id_1
= mdio_read(np
, port
,
6512 NIU_PMA_PMD_DEV_ADDR
, MII_PHYSID1
);
6513 dev_id_2
= mdio_read(np
, port
,
6514 NIU_PMA_PMD_DEV_ADDR
, MII_PHYSID2
);
6515 err
= phy_record(parent
, info
, dev_id_1
, dev_id_2
, port
,
6519 dev_id_1
= mdio_read(np
, port
,
6520 NIU_PCS_DEV_ADDR
, MII_PHYSID1
);
6521 dev_id_2
= mdio_read(np
, port
,
6522 NIU_PCS_DEV_ADDR
, MII_PHYSID2
);
6523 err
= phy_record(parent
, info
, dev_id_1
, dev_id_2
, port
,
6527 dev_id_1
= mii_read(np
, port
, MII_PHYSID1
);
6528 dev_id_2
= mii_read(np
, port
, MII_PHYSID2
);
6529 err
= phy_record(parent
, info
, dev_id_1
, dev_id_2
, port
,
6534 niu_unlock_parent(np
, flags
);
6539 static int __devinit
walk_phys(struct niu
*np
, struct niu_parent
*parent
)
6541 struct phy_probe_info
*info
= &parent
->phy_probe_info
;
6542 int lowest_10g
, lowest_1g
;
6543 int num_10g
, num_1g
;
6547 err
= fill_phy_probe_info(np
, parent
, info
);
6551 num_10g
= count_10g_ports(info
, &lowest_10g
);
6552 num_1g
= count_1g_ports(info
, &lowest_1g
);
6554 switch ((num_10g
<< 4) | num_1g
) {
6556 if (lowest_1g
== 10)
6557 parent
->plat_type
= PLAT_TYPE_VF_P0
;
6558 else if (lowest_1g
== 26)
6559 parent
->plat_type
= PLAT_TYPE_VF_P1
;
6561 goto unknown_vg_1g_port
;
6565 val
= (phy_encode(PORT_TYPE_10G
, 0) |
6566 phy_encode(PORT_TYPE_10G
, 1) |
6567 phy_encode(PORT_TYPE_1G
, 2) |
6568 phy_encode(PORT_TYPE_1G
, 3));
6572 val
= (phy_encode(PORT_TYPE_10G
, 0) |
6573 phy_encode(PORT_TYPE_10G
, 1));
6577 val
= phy_encode(PORT_TYPE_10G
, np
->port
);
6581 if (lowest_1g
== 10)
6582 parent
->plat_type
= PLAT_TYPE_VF_P0
;
6583 else if (lowest_1g
== 26)
6584 parent
->plat_type
= PLAT_TYPE_VF_P1
;
6586 goto unknown_vg_1g_port
;
6590 if ((lowest_10g
& 0x7) == 0)
6591 val
= (phy_encode(PORT_TYPE_10G
, 0) |
6592 phy_encode(PORT_TYPE_1G
, 1) |
6593 phy_encode(PORT_TYPE_1G
, 2) |
6594 phy_encode(PORT_TYPE_1G
, 3));
6596 val
= (phy_encode(PORT_TYPE_1G
, 0) |
6597 phy_encode(PORT_TYPE_10G
, 1) |
6598 phy_encode(PORT_TYPE_1G
, 2) |
6599 phy_encode(PORT_TYPE_1G
, 3));
6603 if (lowest_1g
== 10)
6604 parent
->plat_type
= PLAT_TYPE_VF_P0
;
6605 else if (lowest_1g
== 26)
6606 parent
->plat_type
= PLAT_TYPE_VF_P1
;
6608 goto unknown_vg_1g_port
;
6610 val
= (phy_encode(PORT_TYPE_1G
, 0) |
6611 phy_encode(PORT_TYPE_1G
, 1) |
6612 phy_encode(PORT_TYPE_1G
, 2) |
6613 phy_encode(PORT_TYPE_1G
, 3));
6617 printk(KERN_ERR PFX
"Unsupported port config "
6623 parent
->port_phy
= val
;
6625 if (parent
->plat_type
== PLAT_TYPE_NIU
)
6626 niu_n2_divide_channels(parent
);
6628 niu_divide_channels(parent
, num_10g
, num_1g
);
6630 niu_divide_rdc_groups(parent
, num_10g
, num_1g
);
6635 printk(KERN_ERR PFX
"Cannot identify platform type, 1gport=%d\n",
6640 static int __devinit
niu_probe_ports(struct niu
*np
)
6642 struct niu_parent
*parent
= np
->parent
;
6645 niudbg(PROBE
, "niu_probe_ports(): port_phy[%08x]\n",
6648 if (parent
->port_phy
== PORT_PHY_UNKNOWN
) {
6649 err
= walk_phys(np
, parent
);
6653 niu_set_ldg_timer_res(np
, 2);
6654 for (i
= 0; i
<= LDN_MAX
; i
++)
6655 niu_ldn_irq_enable(np
, i
, 0);
6658 if (parent
->port_phy
== PORT_PHY_INVALID
)
6664 static int __devinit
niu_classifier_swstate_init(struct niu
*np
)
6666 struct niu_classifier
*cp
= &np
->clas
;
6668 niudbg(PROBE
, "niu_classifier_swstate_init: num_tcam(%d)\n",
6669 np
->parent
->tcam_num_entries
);
6671 cp
->tcam_index
= (u16
) np
->port
;
6672 cp
->h1_init
= 0xffffffff;
6673 cp
->h2_init
= 0xffff;
6675 return fflp_early_init(np
);
6678 static void __devinit
niu_link_config_init(struct niu
*np
)
6680 struct niu_link_config
*lp
= &np
->link_config
;
6682 lp
->advertising
= (ADVERTISED_10baseT_Half
|
6683 ADVERTISED_10baseT_Full
|
6684 ADVERTISED_100baseT_Half
|
6685 ADVERTISED_100baseT_Full
|
6686 ADVERTISED_1000baseT_Half
|
6687 ADVERTISED_1000baseT_Full
|
6688 ADVERTISED_10000baseT_Full
|
6689 ADVERTISED_Autoneg
);
6690 lp
->speed
= lp
->active_speed
= SPEED_INVALID
;
6691 lp
->duplex
= lp
->active_duplex
= DUPLEX_INVALID
;
6693 lp
->loopback_mode
= LOOPBACK_MAC
;
6694 lp
->active_speed
= SPEED_10000
;
6695 lp
->active_duplex
= DUPLEX_FULL
;
6697 lp
->loopback_mode
= LOOPBACK_DISABLED
;
6701 static int __devinit
niu_init_mac_ipp_pcs_base(struct niu
*np
)
6705 np
->mac_regs
= np
->regs
+ XMAC_PORT0_OFF
;
6706 np
->ipp_off
= 0x00000;
6707 np
->pcs_off
= 0x04000;
6708 np
->xpcs_off
= 0x02000;
6712 np
->mac_regs
= np
->regs
+ XMAC_PORT1_OFF
;
6713 np
->ipp_off
= 0x08000;
6714 np
->pcs_off
= 0x0a000;
6715 np
->xpcs_off
= 0x08000;
6719 np
->mac_regs
= np
->regs
+ BMAC_PORT2_OFF
;
6720 np
->ipp_off
= 0x04000;
6721 np
->pcs_off
= 0x0e000;
6722 np
->xpcs_off
= ~0UL;
6726 np
->mac_regs
= np
->regs
+ BMAC_PORT3_OFF
;
6727 np
->ipp_off
= 0x0c000;
6728 np
->pcs_off
= 0x12000;
6729 np
->xpcs_off
= ~0UL;
6733 dev_err(np
->device
, PFX
"Port %u is invalid, cannot "
6734 "compute MAC block offset.\n", np
->port
);
6741 static void __devinit
niu_try_msix(struct niu
*np
, u8
*ldg_num_map
)
6743 struct msix_entry msi_vec
[NIU_NUM_LDG
];
6744 struct niu_parent
*parent
= np
->parent
;
6745 struct pci_dev
*pdev
= np
->pdev
;
6746 int i
, num_irqs
, err
;
6749 first_ldg
= (NIU_NUM_LDG
/ parent
->num_ports
) * np
->port
;
6750 for (i
= 0; i
< (NIU_NUM_LDG
/ parent
->num_ports
); i
++)
6751 ldg_num_map
[i
] = first_ldg
+ i
;
6753 num_irqs
= (parent
->rxchan_per_port
[np
->port
] +
6754 parent
->txchan_per_port
[np
->port
] +
6755 (np
->port
== 0 ? 3 : 1));
6756 BUG_ON(num_irqs
> (NIU_NUM_LDG
/ parent
->num_ports
));
6759 for (i
= 0; i
< num_irqs
; i
++) {
6760 msi_vec
[i
].vector
= 0;
6761 msi_vec
[i
].entry
= i
;
6764 err
= pci_enable_msix(pdev
, msi_vec
, num_irqs
);
6766 np
->flags
&= ~NIU_FLAGS_MSIX
;
6774 np
->flags
|= NIU_FLAGS_MSIX
;
6775 for (i
= 0; i
< num_irqs
; i
++)
6776 np
->ldg
[i
].irq
= msi_vec
[i
].vector
;
6777 np
->num_ldg
= num_irqs
;
6780 static int __devinit
niu_n2_irq_init(struct niu
*np
, u8
*ldg_num_map
)
6782 #ifdef CONFIG_SPARC64
6783 struct of_device
*op
= np
->op
;
6784 const u32
*int_prop
;
6787 int_prop
= of_get_property(op
->node
, "interrupts", NULL
);
6791 for (i
= 0; i
< op
->num_irqs
; i
++) {
6792 ldg_num_map
[i
] = int_prop
[i
];
6793 np
->ldg
[i
].irq
= op
->irqs
[i
];
6796 np
->num_ldg
= op
->num_irqs
;
6804 static int __devinit
niu_ldg_init(struct niu
*np
)
6806 struct niu_parent
*parent
= np
->parent
;
6807 u8 ldg_num_map
[NIU_NUM_LDG
];
6808 int first_chan
, num_chan
;
6809 int i
, err
, ldg_rotor
;
6813 np
->ldg
[0].irq
= np
->dev
->irq
;
6814 if (parent
->plat_type
== PLAT_TYPE_NIU
) {
6815 err
= niu_n2_irq_init(np
, ldg_num_map
);
6819 niu_try_msix(np
, ldg_num_map
);
6822 for (i
= 0; i
< np
->num_ldg
; i
++) {
6823 struct niu_ldg
*lp
= &np
->ldg
[i
];
6825 netif_napi_add(np
->dev
, &lp
->napi
, niu_poll
, 64);
6828 lp
->ldg_num
= ldg_num_map
[i
];
6829 lp
->timer
= 2; /* XXX */
6831 /* On N2 NIU the firmware has setup the SID mappings so they go
6832 * to the correct values that will route the LDG to the proper
6833 * interrupt in the NCU interrupt table.
6835 if (np
->parent
->plat_type
!= PLAT_TYPE_NIU
) {
6836 err
= niu_set_ldg_sid(np
, lp
->ldg_num
, port
, i
);
6842 /* We adopt the LDG assignment ordering used by the N2 NIU
6843 * 'interrupt' properties because that simplifies a lot of
6844 * things. This ordering is:
6847 * MIF (if port zero)
6848 * SYSERR (if port zero)
6855 err
= niu_ldg_assign_ldn(np
, parent
, ldg_num_map
[ldg_rotor
],
6861 if (ldg_rotor
== np
->num_ldg
)
6865 err
= niu_ldg_assign_ldn(np
, parent
,
6866 ldg_num_map
[ldg_rotor
],
6872 if (ldg_rotor
== np
->num_ldg
)
6875 err
= niu_ldg_assign_ldn(np
, parent
,
6876 ldg_num_map
[ldg_rotor
],
6882 if (ldg_rotor
== np
->num_ldg
)
6888 for (i
= 0; i
< port
; i
++)
6889 first_chan
+= parent
->rxchan_per_port
[port
];
6890 num_chan
= parent
->rxchan_per_port
[port
];
6892 for (i
= first_chan
; i
< (first_chan
+ num_chan
); i
++) {
6893 err
= niu_ldg_assign_ldn(np
, parent
,
6894 ldg_num_map
[ldg_rotor
],
6899 if (ldg_rotor
== np
->num_ldg
)
6904 for (i
= 0; i
< port
; i
++)
6905 first_chan
+= parent
->txchan_per_port
[port
];
6906 num_chan
= parent
->txchan_per_port
[port
];
6907 for (i
= first_chan
; i
< (first_chan
+ num_chan
); i
++) {
6908 err
= niu_ldg_assign_ldn(np
, parent
,
6909 ldg_num_map
[ldg_rotor
],
6914 if (ldg_rotor
== np
->num_ldg
)
6921 static void __devexit
niu_ldg_free(struct niu
*np
)
6923 if (np
->flags
& NIU_FLAGS_MSIX
)
6924 pci_disable_msix(np
->pdev
);
6927 static int __devinit
niu_get_of_props(struct niu
*np
)
6929 #ifdef CONFIG_SPARC64
6930 struct net_device
*dev
= np
->dev
;
6931 struct device_node
*dp
;
6932 const char *phy_type
;
6936 if (np
->parent
->plat_type
== PLAT_TYPE_NIU
)
6939 dp
= pci_device_to_OF_node(np
->pdev
);
6941 phy_type
= of_get_property(dp
, "phy-type", &prop_len
);
6943 dev_err(np
->device
, PFX
"%s: OF node lacks "
6944 "phy-type property\n",
6949 if (!strcmp(phy_type
, "none"))
6952 strcpy(np
->vpd
.phy_type
, phy_type
);
6954 if (niu_phy_type_prop_decode(np
, np
->vpd
.phy_type
)) {
6955 dev_err(np
->device
, PFX
"%s: Illegal phy string [%s].\n",
6956 dp
->full_name
, np
->vpd
.phy_type
);
6960 mac_addr
= of_get_property(dp
, "local-mac-address", &prop_len
);
6962 dev_err(np
->device
, PFX
"%s: OF node lacks "
6963 "local-mac-address property\n",
6967 if (prop_len
!= dev
->addr_len
) {
6968 dev_err(np
->device
, PFX
"%s: OF MAC address prop len (%d) "
6970 dp
->full_name
, prop_len
);
6972 memcpy(dev
->perm_addr
, mac_addr
, dev
->addr_len
);
6973 if (!is_valid_ether_addr(&dev
->perm_addr
[0])) {
6976 dev_err(np
->device
, PFX
"%s: OF MAC address is invalid\n",
6978 dev_err(np
->device
, PFX
"%s: [ \n",
6980 for (i
= 0; i
< 6; i
++)
6981 printk("%02x ", dev
->perm_addr
[i
]);
6986 memcpy(dev
->dev_addr
, dev
->perm_addr
, dev
->addr_len
);
6994 static int __devinit
niu_get_invariants(struct niu
*np
)
6996 int err
, have_props
;
6999 err
= niu_get_of_props(np
);
7005 err
= niu_get_and_validate_port(np
);
7009 err
= niu_init_mac_ipp_pcs_base(np
);
7014 if (np
->parent
->plat_type
== PLAT_TYPE_NIU
)
7017 nw64(ESPC_PIO_EN
, ESPC_PIO_EN_ENABLE
);
7018 offset
= niu_pci_vpd_offset(np
);
7019 niudbg(PROBE
, "niu_get_invariants: VPD offset [%08x]\n",
7022 niu_pci_vpd_fetch(np
, offset
);
7023 nw64(ESPC_PIO_EN
, 0);
7025 if (np
->flags
& NIU_FLAGS_VPD_VALID
)
7026 niu_pci_vpd_validate(np
);
7028 if (!(np
->flags
& NIU_FLAGS_VPD_VALID
)) {
7029 err
= niu_pci_probe_sprom(np
);
7035 err
= niu_probe_ports(np
);
7041 niu_classifier_swstate_init(np
);
7042 niu_link_config_init(np
);
7044 err
= niu_determine_phy_disposition(np
);
7046 err
= niu_init_link(np
);
7051 static LIST_HEAD(niu_parent_list
);
7052 static DEFINE_MUTEX(niu_parent_lock
);
7053 static int niu_parent_index
;
7055 static ssize_t
show_port_phy(struct device
*dev
,
7056 struct device_attribute
*attr
, char *buf
)
7058 struct platform_device
*plat_dev
= to_platform_device(dev
);
7059 struct niu_parent
*p
= plat_dev
->dev
.platform_data
;
7060 u32 port_phy
= p
->port_phy
;
7061 char *orig_buf
= buf
;
7064 if (port_phy
== PORT_PHY_UNKNOWN
||
7065 port_phy
== PORT_PHY_INVALID
)
7068 for (i
= 0; i
< p
->num_ports
; i
++) {
7069 const char *type_str
;
7072 type
= phy_decode(port_phy
, i
);
7073 if (type
== PORT_TYPE_10G
)
7078 (i
== 0) ? "%s" : " %s",
7081 buf
+= sprintf(buf
, "\n");
7082 return buf
- orig_buf
;
7085 static ssize_t
show_plat_type(struct device
*dev
,
7086 struct device_attribute
*attr
, char *buf
)
7088 struct platform_device
*plat_dev
= to_platform_device(dev
);
7089 struct niu_parent
*p
= plat_dev
->dev
.platform_data
;
7090 const char *type_str
;
7092 switch (p
->plat_type
) {
7093 case PLAT_TYPE_ATLAS
:
7099 case PLAT_TYPE_VF_P0
:
7102 case PLAT_TYPE_VF_P1
:
7106 type_str
= "unknown";
7110 return sprintf(buf
, "%s\n", type_str
);
7113 static ssize_t
__show_chan_per_port(struct device
*dev
,
7114 struct device_attribute
*attr
, char *buf
,
7117 struct platform_device
*plat_dev
= to_platform_device(dev
);
7118 struct niu_parent
*p
= plat_dev
->dev
.platform_data
;
7119 char *orig_buf
= buf
;
7123 arr
= (rx
? p
->rxchan_per_port
: p
->txchan_per_port
);
7125 for (i
= 0; i
< p
->num_ports
; i
++) {
7127 (i
== 0) ? "%d" : " %d",
7130 buf
+= sprintf(buf
, "\n");
7132 return buf
- orig_buf
;
7135 static ssize_t
show_rxchan_per_port(struct device
*dev
,
7136 struct device_attribute
*attr
, char *buf
)
7138 return __show_chan_per_port(dev
, attr
, buf
, 1);
7141 static ssize_t
show_txchan_per_port(struct device
*dev
,
7142 struct device_attribute
*attr
, char *buf
)
7144 return __show_chan_per_port(dev
, attr
, buf
, 1);
7147 static ssize_t
show_num_ports(struct device
*dev
,
7148 struct device_attribute
*attr
, char *buf
)
7150 struct platform_device
*plat_dev
= to_platform_device(dev
);
7151 struct niu_parent
*p
= plat_dev
->dev
.platform_data
;
7153 return sprintf(buf
, "%d\n", p
->num_ports
);
7156 static struct device_attribute niu_parent_attributes
[] = {
7157 __ATTR(port_phy
, S_IRUGO
, show_port_phy
, NULL
),
7158 __ATTR(plat_type
, S_IRUGO
, show_plat_type
, NULL
),
7159 __ATTR(rxchan_per_port
, S_IRUGO
, show_rxchan_per_port
, NULL
),
7160 __ATTR(txchan_per_port
, S_IRUGO
, show_txchan_per_port
, NULL
),
7161 __ATTR(num_ports
, S_IRUGO
, show_num_ports
, NULL
),
7165 static struct niu_parent
* __devinit
niu_new_parent(struct niu
*np
,
7166 union niu_parent_id
*id
,
7169 struct platform_device
*plat_dev
;
7170 struct niu_parent
*p
;
7173 niudbg(PROBE
, "niu_new_parent: Creating new parent.\n");
7175 plat_dev
= platform_device_register_simple("niu", niu_parent_index
,
7180 for (i
= 0; attr_name(niu_parent_attributes
[i
]); i
++) {
7181 int err
= device_create_file(&plat_dev
->dev
,
7182 &niu_parent_attributes
[i
]);
7184 goto fail_unregister
;
7187 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
7189 goto fail_unregister
;
7191 p
->index
= niu_parent_index
++;
7193 plat_dev
->dev
.platform_data
= p
;
7194 p
->plat_dev
= plat_dev
;
7196 memcpy(&p
->id
, id
, sizeof(*id
));
7197 p
->plat_type
= ptype
;
7198 INIT_LIST_HEAD(&p
->list
);
7199 atomic_set(&p
->refcnt
, 0);
7200 list_add(&p
->list
, &niu_parent_list
);
7201 spin_lock_init(&p
->lock
);
7203 p
->rxdma_clock_divider
= 7500;
7205 p
->tcam_num_entries
= NIU_PCI_TCAM_ENTRIES
;
7206 if (p
->plat_type
== PLAT_TYPE_NIU
)
7207 p
->tcam_num_entries
= NIU_NONPCI_TCAM_ENTRIES
;
7209 for (i
= CLASS_CODE_USER_PROG1
; i
<= CLASS_CODE_SCTP_IPV6
; i
++) {
7210 int index
= i
- CLASS_CODE_USER_PROG1
;
7212 p
->tcam_key
[index
] = TCAM_KEY_TSEL
;
7213 p
->flow_key
[index
] = (FLOW_KEY_IPSA
|
7216 (FLOW_KEY_L4_BYTE12
<<
7217 FLOW_KEY_L4_0_SHIFT
) |
7218 (FLOW_KEY_L4_BYTE12
<<
7219 FLOW_KEY_L4_1_SHIFT
));
7222 for (i
= 0; i
< LDN_MAX
+ 1; i
++)
7223 p
->ldg_map
[i
] = LDG_INVALID
;
7228 platform_device_unregister(plat_dev
);
7232 static struct niu_parent
* __devinit
niu_get_parent(struct niu
*np
,
7233 union niu_parent_id
*id
,
7236 struct niu_parent
*p
, *tmp
;
7237 int port
= np
->port
;
7239 niudbg(PROBE
, "niu_get_parent: platform_type[%u] port[%u]\n",
7242 mutex_lock(&niu_parent_lock
);
7244 list_for_each_entry(tmp
, &niu_parent_list
, list
) {
7245 if (!memcmp(id
, &tmp
->id
, sizeof(*id
))) {
7251 p
= niu_new_parent(np
, id
, ptype
);
7257 sprintf(port_name
, "port%d", port
);
7258 err
= sysfs_create_link(&p
->plat_dev
->dev
.kobj
,
7262 p
->ports
[port
] = np
;
7263 atomic_inc(&p
->refcnt
);
7266 mutex_unlock(&niu_parent_lock
);
7271 static void niu_put_parent(struct niu
*np
)
7273 struct niu_parent
*p
= np
->parent
;
7277 BUG_ON(!p
|| p
->ports
[port
] != np
);
7279 niudbg(PROBE
, "niu_put_parent: port[%u]\n", port
);
7281 sprintf(port_name
, "port%d", port
);
7283 mutex_lock(&niu_parent_lock
);
7285 sysfs_remove_link(&p
->plat_dev
->dev
.kobj
, port_name
);
7287 p
->ports
[port
] = NULL
;
7290 if (atomic_dec_and_test(&p
->refcnt
)) {
7292 platform_device_unregister(p
->plat_dev
);
7295 mutex_unlock(&niu_parent_lock
);
7298 static void *niu_pci_alloc_coherent(struct device
*dev
, size_t size
,
7299 u64
*handle
, gfp_t flag
)
7304 ret
= dma_alloc_coherent(dev
, size
, &dh
, flag
);
7310 static void niu_pci_free_coherent(struct device
*dev
, size_t size
,
7311 void *cpu_addr
, u64 handle
)
7313 dma_free_coherent(dev
, size
, cpu_addr
, handle
);
7316 static u64
niu_pci_map_page(struct device
*dev
, struct page
*page
,
7317 unsigned long offset
, size_t size
,
7318 enum dma_data_direction direction
)
7320 return dma_map_page(dev
, page
, offset
, size
, direction
);
7323 static void niu_pci_unmap_page(struct device
*dev
, u64 dma_address
,
7324 size_t size
, enum dma_data_direction direction
)
7326 return dma_unmap_page(dev
, dma_address
, size
, direction
);
7329 static u64
niu_pci_map_single(struct device
*dev
, void *cpu_addr
,
7331 enum dma_data_direction direction
)
7333 return dma_map_single(dev
, cpu_addr
, size
, direction
);
7336 static void niu_pci_unmap_single(struct device
*dev
, u64 dma_address
,
7338 enum dma_data_direction direction
)
7340 dma_unmap_single(dev
, dma_address
, size
, direction
);
7343 static const struct niu_ops niu_pci_ops
= {
7344 .alloc_coherent
= niu_pci_alloc_coherent
,
7345 .free_coherent
= niu_pci_free_coherent
,
7346 .map_page
= niu_pci_map_page
,
7347 .unmap_page
= niu_pci_unmap_page
,
7348 .map_single
= niu_pci_map_single
,
7349 .unmap_single
= niu_pci_unmap_single
,
7352 static void __devinit
niu_driver_version(void)
7354 static int niu_version_printed
;
7356 if (niu_version_printed
++ == 0)
7357 pr_info("%s", version
);
7360 static struct net_device
* __devinit
niu_alloc_and_init(
7361 struct device
*gen_dev
, struct pci_dev
*pdev
,
7362 struct of_device
*op
, const struct niu_ops
*ops
,
7365 struct net_device
*dev
= alloc_etherdev(sizeof(struct niu
));
7369 dev_err(gen_dev
, PFX
"Etherdev alloc failed, aborting.\n");
7373 SET_NETDEV_DEV(dev
, gen_dev
);
7375 np
= netdev_priv(dev
);
7379 np
->device
= gen_dev
;
7382 np
->msg_enable
= niu_debug
;
7384 spin_lock_init(&np
->lock
);
7385 INIT_WORK(&np
->reset_task
, niu_reset_task
);
7392 static void __devinit
niu_assign_netdev_ops(struct net_device
*dev
)
7394 dev
->open
= niu_open
;
7395 dev
->stop
= niu_close
;
7396 dev
->get_stats
= niu_get_stats
;
7397 dev
->set_multicast_list
= niu_set_rx_mode
;
7398 dev
->set_mac_address
= niu_set_mac_addr
;
7399 dev
->do_ioctl
= niu_ioctl
;
7400 dev
->tx_timeout
= niu_tx_timeout
;
7401 dev
->hard_start_xmit
= niu_start_xmit
;
7402 dev
->ethtool_ops
= &niu_ethtool_ops
;
7403 dev
->watchdog_timeo
= NIU_TX_TIMEOUT
;
7404 dev
->change_mtu
= niu_change_mtu
;
7407 static void __devinit
niu_device_announce(struct niu
*np
)
7409 struct net_device
*dev
= np
->dev
;
7412 pr_info("%s: NIU Ethernet ", dev
->name
);
7413 for (i
= 0; i
< 6; i
++)
7414 printk("%2.2x%c", dev
->dev_addr
[i
],
7415 i
== 5 ? '\n' : ':');
7417 pr_info("%s: Port type[%s] mode[%s:%s] XCVR[%s] phy[%s]\n",
7419 (np
->flags
& NIU_FLAGS_XMAC
? "XMAC" : "BMAC"),
7420 (np
->flags
& NIU_FLAGS_10G
? "10G" : "1G"),
7421 (np
->flags
& NIU_FLAGS_FIBER
? "FIBER" : "COPPER"),
7422 (np
->mac_xcvr
== MAC_XCVR_MII
? "MII" :
7423 (np
->mac_xcvr
== MAC_XCVR_PCS
? "PCS" : "XPCS")),
7427 static int __devinit
niu_pci_init_one(struct pci_dev
*pdev
,
7428 const struct pci_device_id
*ent
)
7430 unsigned long niureg_base
, niureg_len
;
7431 union niu_parent_id parent_id
;
7432 struct net_device
*dev
;
7438 niu_driver_version();
7440 err
= pci_enable_device(pdev
);
7442 dev_err(&pdev
->dev
, PFX
"Cannot enable PCI device, "
7447 if (!(pci_resource_flags(pdev
, 0) & IORESOURCE_MEM
) ||
7448 !(pci_resource_flags(pdev
, 2) & IORESOURCE_MEM
)) {
7449 dev_err(&pdev
->dev
, PFX
"Cannot find proper PCI device "
7450 "base addresses, aborting.\n");
7452 goto err_out_disable_pdev
;
7455 err
= pci_request_regions(pdev
, DRV_MODULE_NAME
);
7457 dev_err(&pdev
->dev
, PFX
"Cannot obtain PCI resources, "
7459 goto err_out_disable_pdev
;
7462 pos
= pci_find_capability(pdev
, PCI_CAP_ID_EXP
);
7464 dev_err(&pdev
->dev
, PFX
"Cannot find PCI Express capability, "
7466 goto err_out_free_res
;
7469 dev
= niu_alloc_and_init(&pdev
->dev
, pdev
, NULL
,
7470 &niu_pci_ops
, PCI_FUNC(pdev
->devfn
));
7473 goto err_out_free_res
;
7475 np
= netdev_priv(dev
);
7477 memset(&parent_id
, 0, sizeof(parent_id
));
7478 parent_id
.pci
.domain
= pci_domain_nr(pdev
->bus
);
7479 parent_id
.pci
.bus
= pdev
->bus
->number
;
7480 parent_id
.pci
.device
= PCI_SLOT(pdev
->devfn
);
7482 np
->parent
= niu_get_parent(np
, &parent_id
,
7486 goto err_out_free_dev
;
7489 pci_read_config_word(pdev
, pos
+ PCI_EXP_DEVCTL
, &val16
);
7490 val16
&= ~PCI_EXP_DEVCTL_NOSNOOP_EN
;
7491 val16
|= (PCI_EXP_DEVCTL_CERE
|
7492 PCI_EXP_DEVCTL_NFERE
|
7493 PCI_EXP_DEVCTL_FERE
|
7494 PCI_EXP_DEVCTL_URRE
|
7495 PCI_EXP_DEVCTL_RELAX_EN
);
7496 pci_write_config_word(pdev
, pos
+ PCI_EXP_DEVCTL
, val16
);
7498 dma_mask
= DMA_44BIT_MASK
;
7499 err
= pci_set_dma_mask(pdev
, dma_mask
);
7501 dev
->features
|= NETIF_F_HIGHDMA
;
7502 err
= pci_set_consistent_dma_mask(pdev
, dma_mask
);
7504 dev_err(&pdev
->dev
, PFX
"Unable to obtain 44 bit "
7505 "DMA for consistent allocations, "
7507 goto err_out_release_parent
;
7510 if (err
|| dma_mask
== DMA_32BIT_MASK
) {
7511 err
= pci_set_dma_mask(pdev
, DMA_32BIT_MASK
);
7513 dev_err(&pdev
->dev
, PFX
"No usable DMA configuration, "
7515 goto err_out_release_parent
;
7519 dev
->features
|= (NETIF_F_SG
| NETIF_F_HW_CSUM
);
7521 niureg_base
= pci_resource_start(pdev
, 0);
7522 niureg_len
= pci_resource_len(pdev
, 0);
7524 np
->regs
= ioremap_nocache(niureg_base
, niureg_len
);
7526 dev_err(&pdev
->dev
, PFX
"Cannot map device registers, "
7529 goto err_out_release_parent
;
7532 pci_set_master(pdev
);
7533 pci_save_state(pdev
);
7535 dev
->irq
= pdev
->irq
;
7537 niu_assign_netdev_ops(dev
);
7539 err
= niu_get_invariants(np
);
7542 dev_err(&pdev
->dev
, PFX
"Problem fetching invariants "
7543 "of chip, aborting.\n");
7544 goto err_out_iounmap
;
7547 err
= register_netdev(dev
);
7549 dev_err(&pdev
->dev
, PFX
"Cannot register net device, "
7551 goto err_out_iounmap
;
7554 pci_set_drvdata(pdev
, dev
);
7556 niu_device_announce(np
);
7566 err_out_release_parent
:
7573 pci_release_regions(pdev
);
7575 err_out_disable_pdev
:
7576 pci_disable_device(pdev
);
7577 pci_set_drvdata(pdev
, NULL
);
7582 static void __devexit
niu_pci_remove_one(struct pci_dev
*pdev
)
7584 struct net_device
*dev
= pci_get_drvdata(pdev
);
7587 struct niu
*np
= netdev_priv(dev
);
7589 unregister_netdev(dev
);
7600 pci_release_regions(pdev
);
7601 pci_disable_device(pdev
);
7602 pci_set_drvdata(pdev
, NULL
);
7606 static int niu_suspend(struct pci_dev
*pdev
, pm_message_t state
)
7608 struct net_device
*dev
= pci_get_drvdata(pdev
);
7609 struct niu
*np
= netdev_priv(dev
);
7610 unsigned long flags
;
7612 if (!netif_running(dev
))
7615 flush_scheduled_work();
7618 del_timer_sync(&np
->timer
);
7620 spin_lock_irqsave(&np
->lock
, flags
);
7621 niu_enable_interrupts(np
, 0);
7622 spin_unlock_irqrestore(&np
->lock
, flags
);
7624 netif_device_detach(dev
);
7626 spin_lock_irqsave(&np
->lock
, flags
);
7628 spin_unlock_irqrestore(&np
->lock
, flags
);
7630 pci_save_state(pdev
);
7635 static int niu_resume(struct pci_dev
*pdev
)
7637 struct net_device
*dev
= pci_get_drvdata(pdev
);
7638 struct niu
*np
= netdev_priv(dev
);
7639 unsigned long flags
;
7642 if (!netif_running(dev
))
7645 pci_restore_state(pdev
);
7647 netif_device_attach(dev
);
7649 spin_lock_irqsave(&np
->lock
, flags
);
7651 err
= niu_init_hw(np
);
7653 np
->timer
.expires
= jiffies
+ HZ
;
7654 add_timer(&np
->timer
);
7655 niu_netif_start(np
);
7658 spin_unlock_irqrestore(&np
->lock
, flags
);
7663 static struct pci_driver niu_pci_driver
= {
7664 .name
= DRV_MODULE_NAME
,
7665 .id_table
= niu_pci_tbl
,
7666 .probe
= niu_pci_init_one
,
7667 .remove
= __devexit_p(niu_pci_remove_one
),
7668 .suspend
= niu_suspend
,
7669 .resume
= niu_resume
,
7672 #ifdef CONFIG_SPARC64
7673 static void *niu_phys_alloc_coherent(struct device
*dev
, size_t size
,
7674 u64
*dma_addr
, gfp_t flag
)
7676 unsigned long order
= get_order(size
);
7677 unsigned long page
= __get_free_pages(flag
, order
);
7681 memset((char *)page
, 0, PAGE_SIZE
<< order
);
7682 *dma_addr
= __pa(page
);
7684 return (void *) page
;
7687 static void niu_phys_free_coherent(struct device
*dev
, size_t size
,
7688 void *cpu_addr
, u64 handle
)
7690 unsigned long order
= get_order(size
);
7692 free_pages((unsigned long) cpu_addr
, order
);
7695 static u64
niu_phys_map_page(struct device
*dev
, struct page
*page
,
7696 unsigned long offset
, size_t size
,
7697 enum dma_data_direction direction
)
7699 return page_to_phys(page
) + offset
;
7702 static void niu_phys_unmap_page(struct device
*dev
, u64 dma_address
,
7703 size_t size
, enum dma_data_direction direction
)
7705 /* Nothing to do. */
7708 static u64
niu_phys_map_single(struct device
*dev
, void *cpu_addr
,
7710 enum dma_data_direction direction
)
7712 return __pa(cpu_addr
);
7715 static void niu_phys_unmap_single(struct device
*dev
, u64 dma_address
,
7717 enum dma_data_direction direction
)
7719 /* Nothing to do. */
7722 static const struct niu_ops niu_phys_ops
= {
7723 .alloc_coherent
= niu_phys_alloc_coherent
,
7724 .free_coherent
= niu_phys_free_coherent
,
7725 .map_page
= niu_phys_map_page
,
7726 .unmap_page
= niu_phys_unmap_page
,
7727 .map_single
= niu_phys_map_single
,
7728 .unmap_single
= niu_phys_unmap_single
,
7731 static unsigned long res_size(struct resource
*r
)
7733 return r
->end
- r
->start
+ 1UL;
7736 static int __devinit
niu_of_probe(struct of_device
*op
,
7737 const struct of_device_id
*match
)
7739 union niu_parent_id parent_id
;
7740 struct net_device
*dev
;
7745 niu_driver_version();
7747 reg
= of_get_property(op
->node
, "reg", NULL
);
7749 dev_err(&op
->dev
, PFX
"%s: No 'reg' property, aborting.\n",
7750 op
->node
->full_name
);
7754 dev
= niu_alloc_and_init(&op
->dev
, NULL
, op
,
7755 &niu_phys_ops
, reg
[0] & 0x1);
7760 np
= netdev_priv(dev
);
7762 memset(&parent_id
, 0, sizeof(parent_id
));
7763 parent_id
.of
= of_get_parent(op
->node
);
7765 np
->parent
= niu_get_parent(np
, &parent_id
,
7769 goto err_out_free_dev
;
7772 dev
->features
|= (NETIF_F_SG
| NETIF_F_HW_CSUM
);
7774 np
->regs
= of_ioremap(&op
->resource
[1], 0,
7775 res_size(&op
->resource
[1]),
7778 dev_err(&op
->dev
, PFX
"Cannot map device registers, "
7781 goto err_out_release_parent
;
7784 np
->vir_regs_1
= of_ioremap(&op
->resource
[2], 0,
7785 res_size(&op
->resource
[2]),
7787 if (!np
->vir_regs_1
) {
7788 dev_err(&op
->dev
, PFX
"Cannot map device vir registers 1, "
7791 goto err_out_iounmap
;
7794 np
->vir_regs_2
= of_ioremap(&op
->resource
[3], 0,
7795 res_size(&op
->resource
[3]),
7797 if (!np
->vir_regs_2
) {
7798 dev_err(&op
->dev
, PFX
"Cannot map device vir registers 2, "
7801 goto err_out_iounmap
;
7804 niu_assign_netdev_ops(dev
);
7806 err
= niu_get_invariants(np
);
7809 dev_err(&op
->dev
, PFX
"Problem fetching invariants "
7810 "of chip, aborting.\n");
7811 goto err_out_iounmap
;
7814 err
= register_netdev(dev
);
7816 dev_err(&op
->dev
, PFX
"Cannot register net device, "
7818 goto err_out_iounmap
;
7821 dev_set_drvdata(&op
->dev
, dev
);
7823 niu_device_announce(np
);
7828 if (np
->vir_regs_1
) {
7829 of_iounmap(&op
->resource
[2], np
->vir_regs_1
,
7830 res_size(&op
->resource
[2]));
7831 np
->vir_regs_1
= NULL
;
7834 if (np
->vir_regs_2
) {
7835 of_iounmap(&op
->resource
[3], np
->vir_regs_2
,
7836 res_size(&op
->resource
[3]));
7837 np
->vir_regs_2
= NULL
;
7841 of_iounmap(&op
->resource
[1], np
->regs
,
7842 res_size(&op
->resource
[1]));
7846 err_out_release_parent
:
7856 static int __devexit
niu_of_remove(struct of_device
*op
)
7858 struct net_device
*dev
= dev_get_drvdata(&op
->dev
);
7861 struct niu
*np
= netdev_priv(dev
);
7863 unregister_netdev(dev
);
7865 if (np
->vir_regs_1
) {
7866 of_iounmap(&op
->resource
[2], np
->vir_regs_1
,
7867 res_size(&op
->resource
[2]));
7868 np
->vir_regs_1
= NULL
;
7871 if (np
->vir_regs_2
) {
7872 of_iounmap(&op
->resource
[3], np
->vir_regs_2
,
7873 res_size(&op
->resource
[3]));
7874 np
->vir_regs_2
= NULL
;
7878 of_iounmap(&op
->resource
[1], np
->regs
,
7879 res_size(&op
->resource
[1]));
7888 dev_set_drvdata(&op
->dev
, NULL
);
7893 static struct of_device_id niu_match
[] = {
7896 .compatible
= "SUNW,niusl",
7900 MODULE_DEVICE_TABLE(of
, niu_match
);
7902 static struct of_platform_driver niu_of_driver
= {
7904 .match_table
= niu_match
,
7905 .probe
= niu_of_probe
,
7906 .remove
= __devexit_p(niu_of_remove
),
7909 #endif /* CONFIG_SPARC64 */
7911 static int __init
niu_init(void)
7915 BUILD_BUG_ON(PAGE_SIZE
< 4 * 1024);
7917 niu_debug
= netif_msg_init(debug
, NIU_MSG_DEFAULT
);
7919 #ifdef CONFIG_SPARC64
7920 err
= of_register_driver(&niu_of_driver
, &of_bus_type
);
7924 err
= pci_register_driver(&niu_pci_driver
);
7925 #ifdef CONFIG_SPARC64
7927 of_unregister_driver(&niu_of_driver
);
7934 static void __exit
niu_exit(void)
7936 pci_unregister_driver(&niu_pci_driver
);
7937 #ifdef CONFIG_SPARC64
7938 of_unregister_driver(&niu_of_driver
);
7942 module_init(niu_init
);
7943 module_exit(niu_exit
);