blob: 681a42ca5c51079944febd92d110d8ffdc4c5887 [file] [log] [blame]
David S. Millera3138df2007-10-09 01:54:01 -07001/* niu.c: Neptune ethernet driver.
2 *
David S. Millerbe0c0072008-05-04 01:34:31 -07003 * Copyright (C) 2007, 2008 David S. Miller (davem@davemloft.net)
David S. Millera3138df2007-10-09 01:54:01 -07004 */
5
Joe Perchesf10a1f22010-02-14 22:40:39 -08006#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
David S. Millera3138df2007-10-09 01:54:01 -07008#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/pci.h>
11#include <linux/dma-mapping.h>
12#include <linux/netdevice.h>
13#include <linux/ethtool.h>
14#include <linux/etherdevice.h>
15#include <linux/platform_device.h>
16#include <linux/delay.h>
17#include <linux/bitops.h>
18#include <linux/mii.h>
19#include <linux/if_ether.h>
20#include <linux/if_vlan.h>
21#include <linux/ip.h>
22#include <linux/in.h>
23#include <linux/ipv6.h>
24#include <linux/log2.h>
25#include <linux/jiffies.h>
26#include <linux/crc32.h>
Jiri Pirkoccffad252009-05-22 23:22:17 +000027#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
David S. Millera3138df2007-10-09 01:54:01 -070029
30#include <linux/io.h>
David S. Millera3138df2007-10-09 01:54:01 -070031#include <linux/of_device.h>
David S. Millera3138df2007-10-09 01:54:01 -070032
33#include "niu.h"
34
35#define DRV_MODULE_NAME "niu"
David S. Miller3cfa8562010-04-22 15:48:17 -070036#define DRV_MODULE_VERSION "1.1"
37#define DRV_MODULE_RELDATE "Apr 22, 2010"
David S. Millera3138df2007-10-09 01:54:01 -070038
39static char version[] __devinitdata =
40 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
41
42MODULE_AUTHOR("David S. Miller (davem@davemloft.net)");
43MODULE_DESCRIPTION("NIU ethernet driver");
44MODULE_LICENSE("GPL");
45MODULE_VERSION(DRV_MODULE_VERSION);
46
David S. Millera3138df2007-10-09 01:54:01 -070047#ifndef readq
48static u64 readq(void __iomem *reg)
49{
David S. Millere23a59e2008-11-12 14:32:54 -080050 return ((u64) readl(reg)) | (((u64) readl(reg + 4UL)) << 32);
David S. Millera3138df2007-10-09 01:54:01 -070051}
52
53static void writeq(u64 val, void __iomem *reg)
54{
55 writel(val & 0xffffffff, reg);
56 writel(val >> 32, reg + 0x4UL);
57}
58#endif
59
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000060static DEFINE_PCI_DEVICE_TABLE(niu_pci_tbl) = {
David S. Millera3138df2007-10-09 01:54:01 -070061 {PCI_DEVICE(PCI_VENDOR_ID_SUN, 0xabcd)},
62 {}
63};
64
65MODULE_DEVICE_TABLE(pci, niu_pci_tbl);
66
67#define NIU_TX_TIMEOUT (5 * HZ)
68
69#define nr64(reg) readq(np->regs + (reg))
70#define nw64(reg, val) writeq((val), np->regs + (reg))
71
72#define nr64_mac(reg) readq(np->mac_regs + (reg))
73#define nw64_mac(reg, val) writeq((val), np->mac_regs + (reg))
74
75#define nr64_ipp(reg) readq(np->regs + np->ipp_off + (reg))
76#define nw64_ipp(reg, val) writeq((val), np->regs + np->ipp_off + (reg))
77
78#define nr64_pcs(reg) readq(np->regs + np->pcs_off + (reg))
79#define nw64_pcs(reg, val) writeq((val), np->regs + np->pcs_off + (reg))
80
81#define nr64_xpcs(reg) readq(np->regs + np->xpcs_off + (reg))
82#define nw64_xpcs(reg, val) writeq((val), np->regs + np->xpcs_off + (reg))
83
84#define NIU_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
85
86static int niu_debug;
87static int debug = -1;
88module_param(debug, int, 0);
89MODULE_PARM_DESC(debug, "NIU debug level");
90
David S. Millera3138df2007-10-09 01:54:01 -070091#define niu_lock_parent(np, flags) \
92 spin_lock_irqsave(&np->parent->lock, flags)
93#define niu_unlock_parent(np, flags) \
94 spin_unlock_irqrestore(&np->parent->lock, flags)
95
Matheos Worku5fbd7e22008-02-28 21:25:43 -080096static int serdes_init_10g_serdes(struct niu *np);
97
David S. Millera3138df2007-10-09 01:54:01 -070098static int __niu_wait_bits_clear_mac(struct niu *np, unsigned long reg,
99 u64 bits, int limit, int delay)
100{
101 while (--limit >= 0) {
102 u64 val = nr64_mac(reg);
103
104 if (!(val & bits))
105 break;
106 udelay(delay);
107 }
108 if (limit < 0)
109 return -ENODEV;
110 return 0;
111}
112
113static int __niu_set_and_wait_clear_mac(struct niu *np, unsigned long reg,
114 u64 bits, int limit, int delay,
115 const char *reg_name)
116{
117 int err;
118
119 nw64_mac(reg, bits);
120 err = __niu_wait_bits_clear_mac(np, reg, bits, limit, delay);
121 if (err)
Joe Perchesf10a1f22010-02-14 22:40:39 -0800122 netdev_err(np->dev, "bits (%llx) of register %s would not clear, val[%llx]\n",
123 (unsigned long long)bits, reg_name,
124 (unsigned long long)nr64_mac(reg));
David S. Millera3138df2007-10-09 01:54:01 -0700125 return err;
126}
127
128#define niu_set_and_wait_clear_mac(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
129({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
130 __niu_set_and_wait_clear_mac(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
131})
132
133static int __niu_wait_bits_clear_ipp(struct niu *np, unsigned long reg,
134 u64 bits, int limit, int delay)
135{
136 while (--limit >= 0) {
137 u64 val = nr64_ipp(reg);
138
139 if (!(val & bits))
140 break;
141 udelay(delay);
142 }
143 if (limit < 0)
144 return -ENODEV;
145 return 0;
146}
147
148static int __niu_set_and_wait_clear_ipp(struct niu *np, unsigned long reg,
149 u64 bits, int limit, int delay,
150 const char *reg_name)
151{
152 int err;
153 u64 val;
154
155 val = nr64_ipp(reg);
156 val |= bits;
157 nw64_ipp(reg, val);
158
159 err = __niu_wait_bits_clear_ipp(np, reg, bits, limit, delay);
160 if (err)
Joe Perchesf10a1f22010-02-14 22:40:39 -0800161 netdev_err(np->dev, "bits (%llx) of register %s would not clear, val[%llx]\n",
162 (unsigned long long)bits, reg_name,
163 (unsigned long long)nr64_ipp(reg));
David S. Millera3138df2007-10-09 01:54:01 -0700164 return err;
165}
166
167#define niu_set_and_wait_clear_ipp(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
168({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
169 __niu_set_and_wait_clear_ipp(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
170})
171
172static int __niu_wait_bits_clear(struct niu *np, unsigned long reg,
173 u64 bits, int limit, int delay)
174{
175 while (--limit >= 0) {
176 u64 val = nr64(reg);
177
178 if (!(val & bits))
179 break;
180 udelay(delay);
181 }
182 if (limit < 0)
183 return -ENODEV;
184 return 0;
185}
186
187#define niu_wait_bits_clear(NP, REG, BITS, LIMIT, DELAY) \
188({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
189 __niu_wait_bits_clear(NP, REG, BITS, LIMIT, DELAY); \
190})
191
192static int __niu_set_and_wait_clear(struct niu *np, unsigned long reg,
193 u64 bits, int limit, int delay,
194 const char *reg_name)
195{
196 int err;
197
198 nw64(reg, bits);
199 err = __niu_wait_bits_clear(np, reg, bits, limit, delay);
200 if (err)
Joe Perchesf10a1f22010-02-14 22:40:39 -0800201 netdev_err(np->dev, "bits (%llx) of register %s would not clear, val[%llx]\n",
202 (unsigned long long)bits, reg_name,
203 (unsigned long long)nr64(reg));
David S. Millera3138df2007-10-09 01:54:01 -0700204 return err;
205}
206
207#define niu_set_and_wait_clear(NP, REG, BITS, LIMIT, DELAY, REG_NAME) \
208({ BUILD_BUG_ON(LIMIT <= 0 || DELAY < 0); \
209 __niu_set_and_wait_clear(NP, REG, BITS, LIMIT, DELAY, REG_NAME); \
210})
211
212static void niu_ldg_rearm(struct niu *np, struct niu_ldg *lp, int on)
213{
214 u64 val = (u64) lp->timer;
215
216 if (on)
217 val |= LDG_IMGMT_ARM;
218
219 nw64(LDG_IMGMT(lp->ldg_num), val);
220}
221
222static int niu_ldn_irq_enable(struct niu *np, int ldn, int on)
223{
224 unsigned long mask_reg, bits;
225 u64 val;
226
227 if (ldn < 0 || ldn > LDN_MAX)
228 return -EINVAL;
229
230 if (ldn < 64) {
231 mask_reg = LD_IM0(ldn);
232 bits = LD_IM0_MASK;
233 } else {
234 mask_reg = LD_IM1(ldn - 64);
235 bits = LD_IM1_MASK;
236 }
237
238 val = nr64(mask_reg);
239 if (on)
240 val &= ~bits;
241 else
242 val |= bits;
243 nw64(mask_reg, val);
244
245 return 0;
246}
247
248static int niu_enable_ldn_in_ldg(struct niu *np, struct niu_ldg *lp, int on)
249{
250 struct niu_parent *parent = np->parent;
251 int i;
252
253 for (i = 0; i <= LDN_MAX; i++) {
254 int err;
255
256 if (parent->ldg_map[i] != lp->ldg_num)
257 continue;
258
259 err = niu_ldn_irq_enable(np, i, on);
260 if (err)
261 return err;
262 }
263 return 0;
264}
265
266static int niu_enable_interrupts(struct niu *np, int on)
267{
268 int i;
269
270 for (i = 0; i < np->num_ldg; i++) {
271 struct niu_ldg *lp = &np->ldg[i];
272 int err;
273
274 err = niu_enable_ldn_in_ldg(np, lp, on);
275 if (err)
276 return err;
277 }
278 for (i = 0; i < np->num_ldg; i++)
279 niu_ldg_rearm(np, &np->ldg[i], on);
280
281 return 0;
282}
283
284static u32 phy_encode(u32 type, int port)
285{
Eric Dumazet807540b2010-09-23 05:40:09 +0000286 return type << (port * 2);
David S. Millera3138df2007-10-09 01:54:01 -0700287}
288
289static u32 phy_decode(u32 val, int port)
290{
291 return (val >> (port * 2)) & PORT_TYPE_MASK;
292}
293
294static int mdio_wait(struct niu *np)
295{
296 int limit = 1000;
297 u64 val;
298
299 while (--limit > 0) {
300 val = nr64(MIF_FRAME_OUTPUT);
301 if ((val >> MIF_FRAME_OUTPUT_TA_SHIFT) & 0x1)
302 return val & MIF_FRAME_OUTPUT_DATA;
303
304 udelay(10);
305 }
306
307 return -ENODEV;
308}
309
310static int mdio_read(struct niu *np, int port, int dev, int reg)
311{
312 int err;
313
314 nw64(MIF_FRAME_OUTPUT, MDIO_ADDR_OP(port, dev, reg));
315 err = mdio_wait(np);
316 if (err < 0)
317 return err;
318
319 nw64(MIF_FRAME_OUTPUT, MDIO_READ_OP(port, dev));
320 return mdio_wait(np);
321}
322
323static int mdio_write(struct niu *np, int port, int dev, int reg, int data)
324{
325 int err;
326
327 nw64(MIF_FRAME_OUTPUT, MDIO_ADDR_OP(port, dev, reg));
328 err = mdio_wait(np);
329 if (err < 0)
330 return err;
331
332 nw64(MIF_FRAME_OUTPUT, MDIO_WRITE_OP(port, dev, data));
333 err = mdio_wait(np);
334 if (err < 0)
335 return err;
336
337 return 0;
338}
339
340static int mii_read(struct niu *np, int port, int reg)
341{
342 nw64(MIF_FRAME_OUTPUT, MII_READ_OP(port, reg));
343 return mdio_wait(np);
344}
345
346static int mii_write(struct niu *np, int port, int reg, int data)
347{
348 int err;
349
350 nw64(MIF_FRAME_OUTPUT, MII_WRITE_OP(port, reg, data));
351 err = mdio_wait(np);
352 if (err < 0)
353 return err;
354
355 return 0;
356}
357
358static int esr2_set_tx_cfg(struct niu *np, unsigned long channel, u32 val)
359{
360 int err;
361
362 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
363 ESR2_TI_PLL_TX_CFG_L(channel),
364 val & 0xffff);
365 if (!err)
366 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
367 ESR2_TI_PLL_TX_CFG_H(channel),
368 val >> 16);
369 return err;
370}
371
372static int esr2_set_rx_cfg(struct niu *np, unsigned long channel, u32 val)
373{
374 int err;
375
376 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
377 ESR2_TI_PLL_RX_CFG_L(channel),
378 val & 0xffff);
379 if (!err)
380 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
381 ESR2_TI_PLL_RX_CFG_H(channel),
382 val >> 16);
383 return err;
384}
385
386/* Mode is always 10G fiber. */
Santwona Beherae3e081e2008-11-14 14:44:08 -0800387static int serdes_init_niu_10g_fiber(struct niu *np)
David S. Millera3138df2007-10-09 01:54:01 -0700388{
389 struct niu_link_config *lp = &np->link_config;
390 u32 tx_cfg, rx_cfg;
391 unsigned long i;
392
393 tx_cfg = (PLL_TX_CFG_ENTX | PLL_TX_CFG_SWING_1375MV);
394 rx_cfg = (PLL_RX_CFG_ENRX | PLL_RX_CFG_TERM_0P8VDDT |
395 PLL_RX_CFG_ALIGN_ENA | PLL_RX_CFG_LOS_LTHRESH |
396 PLL_RX_CFG_EQ_LP_ADAPTIVE);
397
398 if (lp->loopback_mode == LOOPBACK_PHY) {
399 u16 test_cfg = PLL_TEST_CFG_LOOPBACK_CML_DIS;
400
401 mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
402 ESR2_TI_PLL_TEST_CFG_L, test_cfg);
403
404 tx_cfg |= PLL_TX_CFG_ENTEST;
405 rx_cfg |= PLL_RX_CFG_ENTEST;
406 }
407
408 /* Initialize all 4 lanes of the SERDES. */
409 for (i = 0; i < 4; i++) {
410 int err = esr2_set_tx_cfg(np, i, tx_cfg);
411 if (err)
412 return err;
413 }
414
415 for (i = 0; i < 4; i++) {
416 int err = esr2_set_rx_cfg(np, i, rx_cfg);
417 if (err)
418 return err;
419 }
420
421 return 0;
422}
423
Santwona Beherae3e081e2008-11-14 14:44:08 -0800424static int serdes_init_niu_1g_serdes(struct niu *np)
425{
426 struct niu_link_config *lp = &np->link_config;
427 u16 pll_cfg, pll_sts;
428 int max_retry = 100;
Ingo Molnar51e0f052008-11-25 16:48:12 -0800429 u64 uninitialized_var(sig), mask, val;
Santwona Beherae3e081e2008-11-14 14:44:08 -0800430 u32 tx_cfg, rx_cfg;
431 unsigned long i;
432 int err;
433
434 tx_cfg = (PLL_TX_CFG_ENTX | PLL_TX_CFG_SWING_1375MV |
435 PLL_TX_CFG_RATE_HALF);
436 rx_cfg = (PLL_RX_CFG_ENRX | PLL_RX_CFG_TERM_0P8VDDT |
437 PLL_RX_CFG_ALIGN_ENA | PLL_RX_CFG_LOS_LTHRESH |
438 PLL_RX_CFG_RATE_HALF);
439
440 if (np->port == 0)
441 rx_cfg |= PLL_RX_CFG_EQ_LP_ADAPTIVE;
442
443 if (lp->loopback_mode == LOOPBACK_PHY) {
444 u16 test_cfg = PLL_TEST_CFG_LOOPBACK_CML_DIS;
445
446 mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
447 ESR2_TI_PLL_TEST_CFG_L, test_cfg);
448
449 tx_cfg |= PLL_TX_CFG_ENTEST;
450 rx_cfg |= PLL_RX_CFG_ENTEST;
451 }
452
453 /* Initialize PLL for 1G */
454 pll_cfg = (PLL_CFG_ENPLL | PLL_CFG_MPY_8X);
455
456 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
457 ESR2_TI_PLL_CFG_L, pll_cfg);
458 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -0800459 netdev_err(np->dev, "NIU Port %d %s() mdio write to ESR2_TI_PLL_CFG_L failed\n",
460 np->port, __func__);
Santwona Beherae3e081e2008-11-14 14:44:08 -0800461 return err;
462 }
463
464 pll_sts = PLL_CFG_ENPLL;
465
466 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
467 ESR2_TI_PLL_STS_L, pll_sts);
468 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -0800469 netdev_err(np->dev, "NIU Port %d %s() mdio write to ESR2_TI_PLL_STS_L failed\n",
470 np->port, __func__);
Santwona Beherae3e081e2008-11-14 14:44:08 -0800471 return err;
472 }
473
474 udelay(200);
475
476 /* Initialize all 4 lanes of the SERDES. */
477 for (i = 0; i < 4; i++) {
478 err = esr2_set_tx_cfg(np, i, tx_cfg);
479 if (err)
480 return err;
481 }
482
483 for (i = 0; i < 4; i++) {
484 err = esr2_set_rx_cfg(np, i, rx_cfg);
485 if (err)
486 return err;
487 }
488
489 switch (np->port) {
490 case 0:
491 val = (ESR_INT_SRDY0_P0 | ESR_INT_DET0_P0);
492 mask = val;
493 break;
494
495 case 1:
496 val = (ESR_INT_SRDY0_P1 | ESR_INT_DET0_P1);
497 mask = val;
498 break;
499
500 default:
501 return -EINVAL;
502 }
503
504 while (max_retry--) {
505 sig = nr64(ESR_INT_SIGNALS);
506 if ((sig & mask) == val)
507 break;
508
509 mdelay(500);
510 }
511
512 if ((sig & mask) != val) {
Joe Perchesf10a1f22010-02-14 22:40:39 -0800513 netdev_err(np->dev, "Port %u signal bits [%08x] are not [%08x]\n",
514 np->port, (int)(sig & mask), (int)val);
Santwona Beherae3e081e2008-11-14 14:44:08 -0800515 return -ENODEV;
516 }
517
518 return 0;
519}
520
521static int serdes_init_niu_10g_serdes(struct niu *np)
522{
523 struct niu_link_config *lp = &np->link_config;
524 u32 tx_cfg, rx_cfg, pll_cfg, pll_sts;
525 int max_retry = 100;
Ingo Molnar51e0f052008-11-25 16:48:12 -0800526 u64 uninitialized_var(sig), mask, val;
Santwona Beherae3e081e2008-11-14 14:44:08 -0800527 unsigned long i;
528 int err;
529
530 tx_cfg = (PLL_TX_CFG_ENTX | PLL_TX_CFG_SWING_1375MV);
531 rx_cfg = (PLL_RX_CFG_ENRX | PLL_RX_CFG_TERM_0P8VDDT |
532 PLL_RX_CFG_ALIGN_ENA | PLL_RX_CFG_LOS_LTHRESH |
533 PLL_RX_CFG_EQ_LP_ADAPTIVE);
534
535 if (lp->loopback_mode == LOOPBACK_PHY) {
536 u16 test_cfg = PLL_TEST_CFG_LOOPBACK_CML_DIS;
537
538 mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
539 ESR2_TI_PLL_TEST_CFG_L, test_cfg);
540
541 tx_cfg |= PLL_TX_CFG_ENTEST;
542 rx_cfg |= PLL_RX_CFG_ENTEST;
543 }
544
545 /* Initialize PLL for 10G */
546 pll_cfg = (PLL_CFG_ENPLL | PLL_CFG_MPY_10X);
547
548 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
549 ESR2_TI_PLL_CFG_L, pll_cfg & 0xffff);
550 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -0800551 netdev_err(np->dev, "NIU Port %d %s() mdio write to ESR2_TI_PLL_CFG_L failed\n",
552 np->port, __func__);
Santwona Beherae3e081e2008-11-14 14:44:08 -0800553 return err;
554 }
555
556 pll_sts = PLL_CFG_ENPLL;
557
558 err = mdio_write(np, np->port, NIU_ESR2_DEV_ADDR,
559 ESR2_TI_PLL_STS_L, pll_sts & 0xffff);
560 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -0800561 netdev_err(np->dev, "NIU Port %d %s() mdio write to ESR2_TI_PLL_STS_L failed\n",
562 np->port, __func__);
Santwona Beherae3e081e2008-11-14 14:44:08 -0800563 return err;
564 }
565
566 udelay(200);
567
568 /* Initialize all 4 lanes of the SERDES. */
569 for (i = 0; i < 4; i++) {
570 err = esr2_set_tx_cfg(np, i, tx_cfg);
571 if (err)
572 return err;
573 }
574
575 for (i = 0; i < 4; i++) {
576 err = esr2_set_rx_cfg(np, i, rx_cfg);
577 if (err)
578 return err;
579 }
580
581 /* check if serdes is ready */
582
583 switch (np->port) {
584 case 0:
585 mask = ESR_INT_SIGNALS_P0_BITS;
586 val = (ESR_INT_SRDY0_P0 |
587 ESR_INT_DET0_P0 |
588 ESR_INT_XSRDY_P0 |
589 ESR_INT_XDP_P0_CH3 |
590 ESR_INT_XDP_P0_CH2 |
591 ESR_INT_XDP_P0_CH1 |
592 ESR_INT_XDP_P0_CH0);
593 break;
594
595 case 1:
596 mask = ESR_INT_SIGNALS_P1_BITS;
597 val = (ESR_INT_SRDY0_P1 |
598 ESR_INT_DET0_P1 |
599 ESR_INT_XSRDY_P1 |
600 ESR_INT_XDP_P1_CH3 |
601 ESR_INT_XDP_P1_CH2 |
602 ESR_INT_XDP_P1_CH1 |
603 ESR_INT_XDP_P1_CH0);
604 break;
605
606 default:
607 return -EINVAL;
608 }
609
610 while (max_retry--) {
611 sig = nr64(ESR_INT_SIGNALS);
612 if ((sig & mask) == val)
613 break;
614
615 mdelay(500);
616 }
617
618 if ((sig & mask) != val) {
Joe Perchesf10a1f22010-02-14 22:40:39 -0800619 pr_info("NIU Port %u signal bits [%08x] are not [%08x] for 10G...trying 1G\n",
620 np->port, (int)(sig & mask), (int)val);
Santwona Beherae3e081e2008-11-14 14:44:08 -0800621
622 /* 10G failed, try initializing at 1G */
623 err = serdes_init_niu_1g_serdes(np);
624 if (!err) {
625 np->flags &= ~NIU_FLAGS_10G;
626 np->mac_xcvr = MAC_XCVR_PCS;
627 } else {
Joe Perchesf10a1f22010-02-14 22:40:39 -0800628 netdev_err(np->dev, "Port %u 10G/1G SERDES Link Failed\n",
629 np->port);
Santwona Beherae3e081e2008-11-14 14:44:08 -0800630 return -ENODEV;
631 }
632 }
633 return 0;
634}
635
David S. Millera3138df2007-10-09 01:54:01 -0700636static int esr_read_rxtx_ctrl(struct niu *np, unsigned long chan, u32 *val)
637{
638 int err;
639
640 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR, ESR_RXTX_CTRL_L(chan));
641 if (err >= 0) {
642 *val = (err & 0xffff);
643 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
644 ESR_RXTX_CTRL_H(chan));
645 if (err >= 0)
646 *val |= ((err & 0xffff) << 16);
647 err = 0;
648 }
649 return err;
650}
651
652static int esr_read_glue0(struct niu *np, unsigned long chan, u32 *val)
653{
654 int err;
655
656 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
657 ESR_GLUE_CTRL0_L(chan));
658 if (err >= 0) {
659 *val = (err & 0xffff);
660 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
661 ESR_GLUE_CTRL0_H(chan));
662 if (err >= 0) {
663 *val |= ((err & 0xffff) << 16);
664 err = 0;
665 }
666 }
667 return err;
668}
669
670static int esr_read_reset(struct niu *np, u32 *val)
671{
672 int err;
673
674 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
675 ESR_RXTX_RESET_CTRL_L);
676 if (err >= 0) {
677 *val = (err & 0xffff);
678 err = mdio_read(np, np->port, NIU_ESR_DEV_ADDR,
679 ESR_RXTX_RESET_CTRL_H);
680 if (err >= 0) {
681 *val |= ((err & 0xffff) << 16);
682 err = 0;
683 }
684 }
685 return err;
686}
687
688static int esr_write_rxtx_ctrl(struct niu *np, unsigned long chan, u32 val)
689{
690 int err;
691
692 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
693 ESR_RXTX_CTRL_L(chan), val & 0xffff);
694 if (!err)
695 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
696 ESR_RXTX_CTRL_H(chan), (val >> 16));
697 return err;
698}
699
700static int esr_write_glue0(struct niu *np, unsigned long chan, u32 val)
701{
702 int err;
703
704 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
705 ESR_GLUE_CTRL0_L(chan), val & 0xffff);
706 if (!err)
707 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
708 ESR_GLUE_CTRL0_H(chan), (val >> 16));
709 return err;
710}
711
712static int esr_reset(struct niu *np)
713{
Ingo Molnarf1664002008-11-25 16:48:42 -0800714 u32 uninitialized_var(reset);
David S. Millera3138df2007-10-09 01:54:01 -0700715 int err;
716
717 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
718 ESR_RXTX_RESET_CTRL_L, 0x0000);
719 if (err)
720 return err;
721 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
722 ESR_RXTX_RESET_CTRL_H, 0xffff);
723 if (err)
724 return err;
725 udelay(200);
726
727 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
728 ESR_RXTX_RESET_CTRL_L, 0xffff);
729 if (err)
730 return err;
731 udelay(200);
732
733 err = mdio_write(np, np->port, NIU_ESR_DEV_ADDR,
734 ESR_RXTX_RESET_CTRL_H, 0x0000);
735 if (err)
736 return err;
737 udelay(200);
738
739 err = esr_read_reset(np, &reset);
740 if (err)
741 return err;
742 if (reset != 0) {
Joe Perchesf10a1f22010-02-14 22:40:39 -0800743 netdev_err(np->dev, "Port %u ESR_RESET did not clear [%08x]\n",
744 np->port, reset);
David S. Millera3138df2007-10-09 01:54:01 -0700745 return -ENODEV;
746 }
747
748 return 0;
749}
750
751static int serdes_init_10g(struct niu *np)
752{
753 struct niu_link_config *lp = &np->link_config;
754 unsigned long ctrl_reg, test_cfg_reg, i;
755 u64 ctrl_val, test_cfg_val, sig, mask, val;
756 int err;
757
758 switch (np->port) {
759 case 0:
760 ctrl_reg = ENET_SERDES_0_CTRL_CFG;
761 test_cfg_reg = ENET_SERDES_0_TEST_CFG;
762 break;
763 case 1:
764 ctrl_reg = ENET_SERDES_1_CTRL_CFG;
765 test_cfg_reg = ENET_SERDES_1_TEST_CFG;
766 break;
767
768 default:
769 return -EINVAL;
770 }
771 ctrl_val = (ENET_SERDES_CTRL_SDET_0 |
772 ENET_SERDES_CTRL_SDET_1 |
773 ENET_SERDES_CTRL_SDET_2 |
774 ENET_SERDES_CTRL_SDET_3 |
775 (0x5 << ENET_SERDES_CTRL_EMPH_0_SHIFT) |
776 (0x5 << ENET_SERDES_CTRL_EMPH_1_SHIFT) |
777 (0x5 << ENET_SERDES_CTRL_EMPH_2_SHIFT) |
778 (0x5 << ENET_SERDES_CTRL_EMPH_3_SHIFT) |
779 (0x1 << ENET_SERDES_CTRL_LADJ_0_SHIFT) |
780 (0x1 << ENET_SERDES_CTRL_LADJ_1_SHIFT) |
781 (0x1 << ENET_SERDES_CTRL_LADJ_2_SHIFT) |
782 (0x1 << ENET_SERDES_CTRL_LADJ_3_SHIFT));
783 test_cfg_val = 0;
784
785 if (lp->loopback_mode == LOOPBACK_PHY) {
786 test_cfg_val |= ((ENET_TEST_MD_PAD_LOOPBACK <<
787 ENET_SERDES_TEST_MD_0_SHIFT) |
788 (ENET_TEST_MD_PAD_LOOPBACK <<
789 ENET_SERDES_TEST_MD_1_SHIFT) |
790 (ENET_TEST_MD_PAD_LOOPBACK <<
791 ENET_SERDES_TEST_MD_2_SHIFT) |
792 (ENET_TEST_MD_PAD_LOOPBACK <<
793 ENET_SERDES_TEST_MD_3_SHIFT));
794 }
795
796 nw64(ctrl_reg, ctrl_val);
797 nw64(test_cfg_reg, test_cfg_val);
798
799 /* Initialize all 4 lanes of the SERDES. */
800 for (i = 0; i < 4; i++) {
801 u32 rxtx_ctrl, glue0;
802
803 err = esr_read_rxtx_ctrl(np, i, &rxtx_ctrl);
804 if (err)
805 return err;
806 err = esr_read_glue0(np, i, &glue0);
807 if (err)
808 return err;
809
810 rxtx_ctrl &= ~(ESR_RXTX_CTRL_VMUXLO);
811 rxtx_ctrl |= (ESR_RXTX_CTRL_ENSTRETCH |
812 (2 << ESR_RXTX_CTRL_VMUXLO_SHIFT));
813
814 glue0 &= ~(ESR_GLUE_CTRL0_SRATE |
815 ESR_GLUE_CTRL0_THCNT |
816 ESR_GLUE_CTRL0_BLTIME);
817 glue0 |= (ESR_GLUE_CTRL0_RXLOSENAB |
818 (0xf << ESR_GLUE_CTRL0_SRATE_SHIFT) |
819 (0xff << ESR_GLUE_CTRL0_THCNT_SHIFT) |
820 (BLTIME_300_CYCLES <<
821 ESR_GLUE_CTRL0_BLTIME_SHIFT));
822
823 err = esr_write_rxtx_ctrl(np, i, rxtx_ctrl);
824 if (err)
825 return err;
826 err = esr_write_glue0(np, i, glue0);
827 if (err)
828 return err;
829 }
830
831 err = esr_reset(np);
832 if (err)
833 return err;
834
835 sig = nr64(ESR_INT_SIGNALS);
836 switch (np->port) {
837 case 0:
838 mask = ESR_INT_SIGNALS_P0_BITS;
839 val = (ESR_INT_SRDY0_P0 |
840 ESR_INT_DET0_P0 |
841 ESR_INT_XSRDY_P0 |
842 ESR_INT_XDP_P0_CH3 |
843 ESR_INT_XDP_P0_CH2 |
844 ESR_INT_XDP_P0_CH1 |
845 ESR_INT_XDP_P0_CH0);
846 break;
847
848 case 1:
849 mask = ESR_INT_SIGNALS_P1_BITS;
850 val = (ESR_INT_SRDY0_P1 |
851 ESR_INT_DET0_P1 |
852 ESR_INT_XSRDY_P1 |
853 ESR_INT_XDP_P1_CH3 |
854 ESR_INT_XDP_P1_CH2 |
855 ESR_INT_XDP_P1_CH1 |
856 ESR_INT_XDP_P1_CH0);
857 break;
858
859 default:
860 return -EINVAL;
861 }
862
863 if ((sig & mask) != val) {
Matheos Workua5d6ab52008-04-24 21:09:20 -0700864 if (np->flags & NIU_FLAGS_HOTPLUG_PHY) {
865 np->flags &= ~NIU_FLAGS_HOTPLUG_PHY_PRESENT;
866 return 0;
867 }
Joe Perchesf10a1f22010-02-14 22:40:39 -0800868 netdev_err(np->dev, "Port %u signal bits [%08x] are not [%08x]\n",
869 np->port, (int)(sig & mask), (int)val);
David S. Millera3138df2007-10-09 01:54:01 -0700870 return -ENODEV;
871 }
Matheos Workua5d6ab52008-04-24 21:09:20 -0700872 if (np->flags & NIU_FLAGS_HOTPLUG_PHY)
873 np->flags |= NIU_FLAGS_HOTPLUG_PHY_PRESENT;
David S. Millera3138df2007-10-09 01:54:01 -0700874 return 0;
875}
876
877static int serdes_init_1g(struct niu *np)
878{
879 u64 val;
880
881 val = nr64(ENET_SERDES_1_PLL_CFG);
882 val &= ~ENET_SERDES_PLL_FBDIV2;
883 switch (np->port) {
884 case 0:
885 val |= ENET_SERDES_PLL_HRATE0;
886 break;
887 case 1:
888 val |= ENET_SERDES_PLL_HRATE1;
889 break;
890 case 2:
891 val |= ENET_SERDES_PLL_HRATE2;
892 break;
893 case 3:
894 val |= ENET_SERDES_PLL_HRATE3;
895 break;
896 default:
897 return -EINVAL;
898 }
899 nw64(ENET_SERDES_1_PLL_CFG, val);
900
901 return 0;
902}
903
Matheos Worku5fbd7e22008-02-28 21:25:43 -0800904static int serdes_init_1g_serdes(struct niu *np)
905{
906 struct niu_link_config *lp = &np->link_config;
907 unsigned long ctrl_reg, test_cfg_reg, pll_cfg, i;
908 u64 ctrl_val, test_cfg_val, sig, mask, val;
909 int err;
910 u64 reset_val, val_rd;
911
912 val = ENET_SERDES_PLL_HRATE0 | ENET_SERDES_PLL_HRATE1 |
913 ENET_SERDES_PLL_HRATE2 | ENET_SERDES_PLL_HRATE3 |
914 ENET_SERDES_PLL_FBDIV0;
915 switch (np->port) {
916 case 0:
917 reset_val = ENET_SERDES_RESET_0;
918 ctrl_reg = ENET_SERDES_0_CTRL_CFG;
919 test_cfg_reg = ENET_SERDES_0_TEST_CFG;
920 pll_cfg = ENET_SERDES_0_PLL_CFG;
921 break;
922 case 1:
923 reset_val = ENET_SERDES_RESET_1;
924 ctrl_reg = ENET_SERDES_1_CTRL_CFG;
925 test_cfg_reg = ENET_SERDES_1_TEST_CFG;
926 pll_cfg = ENET_SERDES_1_PLL_CFG;
927 break;
928
929 default:
930 return -EINVAL;
931 }
932 ctrl_val = (ENET_SERDES_CTRL_SDET_0 |
933 ENET_SERDES_CTRL_SDET_1 |
934 ENET_SERDES_CTRL_SDET_2 |
935 ENET_SERDES_CTRL_SDET_3 |
936 (0x5 << ENET_SERDES_CTRL_EMPH_0_SHIFT) |
937 (0x5 << ENET_SERDES_CTRL_EMPH_1_SHIFT) |
938 (0x5 << ENET_SERDES_CTRL_EMPH_2_SHIFT) |
939 (0x5 << ENET_SERDES_CTRL_EMPH_3_SHIFT) |
940 (0x1 << ENET_SERDES_CTRL_LADJ_0_SHIFT) |
941 (0x1 << ENET_SERDES_CTRL_LADJ_1_SHIFT) |
942 (0x1 << ENET_SERDES_CTRL_LADJ_2_SHIFT) |
943 (0x1 << ENET_SERDES_CTRL_LADJ_3_SHIFT));
944 test_cfg_val = 0;
945
946 if (lp->loopback_mode == LOOPBACK_PHY) {
947 test_cfg_val |= ((ENET_TEST_MD_PAD_LOOPBACK <<
948 ENET_SERDES_TEST_MD_0_SHIFT) |
949 (ENET_TEST_MD_PAD_LOOPBACK <<
950 ENET_SERDES_TEST_MD_1_SHIFT) |
951 (ENET_TEST_MD_PAD_LOOPBACK <<
952 ENET_SERDES_TEST_MD_2_SHIFT) |
953 (ENET_TEST_MD_PAD_LOOPBACK <<
954 ENET_SERDES_TEST_MD_3_SHIFT));
955 }
956
957 nw64(ENET_SERDES_RESET, reset_val);
958 mdelay(20);
959 val_rd = nr64(ENET_SERDES_RESET);
960 val_rd &= ~reset_val;
961 nw64(pll_cfg, val);
962 nw64(ctrl_reg, ctrl_val);
963 nw64(test_cfg_reg, test_cfg_val);
964 nw64(ENET_SERDES_RESET, val_rd);
965 mdelay(2000);
966
967 /* Initialize all 4 lanes of the SERDES. */
968 for (i = 0; i < 4; i++) {
969 u32 rxtx_ctrl, glue0;
970
971 err = esr_read_rxtx_ctrl(np, i, &rxtx_ctrl);
972 if (err)
973 return err;
974 err = esr_read_glue0(np, i, &glue0);
975 if (err)
976 return err;
977
978 rxtx_ctrl &= ~(ESR_RXTX_CTRL_VMUXLO);
979 rxtx_ctrl |= (ESR_RXTX_CTRL_ENSTRETCH |
980 (2 << ESR_RXTX_CTRL_VMUXLO_SHIFT));
981
982 glue0 &= ~(ESR_GLUE_CTRL0_SRATE |
983 ESR_GLUE_CTRL0_THCNT |
984 ESR_GLUE_CTRL0_BLTIME);
985 glue0 |= (ESR_GLUE_CTRL0_RXLOSENAB |
986 (0xf << ESR_GLUE_CTRL0_SRATE_SHIFT) |
987 (0xff << ESR_GLUE_CTRL0_THCNT_SHIFT) |
988 (BLTIME_300_CYCLES <<
989 ESR_GLUE_CTRL0_BLTIME_SHIFT));
990
991 err = esr_write_rxtx_ctrl(np, i, rxtx_ctrl);
992 if (err)
993 return err;
994 err = esr_write_glue0(np, i, glue0);
995 if (err)
996 return err;
997 }
998
999
1000 sig = nr64(ESR_INT_SIGNALS);
1001 switch (np->port) {
1002 case 0:
1003 val = (ESR_INT_SRDY0_P0 | ESR_INT_DET0_P0);
1004 mask = val;
1005 break;
1006
1007 case 1:
1008 val = (ESR_INT_SRDY0_P1 | ESR_INT_DET0_P1);
1009 mask = val;
1010 break;
1011
1012 default:
1013 return -EINVAL;
1014 }
1015
1016 if ((sig & mask) != val) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08001017 netdev_err(np->dev, "Port %u signal bits [%08x] are not [%08x]\n",
1018 np->port, (int)(sig & mask), (int)val);
Matheos Worku5fbd7e22008-02-28 21:25:43 -08001019 return -ENODEV;
1020 }
1021
1022 return 0;
1023}
1024
1025static int link_status_1g_serdes(struct niu *np, int *link_up_p)
1026{
1027 struct niu_link_config *lp = &np->link_config;
1028 int link_up;
1029 u64 val;
1030 u16 current_speed;
1031 unsigned long flags;
1032 u8 current_duplex;
1033
1034 link_up = 0;
1035 current_speed = SPEED_INVALID;
1036 current_duplex = DUPLEX_INVALID;
1037
1038 spin_lock_irqsave(&np->lock, flags);
1039
1040 val = nr64_pcs(PCS_MII_STAT);
1041
1042 if (val & PCS_MII_STAT_LINK_STATUS) {
1043 link_up = 1;
1044 current_speed = SPEED_1000;
1045 current_duplex = DUPLEX_FULL;
1046 }
1047
1048 lp->active_speed = current_speed;
1049 lp->active_duplex = current_duplex;
1050 spin_unlock_irqrestore(&np->lock, flags);
1051
1052 *link_up_p = link_up;
1053 return 0;
1054}
1055
Matheos Worku5fbd7e22008-02-28 21:25:43 -08001056static int link_status_10g_serdes(struct niu *np, int *link_up_p)
1057{
1058 unsigned long flags;
1059 struct niu_link_config *lp = &np->link_config;
1060 int link_up = 0;
1061 int link_ok = 1;
1062 u64 val, val2;
1063 u16 current_speed;
1064 u8 current_duplex;
1065
1066 if (!(np->flags & NIU_FLAGS_10G))
1067 return link_status_1g_serdes(np, link_up_p);
1068
1069 current_speed = SPEED_INVALID;
1070 current_duplex = DUPLEX_INVALID;
1071 spin_lock_irqsave(&np->lock, flags);
1072
1073 val = nr64_xpcs(XPCS_STATUS(0));
1074 val2 = nr64_mac(XMAC_INTER2);
1075 if (val2 & 0x01000000)
1076 link_ok = 0;
1077
1078 if ((val & 0x1000ULL) && link_ok) {
1079 link_up = 1;
1080 current_speed = SPEED_10000;
1081 current_duplex = DUPLEX_FULL;
1082 }
1083 lp->active_speed = current_speed;
1084 lp->active_duplex = current_duplex;
1085 spin_unlock_irqrestore(&np->lock, flags);
1086 *link_up_p = link_up;
1087 return 0;
1088}
1089
Constantin Baranov38bb045d2009-02-18 17:53:20 -08001090static int link_status_mii(struct niu *np, int *link_up_p)
1091{
1092 struct niu_link_config *lp = &np->link_config;
1093 int err;
1094 int bmsr, advert, ctrl1000, stat1000, lpa, bmcr, estatus;
1095 int supported, advertising, active_speed, active_duplex;
1096
1097 err = mii_read(np, np->phy_addr, MII_BMCR);
1098 if (unlikely(err < 0))
1099 return err;
1100 bmcr = err;
1101
1102 err = mii_read(np, np->phy_addr, MII_BMSR);
1103 if (unlikely(err < 0))
1104 return err;
1105 bmsr = err;
1106
1107 err = mii_read(np, np->phy_addr, MII_ADVERTISE);
1108 if (unlikely(err < 0))
1109 return err;
1110 advert = err;
1111
1112 err = mii_read(np, np->phy_addr, MII_LPA);
1113 if (unlikely(err < 0))
1114 return err;
1115 lpa = err;
1116
1117 if (likely(bmsr & BMSR_ESTATEN)) {
1118 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1119 if (unlikely(err < 0))
1120 return err;
1121 estatus = err;
1122
1123 err = mii_read(np, np->phy_addr, MII_CTRL1000);
1124 if (unlikely(err < 0))
1125 return err;
1126 ctrl1000 = err;
1127
1128 err = mii_read(np, np->phy_addr, MII_STAT1000);
1129 if (unlikely(err < 0))
1130 return err;
1131 stat1000 = err;
1132 } else
1133 estatus = ctrl1000 = stat1000 = 0;
1134
1135 supported = 0;
1136 if (bmsr & BMSR_ANEGCAPABLE)
1137 supported |= SUPPORTED_Autoneg;
1138 if (bmsr & BMSR_10HALF)
1139 supported |= SUPPORTED_10baseT_Half;
1140 if (bmsr & BMSR_10FULL)
1141 supported |= SUPPORTED_10baseT_Full;
1142 if (bmsr & BMSR_100HALF)
1143 supported |= SUPPORTED_100baseT_Half;
1144 if (bmsr & BMSR_100FULL)
1145 supported |= SUPPORTED_100baseT_Full;
1146 if (estatus & ESTATUS_1000_THALF)
1147 supported |= SUPPORTED_1000baseT_Half;
1148 if (estatus & ESTATUS_1000_TFULL)
1149 supported |= SUPPORTED_1000baseT_Full;
1150 lp->supported = supported;
1151
1152 advertising = 0;
1153 if (advert & ADVERTISE_10HALF)
1154 advertising |= ADVERTISED_10baseT_Half;
1155 if (advert & ADVERTISE_10FULL)
1156 advertising |= ADVERTISED_10baseT_Full;
1157 if (advert & ADVERTISE_100HALF)
1158 advertising |= ADVERTISED_100baseT_Half;
1159 if (advert & ADVERTISE_100FULL)
1160 advertising |= ADVERTISED_100baseT_Full;
1161 if (ctrl1000 & ADVERTISE_1000HALF)
1162 advertising |= ADVERTISED_1000baseT_Half;
1163 if (ctrl1000 & ADVERTISE_1000FULL)
1164 advertising |= ADVERTISED_1000baseT_Full;
1165
1166 if (bmcr & BMCR_ANENABLE) {
1167 int neg, neg1000;
1168
1169 lp->active_autoneg = 1;
1170 advertising |= ADVERTISED_Autoneg;
1171
1172 neg = advert & lpa;
1173 neg1000 = (ctrl1000 << 2) & stat1000;
1174
1175 if (neg1000 & (LPA_1000FULL | LPA_1000HALF))
1176 active_speed = SPEED_1000;
1177 else if (neg & LPA_100)
1178 active_speed = SPEED_100;
1179 else if (neg & (LPA_10HALF | LPA_10FULL))
1180 active_speed = SPEED_10;
1181 else
1182 active_speed = SPEED_INVALID;
1183
1184 if ((neg1000 & LPA_1000FULL) || (neg & LPA_DUPLEX))
1185 active_duplex = DUPLEX_FULL;
1186 else if (active_speed != SPEED_INVALID)
1187 active_duplex = DUPLEX_HALF;
1188 else
1189 active_duplex = DUPLEX_INVALID;
1190 } else {
1191 lp->active_autoneg = 0;
1192
1193 if ((bmcr & BMCR_SPEED1000) && !(bmcr & BMCR_SPEED100))
1194 active_speed = SPEED_1000;
1195 else if (bmcr & BMCR_SPEED100)
1196 active_speed = SPEED_100;
1197 else
1198 active_speed = SPEED_10;
1199
1200 if (bmcr & BMCR_FULLDPLX)
1201 active_duplex = DUPLEX_FULL;
1202 else
1203 active_duplex = DUPLEX_HALF;
1204 }
1205
1206 lp->active_advertising = advertising;
1207 lp->active_speed = active_speed;
1208 lp->active_duplex = active_duplex;
1209 *link_up_p = !!(bmsr & BMSR_LSTATUS);
1210
1211 return 0;
1212}
1213
Matheos Worku5fbd7e22008-02-28 21:25:43 -08001214static int link_status_1g_rgmii(struct niu *np, int *link_up_p)
1215{
1216 struct niu_link_config *lp = &np->link_config;
1217 u16 current_speed, bmsr;
1218 unsigned long flags;
1219 u8 current_duplex;
1220 int err, link_up;
1221
1222 link_up = 0;
1223 current_speed = SPEED_INVALID;
1224 current_duplex = DUPLEX_INVALID;
1225
1226 spin_lock_irqsave(&np->lock, flags);
1227
1228 err = -EINVAL;
1229
1230 err = mii_read(np, np->phy_addr, MII_BMSR);
1231 if (err < 0)
1232 goto out;
1233
1234 bmsr = err;
1235 if (bmsr & BMSR_LSTATUS) {
1236 u16 adv, lpa, common, estat;
1237
1238 err = mii_read(np, np->phy_addr, MII_ADVERTISE);
1239 if (err < 0)
1240 goto out;
1241 adv = err;
1242
1243 err = mii_read(np, np->phy_addr, MII_LPA);
1244 if (err < 0)
1245 goto out;
1246 lpa = err;
1247
1248 common = adv & lpa;
1249
1250 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1251 if (err < 0)
1252 goto out;
1253 estat = err;
1254 link_up = 1;
1255 current_speed = SPEED_1000;
1256 current_duplex = DUPLEX_FULL;
1257
1258 }
1259 lp->active_speed = current_speed;
1260 lp->active_duplex = current_duplex;
1261 err = 0;
1262
1263out:
1264 spin_unlock_irqrestore(&np->lock, flags);
1265
1266 *link_up_p = link_up;
1267 return err;
1268}
1269
Constantin Baranov38bb045d2009-02-18 17:53:20 -08001270static int link_status_1g(struct niu *np, int *link_up_p)
1271{
1272 struct niu_link_config *lp = &np->link_config;
1273 unsigned long flags;
1274 int err;
1275
1276 spin_lock_irqsave(&np->lock, flags);
1277
1278 err = link_status_mii(np, link_up_p);
1279 lp->supported |= SUPPORTED_TP;
1280 lp->active_advertising |= ADVERTISED_TP;
1281
1282 spin_unlock_irqrestore(&np->lock, flags);
1283 return err;
1284}
1285
David S. Millera3138df2007-10-09 01:54:01 -07001286static int bcm8704_reset(struct niu *np)
1287{
1288 int err, limit;
1289
1290 err = mdio_read(np, np->phy_addr,
1291 BCM8704_PHYXS_DEV_ADDR, MII_BMCR);
Tanli Chang9c5cd672009-05-26 20:45:50 -07001292 if (err < 0 || err == 0xffff)
David S. Millera3138df2007-10-09 01:54:01 -07001293 return err;
1294 err |= BMCR_RESET;
1295 err = mdio_write(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
1296 MII_BMCR, err);
1297 if (err)
1298 return err;
1299
1300 limit = 1000;
1301 while (--limit >= 0) {
1302 err = mdio_read(np, np->phy_addr,
1303 BCM8704_PHYXS_DEV_ADDR, MII_BMCR);
1304 if (err < 0)
1305 return err;
1306 if (!(err & BMCR_RESET))
1307 break;
1308 }
1309 if (limit < 0) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08001310 netdev_err(np->dev, "Port %u PHY will not reset (bmcr=%04x)\n",
1311 np->port, (err & 0xffff));
David S. Millera3138df2007-10-09 01:54:01 -07001312 return -ENODEV;
1313 }
1314 return 0;
1315}
1316
1317/* When written, certain PHY registers need to be read back twice
1318 * in order for the bits to settle properly.
1319 */
1320static int bcm8704_user_dev3_readback(struct niu *np, int reg)
1321{
1322 int err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, reg);
1323 if (err < 0)
1324 return err;
1325 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, reg);
1326 if (err < 0)
1327 return err;
1328 return 0;
1329}
1330
Matheos Workua5d6ab52008-04-24 21:09:20 -07001331static int bcm8706_init_user_dev3(struct niu *np)
1332{
1333 int err;
1334
1335
1336 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1337 BCM8704_USER_OPT_DIGITAL_CTRL);
1338 if (err < 0)
1339 return err;
1340 err &= ~USER_ODIG_CTRL_GPIOS;
1341 err |= (0x3 << USER_ODIG_CTRL_GPIOS_SHIFT);
1342 err |= USER_ODIG_CTRL_RESV2;
1343 err = mdio_write(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1344 BCM8704_USER_OPT_DIGITAL_CTRL, err);
1345 if (err)
1346 return err;
1347
1348 mdelay(1000);
1349
1350 return 0;
1351}
1352
David S. Millera3138df2007-10-09 01:54:01 -07001353static int bcm8704_init_user_dev3(struct niu *np)
1354{
1355 int err;
1356
1357 err = mdio_write(np, np->phy_addr,
1358 BCM8704_USER_DEV3_ADDR, BCM8704_USER_CONTROL,
1359 (USER_CONTROL_OPTXRST_LVL |
1360 USER_CONTROL_OPBIASFLT_LVL |
1361 USER_CONTROL_OBTMPFLT_LVL |
1362 USER_CONTROL_OPPRFLT_LVL |
1363 USER_CONTROL_OPTXFLT_LVL |
1364 USER_CONTROL_OPRXLOS_LVL |
1365 USER_CONTROL_OPRXFLT_LVL |
1366 USER_CONTROL_OPTXON_LVL |
1367 (0x3f << USER_CONTROL_RES1_SHIFT)));
1368 if (err)
1369 return err;
1370
1371 err = mdio_write(np, np->phy_addr,
1372 BCM8704_USER_DEV3_ADDR, BCM8704_USER_PMD_TX_CONTROL,
1373 (USER_PMD_TX_CTL_XFP_CLKEN |
1374 (1 << USER_PMD_TX_CTL_TX_DAC_TXD_SH) |
1375 (2 << USER_PMD_TX_CTL_TX_DAC_TXCK_SH) |
1376 USER_PMD_TX_CTL_TSCK_LPWREN));
1377 if (err)
1378 return err;
1379
1380 err = bcm8704_user_dev3_readback(np, BCM8704_USER_CONTROL);
1381 if (err)
1382 return err;
1383 err = bcm8704_user_dev3_readback(np, BCM8704_USER_PMD_TX_CONTROL);
1384 if (err)
1385 return err;
1386
1387 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1388 BCM8704_USER_OPT_DIGITAL_CTRL);
1389 if (err < 0)
1390 return err;
1391 err &= ~USER_ODIG_CTRL_GPIOS;
1392 err |= (0x3 << USER_ODIG_CTRL_GPIOS_SHIFT);
1393 err = mdio_write(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1394 BCM8704_USER_OPT_DIGITAL_CTRL, err);
1395 if (err)
1396 return err;
1397
1398 mdelay(1000);
1399
1400 return 0;
1401}
1402
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08001403static int mrvl88x2011_act_led(struct niu *np, int val)
1404{
1405 int err;
1406
1407 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
1408 MRVL88X2011_LED_8_TO_11_CTL);
1409 if (err < 0)
1410 return err;
1411
1412 err &= ~MRVL88X2011_LED(MRVL88X2011_LED_ACT,MRVL88X2011_LED_CTL_MASK);
1413 err |= MRVL88X2011_LED(MRVL88X2011_LED_ACT,val);
1414
1415 return mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
1416 MRVL88X2011_LED_8_TO_11_CTL, err);
1417}
1418
1419static int mrvl88x2011_led_blink_rate(struct niu *np, int rate)
1420{
1421 int err;
1422
1423 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
1424 MRVL88X2011_LED_BLINK_CTL);
1425 if (err >= 0) {
1426 err &= ~MRVL88X2011_LED_BLKRATE_MASK;
1427 err |= (rate << 4);
1428
1429 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV2_ADDR,
1430 MRVL88X2011_LED_BLINK_CTL, err);
1431 }
1432
1433 return err;
1434}
1435
1436static int xcvr_init_10g_mrvl88x2011(struct niu *np)
1437{
1438 int err;
1439
1440 /* Set LED functions */
1441 err = mrvl88x2011_led_blink_rate(np, MRVL88X2011_LED_BLKRATE_134MS);
1442 if (err)
1443 return err;
1444
1445 /* led activity */
1446 err = mrvl88x2011_act_led(np, MRVL88X2011_LED_CTL_OFF);
1447 if (err)
1448 return err;
1449
1450 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1451 MRVL88X2011_GENERAL_CTL);
1452 if (err < 0)
1453 return err;
1454
1455 err |= MRVL88X2011_ENA_XFPREFCLK;
1456
1457 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1458 MRVL88X2011_GENERAL_CTL, err);
1459 if (err < 0)
1460 return err;
1461
1462 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1463 MRVL88X2011_PMA_PMD_CTL_1);
1464 if (err < 0)
1465 return err;
1466
1467 if (np->link_config.loopback_mode == LOOPBACK_MAC)
1468 err |= MRVL88X2011_LOOPBACK;
1469 else
1470 err &= ~MRVL88X2011_LOOPBACK;
1471
1472 err = mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1473 MRVL88X2011_PMA_PMD_CTL_1, err);
1474 if (err < 0)
1475 return err;
1476
1477 /* Enable PMD */
1478 return mdio_write(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1479 MRVL88X2011_10G_PMD_TX_DIS, MRVL88X2011_ENA_PMDTX);
1480}
1481
Matheos Workua5d6ab52008-04-24 21:09:20 -07001482
1483static int xcvr_diag_bcm870x(struct niu *np)
David S. Millera3138df2007-10-09 01:54:01 -07001484{
David S. Millera3138df2007-10-09 01:54:01 -07001485 u16 analog_stat0, tx_alarm_status;
Matheos Workua5d6ab52008-04-24 21:09:20 -07001486 int err = 0;
David S. Millera3138df2007-10-09 01:54:01 -07001487
1488#if 1
1489 err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
1490 MII_STAT1000);
1491 if (err < 0)
1492 return err;
Joe Perchesf10a1f22010-02-14 22:40:39 -08001493 pr_info("Port %u PMA_PMD(MII_STAT1000) [%04x]\n", np->port, err);
David S. Millera3138df2007-10-09 01:54:01 -07001494
1495 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR, 0x20);
1496 if (err < 0)
1497 return err;
Joe Perchesf10a1f22010-02-14 22:40:39 -08001498 pr_info("Port %u USER_DEV3(0x20) [%04x]\n", np->port, err);
David S. Millera3138df2007-10-09 01:54:01 -07001499
1500 err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
1501 MII_NWAYTEST);
1502 if (err < 0)
1503 return err;
Joe Perchesf10a1f22010-02-14 22:40:39 -08001504 pr_info("Port %u PHYXS(MII_NWAYTEST) [%04x]\n", np->port, err);
David S. Millera3138df2007-10-09 01:54:01 -07001505#endif
1506
1507 /* XXX dig this out it might not be so useful XXX */
1508 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1509 BCM8704_USER_ANALOG_STATUS0);
1510 if (err < 0)
1511 return err;
1512 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1513 BCM8704_USER_ANALOG_STATUS0);
1514 if (err < 0)
1515 return err;
1516 analog_stat0 = err;
1517
1518 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1519 BCM8704_USER_TX_ALARM_STATUS);
1520 if (err < 0)
1521 return err;
1522 err = mdio_read(np, np->phy_addr, BCM8704_USER_DEV3_ADDR,
1523 BCM8704_USER_TX_ALARM_STATUS);
1524 if (err < 0)
1525 return err;
1526 tx_alarm_status = err;
1527
1528 if (analog_stat0 != 0x03fc) {
1529 if ((analog_stat0 == 0x43bc) && (tx_alarm_status != 0)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08001530 pr_info("Port %u cable not connected or bad cable\n",
1531 np->port);
David S. Millera3138df2007-10-09 01:54:01 -07001532 } else if (analog_stat0 == 0x639c) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08001533 pr_info("Port %u optical module is bad or missing\n",
1534 np->port);
David S. Millera3138df2007-10-09 01:54:01 -07001535 }
1536 }
1537
1538 return 0;
1539}
1540
Matheos Workua5d6ab52008-04-24 21:09:20 -07001541static int xcvr_10g_set_lb_bcm870x(struct niu *np)
1542{
1543 struct niu_link_config *lp = &np->link_config;
1544 int err;
1545
1546 err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
1547 MII_BMCR);
1548 if (err < 0)
1549 return err;
1550
1551 err &= ~BMCR_LOOPBACK;
1552
1553 if (lp->loopback_mode == LOOPBACK_MAC)
1554 err |= BMCR_LOOPBACK;
1555
1556 err = mdio_write(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
1557 MII_BMCR, err);
1558 if (err)
1559 return err;
1560
1561 return 0;
1562}
1563
1564static int xcvr_init_10g_bcm8706(struct niu *np)
1565{
1566 int err = 0;
1567 u64 val;
1568
1569 if ((np->flags & NIU_FLAGS_HOTPLUG_PHY) &&
1570 (np->flags & NIU_FLAGS_HOTPLUG_PHY_PRESENT) == 0)
1571 return err;
1572
1573 val = nr64_mac(XMAC_CONFIG);
1574 val &= ~XMAC_CONFIG_LED_POLARITY;
1575 val |= XMAC_CONFIG_FORCE_LED_ON;
1576 nw64_mac(XMAC_CONFIG, val);
1577
1578 val = nr64(MIF_CONFIG);
1579 val |= MIF_CONFIG_INDIRECT_MODE;
1580 nw64(MIF_CONFIG, val);
1581
1582 err = bcm8704_reset(np);
1583 if (err)
1584 return err;
1585
1586 err = xcvr_10g_set_lb_bcm870x(np);
1587 if (err)
1588 return err;
1589
1590 err = bcm8706_init_user_dev3(np);
1591 if (err)
1592 return err;
1593
1594 err = xcvr_diag_bcm870x(np);
1595 if (err)
1596 return err;
1597
1598 return 0;
1599}
1600
1601static int xcvr_init_10g_bcm8704(struct niu *np)
1602{
1603 int err;
1604
1605 err = bcm8704_reset(np);
1606 if (err)
1607 return err;
1608
1609 err = bcm8704_init_user_dev3(np);
1610 if (err)
1611 return err;
1612
1613 err = xcvr_10g_set_lb_bcm870x(np);
1614 if (err)
1615 return err;
1616
1617 err = xcvr_diag_bcm870x(np);
1618 if (err)
1619 return err;
1620
1621 return 0;
1622}
1623
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08001624static int xcvr_init_10g(struct niu *np)
1625{
1626 int phy_id, err;
1627 u64 val;
1628
1629 val = nr64_mac(XMAC_CONFIG);
1630 val &= ~XMAC_CONFIG_LED_POLARITY;
1631 val |= XMAC_CONFIG_FORCE_LED_ON;
1632 nw64_mac(XMAC_CONFIG, val);
1633
1634 /* XXX shared resource, lock parent XXX */
1635 val = nr64(MIF_CONFIG);
1636 val |= MIF_CONFIG_INDIRECT_MODE;
1637 nw64(MIF_CONFIG, val);
1638
1639 phy_id = phy_decode(np->parent->port_phy, np->port);
1640 phy_id = np->parent->phy_probe_info.phy_id[phy_id][np->port];
1641
1642 /* handle different phy types */
1643 switch (phy_id & NIU_PHY_ID_MASK) {
1644 case NIU_PHY_ID_MRVL88X2011:
1645 err = xcvr_init_10g_mrvl88x2011(np);
1646 break;
1647
1648 default: /* bcom 8704 */
1649 err = xcvr_init_10g_bcm8704(np);
1650 break;
1651 }
1652
1653 return 0;
1654}
1655
David S. Millera3138df2007-10-09 01:54:01 -07001656static int mii_reset(struct niu *np)
1657{
1658 int limit, err;
1659
1660 err = mii_write(np, np->phy_addr, MII_BMCR, BMCR_RESET);
1661 if (err)
1662 return err;
1663
1664 limit = 1000;
1665 while (--limit >= 0) {
1666 udelay(500);
1667 err = mii_read(np, np->phy_addr, MII_BMCR);
1668 if (err < 0)
1669 return err;
1670 if (!(err & BMCR_RESET))
1671 break;
1672 }
1673 if (limit < 0) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08001674 netdev_err(np->dev, "Port %u MII would not reset, bmcr[%04x]\n",
1675 np->port, err);
David S. Millera3138df2007-10-09 01:54:01 -07001676 return -ENODEV;
1677 }
1678
1679 return 0;
1680}
1681
Matheos Worku5fbd7e22008-02-28 21:25:43 -08001682static int xcvr_init_1g_rgmii(struct niu *np)
1683{
1684 int err;
1685 u64 val;
1686 u16 bmcr, bmsr, estat;
1687
1688 val = nr64(MIF_CONFIG);
1689 val &= ~MIF_CONFIG_INDIRECT_MODE;
1690 nw64(MIF_CONFIG, val);
1691
1692 err = mii_reset(np);
1693 if (err)
1694 return err;
1695
1696 err = mii_read(np, np->phy_addr, MII_BMSR);
1697 if (err < 0)
1698 return err;
1699 bmsr = err;
1700
1701 estat = 0;
1702 if (bmsr & BMSR_ESTATEN) {
1703 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1704 if (err < 0)
1705 return err;
1706 estat = err;
1707 }
1708
1709 bmcr = 0;
1710 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1711 if (err)
1712 return err;
1713
1714 if (bmsr & BMSR_ESTATEN) {
1715 u16 ctrl1000 = 0;
1716
1717 if (estat & ESTATUS_1000_TFULL)
1718 ctrl1000 |= ADVERTISE_1000FULL;
1719 err = mii_write(np, np->phy_addr, MII_CTRL1000, ctrl1000);
1720 if (err)
1721 return err;
1722 }
1723
1724 bmcr = (BMCR_SPEED1000 | BMCR_FULLDPLX);
1725
1726 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1727 if (err)
1728 return err;
1729
1730 err = mii_read(np, np->phy_addr, MII_BMCR);
1731 if (err < 0)
1732 return err;
1733 bmcr = mii_read(np, np->phy_addr, MII_BMCR);
1734
1735 err = mii_read(np, np->phy_addr, MII_BMSR);
1736 if (err < 0)
1737 return err;
1738
1739 return 0;
1740}
1741
David S. Millera3138df2007-10-09 01:54:01 -07001742static int mii_init_common(struct niu *np)
1743{
1744 struct niu_link_config *lp = &np->link_config;
1745 u16 bmcr, bmsr, adv, estat;
1746 int err;
1747
1748 err = mii_reset(np);
1749 if (err)
1750 return err;
1751
1752 err = mii_read(np, np->phy_addr, MII_BMSR);
1753 if (err < 0)
1754 return err;
1755 bmsr = err;
1756
1757 estat = 0;
1758 if (bmsr & BMSR_ESTATEN) {
1759 err = mii_read(np, np->phy_addr, MII_ESTATUS);
1760 if (err < 0)
1761 return err;
1762 estat = err;
1763 }
1764
1765 bmcr = 0;
1766 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1767 if (err)
1768 return err;
1769
1770 if (lp->loopback_mode == LOOPBACK_MAC) {
1771 bmcr |= BMCR_LOOPBACK;
1772 if (lp->active_speed == SPEED_1000)
1773 bmcr |= BMCR_SPEED1000;
1774 if (lp->active_duplex == DUPLEX_FULL)
1775 bmcr |= BMCR_FULLDPLX;
1776 }
1777
1778 if (lp->loopback_mode == LOOPBACK_PHY) {
1779 u16 aux;
1780
1781 aux = (BCM5464R_AUX_CTL_EXT_LB |
1782 BCM5464R_AUX_CTL_WRITE_1);
1783 err = mii_write(np, np->phy_addr, BCM5464R_AUX_CTL, aux);
1784 if (err)
1785 return err;
1786 }
1787
Constantin Baranov38bb045d2009-02-18 17:53:20 -08001788 if (lp->autoneg) {
1789 u16 ctrl1000;
David S. Millera3138df2007-10-09 01:54:01 -07001790
Constantin Baranov38bb045d2009-02-18 17:53:20 -08001791 adv = ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP;
1792 if ((bmsr & BMSR_10HALF) &&
1793 (lp->advertising & ADVERTISED_10baseT_Half))
1794 adv |= ADVERTISE_10HALF;
1795 if ((bmsr & BMSR_10FULL) &&
1796 (lp->advertising & ADVERTISED_10baseT_Full))
1797 adv |= ADVERTISE_10FULL;
1798 if ((bmsr & BMSR_100HALF) &&
1799 (lp->advertising & ADVERTISED_100baseT_Half))
1800 adv |= ADVERTISE_100HALF;
1801 if ((bmsr & BMSR_100FULL) &&
1802 (lp->advertising & ADVERTISED_100baseT_Full))
1803 adv |= ADVERTISE_100FULL;
1804 err = mii_write(np, np->phy_addr, MII_ADVERTISE, adv);
David S. Millera3138df2007-10-09 01:54:01 -07001805 if (err)
1806 return err;
Constantin Baranov38bb045d2009-02-18 17:53:20 -08001807
1808 if (likely(bmsr & BMSR_ESTATEN)) {
1809 ctrl1000 = 0;
1810 if ((estat & ESTATUS_1000_THALF) &&
1811 (lp->advertising & ADVERTISED_1000baseT_Half))
1812 ctrl1000 |= ADVERTISE_1000HALF;
1813 if ((estat & ESTATUS_1000_TFULL) &&
1814 (lp->advertising & ADVERTISED_1000baseT_Full))
1815 ctrl1000 |= ADVERTISE_1000FULL;
1816 err = mii_write(np, np->phy_addr,
1817 MII_CTRL1000, ctrl1000);
1818 if (err)
1819 return err;
1820 }
1821
1822 bmcr |= (BMCR_ANENABLE | BMCR_ANRESTART);
1823 } else {
1824 /* !lp->autoneg */
1825 int fulldpx;
1826
1827 if (lp->duplex == DUPLEX_FULL) {
1828 bmcr |= BMCR_FULLDPLX;
1829 fulldpx = 1;
1830 } else if (lp->duplex == DUPLEX_HALF)
1831 fulldpx = 0;
1832 else
1833 return -EINVAL;
1834
1835 if (lp->speed == SPEED_1000) {
1836 /* if X-full requested while not supported, or
1837 X-half requested while not supported... */
1838 if ((fulldpx && !(estat & ESTATUS_1000_TFULL)) ||
1839 (!fulldpx && !(estat & ESTATUS_1000_THALF)))
1840 return -EINVAL;
1841 bmcr |= BMCR_SPEED1000;
1842 } else if (lp->speed == SPEED_100) {
1843 if ((fulldpx && !(bmsr & BMSR_100FULL)) ||
1844 (!fulldpx && !(bmsr & BMSR_100HALF)))
1845 return -EINVAL;
1846 bmcr |= BMCR_SPEED100;
1847 } else if (lp->speed == SPEED_10) {
1848 if ((fulldpx && !(bmsr & BMSR_10FULL)) ||
1849 (!fulldpx && !(bmsr & BMSR_10HALF)))
1850 return -EINVAL;
1851 } else
1852 return -EINVAL;
David S. Millera3138df2007-10-09 01:54:01 -07001853 }
David S. Millera3138df2007-10-09 01:54:01 -07001854
1855 err = mii_write(np, np->phy_addr, MII_BMCR, bmcr);
1856 if (err)
1857 return err;
1858
Constantin Baranov38bb045d2009-02-18 17:53:20 -08001859#if 0
David S. Millera3138df2007-10-09 01:54:01 -07001860 err = mii_read(np, np->phy_addr, MII_BMCR);
1861 if (err < 0)
1862 return err;
Constantin Baranov38bb045d2009-02-18 17:53:20 -08001863 bmcr = err;
1864
David S. Millera3138df2007-10-09 01:54:01 -07001865 err = mii_read(np, np->phy_addr, MII_BMSR);
1866 if (err < 0)
1867 return err;
Constantin Baranov38bb045d2009-02-18 17:53:20 -08001868 bmsr = err;
1869
Joe Perchesf10a1f22010-02-14 22:40:39 -08001870 pr_info("Port %u after MII init bmcr[%04x] bmsr[%04x]\n",
David S. Millera3138df2007-10-09 01:54:01 -07001871 np->port, bmcr, bmsr);
1872#endif
1873
1874 return 0;
1875}
1876
1877static int xcvr_init_1g(struct niu *np)
1878{
1879 u64 val;
1880
1881 /* XXX shared resource, lock parent XXX */
1882 val = nr64(MIF_CONFIG);
1883 val &= ~MIF_CONFIG_INDIRECT_MODE;
1884 nw64(MIF_CONFIG, val);
1885
1886 return mii_init_common(np);
1887}
1888
1889static int niu_xcvr_init(struct niu *np)
1890{
1891 const struct niu_phy_ops *ops = np->phy_ops;
1892 int err;
1893
1894 err = 0;
1895 if (ops->xcvr_init)
1896 err = ops->xcvr_init(np);
1897
1898 return err;
1899}
1900
1901static int niu_serdes_init(struct niu *np)
1902{
1903 const struct niu_phy_ops *ops = np->phy_ops;
1904 int err;
1905
1906 err = 0;
1907 if (ops->serdes_init)
1908 err = ops->serdes_init(np);
1909
1910 return err;
1911}
1912
1913static void niu_init_xif(struct niu *);
Mirko Lindner0c3b0912007-12-05 21:10:02 -08001914static void niu_handle_led(struct niu *, int status);
David S. Millera3138df2007-10-09 01:54:01 -07001915
1916static int niu_link_status_common(struct niu *np, int link_up)
1917{
1918 struct niu_link_config *lp = &np->link_config;
1919 struct net_device *dev = np->dev;
1920 unsigned long flags;
1921
1922 if (!netif_carrier_ok(dev) && link_up) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08001923 netif_info(np, link, dev, "Link is up at %s, %s duplex\n",
1924 lp->active_speed == SPEED_10000 ? "10Gb/sec" :
1925 lp->active_speed == SPEED_1000 ? "1Gb/sec" :
1926 lp->active_speed == SPEED_100 ? "100Mbit/sec" :
1927 "10Mbit/sec",
1928 lp->active_duplex == DUPLEX_FULL ? "full" : "half");
David S. Millera3138df2007-10-09 01:54:01 -07001929
1930 spin_lock_irqsave(&np->lock, flags);
1931 niu_init_xif(np);
Mirko Lindner0c3b0912007-12-05 21:10:02 -08001932 niu_handle_led(np, 1);
David S. Millera3138df2007-10-09 01:54:01 -07001933 spin_unlock_irqrestore(&np->lock, flags);
1934
1935 netif_carrier_on(dev);
1936 } else if (netif_carrier_ok(dev) && !link_up) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08001937 netif_warn(np, link, dev, "Link is down\n");
Mirko Lindner0c3b0912007-12-05 21:10:02 -08001938 spin_lock_irqsave(&np->lock, flags);
1939 niu_handle_led(np, 0);
1940 spin_unlock_irqrestore(&np->lock, flags);
David S. Millera3138df2007-10-09 01:54:01 -07001941 netif_carrier_off(dev);
1942 }
1943
1944 return 0;
1945}
1946
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08001947static int link_status_10g_mrvl(struct niu *np, int *link_up_p)
David S. Millera3138df2007-10-09 01:54:01 -07001948{
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08001949 int err, link_up, pma_status, pcs_status;
David S. Millera3138df2007-10-09 01:54:01 -07001950
1951 link_up = 0;
1952
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08001953 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1954 MRVL88X2011_10G_PMD_STATUS_2);
1955 if (err < 0)
David S. Millera3138df2007-10-09 01:54:01 -07001956 goto out;
1957
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08001958 /* Check PMA/PMD Register: 1.0001.2 == 1 */
1959 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV1_ADDR,
1960 MRVL88X2011_PMA_PMD_STATUS_1);
1961 if (err < 0)
1962 goto out;
1963
1964 pma_status = ((err & MRVL88X2011_LNK_STATUS_OK) ? 1 : 0);
1965
1966 /* Check PMC Register : 3.0001.2 == 1: read twice */
1967 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1968 MRVL88X2011_PMA_PMD_STATUS_1);
1969 if (err < 0)
1970 goto out;
1971
1972 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV3_ADDR,
1973 MRVL88X2011_PMA_PMD_STATUS_1);
1974 if (err < 0)
1975 goto out;
1976
1977 pcs_status = ((err & MRVL88X2011_LNK_STATUS_OK) ? 1 : 0);
1978
1979 /* Check XGXS Register : 4.0018.[0-3,12] */
1980 err = mdio_read(np, np->phy_addr, MRVL88X2011_USER_DEV4_ADDR,
1981 MRVL88X2011_10G_XGXS_LANE_STAT);
1982 if (err < 0)
1983 goto out;
1984
1985 if (err == (PHYXS_XGXS_LANE_STAT_ALINGED | PHYXS_XGXS_LANE_STAT_LANE3 |
1986 PHYXS_XGXS_LANE_STAT_LANE2 | PHYXS_XGXS_LANE_STAT_LANE1 |
1987 PHYXS_XGXS_LANE_STAT_LANE0 | PHYXS_XGXS_LANE_STAT_MAGIC |
1988 0x800))
1989 link_up = (pma_status && pcs_status) ? 1 : 0;
1990
1991 np->link_config.active_speed = SPEED_10000;
1992 np->link_config.active_duplex = DUPLEX_FULL;
1993 err = 0;
1994out:
1995 mrvl88x2011_act_led(np, (link_up ?
1996 MRVL88X2011_LED_CTL_PCS_ACT :
1997 MRVL88X2011_LED_CTL_OFF));
1998
1999 *link_up_p = link_up;
2000 return err;
2001}
2002
Matheos Workua5d6ab52008-04-24 21:09:20 -07002003static int link_status_10g_bcm8706(struct niu *np, int *link_up_p)
2004{
2005 int err, link_up;
2006 link_up = 0;
2007
2008 err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
2009 BCM8704_PMD_RCV_SIGDET);
Tanli Chang9c5cd672009-05-26 20:45:50 -07002010 if (err < 0 || err == 0xffff)
Matheos Workua5d6ab52008-04-24 21:09:20 -07002011 goto out;
2012 if (!(err & PMD_RCV_SIGDET_GLOBAL)) {
2013 err = 0;
2014 goto out;
2015 }
2016
2017 err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
2018 BCM8704_PCS_10G_R_STATUS);
2019 if (err < 0)
2020 goto out;
2021
2022 if (!(err & PCS_10G_R_STATUS_BLK_LOCK)) {
2023 err = 0;
2024 goto out;
2025 }
2026
2027 err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
2028 BCM8704_PHYXS_XGXS_LANE_STAT);
2029 if (err < 0)
2030 goto out;
2031 if (err != (PHYXS_XGXS_LANE_STAT_ALINGED |
2032 PHYXS_XGXS_LANE_STAT_MAGIC |
2033 PHYXS_XGXS_LANE_STAT_PATTEST |
2034 PHYXS_XGXS_LANE_STAT_LANE3 |
2035 PHYXS_XGXS_LANE_STAT_LANE2 |
2036 PHYXS_XGXS_LANE_STAT_LANE1 |
2037 PHYXS_XGXS_LANE_STAT_LANE0)) {
2038 err = 0;
2039 np->link_config.active_speed = SPEED_INVALID;
2040 np->link_config.active_duplex = DUPLEX_INVALID;
2041 goto out;
2042 }
2043
2044 link_up = 1;
2045 np->link_config.active_speed = SPEED_10000;
2046 np->link_config.active_duplex = DUPLEX_FULL;
2047 err = 0;
2048
2049out:
2050 *link_up_p = link_up;
Matheos Workua5d6ab52008-04-24 21:09:20 -07002051 return err;
2052}
2053
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08002054static int link_status_10g_bcom(struct niu *np, int *link_up_p)
2055{
2056 int err, link_up;
2057
2058 link_up = 0;
2059
David S. Millera3138df2007-10-09 01:54:01 -07002060 err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
2061 BCM8704_PMD_RCV_SIGDET);
2062 if (err < 0)
2063 goto out;
2064 if (!(err & PMD_RCV_SIGDET_GLOBAL)) {
2065 err = 0;
2066 goto out;
2067 }
2068
2069 err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
2070 BCM8704_PCS_10G_R_STATUS);
2071 if (err < 0)
2072 goto out;
2073 if (!(err & PCS_10G_R_STATUS_BLK_LOCK)) {
2074 err = 0;
2075 goto out;
2076 }
2077
2078 err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
2079 BCM8704_PHYXS_XGXS_LANE_STAT);
2080 if (err < 0)
2081 goto out;
2082
2083 if (err != (PHYXS_XGXS_LANE_STAT_ALINGED |
2084 PHYXS_XGXS_LANE_STAT_MAGIC |
2085 PHYXS_XGXS_LANE_STAT_LANE3 |
2086 PHYXS_XGXS_LANE_STAT_LANE2 |
2087 PHYXS_XGXS_LANE_STAT_LANE1 |
2088 PHYXS_XGXS_LANE_STAT_LANE0)) {
2089 err = 0;
2090 goto out;
2091 }
2092
2093 link_up = 1;
2094 np->link_config.active_speed = SPEED_10000;
2095 np->link_config.active_duplex = DUPLEX_FULL;
2096 err = 0;
2097
2098out:
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08002099 *link_up_p = link_up;
2100 return err;
2101}
2102
2103static int link_status_10g(struct niu *np, int *link_up_p)
2104{
2105 unsigned long flags;
2106 int err = -EINVAL;
2107
2108 spin_lock_irqsave(&np->lock, flags);
2109
2110 if (np->link_config.loopback_mode == LOOPBACK_DISABLED) {
2111 int phy_id;
2112
2113 phy_id = phy_decode(np->parent->port_phy, np->port);
2114 phy_id = np->parent->phy_probe_info.phy_id[phy_id][np->port];
2115
2116 /* handle different phy types */
2117 switch (phy_id & NIU_PHY_ID_MASK) {
2118 case NIU_PHY_ID_MRVL88X2011:
2119 err = link_status_10g_mrvl(np, link_up_p);
2120 break;
2121
2122 default: /* bcom 8704 */
2123 err = link_status_10g_bcom(np, link_up_p);
2124 break;
2125 }
2126 }
2127
David S. Millera3138df2007-10-09 01:54:01 -07002128 spin_unlock_irqrestore(&np->lock, flags);
2129
David S. Millera3138df2007-10-09 01:54:01 -07002130 return err;
2131}
2132
Matheos Workua5d6ab52008-04-24 21:09:20 -07002133static int niu_10g_phy_present(struct niu *np)
2134{
2135 u64 sig, mask, val;
2136
2137 sig = nr64(ESR_INT_SIGNALS);
2138 switch (np->port) {
2139 case 0:
2140 mask = ESR_INT_SIGNALS_P0_BITS;
2141 val = (ESR_INT_SRDY0_P0 |
2142 ESR_INT_DET0_P0 |
2143 ESR_INT_XSRDY_P0 |
2144 ESR_INT_XDP_P0_CH3 |
2145 ESR_INT_XDP_P0_CH2 |
2146 ESR_INT_XDP_P0_CH1 |
2147 ESR_INT_XDP_P0_CH0);
2148 break;
2149
2150 case 1:
2151 mask = ESR_INT_SIGNALS_P1_BITS;
2152 val = (ESR_INT_SRDY0_P1 |
2153 ESR_INT_DET0_P1 |
2154 ESR_INT_XSRDY_P1 |
2155 ESR_INT_XDP_P1_CH3 |
2156 ESR_INT_XDP_P1_CH2 |
2157 ESR_INT_XDP_P1_CH1 |
2158 ESR_INT_XDP_P1_CH0);
2159 break;
2160
2161 default:
2162 return 0;
2163 }
2164
2165 if ((sig & mask) != val)
2166 return 0;
2167 return 1;
2168}
2169
2170static int link_status_10g_hotplug(struct niu *np, int *link_up_p)
2171{
2172 unsigned long flags;
2173 int err = 0;
2174 int phy_present;
2175 int phy_present_prev;
2176
2177 spin_lock_irqsave(&np->lock, flags);
2178
2179 if (np->link_config.loopback_mode == LOOPBACK_DISABLED) {
2180 phy_present_prev = (np->flags & NIU_FLAGS_HOTPLUG_PHY_PRESENT) ?
2181 1 : 0;
2182 phy_present = niu_10g_phy_present(np);
2183 if (phy_present != phy_present_prev) {
2184 /* state change */
2185 if (phy_present) {
Tanli Chang9c5cd672009-05-26 20:45:50 -07002186 /* A NEM was just plugged in */
Matheos Workua5d6ab52008-04-24 21:09:20 -07002187 np->flags |= NIU_FLAGS_HOTPLUG_PHY_PRESENT;
2188 if (np->phy_ops->xcvr_init)
2189 err = np->phy_ops->xcvr_init(np);
2190 if (err) {
Tanli Chang9c5cd672009-05-26 20:45:50 -07002191 err = mdio_read(np, np->phy_addr,
2192 BCM8704_PHYXS_DEV_ADDR, MII_BMCR);
2193 if (err == 0xffff) {
2194 /* No mdio, back-to-back XAUI */
2195 goto out;
2196 }
Matheos Workua5d6ab52008-04-24 21:09:20 -07002197 /* debounce */
2198 np->flags &= ~NIU_FLAGS_HOTPLUG_PHY_PRESENT;
2199 }
2200 } else {
2201 np->flags &= ~NIU_FLAGS_HOTPLUG_PHY_PRESENT;
2202 *link_up_p = 0;
Joe Perchesf10a1f22010-02-14 22:40:39 -08002203 netif_warn(np, link, np->dev,
2204 "Hotplug PHY Removed\n");
Matheos Workua5d6ab52008-04-24 21:09:20 -07002205 }
2206 }
Tanli Chang9c5cd672009-05-26 20:45:50 -07002207out:
2208 if (np->flags & NIU_FLAGS_HOTPLUG_PHY_PRESENT) {
Matheos Workua5d6ab52008-04-24 21:09:20 -07002209 err = link_status_10g_bcm8706(np, link_up_p);
Tanli Chang9c5cd672009-05-26 20:45:50 -07002210 if (err == 0xffff) {
2211 /* No mdio, back-to-back XAUI: it is C10NEM */
2212 *link_up_p = 1;
2213 np->link_config.active_speed = SPEED_10000;
2214 np->link_config.active_duplex = DUPLEX_FULL;
2215 }
2216 }
Matheos Workua5d6ab52008-04-24 21:09:20 -07002217 }
2218
2219 spin_unlock_irqrestore(&np->lock, flags);
2220
Tanli Chang9c5cd672009-05-26 20:45:50 -07002221 return 0;
Matheos Workua5d6ab52008-04-24 21:09:20 -07002222}
2223
David S. Millera3138df2007-10-09 01:54:01 -07002224static int niu_link_status(struct niu *np, int *link_up_p)
2225{
2226 const struct niu_phy_ops *ops = np->phy_ops;
2227 int err;
2228
2229 err = 0;
2230 if (ops->link_status)
2231 err = ops->link_status(np, link_up_p);
2232
2233 return err;
2234}
2235
2236static void niu_timer(unsigned long __opaque)
2237{
2238 struct niu *np = (struct niu *) __opaque;
2239 unsigned long off;
2240 int err, link_up;
2241
2242 err = niu_link_status(np, &link_up);
2243 if (!err)
2244 niu_link_status_common(np, link_up);
2245
2246 if (netif_carrier_ok(np->dev))
2247 off = 5 * HZ;
2248 else
2249 off = 1 * HZ;
2250 np->timer.expires = jiffies + off;
2251
2252 add_timer(&np->timer);
2253}
2254
Matheos Worku5fbd7e22008-02-28 21:25:43 -08002255static const struct niu_phy_ops phy_ops_10g_serdes = {
2256 .serdes_init = serdes_init_10g_serdes,
2257 .link_status = link_status_10g_serdes,
2258};
2259
Santwona Beherae3e081e2008-11-14 14:44:08 -08002260static const struct niu_phy_ops phy_ops_10g_serdes_niu = {
2261 .serdes_init = serdes_init_niu_10g_serdes,
2262 .link_status = link_status_10g_serdes,
2263};
2264
2265static const struct niu_phy_ops phy_ops_1g_serdes_niu = {
2266 .serdes_init = serdes_init_niu_1g_serdes,
2267 .link_status = link_status_1g_serdes,
2268};
2269
Matheos Worku5fbd7e22008-02-28 21:25:43 -08002270static const struct niu_phy_ops phy_ops_1g_rgmii = {
2271 .xcvr_init = xcvr_init_1g_rgmii,
2272 .link_status = link_status_1g_rgmii,
2273};
2274
David S. Millera3138df2007-10-09 01:54:01 -07002275static const struct niu_phy_ops phy_ops_10g_fiber_niu = {
Santwona Beherae3e081e2008-11-14 14:44:08 -08002276 .serdes_init = serdes_init_niu_10g_fiber,
David S. Millera3138df2007-10-09 01:54:01 -07002277 .xcvr_init = xcvr_init_10g,
2278 .link_status = link_status_10g,
2279};
2280
2281static const struct niu_phy_ops phy_ops_10g_fiber = {
2282 .serdes_init = serdes_init_10g,
2283 .xcvr_init = xcvr_init_10g,
2284 .link_status = link_status_10g,
2285};
2286
Matheos Workua5d6ab52008-04-24 21:09:20 -07002287static const struct niu_phy_ops phy_ops_10g_fiber_hotplug = {
2288 .serdes_init = serdes_init_10g,
2289 .xcvr_init = xcvr_init_10g_bcm8706,
2290 .link_status = link_status_10g_hotplug,
2291};
2292
Tanli Chang9c5cd672009-05-26 20:45:50 -07002293static const struct niu_phy_ops phy_ops_niu_10g_hotplug = {
2294 .serdes_init = serdes_init_niu_10g_fiber,
2295 .xcvr_init = xcvr_init_10g_bcm8706,
2296 .link_status = link_status_10g_hotplug,
2297};
2298
David S. Millera3138df2007-10-09 01:54:01 -07002299static const struct niu_phy_ops phy_ops_10g_copper = {
2300 .serdes_init = serdes_init_10g,
2301 .link_status = link_status_10g, /* XXX */
2302};
2303
2304static const struct niu_phy_ops phy_ops_1g_fiber = {
2305 .serdes_init = serdes_init_1g,
2306 .xcvr_init = xcvr_init_1g,
2307 .link_status = link_status_1g,
2308};
2309
2310static const struct niu_phy_ops phy_ops_1g_copper = {
2311 .xcvr_init = xcvr_init_1g,
2312 .link_status = link_status_1g,
2313};
2314
2315struct niu_phy_template {
2316 const struct niu_phy_ops *ops;
2317 u32 phy_addr_base;
2318};
2319
Santwona Beherae3e081e2008-11-14 14:44:08 -08002320static const struct niu_phy_template phy_template_niu_10g_fiber = {
David S. Millera3138df2007-10-09 01:54:01 -07002321 .ops = &phy_ops_10g_fiber_niu,
2322 .phy_addr_base = 16,
2323};
2324
Santwona Beherae3e081e2008-11-14 14:44:08 -08002325static const struct niu_phy_template phy_template_niu_10g_serdes = {
2326 .ops = &phy_ops_10g_serdes_niu,
2327 .phy_addr_base = 0,
2328};
2329
2330static const struct niu_phy_template phy_template_niu_1g_serdes = {
2331 .ops = &phy_ops_1g_serdes_niu,
2332 .phy_addr_base = 0,
2333};
2334
David S. Millera3138df2007-10-09 01:54:01 -07002335static const struct niu_phy_template phy_template_10g_fiber = {
2336 .ops = &phy_ops_10g_fiber,
2337 .phy_addr_base = 8,
2338};
2339
Matheos Workua5d6ab52008-04-24 21:09:20 -07002340static const struct niu_phy_template phy_template_10g_fiber_hotplug = {
2341 .ops = &phy_ops_10g_fiber_hotplug,
2342 .phy_addr_base = 8,
2343};
2344
Tanli Chang9c5cd672009-05-26 20:45:50 -07002345static const struct niu_phy_template phy_template_niu_10g_hotplug = {
2346 .ops = &phy_ops_niu_10g_hotplug,
2347 .phy_addr_base = 8,
2348};
2349
David S. Millera3138df2007-10-09 01:54:01 -07002350static const struct niu_phy_template phy_template_10g_copper = {
2351 .ops = &phy_ops_10g_copper,
2352 .phy_addr_base = 10,
2353};
2354
2355static const struct niu_phy_template phy_template_1g_fiber = {
2356 .ops = &phy_ops_1g_fiber,
2357 .phy_addr_base = 0,
2358};
2359
2360static const struct niu_phy_template phy_template_1g_copper = {
2361 .ops = &phy_ops_1g_copper,
2362 .phy_addr_base = 0,
2363};
2364
Matheos Worku5fbd7e22008-02-28 21:25:43 -08002365static const struct niu_phy_template phy_template_1g_rgmii = {
2366 .ops = &phy_ops_1g_rgmii,
2367 .phy_addr_base = 0,
2368};
2369
2370static const struct niu_phy_template phy_template_10g_serdes = {
2371 .ops = &phy_ops_10g_serdes,
2372 .phy_addr_base = 0,
2373};
2374
2375static int niu_atca_port_num[4] = {
2376 0, 0, 11, 10
2377};
2378
2379static int serdes_init_10g_serdes(struct niu *np)
2380{
2381 struct niu_link_config *lp = &np->link_config;
2382 unsigned long ctrl_reg, test_cfg_reg, pll_cfg, i;
2383 u64 ctrl_val, test_cfg_val, sig, mask, val;
Matheos Worku5fbd7e22008-02-28 21:25:43 -08002384 u64 reset_val;
2385
2386 switch (np->port) {
2387 case 0:
2388 reset_val = ENET_SERDES_RESET_0;
2389 ctrl_reg = ENET_SERDES_0_CTRL_CFG;
2390 test_cfg_reg = ENET_SERDES_0_TEST_CFG;
2391 pll_cfg = ENET_SERDES_0_PLL_CFG;
2392 break;
2393 case 1:
2394 reset_val = ENET_SERDES_RESET_1;
2395 ctrl_reg = ENET_SERDES_1_CTRL_CFG;
2396 test_cfg_reg = ENET_SERDES_1_TEST_CFG;
2397 pll_cfg = ENET_SERDES_1_PLL_CFG;
2398 break;
2399
2400 default:
2401 return -EINVAL;
2402 }
2403 ctrl_val = (ENET_SERDES_CTRL_SDET_0 |
2404 ENET_SERDES_CTRL_SDET_1 |
2405 ENET_SERDES_CTRL_SDET_2 |
2406 ENET_SERDES_CTRL_SDET_3 |
2407 (0x5 << ENET_SERDES_CTRL_EMPH_0_SHIFT) |
2408 (0x5 << ENET_SERDES_CTRL_EMPH_1_SHIFT) |
2409 (0x5 << ENET_SERDES_CTRL_EMPH_2_SHIFT) |
2410 (0x5 << ENET_SERDES_CTRL_EMPH_3_SHIFT) |
2411 (0x1 << ENET_SERDES_CTRL_LADJ_0_SHIFT) |
2412 (0x1 << ENET_SERDES_CTRL_LADJ_1_SHIFT) |
2413 (0x1 << ENET_SERDES_CTRL_LADJ_2_SHIFT) |
2414 (0x1 << ENET_SERDES_CTRL_LADJ_3_SHIFT));
2415 test_cfg_val = 0;
2416
2417 if (lp->loopback_mode == LOOPBACK_PHY) {
2418 test_cfg_val |= ((ENET_TEST_MD_PAD_LOOPBACK <<
2419 ENET_SERDES_TEST_MD_0_SHIFT) |
2420 (ENET_TEST_MD_PAD_LOOPBACK <<
2421 ENET_SERDES_TEST_MD_1_SHIFT) |
2422 (ENET_TEST_MD_PAD_LOOPBACK <<
2423 ENET_SERDES_TEST_MD_2_SHIFT) |
2424 (ENET_TEST_MD_PAD_LOOPBACK <<
2425 ENET_SERDES_TEST_MD_3_SHIFT));
2426 }
2427
2428 esr_reset(np);
2429 nw64(pll_cfg, ENET_SERDES_PLL_FBDIV2);
2430 nw64(ctrl_reg, ctrl_val);
2431 nw64(test_cfg_reg, test_cfg_val);
2432
2433 /* Initialize all 4 lanes of the SERDES. */
2434 for (i = 0; i < 4; i++) {
2435 u32 rxtx_ctrl, glue0;
Hannes Eder7c34eb82009-02-14 11:12:48 +00002436 int err;
Matheos Worku5fbd7e22008-02-28 21:25:43 -08002437
2438 err = esr_read_rxtx_ctrl(np, i, &rxtx_ctrl);
2439 if (err)
2440 return err;
2441 err = esr_read_glue0(np, i, &glue0);
2442 if (err)
2443 return err;
2444
2445 rxtx_ctrl &= ~(ESR_RXTX_CTRL_VMUXLO);
2446 rxtx_ctrl |= (ESR_RXTX_CTRL_ENSTRETCH |
2447 (2 << ESR_RXTX_CTRL_VMUXLO_SHIFT));
2448
2449 glue0 &= ~(ESR_GLUE_CTRL0_SRATE |
2450 ESR_GLUE_CTRL0_THCNT |
2451 ESR_GLUE_CTRL0_BLTIME);
2452 glue0 |= (ESR_GLUE_CTRL0_RXLOSENAB |
2453 (0xf << ESR_GLUE_CTRL0_SRATE_SHIFT) |
2454 (0xff << ESR_GLUE_CTRL0_THCNT_SHIFT) |
2455 (BLTIME_300_CYCLES <<
2456 ESR_GLUE_CTRL0_BLTIME_SHIFT));
2457
2458 err = esr_write_rxtx_ctrl(np, i, rxtx_ctrl);
2459 if (err)
2460 return err;
2461 err = esr_write_glue0(np, i, glue0);
2462 if (err)
2463 return err;
2464 }
2465
2466
2467 sig = nr64(ESR_INT_SIGNALS);
2468 switch (np->port) {
2469 case 0:
2470 mask = ESR_INT_SIGNALS_P0_BITS;
2471 val = (ESR_INT_SRDY0_P0 |
2472 ESR_INT_DET0_P0 |
2473 ESR_INT_XSRDY_P0 |
2474 ESR_INT_XDP_P0_CH3 |
2475 ESR_INT_XDP_P0_CH2 |
2476 ESR_INT_XDP_P0_CH1 |
2477 ESR_INT_XDP_P0_CH0);
2478 break;
2479
2480 case 1:
2481 mask = ESR_INT_SIGNALS_P1_BITS;
2482 val = (ESR_INT_SRDY0_P1 |
2483 ESR_INT_DET0_P1 |
2484 ESR_INT_XSRDY_P1 |
2485 ESR_INT_XDP_P1_CH3 |
2486 ESR_INT_XDP_P1_CH2 |
2487 ESR_INT_XDP_P1_CH1 |
2488 ESR_INT_XDP_P1_CH0);
2489 break;
2490
2491 default:
2492 return -EINVAL;
2493 }
2494
2495 if ((sig & mask) != val) {
2496 int err;
2497 err = serdes_init_1g_serdes(np);
2498 if (!err) {
2499 np->flags &= ~NIU_FLAGS_10G;
2500 np->mac_xcvr = MAC_XCVR_PCS;
2501 } else {
Joe Perchesf10a1f22010-02-14 22:40:39 -08002502 netdev_err(np->dev, "Port %u 10G/1G SERDES Link Failed\n",
2503 np->port);
Matheos Worku5fbd7e22008-02-28 21:25:43 -08002504 return -ENODEV;
2505 }
2506 }
2507
2508 return 0;
2509}
2510
David S. Millera3138df2007-10-09 01:54:01 -07002511static int niu_determine_phy_disposition(struct niu *np)
2512{
2513 struct niu_parent *parent = np->parent;
2514 u8 plat_type = parent->plat_type;
2515 const struct niu_phy_template *tp;
2516 u32 phy_addr_off = 0;
2517
2518 if (plat_type == PLAT_TYPE_NIU) {
Santwona Beherae3e081e2008-11-14 14:44:08 -08002519 switch (np->flags &
2520 (NIU_FLAGS_10G |
2521 NIU_FLAGS_FIBER |
2522 NIU_FLAGS_XCVR_SERDES)) {
2523 case NIU_FLAGS_10G | NIU_FLAGS_XCVR_SERDES:
2524 /* 10G Serdes */
2525 tp = &phy_template_niu_10g_serdes;
2526 break;
2527 case NIU_FLAGS_XCVR_SERDES:
2528 /* 1G Serdes */
2529 tp = &phy_template_niu_1g_serdes;
2530 break;
2531 case NIU_FLAGS_10G | NIU_FLAGS_FIBER:
2532 /* 10G Fiber */
2533 default:
Tanli Chang9c5cd672009-05-26 20:45:50 -07002534 if (np->flags & NIU_FLAGS_HOTPLUG_PHY) {
2535 tp = &phy_template_niu_10g_hotplug;
2536 if (np->port == 0)
2537 phy_addr_off = 8;
2538 if (np->port == 1)
2539 phy_addr_off = 12;
2540 } else {
2541 tp = &phy_template_niu_10g_fiber;
2542 phy_addr_off += np->port;
2543 }
Santwona Beherae3e081e2008-11-14 14:44:08 -08002544 break;
2545 }
David S. Millera3138df2007-10-09 01:54:01 -07002546 } else {
Matheos Worku5fbd7e22008-02-28 21:25:43 -08002547 switch (np->flags &
2548 (NIU_FLAGS_10G |
2549 NIU_FLAGS_FIBER |
2550 NIU_FLAGS_XCVR_SERDES)) {
David S. Millera3138df2007-10-09 01:54:01 -07002551 case 0:
2552 /* 1G copper */
2553 tp = &phy_template_1g_copper;
2554 if (plat_type == PLAT_TYPE_VF_P0)
2555 phy_addr_off = 10;
2556 else if (plat_type == PLAT_TYPE_VF_P1)
2557 phy_addr_off = 26;
2558
2559 phy_addr_off += (np->port ^ 0x3);
2560 break;
2561
2562 case NIU_FLAGS_10G:
2563 /* 10G copper */
Constantin Baranove0d84962009-02-18 17:52:41 -08002564 tp = &phy_template_10g_copper;
David S. Millera3138df2007-10-09 01:54:01 -07002565 break;
2566
2567 case NIU_FLAGS_FIBER:
2568 /* 1G fiber */
2569 tp = &phy_template_1g_fiber;
2570 break;
2571
2572 case NIU_FLAGS_10G | NIU_FLAGS_FIBER:
2573 /* 10G fiber */
2574 tp = &phy_template_10g_fiber;
2575 if (plat_type == PLAT_TYPE_VF_P0 ||
2576 plat_type == PLAT_TYPE_VF_P1)
2577 phy_addr_off = 8;
2578 phy_addr_off += np->port;
Matheos Workua5d6ab52008-04-24 21:09:20 -07002579 if (np->flags & NIU_FLAGS_HOTPLUG_PHY) {
2580 tp = &phy_template_10g_fiber_hotplug;
2581 if (np->port == 0)
2582 phy_addr_off = 8;
2583 if (np->port == 1)
2584 phy_addr_off = 12;
2585 }
David S. Millera3138df2007-10-09 01:54:01 -07002586 break;
2587
Matheos Worku5fbd7e22008-02-28 21:25:43 -08002588 case NIU_FLAGS_10G | NIU_FLAGS_XCVR_SERDES:
2589 case NIU_FLAGS_XCVR_SERDES | NIU_FLAGS_FIBER:
2590 case NIU_FLAGS_XCVR_SERDES:
2591 switch(np->port) {
2592 case 0:
2593 case 1:
2594 tp = &phy_template_10g_serdes;
2595 break;
2596 case 2:
2597 case 3:
2598 tp = &phy_template_1g_rgmii;
2599 break;
2600 default:
2601 return -EINVAL;
2602 break;
2603 }
2604 phy_addr_off = niu_atca_port_num[np->port];
2605 break;
2606
David S. Millera3138df2007-10-09 01:54:01 -07002607 default:
2608 return -EINVAL;
2609 }
2610 }
2611
2612 np->phy_ops = tp->ops;
2613 np->phy_addr = tp->phy_addr_base + phy_addr_off;
2614
2615 return 0;
2616}
2617
2618static int niu_init_link(struct niu *np)
2619{
2620 struct niu_parent *parent = np->parent;
2621 int err, ignore;
2622
2623 if (parent->plat_type == PLAT_TYPE_NIU) {
2624 err = niu_xcvr_init(np);
2625 if (err)
2626 return err;
2627 msleep(200);
2628 }
2629 err = niu_serdes_init(np);
Tanli Chang9c5cd672009-05-26 20:45:50 -07002630 if (err && !(np->flags & NIU_FLAGS_HOTPLUG_PHY))
David S. Millera3138df2007-10-09 01:54:01 -07002631 return err;
2632 msleep(200);
2633 err = niu_xcvr_init(np);
Tanli Chang9c5cd672009-05-26 20:45:50 -07002634 if (!err || (np->flags & NIU_FLAGS_HOTPLUG_PHY))
David S. Millera3138df2007-10-09 01:54:01 -07002635 niu_link_status(np, &ignore);
2636 return 0;
2637}
2638
2639static void niu_set_primary_mac(struct niu *np, unsigned char *addr)
2640{
2641 u16 reg0 = addr[4] << 8 | addr[5];
2642 u16 reg1 = addr[2] << 8 | addr[3];
2643 u16 reg2 = addr[0] << 8 | addr[1];
2644
2645 if (np->flags & NIU_FLAGS_XMAC) {
2646 nw64_mac(XMAC_ADDR0, reg0);
2647 nw64_mac(XMAC_ADDR1, reg1);
2648 nw64_mac(XMAC_ADDR2, reg2);
2649 } else {
2650 nw64_mac(BMAC_ADDR0, reg0);
2651 nw64_mac(BMAC_ADDR1, reg1);
2652 nw64_mac(BMAC_ADDR2, reg2);
2653 }
2654}
2655
2656static int niu_num_alt_addr(struct niu *np)
2657{
2658 if (np->flags & NIU_FLAGS_XMAC)
2659 return XMAC_NUM_ALT_ADDR;
2660 else
2661 return BMAC_NUM_ALT_ADDR;
2662}
2663
2664static int niu_set_alt_mac(struct niu *np, int index, unsigned char *addr)
2665{
2666 u16 reg0 = addr[4] << 8 | addr[5];
2667 u16 reg1 = addr[2] << 8 | addr[3];
2668 u16 reg2 = addr[0] << 8 | addr[1];
2669
2670 if (index >= niu_num_alt_addr(np))
2671 return -EINVAL;
2672
2673 if (np->flags & NIU_FLAGS_XMAC) {
2674 nw64_mac(XMAC_ALT_ADDR0(index), reg0);
2675 nw64_mac(XMAC_ALT_ADDR1(index), reg1);
2676 nw64_mac(XMAC_ALT_ADDR2(index), reg2);
2677 } else {
2678 nw64_mac(BMAC_ALT_ADDR0(index), reg0);
2679 nw64_mac(BMAC_ALT_ADDR1(index), reg1);
2680 nw64_mac(BMAC_ALT_ADDR2(index), reg2);
2681 }
2682
2683 return 0;
2684}
2685
2686static int niu_enable_alt_mac(struct niu *np, int index, int on)
2687{
2688 unsigned long reg;
2689 u64 val, mask;
2690
2691 if (index >= niu_num_alt_addr(np))
2692 return -EINVAL;
2693
Matheos Workufa907892008-02-20 00:18:09 -08002694 if (np->flags & NIU_FLAGS_XMAC) {
David S. Millera3138df2007-10-09 01:54:01 -07002695 reg = XMAC_ADDR_CMPEN;
Matheos Workufa907892008-02-20 00:18:09 -08002696 mask = 1 << index;
2697 } else {
David S. Millera3138df2007-10-09 01:54:01 -07002698 reg = BMAC_ADDR_CMPEN;
Matheos Workufa907892008-02-20 00:18:09 -08002699 mask = 1 << (index + 1);
2700 }
David S. Millera3138df2007-10-09 01:54:01 -07002701
2702 val = nr64_mac(reg);
2703 if (on)
2704 val |= mask;
2705 else
2706 val &= ~mask;
2707 nw64_mac(reg, val);
2708
2709 return 0;
2710}
2711
2712static void __set_rdc_table_num_hw(struct niu *np, unsigned long reg,
2713 int num, int mac_pref)
2714{
2715 u64 val = nr64_mac(reg);
2716 val &= ~(HOST_INFO_MACRDCTBLN | HOST_INFO_MPR);
2717 val |= num;
2718 if (mac_pref)
2719 val |= HOST_INFO_MPR;
2720 nw64_mac(reg, val);
2721}
2722
2723static int __set_rdc_table_num(struct niu *np,
2724 int xmac_index, int bmac_index,
2725 int rdc_table_num, int mac_pref)
2726{
2727 unsigned long reg;
2728
2729 if (rdc_table_num & ~HOST_INFO_MACRDCTBLN)
2730 return -EINVAL;
2731 if (np->flags & NIU_FLAGS_XMAC)
2732 reg = XMAC_HOST_INFO(xmac_index);
2733 else
2734 reg = BMAC_HOST_INFO(bmac_index);
2735 __set_rdc_table_num_hw(np, reg, rdc_table_num, mac_pref);
2736 return 0;
2737}
2738
2739static int niu_set_primary_mac_rdc_table(struct niu *np, int table_num,
2740 int mac_pref)
2741{
2742 return __set_rdc_table_num(np, 17, 0, table_num, mac_pref);
2743}
2744
2745static int niu_set_multicast_mac_rdc_table(struct niu *np, int table_num,
2746 int mac_pref)
2747{
2748 return __set_rdc_table_num(np, 16, 8, table_num, mac_pref);
2749}
2750
2751static int niu_set_alt_mac_rdc_table(struct niu *np, int idx,
2752 int table_num, int mac_pref)
2753{
2754 if (idx >= niu_num_alt_addr(np))
2755 return -EINVAL;
2756 return __set_rdc_table_num(np, idx, idx + 1, table_num, mac_pref);
2757}
2758
2759static u64 vlan_entry_set_parity(u64 reg_val)
2760{
2761 u64 port01_mask;
2762 u64 port23_mask;
2763
2764 port01_mask = 0x00ff;
2765 port23_mask = 0xff00;
2766
2767 if (hweight64(reg_val & port01_mask) & 1)
2768 reg_val |= ENET_VLAN_TBL_PARITY0;
2769 else
2770 reg_val &= ~ENET_VLAN_TBL_PARITY0;
2771
2772 if (hweight64(reg_val & port23_mask) & 1)
2773 reg_val |= ENET_VLAN_TBL_PARITY1;
2774 else
2775 reg_val &= ~ENET_VLAN_TBL_PARITY1;
2776
2777 return reg_val;
2778}
2779
2780static void vlan_tbl_write(struct niu *np, unsigned long index,
2781 int port, int vpr, int rdc_table)
2782{
2783 u64 reg_val = nr64(ENET_VLAN_TBL(index));
2784
2785 reg_val &= ~((ENET_VLAN_TBL_VPR |
2786 ENET_VLAN_TBL_VLANRDCTBLN) <<
2787 ENET_VLAN_TBL_SHIFT(port));
2788 if (vpr)
2789 reg_val |= (ENET_VLAN_TBL_VPR <<
2790 ENET_VLAN_TBL_SHIFT(port));
2791 reg_val |= (rdc_table << ENET_VLAN_TBL_SHIFT(port));
2792
2793 reg_val = vlan_entry_set_parity(reg_val);
2794
2795 nw64(ENET_VLAN_TBL(index), reg_val);
2796}
2797
2798static void vlan_tbl_clear(struct niu *np)
2799{
2800 int i;
2801
2802 for (i = 0; i < ENET_VLAN_TBL_NUM_ENTRIES; i++)
2803 nw64(ENET_VLAN_TBL(i), 0);
2804}
2805
2806static int tcam_wait_bit(struct niu *np, u64 bit)
2807{
2808 int limit = 1000;
2809
2810 while (--limit > 0) {
2811 if (nr64(TCAM_CTL) & bit)
2812 break;
2813 udelay(1);
2814 }
roel kluind2a928e2009-12-27 04:10:59 +00002815 if (limit <= 0)
David S. Millera3138df2007-10-09 01:54:01 -07002816 return -ENODEV;
2817
2818 return 0;
2819}
2820
2821static int tcam_flush(struct niu *np, int index)
2822{
2823 nw64(TCAM_KEY_0, 0x00);
2824 nw64(TCAM_KEY_MASK_0, 0xff);
2825 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_WRITE | index));
2826
2827 return tcam_wait_bit(np, TCAM_CTL_STAT);
2828}
2829
2830#if 0
2831static int tcam_read(struct niu *np, int index,
2832 u64 *key, u64 *mask)
2833{
2834 int err;
2835
2836 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_READ | index));
2837 err = tcam_wait_bit(np, TCAM_CTL_STAT);
2838 if (!err) {
2839 key[0] = nr64(TCAM_KEY_0);
2840 key[1] = nr64(TCAM_KEY_1);
2841 key[2] = nr64(TCAM_KEY_2);
2842 key[3] = nr64(TCAM_KEY_3);
2843 mask[0] = nr64(TCAM_KEY_MASK_0);
2844 mask[1] = nr64(TCAM_KEY_MASK_1);
2845 mask[2] = nr64(TCAM_KEY_MASK_2);
2846 mask[3] = nr64(TCAM_KEY_MASK_3);
2847 }
2848 return err;
2849}
2850#endif
2851
2852static int tcam_write(struct niu *np, int index,
2853 u64 *key, u64 *mask)
2854{
2855 nw64(TCAM_KEY_0, key[0]);
2856 nw64(TCAM_KEY_1, key[1]);
2857 nw64(TCAM_KEY_2, key[2]);
2858 nw64(TCAM_KEY_3, key[3]);
2859 nw64(TCAM_KEY_MASK_0, mask[0]);
2860 nw64(TCAM_KEY_MASK_1, mask[1]);
2861 nw64(TCAM_KEY_MASK_2, mask[2]);
2862 nw64(TCAM_KEY_MASK_3, mask[3]);
2863 nw64(TCAM_CTL, (TCAM_CTL_RWC_TCAM_WRITE | index));
2864
2865 return tcam_wait_bit(np, TCAM_CTL_STAT);
2866}
2867
2868#if 0
2869static int tcam_assoc_read(struct niu *np, int index, u64 *data)
2870{
2871 int err;
2872
2873 nw64(TCAM_CTL, (TCAM_CTL_RWC_RAM_READ | index));
2874 err = tcam_wait_bit(np, TCAM_CTL_STAT);
2875 if (!err)
2876 *data = nr64(TCAM_KEY_1);
2877
2878 return err;
2879}
2880#endif
2881
2882static int tcam_assoc_write(struct niu *np, int index, u64 assoc_data)
2883{
2884 nw64(TCAM_KEY_1, assoc_data);
2885 nw64(TCAM_CTL, (TCAM_CTL_RWC_RAM_WRITE | index));
2886
2887 return tcam_wait_bit(np, TCAM_CTL_STAT);
2888}
2889
2890static void tcam_enable(struct niu *np, int on)
2891{
2892 u64 val = nr64(FFLP_CFG_1);
2893
2894 if (on)
2895 val &= ~FFLP_CFG_1_TCAM_DIS;
2896 else
2897 val |= FFLP_CFG_1_TCAM_DIS;
2898 nw64(FFLP_CFG_1, val);
2899}
2900
2901static void tcam_set_lat_and_ratio(struct niu *np, u64 latency, u64 ratio)
2902{
2903 u64 val = nr64(FFLP_CFG_1);
2904
2905 val &= ~(FFLP_CFG_1_FFLPINITDONE |
2906 FFLP_CFG_1_CAMLAT |
2907 FFLP_CFG_1_CAMRATIO);
2908 val |= (latency << FFLP_CFG_1_CAMLAT_SHIFT);
2909 val |= (ratio << FFLP_CFG_1_CAMRATIO_SHIFT);
2910 nw64(FFLP_CFG_1, val);
2911
2912 val = nr64(FFLP_CFG_1);
2913 val |= FFLP_CFG_1_FFLPINITDONE;
2914 nw64(FFLP_CFG_1, val);
2915}
2916
2917static int tcam_user_eth_class_enable(struct niu *np, unsigned long class,
2918 int on)
2919{
2920 unsigned long reg;
2921 u64 val;
2922
2923 if (class < CLASS_CODE_ETHERTYPE1 ||
2924 class > CLASS_CODE_ETHERTYPE2)
2925 return -EINVAL;
2926
2927 reg = L2_CLS(class - CLASS_CODE_ETHERTYPE1);
2928 val = nr64(reg);
2929 if (on)
2930 val |= L2_CLS_VLD;
2931 else
2932 val &= ~L2_CLS_VLD;
2933 nw64(reg, val);
2934
2935 return 0;
2936}
2937
2938#if 0
2939static int tcam_user_eth_class_set(struct niu *np, unsigned long class,
2940 u64 ether_type)
2941{
2942 unsigned long reg;
2943 u64 val;
2944
2945 if (class < CLASS_CODE_ETHERTYPE1 ||
2946 class > CLASS_CODE_ETHERTYPE2 ||
2947 (ether_type & ~(u64)0xffff) != 0)
2948 return -EINVAL;
2949
2950 reg = L2_CLS(class - CLASS_CODE_ETHERTYPE1);
2951 val = nr64(reg);
2952 val &= ~L2_CLS_ETYPE;
2953 val |= (ether_type << L2_CLS_ETYPE_SHIFT);
2954 nw64(reg, val);
2955
2956 return 0;
2957}
2958#endif
2959
2960static int tcam_user_ip_class_enable(struct niu *np, unsigned long class,
2961 int on)
2962{
2963 unsigned long reg;
2964 u64 val;
2965
2966 if (class < CLASS_CODE_USER_PROG1 ||
2967 class > CLASS_CODE_USER_PROG4)
2968 return -EINVAL;
2969
2970 reg = L3_CLS(class - CLASS_CODE_USER_PROG1);
2971 val = nr64(reg);
2972 if (on)
2973 val |= L3_CLS_VALID;
2974 else
2975 val &= ~L3_CLS_VALID;
2976 nw64(reg, val);
2977
2978 return 0;
2979}
2980
David S. Millera3138df2007-10-09 01:54:01 -07002981static int tcam_user_ip_class_set(struct niu *np, unsigned long class,
2982 int ipv6, u64 protocol_id,
2983 u64 tos_mask, u64 tos_val)
2984{
2985 unsigned long reg;
2986 u64 val;
2987
2988 if (class < CLASS_CODE_USER_PROG1 ||
2989 class > CLASS_CODE_USER_PROG4 ||
2990 (protocol_id & ~(u64)0xff) != 0 ||
2991 (tos_mask & ~(u64)0xff) != 0 ||
2992 (tos_val & ~(u64)0xff) != 0)
2993 return -EINVAL;
2994
2995 reg = L3_CLS(class - CLASS_CODE_USER_PROG1);
2996 val = nr64(reg);
2997 val &= ~(L3_CLS_IPVER | L3_CLS_PID |
2998 L3_CLS_TOSMASK | L3_CLS_TOS);
2999 if (ipv6)
3000 val |= L3_CLS_IPVER;
3001 val |= (protocol_id << L3_CLS_PID_SHIFT);
3002 val |= (tos_mask << L3_CLS_TOSMASK_SHIFT);
3003 val |= (tos_val << L3_CLS_TOS_SHIFT);
3004 nw64(reg, val);
3005
3006 return 0;
3007}
David S. Millera3138df2007-10-09 01:54:01 -07003008
3009static int tcam_early_init(struct niu *np)
3010{
3011 unsigned long i;
3012 int err;
3013
3014 tcam_enable(np, 0);
3015 tcam_set_lat_and_ratio(np,
3016 DEFAULT_TCAM_LATENCY,
3017 DEFAULT_TCAM_ACCESS_RATIO);
3018 for (i = CLASS_CODE_ETHERTYPE1; i <= CLASS_CODE_ETHERTYPE2; i++) {
3019 err = tcam_user_eth_class_enable(np, i, 0);
3020 if (err)
3021 return err;
3022 }
3023 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_USER_PROG4; i++) {
3024 err = tcam_user_ip_class_enable(np, i, 0);
3025 if (err)
3026 return err;
3027 }
3028
3029 return 0;
3030}
3031
3032static int tcam_flush_all(struct niu *np)
3033{
3034 unsigned long i;
3035
3036 for (i = 0; i < np->parent->tcam_num_entries; i++) {
3037 int err = tcam_flush(np, i);
3038 if (err)
3039 return err;
3040 }
3041 return 0;
3042}
3043
3044static u64 hash_addr_regval(unsigned long index, unsigned long num_entries)
3045{
Eric Dumazet807540b2010-09-23 05:40:09 +00003046 return (u64)index | (num_entries == 1 ? HASH_TBL_ADDR_AUTOINC : 0);
David S. Millera3138df2007-10-09 01:54:01 -07003047}
3048
3049#if 0
3050static int hash_read(struct niu *np, unsigned long partition,
3051 unsigned long index, unsigned long num_entries,
3052 u64 *data)
3053{
3054 u64 val = hash_addr_regval(index, num_entries);
3055 unsigned long i;
3056
3057 if (partition >= FCRAM_NUM_PARTITIONS ||
3058 index + num_entries > FCRAM_SIZE)
3059 return -EINVAL;
3060
3061 nw64(HASH_TBL_ADDR(partition), val);
3062 for (i = 0; i < num_entries; i++)
3063 data[i] = nr64(HASH_TBL_DATA(partition));
3064
3065 return 0;
3066}
3067#endif
3068
3069static int hash_write(struct niu *np, unsigned long partition,
3070 unsigned long index, unsigned long num_entries,
3071 u64 *data)
3072{
3073 u64 val = hash_addr_regval(index, num_entries);
3074 unsigned long i;
3075
3076 if (partition >= FCRAM_NUM_PARTITIONS ||
3077 index + (num_entries * 8) > FCRAM_SIZE)
3078 return -EINVAL;
3079
3080 nw64(HASH_TBL_ADDR(partition), val);
3081 for (i = 0; i < num_entries; i++)
3082 nw64(HASH_TBL_DATA(partition), data[i]);
3083
3084 return 0;
3085}
3086
3087static void fflp_reset(struct niu *np)
3088{
3089 u64 val;
3090
3091 nw64(FFLP_CFG_1, FFLP_CFG_1_PIO_FIO_RST);
3092 udelay(10);
3093 nw64(FFLP_CFG_1, 0);
3094
3095 val = FFLP_CFG_1_FCRAMOUTDR_NORMAL | FFLP_CFG_1_FFLPINITDONE;
3096 nw64(FFLP_CFG_1, val);
3097}
3098
3099static void fflp_set_timings(struct niu *np)
3100{
3101 u64 val = nr64(FFLP_CFG_1);
3102
3103 val &= ~FFLP_CFG_1_FFLPINITDONE;
3104 val |= (DEFAULT_FCRAMRATIO << FFLP_CFG_1_FCRAMRATIO_SHIFT);
3105 nw64(FFLP_CFG_1, val);
3106
3107 val = nr64(FFLP_CFG_1);
3108 val |= FFLP_CFG_1_FFLPINITDONE;
3109 nw64(FFLP_CFG_1, val);
3110
3111 val = nr64(FCRAM_REF_TMR);
3112 val &= ~(FCRAM_REF_TMR_MAX | FCRAM_REF_TMR_MIN);
3113 val |= (DEFAULT_FCRAM_REFRESH_MAX << FCRAM_REF_TMR_MAX_SHIFT);
3114 val |= (DEFAULT_FCRAM_REFRESH_MIN << FCRAM_REF_TMR_MIN_SHIFT);
3115 nw64(FCRAM_REF_TMR, val);
3116}
3117
3118static int fflp_set_partition(struct niu *np, u64 partition,
3119 u64 mask, u64 base, int enable)
3120{
3121 unsigned long reg;
3122 u64 val;
3123
3124 if (partition >= FCRAM_NUM_PARTITIONS ||
3125 (mask & ~(u64)0x1f) != 0 ||
3126 (base & ~(u64)0x1f) != 0)
3127 return -EINVAL;
3128
3129 reg = FLW_PRT_SEL(partition);
3130
3131 val = nr64(reg);
3132 val &= ~(FLW_PRT_SEL_EXT | FLW_PRT_SEL_MASK | FLW_PRT_SEL_BASE);
3133 val |= (mask << FLW_PRT_SEL_MASK_SHIFT);
3134 val |= (base << FLW_PRT_SEL_BASE_SHIFT);
3135 if (enable)
3136 val |= FLW_PRT_SEL_EXT;
3137 nw64(reg, val);
3138
3139 return 0;
3140}
3141
3142static int fflp_disable_all_partitions(struct niu *np)
3143{
3144 unsigned long i;
3145
3146 for (i = 0; i < FCRAM_NUM_PARTITIONS; i++) {
3147 int err = fflp_set_partition(np, 0, 0, 0, 0);
3148 if (err)
3149 return err;
3150 }
3151 return 0;
3152}
3153
3154static void fflp_llcsnap_enable(struct niu *np, int on)
3155{
3156 u64 val = nr64(FFLP_CFG_1);
3157
3158 if (on)
3159 val |= FFLP_CFG_1_LLCSNAP;
3160 else
3161 val &= ~FFLP_CFG_1_LLCSNAP;
3162 nw64(FFLP_CFG_1, val);
3163}
3164
3165static void fflp_errors_enable(struct niu *np, int on)
3166{
3167 u64 val = nr64(FFLP_CFG_1);
3168
3169 if (on)
3170 val &= ~FFLP_CFG_1_ERRORDIS;
3171 else
3172 val |= FFLP_CFG_1_ERRORDIS;
3173 nw64(FFLP_CFG_1, val);
3174}
3175
3176static int fflp_hash_clear(struct niu *np)
3177{
3178 struct fcram_hash_ipv4 ent;
3179 unsigned long i;
3180
3181 /* IPV4 hash entry with valid bit clear, rest is don't care. */
3182 memset(&ent, 0, sizeof(ent));
3183 ent.header = HASH_HEADER_EXT;
3184
3185 for (i = 0; i < FCRAM_SIZE; i += sizeof(ent)) {
3186 int err = hash_write(np, 0, i, 1, (u64 *) &ent);
3187 if (err)
3188 return err;
3189 }
3190 return 0;
3191}
3192
3193static int fflp_early_init(struct niu *np)
3194{
3195 struct niu_parent *parent;
3196 unsigned long flags;
3197 int err;
3198
3199 niu_lock_parent(np, flags);
3200
3201 parent = np->parent;
3202 err = 0;
3203 if (!(parent->flags & PARENT_FLGS_CLS_HWINIT)) {
David S. Millera3138df2007-10-09 01:54:01 -07003204 if (np->parent->plat_type != PLAT_TYPE_NIU) {
3205 fflp_reset(np);
3206 fflp_set_timings(np);
3207 err = fflp_disable_all_partitions(np);
3208 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08003209 netif_printk(np, probe, KERN_DEBUG, np->dev,
3210 "fflp_disable_all_partitions failed, err=%d\n",
3211 err);
David S. Millera3138df2007-10-09 01:54:01 -07003212 goto out;
3213 }
3214 }
3215
3216 err = tcam_early_init(np);
3217 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08003218 netif_printk(np, probe, KERN_DEBUG, np->dev,
3219 "tcam_early_init failed, err=%d\n", err);
David S. Millera3138df2007-10-09 01:54:01 -07003220 goto out;
3221 }
3222 fflp_llcsnap_enable(np, 1);
3223 fflp_errors_enable(np, 0);
3224 nw64(H1POLY, 0);
3225 nw64(H2POLY, 0);
3226
3227 err = tcam_flush_all(np);
3228 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08003229 netif_printk(np, probe, KERN_DEBUG, np->dev,
3230 "tcam_flush_all failed, err=%d\n", err);
David S. Millera3138df2007-10-09 01:54:01 -07003231 goto out;
3232 }
3233 if (np->parent->plat_type != PLAT_TYPE_NIU) {
3234 err = fflp_hash_clear(np);
3235 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08003236 netif_printk(np, probe, KERN_DEBUG, np->dev,
3237 "fflp_hash_clear failed, err=%d\n",
3238 err);
David S. Millera3138df2007-10-09 01:54:01 -07003239 goto out;
3240 }
3241 }
3242
3243 vlan_tbl_clear(np);
3244
David S. Millera3138df2007-10-09 01:54:01 -07003245 parent->flags |= PARENT_FLGS_CLS_HWINIT;
3246 }
3247out:
3248 niu_unlock_parent(np, flags);
3249 return err;
3250}
3251
3252static int niu_set_flow_key(struct niu *np, unsigned long class_code, u64 key)
3253{
3254 if (class_code < CLASS_CODE_USER_PROG1 ||
3255 class_code > CLASS_CODE_SCTP_IPV6)
3256 return -EINVAL;
3257
3258 nw64(FLOW_KEY(class_code - CLASS_CODE_USER_PROG1), key);
3259 return 0;
3260}
3261
3262static int niu_set_tcam_key(struct niu *np, unsigned long class_code, u64 key)
3263{
3264 if (class_code < CLASS_CODE_USER_PROG1 ||
3265 class_code > CLASS_CODE_SCTP_IPV6)
3266 return -EINVAL;
3267
3268 nw64(TCAM_KEY(class_code - CLASS_CODE_USER_PROG1), key);
3269 return 0;
3270}
3271
Santwona Behera2d96cf82009-02-20 00:58:45 -08003272/* Entries for the ports are interleaved in the TCAM */
3273static u16 tcam_get_index(struct niu *np, u16 idx)
3274{
3275 /* One entry reserved for IP fragment rule */
3276 if (idx >= (np->clas.tcam_sz - 1))
3277 idx = 0;
Eric Dumazet807540b2010-09-23 05:40:09 +00003278 return np->clas.tcam_top + ((idx+1) * np->parent->num_ports);
Santwona Behera2d96cf82009-02-20 00:58:45 -08003279}
3280
3281static u16 tcam_get_size(struct niu *np)
3282{
3283 /* One entry reserved for IP fragment rule */
3284 return np->clas.tcam_sz - 1;
3285}
3286
3287static u16 tcam_get_valid_entry_cnt(struct niu *np)
3288{
3289 /* One entry reserved for IP fragment rule */
3290 return np->clas.tcam_valid_entries - 1;
3291}
3292
David S. Millera3138df2007-10-09 01:54:01 -07003293static void niu_rx_skb_append(struct sk_buff *skb, struct page *page,
3294 u32 offset, u32 size)
3295{
3296 int i = skb_shinfo(skb)->nr_frags;
3297 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3298
3299 frag->page = page;
3300 frag->page_offset = offset;
3301 frag->size = size;
3302
3303 skb->len += size;
3304 skb->data_len += size;
3305 skb->truesize += size;
3306
3307 skb_shinfo(skb)->nr_frags = i + 1;
3308}
3309
3310static unsigned int niu_hash_rxaddr(struct rx_ring_info *rp, u64 a)
3311{
3312 a >>= PAGE_SHIFT;
3313 a ^= (a >> ilog2(MAX_RBR_RING_SIZE));
3314
Eric Dumazet807540b2010-09-23 05:40:09 +00003315 return a & (MAX_RBR_RING_SIZE - 1);
David S. Millera3138df2007-10-09 01:54:01 -07003316}
3317
3318static struct page *niu_find_rxpage(struct rx_ring_info *rp, u64 addr,
3319 struct page ***link)
3320{
3321 unsigned int h = niu_hash_rxaddr(rp, addr);
3322 struct page *p, **pp;
3323
3324 addr &= PAGE_MASK;
3325 pp = &rp->rxhash[h];
3326 for (; (p = *pp) != NULL; pp = (struct page **) &p->mapping) {
3327 if (p->index == addr) {
3328 *link = pp;
David S. Millera0387162010-07-07 18:20:30 -07003329 goto found;
David S. Millera3138df2007-10-09 01:54:01 -07003330 }
3331 }
David S. Millera0387162010-07-07 18:20:30 -07003332 BUG();
David S. Millera3138df2007-10-09 01:54:01 -07003333
David S. Millera0387162010-07-07 18:20:30 -07003334found:
David S. Millera3138df2007-10-09 01:54:01 -07003335 return p;
3336}
3337
3338static void niu_hash_page(struct rx_ring_info *rp, struct page *page, u64 base)
3339{
3340 unsigned int h = niu_hash_rxaddr(rp, base);
3341
3342 page->index = base;
3343 page->mapping = (struct address_space *) rp->rxhash[h];
3344 rp->rxhash[h] = page;
3345}
3346
3347static int niu_rbr_add_page(struct niu *np, struct rx_ring_info *rp,
3348 gfp_t mask, int start_index)
3349{
3350 struct page *page;
3351 u64 addr;
3352 int i;
3353
3354 page = alloc_page(mask);
3355 if (!page)
3356 return -ENOMEM;
3357
3358 addr = np->ops->map_page(np->device, page, 0,
3359 PAGE_SIZE, DMA_FROM_DEVICE);
3360
3361 niu_hash_page(rp, page, addr);
3362 if (rp->rbr_blocks_per_page > 1)
3363 atomic_add(rp->rbr_blocks_per_page - 1,
3364 &compound_head(page)->_count);
3365
3366 for (i = 0; i < rp->rbr_blocks_per_page; i++) {
3367 __le32 *rbr = &rp->rbr[start_index + i];
3368
3369 *rbr = cpu_to_le32(addr >> RBR_DESCR_ADDR_SHIFT);
3370 addr += rp->rbr_block_size;
3371 }
3372
3373 return 0;
3374}
3375
3376static void niu_rbr_refill(struct niu *np, struct rx_ring_info *rp, gfp_t mask)
3377{
3378 int index = rp->rbr_index;
3379
3380 rp->rbr_pending++;
3381 if ((rp->rbr_pending % rp->rbr_blocks_per_page) == 0) {
3382 int err = niu_rbr_add_page(np, rp, mask, index);
3383
3384 if (unlikely(err)) {
3385 rp->rbr_pending--;
3386 return;
3387 }
3388
3389 rp->rbr_index += rp->rbr_blocks_per_page;
3390 BUG_ON(rp->rbr_index > rp->rbr_table_size);
3391 if (rp->rbr_index == rp->rbr_table_size)
3392 rp->rbr_index = 0;
3393
3394 if (rp->rbr_pending >= rp->rbr_kick_thresh) {
3395 nw64(RBR_KICK(rp->rx_channel), rp->rbr_pending);
3396 rp->rbr_pending = 0;
3397 }
3398 }
3399}
3400
3401static int niu_rx_pkt_ignore(struct niu *np, struct rx_ring_info *rp)
3402{
3403 unsigned int index = rp->rcr_index;
3404 int num_rcr = 0;
3405
3406 rp->rx_dropped++;
3407 while (1) {
3408 struct page *page, **link;
3409 u64 addr, val;
3410 u32 rcr_size;
3411
3412 num_rcr++;
3413
3414 val = le64_to_cpup(&rp->rcr[index]);
3415 addr = (val & RCR_ENTRY_PKT_BUF_ADDR) <<
3416 RCR_ENTRY_PKT_BUF_ADDR_SHIFT;
3417 page = niu_find_rxpage(rp, addr, &link);
3418
3419 rcr_size = rp->rbr_sizes[(val & RCR_ENTRY_PKTBUFSZ) >>
3420 RCR_ENTRY_PKTBUFSZ_SHIFT];
3421 if ((page->index + PAGE_SIZE) - rcr_size == addr) {
3422 *link = (struct page *) page->mapping;
3423 np->ops->unmap_page(np->device, page->index,
3424 PAGE_SIZE, DMA_FROM_DEVICE);
3425 page->index = 0;
3426 page->mapping = NULL;
3427 __free_page(page);
3428 rp->rbr_refill_pending++;
3429 }
3430
3431 index = NEXT_RCR(rp, index);
3432 if (!(val & RCR_ENTRY_MULTI))
3433 break;
3434
3435 }
3436 rp->rcr_index = index;
3437
3438 return num_rcr;
3439}
3440
David S. Miller4099e012009-03-29 01:39:41 -07003441static int niu_process_rx_pkt(struct napi_struct *napi, struct niu *np,
3442 struct rx_ring_info *rp)
David S. Millera3138df2007-10-09 01:54:01 -07003443{
3444 unsigned int index = rp->rcr_index;
David S. Miller3cfa8562010-04-22 15:48:17 -07003445 struct rx_pkt_hdr1 *rh;
David S. Millera3138df2007-10-09 01:54:01 -07003446 struct sk_buff *skb;
3447 int len, num_rcr;
3448
3449 skb = netdev_alloc_skb(np->dev, RX_SKB_ALLOC_SIZE);
3450 if (unlikely(!skb))
3451 return niu_rx_pkt_ignore(np, rp);
3452
3453 num_rcr = 0;
3454 while (1) {
3455 struct page *page, **link;
3456 u32 rcr_size, append_size;
3457 u64 addr, val, off;
3458
3459 num_rcr++;
3460
3461 val = le64_to_cpup(&rp->rcr[index]);
3462
3463 len = (val & RCR_ENTRY_L2_LEN) >>
3464 RCR_ENTRY_L2_LEN_SHIFT;
3465 len -= ETH_FCS_LEN;
3466
3467 addr = (val & RCR_ENTRY_PKT_BUF_ADDR) <<
3468 RCR_ENTRY_PKT_BUF_ADDR_SHIFT;
3469 page = niu_find_rxpage(rp, addr, &link);
3470
3471 rcr_size = rp->rbr_sizes[(val & RCR_ENTRY_PKTBUFSZ) >>
3472 RCR_ENTRY_PKTBUFSZ_SHIFT];
3473
3474 off = addr & ~PAGE_MASK;
3475 append_size = rcr_size;
3476 if (num_rcr == 1) {
3477 int ptype;
3478
David S. Millera3138df2007-10-09 01:54:01 -07003479 ptype = (val >> RCR_ENTRY_PKT_TYPE_SHIFT);
3480 if ((ptype == RCR_PKT_TYPE_TCP ||
3481 ptype == RCR_PKT_TYPE_UDP) &&
3482 !(val & (RCR_ENTRY_NOPORT |
3483 RCR_ENTRY_ERROR)))
3484 skb->ip_summed = CHECKSUM_UNNECESSARY;
3485 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07003486 skb_checksum_none_assert(skb);
David S. Miller3cfa8562010-04-22 15:48:17 -07003487 } else if (!(val & RCR_ENTRY_MULTI))
David S. Millera3138df2007-10-09 01:54:01 -07003488 append_size = len - skb->len;
3489
3490 niu_rx_skb_append(skb, page, off, append_size);
3491 if ((page->index + rp->rbr_block_size) - rcr_size == addr) {
3492 *link = (struct page *) page->mapping;
3493 np->ops->unmap_page(np->device, page->index,
3494 PAGE_SIZE, DMA_FROM_DEVICE);
3495 page->index = 0;
3496 page->mapping = NULL;
3497 rp->rbr_refill_pending++;
3498 } else
3499 get_page(page);
3500
3501 index = NEXT_RCR(rp, index);
3502 if (!(val & RCR_ENTRY_MULTI))
3503 break;
3504
3505 }
3506 rp->rcr_index = index;
3507
David S. Miller3cfa8562010-04-22 15:48:17 -07003508 len += sizeof(*rh);
3509 len = min_t(int, len, sizeof(*rh) + VLAN_ETH_HLEN);
3510 __pskb_pull_tail(skb, len);
3511
3512 rh = (struct rx_pkt_hdr1 *) skb->data;
3513 if (np->dev->features & NETIF_F_RXHASH)
3514 skb->rxhash = ((u32)rh->hashval2_0 << 24 |
3515 (u32)rh->hashval2_1 << 16 |
3516 (u32)rh->hashval1_1 << 8 |
3517 (u32)rh->hashval1_2 << 0);
3518 skb_pull(skb, sizeof(*rh));
David S. Millera3138df2007-10-09 01:54:01 -07003519
3520 rp->rx_packets++;
3521 rp->rx_bytes += skb->len;
3522
3523 skb->protocol = eth_type_trans(skb, np->dev);
David S. Miller0c8dfc82009-01-27 16:22:32 -08003524 skb_record_rx_queue(skb, rp->rx_channel);
David S. Miller4099e012009-03-29 01:39:41 -07003525 napi_gro_receive(napi, skb);
David S. Millera3138df2007-10-09 01:54:01 -07003526
3527 return num_rcr;
3528}
3529
3530static int niu_rbr_fill(struct niu *np, struct rx_ring_info *rp, gfp_t mask)
3531{
3532 int blocks_per_page = rp->rbr_blocks_per_page;
3533 int err, index = rp->rbr_index;
3534
3535 err = 0;
3536 while (index < (rp->rbr_table_size - blocks_per_page)) {
3537 err = niu_rbr_add_page(np, rp, mask, index);
3538 if (err)
3539 break;
3540
3541 index += blocks_per_page;
3542 }
3543
3544 rp->rbr_index = index;
3545 return err;
3546}
3547
3548static void niu_rbr_free(struct niu *np, struct rx_ring_info *rp)
3549{
3550 int i;
3551
3552 for (i = 0; i < MAX_RBR_RING_SIZE; i++) {
3553 struct page *page;
3554
3555 page = rp->rxhash[i];
3556 while (page) {
3557 struct page *next = (struct page *) page->mapping;
3558 u64 base = page->index;
3559
3560 np->ops->unmap_page(np->device, base, PAGE_SIZE,
3561 DMA_FROM_DEVICE);
3562 page->index = 0;
3563 page->mapping = NULL;
3564
3565 __free_page(page);
3566
3567 page = next;
3568 }
3569 }
3570
3571 for (i = 0; i < rp->rbr_table_size; i++)
3572 rp->rbr[i] = cpu_to_le32(0);
3573 rp->rbr_index = 0;
3574}
3575
3576static int release_tx_packet(struct niu *np, struct tx_ring_info *rp, int idx)
3577{
3578 struct tx_buff_info *tb = &rp->tx_buffs[idx];
3579 struct sk_buff *skb = tb->skb;
3580 struct tx_pkt_hdr *tp;
3581 u64 tx_flags;
3582 int i, len;
3583
3584 tp = (struct tx_pkt_hdr *) skb->data;
3585 tx_flags = le64_to_cpup(&tp->flags);
3586
3587 rp->tx_packets++;
3588 rp->tx_bytes += (((tx_flags & TXHDR_LEN) >> TXHDR_LEN_SHIFT) -
3589 ((tx_flags & TXHDR_PAD) / 2));
3590
3591 len = skb_headlen(skb);
3592 np->ops->unmap_single(np->device, tb->mapping,
3593 len, DMA_TO_DEVICE);
3594
3595 if (le64_to_cpu(rp->descr[idx]) & TX_DESC_MARK)
3596 rp->mark_pending--;
3597
3598 tb->skb = NULL;
3599 do {
3600 idx = NEXT_TX(rp, idx);
3601 len -= MAX_TX_DESC_LEN;
3602 } while (len > 0);
3603
3604 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3605 tb = &rp->tx_buffs[idx];
3606 BUG_ON(tb->skb != NULL);
3607 np->ops->unmap_page(np->device, tb->mapping,
3608 skb_shinfo(skb)->frags[i].size,
3609 DMA_TO_DEVICE);
3610 idx = NEXT_TX(rp, idx);
3611 }
3612
3613 dev_kfree_skb(skb);
3614
3615 return idx;
3616}
3617
3618#define NIU_TX_WAKEUP_THRESH(rp) ((rp)->pending / 4)
3619
3620static void niu_tx_work(struct niu *np, struct tx_ring_info *rp)
3621{
David S. Millerb4c21632008-07-15 03:48:19 -07003622 struct netdev_queue *txq;
David S. Millera3138df2007-10-09 01:54:01 -07003623 u16 pkt_cnt, tmp;
David S. Millerb4c21632008-07-15 03:48:19 -07003624 int cons, index;
David S. Millera3138df2007-10-09 01:54:01 -07003625 u64 cs;
3626
David S. Millerb4c21632008-07-15 03:48:19 -07003627 index = (rp - np->tx_rings);
3628 txq = netdev_get_tx_queue(np->dev, index);
3629
David S. Millera3138df2007-10-09 01:54:01 -07003630 cs = rp->tx_cs;
3631 if (unlikely(!(cs & (TX_CS_MK | TX_CS_MMK))))
3632 goto out;
3633
3634 tmp = pkt_cnt = (cs & TX_CS_PKT_CNT) >> TX_CS_PKT_CNT_SHIFT;
3635 pkt_cnt = (pkt_cnt - rp->last_pkt_cnt) &
3636 (TX_CS_PKT_CNT >> TX_CS_PKT_CNT_SHIFT);
3637
3638 rp->last_pkt_cnt = tmp;
3639
3640 cons = rp->cons;
3641
Joe Perchesf10a1f22010-02-14 22:40:39 -08003642 netif_printk(np, tx_done, KERN_DEBUG, np->dev,
3643 "%s() pkt_cnt[%u] cons[%d]\n", __func__, pkt_cnt, cons);
David S. Millera3138df2007-10-09 01:54:01 -07003644
3645 while (pkt_cnt--)
3646 cons = release_tx_packet(np, rp, cons);
3647
3648 rp->cons = cons;
3649 smp_mb();
3650
3651out:
David S. Millerb4c21632008-07-15 03:48:19 -07003652 if (unlikely(netif_tx_queue_stopped(txq) &&
David S. Millera3138df2007-10-09 01:54:01 -07003653 (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp)))) {
David S. Millerb4c21632008-07-15 03:48:19 -07003654 __netif_tx_lock(txq, smp_processor_id());
3655 if (netif_tx_queue_stopped(txq) &&
David S. Millera3138df2007-10-09 01:54:01 -07003656 (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp)))
David S. Millerb4c21632008-07-15 03:48:19 -07003657 netif_tx_wake_queue(txq);
3658 __netif_tx_unlock(txq);
David S. Millera3138df2007-10-09 01:54:01 -07003659 }
3660}
3661
Jesper Dangaard Brouerb8a606b2008-12-18 19:50:49 -08003662static inline void niu_sync_rx_discard_stats(struct niu *np,
3663 struct rx_ring_info *rp,
3664 const int limit)
3665{
3666 /* This elaborate scheme is needed for reading the RX discard
3667 * counters, as they are only 16-bit and can overflow quickly,
3668 * and because the overflow indication bit is not usable as
3669 * the counter value does not wrap, but remains at max value
3670 * 0xFFFF.
3671 *
3672 * In theory and in practice counters can be lost in between
3673 * reading nr64() and clearing the counter nw64(). For this
3674 * reason, the number of counter clearings nw64() is
3675 * limited/reduced though the limit parameter.
3676 */
3677 int rx_channel = rp->rx_channel;
3678 u32 misc, wred;
3679
3680 /* RXMISC (Receive Miscellaneous Discard Count), covers the
3681 * following discard events: IPP (Input Port Process),
3682 * FFLP/TCAM, Full RCR (Receive Completion Ring) RBR (Receive
3683 * Block Ring) prefetch buffer is empty.
3684 */
3685 misc = nr64(RXMISC(rx_channel));
3686 if (unlikely((misc & RXMISC_COUNT) > limit)) {
3687 nw64(RXMISC(rx_channel), 0);
3688 rp->rx_errors += misc & RXMISC_COUNT;
3689
3690 if (unlikely(misc & RXMISC_OFLOW))
Joe Perchesf10a1f22010-02-14 22:40:39 -08003691 dev_err(np->device, "rx-%d: Counter overflow RXMISC discard\n",
3692 rx_channel);
Jesper Dangaard Brouerd2317762008-12-18 19:51:26 -08003693
Joe Perchesf10a1f22010-02-14 22:40:39 -08003694 netif_printk(np, rx_err, KERN_DEBUG, np->dev,
3695 "rx-%d: MISC drop=%u over=%u\n",
3696 rx_channel, misc, misc-limit);
Jesper Dangaard Brouerb8a606b2008-12-18 19:50:49 -08003697 }
3698
3699 /* WRED (Weighted Random Early Discard) by hardware */
3700 wred = nr64(RED_DIS_CNT(rx_channel));
3701 if (unlikely((wred & RED_DIS_CNT_COUNT) > limit)) {
3702 nw64(RED_DIS_CNT(rx_channel), 0);
3703 rp->rx_dropped += wred & RED_DIS_CNT_COUNT;
3704
3705 if (unlikely(wred & RED_DIS_CNT_OFLOW))
Joe Perchesf10a1f22010-02-14 22:40:39 -08003706 dev_err(np->device, "rx-%d: Counter overflow WRED discard\n", rx_channel);
Jesper Dangaard Brouerd2317762008-12-18 19:51:26 -08003707
Joe Perchesf10a1f22010-02-14 22:40:39 -08003708 netif_printk(np, rx_err, KERN_DEBUG, np->dev,
3709 "rx-%d: WRED drop=%u over=%u\n",
3710 rx_channel, wred, wred-limit);
Jesper Dangaard Brouerb8a606b2008-12-18 19:50:49 -08003711 }
3712}
3713
David S. Miller4099e012009-03-29 01:39:41 -07003714static int niu_rx_work(struct napi_struct *napi, struct niu *np,
3715 struct rx_ring_info *rp, int budget)
David S. Millera3138df2007-10-09 01:54:01 -07003716{
3717 int qlen, rcr_done = 0, work_done = 0;
3718 struct rxdma_mailbox *mbox = rp->mbox;
3719 u64 stat;
3720
3721#if 1
3722 stat = nr64(RX_DMA_CTL_STAT(rp->rx_channel));
3723 qlen = nr64(RCRSTAT_A(rp->rx_channel)) & RCRSTAT_A_QLEN;
3724#else
3725 stat = le64_to_cpup(&mbox->rx_dma_ctl_stat);
3726 qlen = (le64_to_cpup(&mbox->rcrstat_a) & RCRSTAT_A_QLEN);
3727#endif
3728 mbox->rx_dma_ctl_stat = 0;
3729 mbox->rcrstat_a = 0;
3730
Joe Perchesf10a1f22010-02-14 22:40:39 -08003731 netif_printk(np, rx_status, KERN_DEBUG, np->dev,
3732 "%s(chan[%d]), stat[%llx] qlen=%d\n",
3733 __func__, rp->rx_channel, (unsigned long long)stat, qlen);
David S. Millera3138df2007-10-09 01:54:01 -07003734
3735 rcr_done = work_done = 0;
3736 qlen = min(qlen, budget);
3737 while (work_done < qlen) {
David S. Miller4099e012009-03-29 01:39:41 -07003738 rcr_done += niu_process_rx_pkt(napi, np, rp);
David S. Millera3138df2007-10-09 01:54:01 -07003739 work_done++;
3740 }
3741
3742 if (rp->rbr_refill_pending >= rp->rbr_kick_thresh) {
3743 unsigned int i;
3744
3745 for (i = 0; i < rp->rbr_refill_pending; i++)
3746 niu_rbr_refill(np, rp, GFP_ATOMIC);
3747 rp->rbr_refill_pending = 0;
3748 }
3749
3750 stat = (RX_DMA_CTL_STAT_MEX |
3751 ((u64)work_done << RX_DMA_CTL_STAT_PKTREAD_SHIFT) |
3752 ((u64)rcr_done << RX_DMA_CTL_STAT_PTRREAD_SHIFT));
3753
3754 nw64(RX_DMA_CTL_STAT(rp->rx_channel), stat);
3755
Jesper Dangaard Brouere98def12008-12-18 19:51:56 -08003756 /* Only sync discards stats when qlen indicate potential for drops */
3757 if (qlen > 10)
3758 niu_sync_rx_discard_stats(np, rp, 0x7FFF);
Jesper Dangaard Brouerb8a606b2008-12-18 19:50:49 -08003759
David S. Millera3138df2007-10-09 01:54:01 -07003760 return work_done;
3761}
3762
3763static int niu_poll_core(struct niu *np, struct niu_ldg *lp, int budget)
3764{
3765 u64 v0 = lp->v0;
3766 u32 tx_vec = (v0 >> 32);
3767 u32 rx_vec = (v0 & 0xffffffff);
3768 int i, work_done = 0;
3769
Joe Perchesf10a1f22010-02-14 22:40:39 -08003770 netif_printk(np, intr, KERN_DEBUG, np->dev,
3771 "%s() v0[%016llx]\n", __func__, (unsigned long long)v0);
David S. Millera3138df2007-10-09 01:54:01 -07003772
3773 for (i = 0; i < np->num_tx_rings; i++) {
3774 struct tx_ring_info *rp = &np->tx_rings[i];
3775 if (tx_vec & (1 << rp->tx_channel))
3776 niu_tx_work(np, rp);
3777 nw64(LD_IM0(LDN_TXDMA(rp->tx_channel)), 0);
3778 }
3779
3780 for (i = 0; i < np->num_rx_rings; i++) {
3781 struct rx_ring_info *rp = &np->rx_rings[i];
3782
3783 if (rx_vec & (1 << rp->rx_channel)) {
3784 int this_work_done;
3785
David S. Miller4099e012009-03-29 01:39:41 -07003786 this_work_done = niu_rx_work(&lp->napi, np, rp,
David S. Millera3138df2007-10-09 01:54:01 -07003787 budget);
3788
3789 budget -= this_work_done;
3790 work_done += this_work_done;
3791 }
3792 nw64(LD_IM0(LDN_RXDMA(rp->rx_channel)), 0);
3793 }
3794
3795 return work_done;
3796}
3797
3798static int niu_poll(struct napi_struct *napi, int budget)
3799{
3800 struct niu_ldg *lp = container_of(napi, struct niu_ldg, napi);
3801 struct niu *np = lp->np;
3802 int work_done;
3803
3804 work_done = niu_poll_core(np, lp, budget);
3805
3806 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08003807 napi_complete(napi);
David S. Millera3138df2007-10-09 01:54:01 -07003808 niu_ldg_rearm(np, lp, 1);
3809 }
3810 return work_done;
3811}
3812
3813static void niu_log_rxchan_errors(struct niu *np, struct rx_ring_info *rp,
3814 u64 stat)
3815{
Joe Perchesf10a1f22010-02-14 22:40:39 -08003816 netdev_err(np->dev, "RX channel %u errors ( ", rp->rx_channel);
David S. Millera3138df2007-10-09 01:54:01 -07003817
3818 if (stat & RX_DMA_CTL_STAT_RBR_TMOUT)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003819 pr_cont("RBR_TMOUT ");
David S. Millera3138df2007-10-09 01:54:01 -07003820 if (stat & RX_DMA_CTL_STAT_RSP_CNT_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003821 pr_cont("RSP_CNT ");
David S. Millera3138df2007-10-09 01:54:01 -07003822 if (stat & RX_DMA_CTL_STAT_BYTE_EN_BUS)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003823 pr_cont("BYTE_EN_BUS ");
David S. Millera3138df2007-10-09 01:54:01 -07003824 if (stat & RX_DMA_CTL_STAT_RSP_DAT_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003825 pr_cont("RSP_DAT ");
David S. Millera3138df2007-10-09 01:54:01 -07003826 if (stat & RX_DMA_CTL_STAT_RCR_ACK_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003827 pr_cont("RCR_ACK ");
David S. Millera3138df2007-10-09 01:54:01 -07003828 if (stat & RX_DMA_CTL_STAT_RCR_SHA_PAR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003829 pr_cont("RCR_SHA_PAR ");
David S. Millera3138df2007-10-09 01:54:01 -07003830 if (stat & RX_DMA_CTL_STAT_RBR_PRE_PAR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003831 pr_cont("RBR_PRE_PAR ");
David S. Millera3138df2007-10-09 01:54:01 -07003832 if (stat & RX_DMA_CTL_STAT_CONFIG_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003833 pr_cont("CONFIG ");
David S. Millera3138df2007-10-09 01:54:01 -07003834 if (stat & RX_DMA_CTL_STAT_RCRINCON)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003835 pr_cont("RCRINCON ");
David S. Millera3138df2007-10-09 01:54:01 -07003836 if (stat & RX_DMA_CTL_STAT_RCRFULL)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003837 pr_cont("RCRFULL ");
David S. Millera3138df2007-10-09 01:54:01 -07003838 if (stat & RX_DMA_CTL_STAT_RBRFULL)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003839 pr_cont("RBRFULL ");
David S. Millera3138df2007-10-09 01:54:01 -07003840 if (stat & RX_DMA_CTL_STAT_RBRLOGPAGE)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003841 pr_cont("RBRLOGPAGE ");
David S. Millera3138df2007-10-09 01:54:01 -07003842 if (stat & RX_DMA_CTL_STAT_CFIGLOGPAGE)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003843 pr_cont("CFIGLOGPAGE ");
David S. Millera3138df2007-10-09 01:54:01 -07003844 if (stat & RX_DMA_CTL_STAT_DC_FIFO_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003845 pr_cont("DC_FIDO ");
David S. Millera3138df2007-10-09 01:54:01 -07003846
Joe Perchesf10a1f22010-02-14 22:40:39 -08003847 pr_cont(")\n");
David S. Millera3138df2007-10-09 01:54:01 -07003848}
3849
3850static int niu_rx_error(struct niu *np, struct rx_ring_info *rp)
3851{
3852 u64 stat = nr64(RX_DMA_CTL_STAT(rp->rx_channel));
3853 int err = 0;
3854
David S. Millera3138df2007-10-09 01:54:01 -07003855
3856 if (stat & (RX_DMA_CTL_STAT_CHAN_FATAL |
3857 RX_DMA_CTL_STAT_PORT_FATAL))
3858 err = -EINVAL;
3859
Matheos Worku406f3532008-01-04 23:48:26 -08003860 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08003861 netdev_err(np->dev, "RX channel %u error, stat[%llx]\n",
3862 rp->rx_channel,
3863 (unsigned long long) stat);
Matheos Worku406f3532008-01-04 23:48:26 -08003864
3865 niu_log_rxchan_errors(np, rp, stat);
3866 }
3867
David S. Millera3138df2007-10-09 01:54:01 -07003868 nw64(RX_DMA_CTL_STAT(rp->rx_channel),
3869 stat & RX_DMA_CTL_WRITE_CLEAR_ERRS);
3870
3871 return err;
3872}
3873
3874static void niu_log_txchan_errors(struct niu *np, struct tx_ring_info *rp,
3875 u64 cs)
3876{
Joe Perchesf10a1f22010-02-14 22:40:39 -08003877 netdev_err(np->dev, "TX channel %u errors ( ", rp->tx_channel);
David S. Millera3138df2007-10-09 01:54:01 -07003878
3879 if (cs & TX_CS_MBOX_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003880 pr_cont("MBOX ");
David S. Millera3138df2007-10-09 01:54:01 -07003881 if (cs & TX_CS_PKT_SIZE_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003882 pr_cont("PKT_SIZE ");
David S. Millera3138df2007-10-09 01:54:01 -07003883 if (cs & TX_CS_TX_RING_OFLOW)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003884 pr_cont("TX_RING_OFLOW ");
David S. Millera3138df2007-10-09 01:54:01 -07003885 if (cs & TX_CS_PREF_BUF_PAR_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003886 pr_cont("PREF_BUF_PAR ");
David S. Millera3138df2007-10-09 01:54:01 -07003887 if (cs & TX_CS_NACK_PREF)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003888 pr_cont("NACK_PREF ");
David S. Millera3138df2007-10-09 01:54:01 -07003889 if (cs & TX_CS_NACK_PKT_RD)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003890 pr_cont("NACK_PKT_RD ");
David S. Millera3138df2007-10-09 01:54:01 -07003891 if (cs & TX_CS_CONF_PART_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003892 pr_cont("CONF_PART ");
David S. Millera3138df2007-10-09 01:54:01 -07003893 if (cs & TX_CS_PKT_PRT_ERR)
Joe Perchesf10a1f22010-02-14 22:40:39 -08003894 pr_cont("PKT_PTR ");
David S. Millera3138df2007-10-09 01:54:01 -07003895
Joe Perchesf10a1f22010-02-14 22:40:39 -08003896 pr_cont(")\n");
David S. Millera3138df2007-10-09 01:54:01 -07003897}
3898
3899static int niu_tx_error(struct niu *np, struct tx_ring_info *rp)
3900{
3901 u64 cs, logh, logl;
3902
3903 cs = nr64(TX_CS(rp->tx_channel));
3904 logh = nr64(TX_RNG_ERR_LOGH(rp->tx_channel));
3905 logl = nr64(TX_RNG_ERR_LOGL(rp->tx_channel));
3906
Joe Perchesf10a1f22010-02-14 22:40:39 -08003907 netdev_err(np->dev, "TX channel %u error, cs[%llx] logh[%llx] logl[%llx]\n",
3908 rp->tx_channel,
3909 (unsigned long long)cs,
3910 (unsigned long long)logh,
3911 (unsigned long long)logl);
David S. Millera3138df2007-10-09 01:54:01 -07003912
3913 niu_log_txchan_errors(np, rp, cs);
3914
3915 return -ENODEV;
3916}
3917
3918static int niu_mif_interrupt(struct niu *np)
3919{
3920 u64 mif_status = nr64(MIF_STATUS);
3921 int phy_mdint = 0;
3922
3923 if (np->flags & NIU_FLAGS_XMAC) {
3924 u64 xrxmac_stat = nr64_mac(XRXMAC_STATUS);
3925
3926 if (xrxmac_stat & XRXMAC_STATUS_PHY_MDINT)
3927 phy_mdint = 1;
3928 }
3929
Joe Perchesf10a1f22010-02-14 22:40:39 -08003930 netdev_err(np->dev, "MIF interrupt, stat[%llx] phy_mdint(%d)\n",
3931 (unsigned long long)mif_status, phy_mdint);
David S. Millera3138df2007-10-09 01:54:01 -07003932
3933 return -ENODEV;
3934}
3935
3936static void niu_xmac_interrupt(struct niu *np)
3937{
3938 struct niu_xmac_stats *mp = &np->mac_stats.xmac;
3939 u64 val;
3940
3941 val = nr64_mac(XTXMAC_STATUS);
3942 if (val & XTXMAC_STATUS_FRAME_CNT_EXP)
3943 mp->tx_frames += TXMAC_FRM_CNT_COUNT;
3944 if (val & XTXMAC_STATUS_BYTE_CNT_EXP)
3945 mp->tx_bytes += TXMAC_BYTE_CNT_COUNT;
3946 if (val & XTXMAC_STATUS_TXFIFO_XFR_ERR)
3947 mp->tx_fifo_errors++;
3948 if (val & XTXMAC_STATUS_TXMAC_OFLOW)
3949 mp->tx_overflow_errors++;
3950 if (val & XTXMAC_STATUS_MAX_PSIZE_ERR)
3951 mp->tx_max_pkt_size_errors++;
3952 if (val & XTXMAC_STATUS_TXMAC_UFLOW)
3953 mp->tx_underflow_errors++;
3954
3955 val = nr64_mac(XRXMAC_STATUS);
3956 if (val & XRXMAC_STATUS_LCL_FLT_STATUS)
3957 mp->rx_local_faults++;
3958 if (val & XRXMAC_STATUS_RFLT_DET)
3959 mp->rx_remote_faults++;
3960 if (val & XRXMAC_STATUS_LFLT_CNT_EXP)
3961 mp->rx_link_faults += LINK_FAULT_CNT_COUNT;
3962 if (val & XRXMAC_STATUS_ALIGNERR_CNT_EXP)
3963 mp->rx_align_errors += RXMAC_ALIGN_ERR_CNT_COUNT;
3964 if (val & XRXMAC_STATUS_RXFRAG_CNT_EXP)
3965 mp->rx_frags += RXMAC_FRAG_CNT_COUNT;
3966 if (val & XRXMAC_STATUS_RXMULTF_CNT_EXP)
3967 mp->rx_mcasts += RXMAC_MC_FRM_CNT_COUNT;
3968 if (val & XRXMAC_STATUS_RXBCAST_CNT_EXP)
3969 mp->rx_bcasts += RXMAC_BC_FRM_CNT_COUNT;
3970 if (val & XRXMAC_STATUS_RXBCAST_CNT_EXP)
3971 mp->rx_bcasts += RXMAC_BC_FRM_CNT_COUNT;
3972 if (val & XRXMAC_STATUS_RXHIST1_CNT_EXP)
3973 mp->rx_hist_cnt1 += RXMAC_HIST_CNT1_COUNT;
3974 if (val & XRXMAC_STATUS_RXHIST2_CNT_EXP)
3975 mp->rx_hist_cnt2 += RXMAC_HIST_CNT2_COUNT;
3976 if (val & XRXMAC_STATUS_RXHIST3_CNT_EXP)
3977 mp->rx_hist_cnt3 += RXMAC_HIST_CNT3_COUNT;
3978 if (val & XRXMAC_STATUS_RXHIST4_CNT_EXP)
3979 mp->rx_hist_cnt4 += RXMAC_HIST_CNT4_COUNT;
3980 if (val & XRXMAC_STATUS_RXHIST5_CNT_EXP)
3981 mp->rx_hist_cnt5 += RXMAC_HIST_CNT5_COUNT;
3982 if (val & XRXMAC_STATUS_RXHIST6_CNT_EXP)
3983 mp->rx_hist_cnt6 += RXMAC_HIST_CNT6_COUNT;
3984 if (val & XRXMAC_STATUS_RXHIST7_CNT_EXP)
3985 mp->rx_hist_cnt7 += RXMAC_HIST_CNT7_COUNT;
Julia Lawall176edd52009-08-07 21:53:41 +00003986 if (val & XRXMAC_STATUS_RXOCTET_CNT_EXP)
David S. Millera3138df2007-10-09 01:54:01 -07003987 mp->rx_octets += RXMAC_BT_CNT_COUNT;
3988 if (val & XRXMAC_STATUS_CVIOLERR_CNT_EXP)
3989 mp->rx_code_violations += RXMAC_CD_VIO_CNT_COUNT;
3990 if (val & XRXMAC_STATUS_LENERR_CNT_EXP)
3991 mp->rx_len_errors += RXMAC_MPSZER_CNT_COUNT;
3992 if (val & XRXMAC_STATUS_CRCERR_CNT_EXP)
3993 mp->rx_crc_errors += RXMAC_CRC_ER_CNT_COUNT;
3994 if (val & XRXMAC_STATUS_RXUFLOW)
3995 mp->rx_underflows++;
3996 if (val & XRXMAC_STATUS_RXOFLOW)
3997 mp->rx_overflows++;
3998
3999 val = nr64_mac(XMAC_FC_STAT);
4000 if (val & XMAC_FC_STAT_TX_MAC_NPAUSE)
4001 mp->pause_off_state++;
4002 if (val & XMAC_FC_STAT_TX_MAC_PAUSE)
4003 mp->pause_on_state++;
4004 if (val & XMAC_FC_STAT_RX_MAC_RPAUSE)
4005 mp->pause_received++;
4006}
4007
4008static void niu_bmac_interrupt(struct niu *np)
4009{
4010 struct niu_bmac_stats *mp = &np->mac_stats.bmac;
4011 u64 val;
4012
4013 val = nr64_mac(BTXMAC_STATUS);
4014 if (val & BTXMAC_STATUS_UNDERRUN)
4015 mp->tx_underflow_errors++;
4016 if (val & BTXMAC_STATUS_MAX_PKT_ERR)
4017 mp->tx_max_pkt_size_errors++;
4018 if (val & BTXMAC_STATUS_BYTE_CNT_EXP)
4019 mp->tx_bytes += BTXMAC_BYTE_CNT_COUNT;
4020 if (val & BTXMAC_STATUS_FRAME_CNT_EXP)
4021 mp->tx_frames += BTXMAC_FRM_CNT_COUNT;
4022
4023 val = nr64_mac(BRXMAC_STATUS);
4024 if (val & BRXMAC_STATUS_OVERFLOW)
4025 mp->rx_overflows++;
4026 if (val & BRXMAC_STATUS_FRAME_CNT_EXP)
4027 mp->rx_frames += BRXMAC_FRAME_CNT_COUNT;
4028 if (val & BRXMAC_STATUS_ALIGN_ERR_EXP)
4029 mp->rx_align_errors += BRXMAC_ALIGN_ERR_CNT_COUNT;
4030 if (val & BRXMAC_STATUS_CRC_ERR_EXP)
4031 mp->rx_crc_errors += BRXMAC_ALIGN_ERR_CNT_COUNT;
4032 if (val & BRXMAC_STATUS_LEN_ERR_EXP)
4033 mp->rx_len_errors += BRXMAC_CODE_VIOL_ERR_CNT_COUNT;
4034
4035 val = nr64_mac(BMAC_CTRL_STATUS);
4036 if (val & BMAC_CTRL_STATUS_NOPAUSE)
4037 mp->pause_off_state++;
4038 if (val & BMAC_CTRL_STATUS_PAUSE)
4039 mp->pause_on_state++;
4040 if (val & BMAC_CTRL_STATUS_PAUSE_RECV)
4041 mp->pause_received++;
4042}
4043
4044static int niu_mac_interrupt(struct niu *np)
4045{
4046 if (np->flags & NIU_FLAGS_XMAC)
4047 niu_xmac_interrupt(np);
4048 else
4049 niu_bmac_interrupt(np);
4050
4051 return 0;
4052}
4053
4054static void niu_log_device_error(struct niu *np, u64 stat)
4055{
Joe Perchesf10a1f22010-02-14 22:40:39 -08004056 netdev_err(np->dev, "Core device errors ( ");
David S. Millera3138df2007-10-09 01:54:01 -07004057
4058 if (stat & SYS_ERR_MASK_META2)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004059 pr_cont("META2 ");
David S. Millera3138df2007-10-09 01:54:01 -07004060 if (stat & SYS_ERR_MASK_META1)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004061 pr_cont("META1 ");
David S. Millera3138df2007-10-09 01:54:01 -07004062 if (stat & SYS_ERR_MASK_PEU)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004063 pr_cont("PEU ");
David S. Millera3138df2007-10-09 01:54:01 -07004064 if (stat & SYS_ERR_MASK_TXC)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004065 pr_cont("TXC ");
David S. Millera3138df2007-10-09 01:54:01 -07004066 if (stat & SYS_ERR_MASK_RDMC)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004067 pr_cont("RDMC ");
David S. Millera3138df2007-10-09 01:54:01 -07004068 if (stat & SYS_ERR_MASK_TDMC)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004069 pr_cont("TDMC ");
David S. Millera3138df2007-10-09 01:54:01 -07004070 if (stat & SYS_ERR_MASK_ZCP)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004071 pr_cont("ZCP ");
David S. Millera3138df2007-10-09 01:54:01 -07004072 if (stat & SYS_ERR_MASK_FFLP)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004073 pr_cont("FFLP ");
David S. Millera3138df2007-10-09 01:54:01 -07004074 if (stat & SYS_ERR_MASK_IPP)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004075 pr_cont("IPP ");
David S. Millera3138df2007-10-09 01:54:01 -07004076 if (stat & SYS_ERR_MASK_MAC)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004077 pr_cont("MAC ");
David S. Millera3138df2007-10-09 01:54:01 -07004078 if (stat & SYS_ERR_MASK_SMX)
Joe Perchesf10a1f22010-02-14 22:40:39 -08004079 pr_cont("SMX ");
David S. Millera3138df2007-10-09 01:54:01 -07004080
Joe Perchesf10a1f22010-02-14 22:40:39 -08004081 pr_cont(")\n");
David S. Millera3138df2007-10-09 01:54:01 -07004082}
4083
4084static int niu_device_error(struct niu *np)
4085{
4086 u64 stat = nr64(SYS_ERR_STAT);
4087
Joe Perchesf10a1f22010-02-14 22:40:39 -08004088 netdev_err(np->dev, "Core device error, stat[%llx]\n",
4089 (unsigned long long)stat);
David S. Millera3138df2007-10-09 01:54:01 -07004090
4091 niu_log_device_error(np, stat);
4092
4093 return -ENODEV;
4094}
4095
Matheos Worku406f3532008-01-04 23:48:26 -08004096static int niu_slowpath_interrupt(struct niu *np, struct niu_ldg *lp,
4097 u64 v0, u64 v1, u64 v2)
David S. Millera3138df2007-10-09 01:54:01 -07004098{
Matheos Worku406f3532008-01-04 23:48:26 -08004099
David S. Millera3138df2007-10-09 01:54:01 -07004100 int i, err = 0;
4101
Matheos Worku406f3532008-01-04 23:48:26 -08004102 lp->v0 = v0;
4103 lp->v1 = v1;
4104 lp->v2 = v2;
4105
David S. Millera3138df2007-10-09 01:54:01 -07004106 if (v1 & 0x00000000ffffffffULL) {
4107 u32 rx_vec = (v1 & 0xffffffff);
4108
4109 for (i = 0; i < np->num_rx_rings; i++) {
4110 struct rx_ring_info *rp = &np->rx_rings[i];
4111
4112 if (rx_vec & (1 << rp->rx_channel)) {
4113 int r = niu_rx_error(np, rp);
Matheos Worku406f3532008-01-04 23:48:26 -08004114 if (r) {
David S. Millera3138df2007-10-09 01:54:01 -07004115 err = r;
Matheos Worku406f3532008-01-04 23:48:26 -08004116 } else {
4117 if (!v0)
4118 nw64(RX_DMA_CTL_STAT(rp->rx_channel),
4119 RX_DMA_CTL_STAT_MEX);
4120 }
David S. Millera3138df2007-10-09 01:54:01 -07004121 }
4122 }
4123 }
4124 if (v1 & 0x7fffffff00000000ULL) {
4125 u32 tx_vec = (v1 >> 32) & 0x7fffffff;
4126
4127 for (i = 0; i < np->num_tx_rings; i++) {
4128 struct tx_ring_info *rp = &np->tx_rings[i];
4129
4130 if (tx_vec & (1 << rp->tx_channel)) {
4131 int r = niu_tx_error(np, rp);
4132 if (r)
4133 err = r;
4134 }
4135 }
4136 }
4137 if ((v0 | v1) & 0x8000000000000000ULL) {
4138 int r = niu_mif_interrupt(np);
4139 if (r)
4140 err = r;
4141 }
4142 if (v2) {
4143 if (v2 & 0x01ef) {
4144 int r = niu_mac_interrupt(np);
4145 if (r)
4146 err = r;
4147 }
4148 if (v2 & 0x0210) {
4149 int r = niu_device_error(np);
4150 if (r)
4151 err = r;
4152 }
4153 }
4154
4155 if (err)
4156 niu_enable_interrupts(np, 0);
4157
Matheos Worku406f3532008-01-04 23:48:26 -08004158 return err;
David S. Millera3138df2007-10-09 01:54:01 -07004159}
4160
4161static void niu_rxchan_intr(struct niu *np, struct rx_ring_info *rp,
4162 int ldn)
4163{
4164 struct rxdma_mailbox *mbox = rp->mbox;
4165 u64 stat_write, stat = le64_to_cpup(&mbox->rx_dma_ctl_stat);
4166
4167 stat_write = (RX_DMA_CTL_STAT_RCRTHRES |
4168 RX_DMA_CTL_STAT_RCRTO);
4169 nw64(RX_DMA_CTL_STAT(rp->rx_channel), stat_write);
4170
Joe Perchesf10a1f22010-02-14 22:40:39 -08004171 netif_printk(np, intr, KERN_DEBUG, np->dev,
4172 "%s() stat[%llx]\n", __func__, (unsigned long long)stat);
David S. Millera3138df2007-10-09 01:54:01 -07004173}
4174
4175static void niu_txchan_intr(struct niu *np, struct tx_ring_info *rp,
4176 int ldn)
4177{
4178 rp->tx_cs = nr64(TX_CS(rp->tx_channel));
4179
Joe Perchesf10a1f22010-02-14 22:40:39 -08004180 netif_printk(np, intr, KERN_DEBUG, np->dev,
4181 "%s() cs[%llx]\n", __func__, (unsigned long long)rp->tx_cs);
David S. Millera3138df2007-10-09 01:54:01 -07004182}
4183
4184static void __niu_fastpath_interrupt(struct niu *np, int ldg, u64 v0)
4185{
4186 struct niu_parent *parent = np->parent;
4187 u32 rx_vec, tx_vec;
4188 int i;
4189
4190 tx_vec = (v0 >> 32);
4191 rx_vec = (v0 & 0xffffffff);
4192
4193 for (i = 0; i < np->num_rx_rings; i++) {
4194 struct rx_ring_info *rp = &np->rx_rings[i];
4195 int ldn = LDN_RXDMA(rp->rx_channel);
4196
4197 if (parent->ldg_map[ldn] != ldg)
4198 continue;
4199
4200 nw64(LD_IM0(ldn), LD_IM0_MASK);
4201 if (rx_vec & (1 << rp->rx_channel))
4202 niu_rxchan_intr(np, rp, ldn);
4203 }
4204
4205 for (i = 0; i < np->num_tx_rings; i++) {
4206 struct tx_ring_info *rp = &np->tx_rings[i];
4207 int ldn = LDN_TXDMA(rp->tx_channel);
4208
4209 if (parent->ldg_map[ldn] != ldg)
4210 continue;
4211
4212 nw64(LD_IM0(ldn), LD_IM0_MASK);
4213 if (tx_vec & (1 << rp->tx_channel))
4214 niu_txchan_intr(np, rp, ldn);
4215 }
4216}
4217
4218static void niu_schedule_napi(struct niu *np, struct niu_ldg *lp,
4219 u64 v0, u64 v1, u64 v2)
4220{
Ben Hutchings288379f2009-01-19 16:43:59 -08004221 if (likely(napi_schedule_prep(&lp->napi))) {
David S. Millera3138df2007-10-09 01:54:01 -07004222 lp->v0 = v0;
4223 lp->v1 = v1;
4224 lp->v2 = v2;
4225 __niu_fastpath_interrupt(np, lp->ldg_num, v0);
Ben Hutchings288379f2009-01-19 16:43:59 -08004226 __napi_schedule(&lp->napi);
David S. Millera3138df2007-10-09 01:54:01 -07004227 }
4228}
4229
4230static irqreturn_t niu_interrupt(int irq, void *dev_id)
4231{
4232 struct niu_ldg *lp = dev_id;
4233 struct niu *np = lp->np;
4234 int ldg = lp->ldg_num;
4235 unsigned long flags;
4236 u64 v0, v1, v2;
4237
4238 if (netif_msg_intr(np))
Joe Perchesf10a1f22010-02-14 22:40:39 -08004239 printk(KERN_DEBUG KBUILD_MODNAME ": " "%s() ldg[%p](%d)",
4240 __func__, lp, ldg);
David S. Millera3138df2007-10-09 01:54:01 -07004241
4242 spin_lock_irqsave(&np->lock, flags);
4243
4244 v0 = nr64(LDSV0(ldg));
4245 v1 = nr64(LDSV1(ldg));
4246 v2 = nr64(LDSV2(ldg));
4247
4248 if (netif_msg_intr(np))
David S. Miller02b1bae2010-02-15 00:07:00 -08004249 pr_cont(" v0[%llx] v1[%llx] v2[%llx]\n",
David S. Millera3138df2007-10-09 01:54:01 -07004250 (unsigned long long) v0,
4251 (unsigned long long) v1,
4252 (unsigned long long) v2);
4253
4254 if (unlikely(!v0 && !v1 && !v2)) {
4255 spin_unlock_irqrestore(&np->lock, flags);
4256 return IRQ_NONE;
4257 }
4258
4259 if (unlikely((v0 & ((u64)1 << LDN_MIF)) || v1 || v2)) {
Matheos Worku406f3532008-01-04 23:48:26 -08004260 int err = niu_slowpath_interrupt(np, lp, v0, v1, v2);
David S. Millera3138df2007-10-09 01:54:01 -07004261 if (err)
4262 goto out;
4263 }
4264 if (likely(v0 & ~((u64)1 << LDN_MIF)))
4265 niu_schedule_napi(np, lp, v0, v1, v2);
4266 else
4267 niu_ldg_rearm(np, lp, 1);
4268out:
4269 spin_unlock_irqrestore(&np->lock, flags);
4270
4271 return IRQ_HANDLED;
4272}
4273
4274static void niu_free_rx_ring_info(struct niu *np, struct rx_ring_info *rp)
4275{
4276 if (rp->mbox) {
4277 np->ops->free_coherent(np->device,
4278 sizeof(struct rxdma_mailbox),
4279 rp->mbox, rp->mbox_dma);
4280 rp->mbox = NULL;
4281 }
4282 if (rp->rcr) {
4283 np->ops->free_coherent(np->device,
4284 MAX_RCR_RING_SIZE * sizeof(__le64),
4285 rp->rcr, rp->rcr_dma);
4286 rp->rcr = NULL;
4287 rp->rcr_table_size = 0;
4288 rp->rcr_index = 0;
4289 }
4290 if (rp->rbr) {
4291 niu_rbr_free(np, rp);
4292
4293 np->ops->free_coherent(np->device,
4294 MAX_RBR_RING_SIZE * sizeof(__le32),
4295 rp->rbr, rp->rbr_dma);
4296 rp->rbr = NULL;
4297 rp->rbr_table_size = 0;
4298 rp->rbr_index = 0;
4299 }
4300 kfree(rp->rxhash);
4301 rp->rxhash = NULL;
4302}
4303
4304static void niu_free_tx_ring_info(struct niu *np, struct tx_ring_info *rp)
4305{
4306 if (rp->mbox) {
4307 np->ops->free_coherent(np->device,
4308 sizeof(struct txdma_mailbox),
4309 rp->mbox, rp->mbox_dma);
4310 rp->mbox = NULL;
4311 }
4312 if (rp->descr) {
4313 int i;
4314
4315 for (i = 0; i < MAX_TX_RING_SIZE; i++) {
4316 if (rp->tx_buffs[i].skb)
4317 (void) release_tx_packet(np, rp, i);
4318 }
4319
4320 np->ops->free_coherent(np->device,
4321 MAX_TX_RING_SIZE * sizeof(__le64),
4322 rp->descr, rp->descr_dma);
4323 rp->descr = NULL;
4324 rp->pending = 0;
4325 rp->prod = 0;
4326 rp->cons = 0;
4327 rp->wrap_bit = 0;
4328 }
4329}
4330
4331static void niu_free_channels(struct niu *np)
4332{
4333 int i;
4334
4335 if (np->rx_rings) {
4336 for (i = 0; i < np->num_rx_rings; i++) {
4337 struct rx_ring_info *rp = &np->rx_rings[i];
4338
4339 niu_free_rx_ring_info(np, rp);
4340 }
4341 kfree(np->rx_rings);
4342 np->rx_rings = NULL;
4343 np->num_rx_rings = 0;
4344 }
4345
4346 if (np->tx_rings) {
4347 for (i = 0; i < np->num_tx_rings; i++) {
4348 struct tx_ring_info *rp = &np->tx_rings[i];
4349
4350 niu_free_tx_ring_info(np, rp);
4351 }
4352 kfree(np->tx_rings);
4353 np->tx_rings = NULL;
4354 np->num_tx_rings = 0;
4355 }
4356}
4357
4358static int niu_alloc_rx_ring_info(struct niu *np,
4359 struct rx_ring_info *rp)
4360{
4361 BUILD_BUG_ON(sizeof(struct rxdma_mailbox) != 64);
4362
4363 rp->rxhash = kzalloc(MAX_RBR_RING_SIZE * sizeof(struct page *),
4364 GFP_KERNEL);
4365 if (!rp->rxhash)
4366 return -ENOMEM;
4367
4368 rp->mbox = np->ops->alloc_coherent(np->device,
4369 sizeof(struct rxdma_mailbox),
4370 &rp->mbox_dma, GFP_KERNEL);
4371 if (!rp->mbox)
4372 return -ENOMEM;
4373 if ((unsigned long)rp->mbox & (64UL - 1)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08004374 netdev_err(np->dev, "Coherent alloc gives misaligned RXDMA mailbox %p\n",
4375 rp->mbox);
David S. Millera3138df2007-10-09 01:54:01 -07004376 return -EINVAL;
4377 }
4378
4379 rp->rcr = np->ops->alloc_coherent(np->device,
4380 MAX_RCR_RING_SIZE * sizeof(__le64),
4381 &rp->rcr_dma, GFP_KERNEL);
4382 if (!rp->rcr)
4383 return -ENOMEM;
4384 if ((unsigned long)rp->rcr & (64UL - 1)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08004385 netdev_err(np->dev, "Coherent alloc gives misaligned RXDMA RCR table %p\n",
4386 rp->rcr);
David S. Millera3138df2007-10-09 01:54:01 -07004387 return -EINVAL;
4388 }
4389 rp->rcr_table_size = MAX_RCR_RING_SIZE;
4390 rp->rcr_index = 0;
4391
4392 rp->rbr = np->ops->alloc_coherent(np->device,
4393 MAX_RBR_RING_SIZE * sizeof(__le32),
4394 &rp->rbr_dma, GFP_KERNEL);
4395 if (!rp->rbr)
4396 return -ENOMEM;
4397 if ((unsigned long)rp->rbr & (64UL - 1)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08004398 netdev_err(np->dev, "Coherent alloc gives misaligned RXDMA RBR table %p\n",
4399 rp->rbr);
David S. Millera3138df2007-10-09 01:54:01 -07004400 return -EINVAL;
4401 }
4402 rp->rbr_table_size = MAX_RBR_RING_SIZE;
4403 rp->rbr_index = 0;
4404 rp->rbr_pending = 0;
4405
4406 return 0;
4407}
4408
4409static void niu_set_max_burst(struct niu *np, struct tx_ring_info *rp)
4410{
4411 int mtu = np->dev->mtu;
4412
4413 /* These values are recommended by the HW designers for fair
4414 * utilization of DRR amongst the rings.
4415 */
4416 rp->max_burst = mtu + 32;
4417 if (rp->max_burst > 4096)
4418 rp->max_burst = 4096;
4419}
4420
4421static int niu_alloc_tx_ring_info(struct niu *np,
4422 struct tx_ring_info *rp)
4423{
4424 BUILD_BUG_ON(sizeof(struct txdma_mailbox) != 64);
4425
4426 rp->mbox = np->ops->alloc_coherent(np->device,
4427 sizeof(struct txdma_mailbox),
4428 &rp->mbox_dma, GFP_KERNEL);
4429 if (!rp->mbox)
4430 return -ENOMEM;
4431 if ((unsigned long)rp->mbox & (64UL - 1)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08004432 netdev_err(np->dev, "Coherent alloc gives misaligned TXDMA mailbox %p\n",
4433 rp->mbox);
David S. Millera3138df2007-10-09 01:54:01 -07004434 return -EINVAL;
4435 }
4436
4437 rp->descr = np->ops->alloc_coherent(np->device,
4438 MAX_TX_RING_SIZE * sizeof(__le64),
4439 &rp->descr_dma, GFP_KERNEL);
4440 if (!rp->descr)
4441 return -ENOMEM;
4442 if ((unsigned long)rp->descr & (64UL - 1)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08004443 netdev_err(np->dev, "Coherent alloc gives misaligned TXDMA descr table %p\n",
4444 rp->descr);
David S. Millera3138df2007-10-09 01:54:01 -07004445 return -EINVAL;
4446 }
4447
4448 rp->pending = MAX_TX_RING_SIZE;
4449 rp->prod = 0;
4450 rp->cons = 0;
4451 rp->wrap_bit = 0;
4452
4453 /* XXX make these configurable... XXX */
4454 rp->mark_freq = rp->pending / 4;
4455
4456 niu_set_max_burst(np, rp);
4457
4458 return 0;
4459}
4460
4461static void niu_size_rbr(struct niu *np, struct rx_ring_info *rp)
4462{
Olof Johansson81429972007-10-21 16:32:58 -07004463 u16 bss;
David S. Millera3138df2007-10-09 01:54:01 -07004464
Olof Johansson81429972007-10-21 16:32:58 -07004465 bss = min(PAGE_SHIFT, 15);
David S. Millera3138df2007-10-09 01:54:01 -07004466
Olof Johansson81429972007-10-21 16:32:58 -07004467 rp->rbr_block_size = 1 << bss;
4468 rp->rbr_blocks_per_page = 1 << (PAGE_SHIFT-bss);
David S. Millera3138df2007-10-09 01:54:01 -07004469
4470 rp->rbr_sizes[0] = 256;
4471 rp->rbr_sizes[1] = 1024;
4472 if (np->dev->mtu > ETH_DATA_LEN) {
4473 switch (PAGE_SIZE) {
4474 case 4 * 1024:
4475 rp->rbr_sizes[2] = 4096;
4476 break;
4477
4478 default:
4479 rp->rbr_sizes[2] = 8192;
4480 break;
4481 }
4482 } else {
4483 rp->rbr_sizes[2] = 2048;
4484 }
4485 rp->rbr_sizes[3] = rp->rbr_block_size;
4486}
4487
4488static int niu_alloc_channels(struct niu *np)
4489{
4490 struct niu_parent *parent = np->parent;
4491 int first_rx_channel, first_tx_channel;
David S. Miller9690c632011-02-03 16:12:50 -08004492 int num_rx_rings, num_tx_rings;
4493 struct rx_ring_info *rx_rings;
4494 struct tx_ring_info *tx_rings;
David S. Millera3138df2007-10-09 01:54:01 -07004495 int i, port, err;
4496
4497 port = np->port;
4498 first_rx_channel = first_tx_channel = 0;
4499 for (i = 0; i < port; i++) {
4500 first_rx_channel += parent->rxchan_per_port[i];
4501 first_tx_channel += parent->txchan_per_port[i];
4502 }
4503
David S. Miller9690c632011-02-03 16:12:50 -08004504 num_rx_rings = parent->rxchan_per_port[port];
4505 num_tx_rings = parent->txchan_per_port[port];
David S. Millera3138df2007-10-09 01:54:01 -07004506
David S. Miller9690c632011-02-03 16:12:50 -08004507 rx_rings = kcalloc(num_rx_rings, sizeof(struct rx_ring_info),
4508 GFP_KERNEL);
David S. Millera3138df2007-10-09 01:54:01 -07004509 err = -ENOMEM;
David S. Miller9690c632011-02-03 16:12:50 -08004510 if (!rx_rings)
David S. Millera3138df2007-10-09 01:54:01 -07004511 goto out_err;
4512
David S. Miller9690c632011-02-03 16:12:50 -08004513 np->num_rx_rings = num_rx_rings;
4514 smp_wmb();
4515 np->rx_rings = rx_rings;
4516
4517 netif_set_real_num_rx_queues(np->dev, num_rx_rings);
4518
David S. Millera3138df2007-10-09 01:54:01 -07004519 for (i = 0; i < np->num_rx_rings; i++) {
4520 struct rx_ring_info *rp = &np->rx_rings[i];
4521
4522 rp->np = np;
4523 rp->rx_channel = first_rx_channel + i;
4524
4525 err = niu_alloc_rx_ring_info(np, rp);
4526 if (err)
4527 goto out_err;
4528
4529 niu_size_rbr(np, rp);
4530
4531 /* XXX better defaults, configurable, etc... XXX */
4532 rp->nonsyn_window = 64;
4533 rp->nonsyn_threshold = rp->rcr_table_size - 64;
4534 rp->syn_window = 64;
4535 rp->syn_threshold = rp->rcr_table_size - 64;
4536 rp->rcr_pkt_threshold = 16;
4537 rp->rcr_timeout = 8;
4538 rp->rbr_kick_thresh = RBR_REFILL_MIN;
4539 if (rp->rbr_kick_thresh < rp->rbr_blocks_per_page)
4540 rp->rbr_kick_thresh = rp->rbr_blocks_per_page;
4541
4542 err = niu_rbr_fill(np, rp, GFP_KERNEL);
4543 if (err)
4544 return err;
4545 }
4546
David S. Miller9690c632011-02-03 16:12:50 -08004547 tx_rings = kcalloc(num_tx_rings, sizeof(struct tx_ring_info),
4548 GFP_KERNEL);
David S. Millera3138df2007-10-09 01:54:01 -07004549 err = -ENOMEM;
David S. Miller9690c632011-02-03 16:12:50 -08004550 if (!tx_rings)
David S. Millera3138df2007-10-09 01:54:01 -07004551 goto out_err;
4552
David S. Miller9690c632011-02-03 16:12:50 -08004553 np->num_tx_rings = num_tx_rings;
4554 smp_wmb();
4555 np->tx_rings = tx_rings;
4556
4557 netif_set_real_num_tx_queues(np->dev, num_tx_rings);
4558
David S. Millera3138df2007-10-09 01:54:01 -07004559 for (i = 0; i < np->num_tx_rings; i++) {
4560 struct tx_ring_info *rp = &np->tx_rings[i];
4561
4562 rp->np = np;
4563 rp->tx_channel = first_tx_channel + i;
4564
4565 err = niu_alloc_tx_ring_info(np, rp);
4566 if (err)
4567 goto out_err;
4568 }
4569
4570 return 0;
4571
4572out_err:
4573 niu_free_channels(np);
4574 return err;
4575}
4576
4577static int niu_tx_cs_sng_poll(struct niu *np, int channel)
4578{
4579 int limit = 1000;
4580
4581 while (--limit > 0) {
4582 u64 val = nr64(TX_CS(channel));
4583 if (val & TX_CS_SNG_STATE)
4584 return 0;
4585 }
4586 return -ENODEV;
4587}
4588
4589static int niu_tx_channel_stop(struct niu *np, int channel)
4590{
4591 u64 val = nr64(TX_CS(channel));
4592
4593 val |= TX_CS_STOP_N_GO;
4594 nw64(TX_CS(channel), val);
4595
4596 return niu_tx_cs_sng_poll(np, channel);
4597}
4598
4599static int niu_tx_cs_reset_poll(struct niu *np, int channel)
4600{
4601 int limit = 1000;
4602
4603 while (--limit > 0) {
4604 u64 val = nr64(TX_CS(channel));
4605 if (!(val & TX_CS_RST))
4606 return 0;
4607 }
4608 return -ENODEV;
4609}
4610
4611static int niu_tx_channel_reset(struct niu *np, int channel)
4612{
4613 u64 val = nr64(TX_CS(channel));
4614 int err;
4615
4616 val |= TX_CS_RST;
4617 nw64(TX_CS(channel), val);
4618
4619 err = niu_tx_cs_reset_poll(np, channel);
4620 if (!err)
4621 nw64(TX_RING_KICK(channel), 0);
4622
4623 return err;
4624}
4625
4626static int niu_tx_channel_lpage_init(struct niu *np, int channel)
4627{
4628 u64 val;
4629
4630 nw64(TX_LOG_MASK1(channel), 0);
4631 nw64(TX_LOG_VAL1(channel), 0);
4632 nw64(TX_LOG_MASK2(channel), 0);
4633 nw64(TX_LOG_VAL2(channel), 0);
4634 nw64(TX_LOG_PAGE_RELO1(channel), 0);
4635 nw64(TX_LOG_PAGE_RELO2(channel), 0);
4636 nw64(TX_LOG_PAGE_HDL(channel), 0);
4637
4638 val = (u64)np->port << TX_LOG_PAGE_VLD_FUNC_SHIFT;
4639 val |= (TX_LOG_PAGE_VLD_PAGE0 | TX_LOG_PAGE_VLD_PAGE1);
4640 nw64(TX_LOG_PAGE_VLD(channel), val);
4641
4642 /* XXX TXDMA 32bit mode? XXX */
4643
4644 return 0;
4645}
4646
4647static void niu_txc_enable_port(struct niu *np, int on)
4648{
4649 unsigned long flags;
4650 u64 val, mask;
4651
4652 niu_lock_parent(np, flags);
4653 val = nr64(TXC_CONTROL);
4654 mask = (u64)1 << np->port;
4655 if (on) {
4656 val |= TXC_CONTROL_ENABLE | mask;
4657 } else {
4658 val &= ~mask;
4659 if ((val & ~TXC_CONTROL_ENABLE) == 0)
4660 val &= ~TXC_CONTROL_ENABLE;
4661 }
4662 nw64(TXC_CONTROL, val);
4663 niu_unlock_parent(np, flags);
4664}
4665
4666static void niu_txc_set_imask(struct niu *np, u64 imask)
4667{
4668 unsigned long flags;
4669 u64 val;
4670
4671 niu_lock_parent(np, flags);
4672 val = nr64(TXC_INT_MASK);
4673 val &= ~TXC_INT_MASK_VAL(np->port);
4674 val |= (imask << TXC_INT_MASK_VAL_SHIFT(np->port));
4675 niu_unlock_parent(np, flags);
4676}
4677
4678static void niu_txc_port_dma_enable(struct niu *np, int on)
4679{
4680 u64 val = 0;
4681
4682 if (on) {
4683 int i;
4684
4685 for (i = 0; i < np->num_tx_rings; i++)
4686 val |= (1 << np->tx_rings[i].tx_channel);
4687 }
4688 nw64(TXC_PORT_DMA(np->port), val);
4689}
4690
4691static int niu_init_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
4692{
4693 int err, channel = rp->tx_channel;
4694 u64 val, ring_len;
4695
4696 err = niu_tx_channel_stop(np, channel);
4697 if (err)
4698 return err;
4699
4700 err = niu_tx_channel_reset(np, channel);
4701 if (err)
4702 return err;
4703
4704 err = niu_tx_channel_lpage_init(np, channel);
4705 if (err)
4706 return err;
4707
4708 nw64(TXC_DMA_MAX(channel), rp->max_burst);
4709 nw64(TX_ENT_MSK(channel), 0);
4710
4711 if (rp->descr_dma & ~(TX_RNG_CFIG_STADDR_BASE |
4712 TX_RNG_CFIG_STADDR)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08004713 netdev_err(np->dev, "TX ring channel %d DMA addr (%llx) is not aligned\n",
4714 channel, (unsigned long long)rp->descr_dma);
David S. Millera3138df2007-10-09 01:54:01 -07004715 return -EINVAL;
4716 }
4717
4718 /* The length field in TX_RNG_CFIG is measured in 64-byte
4719 * blocks. rp->pending is the number of TX descriptors in
4720 * our ring, 8 bytes each, thus we divide by 8 bytes more
4721 * to get the proper value the chip wants.
4722 */
4723 ring_len = (rp->pending / 8);
4724
4725 val = ((ring_len << TX_RNG_CFIG_LEN_SHIFT) |
4726 rp->descr_dma);
4727 nw64(TX_RNG_CFIG(channel), val);
4728
4729 if (((rp->mbox_dma >> 32) & ~TXDMA_MBH_MBADDR) ||
4730 ((u32)rp->mbox_dma & ~TXDMA_MBL_MBADDR)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08004731 netdev_err(np->dev, "TX ring channel %d MBOX addr (%llx) has invalid bits\n",
4732 channel, (unsigned long long)rp->mbox_dma);
David S. Millera3138df2007-10-09 01:54:01 -07004733 return -EINVAL;
4734 }
4735 nw64(TXDMA_MBH(channel), rp->mbox_dma >> 32);
4736 nw64(TXDMA_MBL(channel), rp->mbox_dma & TXDMA_MBL_MBADDR);
4737
4738 nw64(TX_CS(channel), 0);
4739
4740 rp->last_pkt_cnt = 0;
4741
4742 return 0;
4743}
4744
4745static void niu_init_rdc_groups(struct niu *np)
4746{
4747 struct niu_rdc_tables *tp = &np->parent->rdc_group_cfg[np->port];
4748 int i, first_table_num = tp->first_table_num;
4749
4750 for (i = 0; i < tp->num_tables; i++) {
4751 struct rdc_table *tbl = &tp->tables[i];
4752 int this_table = first_table_num + i;
4753 int slot;
4754
4755 for (slot = 0; slot < NIU_RDC_TABLE_SLOTS; slot++)
4756 nw64(RDC_TBL(this_table, slot),
4757 tbl->rxdma_channel[slot]);
4758 }
4759
4760 nw64(DEF_RDC(np->port), np->parent->rdc_default[np->port]);
4761}
4762
4763static void niu_init_drr_weight(struct niu *np)
4764{
4765 int type = phy_decode(np->parent->port_phy, np->port);
4766 u64 val;
4767
4768 switch (type) {
4769 case PORT_TYPE_10G:
4770 val = PT_DRR_WEIGHT_DEFAULT_10G;
4771 break;
4772
4773 case PORT_TYPE_1G:
4774 default:
4775 val = PT_DRR_WEIGHT_DEFAULT_1G;
4776 break;
4777 }
4778 nw64(PT_DRR_WT(np->port), val);
4779}
4780
4781static int niu_init_hostinfo(struct niu *np)
4782{
4783 struct niu_parent *parent = np->parent;
4784 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
4785 int i, err, num_alt = niu_num_alt_addr(np);
4786 int first_rdc_table = tp->first_table_num;
4787
4788 err = niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
4789 if (err)
4790 return err;
4791
4792 err = niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
4793 if (err)
4794 return err;
4795
4796 for (i = 0; i < num_alt; i++) {
4797 err = niu_set_alt_mac_rdc_table(np, i, first_rdc_table, 1);
4798 if (err)
4799 return err;
4800 }
4801
4802 return 0;
4803}
4804
4805static int niu_rx_channel_reset(struct niu *np, int channel)
4806{
4807 return niu_set_and_wait_clear(np, RXDMA_CFIG1(channel),
4808 RXDMA_CFIG1_RST, 1000, 10,
4809 "RXDMA_CFIG1");
4810}
4811
4812static int niu_rx_channel_lpage_init(struct niu *np, int channel)
4813{
4814 u64 val;
4815
4816 nw64(RX_LOG_MASK1(channel), 0);
4817 nw64(RX_LOG_VAL1(channel), 0);
4818 nw64(RX_LOG_MASK2(channel), 0);
4819 nw64(RX_LOG_VAL2(channel), 0);
4820 nw64(RX_LOG_PAGE_RELO1(channel), 0);
4821 nw64(RX_LOG_PAGE_RELO2(channel), 0);
4822 nw64(RX_LOG_PAGE_HDL(channel), 0);
4823
4824 val = (u64)np->port << RX_LOG_PAGE_VLD_FUNC_SHIFT;
4825 val |= (RX_LOG_PAGE_VLD_PAGE0 | RX_LOG_PAGE_VLD_PAGE1);
4826 nw64(RX_LOG_PAGE_VLD(channel), val);
4827
4828 return 0;
4829}
4830
4831static void niu_rx_channel_wred_init(struct niu *np, struct rx_ring_info *rp)
4832{
4833 u64 val;
4834
4835 val = (((u64)rp->nonsyn_window << RDC_RED_PARA_WIN_SHIFT) |
4836 ((u64)rp->nonsyn_threshold << RDC_RED_PARA_THRE_SHIFT) |
4837 ((u64)rp->syn_window << RDC_RED_PARA_WIN_SYN_SHIFT) |
4838 ((u64)rp->syn_threshold << RDC_RED_PARA_THRE_SYN_SHIFT));
4839 nw64(RDC_RED_PARA(rp->rx_channel), val);
4840}
4841
4842static int niu_compute_rbr_cfig_b(struct rx_ring_info *rp, u64 *ret)
4843{
4844 u64 val = 0;
4845
David S. Millerefb6c732009-04-08 15:52:16 -07004846 *ret = 0;
David S. Millera3138df2007-10-09 01:54:01 -07004847 switch (rp->rbr_block_size) {
4848 case 4 * 1024:
4849 val |= (RBR_BLKSIZE_4K << RBR_CFIG_B_BLKSIZE_SHIFT);
4850 break;
4851 case 8 * 1024:
4852 val |= (RBR_BLKSIZE_8K << RBR_CFIG_B_BLKSIZE_SHIFT);
4853 break;
4854 case 16 * 1024:
4855 val |= (RBR_BLKSIZE_16K << RBR_CFIG_B_BLKSIZE_SHIFT);
4856 break;
4857 case 32 * 1024:
4858 val |= (RBR_BLKSIZE_32K << RBR_CFIG_B_BLKSIZE_SHIFT);
4859 break;
4860 default:
4861 return -EINVAL;
4862 }
4863 val |= RBR_CFIG_B_VLD2;
4864 switch (rp->rbr_sizes[2]) {
4865 case 2 * 1024:
4866 val |= (RBR_BUFSZ2_2K << RBR_CFIG_B_BUFSZ2_SHIFT);
4867 break;
4868 case 4 * 1024:
4869 val |= (RBR_BUFSZ2_4K << RBR_CFIG_B_BUFSZ2_SHIFT);
4870 break;
4871 case 8 * 1024:
4872 val |= (RBR_BUFSZ2_8K << RBR_CFIG_B_BUFSZ2_SHIFT);
4873 break;
4874 case 16 * 1024:
4875 val |= (RBR_BUFSZ2_16K << RBR_CFIG_B_BUFSZ2_SHIFT);
4876 break;
4877
4878 default:
4879 return -EINVAL;
4880 }
4881 val |= RBR_CFIG_B_VLD1;
4882 switch (rp->rbr_sizes[1]) {
4883 case 1 * 1024:
4884 val |= (RBR_BUFSZ1_1K << RBR_CFIG_B_BUFSZ1_SHIFT);
4885 break;
4886 case 2 * 1024:
4887 val |= (RBR_BUFSZ1_2K << RBR_CFIG_B_BUFSZ1_SHIFT);
4888 break;
4889 case 4 * 1024:
4890 val |= (RBR_BUFSZ1_4K << RBR_CFIG_B_BUFSZ1_SHIFT);
4891 break;
4892 case 8 * 1024:
4893 val |= (RBR_BUFSZ1_8K << RBR_CFIG_B_BUFSZ1_SHIFT);
4894 break;
4895
4896 default:
4897 return -EINVAL;
4898 }
4899 val |= RBR_CFIG_B_VLD0;
4900 switch (rp->rbr_sizes[0]) {
4901 case 256:
4902 val |= (RBR_BUFSZ0_256 << RBR_CFIG_B_BUFSZ0_SHIFT);
4903 break;
4904 case 512:
4905 val |= (RBR_BUFSZ0_512 << RBR_CFIG_B_BUFSZ0_SHIFT);
4906 break;
4907 case 1 * 1024:
4908 val |= (RBR_BUFSZ0_1K << RBR_CFIG_B_BUFSZ0_SHIFT);
4909 break;
4910 case 2 * 1024:
4911 val |= (RBR_BUFSZ0_2K << RBR_CFIG_B_BUFSZ0_SHIFT);
4912 break;
4913
4914 default:
4915 return -EINVAL;
4916 }
4917
4918 *ret = val;
4919 return 0;
4920}
4921
4922static int niu_enable_rx_channel(struct niu *np, int channel, int on)
4923{
4924 u64 val = nr64(RXDMA_CFIG1(channel));
4925 int limit;
4926
4927 if (on)
4928 val |= RXDMA_CFIG1_EN;
4929 else
4930 val &= ~RXDMA_CFIG1_EN;
4931 nw64(RXDMA_CFIG1(channel), val);
4932
4933 limit = 1000;
4934 while (--limit > 0) {
4935 if (nr64(RXDMA_CFIG1(channel)) & RXDMA_CFIG1_QST)
4936 break;
4937 udelay(10);
4938 }
4939 if (limit <= 0)
4940 return -ENODEV;
4941 return 0;
4942}
4943
4944static int niu_init_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
4945{
4946 int err, channel = rp->rx_channel;
4947 u64 val;
4948
4949 err = niu_rx_channel_reset(np, channel);
4950 if (err)
4951 return err;
4952
4953 err = niu_rx_channel_lpage_init(np, channel);
4954 if (err)
4955 return err;
4956
4957 niu_rx_channel_wred_init(np, rp);
4958
4959 nw64(RX_DMA_ENT_MSK(channel), RX_DMA_ENT_MSK_RBR_EMPTY);
4960 nw64(RX_DMA_CTL_STAT(channel),
4961 (RX_DMA_CTL_STAT_MEX |
4962 RX_DMA_CTL_STAT_RCRTHRES |
4963 RX_DMA_CTL_STAT_RCRTO |
4964 RX_DMA_CTL_STAT_RBR_EMPTY));
4965 nw64(RXDMA_CFIG1(channel), rp->mbox_dma >> 32);
David S. Miller3cfa8562010-04-22 15:48:17 -07004966 nw64(RXDMA_CFIG2(channel),
4967 ((rp->mbox_dma & RXDMA_CFIG2_MBADDR_L) |
4968 RXDMA_CFIG2_FULL_HDR));
David S. Millera3138df2007-10-09 01:54:01 -07004969 nw64(RBR_CFIG_A(channel),
4970 ((u64)rp->rbr_table_size << RBR_CFIG_A_LEN_SHIFT) |
4971 (rp->rbr_dma & (RBR_CFIG_A_STADDR_BASE | RBR_CFIG_A_STADDR)));
4972 err = niu_compute_rbr_cfig_b(rp, &val);
4973 if (err)
4974 return err;
4975 nw64(RBR_CFIG_B(channel), val);
4976 nw64(RCRCFIG_A(channel),
4977 ((u64)rp->rcr_table_size << RCRCFIG_A_LEN_SHIFT) |
4978 (rp->rcr_dma & (RCRCFIG_A_STADDR_BASE | RCRCFIG_A_STADDR)));
4979 nw64(RCRCFIG_B(channel),
4980 ((u64)rp->rcr_pkt_threshold << RCRCFIG_B_PTHRES_SHIFT) |
4981 RCRCFIG_B_ENTOUT |
4982 ((u64)rp->rcr_timeout << RCRCFIG_B_TIMEOUT_SHIFT));
4983
4984 err = niu_enable_rx_channel(np, channel, 1);
4985 if (err)
4986 return err;
4987
4988 nw64(RBR_KICK(channel), rp->rbr_index);
4989
4990 val = nr64(RX_DMA_CTL_STAT(channel));
4991 val |= RX_DMA_CTL_STAT_RBR_EMPTY;
4992 nw64(RX_DMA_CTL_STAT(channel), val);
4993
4994 return 0;
4995}
4996
4997static int niu_init_rx_channels(struct niu *np)
4998{
4999 unsigned long flags;
5000 u64 seed = jiffies_64;
5001 int err, i;
5002
5003 niu_lock_parent(np, flags);
5004 nw64(RX_DMA_CK_DIV, np->parent->rxdma_clock_divider);
5005 nw64(RED_RAN_INIT, RED_RAN_INIT_OPMODE | (seed & RED_RAN_INIT_VAL));
5006 niu_unlock_parent(np, flags);
5007
5008 /* XXX RXDMA 32bit mode? XXX */
5009
5010 niu_init_rdc_groups(np);
5011 niu_init_drr_weight(np);
5012
5013 err = niu_init_hostinfo(np);
5014 if (err)
5015 return err;
5016
5017 for (i = 0; i < np->num_rx_rings; i++) {
5018 struct rx_ring_info *rp = &np->rx_rings[i];
5019
5020 err = niu_init_one_rx_channel(np, rp);
5021 if (err)
5022 return err;
5023 }
5024
5025 return 0;
5026}
5027
5028static int niu_set_ip_frag_rule(struct niu *np)
5029{
5030 struct niu_parent *parent = np->parent;
5031 struct niu_classifier *cp = &np->clas;
5032 struct niu_tcam_entry *tp;
5033 int index, err;
5034
Santwona Behera2d96cf82009-02-20 00:58:45 -08005035 index = cp->tcam_top;
David S. Millera3138df2007-10-09 01:54:01 -07005036 tp = &parent->tcam[index];
5037
5038 /* Note that the noport bit is the same in both ipv4 and
5039 * ipv6 format TCAM entries.
5040 */
5041 memset(tp, 0, sizeof(*tp));
5042 tp->key[1] = TCAM_V4KEY1_NOPORT;
5043 tp->key_mask[1] = TCAM_V4KEY1_NOPORT;
5044 tp->assoc_data = (TCAM_ASSOCDATA_TRES_USE_OFFSET |
5045 ((u64)0 << TCAM_ASSOCDATA_OFFSET_SHIFT));
5046 err = tcam_write(np, index, tp->key, tp->key_mask);
5047 if (err)
5048 return err;
5049 err = tcam_assoc_write(np, index, tp->assoc_data);
5050 if (err)
5051 return err;
Santwona Behera2d96cf82009-02-20 00:58:45 -08005052 tp->valid = 1;
5053 cp->tcam_valid_entries++;
David S. Millera3138df2007-10-09 01:54:01 -07005054
5055 return 0;
5056}
5057
5058static int niu_init_classifier_hw(struct niu *np)
5059{
5060 struct niu_parent *parent = np->parent;
5061 struct niu_classifier *cp = &np->clas;
5062 int i, err;
5063
5064 nw64(H1POLY, cp->h1_init);
5065 nw64(H2POLY, cp->h2_init);
5066
5067 err = niu_init_hostinfo(np);
5068 if (err)
5069 return err;
5070
5071 for (i = 0; i < ENET_VLAN_TBL_NUM_ENTRIES; i++) {
5072 struct niu_vlan_rdc *vp = &cp->vlan_mappings[i];
5073
5074 vlan_tbl_write(np, i, np->port,
5075 vp->vlan_pref, vp->rdc_num);
5076 }
5077
5078 for (i = 0; i < cp->num_alt_mac_mappings; i++) {
5079 struct niu_altmac_rdc *ap = &cp->alt_mac_mappings[i];
5080
5081 err = niu_set_alt_mac_rdc_table(np, ap->alt_mac_num,
5082 ap->rdc_num, ap->mac_pref);
5083 if (err)
5084 return err;
5085 }
5086
5087 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_SCTP_IPV6; i++) {
5088 int index = i - CLASS_CODE_USER_PROG1;
5089
5090 err = niu_set_tcam_key(np, i, parent->tcam_key[index]);
5091 if (err)
5092 return err;
5093 err = niu_set_flow_key(np, i, parent->flow_key[index]);
5094 if (err)
5095 return err;
5096 }
5097
5098 err = niu_set_ip_frag_rule(np);
5099 if (err)
5100 return err;
5101
5102 tcam_enable(np, 1);
5103
5104 return 0;
5105}
5106
5107static int niu_zcp_write(struct niu *np, int index, u64 *data)
5108{
5109 nw64(ZCP_RAM_DATA0, data[0]);
5110 nw64(ZCP_RAM_DATA1, data[1]);
5111 nw64(ZCP_RAM_DATA2, data[2]);
5112 nw64(ZCP_RAM_DATA3, data[3]);
5113 nw64(ZCP_RAM_DATA4, data[4]);
5114 nw64(ZCP_RAM_BE, ZCP_RAM_BE_VAL);
5115 nw64(ZCP_RAM_ACC,
5116 (ZCP_RAM_ACC_WRITE |
5117 (0 << ZCP_RAM_ACC_ZFCID_SHIFT) |
5118 (ZCP_RAM_SEL_CFIFO(np->port) << ZCP_RAM_ACC_RAM_SEL_SHIFT)));
5119
5120 return niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
5121 1000, 100);
5122}
5123
5124static int niu_zcp_read(struct niu *np, int index, u64 *data)
5125{
5126 int err;
5127
5128 err = niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
5129 1000, 100);
5130 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08005131 netdev_err(np->dev, "ZCP read busy won't clear, ZCP_RAM_ACC[%llx]\n",
5132 (unsigned long long)nr64(ZCP_RAM_ACC));
David S. Millera3138df2007-10-09 01:54:01 -07005133 return err;
5134 }
5135
5136 nw64(ZCP_RAM_ACC,
5137 (ZCP_RAM_ACC_READ |
5138 (0 << ZCP_RAM_ACC_ZFCID_SHIFT) |
5139 (ZCP_RAM_SEL_CFIFO(np->port) << ZCP_RAM_ACC_RAM_SEL_SHIFT)));
5140
5141 err = niu_wait_bits_clear(np, ZCP_RAM_ACC, ZCP_RAM_ACC_BUSY,
5142 1000, 100);
5143 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08005144 netdev_err(np->dev, "ZCP read busy2 won't clear, ZCP_RAM_ACC[%llx]\n",
5145 (unsigned long long)nr64(ZCP_RAM_ACC));
David S. Millera3138df2007-10-09 01:54:01 -07005146 return err;
5147 }
5148
5149 data[0] = nr64(ZCP_RAM_DATA0);
5150 data[1] = nr64(ZCP_RAM_DATA1);
5151 data[2] = nr64(ZCP_RAM_DATA2);
5152 data[3] = nr64(ZCP_RAM_DATA3);
5153 data[4] = nr64(ZCP_RAM_DATA4);
5154
5155 return 0;
5156}
5157
5158static void niu_zcp_cfifo_reset(struct niu *np)
5159{
5160 u64 val = nr64(RESET_CFIFO);
5161
5162 val |= RESET_CFIFO_RST(np->port);
5163 nw64(RESET_CFIFO, val);
5164 udelay(10);
5165
5166 val &= ~RESET_CFIFO_RST(np->port);
5167 nw64(RESET_CFIFO, val);
5168}
5169
5170static int niu_init_zcp(struct niu *np)
5171{
5172 u64 data[5], rbuf[5];
5173 int i, max, err;
5174
5175 if (np->parent->plat_type != PLAT_TYPE_NIU) {
5176 if (np->port == 0 || np->port == 1)
5177 max = ATLAS_P0_P1_CFIFO_ENTRIES;
5178 else
5179 max = ATLAS_P2_P3_CFIFO_ENTRIES;
5180 } else
5181 max = NIU_CFIFO_ENTRIES;
5182
5183 data[0] = 0;
5184 data[1] = 0;
5185 data[2] = 0;
5186 data[3] = 0;
5187 data[4] = 0;
5188
5189 for (i = 0; i < max; i++) {
5190 err = niu_zcp_write(np, i, data);
5191 if (err)
5192 return err;
5193 err = niu_zcp_read(np, i, rbuf);
5194 if (err)
5195 return err;
5196 }
5197
5198 niu_zcp_cfifo_reset(np);
5199 nw64(CFIFO_ECC(np->port), 0);
5200 nw64(ZCP_INT_STAT, ZCP_INT_STAT_ALL);
5201 (void) nr64(ZCP_INT_STAT);
5202 nw64(ZCP_INT_MASK, ZCP_INT_MASK_ALL);
5203
5204 return 0;
5205}
5206
5207static void niu_ipp_write(struct niu *np, int index, u64 *data)
5208{
5209 u64 val = nr64_ipp(IPP_CFIG);
5210
5211 nw64_ipp(IPP_CFIG, val | IPP_CFIG_DFIFO_PIO_W);
5212 nw64_ipp(IPP_DFIFO_WR_PTR, index);
5213 nw64_ipp(IPP_DFIFO_WR0, data[0]);
5214 nw64_ipp(IPP_DFIFO_WR1, data[1]);
5215 nw64_ipp(IPP_DFIFO_WR2, data[2]);
5216 nw64_ipp(IPP_DFIFO_WR3, data[3]);
5217 nw64_ipp(IPP_DFIFO_WR4, data[4]);
5218 nw64_ipp(IPP_CFIG, val & ~IPP_CFIG_DFIFO_PIO_W);
5219}
5220
5221static void niu_ipp_read(struct niu *np, int index, u64 *data)
5222{
5223 nw64_ipp(IPP_DFIFO_RD_PTR, index);
5224 data[0] = nr64_ipp(IPP_DFIFO_RD0);
5225 data[1] = nr64_ipp(IPP_DFIFO_RD1);
5226 data[2] = nr64_ipp(IPP_DFIFO_RD2);
5227 data[3] = nr64_ipp(IPP_DFIFO_RD3);
5228 data[4] = nr64_ipp(IPP_DFIFO_RD4);
5229}
5230
5231static int niu_ipp_reset(struct niu *np)
5232{
5233 return niu_set_and_wait_clear_ipp(np, IPP_CFIG, IPP_CFIG_SOFT_RST,
5234 1000, 100, "IPP_CFIG");
5235}
5236
5237static int niu_init_ipp(struct niu *np)
5238{
5239 u64 data[5], rbuf[5], val;
5240 int i, max, err;
5241
5242 if (np->parent->plat_type != PLAT_TYPE_NIU) {
5243 if (np->port == 0 || np->port == 1)
5244 max = ATLAS_P0_P1_DFIFO_ENTRIES;
5245 else
5246 max = ATLAS_P2_P3_DFIFO_ENTRIES;
5247 } else
5248 max = NIU_DFIFO_ENTRIES;
5249
5250 data[0] = 0;
5251 data[1] = 0;
5252 data[2] = 0;
5253 data[3] = 0;
5254 data[4] = 0;
5255
5256 for (i = 0; i < max; i++) {
5257 niu_ipp_write(np, i, data);
5258 niu_ipp_read(np, i, rbuf);
5259 }
5260
5261 (void) nr64_ipp(IPP_INT_STAT);
5262 (void) nr64_ipp(IPP_INT_STAT);
5263
5264 err = niu_ipp_reset(np);
5265 if (err)
5266 return err;
5267
5268 (void) nr64_ipp(IPP_PKT_DIS);
5269 (void) nr64_ipp(IPP_BAD_CS_CNT);
5270 (void) nr64_ipp(IPP_ECC);
5271
5272 (void) nr64_ipp(IPP_INT_STAT);
5273
5274 nw64_ipp(IPP_MSK, ~IPP_MSK_ALL);
5275
5276 val = nr64_ipp(IPP_CFIG);
5277 val &= ~IPP_CFIG_IP_MAX_PKT;
5278 val |= (IPP_CFIG_IPP_ENABLE |
5279 IPP_CFIG_DFIFO_ECC_EN |
5280 IPP_CFIG_DROP_BAD_CRC |
5281 IPP_CFIG_CKSUM_EN |
5282 (0x1ffff << IPP_CFIG_IP_MAX_PKT_SHIFT));
5283 nw64_ipp(IPP_CFIG, val);
5284
5285 return 0;
5286}
5287
Mirko Lindner0c3b0912007-12-05 21:10:02 -08005288static void niu_handle_led(struct niu *np, int status)
David S. Millera3138df2007-10-09 01:54:01 -07005289{
David S. Millera3138df2007-10-09 01:54:01 -07005290 u64 val;
David S. Millera3138df2007-10-09 01:54:01 -07005291 val = nr64_mac(XMAC_CONFIG);
5292
5293 if ((np->flags & NIU_FLAGS_10G) != 0 &&
5294 (np->flags & NIU_FLAGS_FIBER) != 0) {
Mirko Lindner0c3b0912007-12-05 21:10:02 -08005295 if (status) {
David S. Millera3138df2007-10-09 01:54:01 -07005296 val |= XMAC_CONFIG_LED_POLARITY;
5297 val &= ~XMAC_CONFIG_FORCE_LED_ON;
5298 } else {
5299 val |= XMAC_CONFIG_FORCE_LED_ON;
5300 val &= ~XMAC_CONFIG_LED_POLARITY;
5301 }
5302 }
5303
Mirko Lindner0c3b0912007-12-05 21:10:02 -08005304 nw64_mac(XMAC_CONFIG, val);
5305}
5306
5307static void niu_init_xif_xmac(struct niu *np)
5308{
5309 struct niu_link_config *lp = &np->link_config;
5310 u64 val;
5311
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005312 if (np->flags & NIU_FLAGS_XCVR_SERDES) {
5313 val = nr64(MIF_CONFIG);
5314 val |= MIF_CONFIG_ATCA_GE;
5315 nw64(MIF_CONFIG, val);
5316 }
5317
Mirko Lindner0c3b0912007-12-05 21:10:02 -08005318 val = nr64_mac(XMAC_CONFIG);
David S. Millera3138df2007-10-09 01:54:01 -07005319 val &= ~XMAC_CONFIG_SEL_POR_CLK_SRC;
5320
5321 val |= XMAC_CONFIG_TX_OUTPUT_EN;
5322
5323 if (lp->loopback_mode == LOOPBACK_MAC) {
5324 val &= ~XMAC_CONFIG_SEL_POR_CLK_SRC;
5325 val |= XMAC_CONFIG_LOOPBACK;
5326 } else {
5327 val &= ~XMAC_CONFIG_LOOPBACK;
5328 }
5329
5330 if (np->flags & NIU_FLAGS_10G) {
5331 val &= ~XMAC_CONFIG_LFS_DISABLE;
5332 } else {
5333 val |= XMAC_CONFIG_LFS_DISABLE;
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005334 if (!(np->flags & NIU_FLAGS_FIBER) &&
5335 !(np->flags & NIU_FLAGS_XCVR_SERDES))
David S. Millera3138df2007-10-09 01:54:01 -07005336 val |= XMAC_CONFIG_1G_PCS_BYPASS;
5337 else
5338 val &= ~XMAC_CONFIG_1G_PCS_BYPASS;
5339 }
5340
5341 val &= ~XMAC_CONFIG_10G_XPCS_BYPASS;
5342
5343 if (lp->active_speed == SPEED_100)
5344 val |= XMAC_CONFIG_SEL_CLK_25MHZ;
5345 else
5346 val &= ~XMAC_CONFIG_SEL_CLK_25MHZ;
5347
5348 nw64_mac(XMAC_CONFIG, val);
5349
5350 val = nr64_mac(XMAC_CONFIG);
5351 val &= ~XMAC_CONFIG_MODE_MASK;
5352 if (np->flags & NIU_FLAGS_10G) {
5353 val |= XMAC_CONFIG_MODE_XGMII;
5354 } else {
Constantin Baranov38bb045d2009-02-18 17:53:20 -08005355 if (lp->active_speed == SPEED_1000)
David S. Millera3138df2007-10-09 01:54:01 -07005356 val |= XMAC_CONFIG_MODE_GMII;
Constantin Baranov38bb045d2009-02-18 17:53:20 -08005357 else
5358 val |= XMAC_CONFIG_MODE_MII;
David S. Millera3138df2007-10-09 01:54:01 -07005359 }
5360
5361 nw64_mac(XMAC_CONFIG, val);
5362}
5363
5364static void niu_init_xif_bmac(struct niu *np)
5365{
5366 struct niu_link_config *lp = &np->link_config;
5367 u64 val;
5368
5369 val = BMAC_XIF_CONFIG_TX_OUTPUT_EN;
5370
5371 if (lp->loopback_mode == LOOPBACK_MAC)
5372 val |= BMAC_XIF_CONFIG_MII_LOOPBACK;
5373 else
5374 val &= ~BMAC_XIF_CONFIG_MII_LOOPBACK;
5375
5376 if (lp->active_speed == SPEED_1000)
5377 val |= BMAC_XIF_CONFIG_GMII_MODE;
5378 else
5379 val &= ~BMAC_XIF_CONFIG_GMII_MODE;
5380
5381 val &= ~(BMAC_XIF_CONFIG_LINK_LED |
5382 BMAC_XIF_CONFIG_LED_POLARITY);
5383
5384 if (!(np->flags & NIU_FLAGS_10G) &&
5385 !(np->flags & NIU_FLAGS_FIBER) &&
5386 lp->active_speed == SPEED_100)
5387 val |= BMAC_XIF_CONFIG_25MHZ_CLOCK;
5388 else
5389 val &= ~BMAC_XIF_CONFIG_25MHZ_CLOCK;
5390
5391 nw64_mac(BMAC_XIF_CONFIG, val);
5392}
5393
5394static void niu_init_xif(struct niu *np)
5395{
5396 if (np->flags & NIU_FLAGS_XMAC)
5397 niu_init_xif_xmac(np);
5398 else
5399 niu_init_xif_bmac(np);
5400}
5401
5402static void niu_pcs_mii_reset(struct niu *np)
5403{
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005404 int limit = 1000;
David S. Millera3138df2007-10-09 01:54:01 -07005405 u64 val = nr64_pcs(PCS_MII_CTL);
5406 val |= PCS_MII_CTL_RST;
5407 nw64_pcs(PCS_MII_CTL, val);
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005408 while ((--limit >= 0) && (val & PCS_MII_CTL_RST)) {
5409 udelay(100);
5410 val = nr64_pcs(PCS_MII_CTL);
5411 }
David S. Millera3138df2007-10-09 01:54:01 -07005412}
5413
5414static void niu_xpcs_reset(struct niu *np)
5415{
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005416 int limit = 1000;
David S. Millera3138df2007-10-09 01:54:01 -07005417 u64 val = nr64_xpcs(XPCS_CONTROL1);
5418 val |= XPCS_CONTROL1_RESET;
5419 nw64_xpcs(XPCS_CONTROL1, val);
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005420 while ((--limit >= 0) && (val & XPCS_CONTROL1_RESET)) {
5421 udelay(100);
5422 val = nr64_xpcs(XPCS_CONTROL1);
5423 }
David S. Millera3138df2007-10-09 01:54:01 -07005424}
5425
5426static int niu_init_pcs(struct niu *np)
5427{
5428 struct niu_link_config *lp = &np->link_config;
5429 u64 val;
5430
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005431 switch (np->flags & (NIU_FLAGS_10G |
5432 NIU_FLAGS_FIBER |
5433 NIU_FLAGS_XCVR_SERDES)) {
David S. Millera3138df2007-10-09 01:54:01 -07005434 case NIU_FLAGS_FIBER:
5435 /* 1G fiber */
5436 nw64_pcs(PCS_CONF, PCS_CONF_MASK | PCS_CONF_ENABLE);
5437 nw64_pcs(PCS_DPATH_MODE, 0);
5438 niu_pcs_mii_reset(np);
5439 break;
5440
5441 case NIU_FLAGS_10G:
5442 case NIU_FLAGS_10G | NIU_FLAGS_FIBER:
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005443 case NIU_FLAGS_10G | NIU_FLAGS_XCVR_SERDES:
5444 /* 10G SERDES */
David S. Millera3138df2007-10-09 01:54:01 -07005445 if (!(np->flags & NIU_FLAGS_XMAC))
5446 return -EINVAL;
5447
5448 /* 10G copper or fiber */
5449 val = nr64_mac(XMAC_CONFIG);
5450 val &= ~XMAC_CONFIG_10G_XPCS_BYPASS;
5451 nw64_mac(XMAC_CONFIG, val);
5452
5453 niu_xpcs_reset(np);
5454
5455 val = nr64_xpcs(XPCS_CONTROL1);
5456 if (lp->loopback_mode == LOOPBACK_PHY)
5457 val |= XPCS_CONTROL1_LOOPBACK;
5458 else
5459 val &= ~XPCS_CONTROL1_LOOPBACK;
5460 nw64_xpcs(XPCS_CONTROL1, val);
5461
5462 nw64_xpcs(XPCS_DESKEW_ERR_CNT, 0);
5463 (void) nr64_xpcs(XPCS_SYMERR_CNT01);
5464 (void) nr64_xpcs(XPCS_SYMERR_CNT23);
5465 break;
5466
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005467
5468 case NIU_FLAGS_XCVR_SERDES:
5469 /* 1G SERDES */
5470 niu_pcs_mii_reset(np);
5471 nw64_pcs(PCS_CONF, PCS_CONF_MASK | PCS_CONF_ENABLE);
5472 nw64_pcs(PCS_DPATH_MODE, 0);
5473 break;
5474
David S. Millera3138df2007-10-09 01:54:01 -07005475 case 0:
5476 /* 1G copper */
Matheos Worku5fbd7e22008-02-28 21:25:43 -08005477 case NIU_FLAGS_XCVR_SERDES | NIU_FLAGS_FIBER:
5478 /* 1G RGMII FIBER */
David S. Millera3138df2007-10-09 01:54:01 -07005479 nw64_pcs(PCS_DPATH_MODE, PCS_DPATH_MODE_MII);
5480 niu_pcs_mii_reset(np);
5481 break;
5482
5483 default:
5484 return -EINVAL;
5485 }
5486
5487 return 0;
5488}
5489
5490static int niu_reset_tx_xmac(struct niu *np)
5491{
5492 return niu_set_and_wait_clear_mac(np, XTXMAC_SW_RST,
5493 (XTXMAC_SW_RST_REG_RS |
5494 XTXMAC_SW_RST_SOFT_RST),
5495 1000, 100, "XTXMAC_SW_RST");
5496}
5497
5498static int niu_reset_tx_bmac(struct niu *np)
5499{
5500 int limit;
5501
5502 nw64_mac(BTXMAC_SW_RST, BTXMAC_SW_RST_RESET);
5503 limit = 1000;
5504 while (--limit >= 0) {
5505 if (!(nr64_mac(BTXMAC_SW_RST) & BTXMAC_SW_RST_RESET))
5506 break;
5507 udelay(100);
5508 }
5509 if (limit < 0) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08005510 dev_err(np->device, "Port %u TX BMAC would not reset, BTXMAC_SW_RST[%llx]\n",
David S. Millera3138df2007-10-09 01:54:01 -07005511 np->port,
5512 (unsigned long long) nr64_mac(BTXMAC_SW_RST));
5513 return -ENODEV;
5514 }
5515
5516 return 0;
5517}
5518
5519static int niu_reset_tx_mac(struct niu *np)
5520{
5521 if (np->flags & NIU_FLAGS_XMAC)
5522 return niu_reset_tx_xmac(np);
5523 else
5524 return niu_reset_tx_bmac(np);
5525}
5526
5527static void niu_init_tx_xmac(struct niu *np, u64 min, u64 max)
5528{
5529 u64 val;
5530
5531 val = nr64_mac(XMAC_MIN);
5532 val &= ~(XMAC_MIN_TX_MIN_PKT_SIZE |
5533 XMAC_MIN_RX_MIN_PKT_SIZE);
5534 val |= (min << XMAC_MIN_RX_MIN_PKT_SIZE_SHFT);
5535 val |= (min << XMAC_MIN_TX_MIN_PKT_SIZE_SHFT);
5536 nw64_mac(XMAC_MIN, val);
5537
5538 nw64_mac(XMAC_MAX, max);
5539
5540 nw64_mac(XTXMAC_STAT_MSK, ~(u64)0);
5541
5542 val = nr64_mac(XMAC_IPG);
5543 if (np->flags & NIU_FLAGS_10G) {
5544 val &= ~XMAC_IPG_IPG_XGMII;
5545 val |= (IPG_12_15_XGMII << XMAC_IPG_IPG_XGMII_SHIFT);
5546 } else {
5547 val &= ~XMAC_IPG_IPG_MII_GMII;
5548 val |= (IPG_12_MII_GMII << XMAC_IPG_IPG_MII_GMII_SHIFT);
5549 }
5550 nw64_mac(XMAC_IPG, val);
5551
5552 val = nr64_mac(XMAC_CONFIG);
5553 val &= ~(XMAC_CONFIG_ALWAYS_NO_CRC |
5554 XMAC_CONFIG_STRETCH_MODE |
5555 XMAC_CONFIG_VAR_MIN_IPG_EN |
5556 XMAC_CONFIG_TX_ENABLE);
5557 nw64_mac(XMAC_CONFIG, val);
5558
5559 nw64_mac(TXMAC_FRM_CNT, 0);
5560 nw64_mac(TXMAC_BYTE_CNT, 0);
5561}
5562
5563static void niu_init_tx_bmac(struct niu *np, u64 min, u64 max)
5564{
5565 u64 val;
5566
5567 nw64_mac(BMAC_MIN_FRAME, min);
5568 nw64_mac(BMAC_MAX_FRAME, max);
5569
5570 nw64_mac(BTXMAC_STATUS_MASK, ~(u64)0);
5571 nw64_mac(BMAC_CTRL_TYPE, 0x8808);
5572 nw64_mac(BMAC_PREAMBLE_SIZE, 7);
5573
5574 val = nr64_mac(BTXMAC_CONFIG);
5575 val &= ~(BTXMAC_CONFIG_FCS_DISABLE |
5576 BTXMAC_CONFIG_ENABLE);
5577 nw64_mac(BTXMAC_CONFIG, val);
5578}
5579
5580static void niu_init_tx_mac(struct niu *np)
5581{
5582 u64 min, max;
5583
5584 min = 64;
5585 if (np->dev->mtu > ETH_DATA_LEN)
5586 max = 9216;
5587 else
5588 max = 1522;
5589
5590 /* The XMAC_MIN register only accepts values for TX min which
5591 * have the low 3 bits cleared.
5592 */
Jan Beulich8c87df42009-09-22 16:43:52 -07005593 BUG_ON(min & 0x7);
David S. Millera3138df2007-10-09 01:54:01 -07005594
5595 if (np->flags & NIU_FLAGS_XMAC)
5596 niu_init_tx_xmac(np, min, max);
5597 else
5598 niu_init_tx_bmac(np, min, max);
5599}
5600
5601static int niu_reset_rx_xmac(struct niu *np)
5602{
5603 int limit;
5604
5605 nw64_mac(XRXMAC_SW_RST,
5606 XRXMAC_SW_RST_REG_RS | XRXMAC_SW_RST_SOFT_RST);
5607 limit = 1000;
5608 while (--limit >= 0) {
5609 if (!(nr64_mac(XRXMAC_SW_RST) & (XRXMAC_SW_RST_REG_RS |
5610 XRXMAC_SW_RST_SOFT_RST)))
Joe Perchesf10a1f22010-02-14 22:40:39 -08005611 break;
David S. Millera3138df2007-10-09 01:54:01 -07005612 udelay(100);
5613 }
5614 if (limit < 0) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08005615 dev_err(np->device, "Port %u RX XMAC would not reset, XRXMAC_SW_RST[%llx]\n",
David S. Millera3138df2007-10-09 01:54:01 -07005616 np->port,
5617 (unsigned long long) nr64_mac(XRXMAC_SW_RST));
5618 return -ENODEV;
5619 }
5620
5621 return 0;
5622}
5623
5624static int niu_reset_rx_bmac(struct niu *np)
5625{
5626 int limit;
5627
5628 nw64_mac(BRXMAC_SW_RST, BRXMAC_SW_RST_RESET);
5629 limit = 1000;
5630 while (--limit >= 0) {
5631 if (!(nr64_mac(BRXMAC_SW_RST) & BRXMAC_SW_RST_RESET))
5632 break;
5633 udelay(100);
5634 }
5635 if (limit < 0) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08005636 dev_err(np->device, "Port %u RX BMAC would not reset, BRXMAC_SW_RST[%llx]\n",
David S. Millera3138df2007-10-09 01:54:01 -07005637 np->port,
5638 (unsigned long long) nr64_mac(BRXMAC_SW_RST));
5639 return -ENODEV;
5640 }
5641
5642 return 0;
5643}
5644
5645static int niu_reset_rx_mac(struct niu *np)
5646{
5647 if (np->flags & NIU_FLAGS_XMAC)
5648 return niu_reset_rx_xmac(np);
5649 else
5650 return niu_reset_rx_bmac(np);
5651}
5652
5653static void niu_init_rx_xmac(struct niu *np)
5654{
5655 struct niu_parent *parent = np->parent;
5656 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
5657 int first_rdc_table = tp->first_table_num;
5658 unsigned long i;
5659 u64 val;
5660
5661 nw64_mac(XMAC_ADD_FILT0, 0);
5662 nw64_mac(XMAC_ADD_FILT1, 0);
5663 nw64_mac(XMAC_ADD_FILT2, 0);
5664 nw64_mac(XMAC_ADD_FILT12_MASK, 0);
5665 nw64_mac(XMAC_ADD_FILT00_MASK, 0);
5666 for (i = 0; i < MAC_NUM_HASH; i++)
5667 nw64_mac(XMAC_HASH_TBL(i), 0);
5668 nw64_mac(XRXMAC_STAT_MSK, ~(u64)0);
5669 niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
5670 niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
5671
5672 val = nr64_mac(XMAC_CONFIG);
5673 val &= ~(XMAC_CONFIG_RX_MAC_ENABLE |
5674 XMAC_CONFIG_PROMISCUOUS |
5675 XMAC_CONFIG_PROMISC_GROUP |
5676 XMAC_CONFIG_ERR_CHK_DIS |
5677 XMAC_CONFIG_RX_CRC_CHK_DIS |
5678 XMAC_CONFIG_RESERVED_MULTICAST |
5679 XMAC_CONFIG_RX_CODEV_CHK_DIS |
5680 XMAC_CONFIG_ADDR_FILTER_EN |
5681 XMAC_CONFIG_RCV_PAUSE_ENABLE |
5682 XMAC_CONFIG_STRIP_CRC |
5683 XMAC_CONFIG_PASS_FLOW_CTRL |
5684 XMAC_CONFIG_MAC2IPP_PKT_CNT_EN);
5685 val |= (XMAC_CONFIG_HASH_FILTER_EN);
5686 nw64_mac(XMAC_CONFIG, val);
5687
5688 nw64_mac(RXMAC_BT_CNT, 0);
5689 nw64_mac(RXMAC_BC_FRM_CNT, 0);
5690 nw64_mac(RXMAC_MC_FRM_CNT, 0);
5691 nw64_mac(RXMAC_FRAG_CNT, 0);
5692 nw64_mac(RXMAC_HIST_CNT1, 0);
5693 nw64_mac(RXMAC_HIST_CNT2, 0);
5694 nw64_mac(RXMAC_HIST_CNT3, 0);
5695 nw64_mac(RXMAC_HIST_CNT4, 0);
5696 nw64_mac(RXMAC_HIST_CNT5, 0);
5697 nw64_mac(RXMAC_HIST_CNT6, 0);
5698 nw64_mac(RXMAC_HIST_CNT7, 0);
5699 nw64_mac(RXMAC_MPSZER_CNT, 0);
5700 nw64_mac(RXMAC_CRC_ER_CNT, 0);
5701 nw64_mac(RXMAC_CD_VIO_CNT, 0);
5702 nw64_mac(LINK_FAULT_CNT, 0);
5703}
5704
5705static void niu_init_rx_bmac(struct niu *np)
5706{
5707 struct niu_parent *parent = np->parent;
5708 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[np->port];
5709 int first_rdc_table = tp->first_table_num;
5710 unsigned long i;
5711 u64 val;
5712
5713 nw64_mac(BMAC_ADD_FILT0, 0);
5714 nw64_mac(BMAC_ADD_FILT1, 0);
5715 nw64_mac(BMAC_ADD_FILT2, 0);
5716 nw64_mac(BMAC_ADD_FILT12_MASK, 0);
5717 nw64_mac(BMAC_ADD_FILT00_MASK, 0);
5718 for (i = 0; i < MAC_NUM_HASH; i++)
5719 nw64_mac(BMAC_HASH_TBL(i), 0);
5720 niu_set_primary_mac_rdc_table(np, first_rdc_table, 1);
5721 niu_set_multicast_mac_rdc_table(np, first_rdc_table, 1);
5722 nw64_mac(BRXMAC_STATUS_MASK, ~(u64)0);
5723
5724 val = nr64_mac(BRXMAC_CONFIG);
5725 val &= ~(BRXMAC_CONFIG_ENABLE |
5726 BRXMAC_CONFIG_STRIP_PAD |
5727 BRXMAC_CONFIG_STRIP_FCS |
5728 BRXMAC_CONFIG_PROMISC |
5729 BRXMAC_CONFIG_PROMISC_GRP |
5730 BRXMAC_CONFIG_ADDR_FILT_EN |
5731 BRXMAC_CONFIG_DISCARD_DIS);
5732 val |= (BRXMAC_CONFIG_HASH_FILT_EN);
5733 nw64_mac(BRXMAC_CONFIG, val);
5734
5735 val = nr64_mac(BMAC_ADDR_CMPEN);
5736 val |= BMAC_ADDR_CMPEN_EN0;
5737 nw64_mac(BMAC_ADDR_CMPEN, val);
5738}
5739
5740static void niu_init_rx_mac(struct niu *np)
5741{
5742 niu_set_primary_mac(np, np->dev->dev_addr);
5743
5744 if (np->flags & NIU_FLAGS_XMAC)
5745 niu_init_rx_xmac(np);
5746 else
5747 niu_init_rx_bmac(np);
5748}
5749
5750static void niu_enable_tx_xmac(struct niu *np, int on)
5751{
5752 u64 val = nr64_mac(XMAC_CONFIG);
5753
5754 if (on)
5755 val |= XMAC_CONFIG_TX_ENABLE;
5756 else
5757 val &= ~XMAC_CONFIG_TX_ENABLE;
5758 nw64_mac(XMAC_CONFIG, val);
5759}
5760
5761static void niu_enable_tx_bmac(struct niu *np, int on)
5762{
5763 u64 val = nr64_mac(BTXMAC_CONFIG);
5764
5765 if (on)
5766 val |= BTXMAC_CONFIG_ENABLE;
5767 else
5768 val &= ~BTXMAC_CONFIG_ENABLE;
5769 nw64_mac(BTXMAC_CONFIG, val);
5770}
5771
5772static void niu_enable_tx_mac(struct niu *np, int on)
5773{
5774 if (np->flags & NIU_FLAGS_XMAC)
5775 niu_enable_tx_xmac(np, on);
5776 else
5777 niu_enable_tx_bmac(np, on);
5778}
5779
5780static void niu_enable_rx_xmac(struct niu *np, int on)
5781{
5782 u64 val = nr64_mac(XMAC_CONFIG);
5783
5784 val &= ~(XMAC_CONFIG_HASH_FILTER_EN |
5785 XMAC_CONFIG_PROMISCUOUS);
5786
5787 if (np->flags & NIU_FLAGS_MCAST)
5788 val |= XMAC_CONFIG_HASH_FILTER_EN;
5789 if (np->flags & NIU_FLAGS_PROMISC)
5790 val |= XMAC_CONFIG_PROMISCUOUS;
5791
5792 if (on)
5793 val |= XMAC_CONFIG_RX_MAC_ENABLE;
5794 else
5795 val &= ~XMAC_CONFIG_RX_MAC_ENABLE;
5796 nw64_mac(XMAC_CONFIG, val);
5797}
5798
5799static void niu_enable_rx_bmac(struct niu *np, int on)
5800{
5801 u64 val = nr64_mac(BRXMAC_CONFIG);
5802
5803 val &= ~(BRXMAC_CONFIG_HASH_FILT_EN |
5804 BRXMAC_CONFIG_PROMISC);
5805
5806 if (np->flags & NIU_FLAGS_MCAST)
5807 val |= BRXMAC_CONFIG_HASH_FILT_EN;
5808 if (np->flags & NIU_FLAGS_PROMISC)
5809 val |= BRXMAC_CONFIG_PROMISC;
5810
5811 if (on)
5812 val |= BRXMAC_CONFIG_ENABLE;
5813 else
5814 val &= ~BRXMAC_CONFIG_ENABLE;
5815 nw64_mac(BRXMAC_CONFIG, val);
5816}
5817
5818static void niu_enable_rx_mac(struct niu *np, int on)
5819{
5820 if (np->flags & NIU_FLAGS_XMAC)
5821 niu_enable_rx_xmac(np, on);
5822 else
5823 niu_enable_rx_bmac(np, on);
5824}
5825
5826static int niu_init_mac(struct niu *np)
5827{
5828 int err;
5829
5830 niu_init_xif(np);
5831 err = niu_init_pcs(np);
5832 if (err)
5833 return err;
5834
5835 err = niu_reset_tx_mac(np);
5836 if (err)
5837 return err;
5838 niu_init_tx_mac(np);
5839 err = niu_reset_rx_mac(np);
5840 if (err)
5841 return err;
5842 niu_init_rx_mac(np);
5843
5844 /* This looks hookey but the RX MAC reset we just did will
5845 * undo some of the state we setup in niu_init_tx_mac() so we
5846 * have to call it again. In particular, the RX MAC reset will
5847 * set the XMAC_MAX register back to it's default value.
5848 */
5849 niu_init_tx_mac(np);
5850 niu_enable_tx_mac(np, 1);
5851
5852 niu_enable_rx_mac(np, 1);
5853
5854 return 0;
5855}
5856
5857static void niu_stop_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
5858{
5859 (void) niu_tx_channel_stop(np, rp->tx_channel);
5860}
5861
5862static void niu_stop_tx_channels(struct niu *np)
5863{
5864 int i;
5865
5866 for (i = 0; i < np->num_tx_rings; i++) {
5867 struct tx_ring_info *rp = &np->tx_rings[i];
5868
5869 niu_stop_one_tx_channel(np, rp);
5870 }
5871}
5872
5873static void niu_reset_one_tx_channel(struct niu *np, struct tx_ring_info *rp)
5874{
5875 (void) niu_tx_channel_reset(np, rp->tx_channel);
5876}
5877
5878static void niu_reset_tx_channels(struct niu *np)
5879{
5880 int i;
5881
5882 for (i = 0; i < np->num_tx_rings; i++) {
5883 struct tx_ring_info *rp = &np->tx_rings[i];
5884
5885 niu_reset_one_tx_channel(np, rp);
5886 }
5887}
5888
5889static void niu_stop_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
5890{
5891 (void) niu_enable_rx_channel(np, rp->rx_channel, 0);
5892}
5893
5894static void niu_stop_rx_channels(struct niu *np)
5895{
5896 int i;
5897
5898 for (i = 0; i < np->num_rx_rings; i++) {
5899 struct rx_ring_info *rp = &np->rx_rings[i];
5900
5901 niu_stop_one_rx_channel(np, rp);
5902 }
5903}
5904
5905static void niu_reset_one_rx_channel(struct niu *np, struct rx_ring_info *rp)
5906{
5907 int channel = rp->rx_channel;
5908
5909 (void) niu_rx_channel_reset(np, channel);
5910 nw64(RX_DMA_ENT_MSK(channel), RX_DMA_ENT_MSK_ALL);
5911 nw64(RX_DMA_CTL_STAT(channel), 0);
5912 (void) niu_enable_rx_channel(np, channel, 0);
5913}
5914
5915static void niu_reset_rx_channels(struct niu *np)
5916{
5917 int i;
5918
5919 for (i = 0; i < np->num_rx_rings; i++) {
5920 struct rx_ring_info *rp = &np->rx_rings[i];
5921
5922 niu_reset_one_rx_channel(np, rp);
5923 }
5924}
5925
5926static void niu_disable_ipp(struct niu *np)
5927{
5928 u64 rd, wr, val;
5929 int limit;
5930
5931 rd = nr64_ipp(IPP_DFIFO_RD_PTR);
5932 wr = nr64_ipp(IPP_DFIFO_WR_PTR);
5933 limit = 100;
5934 while (--limit >= 0 && (rd != wr)) {
5935 rd = nr64_ipp(IPP_DFIFO_RD_PTR);
5936 wr = nr64_ipp(IPP_DFIFO_WR_PTR);
5937 }
5938 if (limit < 0 &&
5939 (rd != 0 && wr != 1)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08005940 netdev_err(np->dev, "IPP would not quiesce, rd_ptr[%llx] wr_ptr[%llx]\n",
5941 (unsigned long long)nr64_ipp(IPP_DFIFO_RD_PTR),
5942 (unsigned long long)nr64_ipp(IPP_DFIFO_WR_PTR));
David S. Millera3138df2007-10-09 01:54:01 -07005943 }
5944
5945 val = nr64_ipp(IPP_CFIG);
5946 val &= ~(IPP_CFIG_IPP_ENABLE |
5947 IPP_CFIG_DFIFO_ECC_EN |
5948 IPP_CFIG_DROP_BAD_CRC |
5949 IPP_CFIG_CKSUM_EN);
5950 nw64_ipp(IPP_CFIG, val);
5951
5952 (void) niu_ipp_reset(np);
5953}
5954
5955static int niu_init_hw(struct niu *np)
5956{
5957 int i, err;
5958
Joe Perchesf10a1f22010-02-14 22:40:39 -08005959 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize TXC\n");
David S. Millera3138df2007-10-09 01:54:01 -07005960 niu_txc_enable_port(np, 1);
5961 niu_txc_port_dma_enable(np, 1);
5962 niu_txc_set_imask(np, 0);
5963
Joe Perchesf10a1f22010-02-14 22:40:39 -08005964 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize TX channels\n");
David S. Millera3138df2007-10-09 01:54:01 -07005965 for (i = 0; i < np->num_tx_rings; i++) {
5966 struct tx_ring_info *rp = &np->tx_rings[i];
5967
5968 err = niu_init_one_tx_channel(np, rp);
5969 if (err)
5970 return err;
5971 }
5972
Joe Perchesf10a1f22010-02-14 22:40:39 -08005973 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize RX channels\n");
David S. Millera3138df2007-10-09 01:54:01 -07005974 err = niu_init_rx_channels(np);
5975 if (err)
5976 goto out_uninit_tx_channels;
5977
Joe Perchesf10a1f22010-02-14 22:40:39 -08005978 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize classifier\n");
David S. Millera3138df2007-10-09 01:54:01 -07005979 err = niu_init_classifier_hw(np);
5980 if (err)
5981 goto out_uninit_rx_channels;
5982
Joe Perchesf10a1f22010-02-14 22:40:39 -08005983 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize ZCP\n");
David S. Millera3138df2007-10-09 01:54:01 -07005984 err = niu_init_zcp(np);
5985 if (err)
5986 goto out_uninit_rx_channels;
5987
Joe Perchesf10a1f22010-02-14 22:40:39 -08005988 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize IPP\n");
David S. Millera3138df2007-10-09 01:54:01 -07005989 err = niu_init_ipp(np);
5990 if (err)
5991 goto out_uninit_rx_channels;
5992
Joe Perchesf10a1f22010-02-14 22:40:39 -08005993 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Initialize MAC\n");
David S. Millera3138df2007-10-09 01:54:01 -07005994 err = niu_init_mac(np);
5995 if (err)
5996 goto out_uninit_ipp;
5997
5998 return 0;
5999
6000out_uninit_ipp:
Joe Perchesf10a1f22010-02-14 22:40:39 -08006001 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Uninit IPP\n");
David S. Millera3138df2007-10-09 01:54:01 -07006002 niu_disable_ipp(np);
6003
6004out_uninit_rx_channels:
Joe Perchesf10a1f22010-02-14 22:40:39 -08006005 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Uninit RX channels\n");
David S. Millera3138df2007-10-09 01:54:01 -07006006 niu_stop_rx_channels(np);
6007 niu_reset_rx_channels(np);
6008
6009out_uninit_tx_channels:
Joe Perchesf10a1f22010-02-14 22:40:39 -08006010 netif_printk(np, ifup, KERN_DEBUG, np->dev, "Uninit TX channels\n");
David S. Millera3138df2007-10-09 01:54:01 -07006011 niu_stop_tx_channels(np);
6012 niu_reset_tx_channels(np);
6013
6014 return err;
6015}
6016
6017static void niu_stop_hw(struct niu *np)
6018{
Joe Perchesf10a1f22010-02-14 22:40:39 -08006019 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Disable interrupts\n");
David S. Millera3138df2007-10-09 01:54:01 -07006020 niu_enable_interrupts(np, 0);
6021
Joe Perchesf10a1f22010-02-14 22:40:39 -08006022 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Disable RX MAC\n");
David S. Millera3138df2007-10-09 01:54:01 -07006023 niu_enable_rx_mac(np, 0);
6024
Joe Perchesf10a1f22010-02-14 22:40:39 -08006025 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Disable IPP\n");
David S. Millera3138df2007-10-09 01:54:01 -07006026 niu_disable_ipp(np);
6027
Joe Perchesf10a1f22010-02-14 22:40:39 -08006028 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Stop TX channels\n");
David S. Millera3138df2007-10-09 01:54:01 -07006029 niu_stop_tx_channels(np);
6030
Joe Perchesf10a1f22010-02-14 22:40:39 -08006031 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Stop RX channels\n");
David S. Millera3138df2007-10-09 01:54:01 -07006032 niu_stop_rx_channels(np);
6033
Joe Perchesf10a1f22010-02-14 22:40:39 -08006034 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Reset TX channels\n");
David S. Millera3138df2007-10-09 01:54:01 -07006035 niu_reset_tx_channels(np);
6036
Joe Perchesf10a1f22010-02-14 22:40:39 -08006037 netif_printk(np, ifdown, KERN_DEBUG, np->dev, "Reset RX channels\n");
David S. Millera3138df2007-10-09 01:54:01 -07006038 niu_reset_rx_channels(np);
6039}
6040
Robert Olsson70340d72008-11-25 16:41:57 -08006041static void niu_set_irq_name(struct niu *np)
6042{
6043 int port = np->port;
6044 int i, j = 1;
6045
6046 sprintf(np->irq_name[0], "%s:MAC", np->dev->name);
6047
6048 if (port == 0) {
6049 sprintf(np->irq_name[1], "%s:MIF", np->dev->name);
6050 sprintf(np->irq_name[2], "%s:SYSERR", np->dev->name);
6051 j = 3;
6052 }
6053
6054 for (i = 0; i < np->num_ldg - j; i++) {
6055 if (i < np->num_rx_rings)
6056 sprintf(np->irq_name[i+j], "%s-rx-%d",
6057 np->dev->name, i);
6058 else if (i < np->num_tx_rings + np->num_rx_rings)
6059 sprintf(np->irq_name[i+j], "%s-tx-%d", np->dev->name,
6060 i - np->num_rx_rings);
6061 }
6062}
6063
David S. Millera3138df2007-10-09 01:54:01 -07006064static int niu_request_irq(struct niu *np)
6065{
6066 int i, j, err;
6067
Robert Olsson70340d72008-11-25 16:41:57 -08006068 niu_set_irq_name(np);
6069
David S. Millera3138df2007-10-09 01:54:01 -07006070 err = 0;
6071 for (i = 0; i < np->num_ldg; i++) {
6072 struct niu_ldg *lp = &np->ldg[i];
6073
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00006074 err = request_irq(lp->irq, niu_interrupt, IRQF_SHARED,
Robert Olsson70340d72008-11-25 16:41:57 -08006075 np->irq_name[i], lp);
David S. Millera3138df2007-10-09 01:54:01 -07006076 if (err)
6077 goto out_free_irqs;
6078
6079 }
6080
6081 return 0;
6082
6083out_free_irqs:
6084 for (j = 0; j < i; j++) {
6085 struct niu_ldg *lp = &np->ldg[j];
6086
6087 free_irq(lp->irq, lp);
6088 }
6089 return err;
6090}
6091
6092static void niu_free_irq(struct niu *np)
6093{
6094 int i;
6095
6096 for (i = 0; i < np->num_ldg; i++) {
6097 struct niu_ldg *lp = &np->ldg[i];
6098
6099 free_irq(lp->irq, lp);
6100 }
6101}
6102
6103static void niu_enable_napi(struct niu *np)
6104{
6105 int i;
6106
6107 for (i = 0; i < np->num_ldg; i++)
6108 napi_enable(&np->ldg[i].napi);
6109}
6110
6111static void niu_disable_napi(struct niu *np)
6112{
6113 int i;
6114
6115 for (i = 0; i < np->num_ldg; i++)
6116 napi_disable(&np->ldg[i].napi);
6117}
6118
6119static int niu_open(struct net_device *dev)
6120{
6121 struct niu *np = netdev_priv(dev);
6122 int err;
6123
6124 netif_carrier_off(dev);
6125
6126 err = niu_alloc_channels(np);
6127 if (err)
6128 goto out_err;
6129
6130 err = niu_enable_interrupts(np, 0);
6131 if (err)
6132 goto out_free_channels;
6133
6134 err = niu_request_irq(np);
6135 if (err)
6136 goto out_free_channels;
6137
6138 niu_enable_napi(np);
6139
6140 spin_lock_irq(&np->lock);
6141
6142 err = niu_init_hw(np);
6143 if (!err) {
6144 init_timer(&np->timer);
6145 np->timer.expires = jiffies + HZ;
6146 np->timer.data = (unsigned long) np;
6147 np->timer.function = niu_timer;
6148
6149 err = niu_enable_interrupts(np, 1);
6150 if (err)
6151 niu_stop_hw(np);
6152 }
6153
6154 spin_unlock_irq(&np->lock);
6155
6156 if (err) {
6157 niu_disable_napi(np);
6158 goto out_free_irq;
6159 }
6160
David S. Millerb4c21632008-07-15 03:48:19 -07006161 netif_tx_start_all_queues(dev);
David S. Millera3138df2007-10-09 01:54:01 -07006162
6163 if (np->link_config.loopback_mode != LOOPBACK_DISABLED)
6164 netif_carrier_on(dev);
6165
6166 add_timer(&np->timer);
6167
6168 return 0;
6169
6170out_free_irq:
6171 niu_free_irq(np);
6172
6173out_free_channels:
6174 niu_free_channels(np);
6175
6176out_err:
6177 return err;
6178}
6179
6180static void niu_full_shutdown(struct niu *np, struct net_device *dev)
6181{
6182 cancel_work_sync(&np->reset_task);
6183
6184 niu_disable_napi(np);
David S. Millerb4c21632008-07-15 03:48:19 -07006185 netif_tx_stop_all_queues(dev);
David S. Millera3138df2007-10-09 01:54:01 -07006186
6187 del_timer_sync(&np->timer);
6188
6189 spin_lock_irq(&np->lock);
6190
6191 niu_stop_hw(np);
6192
6193 spin_unlock_irq(&np->lock);
6194}
6195
6196static int niu_close(struct net_device *dev)
6197{
6198 struct niu *np = netdev_priv(dev);
6199
6200 niu_full_shutdown(np, dev);
6201
6202 niu_free_irq(np);
6203
6204 niu_free_channels(np);
6205
Mirko Lindner0c3b0912007-12-05 21:10:02 -08006206 niu_handle_led(np, 0);
6207
David S. Millera3138df2007-10-09 01:54:01 -07006208 return 0;
6209}
6210
6211static void niu_sync_xmac_stats(struct niu *np)
6212{
6213 struct niu_xmac_stats *mp = &np->mac_stats.xmac;
6214
6215 mp->tx_frames += nr64_mac(TXMAC_FRM_CNT);
6216 mp->tx_bytes += nr64_mac(TXMAC_BYTE_CNT);
6217
6218 mp->rx_link_faults += nr64_mac(LINK_FAULT_CNT);
6219 mp->rx_align_errors += nr64_mac(RXMAC_ALIGN_ERR_CNT);
6220 mp->rx_frags += nr64_mac(RXMAC_FRAG_CNT);
6221 mp->rx_mcasts += nr64_mac(RXMAC_MC_FRM_CNT);
6222 mp->rx_bcasts += nr64_mac(RXMAC_BC_FRM_CNT);
6223 mp->rx_hist_cnt1 += nr64_mac(RXMAC_HIST_CNT1);
6224 mp->rx_hist_cnt2 += nr64_mac(RXMAC_HIST_CNT2);
6225 mp->rx_hist_cnt3 += nr64_mac(RXMAC_HIST_CNT3);
6226 mp->rx_hist_cnt4 += nr64_mac(RXMAC_HIST_CNT4);
6227 mp->rx_hist_cnt5 += nr64_mac(RXMAC_HIST_CNT5);
6228 mp->rx_hist_cnt6 += nr64_mac(RXMAC_HIST_CNT6);
6229 mp->rx_hist_cnt7 += nr64_mac(RXMAC_HIST_CNT7);
6230 mp->rx_octets += nr64_mac(RXMAC_BT_CNT);
6231 mp->rx_code_violations += nr64_mac(RXMAC_CD_VIO_CNT);
6232 mp->rx_len_errors += nr64_mac(RXMAC_MPSZER_CNT);
6233 mp->rx_crc_errors += nr64_mac(RXMAC_CRC_ER_CNT);
6234}
6235
6236static void niu_sync_bmac_stats(struct niu *np)
6237{
6238 struct niu_bmac_stats *mp = &np->mac_stats.bmac;
6239
6240 mp->tx_bytes += nr64_mac(BTXMAC_BYTE_CNT);
6241 mp->tx_frames += nr64_mac(BTXMAC_FRM_CNT);
6242
6243 mp->rx_frames += nr64_mac(BRXMAC_FRAME_CNT);
6244 mp->rx_align_errors += nr64_mac(BRXMAC_ALIGN_ERR_CNT);
6245 mp->rx_crc_errors += nr64_mac(BRXMAC_ALIGN_ERR_CNT);
6246 mp->rx_len_errors += nr64_mac(BRXMAC_CODE_VIOL_ERR_CNT);
6247}
6248
6249static void niu_sync_mac_stats(struct niu *np)
6250{
6251 if (np->flags & NIU_FLAGS_XMAC)
6252 niu_sync_xmac_stats(np);
6253 else
6254 niu_sync_bmac_stats(np);
6255}
6256
6257static void niu_get_rx_stats(struct niu *np)
6258{
6259 unsigned long pkts, dropped, errors, bytes;
David S. Miller9690c632011-02-03 16:12:50 -08006260 struct rx_ring_info *rx_rings;
David S. Millera3138df2007-10-09 01:54:01 -07006261 int i;
6262
6263 pkts = dropped = errors = bytes = 0;
David S. Miller9690c632011-02-03 16:12:50 -08006264
6265 rx_rings = ACCESS_ONCE(np->rx_rings);
6266 if (!rx_rings)
6267 goto no_rings;
6268
David S. Millera3138df2007-10-09 01:54:01 -07006269 for (i = 0; i < np->num_rx_rings; i++) {
David S. Miller9690c632011-02-03 16:12:50 -08006270 struct rx_ring_info *rp = &rx_rings[i];
David S. Millera3138df2007-10-09 01:54:01 -07006271
Jesper Dangaard Brouerb8a606b2008-12-18 19:50:49 -08006272 niu_sync_rx_discard_stats(np, rp, 0);
6273
David S. Millera3138df2007-10-09 01:54:01 -07006274 pkts += rp->rx_packets;
6275 bytes += rp->rx_bytes;
6276 dropped += rp->rx_dropped;
6277 errors += rp->rx_errors;
6278 }
David S. Miller9690c632011-02-03 16:12:50 -08006279
6280no_rings:
Ilpo Järvinen9fd42872008-11-28 15:52:00 -08006281 np->dev->stats.rx_packets = pkts;
6282 np->dev->stats.rx_bytes = bytes;
6283 np->dev->stats.rx_dropped = dropped;
6284 np->dev->stats.rx_errors = errors;
David S. Millera3138df2007-10-09 01:54:01 -07006285}
6286
6287static void niu_get_tx_stats(struct niu *np)
6288{
6289 unsigned long pkts, errors, bytes;
David S. Miller9690c632011-02-03 16:12:50 -08006290 struct tx_ring_info *tx_rings;
David S. Millera3138df2007-10-09 01:54:01 -07006291 int i;
6292
6293 pkts = errors = bytes = 0;
David S. Miller9690c632011-02-03 16:12:50 -08006294
6295 tx_rings = ACCESS_ONCE(np->tx_rings);
6296 if (!tx_rings)
6297 goto no_rings;
6298
David S. Millera3138df2007-10-09 01:54:01 -07006299 for (i = 0; i < np->num_tx_rings; i++) {
David S. Miller9690c632011-02-03 16:12:50 -08006300 struct tx_ring_info *rp = &tx_rings[i];
David S. Millera3138df2007-10-09 01:54:01 -07006301
6302 pkts += rp->tx_packets;
6303 bytes += rp->tx_bytes;
6304 errors += rp->tx_errors;
6305 }
David S. Miller9690c632011-02-03 16:12:50 -08006306
6307no_rings:
Ilpo Järvinen9fd42872008-11-28 15:52:00 -08006308 np->dev->stats.tx_packets = pkts;
6309 np->dev->stats.tx_bytes = bytes;
6310 np->dev->stats.tx_errors = errors;
David S. Millera3138df2007-10-09 01:54:01 -07006311}
6312
6313static struct net_device_stats *niu_get_stats(struct net_device *dev)
6314{
6315 struct niu *np = netdev_priv(dev);
6316
David S. Miller9690c632011-02-03 16:12:50 -08006317 if (netif_running(dev)) {
6318 niu_get_rx_stats(np);
6319 niu_get_tx_stats(np);
6320 }
Ilpo Järvinen9fd42872008-11-28 15:52:00 -08006321 return &dev->stats;
David S. Millera3138df2007-10-09 01:54:01 -07006322}
6323
6324static void niu_load_hash_xmac(struct niu *np, u16 *hash)
6325{
6326 int i;
6327
6328 for (i = 0; i < 16; i++)
6329 nw64_mac(XMAC_HASH_TBL(i), hash[i]);
6330}
6331
6332static void niu_load_hash_bmac(struct niu *np, u16 *hash)
6333{
6334 int i;
6335
6336 for (i = 0; i < 16; i++)
6337 nw64_mac(BMAC_HASH_TBL(i), hash[i]);
6338}
6339
6340static void niu_load_hash(struct niu *np, u16 *hash)
6341{
6342 if (np->flags & NIU_FLAGS_XMAC)
6343 niu_load_hash_xmac(np, hash);
6344 else
6345 niu_load_hash_bmac(np, hash);
6346}
6347
6348static void niu_set_rx_mode(struct net_device *dev)
6349{
6350 struct niu *np = netdev_priv(dev);
6351 int i, alt_cnt, err;
Jiri Pirkoccffad252009-05-22 23:22:17 +00006352 struct netdev_hw_addr *ha;
David S. Millera3138df2007-10-09 01:54:01 -07006353 unsigned long flags;
6354 u16 hash[16] = { 0, };
6355
6356 spin_lock_irqsave(&np->lock, flags);
6357 niu_enable_rx_mac(np, 0);
6358
6359 np->flags &= ~(NIU_FLAGS_MCAST | NIU_FLAGS_PROMISC);
6360 if (dev->flags & IFF_PROMISC)
6361 np->flags |= NIU_FLAGS_PROMISC;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00006362 if ((dev->flags & IFF_ALLMULTI) || (!netdev_mc_empty(dev)))
David S. Millera3138df2007-10-09 01:54:01 -07006363 np->flags |= NIU_FLAGS_MCAST;
6364
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006365 alt_cnt = netdev_uc_count(dev);
David S. Millera3138df2007-10-09 01:54:01 -07006366 if (alt_cnt > niu_num_alt_addr(np)) {
6367 alt_cnt = 0;
6368 np->flags |= NIU_FLAGS_PROMISC;
6369 }
6370
6371 if (alt_cnt) {
6372 int index = 0;
6373
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006374 netdev_for_each_uc_addr(ha, dev) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00006375 err = niu_set_alt_mac(np, index, ha->addr);
David S. Millera3138df2007-10-09 01:54:01 -07006376 if (err)
Joe Perchesf10a1f22010-02-14 22:40:39 -08006377 netdev_warn(dev, "Error %d adding alt mac %d\n",
6378 err, index);
David S. Millera3138df2007-10-09 01:54:01 -07006379 err = niu_enable_alt_mac(np, index, 1);
6380 if (err)
Joe Perchesf10a1f22010-02-14 22:40:39 -08006381 netdev_warn(dev, "Error %d enabling alt mac %d\n",
6382 err, index);
David S. Millera3138df2007-10-09 01:54:01 -07006383
6384 index++;
6385 }
6386 } else {
Matheos Worku3b5bced2008-02-18 21:30:03 -08006387 int alt_start;
6388 if (np->flags & NIU_FLAGS_XMAC)
6389 alt_start = 0;
6390 else
6391 alt_start = 1;
6392 for (i = alt_start; i < niu_num_alt_addr(np); i++) {
David S. Millera3138df2007-10-09 01:54:01 -07006393 err = niu_enable_alt_mac(np, i, 0);
6394 if (err)
Joe Perchesf10a1f22010-02-14 22:40:39 -08006395 netdev_warn(dev, "Error %d disabling alt mac %d\n",
6396 err, i);
David S. Millera3138df2007-10-09 01:54:01 -07006397 }
6398 }
6399 if (dev->flags & IFF_ALLMULTI) {
6400 for (i = 0; i < 16; i++)
6401 hash[i] = 0xffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00006402 } else if (!netdev_mc_empty(dev)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00006403 netdev_for_each_mc_addr(ha, dev) {
6404 u32 crc = ether_crc_le(ETH_ALEN, ha->addr);
David S. Millera3138df2007-10-09 01:54:01 -07006405
6406 crc >>= 24;
6407 hash[crc >> 4] |= (1 << (15 - (crc & 0xf)));
6408 }
6409 }
6410
6411 if (np->flags & NIU_FLAGS_MCAST)
6412 niu_load_hash(np, hash);
6413
6414 niu_enable_rx_mac(np, 1);
6415 spin_unlock_irqrestore(&np->lock, flags);
6416}
6417
6418static int niu_set_mac_addr(struct net_device *dev, void *p)
6419{
6420 struct niu *np = netdev_priv(dev);
6421 struct sockaddr *addr = p;
6422 unsigned long flags;
6423
6424 if (!is_valid_ether_addr(addr->sa_data))
6425 return -EINVAL;
6426
6427 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
6428
6429 if (!netif_running(dev))
6430 return 0;
6431
6432 spin_lock_irqsave(&np->lock, flags);
6433 niu_enable_rx_mac(np, 0);
6434 niu_set_primary_mac(np, dev->dev_addr);
6435 niu_enable_rx_mac(np, 1);
6436 spin_unlock_irqrestore(&np->lock, flags);
6437
6438 return 0;
6439}
6440
6441static int niu_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
6442{
6443 return -EOPNOTSUPP;
6444}
6445
6446static void niu_netif_stop(struct niu *np)
6447{
6448 np->dev->trans_start = jiffies; /* prevent tx timeout */
6449
6450 niu_disable_napi(np);
6451
6452 netif_tx_disable(np->dev);
6453}
6454
6455static void niu_netif_start(struct niu *np)
6456{
6457 /* NOTE: unconditional netif_wake_queue is only appropriate
6458 * so long as all callers are assured to have free tx slots
6459 * (such as after niu_init_hw).
6460 */
David S. Millerb4c21632008-07-15 03:48:19 -07006461 netif_tx_wake_all_queues(np->dev);
David S. Millera3138df2007-10-09 01:54:01 -07006462
6463 niu_enable_napi(np);
6464
6465 niu_enable_interrupts(np, 1);
6466}
6467
Santwona Beheracff502a2008-09-12 16:04:26 -07006468static void niu_reset_buffers(struct niu *np)
6469{
6470 int i, j, k, err;
6471
6472 if (np->rx_rings) {
6473 for (i = 0; i < np->num_rx_rings; i++) {
6474 struct rx_ring_info *rp = &np->rx_rings[i];
6475
6476 for (j = 0, k = 0; j < MAX_RBR_RING_SIZE; j++) {
6477 struct page *page;
6478
6479 page = rp->rxhash[j];
6480 while (page) {
6481 struct page *next =
6482 (struct page *) page->mapping;
6483 u64 base = page->index;
6484 base = base >> RBR_DESCR_ADDR_SHIFT;
6485 rp->rbr[k++] = cpu_to_le32(base);
6486 page = next;
6487 }
6488 }
6489 for (; k < MAX_RBR_RING_SIZE; k++) {
6490 err = niu_rbr_add_page(np, rp, GFP_ATOMIC, k);
6491 if (unlikely(err))
6492 break;
6493 }
6494
6495 rp->rbr_index = rp->rbr_table_size - 1;
6496 rp->rcr_index = 0;
6497 rp->rbr_pending = 0;
6498 rp->rbr_refill_pending = 0;
6499 }
6500 }
6501 if (np->tx_rings) {
6502 for (i = 0; i < np->num_tx_rings; i++) {
6503 struct tx_ring_info *rp = &np->tx_rings[i];
6504
6505 for (j = 0; j < MAX_TX_RING_SIZE; j++) {
6506 if (rp->tx_buffs[j].skb)
6507 (void) release_tx_packet(np, rp, j);
6508 }
6509
6510 rp->pending = MAX_TX_RING_SIZE;
6511 rp->prod = 0;
6512 rp->cons = 0;
6513 rp->wrap_bit = 0;
6514 }
6515 }
6516}
6517
David S. Millera3138df2007-10-09 01:54:01 -07006518static void niu_reset_task(struct work_struct *work)
6519{
6520 struct niu *np = container_of(work, struct niu, reset_task);
6521 unsigned long flags;
6522 int err;
6523
6524 spin_lock_irqsave(&np->lock, flags);
6525 if (!netif_running(np->dev)) {
6526 spin_unlock_irqrestore(&np->lock, flags);
6527 return;
6528 }
6529
6530 spin_unlock_irqrestore(&np->lock, flags);
6531
6532 del_timer_sync(&np->timer);
6533
6534 niu_netif_stop(np);
6535
6536 spin_lock_irqsave(&np->lock, flags);
6537
6538 niu_stop_hw(np);
6539
Santwona Beheracff502a2008-09-12 16:04:26 -07006540 spin_unlock_irqrestore(&np->lock, flags);
6541
6542 niu_reset_buffers(np);
6543
6544 spin_lock_irqsave(&np->lock, flags);
6545
David S. Millera3138df2007-10-09 01:54:01 -07006546 err = niu_init_hw(np);
6547 if (!err) {
6548 np->timer.expires = jiffies + HZ;
6549 add_timer(&np->timer);
6550 niu_netif_start(np);
6551 }
6552
6553 spin_unlock_irqrestore(&np->lock, flags);
6554}
6555
6556static void niu_tx_timeout(struct net_device *dev)
6557{
6558 struct niu *np = netdev_priv(dev);
6559
Joe Perchesf10a1f22010-02-14 22:40:39 -08006560 dev_err(np->device, "%s: Transmit timed out, resetting\n",
David S. Millera3138df2007-10-09 01:54:01 -07006561 dev->name);
6562
6563 schedule_work(&np->reset_task);
6564}
6565
6566static void niu_set_txd(struct tx_ring_info *rp, int index,
6567 u64 mapping, u64 len, u64 mark,
6568 u64 n_frags)
6569{
6570 __le64 *desc = &rp->descr[index];
6571
6572 *desc = cpu_to_le64(mark |
6573 (n_frags << TX_DESC_NUM_PTR_SHIFT) |
6574 (len << TX_DESC_TR_LEN_SHIFT) |
6575 (mapping & TX_DESC_SAD));
6576}
6577
6578static u64 niu_compute_tx_flags(struct sk_buff *skb, struct ethhdr *ehdr,
6579 u64 pad_bytes, u64 len)
6580{
6581 u16 eth_proto, eth_proto_inner;
6582 u64 csum_bits, l3off, ihl, ret;
6583 u8 ip_proto;
6584 int ipv6;
6585
6586 eth_proto = be16_to_cpu(ehdr->h_proto);
6587 eth_proto_inner = eth_proto;
6588 if (eth_proto == ETH_P_8021Q) {
6589 struct vlan_ethhdr *vp = (struct vlan_ethhdr *) ehdr;
6590 __be16 val = vp->h_vlan_encapsulated_proto;
6591
6592 eth_proto_inner = be16_to_cpu(val);
6593 }
6594
6595 ipv6 = ihl = 0;
6596 switch (skb->protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08006597 case cpu_to_be16(ETH_P_IP):
David S. Millera3138df2007-10-09 01:54:01 -07006598 ip_proto = ip_hdr(skb)->protocol;
6599 ihl = ip_hdr(skb)->ihl;
6600 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08006601 case cpu_to_be16(ETH_P_IPV6):
David S. Millera3138df2007-10-09 01:54:01 -07006602 ip_proto = ipv6_hdr(skb)->nexthdr;
6603 ihl = (40 >> 2);
6604 ipv6 = 1;
6605 break;
6606 default:
6607 ip_proto = ihl = 0;
6608 break;
6609 }
6610
6611 csum_bits = TXHDR_CSUM_NONE;
6612 if (skb->ip_summed == CHECKSUM_PARTIAL) {
6613 u64 start, stuff;
6614
6615 csum_bits = (ip_proto == IPPROTO_TCP ?
6616 TXHDR_CSUM_TCP :
6617 (ip_proto == IPPROTO_UDP ?
6618 TXHDR_CSUM_UDP : TXHDR_CSUM_SCTP));
6619
Michał Mirosław0d0b1672010-12-14 15:24:08 +00006620 start = skb_checksum_start_offset(skb) -
David S. Millera3138df2007-10-09 01:54:01 -07006621 (pad_bytes + sizeof(struct tx_pkt_hdr));
6622 stuff = start + skb->csum_offset;
6623
6624 csum_bits |= (start / 2) << TXHDR_L4START_SHIFT;
6625 csum_bits |= (stuff / 2) << TXHDR_L4STUFF_SHIFT;
6626 }
6627
6628 l3off = skb_network_offset(skb) -
6629 (pad_bytes + sizeof(struct tx_pkt_hdr));
6630
6631 ret = (((pad_bytes / 2) << TXHDR_PAD_SHIFT) |
6632 (len << TXHDR_LEN_SHIFT) |
6633 ((l3off / 2) << TXHDR_L3START_SHIFT) |
6634 (ihl << TXHDR_IHL_SHIFT) |
6635 ((eth_proto_inner < 1536) ? TXHDR_LLC : 0) |
6636 ((eth_proto == ETH_P_8021Q) ? TXHDR_VLAN : 0) |
6637 (ipv6 ? TXHDR_IP_VER : 0) |
6638 csum_bits);
6639
6640 return ret;
6641}
6642
Stephen Hemminger613573252009-08-31 19:50:58 +00006643static netdev_tx_t niu_start_xmit(struct sk_buff *skb,
6644 struct net_device *dev)
David S. Millera3138df2007-10-09 01:54:01 -07006645{
6646 struct niu *np = netdev_priv(dev);
6647 unsigned long align, headroom;
David S. Millerb4c21632008-07-15 03:48:19 -07006648 struct netdev_queue *txq;
David S. Millera3138df2007-10-09 01:54:01 -07006649 struct tx_ring_info *rp;
6650 struct tx_pkt_hdr *tp;
6651 unsigned int len, nfg;
6652 struct ethhdr *ehdr;
6653 int prod, i, tlen;
6654 u64 mapping, mrk;
6655
David S. Millerb4c21632008-07-15 03:48:19 -07006656 i = skb_get_queue_mapping(skb);
6657 rp = &np->tx_rings[i];
6658 txq = netdev_get_tx_queue(dev, i);
David S. Millera3138df2007-10-09 01:54:01 -07006659
6660 if (niu_tx_avail(rp) <= (skb_shinfo(skb)->nr_frags + 1)) {
David S. Millerb4c21632008-07-15 03:48:19 -07006661 netif_tx_stop_queue(txq);
Joe Perchesf10a1f22010-02-14 22:40:39 -08006662 dev_err(np->device, "%s: BUG! Tx ring full when queue awake!\n", dev->name);
David S. Millera3138df2007-10-09 01:54:01 -07006663 rp->tx_errors++;
6664 return NETDEV_TX_BUSY;
6665 }
6666
6667 if (skb->len < ETH_ZLEN) {
6668 unsigned int pad_bytes = ETH_ZLEN - skb->len;
6669
6670 if (skb_pad(skb, pad_bytes))
6671 goto out;
6672 skb_put(skb, pad_bytes);
6673 }
6674
6675 len = sizeof(struct tx_pkt_hdr) + 15;
6676 if (skb_headroom(skb) < len) {
6677 struct sk_buff *skb_new;
6678
6679 skb_new = skb_realloc_headroom(skb, len);
6680 if (!skb_new) {
6681 rp->tx_errors++;
6682 goto out_drop;
6683 }
6684 kfree_skb(skb);
6685 skb = skb_new;
David S. Miller3ebebcc2008-01-04 23:54:06 -08006686 } else
6687 skb_orphan(skb);
David S. Millera3138df2007-10-09 01:54:01 -07006688
6689 align = ((unsigned long) skb->data & (16 - 1));
6690 headroom = align + sizeof(struct tx_pkt_hdr);
6691
6692 ehdr = (struct ethhdr *) skb->data;
6693 tp = (struct tx_pkt_hdr *) skb_push(skb, headroom);
6694
6695 len = skb->len - sizeof(struct tx_pkt_hdr);
6696 tp->flags = cpu_to_le64(niu_compute_tx_flags(skb, ehdr, align, len));
6697 tp->resv = 0;
6698
6699 len = skb_headlen(skb);
6700 mapping = np->ops->map_single(np->device, skb->data,
6701 len, DMA_TO_DEVICE);
6702
6703 prod = rp->prod;
6704
6705 rp->tx_buffs[prod].skb = skb;
6706 rp->tx_buffs[prod].mapping = mapping;
6707
6708 mrk = TX_DESC_SOP;
6709 if (++rp->mark_counter == rp->mark_freq) {
6710 rp->mark_counter = 0;
6711 mrk |= TX_DESC_MARK;
6712 rp->mark_pending++;
6713 }
6714
6715 tlen = len;
6716 nfg = skb_shinfo(skb)->nr_frags;
6717 while (tlen > 0) {
6718 tlen -= MAX_TX_DESC_LEN;
6719 nfg++;
6720 }
6721
6722 while (len > 0) {
6723 unsigned int this_len = len;
6724
6725 if (this_len > MAX_TX_DESC_LEN)
6726 this_len = MAX_TX_DESC_LEN;
6727
6728 niu_set_txd(rp, prod, mapping, this_len, mrk, nfg);
6729 mrk = nfg = 0;
6730
6731 prod = NEXT_TX(rp, prod);
6732 mapping += this_len;
6733 len -= this_len;
6734 }
6735
6736 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
6737 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6738
6739 len = frag->size;
6740 mapping = np->ops->map_page(np->device, frag->page,
6741 frag->page_offset, len,
6742 DMA_TO_DEVICE);
6743
6744 rp->tx_buffs[prod].skb = NULL;
6745 rp->tx_buffs[prod].mapping = mapping;
6746
6747 niu_set_txd(rp, prod, mapping, len, 0, 0);
6748
6749 prod = NEXT_TX(rp, prod);
6750 }
6751
6752 if (prod < rp->prod)
6753 rp->wrap_bit ^= TX_RING_KICK_WRAP;
6754 rp->prod = prod;
6755
6756 nw64(TX_RING_KICK(rp->tx_channel), rp->wrap_bit | (prod << 3));
6757
6758 if (unlikely(niu_tx_avail(rp) <= (MAX_SKB_FRAGS + 1))) {
David S. Millerb4c21632008-07-15 03:48:19 -07006759 netif_tx_stop_queue(txq);
David S. Millera3138df2007-10-09 01:54:01 -07006760 if (niu_tx_avail(rp) > NIU_TX_WAKEUP_THRESH(rp))
David S. Millerb4c21632008-07-15 03:48:19 -07006761 netif_tx_wake_queue(txq);
David S. Millera3138df2007-10-09 01:54:01 -07006762 }
6763
David S. Millera3138df2007-10-09 01:54:01 -07006764out:
6765 return NETDEV_TX_OK;
6766
6767out_drop:
6768 rp->tx_errors++;
6769 kfree_skb(skb);
6770 goto out;
6771}
6772
6773static int niu_change_mtu(struct net_device *dev, int new_mtu)
6774{
6775 struct niu *np = netdev_priv(dev);
6776 int err, orig_jumbo, new_jumbo;
6777
6778 if (new_mtu < 68 || new_mtu > NIU_MAX_MTU)
6779 return -EINVAL;
6780
6781 orig_jumbo = (dev->mtu > ETH_DATA_LEN);
6782 new_jumbo = (new_mtu > ETH_DATA_LEN);
6783
6784 dev->mtu = new_mtu;
6785
6786 if (!netif_running(dev) ||
6787 (orig_jumbo == new_jumbo))
6788 return 0;
6789
6790 niu_full_shutdown(np, dev);
6791
6792 niu_free_channels(np);
6793
6794 niu_enable_napi(np);
6795
6796 err = niu_alloc_channels(np);
6797 if (err)
6798 return err;
6799
6800 spin_lock_irq(&np->lock);
6801
6802 err = niu_init_hw(np);
6803 if (!err) {
6804 init_timer(&np->timer);
6805 np->timer.expires = jiffies + HZ;
6806 np->timer.data = (unsigned long) np;
6807 np->timer.function = niu_timer;
6808
6809 err = niu_enable_interrupts(np, 1);
6810 if (err)
6811 niu_stop_hw(np);
6812 }
6813
6814 spin_unlock_irq(&np->lock);
6815
6816 if (!err) {
David S. Millerb4c21632008-07-15 03:48:19 -07006817 netif_tx_start_all_queues(dev);
David S. Millera3138df2007-10-09 01:54:01 -07006818 if (np->link_config.loopback_mode != LOOPBACK_DISABLED)
6819 netif_carrier_on(dev);
6820
6821 add_timer(&np->timer);
6822 }
6823
6824 return err;
6825}
6826
6827static void niu_get_drvinfo(struct net_device *dev,
6828 struct ethtool_drvinfo *info)
6829{
6830 struct niu *np = netdev_priv(dev);
6831 struct niu_vpd *vpd = &np->vpd;
6832
6833 strcpy(info->driver, DRV_MODULE_NAME);
6834 strcpy(info->version, DRV_MODULE_VERSION);
6835 sprintf(info->fw_version, "%d.%d",
6836 vpd->fcode_major, vpd->fcode_minor);
6837 if (np->parent->plat_type != PLAT_TYPE_NIU)
6838 strcpy(info->bus_info, pci_name(np->pdev));
6839}
6840
6841static int niu_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
6842{
6843 struct niu *np = netdev_priv(dev);
6844 struct niu_link_config *lp;
6845
6846 lp = &np->link_config;
6847
6848 memset(cmd, 0, sizeof(*cmd));
6849 cmd->phy_address = np->phy_addr;
6850 cmd->supported = lp->supported;
Constantin Baranov38bb045d2009-02-18 17:53:20 -08006851 cmd->advertising = lp->active_advertising;
6852 cmd->autoneg = lp->active_autoneg;
David S. Millera3138df2007-10-09 01:54:01 -07006853 cmd->speed = lp->active_speed;
6854 cmd->duplex = lp->active_duplex;
Constantin Baranov38bb045d2009-02-18 17:53:20 -08006855 cmd->port = (np->flags & NIU_FLAGS_FIBER) ? PORT_FIBRE : PORT_TP;
6856 cmd->transceiver = (np->flags & NIU_FLAGS_XCVR_SERDES) ?
6857 XCVR_EXTERNAL : XCVR_INTERNAL;
David S. Millera3138df2007-10-09 01:54:01 -07006858
6859 return 0;
6860}
6861
6862static int niu_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
6863{
Constantin Baranov38bb045d2009-02-18 17:53:20 -08006864 struct niu *np = netdev_priv(dev);
6865 struct niu_link_config *lp = &np->link_config;
6866
6867 lp->advertising = cmd->advertising;
6868 lp->speed = cmd->speed;
6869 lp->duplex = cmd->duplex;
6870 lp->autoneg = cmd->autoneg;
6871 return niu_init_link(np);
David S. Millera3138df2007-10-09 01:54:01 -07006872}
6873
6874static u32 niu_get_msglevel(struct net_device *dev)
6875{
6876 struct niu *np = netdev_priv(dev);
6877 return np->msg_enable;
6878}
6879
6880static void niu_set_msglevel(struct net_device *dev, u32 value)
6881{
6882 struct niu *np = netdev_priv(dev);
6883 np->msg_enable = value;
6884}
6885
Constantin Baranov38bb045d2009-02-18 17:53:20 -08006886static int niu_nway_reset(struct net_device *dev)
6887{
6888 struct niu *np = netdev_priv(dev);
6889
6890 if (np->link_config.autoneg)
6891 return niu_init_link(np);
6892
6893 return 0;
6894}
6895
David S. Millera3138df2007-10-09 01:54:01 -07006896static int niu_get_eeprom_len(struct net_device *dev)
6897{
6898 struct niu *np = netdev_priv(dev);
6899
6900 return np->eeprom_len;
6901}
6902
6903static int niu_get_eeprom(struct net_device *dev,
6904 struct ethtool_eeprom *eeprom, u8 *data)
6905{
6906 struct niu *np = netdev_priv(dev);
6907 u32 offset, len, val;
6908
6909 offset = eeprom->offset;
6910 len = eeprom->len;
6911
6912 if (offset + len < offset)
6913 return -EINVAL;
6914 if (offset >= np->eeprom_len)
6915 return -EINVAL;
6916 if (offset + len > np->eeprom_len)
6917 len = eeprom->len = np->eeprom_len - offset;
6918
6919 if (offset & 3) {
6920 u32 b_offset, b_count;
6921
6922 b_offset = offset & 3;
6923 b_count = 4 - b_offset;
6924 if (b_count > len)
6925 b_count = len;
6926
6927 val = nr64(ESPC_NCR((offset - b_offset) / 4));
6928 memcpy(data, ((char *)&val) + b_offset, b_count);
6929 data += b_count;
6930 len -= b_count;
6931 offset += b_count;
6932 }
6933 while (len >= 4) {
6934 val = nr64(ESPC_NCR(offset / 4));
6935 memcpy(data, &val, 4);
6936 data += 4;
6937 len -= 4;
6938 offset += 4;
6939 }
6940 if (len) {
6941 val = nr64(ESPC_NCR(offset / 4));
6942 memcpy(data, &val, len);
6943 }
6944 return 0;
6945}
6946
Santwona Behera2d96cf82009-02-20 00:58:45 -08006947static void niu_ethflow_to_l3proto(int flow_type, u8 *pid)
6948{
6949 switch (flow_type) {
6950 case TCP_V4_FLOW:
6951 case TCP_V6_FLOW:
6952 *pid = IPPROTO_TCP;
6953 break;
6954 case UDP_V4_FLOW:
6955 case UDP_V6_FLOW:
6956 *pid = IPPROTO_UDP;
6957 break;
6958 case SCTP_V4_FLOW:
6959 case SCTP_V6_FLOW:
6960 *pid = IPPROTO_SCTP;
6961 break;
6962 case AH_V4_FLOW:
6963 case AH_V6_FLOW:
6964 *pid = IPPROTO_AH;
6965 break;
6966 case ESP_V4_FLOW:
6967 case ESP_V6_FLOW:
6968 *pid = IPPROTO_ESP;
6969 break;
6970 default:
6971 *pid = 0;
6972 break;
6973 }
6974}
6975
6976static int niu_class_to_ethflow(u64 class, int *flow_type)
6977{
6978 switch (class) {
6979 case CLASS_CODE_TCP_IPV4:
6980 *flow_type = TCP_V4_FLOW;
6981 break;
6982 case CLASS_CODE_UDP_IPV4:
6983 *flow_type = UDP_V4_FLOW;
6984 break;
6985 case CLASS_CODE_AH_ESP_IPV4:
6986 *flow_type = AH_V4_FLOW;
6987 break;
6988 case CLASS_CODE_SCTP_IPV4:
6989 *flow_type = SCTP_V4_FLOW;
6990 break;
6991 case CLASS_CODE_TCP_IPV6:
6992 *flow_type = TCP_V6_FLOW;
6993 break;
6994 case CLASS_CODE_UDP_IPV6:
6995 *flow_type = UDP_V6_FLOW;
6996 break;
6997 case CLASS_CODE_AH_ESP_IPV6:
6998 *flow_type = AH_V6_FLOW;
6999 break;
7000 case CLASS_CODE_SCTP_IPV6:
7001 *flow_type = SCTP_V6_FLOW;
7002 break;
7003 case CLASS_CODE_USER_PROG1:
7004 case CLASS_CODE_USER_PROG2:
7005 case CLASS_CODE_USER_PROG3:
7006 case CLASS_CODE_USER_PROG4:
7007 *flow_type = IP_USER_FLOW;
7008 break;
7009 default:
7010 return 0;
7011 }
7012
7013 return 1;
7014}
7015
Santwona Beherab4653e92008-07-02 03:49:11 -07007016static int niu_ethflow_to_class(int flow_type, u64 *class)
7017{
7018 switch (flow_type) {
7019 case TCP_V4_FLOW:
7020 *class = CLASS_CODE_TCP_IPV4;
7021 break;
7022 case UDP_V4_FLOW:
7023 *class = CLASS_CODE_UDP_IPV4;
7024 break;
Santwona Behera2d96cf82009-02-20 00:58:45 -08007025 case AH_V4_FLOW:
7026 case ESP_V4_FLOW:
Santwona Beherab4653e92008-07-02 03:49:11 -07007027 *class = CLASS_CODE_AH_ESP_IPV4;
7028 break;
7029 case SCTP_V4_FLOW:
7030 *class = CLASS_CODE_SCTP_IPV4;
7031 break;
7032 case TCP_V6_FLOW:
7033 *class = CLASS_CODE_TCP_IPV6;
7034 break;
7035 case UDP_V6_FLOW:
7036 *class = CLASS_CODE_UDP_IPV6;
7037 break;
Santwona Behera2d96cf82009-02-20 00:58:45 -08007038 case AH_V6_FLOW:
7039 case ESP_V6_FLOW:
Santwona Beherab4653e92008-07-02 03:49:11 -07007040 *class = CLASS_CODE_AH_ESP_IPV6;
7041 break;
7042 case SCTP_V6_FLOW:
7043 *class = CLASS_CODE_SCTP_IPV6;
7044 break;
7045 default:
Andreas Schwab38c080f2008-07-29 23:59:20 -07007046 return 0;
Santwona Beherab4653e92008-07-02 03:49:11 -07007047 }
7048
7049 return 1;
7050}
7051
7052static u64 niu_flowkey_to_ethflow(u64 flow_key)
7053{
7054 u64 ethflow = 0;
7055
Santwona Beherab4653e92008-07-02 03:49:11 -07007056 if (flow_key & FLOW_KEY_L2DA)
7057 ethflow |= RXH_L2DA;
7058 if (flow_key & FLOW_KEY_VLAN)
7059 ethflow |= RXH_VLAN;
7060 if (flow_key & FLOW_KEY_IPSA)
7061 ethflow |= RXH_IP_SRC;
7062 if (flow_key & FLOW_KEY_IPDA)
7063 ethflow |= RXH_IP_DST;
7064 if (flow_key & FLOW_KEY_PROTO)
7065 ethflow |= RXH_L3_PROTO;
7066 if (flow_key & (FLOW_KEY_L4_BYTE12 << FLOW_KEY_L4_0_SHIFT))
7067 ethflow |= RXH_L4_B_0_1;
7068 if (flow_key & (FLOW_KEY_L4_BYTE12 << FLOW_KEY_L4_1_SHIFT))
7069 ethflow |= RXH_L4_B_2_3;
7070
7071 return ethflow;
7072
7073}
7074
7075static int niu_ethflow_to_flowkey(u64 ethflow, u64 *flow_key)
7076{
7077 u64 key = 0;
7078
Santwona Beherab4653e92008-07-02 03:49:11 -07007079 if (ethflow & RXH_L2DA)
7080 key |= FLOW_KEY_L2DA;
7081 if (ethflow & RXH_VLAN)
7082 key |= FLOW_KEY_VLAN;
7083 if (ethflow & RXH_IP_SRC)
7084 key |= FLOW_KEY_IPSA;
7085 if (ethflow & RXH_IP_DST)
7086 key |= FLOW_KEY_IPDA;
7087 if (ethflow & RXH_L3_PROTO)
7088 key |= FLOW_KEY_PROTO;
7089 if (ethflow & RXH_L4_B_0_1)
7090 key |= (FLOW_KEY_L4_BYTE12 << FLOW_KEY_L4_0_SHIFT);
7091 if (ethflow & RXH_L4_B_2_3)
7092 key |= (FLOW_KEY_L4_BYTE12 << FLOW_KEY_L4_1_SHIFT);
7093
7094 *flow_key = key;
7095
7096 return 1;
7097
7098}
7099
Santwona Behera2d96cf82009-02-20 00:58:45 -08007100static int niu_get_hash_opts(struct niu *np, struct ethtool_rxnfc *nfc)
Santwona Beherab4653e92008-07-02 03:49:11 -07007101{
Santwona Beherab4653e92008-07-02 03:49:11 -07007102 u64 class;
7103
Santwona Behera2d96cf82009-02-20 00:58:45 -08007104 nfc->data = 0;
Santwona Beherab4653e92008-07-02 03:49:11 -07007105
Santwona Behera2d96cf82009-02-20 00:58:45 -08007106 if (!niu_ethflow_to_class(nfc->flow_type, &class))
Santwona Beherab4653e92008-07-02 03:49:11 -07007107 return -EINVAL;
7108
7109 if (np->parent->tcam_key[class - CLASS_CODE_USER_PROG1] &
7110 TCAM_KEY_DISC)
Santwona Behera2d96cf82009-02-20 00:58:45 -08007111 nfc->data = RXH_DISCARD;
Santwona Beherab4653e92008-07-02 03:49:11 -07007112 else
Santwona Behera2d96cf82009-02-20 00:58:45 -08007113 nfc->data = niu_flowkey_to_ethflow(np->parent->flow_key[class -
Santwona Beherab4653e92008-07-02 03:49:11 -07007114 CLASS_CODE_USER_PROG1]);
7115 return 0;
7116}
7117
Santwona Behera2d96cf82009-02-20 00:58:45 -08007118static void niu_get_ip4fs_from_tcam_key(struct niu_tcam_entry *tp,
7119 struct ethtool_rx_flow_spec *fsp)
7120{
Harvey Harrisoned440e82010-10-13 18:59:13 +00007121 u32 tmp;
7122 u16 prt;
Santwona Behera2d96cf82009-02-20 00:58:45 -08007123
Harvey Harrisoned440e82010-10-13 18:59:13 +00007124 tmp = (tp->key[3] & TCAM_V4KEY3_SADDR) >> TCAM_V4KEY3_SADDR_SHIFT;
7125 fsp->h_u.tcp_ip4_spec.ip4src = cpu_to_be32(tmp);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007126
Harvey Harrisoned440e82010-10-13 18:59:13 +00007127 tmp = (tp->key[3] & TCAM_V4KEY3_DADDR) >> TCAM_V4KEY3_DADDR_SHIFT;
7128 fsp->h_u.tcp_ip4_spec.ip4dst = cpu_to_be32(tmp);
7129
7130 tmp = (tp->key_mask[3] & TCAM_V4KEY3_SADDR) >> TCAM_V4KEY3_SADDR_SHIFT;
7131 fsp->m_u.tcp_ip4_spec.ip4src = cpu_to_be32(tmp);
7132
7133 tmp = (tp->key_mask[3] & TCAM_V4KEY3_DADDR) >> TCAM_V4KEY3_DADDR_SHIFT;
7134 fsp->m_u.tcp_ip4_spec.ip4dst = cpu_to_be32(tmp);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007135
7136 fsp->h_u.tcp_ip4_spec.tos = (tp->key[2] & TCAM_V4KEY2_TOS) >>
7137 TCAM_V4KEY2_TOS_SHIFT;
7138 fsp->m_u.tcp_ip4_spec.tos = (tp->key_mask[2] & TCAM_V4KEY2_TOS) >>
7139 TCAM_V4KEY2_TOS_SHIFT;
7140
7141 switch (fsp->flow_type) {
7142 case TCP_V4_FLOW:
7143 case UDP_V4_FLOW:
7144 case SCTP_V4_FLOW:
Harvey Harrisoned440e82010-10-13 18:59:13 +00007145 prt = ((tp->key[2] & TCAM_V4KEY2_PORT_SPI) >>
7146 TCAM_V4KEY2_PORT_SPI_SHIFT) >> 16;
7147 fsp->h_u.tcp_ip4_spec.psrc = cpu_to_be16(prt);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007148
Harvey Harrisoned440e82010-10-13 18:59:13 +00007149 prt = ((tp->key[2] & TCAM_V4KEY2_PORT_SPI) >>
7150 TCAM_V4KEY2_PORT_SPI_SHIFT) & 0xffff;
7151 fsp->h_u.tcp_ip4_spec.pdst = cpu_to_be16(prt);
7152
7153 prt = ((tp->key_mask[2] & TCAM_V4KEY2_PORT_SPI) >>
7154 TCAM_V4KEY2_PORT_SPI_SHIFT) >> 16;
7155 fsp->m_u.tcp_ip4_spec.psrc = cpu_to_be16(prt);
7156
7157 prt = ((tp->key_mask[2] & TCAM_V4KEY2_PORT_SPI) >>
7158 TCAM_V4KEY2_PORT_SPI_SHIFT) & 0xffff;
7159 fsp->m_u.tcp_ip4_spec.pdst = cpu_to_be16(prt);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007160 break;
7161 case AH_V4_FLOW:
7162 case ESP_V4_FLOW:
Harvey Harrisoned440e82010-10-13 18:59:13 +00007163 tmp = (tp->key[2] & TCAM_V4KEY2_PORT_SPI) >>
Santwona Behera2d96cf82009-02-20 00:58:45 -08007164 TCAM_V4KEY2_PORT_SPI_SHIFT;
Harvey Harrisoned440e82010-10-13 18:59:13 +00007165 fsp->h_u.ah_ip4_spec.spi = cpu_to_be32(tmp);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007166
Harvey Harrisoned440e82010-10-13 18:59:13 +00007167 tmp = (tp->key_mask[2] & TCAM_V4KEY2_PORT_SPI) >>
7168 TCAM_V4KEY2_PORT_SPI_SHIFT;
7169 fsp->m_u.ah_ip4_spec.spi = cpu_to_be32(tmp);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007170 break;
7171 case IP_USER_FLOW:
Harvey Harrisoned440e82010-10-13 18:59:13 +00007172 tmp = (tp->key[2] & TCAM_V4KEY2_PORT_SPI) >>
Santwona Behera2d96cf82009-02-20 00:58:45 -08007173 TCAM_V4KEY2_PORT_SPI_SHIFT;
Harvey Harrisoned440e82010-10-13 18:59:13 +00007174 fsp->h_u.usr_ip4_spec.l4_4_bytes = cpu_to_be32(tmp);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007175
Harvey Harrisoned440e82010-10-13 18:59:13 +00007176 tmp = (tp->key_mask[2] & TCAM_V4KEY2_PORT_SPI) >>
7177 TCAM_V4KEY2_PORT_SPI_SHIFT;
7178 fsp->m_u.usr_ip4_spec.l4_4_bytes = cpu_to_be32(tmp);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007179
7180 fsp->h_u.usr_ip4_spec.proto =
7181 (tp->key[2] & TCAM_V4KEY2_PROTO) >>
7182 TCAM_V4KEY2_PROTO_SHIFT;
7183 fsp->m_u.usr_ip4_spec.proto =
7184 (tp->key_mask[2] & TCAM_V4KEY2_PROTO) >>
7185 TCAM_V4KEY2_PROTO_SHIFT;
7186
7187 fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4;
7188 break;
7189 default:
7190 break;
7191 }
7192}
7193
7194static int niu_get_ethtool_tcam_entry(struct niu *np,
7195 struct ethtool_rxnfc *nfc)
7196{
7197 struct niu_parent *parent = np->parent;
7198 struct niu_tcam_entry *tp;
7199 struct ethtool_rx_flow_spec *fsp = &nfc->fs;
7200 u16 idx;
7201 u64 class;
7202 int ret = 0;
7203
7204 idx = tcam_get_index(np, (u16)nfc->fs.location);
7205
7206 tp = &parent->tcam[idx];
7207 if (!tp->valid) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08007208 netdev_info(np->dev, "niu%d: entry [%d] invalid for idx[%d]\n",
7209 parent->index, (u16)nfc->fs.location, idx);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007210 return -EINVAL;
7211 }
7212
7213 /* fill the flow spec entry */
7214 class = (tp->key[0] & TCAM_V4KEY0_CLASS_CODE) >>
7215 TCAM_V4KEY0_CLASS_CODE_SHIFT;
7216 ret = niu_class_to_ethflow(class, &fsp->flow_type);
7217
7218 if (ret < 0) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08007219 netdev_info(np->dev, "niu%d: niu_class_to_ethflow failed\n",
7220 parent->index);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007221 ret = -EINVAL;
7222 goto out;
7223 }
7224
7225 if (fsp->flow_type == AH_V4_FLOW || fsp->flow_type == AH_V6_FLOW) {
7226 u32 proto = (tp->key[2] & TCAM_V4KEY2_PROTO) >>
7227 TCAM_V4KEY2_PROTO_SHIFT;
7228 if (proto == IPPROTO_ESP) {
7229 if (fsp->flow_type == AH_V4_FLOW)
7230 fsp->flow_type = ESP_V4_FLOW;
7231 else
7232 fsp->flow_type = ESP_V6_FLOW;
7233 }
7234 }
7235
7236 switch (fsp->flow_type) {
7237 case TCP_V4_FLOW:
7238 case UDP_V4_FLOW:
7239 case SCTP_V4_FLOW:
7240 case AH_V4_FLOW:
7241 case ESP_V4_FLOW:
7242 niu_get_ip4fs_from_tcam_key(tp, fsp);
7243 break;
7244 case TCP_V6_FLOW:
7245 case UDP_V6_FLOW:
7246 case SCTP_V6_FLOW:
7247 case AH_V6_FLOW:
7248 case ESP_V6_FLOW:
7249 /* Not yet implemented */
7250 ret = -EINVAL;
7251 break;
7252 case IP_USER_FLOW:
7253 niu_get_ip4fs_from_tcam_key(tp, fsp);
7254 break;
7255 default:
7256 ret = -EINVAL;
7257 break;
7258 }
7259
7260 if (ret < 0)
7261 goto out;
7262
7263 if (tp->assoc_data & TCAM_ASSOCDATA_DISC)
7264 fsp->ring_cookie = RX_CLS_FLOW_DISC;
7265 else
7266 fsp->ring_cookie = (tp->assoc_data & TCAM_ASSOCDATA_OFFSET) >>
7267 TCAM_ASSOCDATA_OFFSET_SHIFT;
7268
7269 /* put the tcam size here */
7270 nfc->data = tcam_get_size(np);
7271out:
7272 return ret;
7273}
7274
7275static int niu_get_ethtool_tcam_all(struct niu *np,
7276 struct ethtool_rxnfc *nfc,
7277 u32 *rule_locs)
7278{
7279 struct niu_parent *parent = np->parent;
7280 struct niu_tcam_entry *tp;
7281 int i, idx, cnt;
Santwona Behera2d96cf82009-02-20 00:58:45 -08007282 unsigned long flags;
Ben Hutchingsee9c5cf2010-09-07 04:35:19 +00007283 int ret = 0;
Santwona Behera2d96cf82009-02-20 00:58:45 -08007284
7285 /* put the tcam size here */
7286 nfc->data = tcam_get_size(np);
7287
7288 niu_lock_parent(np, flags);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007289 for (cnt = 0, i = 0; i < nfc->data; i++) {
7290 idx = tcam_get_index(np, i);
7291 tp = &parent->tcam[idx];
7292 if (!tp->valid)
7293 continue;
Ben Hutchingsee9c5cf2010-09-07 04:35:19 +00007294 if (cnt == nfc->rule_cnt) {
7295 ret = -EMSGSIZE;
7296 break;
7297 }
Santwona Behera2d96cf82009-02-20 00:58:45 -08007298 rule_locs[cnt] = i;
7299 cnt++;
7300 }
7301 niu_unlock_parent(np, flags);
7302
Ben Hutchingsee9c5cf2010-09-07 04:35:19 +00007303 return ret;
Santwona Behera2d96cf82009-02-20 00:58:45 -08007304}
7305
7306static int niu_get_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
7307 void *rule_locs)
Santwona Beherab4653e92008-07-02 03:49:11 -07007308{
7309 struct niu *np = netdev_priv(dev);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007310 int ret = 0;
7311
7312 switch (cmd->cmd) {
7313 case ETHTOOL_GRXFH:
7314 ret = niu_get_hash_opts(np, cmd);
7315 break;
7316 case ETHTOOL_GRXRINGS:
7317 cmd->data = np->num_rx_rings;
7318 break;
7319 case ETHTOOL_GRXCLSRLCNT:
7320 cmd->rule_cnt = tcam_get_valid_entry_cnt(np);
7321 break;
7322 case ETHTOOL_GRXCLSRULE:
7323 ret = niu_get_ethtool_tcam_entry(np, cmd);
7324 break;
7325 case ETHTOOL_GRXCLSRLALL:
7326 ret = niu_get_ethtool_tcam_all(np, cmd, (u32 *)rule_locs);
7327 break;
7328 default:
7329 ret = -EINVAL;
7330 break;
7331 }
7332
7333 return ret;
7334}
7335
7336static int niu_set_hash_opts(struct niu *np, struct ethtool_rxnfc *nfc)
7337{
Santwona Beherab4653e92008-07-02 03:49:11 -07007338 u64 class;
7339 u64 flow_key = 0;
7340 unsigned long flags;
7341
Santwona Behera2d96cf82009-02-20 00:58:45 -08007342 if (!niu_ethflow_to_class(nfc->flow_type, &class))
Santwona Beherab4653e92008-07-02 03:49:11 -07007343 return -EINVAL;
7344
7345 if (class < CLASS_CODE_USER_PROG1 ||
7346 class > CLASS_CODE_SCTP_IPV6)
7347 return -EINVAL;
7348
Santwona Behera2d96cf82009-02-20 00:58:45 -08007349 if (nfc->data & RXH_DISCARD) {
Santwona Beherab4653e92008-07-02 03:49:11 -07007350 niu_lock_parent(np, flags);
7351 flow_key = np->parent->tcam_key[class -
7352 CLASS_CODE_USER_PROG1];
7353 flow_key |= TCAM_KEY_DISC;
7354 nw64(TCAM_KEY(class - CLASS_CODE_USER_PROG1), flow_key);
7355 np->parent->tcam_key[class - CLASS_CODE_USER_PROG1] = flow_key;
7356 niu_unlock_parent(np, flags);
7357 return 0;
7358 } else {
7359 /* Discard was set before, but is not set now */
7360 if (np->parent->tcam_key[class - CLASS_CODE_USER_PROG1] &
7361 TCAM_KEY_DISC) {
7362 niu_lock_parent(np, flags);
7363 flow_key = np->parent->tcam_key[class -
7364 CLASS_CODE_USER_PROG1];
7365 flow_key &= ~TCAM_KEY_DISC;
7366 nw64(TCAM_KEY(class - CLASS_CODE_USER_PROG1),
7367 flow_key);
7368 np->parent->tcam_key[class - CLASS_CODE_USER_PROG1] =
7369 flow_key;
7370 niu_unlock_parent(np, flags);
7371 }
7372 }
7373
Santwona Behera2d96cf82009-02-20 00:58:45 -08007374 if (!niu_ethflow_to_flowkey(nfc->data, &flow_key))
Santwona Beherab4653e92008-07-02 03:49:11 -07007375 return -EINVAL;
7376
7377 niu_lock_parent(np, flags);
7378 nw64(FLOW_KEY(class - CLASS_CODE_USER_PROG1), flow_key);
7379 np->parent->flow_key[class - CLASS_CODE_USER_PROG1] = flow_key;
7380 niu_unlock_parent(np, flags);
7381
7382 return 0;
7383}
7384
Santwona Behera2d96cf82009-02-20 00:58:45 -08007385static void niu_get_tcamkey_from_ip4fs(struct ethtool_rx_flow_spec *fsp,
7386 struct niu_tcam_entry *tp,
7387 int l2_rdc_tab, u64 class)
7388{
7389 u8 pid = 0;
7390 u32 sip, dip, sipm, dipm, spi, spim;
7391 u16 sport, dport, spm, dpm;
7392
7393 sip = be32_to_cpu(fsp->h_u.tcp_ip4_spec.ip4src);
7394 sipm = be32_to_cpu(fsp->m_u.tcp_ip4_spec.ip4src);
7395 dip = be32_to_cpu(fsp->h_u.tcp_ip4_spec.ip4dst);
7396 dipm = be32_to_cpu(fsp->m_u.tcp_ip4_spec.ip4dst);
7397
7398 tp->key[0] = class << TCAM_V4KEY0_CLASS_CODE_SHIFT;
7399 tp->key_mask[0] = TCAM_V4KEY0_CLASS_CODE;
7400 tp->key[1] = (u64)l2_rdc_tab << TCAM_V4KEY1_L2RDCNUM_SHIFT;
7401 tp->key_mask[1] = TCAM_V4KEY1_L2RDCNUM;
7402
7403 tp->key[3] = (u64)sip << TCAM_V4KEY3_SADDR_SHIFT;
7404 tp->key[3] |= dip;
7405
7406 tp->key_mask[3] = (u64)sipm << TCAM_V4KEY3_SADDR_SHIFT;
7407 tp->key_mask[3] |= dipm;
7408
7409 tp->key[2] |= ((u64)fsp->h_u.tcp_ip4_spec.tos <<
7410 TCAM_V4KEY2_TOS_SHIFT);
7411 tp->key_mask[2] |= ((u64)fsp->m_u.tcp_ip4_spec.tos <<
7412 TCAM_V4KEY2_TOS_SHIFT);
7413 switch (fsp->flow_type) {
7414 case TCP_V4_FLOW:
7415 case UDP_V4_FLOW:
7416 case SCTP_V4_FLOW:
7417 sport = be16_to_cpu(fsp->h_u.tcp_ip4_spec.psrc);
7418 spm = be16_to_cpu(fsp->m_u.tcp_ip4_spec.psrc);
7419 dport = be16_to_cpu(fsp->h_u.tcp_ip4_spec.pdst);
7420 dpm = be16_to_cpu(fsp->m_u.tcp_ip4_spec.pdst);
7421
7422 tp->key[2] |= (((u64)sport << 16) | dport);
7423 tp->key_mask[2] |= (((u64)spm << 16) | dpm);
7424 niu_ethflow_to_l3proto(fsp->flow_type, &pid);
7425 break;
7426 case AH_V4_FLOW:
7427 case ESP_V4_FLOW:
7428 spi = be32_to_cpu(fsp->h_u.ah_ip4_spec.spi);
7429 spim = be32_to_cpu(fsp->m_u.ah_ip4_spec.spi);
7430
7431 tp->key[2] |= spi;
7432 tp->key_mask[2] |= spim;
7433 niu_ethflow_to_l3proto(fsp->flow_type, &pid);
7434 break;
7435 case IP_USER_FLOW:
7436 spi = be32_to_cpu(fsp->h_u.usr_ip4_spec.l4_4_bytes);
7437 spim = be32_to_cpu(fsp->m_u.usr_ip4_spec.l4_4_bytes);
7438
7439 tp->key[2] |= spi;
7440 tp->key_mask[2] |= spim;
7441 pid = fsp->h_u.usr_ip4_spec.proto;
7442 break;
7443 default:
7444 break;
7445 }
7446
7447 tp->key[2] |= ((u64)pid << TCAM_V4KEY2_PROTO_SHIFT);
7448 if (pid) {
7449 tp->key_mask[2] |= TCAM_V4KEY2_PROTO;
7450 }
7451}
7452
7453static int niu_add_ethtool_tcam_entry(struct niu *np,
7454 struct ethtool_rxnfc *nfc)
7455{
7456 struct niu_parent *parent = np->parent;
7457 struct niu_tcam_entry *tp;
7458 struct ethtool_rx_flow_spec *fsp = &nfc->fs;
7459 struct niu_rdc_tables *rdc_table = &parent->rdc_group_cfg[np->port];
7460 int l2_rdc_table = rdc_table->first_table_num;
7461 u16 idx;
7462 u64 class;
7463 unsigned long flags;
7464 int err, ret;
7465
7466 ret = 0;
7467
7468 idx = nfc->fs.location;
7469 if (idx >= tcam_get_size(np))
7470 return -EINVAL;
7471
7472 if (fsp->flow_type == IP_USER_FLOW) {
7473 int i;
7474 int add_usr_cls = 0;
Santwona Behera2d96cf82009-02-20 00:58:45 -08007475 struct ethtool_usrip4_spec *uspec = &fsp->h_u.usr_ip4_spec;
7476 struct ethtool_usrip4_spec *umask = &fsp->m_u.usr_ip4_spec;
7477
Ben Hutchingse0de7c92010-09-14 09:13:08 +00007478 if (uspec->ip_ver != ETH_RX_NFC_IP4)
7479 return -EINVAL;
7480
Santwona Behera2d96cf82009-02-20 00:58:45 -08007481 niu_lock_parent(np, flags);
7482
7483 for (i = 0; i < NIU_L3_PROG_CLS; i++) {
7484 if (parent->l3_cls[i]) {
7485 if (uspec->proto == parent->l3_cls_pid[i]) {
7486 class = parent->l3_cls[i];
7487 parent->l3_cls_refcnt[i]++;
7488 add_usr_cls = 1;
7489 break;
7490 }
7491 } else {
7492 /* Program new user IP class */
7493 switch (i) {
7494 case 0:
7495 class = CLASS_CODE_USER_PROG1;
7496 break;
7497 case 1:
7498 class = CLASS_CODE_USER_PROG2;
7499 break;
7500 case 2:
7501 class = CLASS_CODE_USER_PROG3;
7502 break;
7503 case 3:
7504 class = CLASS_CODE_USER_PROG4;
7505 break;
7506 default:
7507 break;
7508 }
Ben Hutchingse0de7c92010-09-14 09:13:08 +00007509 ret = tcam_user_ip_class_set(np, class, 0,
Santwona Behera2d96cf82009-02-20 00:58:45 -08007510 uspec->proto,
7511 uspec->tos,
7512 umask->tos);
7513 if (ret)
7514 goto out;
7515
7516 ret = tcam_user_ip_class_enable(np, class, 1);
7517 if (ret)
7518 goto out;
7519 parent->l3_cls[i] = class;
7520 parent->l3_cls_pid[i] = uspec->proto;
7521 parent->l3_cls_refcnt[i]++;
7522 add_usr_cls = 1;
7523 break;
7524 }
7525 }
7526 if (!add_usr_cls) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08007527 netdev_info(np->dev, "niu%d: %s(): Could not find/insert class for pid %d\n",
7528 parent->index, __func__, uspec->proto);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007529 ret = -EINVAL;
7530 goto out;
7531 }
7532 niu_unlock_parent(np, flags);
7533 } else {
7534 if (!niu_ethflow_to_class(fsp->flow_type, &class)) {
7535 return -EINVAL;
7536 }
7537 }
7538
7539 niu_lock_parent(np, flags);
7540
7541 idx = tcam_get_index(np, idx);
7542 tp = &parent->tcam[idx];
7543
7544 memset(tp, 0, sizeof(*tp));
7545
7546 /* fill in the tcam key and mask */
7547 switch (fsp->flow_type) {
7548 case TCP_V4_FLOW:
7549 case UDP_V4_FLOW:
7550 case SCTP_V4_FLOW:
7551 case AH_V4_FLOW:
7552 case ESP_V4_FLOW:
7553 niu_get_tcamkey_from_ip4fs(fsp, tp, l2_rdc_table, class);
7554 break;
7555 case TCP_V6_FLOW:
7556 case UDP_V6_FLOW:
7557 case SCTP_V6_FLOW:
7558 case AH_V6_FLOW:
7559 case ESP_V6_FLOW:
7560 /* Not yet implemented */
Joe Perchesf10a1f22010-02-14 22:40:39 -08007561 netdev_info(np->dev, "niu%d: In %s(): flow %d for IPv6 not implemented\n",
7562 parent->index, __func__, fsp->flow_type);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007563 ret = -EINVAL;
7564 goto out;
7565 case IP_USER_FLOW:
Ben Hutchingse0de7c92010-09-14 09:13:08 +00007566 niu_get_tcamkey_from_ip4fs(fsp, tp, l2_rdc_table, class);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007567 break;
7568 default:
Joe Perchesf10a1f22010-02-14 22:40:39 -08007569 netdev_info(np->dev, "niu%d: In %s(): Unknown flow type %d\n",
7570 parent->index, __func__, fsp->flow_type);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007571 ret = -EINVAL;
7572 goto out;
7573 }
7574
7575 /* fill in the assoc data */
7576 if (fsp->ring_cookie == RX_CLS_FLOW_DISC) {
7577 tp->assoc_data = TCAM_ASSOCDATA_DISC;
7578 } else {
7579 if (fsp->ring_cookie >= np->num_rx_rings) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08007580 netdev_info(np->dev, "niu%d: In %s(): Invalid RX ring %lld\n",
7581 parent->index, __func__,
7582 (long long)fsp->ring_cookie);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007583 ret = -EINVAL;
7584 goto out;
7585 }
7586 tp->assoc_data = (TCAM_ASSOCDATA_TRES_USE_OFFSET |
7587 (fsp->ring_cookie <<
7588 TCAM_ASSOCDATA_OFFSET_SHIFT));
7589 }
7590
7591 err = tcam_write(np, idx, tp->key, tp->key_mask);
7592 if (err) {
7593 ret = -EINVAL;
7594 goto out;
7595 }
7596 err = tcam_assoc_write(np, idx, tp->assoc_data);
7597 if (err) {
7598 ret = -EINVAL;
7599 goto out;
7600 }
7601
7602 /* validate the entry */
7603 tp->valid = 1;
7604 np->clas.tcam_valid_entries++;
7605out:
7606 niu_unlock_parent(np, flags);
7607
7608 return ret;
7609}
7610
7611static int niu_del_ethtool_tcam_entry(struct niu *np, u32 loc)
7612{
7613 struct niu_parent *parent = np->parent;
7614 struct niu_tcam_entry *tp;
7615 u16 idx;
7616 unsigned long flags;
7617 u64 class;
7618 int ret = 0;
7619
7620 if (loc >= tcam_get_size(np))
7621 return -EINVAL;
7622
7623 niu_lock_parent(np, flags);
7624
7625 idx = tcam_get_index(np, loc);
7626 tp = &parent->tcam[idx];
7627
7628 /* if the entry is of a user defined class, then update*/
7629 class = (tp->key[0] & TCAM_V4KEY0_CLASS_CODE) >>
7630 TCAM_V4KEY0_CLASS_CODE_SHIFT;
7631
7632 if (class >= CLASS_CODE_USER_PROG1 && class <= CLASS_CODE_USER_PROG4) {
7633 int i;
7634 for (i = 0; i < NIU_L3_PROG_CLS; i++) {
7635 if (parent->l3_cls[i] == class) {
7636 parent->l3_cls_refcnt[i]--;
7637 if (!parent->l3_cls_refcnt[i]) {
7638 /* disable class */
7639 ret = tcam_user_ip_class_enable(np,
7640 class,
7641 0);
7642 if (ret)
7643 goto out;
7644 parent->l3_cls[i] = 0;
7645 parent->l3_cls_pid[i] = 0;
7646 }
7647 break;
7648 }
7649 }
7650 if (i == NIU_L3_PROG_CLS) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08007651 netdev_info(np->dev, "niu%d: In %s(): Usr class 0x%llx not found\n",
7652 parent->index, __func__,
7653 (unsigned long long)class);
Santwona Behera2d96cf82009-02-20 00:58:45 -08007654 ret = -EINVAL;
7655 goto out;
7656 }
7657 }
7658
7659 ret = tcam_flush(np, idx);
7660 if (ret)
7661 goto out;
7662
7663 /* invalidate the entry */
7664 tp->valid = 0;
7665 np->clas.tcam_valid_entries--;
7666out:
7667 niu_unlock_parent(np, flags);
7668
7669 return ret;
7670}
7671
7672static int niu_set_nfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
7673{
7674 struct niu *np = netdev_priv(dev);
7675 int ret = 0;
7676
7677 switch (cmd->cmd) {
7678 case ETHTOOL_SRXFH:
7679 ret = niu_set_hash_opts(np, cmd);
7680 break;
7681 case ETHTOOL_SRXCLSRLINS:
7682 ret = niu_add_ethtool_tcam_entry(np, cmd);
7683 break;
7684 case ETHTOOL_SRXCLSRLDEL:
7685 ret = niu_del_ethtool_tcam_entry(np, cmd->fs.location);
7686 break;
7687 default:
7688 ret = -EINVAL;
7689 break;
7690 }
7691
7692 return ret;
7693}
7694
David S. Millera3138df2007-10-09 01:54:01 -07007695static const struct {
7696 const char string[ETH_GSTRING_LEN];
7697} niu_xmac_stat_keys[] = {
7698 { "tx_frames" },
7699 { "tx_bytes" },
7700 { "tx_fifo_errors" },
7701 { "tx_overflow_errors" },
7702 { "tx_max_pkt_size_errors" },
7703 { "tx_underflow_errors" },
7704 { "rx_local_faults" },
7705 { "rx_remote_faults" },
7706 { "rx_link_faults" },
7707 { "rx_align_errors" },
7708 { "rx_frags" },
7709 { "rx_mcasts" },
7710 { "rx_bcasts" },
7711 { "rx_hist_cnt1" },
7712 { "rx_hist_cnt2" },
7713 { "rx_hist_cnt3" },
7714 { "rx_hist_cnt4" },
7715 { "rx_hist_cnt5" },
7716 { "rx_hist_cnt6" },
7717 { "rx_hist_cnt7" },
7718 { "rx_octets" },
7719 { "rx_code_violations" },
7720 { "rx_len_errors" },
7721 { "rx_crc_errors" },
7722 { "rx_underflows" },
7723 { "rx_overflows" },
7724 { "pause_off_state" },
7725 { "pause_on_state" },
7726 { "pause_received" },
7727};
7728
7729#define NUM_XMAC_STAT_KEYS ARRAY_SIZE(niu_xmac_stat_keys)
7730
7731static const struct {
7732 const char string[ETH_GSTRING_LEN];
7733} niu_bmac_stat_keys[] = {
7734 { "tx_underflow_errors" },
7735 { "tx_max_pkt_size_errors" },
7736 { "tx_bytes" },
7737 { "tx_frames" },
7738 { "rx_overflows" },
7739 { "rx_frames" },
7740 { "rx_align_errors" },
7741 { "rx_crc_errors" },
7742 { "rx_len_errors" },
7743 { "pause_off_state" },
7744 { "pause_on_state" },
7745 { "pause_received" },
7746};
7747
7748#define NUM_BMAC_STAT_KEYS ARRAY_SIZE(niu_bmac_stat_keys)
7749
7750static const struct {
7751 const char string[ETH_GSTRING_LEN];
7752} niu_rxchan_stat_keys[] = {
7753 { "rx_channel" },
7754 { "rx_packets" },
7755 { "rx_bytes" },
7756 { "rx_dropped" },
7757 { "rx_errors" },
7758};
7759
7760#define NUM_RXCHAN_STAT_KEYS ARRAY_SIZE(niu_rxchan_stat_keys)
7761
7762static const struct {
7763 const char string[ETH_GSTRING_LEN];
7764} niu_txchan_stat_keys[] = {
7765 { "tx_channel" },
7766 { "tx_packets" },
7767 { "tx_bytes" },
7768 { "tx_errors" },
7769};
7770
7771#define NUM_TXCHAN_STAT_KEYS ARRAY_SIZE(niu_txchan_stat_keys)
7772
7773static void niu_get_strings(struct net_device *dev, u32 stringset, u8 *data)
7774{
7775 struct niu *np = netdev_priv(dev);
7776 int i;
7777
7778 if (stringset != ETH_SS_STATS)
7779 return;
7780
7781 if (np->flags & NIU_FLAGS_XMAC) {
7782 memcpy(data, niu_xmac_stat_keys,
7783 sizeof(niu_xmac_stat_keys));
7784 data += sizeof(niu_xmac_stat_keys);
7785 } else {
7786 memcpy(data, niu_bmac_stat_keys,
7787 sizeof(niu_bmac_stat_keys));
7788 data += sizeof(niu_bmac_stat_keys);
7789 }
7790 for (i = 0; i < np->num_rx_rings; i++) {
7791 memcpy(data, niu_rxchan_stat_keys,
7792 sizeof(niu_rxchan_stat_keys));
7793 data += sizeof(niu_rxchan_stat_keys);
7794 }
7795 for (i = 0; i < np->num_tx_rings; i++) {
7796 memcpy(data, niu_txchan_stat_keys,
7797 sizeof(niu_txchan_stat_keys));
7798 data += sizeof(niu_txchan_stat_keys);
7799 }
7800}
7801
Ben Hutchings15f0a392009-10-01 11:58:24 +00007802static int niu_get_sset_count(struct net_device *dev, int stringset)
David S. Millera3138df2007-10-09 01:54:01 -07007803{
7804 struct niu *np = netdev_priv(dev);
7805
Ben Hutchings15f0a392009-10-01 11:58:24 +00007806 if (stringset != ETH_SS_STATS)
7807 return -EINVAL;
7808
Eric Dumazet807540b2010-09-23 05:40:09 +00007809 return (np->flags & NIU_FLAGS_XMAC ?
David S. Millera3138df2007-10-09 01:54:01 -07007810 NUM_XMAC_STAT_KEYS :
7811 NUM_BMAC_STAT_KEYS) +
7812 (np->num_rx_rings * NUM_RXCHAN_STAT_KEYS) +
Eric Dumazet807540b2010-09-23 05:40:09 +00007813 (np->num_tx_rings * NUM_TXCHAN_STAT_KEYS);
David S. Millera3138df2007-10-09 01:54:01 -07007814}
7815
7816static void niu_get_ethtool_stats(struct net_device *dev,
7817 struct ethtool_stats *stats, u64 *data)
7818{
7819 struct niu *np = netdev_priv(dev);
7820 int i;
7821
7822 niu_sync_mac_stats(np);
7823 if (np->flags & NIU_FLAGS_XMAC) {
7824 memcpy(data, &np->mac_stats.xmac,
7825 sizeof(struct niu_xmac_stats));
7826 data += (sizeof(struct niu_xmac_stats) / sizeof(u64));
7827 } else {
7828 memcpy(data, &np->mac_stats.bmac,
7829 sizeof(struct niu_bmac_stats));
7830 data += (sizeof(struct niu_bmac_stats) / sizeof(u64));
7831 }
7832 for (i = 0; i < np->num_rx_rings; i++) {
7833 struct rx_ring_info *rp = &np->rx_rings[i];
7834
Jesper Dangaard Brouerb8a606b2008-12-18 19:50:49 -08007835 niu_sync_rx_discard_stats(np, rp, 0);
7836
David S. Millera3138df2007-10-09 01:54:01 -07007837 data[0] = rp->rx_channel;
7838 data[1] = rp->rx_packets;
7839 data[2] = rp->rx_bytes;
7840 data[3] = rp->rx_dropped;
7841 data[4] = rp->rx_errors;
7842 data += 5;
7843 }
7844 for (i = 0; i < np->num_tx_rings; i++) {
7845 struct tx_ring_info *rp = &np->tx_rings[i];
7846
7847 data[0] = rp->tx_channel;
7848 data[1] = rp->tx_packets;
7849 data[2] = rp->tx_bytes;
7850 data[3] = rp->tx_errors;
7851 data += 4;
7852 }
7853}
7854
7855static u64 niu_led_state_save(struct niu *np)
7856{
7857 if (np->flags & NIU_FLAGS_XMAC)
7858 return nr64_mac(XMAC_CONFIG);
7859 else
7860 return nr64_mac(BMAC_XIF_CONFIG);
7861}
7862
7863static void niu_led_state_restore(struct niu *np, u64 val)
7864{
7865 if (np->flags & NIU_FLAGS_XMAC)
7866 nw64_mac(XMAC_CONFIG, val);
7867 else
7868 nw64_mac(BMAC_XIF_CONFIG, val);
7869}
7870
7871static void niu_force_led(struct niu *np, int on)
7872{
7873 u64 val, reg, bit;
7874
7875 if (np->flags & NIU_FLAGS_XMAC) {
7876 reg = XMAC_CONFIG;
7877 bit = XMAC_CONFIG_FORCE_LED_ON;
7878 } else {
7879 reg = BMAC_XIF_CONFIG;
7880 bit = BMAC_XIF_CONFIG_LINK_LED;
7881 }
7882
7883 val = nr64_mac(reg);
7884 if (on)
7885 val |= bit;
7886 else
7887 val &= ~bit;
7888 nw64_mac(reg, val);
7889}
7890
7891static int niu_phys_id(struct net_device *dev, u32 data)
7892{
7893 struct niu *np = netdev_priv(dev);
7894 u64 orig_led_state;
7895 int i;
7896
7897 if (!netif_running(dev))
7898 return -EAGAIN;
7899
7900 if (data == 0)
7901 data = 2;
7902
7903 orig_led_state = niu_led_state_save(np);
7904 for (i = 0; i < (data * 2); i++) {
7905 int on = ((i % 2) == 0);
7906
7907 niu_force_led(np, on);
7908
7909 if (msleep_interruptible(500))
7910 break;
7911 }
7912 niu_led_state_restore(np, orig_led_state);
7913
7914 return 0;
7915}
7916
David S. Miller3cfa8562010-04-22 15:48:17 -07007917static int niu_set_flags(struct net_device *dev, u32 data)
7918{
Ben Hutchings1437ce32010-06-30 02:44:32 +00007919 return ethtool_op_set_flags(dev, data, ETH_FLAG_RXHASH);
David S. Miller3cfa8562010-04-22 15:48:17 -07007920}
7921
David S. Millera3138df2007-10-09 01:54:01 -07007922static const struct ethtool_ops niu_ethtool_ops = {
7923 .get_drvinfo = niu_get_drvinfo,
7924 .get_link = ethtool_op_get_link,
7925 .get_msglevel = niu_get_msglevel,
7926 .set_msglevel = niu_set_msglevel,
Constantin Baranov38bb045d2009-02-18 17:53:20 -08007927 .nway_reset = niu_nway_reset,
David S. Millera3138df2007-10-09 01:54:01 -07007928 .get_eeprom_len = niu_get_eeprom_len,
7929 .get_eeprom = niu_get_eeprom,
7930 .get_settings = niu_get_settings,
7931 .set_settings = niu_set_settings,
7932 .get_strings = niu_get_strings,
Ben Hutchings15f0a392009-10-01 11:58:24 +00007933 .get_sset_count = niu_get_sset_count,
David S. Millera3138df2007-10-09 01:54:01 -07007934 .get_ethtool_stats = niu_get_ethtool_stats,
7935 .phys_id = niu_phys_id,
Santwona Behera2d96cf82009-02-20 00:58:45 -08007936 .get_rxnfc = niu_get_nfc,
7937 .set_rxnfc = niu_set_nfc,
David S. Miller3cfa8562010-04-22 15:48:17 -07007938 .set_flags = niu_set_flags,
7939 .get_flags = ethtool_op_get_flags,
David S. Millera3138df2007-10-09 01:54:01 -07007940};
7941
7942static int niu_ldg_assign_ldn(struct niu *np, struct niu_parent *parent,
7943 int ldg, int ldn)
7944{
7945 if (ldg < NIU_LDG_MIN || ldg > NIU_LDG_MAX)
7946 return -EINVAL;
7947 if (ldn < 0 || ldn > LDN_MAX)
7948 return -EINVAL;
7949
7950 parent->ldg_map[ldn] = ldg;
7951
7952 if (np->parent->plat_type == PLAT_TYPE_NIU) {
7953 /* On N2 NIU, the ldn-->ldg assignments are setup and fixed by
7954 * the firmware, and we're not supposed to change them.
7955 * Validate the mapping, because if it's wrong we probably
7956 * won't get any interrupts and that's painful to debug.
7957 */
7958 if (nr64(LDG_NUM(ldn)) != ldg) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08007959 dev_err(np->device, "Port %u, mis-matched LDG assignment for ldn %d, should be %d is %llu\n",
David S. Millera3138df2007-10-09 01:54:01 -07007960 np->port, ldn, ldg,
7961 (unsigned long long) nr64(LDG_NUM(ldn)));
7962 return -EINVAL;
7963 }
7964 } else
7965 nw64(LDG_NUM(ldn), ldg);
7966
7967 return 0;
7968}
7969
7970static int niu_set_ldg_timer_res(struct niu *np, int res)
7971{
7972 if (res < 0 || res > LDG_TIMER_RES_VAL)
7973 return -EINVAL;
7974
7975
7976 nw64(LDG_TIMER_RES, res);
7977
7978 return 0;
7979}
7980
7981static int niu_set_ldg_sid(struct niu *np, int ldg, int func, int vector)
7982{
7983 if ((ldg < NIU_LDG_MIN || ldg > NIU_LDG_MAX) ||
7984 (func < 0 || func > 3) ||
7985 (vector < 0 || vector > 0x1f))
7986 return -EINVAL;
7987
7988 nw64(SID(ldg), (func << SID_FUNC_SHIFT) | vector);
7989
7990 return 0;
7991}
7992
7993static int __devinit niu_pci_eeprom_read(struct niu *np, u32 addr)
7994{
7995 u64 frame, frame_base = (ESPC_PIO_STAT_READ_START |
7996 (addr << ESPC_PIO_STAT_ADDR_SHIFT));
7997 int limit;
7998
7999 if (addr > (ESPC_PIO_STAT_ADDR >> ESPC_PIO_STAT_ADDR_SHIFT))
8000 return -EINVAL;
8001
8002 frame = frame_base;
8003 nw64(ESPC_PIO_STAT, frame);
8004 limit = 64;
8005 do {
8006 udelay(5);
8007 frame = nr64(ESPC_PIO_STAT);
8008 if (frame & ESPC_PIO_STAT_READ_END)
8009 break;
8010 } while (limit--);
8011 if (!(frame & ESPC_PIO_STAT_READ_END)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008012 dev_err(np->device, "EEPROM read timeout frame[%llx]\n",
David S. Millera3138df2007-10-09 01:54:01 -07008013 (unsigned long long) frame);
8014 return -ENODEV;
8015 }
8016
8017 frame = frame_base;
8018 nw64(ESPC_PIO_STAT, frame);
8019 limit = 64;
8020 do {
8021 udelay(5);
8022 frame = nr64(ESPC_PIO_STAT);
8023 if (frame & ESPC_PIO_STAT_READ_END)
8024 break;
8025 } while (limit--);
8026 if (!(frame & ESPC_PIO_STAT_READ_END)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008027 dev_err(np->device, "EEPROM read timeout frame[%llx]\n",
David S. Millera3138df2007-10-09 01:54:01 -07008028 (unsigned long long) frame);
8029 return -ENODEV;
8030 }
8031
8032 frame = nr64(ESPC_PIO_STAT);
8033 return (frame & ESPC_PIO_STAT_DATA) >> ESPC_PIO_STAT_DATA_SHIFT;
8034}
8035
8036static int __devinit niu_pci_eeprom_read16(struct niu *np, u32 off)
8037{
8038 int err = niu_pci_eeprom_read(np, off);
8039 u16 val;
8040
8041 if (err < 0)
8042 return err;
8043 val = (err << 8);
8044 err = niu_pci_eeprom_read(np, off + 1);
8045 if (err < 0)
8046 return err;
8047 val |= (err & 0xff);
8048
8049 return val;
8050}
8051
8052static int __devinit niu_pci_eeprom_read16_swp(struct niu *np, u32 off)
8053{
8054 int err = niu_pci_eeprom_read(np, off);
8055 u16 val;
8056
8057 if (err < 0)
8058 return err;
8059
8060 val = (err & 0xff);
8061 err = niu_pci_eeprom_read(np, off + 1);
8062 if (err < 0)
8063 return err;
8064
8065 val |= (err & 0xff) << 8;
8066
8067 return val;
8068}
8069
8070static int __devinit niu_pci_vpd_get_propname(struct niu *np,
8071 u32 off,
8072 char *namebuf,
8073 int namebuf_len)
8074{
8075 int i;
8076
8077 for (i = 0; i < namebuf_len; i++) {
8078 int err = niu_pci_eeprom_read(np, off + i);
8079 if (err < 0)
8080 return err;
8081 *namebuf++ = err;
8082 if (!err)
8083 break;
8084 }
8085 if (i >= namebuf_len)
8086 return -EINVAL;
8087
8088 return i + 1;
8089}
8090
8091static void __devinit niu_vpd_parse_version(struct niu *np)
8092{
8093 struct niu_vpd *vpd = &np->vpd;
8094 int len = strlen(vpd->version) + 1;
8095 const char *s = vpd->version;
8096 int i;
8097
8098 for (i = 0; i < len - 5; i++) {
Joe Perches9ea2bda2009-11-09 18:05:45 +00008099 if (!strncmp(s + i, "FCode ", 6))
David S. Millera3138df2007-10-09 01:54:01 -07008100 break;
8101 }
8102 if (i >= len - 5)
8103 return;
8104
8105 s += i + 5;
8106 sscanf(s, "%d.%d", &vpd->fcode_major, &vpd->fcode_minor);
8107
Joe Perchesf10a1f22010-02-14 22:40:39 -08008108 netif_printk(np, probe, KERN_DEBUG, np->dev,
8109 "VPD_SCAN: FCODE major(%d) minor(%d)\n",
8110 vpd->fcode_major, vpd->fcode_minor);
David S. Millera3138df2007-10-09 01:54:01 -07008111 if (vpd->fcode_major > NIU_VPD_MIN_MAJOR ||
8112 (vpd->fcode_major == NIU_VPD_MIN_MAJOR &&
8113 vpd->fcode_minor >= NIU_VPD_MIN_MINOR))
8114 np->flags |= NIU_FLAGS_VPD_VALID;
8115}
8116
8117/* ESPC_PIO_EN_ENABLE must be set */
8118static int __devinit niu_pci_vpd_scan_props(struct niu *np,
8119 u32 start, u32 end)
8120{
8121 unsigned int found_mask = 0;
8122#define FOUND_MASK_MODEL 0x00000001
8123#define FOUND_MASK_BMODEL 0x00000002
8124#define FOUND_MASK_VERS 0x00000004
8125#define FOUND_MASK_MAC 0x00000008
8126#define FOUND_MASK_NMAC 0x00000010
8127#define FOUND_MASK_PHY 0x00000020
8128#define FOUND_MASK_ALL 0x0000003f
8129
Joe Perchesf10a1f22010-02-14 22:40:39 -08008130 netif_printk(np, probe, KERN_DEBUG, np->dev,
8131 "VPD_SCAN: start[%x] end[%x]\n", start, end);
David S. Millera3138df2007-10-09 01:54:01 -07008132 while (start < end) {
8133 int len, err, instance, type, prop_len;
8134 char namebuf[64];
8135 u8 *prop_buf;
8136 int max_len;
8137
8138 if (found_mask == FOUND_MASK_ALL) {
8139 niu_vpd_parse_version(np);
8140 return 1;
8141 }
8142
8143 err = niu_pci_eeprom_read(np, start + 2);
8144 if (err < 0)
8145 return err;
8146 len = err;
8147 start += 3;
8148
8149 instance = niu_pci_eeprom_read(np, start);
8150 type = niu_pci_eeprom_read(np, start + 3);
8151 prop_len = niu_pci_eeprom_read(np, start + 4);
8152 err = niu_pci_vpd_get_propname(np, start + 5, namebuf, 64);
8153 if (err < 0)
8154 return err;
8155
8156 prop_buf = NULL;
8157 max_len = 0;
8158 if (!strcmp(namebuf, "model")) {
8159 prop_buf = np->vpd.model;
8160 max_len = NIU_VPD_MODEL_MAX;
8161 found_mask |= FOUND_MASK_MODEL;
8162 } else if (!strcmp(namebuf, "board-model")) {
8163 prop_buf = np->vpd.board_model;
8164 max_len = NIU_VPD_BD_MODEL_MAX;
8165 found_mask |= FOUND_MASK_BMODEL;
8166 } else if (!strcmp(namebuf, "version")) {
8167 prop_buf = np->vpd.version;
8168 max_len = NIU_VPD_VERSION_MAX;
8169 found_mask |= FOUND_MASK_VERS;
8170 } else if (!strcmp(namebuf, "local-mac-address")) {
8171 prop_buf = np->vpd.local_mac;
8172 max_len = ETH_ALEN;
8173 found_mask |= FOUND_MASK_MAC;
8174 } else if (!strcmp(namebuf, "num-mac-addresses")) {
8175 prop_buf = &np->vpd.mac_num;
8176 max_len = 1;
8177 found_mask |= FOUND_MASK_NMAC;
8178 } else if (!strcmp(namebuf, "phy-type")) {
8179 prop_buf = np->vpd.phy_type;
8180 max_len = NIU_VPD_PHY_TYPE_MAX;
8181 found_mask |= FOUND_MASK_PHY;
8182 }
8183
8184 if (max_len && prop_len > max_len) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008185 dev_err(np->device, "Property '%s' length (%d) is too long\n", namebuf, prop_len);
David S. Millera3138df2007-10-09 01:54:01 -07008186 return -EINVAL;
8187 }
8188
8189 if (prop_buf) {
8190 u32 off = start + 5 + err;
8191 int i;
8192
Joe Perchesf10a1f22010-02-14 22:40:39 -08008193 netif_printk(np, probe, KERN_DEBUG, np->dev,
8194 "VPD_SCAN: Reading in property [%s] len[%d]\n",
8195 namebuf, prop_len);
David S. Millera3138df2007-10-09 01:54:01 -07008196 for (i = 0; i < prop_len; i++)
8197 *prop_buf++ = niu_pci_eeprom_read(np, off + i);
8198 }
8199
8200 start += len;
8201 }
8202
8203 return 0;
8204}
8205
8206/* ESPC_PIO_EN_ENABLE must be set */
8207static void __devinit niu_pci_vpd_fetch(struct niu *np, u32 start)
8208{
8209 u32 offset;
8210 int err;
8211
8212 err = niu_pci_eeprom_read16_swp(np, start + 1);
8213 if (err < 0)
8214 return;
8215
8216 offset = err + 3;
8217
8218 while (start + offset < ESPC_EEPROM_SIZE) {
8219 u32 here = start + offset;
8220 u32 end;
8221
8222 err = niu_pci_eeprom_read(np, here);
8223 if (err != 0x90)
8224 return;
8225
8226 err = niu_pci_eeprom_read16_swp(np, here + 1);
8227 if (err < 0)
8228 return;
8229
8230 here = start + offset + 3;
8231 end = start + offset + err;
8232
8233 offset += err;
8234
8235 err = niu_pci_vpd_scan_props(np, here, end);
8236 if (err < 0 || err == 1)
8237 return;
8238 }
8239}
8240
8241/* ESPC_PIO_EN_ENABLE must be set */
8242static u32 __devinit niu_pci_vpd_offset(struct niu *np)
8243{
8244 u32 start = 0, end = ESPC_EEPROM_SIZE, ret;
8245 int err;
8246
8247 while (start < end) {
8248 ret = start;
8249
8250 /* ROM header signature? */
8251 err = niu_pci_eeprom_read16(np, start + 0);
8252 if (err != 0x55aa)
8253 return 0;
8254
8255 /* Apply offset to PCI data structure. */
8256 err = niu_pci_eeprom_read16(np, start + 23);
8257 if (err < 0)
8258 return 0;
8259 start += err;
8260
8261 /* Check for "PCIR" signature. */
8262 err = niu_pci_eeprom_read16(np, start + 0);
8263 if (err != 0x5043)
8264 return 0;
8265 err = niu_pci_eeprom_read16(np, start + 2);
8266 if (err != 0x4952)
8267 return 0;
8268
8269 /* Check for OBP image type. */
8270 err = niu_pci_eeprom_read(np, start + 20);
8271 if (err < 0)
8272 return 0;
8273 if (err != 0x01) {
8274 err = niu_pci_eeprom_read(np, ret + 2);
8275 if (err < 0)
8276 return 0;
8277
8278 start = ret + (err * 512);
8279 continue;
8280 }
8281
8282 err = niu_pci_eeprom_read16_swp(np, start + 8);
8283 if (err < 0)
8284 return err;
8285 ret += err;
8286
8287 err = niu_pci_eeprom_read(np, ret + 0);
8288 if (err != 0x82)
8289 return 0;
8290
8291 return ret;
8292 }
8293
8294 return 0;
8295}
8296
8297static int __devinit niu_phy_type_prop_decode(struct niu *np,
8298 const char *phy_prop)
8299{
8300 if (!strcmp(phy_prop, "mif")) {
8301 /* 1G copper, MII */
8302 np->flags &= ~(NIU_FLAGS_FIBER |
8303 NIU_FLAGS_10G);
8304 np->mac_xcvr = MAC_XCVR_MII;
8305 } else if (!strcmp(phy_prop, "xgf")) {
8306 /* 10G fiber, XPCS */
8307 np->flags |= (NIU_FLAGS_10G |
8308 NIU_FLAGS_FIBER);
8309 np->mac_xcvr = MAC_XCVR_XPCS;
8310 } else if (!strcmp(phy_prop, "pcs")) {
8311 /* 1G fiber, PCS */
8312 np->flags &= ~NIU_FLAGS_10G;
8313 np->flags |= NIU_FLAGS_FIBER;
8314 np->mac_xcvr = MAC_XCVR_PCS;
8315 } else if (!strcmp(phy_prop, "xgc")) {
8316 /* 10G copper, XPCS */
8317 np->flags |= NIU_FLAGS_10G;
8318 np->flags &= ~NIU_FLAGS_FIBER;
8319 np->mac_xcvr = MAC_XCVR_XPCS;
Santwona Beherae3e081e2008-11-14 14:44:08 -08008320 } else if (!strcmp(phy_prop, "xgsd") || !strcmp(phy_prop, "gsd")) {
8321 /* 10G Serdes or 1G Serdes, default to 10G */
8322 np->flags |= NIU_FLAGS_10G;
8323 np->flags &= ~NIU_FLAGS_FIBER;
8324 np->flags |= NIU_FLAGS_XCVR_SERDES;
8325 np->mac_xcvr = MAC_XCVR_XPCS;
David S. Millera3138df2007-10-09 01:54:01 -07008326 } else {
8327 return -EINVAL;
8328 }
8329 return 0;
8330}
8331
Matheos Worku7f7c4072008-04-24 21:02:37 -07008332static int niu_pci_vpd_get_nports(struct niu *np)
8333{
8334 int ports = 0;
8335
Matheos Workuf9af8572008-05-12 03:10:59 -07008336 if ((!strcmp(np->vpd.model, NIU_QGC_LP_MDL_STR)) ||
8337 (!strcmp(np->vpd.model, NIU_QGC_PEM_MDL_STR)) ||
8338 (!strcmp(np->vpd.model, NIU_MARAMBA_MDL_STR)) ||
8339 (!strcmp(np->vpd.model, NIU_KIMI_MDL_STR)) ||
8340 (!strcmp(np->vpd.model, NIU_ALONSO_MDL_STR))) {
Matheos Worku7f7c4072008-04-24 21:02:37 -07008341 ports = 4;
Matheos Workuf9af8572008-05-12 03:10:59 -07008342 } else if ((!strcmp(np->vpd.model, NIU_2XGF_LP_MDL_STR)) ||
8343 (!strcmp(np->vpd.model, NIU_2XGF_PEM_MDL_STR)) ||
8344 (!strcmp(np->vpd.model, NIU_FOXXY_MDL_STR)) ||
8345 (!strcmp(np->vpd.model, NIU_2XGF_MRVL_MDL_STR))) {
Matheos Worku7f7c4072008-04-24 21:02:37 -07008346 ports = 2;
8347 }
8348
8349 return ports;
8350}
8351
David S. Millera3138df2007-10-09 01:54:01 -07008352static void __devinit niu_pci_vpd_validate(struct niu *np)
8353{
8354 struct net_device *dev = np->dev;
8355 struct niu_vpd *vpd = &np->vpd;
8356 u8 val8;
8357
8358 if (!is_valid_ether_addr(&vpd->local_mac[0])) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008359 dev_err(np->device, "VPD MAC invalid, falling back to SPROM\n");
David S. Millera3138df2007-10-09 01:54:01 -07008360
8361 np->flags &= ~NIU_FLAGS_VPD_VALID;
8362 return;
8363 }
8364
Matheos Workuf9af8572008-05-12 03:10:59 -07008365 if (!strcmp(np->vpd.model, NIU_ALONSO_MDL_STR) ||
8366 !strcmp(np->vpd.model, NIU_KIMI_MDL_STR)) {
Matheos Worku5fbd7e22008-02-28 21:25:43 -08008367 np->flags |= NIU_FLAGS_10G;
8368 np->flags &= ~NIU_FLAGS_FIBER;
8369 np->flags |= NIU_FLAGS_XCVR_SERDES;
8370 np->mac_xcvr = MAC_XCVR_PCS;
8371 if (np->port > 1) {
8372 np->flags |= NIU_FLAGS_FIBER;
8373 np->flags &= ~NIU_FLAGS_10G;
8374 }
8375 if (np->flags & NIU_FLAGS_10G)
Joe Perchesf10a1f22010-02-14 22:40:39 -08008376 np->mac_xcvr = MAC_XCVR_XPCS;
Matheos Workuf9af8572008-05-12 03:10:59 -07008377 } else if (!strcmp(np->vpd.model, NIU_FOXXY_MDL_STR)) {
Matheos Workua5d6ab52008-04-24 21:09:20 -07008378 np->flags |= (NIU_FLAGS_10G | NIU_FLAGS_FIBER |
8379 NIU_FLAGS_HOTPLUG_PHY);
Matheos Worku5fbd7e22008-02-28 21:25:43 -08008380 } else if (niu_phy_type_prop_decode(np, np->vpd.phy_type)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008381 dev_err(np->device, "Illegal phy string [%s]\n",
David S. Millera3138df2007-10-09 01:54:01 -07008382 np->vpd.phy_type);
Joe Perchesf10a1f22010-02-14 22:40:39 -08008383 dev_err(np->device, "Falling back to SPROM\n");
David S. Millera3138df2007-10-09 01:54:01 -07008384 np->flags &= ~NIU_FLAGS_VPD_VALID;
8385 return;
8386 }
8387
8388 memcpy(dev->perm_addr, vpd->local_mac, ETH_ALEN);
8389
8390 val8 = dev->perm_addr[5];
8391 dev->perm_addr[5] += np->port;
8392 if (dev->perm_addr[5] < val8)
8393 dev->perm_addr[4]++;
8394
8395 memcpy(dev->dev_addr, dev->perm_addr, dev->addr_len);
8396}
8397
8398static int __devinit niu_pci_probe_sprom(struct niu *np)
8399{
8400 struct net_device *dev = np->dev;
8401 int len, i;
8402 u64 val, sum;
8403 u8 val8;
8404
8405 val = (nr64(ESPC_VER_IMGSZ) & ESPC_VER_IMGSZ_IMGSZ);
8406 val >>= ESPC_VER_IMGSZ_IMGSZ_SHIFT;
8407 len = val / 4;
8408
8409 np->eeprom_len = len;
8410
Joe Perchesf10a1f22010-02-14 22:40:39 -08008411 netif_printk(np, probe, KERN_DEBUG, np->dev,
8412 "SPROM: Image size %llu\n", (unsigned long long)val);
David S. Millera3138df2007-10-09 01:54:01 -07008413
8414 sum = 0;
8415 for (i = 0; i < len; i++) {
8416 val = nr64(ESPC_NCR(i));
8417 sum += (val >> 0) & 0xff;
8418 sum += (val >> 8) & 0xff;
8419 sum += (val >> 16) & 0xff;
8420 sum += (val >> 24) & 0xff;
8421 }
Joe Perchesf10a1f22010-02-14 22:40:39 -08008422 netif_printk(np, probe, KERN_DEBUG, np->dev,
8423 "SPROM: Checksum %x\n", (int)(sum & 0xff));
David S. Millera3138df2007-10-09 01:54:01 -07008424 if ((sum & 0xff) != 0xab) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008425 dev_err(np->device, "Bad SPROM checksum (%x, should be 0xab)\n", (int)(sum & 0xff));
David S. Millera3138df2007-10-09 01:54:01 -07008426 return -EINVAL;
8427 }
8428
8429 val = nr64(ESPC_PHY_TYPE);
8430 switch (np->port) {
8431 case 0:
Al Viroa9d41192007-10-15 01:42:31 -07008432 val8 = (val & ESPC_PHY_TYPE_PORT0) >>
David S. Millera3138df2007-10-09 01:54:01 -07008433 ESPC_PHY_TYPE_PORT0_SHIFT;
8434 break;
8435 case 1:
Al Viroa9d41192007-10-15 01:42:31 -07008436 val8 = (val & ESPC_PHY_TYPE_PORT1) >>
David S. Millera3138df2007-10-09 01:54:01 -07008437 ESPC_PHY_TYPE_PORT1_SHIFT;
8438 break;
8439 case 2:
Al Viroa9d41192007-10-15 01:42:31 -07008440 val8 = (val & ESPC_PHY_TYPE_PORT2) >>
David S. Millera3138df2007-10-09 01:54:01 -07008441 ESPC_PHY_TYPE_PORT2_SHIFT;
8442 break;
8443 case 3:
Al Viroa9d41192007-10-15 01:42:31 -07008444 val8 = (val & ESPC_PHY_TYPE_PORT3) >>
David S. Millera3138df2007-10-09 01:54:01 -07008445 ESPC_PHY_TYPE_PORT3_SHIFT;
8446 break;
8447 default:
Joe Perchesf10a1f22010-02-14 22:40:39 -08008448 dev_err(np->device, "Bogus port number %u\n",
David S. Millera3138df2007-10-09 01:54:01 -07008449 np->port);
8450 return -EINVAL;
8451 }
Joe Perchesf10a1f22010-02-14 22:40:39 -08008452 netif_printk(np, probe, KERN_DEBUG, np->dev,
8453 "SPROM: PHY type %x\n", val8);
David S. Millera3138df2007-10-09 01:54:01 -07008454
Al Viroa9d41192007-10-15 01:42:31 -07008455 switch (val8) {
David S. Millera3138df2007-10-09 01:54:01 -07008456 case ESPC_PHY_TYPE_1G_COPPER:
8457 /* 1G copper, MII */
8458 np->flags &= ~(NIU_FLAGS_FIBER |
8459 NIU_FLAGS_10G);
8460 np->mac_xcvr = MAC_XCVR_MII;
8461 break;
8462
8463 case ESPC_PHY_TYPE_1G_FIBER:
8464 /* 1G fiber, PCS */
8465 np->flags &= ~NIU_FLAGS_10G;
8466 np->flags |= NIU_FLAGS_FIBER;
8467 np->mac_xcvr = MAC_XCVR_PCS;
8468 break;
8469
8470 case ESPC_PHY_TYPE_10G_COPPER:
8471 /* 10G copper, XPCS */
8472 np->flags |= NIU_FLAGS_10G;
8473 np->flags &= ~NIU_FLAGS_FIBER;
8474 np->mac_xcvr = MAC_XCVR_XPCS;
8475 break;
8476
8477 case ESPC_PHY_TYPE_10G_FIBER:
8478 /* 10G fiber, XPCS */
8479 np->flags |= (NIU_FLAGS_10G |
8480 NIU_FLAGS_FIBER);
8481 np->mac_xcvr = MAC_XCVR_XPCS;
8482 break;
8483
8484 default:
Joe Perchesf10a1f22010-02-14 22:40:39 -08008485 dev_err(np->device, "Bogus SPROM phy type %u\n", val8);
David S. Millera3138df2007-10-09 01:54:01 -07008486 return -EINVAL;
8487 }
8488
8489 val = nr64(ESPC_MAC_ADDR0);
Joe Perchesf10a1f22010-02-14 22:40:39 -08008490 netif_printk(np, probe, KERN_DEBUG, np->dev,
8491 "SPROM: MAC_ADDR0[%08llx]\n", (unsigned long long)val);
David S. Millera3138df2007-10-09 01:54:01 -07008492 dev->perm_addr[0] = (val >> 0) & 0xff;
8493 dev->perm_addr[1] = (val >> 8) & 0xff;
8494 dev->perm_addr[2] = (val >> 16) & 0xff;
8495 dev->perm_addr[3] = (val >> 24) & 0xff;
8496
8497 val = nr64(ESPC_MAC_ADDR1);
Joe Perchesf10a1f22010-02-14 22:40:39 -08008498 netif_printk(np, probe, KERN_DEBUG, np->dev,
8499 "SPROM: MAC_ADDR1[%08llx]\n", (unsigned long long)val);
David S. Millera3138df2007-10-09 01:54:01 -07008500 dev->perm_addr[4] = (val >> 0) & 0xff;
8501 dev->perm_addr[5] = (val >> 8) & 0xff;
8502
8503 if (!is_valid_ether_addr(&dev->perm_addr[0])) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008504 dev_err(np->device, "SPROM MAC address invalid [ %pM ]\n",
8505 dev->perm_addr);
David S. Millera3138df2007-10-09 01:54:01 -07008506 return -EINVAL;
8507 }
8508
8509 val8 = dev->perm_addr[5];
8510 dev->perm_addr[5] += np->port;
8511 if (dev->perm_addr[5] < val8)
8512 dev->perm_addr[4]++;
8513
8514 memcpy(dev->dev_addr, dev->perm_addr, dev->addr_len);
8515
8516 val = nr64(ESPC_MOD_STR_LEN);
Joe Perchesf10a1f22010-02-14 22:40:39 -08008517 netif_printk(np, probe, KERN_DEBUG, np->dev,
8518 "SPROM: MOD_STR_LEN[%llu]\n", (unsigned long long)val);
David S. Millere6a5fdf2007-10-15 01:36:24 -07008519 if (val >= 8 * 4)
David S. Millera3138df2007-10-09 01:54:01 -07008520 return -EINVAL;
8521
8522 for (i = 0; i < val; i += 4) {
8523 u64 tmp = nr64(ESPC_NCR(5 + (i / 4)));
8524
8525 np->vpd.model[i + 3] = (tmp >> 0) & 0xff;
8526 np->vpd.model[i + 2] = (tmp >> 8) & 0xff;
8527 np->vpd.model[i + 1] = (tmp >> 16) & 0xff;
8528 np->vpd.model[i + 0] = (tmp >> 24) & 0xff;
8529 }
8530 np->vpd.model[val] = '\0';
8531
8532 val = nr64(ESPC_BD_MOD_STR_LEN);
Joe Perchesf10a1f22010-02-14 22:40:39 -08008533 netif_printk(np, probe, KERN_DEBUG, np->dev,
8534 "SPROM: BD_MOD_STR_LEN[%llu]\n", (unsigned long long)val);
David S. Millere6a5fdf2007-10-15 01:36:24 -07008535 if (val >= 4 * 4)
David S. Millera3138df2007-10-09 01:54:01 -07008536 return -EINVAL;
8537
8538 for (i = 0; i < val; i += 4) {
8539 u64 tmp = nr64(ESPC_NCR(14 + (i / 4)));
8540
8541 np->vpd.board_model[i + 3] = (tmp >> 0) & 0xff;
8542 np->vpd.board_model[i + 2] = (tmp >> 8) & 0xff;
8543 np->vpd.board_model[i + 1] = (tmp >> 16) & 0xff;
8544 np->vpd.board_model[i + 0] = (tmp >> 24) & 0xff;
8545 }
8546 np->vpd.board_model[val] = '\0';
8547
8548 np->vpd.mac_num =
8549 nr64(ESPC_NUM_PORTS_MACS) & ESPC_NUM_PORTS_MACS_VAL;
Joe Perchesf10a1f22010-02-14 22:40:39 -08008550 netif_printk(np, probe, KERN_DEBUG, np->dev,
8551 "SPROM: NUM_PORTS_MACS[%d]\n", np->vpd.mac_num);
David S. Millera3138df2007-10-09 01:54:01 -07008552
8553 return 0;
8554}
8555
8556static int __devinit niu_get_and_validate_port(struct niu *np)
8557{
8558 struct niu_parent *parent = np->parent;
8559
8560 if (np->port <= 1)
8561 np->flags |= NIU_FLAGS_XMAC;
8562
8563 if (!parent->num_ports) {
8564 if (parent->plat_type == PLAT_TYPE_NIU) {
8565 parent->num_ports = 2;
8566 } else {
Matheos Worku7f7c4072008-04-24 21:02:37 -07008567 parent->num_ports = niu_pci_vpd_get_nports(np);
8568 if (!parent->num_ports) {
8569 /* Fall back to SPROM as last resort.
8570 * This will fail on most cards.
8571 */
8572 parent->num_ports = nr64(ESPC_NUM_PORTS_MACS) &
8573 ESPC_NUM_PORTS_MACS_VAL;
David S. Millera3138df2007-10-09 01:54:01 -07008574
David S. Millerbe0c0072008-05-04 01:34:31 -07008575 /* All of the current probing methods fail on
8576 * Maramba on-board parts.
8577 */
Matheos Worku7f7c4072008-04-24 21:02:37 -07008578 if (!parent->num_ports)
David S. Millerbe0c0072008-05-04 01:34:31 -07008579 parent->num_ports = 4;
Matheos Worku7f7c4072008-04-24 21:02:37 -07008580 }
David S. Millera3138df2007-10-09 01:54:01 -07008581 }
8582 }
8583
David S. Millera3138df2007-10-09 01:54:01 -07008584 if (np->port >= parent->num_ports)
8585 return -ENODEV;
8586
8587 return 0;
8588}
8589
8590static int __devinit phy_record(struct niu_parent *parent,
8591 struct phy_probe_info *p,
8592 int dev_id_1, int dev_id_2, u8 phy_port,
8593 int type)
8594{
8595 u32 id = (dev_id_1 << 16) | dev_id_2;
8596 u8 idx;
8597
8598 if (dev_id_1 < 0 || dev_id_2 < 0)
8599 return 0;
8600 if (type == PHY_TYPE_PMA_PMD || type == PHY_TYPE_PCS) {
Mirko Lindnerb0de8e42008-01-10 02:12:44 -08008601 if (((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_BCM8704) &&
Matheos Workua5d6ab52008-04-24 21:09:20 -07008602 ((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_MRVL88X2011) &&
8603 ((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_BCM8706))
David S. Millera3138df2007-10-09 01:54:01 -07008604 return 0;
8605 } else {
8606 if ((id & NIU_PHY_ID_MASK) != NIU_PHY_ID_BCM5464R)
8607 return 0;
8608 }
8609
8610 pr_info("niu%d: Found PHY %08x type %s at phy_port %u\n",
8611 parent->index, id,
Joe Perchesf10a1f22010-02-14 22:40:39 -08008612 type == PHY_TYPE_PMA_PMD ? "PMA/PMD" :
8613 type == PHY_TYPE_PCS ? "PCS" : "MII",
David S. Millera3138df2007-10-09 01:54:01 -07008614 phy_port);
8615
8616 if (p->cur[type] >= NIU_MAX_PORTS) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008617 pr_err("Too many PHY ports\n");
David S. Millera3138df2007-10-09 01:54:01 -07008618 return -EINVAL;
8619 }
8620 idx = p->cur[type];
8621 p->phy_id[type][idx] = id;
8622 p->phy_port[type][idx] = phy_port;
8623 p->cur[type] = idx + 1;
8624 return 0;
8625}
8626
8627static int __devinit port_has_10g(struct phy_probe_info *p, int port)
8628{
8629 int i;
8630
8631 for (i = 0; i < p->cur[PHY_TYPE_PMA_PMD]; i++) {
8632 if (p->phy_port[PHY_TYPE_PMA_PMD][i] == port)
8633 return 1;
8634 }
8635 for (i = 0; i < p->cur[PHY_TYPE_PCS]; i++) {
8636 if (p->phy_port[PHY_TYPE_PCS][i] == port)
8637 return 1;
8638 }
8639
8640 return 0;
8641}
8642
8643static int __devinit count_10g_ports(struct phy_probe_info *p, int *lowest)
8644{
8645 int port, cnt;
8646
8647 cnt = 0;
8648 *lowest = 32;
8649 for (port = 8; port < 32; port++) {
8650 if (port_has_10g(p, port)) {
8651 if (!cnt)
8652 *lowest = port;
8653 cnt++;
8654 }
8655 }
8656
8657 return cnt;
8658}
8659
8660static int __devinit count_1g_ports(struct phy_probe_info *p, int *lowest)
8661{
8662 *lowest = 32;
8663 if (p->cur[PHY_TYPE_MII])
8664 *lowest = p->phy_port[PHY_TYPE_MII][0];
8665
8666 return p->cur[PHY_TYPE_MII];
8667}
8668
8669static void __devinit niu_n2_divide_channels(struct niu_parent *parent)
8670{
8671 int num_ports = parent->num_ports;
8672 int i;
8673
8674 for (i = 0; i < num_ports; i++) {
8675 parent->rxchan_per_port[i] = (16 / num_ports);
8676 parent->txchan_per_port[i] = (16 / num_ports);
8677
Joe Perchesf10a1f22010-02-14 22:40:39 -08008678 pr_info("niu%d: Port %u [%u RX chans] [%u TX chans]\n",
David S. Millera3138df2007-10-09 01:54:01 -07008679 parent->index, i,
8680 parent->rxchan_per_port[i],
8681 parent->txchan_per_port[i]);
8682 }
8683}
8684
8685static void __devinit niu_divide_channels(struct niu_parent *parent,
8686 int num_10g, int num_1g)
8687{
8688 int num_ports = parent->num_ports;
8689 int rx_chans_per_10g, rx_chans_per_1g;
8690 int tx_chans_per_10g, tx_chans_per_1g;
8691 int i, tot_rx, tot_tx;
8692
8693 if (!num_10g || !num_1g) {
8694 rx_chans_per_10g = rx_chans_per_1g =
8695 (NIU_NUM_RXCHAN / num_ports);
8696 tx_chans_per_10g = tx_chans_per_1g =
8697 (NIU_NUM_TXCHAN / num_ports);
8698 } else {
8699 rx_chans_per_1g = NIU_NUM_RXCHAN / 8;
8700 rx_chans_per_10g = (NIU_NUM_RXCHAN -
8701 (rx_chans_per_1g * num_1g)) /
8702 num_10g;
8703
8704 tx_chans_per_1g = NIU_NUM_TXCHAN / 6;
8705 tx_chans_per_10g = (NIU_NUM_TXCHAN -
8706 (tx_chans_per_1g * num_1g)) /
8707 num_10g;
8708 }
8709
8710 tot_rx = tot_tx = 0;
8711 for (i = 0; i < num_ports; i++) {
8712 int type = phy_decode(parent->port_phy, i);
8713
8714 if (type == PORT_TYPE_10G) {
8715 parent->rxchan_per_port[i] = rx_chans_per_10g;
8716 parent->txchan_per_port[i] = tx_chans_per_10g;
8717 } else {
8718 parent->rxchan_per_port[i] = rx_chans_per_1g;
8719 parent->txchan_per_port[i] = tx_chans_per_1g;
8720 }
Joe Perchesf10a1f22010-02-14 22:40:39 -08008721 pr_info("niu%d: Port %u [%u RX chans] [%u TX chans]\n",
David S. Millera3138df2007-10-09 01:54:01 -07008722 parent->index, i,
8723 parent->rxchan_per_port[i],
8724 parent->txchan_per_port[i]);
8725 tot_rx += parent->rxchan_per_port[i];
8726 tot_tx += parent->txchan_per_port[i];
8727 }
8728
8729 if (tot_rx > NIU_NUM_RXCHAN) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008730 pr_err("niu%d: Too many RX channels (%d), resetting to one per port\n",
David S. Millera3138df2007-10-09 01:54:01 -07008731 parent->index, tot_rx);
8732 for (i = 0; i < num_ports; i++)
8733 parent->rxchan_per_port[i] = 1;
8734 }
8735 if (tot_tx > NIU_NUM_TXCHAN) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008736 pr_err("niu%d: Too many TX channels (%d), resetting to one per port\n",
David S. Millera3138df2007-10-09 01:54:01 -07008737 parent->index, tot_tx);
8738 for (i = 0; i < num_ports; i++)
8739 parent->txchan_per_port[i] = 1;
8740 }
8741 if (tot_rx < NIU_NUM_RXCHAN || tot_tx < NIU_NUM_TXCHAN) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08008742 pr_warning("niu%d: Driver bug, wasted channels, RX[%d] TX[%d]\n",
8743 parent->index, tot_rx, tot_tx);
David S. Millera3138df2007-10-09 01:54:01 -07008744 }
8745}
8746
8747static void __devinit niu_divide_rdc_groups(struct niu_parent *parent,
8748 int num_10g, int num_1g)
8749{
8750 int i, num_ports = parent->num_ports;
8751 int rdc_group, rdc_groups_per_port;
8752 int rdc_channel_base;
8753
8754 rdc_group = 0;
8755 rdc_groups_per_port = NIU_NUM_RDC_TABLES / num_ports;
8756
8757 rdc_channel_base = 0;
8758
8759 for (i = 0; i < num_ports; i++) {
8760 struct niu_rdc_tables *tp = &parent->rdc_group_cfg[i];
8761 int grp, num_channels = parent->rxchan_per_port[i];
8762 int this_channel_offset;
8763
8764 tp->first_table_num = rdc_group;
8765 tp->num_tables = rdc_groups_per_port;
8766 this_channel_offset = 0;
8767 for (grp = 0; grp < tp->num_tables; grp++) {
8768 struct rdc_table *rt = &tp->tables[grp];
8769 int slot;
8770
Joe Perchesf10a1f22010-02-14 22:40:39 -08008771 pr_info("niu%d: Port %d RDC tbl(%d) [ ",
David S. Millera3138df2007-10-09 01:54:01 -07008772 parent->index, i, tp->first_table_num + grp);
8773 for (slot = 0; slot < NIU_RDC_TABLE_SLOTS; slot++) {
8774 rt->rxdma_channel[slot] =
8775 rdc_channel_base + this_channel_offset;
8776
Joe Perchesf10a1f22010-02-14 22:40:39 -08008777 pr_cont("%d ", rt->rxdma_channel[slot]);
David S. Millera3138df2007-10-09 01:54:01 -07008778
8779 if (++this_channel_offset == num_channels)
8780 this_channel_offset = 0;
8781 }
Joe Perchesf10a1f22010-02-14 22:40:39 -08008782 pr_cont("]\n");
David S. Millera3138df2007-10-09 01:54:01 -07008783 }
8784
8785 parent->rdc_default[i] = rdc_channel_base;
8786
8787 rdc_channel_base += num_channels;
8788 rdc_group += rdc_groups_per_port;
8789 }
8790}
8791
8792static int __devinit fill_phy_probe_info(struct niu *np,
8793 struct niu_parent *parent,
8794 struct phy_probe_info *info)
8795{
8796 unsigned long flags;
8797 int port, err;
8798
8799 memset(info, 0, sizeof(*info));
8800
8801 /* Port 0 to 7 are reserved for onboard Serdes, probe the rest. */
8802 niu_lock_parent(np, flags);
8803 err = 0;
8804 for (port = 8; port < 32; port++) {
8805 int dev_id_1, dev_id_2;
8806
8807 dev_id_1 = mdio_read(np, port,
8808 NIU_PMA_PMD_DEV_ADDR, MII_PHYSID1);
8809 dev_id_2 = mdio_read(np, port,
8810 NIU_PMA_PMD_DEV_ADDR, MII_PHYSID2);
8811 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
8812 PHY_TYPE_PMA_PMD);
8813 if (err)
8814 break;
8815 dev_id_1 = mdio_read(np, port,
8816 NIU_PCS_DEV_ADDR, MII_PHYSID1);
8817 dev_id_2 = mdio_read(np, port,
8818 NIU_PCS_DEV_ADDR, MII_PHYSID2);
8819 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
8820 PHY_TYPE_PCS);
8821 if (err)
8822 break;
8823 dev_id_1 = mii_read(np, port, MII_PHYSID1);
8824 dev_id_2 = mii_read(np, port, MII_PHYSID2);
8825 err = phy_record(parent, info, dev_id_1, dev_id_2, port,
8826 PHY_TYPE_MII);
8827 if (err)
8828 break;
8829 }
8830 niu_unlock_parent(np, flags);
8831
8832 return err;
8833}
8834
8835static int __devinit walk_phys(struct niu *np, struct niu_parent *parent)
8836{
8837 struct phy_probe_info *info = &parent->phy_probe_info;
8838 int lowest_10g, lowest_1g;
8839 int num_10g, num_1g;
8840 u32 val;
8841 int err;
8842
Santwona Beherae3e081e2008-11-14 14:44:08 -08008843 num_10g = num_1g = 0;
8844
Matheos Workuf9af8572008-05-12 03:10:59 -07008845 if (!strcmp(np->vpd.model, NIU_ALONSO_MDL_STR) ||
8846 !strcmp(np->vpd.model, NIU_KIMI_MDL_STR)) {
Matheos Worku5fbd7e22008-02-28 21:25:43 -08008847 num_10g = 0;
8848 num_1g = 2;
8849 parent->plat_type = PLAT_TYPE_ATCA_CP3220;
8850 parent->num_ports = 4;
David S. Millera3138df2007-10-09 01:54:01 -07008851 val = (phy_encode(PORT_TYPE_1G, 0) |
8852 phy_encode(PORT_TYPE_1G, 1) |
8853 phy_encode(PORT_TYPE_1G, 2) |
8854 phy_encode(PORT_TYPE_1G, 3));
Matheos Workuf9af8572008-05-12 03:10:59 -07008855 } else if (!strcmp(np->vpd.model, NIU_FOXXY_MDL_STR)) {
Matheos Workua5d6ab52008-04-24 21:09:20 -07008856 num_10g = 2;
8857 num_1g = 0;
8858 parent->num_ports = 2;
8859 val = (phy_encode(PORT_TYPE_10G, 0) |
8860 phy_encode(PORT_TYPE_10G, 1));
Santwona Beherae3e081e2008-11-14 14:44:08 -08008861 } else if ((np->flags & NIU_FLAGS_XCVR_SERDES) &&
8862 (parent->plat_type == PLAT_TYPE_NIU)) {
8863 /* this is the Monza case */
8864 if (np->flags & NIU_FLAGS_10G) {
8865 val = (phy_encode(PORT_TYPE_10G, 0) |
8866 phy_encode(PORT_TYPE_10G, 1));
8867 } else {
8868 val = (phy_encode(PORT_TYPE_1G, 0) |
8869 phy_encode(PORT_TYPE_1G, 1));
8870 }
Matheos Worku5fbd7e22008-02-28 21:25:43 -08008871 } else {
8872 err = fill_phy_probe_info(np, parent, info);
8873 if (err)
8874 return err;
David S. Millera3138df2007-10-09 01:54:01 -07008875
Matheos Worku5fbd7e22008-02-28 21:25:43 -08008876 num_10g = count_10g_ports(info, &lowest_10g);
8877 num_1g = count_1g_ports(info, &lowest_1g);
8878
8879 switch ((num_10g << 4) | num_1g) {
8880 case 0x24:
8881 if (lowest_1g == 10)
8882 parent->plat_type = PLAT_TYPE_VF_P0;
8883 else if (lowest_1g == 26)
8884 parent->plat_type = PLAT_TYPE_VF_P1;
8885 else
8886 goto unknown_vg_1g_port;
8887
8888 /* fallthru */
8889 case 0x22:
8890 val = (phy_encode(PORT_TYPE_10G, 0) |
8891 phy_encode(PORT_TYPE_10G, 1) |
8892 phy_encode(PORT_TYPE_1G, 2) |
8893 phy_encode(PORT_TYPE_1G, 3));
8894 break;
8895
8896 case 0x20:
8897 val = (phy_encode(PORT_TYPE_10G, 0) |
8898 phy_encode(PORT_TYPE_10G, 1));
8899 break;
8900
8901 case 0x10:
8902 val = phy_encode(PORT_TYPE_10G, np->port);
8903 break;
8904
8905 case 0x14:
8906 if (lowest_1g == 10)
8907 parent->plat_type = PLAT_TYPE_VF_P0;
8908 else if (lowest_1g == 26)
8909 parent->plat_type = PLAT_TYPE_VF_P1;
8910 else
8911 goto unknown_vg_1g_port;
8912
8913 /* fallthru */
8914 case 0x13:
8915 if ((lowest_10g & 0x7) == 0)
8916 val = (phy_encode(PORT_TYPE_10G, 0) |
8917 phy_encode(PORT_TYPE_1G, 1) |
8918 phy_encode(PORT_TYPE_1G, 2) |
8919 phy_encode(PORT_TYPE_1G, 3));
8920 else
8921 val = (phy_encode(PORT_TYPE_1G, 0) |
8922 phy_encode(PORT_TYPE_10G, 1) |
8923 phy_encode(PORT_TYPE_1G, 2) |
8924 phy_encode(PORT_TYPE_1G, 3));
8925 break;
8926
8927 case 0x04:
8928 if (lowest_1g == 10)
8929 parent->plat_type = PLAT_TYPE_VF_P0;
8930 else if (lowest_1g == 26)
8931 parent->plat_type = PLAT_TYPE_VF_P1;
8932 else
8933 goto unknown_vg_1g_port;
8934
8935 val = (phy_encode(PORT_TYPE_1G, 0) |
8936 phy_encode(PORT_TYPE_1G, 1) |
8937 phy_encode(PORT_TYPE_1G, 2) |
8938 phy_encode(PORT_TYPE_1G, 3));
8939 break;
8940
8941 default:
Joe Perchesf10a1f22010-02-14 22:40:39 -08008942 pr_err("Unsupported port config 10G[%d] 1G[%d]\n",
Matheos Worku5fbd7e22008-02-28 21:25:43 -08008943 num_10g, num_1g);
8944 return -EINVAL;
8945 }
David S. Millera3138df2007-10-09 01:54:01 -07008946 }
8947
8948 parent->port_phy = val;
8949
8950 if (parent->plat_type == PLAT_TYPE_NIU)
8951 niu_n2_divide_channels(parent);
8952 else
8953 niu_divide_channels(parent, num_10g, num_1g);
8954
8955 niu_divide_rdc_groups(parent, num_10g, num_1g);
8956
8957 return 0;
8958
8959unknown_vg_1g_port:
Joe Perchesf10a1f22010-02-14 22:40:39 -08008960 pr_err("Cannot identify platform type, 1gport=%d\n", lowest_1g);
David S. Millera3138df2007-10-09 01:54:01 -07008961 return -EINVAL;
8962}
8963
8964static int __devinit niu_probe_ports(struct niu *np)
8965{
8966 struct niu_parent *parent = np->parent;
8967 int err, i;
8968
David S. Millera3138df2007-10-09 01:54:01 -07008969 if (parent->port_phy == PORT_PHY_UNKNOWN) {
8970 err = walk_phys(np, parent);
8971 if (err)
8972 return err;
8973
8974 niu_set_ldg_timer_res(np, 2);
8975 for (i = 0; i <= LDN_MAX; i++)
8976 niu_ldn_irq_enable(np, i, 0);
8977 }
8978
8979 if (parent->port_phy == PORT_PHY_INVALID)
8980 return -EINVAL;
8981
8982 return 0;
8983}
8984
8985static int __devinit niu_classifier_swstate_init(struct niu *np)
8986{
8987 struct niu_classifier *cp = &np->clas;
8988
Santwona Behera2d96cf82009-02-20 00:58:45 -08008989 cp->tcam_top = (u16) np->port;
8990 cp->tcam_sz = np->parent->tcam_num_entries / np->parent->num_ports;
David S. Millera3138df2007-10-09 01:54:01 -07008991 cp->h1_init = 0xffffffff;
8992 cp->h2_init = 0xffff;
8993
8994 return fflp_early_init(np);
8995}
8996
8997static void __devinit niu_link_config_init(struct niu *np)
8998{
8999 struct niu_link_config *lp = &np->link_config;
9000
9001 lp->advertising = (ADVERTISED_10baseT_Half |
9002 ADVERTISED_10baseT_Full |
9003 ADVERTISED_100baseT_Half |
9004 ADVERTISED_100baseT_Full |
9005 ADVERTISED_1000baseT_Half |
9006 ADVERTISED_1000baseT_Full |
9007 ADVERTISED_10000baseT_Full |
9008 ADVERTISED_Autoneg);
9009 lp->speed = lp->active_speed = SPEED_INVALID;
Constantin Baranov38bb045d2009-02-18 17:53:20 -08009010 lp->duplex = DUPLEX_FULL;
9011 lp->active_duplex = DUPLEX_INVALID;
9012 lp->autoneg = 1;
David S. Millera3138df2007-10-09 01:54:01 -07009013#if 0
9014 lp->loopback_mode = LOOPBACK_MAC;
9015 lp->active_speed = SPEED_10000;
9016 lp->active_duplex = DUPLEX_FULL;
9017#else
9018 lp->loopback_mode = LOOPBACK_DISABLED;
9019#endif
9020}
9021
9022static int __devinit niu_init_mac_ipp_pcs_base(struct niu *np)
9023{
9024 switch (np->port) {
9025 case 0:
9026 np->mac_regs = np->regs + XMAC_PORT0_OFF;
9027 np->ipp_off = 0x00000;
9028 np->pcs_off = 0x04000;
9029 np->xpcs_off = 0x02000;
9030 break;
9031
9032 case 1:
9033 np->mac_regs = np->regs + XMAC_PORT1_OFF;
9034 np->ipp_off = 0x08000;
9035 np->pcs_off = 0x0a000;
9036 np->xpcs_off = 0x08000;
9037 break;
9038
9039 case 2:
9040 np->mac_regs = np->regs + BMAC_PORT2_OFF;
9041 np->ipp_off = 0x04000;
9042 np->pcs_off = 0x0e000;
9043 np->xpcs_off = ~0UL;
9044 break;
9045
9046 case 3:
9047 np->mac_regs = np->regs + BMAC_PORT3_OFF;
9048 np->ipp_off = 0x0c000;
9049 np->pcs_off = 0x12000;
9050 np->xpcs_off = ~0UL;
9051 break;
9052
9053 default:
Joe Perchesf10a1f22010-02-14 22:40:39 -08009054 dev_err(np->device, "Port %u is invalid, cannot compute MAC block offset\n", np->port);
David S. Millera3138df2007-10-09 01:54:01 -07009055 return -EINVAL;
9056 }
9057
9058 return 0;
9059}
9060
9061static void __devinit niu_try_msix(struct niu *np, u8 *ldg_num_map)
9062{
9063 struct msix_entry msi_vec[NIU_NUM_LDG];
9064 struct niu_parent *parent = np->parent;
9065 struct pci_dev *pdev = np->pdev;
9066 int i, num_irqs, err;
9067 u8 first_ldg;
9068
9069 first_ldg = (NIU_NUM_LDG / parent->num_ports) * np->port;
9070 for (i = 0; i < (NIU_NUM_LDG / parent->num_ports); i++)
9071 ldg_num_map[i] = first_ldg + i;
9072
9073 num_irqs = (parent->rxchan_per_port[np->port] +
9074 parent->txchan_per_port[np->port] +
9075 (np->port == 0 ? 3 : 1));
9076 BUG_ON(num_irqs > (NIU_NUM_LDG / parent->num_ports));
9077
9078retry:
9079 for (i = 0; i < num_irqs; i++) {
9080 msi_vec[i].vector = 0;
9081 msi_vec[i].entry = i;
9082 }
9083
9084 err = pci_enable_msix(pdev, msi_vec, num_irqs);
9085 if (err < 0) {
9086 np->flags &= ~NIU_FLAGS_MSIX;
9087 return;
9088 }
9089 if (err > 0) {
9090 num_irqs = err;
9091 goto retry;
9092 }
9093
9094 np->flags |= NIU_FLAGS_MSIX;
9095 for (i = 0; i < num_irqs; i++)
9096 np->ldg[i].irq = msi_vec[i].vector;
9097 np->num_ldg = num_irqs;
9098}
9099
9100static int __devinit niu_n2_irq_init(struct niu *np, u8 *ldg_num_map)
9101{
9102#ifdef CONFIG_SPARC64
Grant Likely2dc11582010-08-06 09:25:50 -06009103 struct platform_device *op = np->op;
David S. Millera3138df2007-10-09 01:54:01 -07009104 const u32 *int_prop;
9105 int i;
9106
Grant Likely61c7a082010-04-13 16:12:29 -07009107 int_prop = of_get_property(op->dev.of_node, "interrupts", NULL);
David S. Millera3138df2007-10-09 01:54:01 -07009108 if (!int_prop)
9109 return -ENODEV;
9110
Grant Likely1636f8a2010-06-18 11:09:58 -06009111 for (i = 0; i < op->archdata.num_irqs; i++) {
David S. Millera3138df2007-10-09 01:54:01 -07009112 ldg_num_map[i] = int_prop[i];
Grant Likely1636f8a2010-06-18 11:09:58 -06009113 np->ldg[i].irq = op->archdata.irqs[i];
David S. Millera3138df2007-10-09 01:54:01 -07009114 }
9115
Grant Likely1636f8a2010-06-18 11:09:58 -06009116 np->num_ldg = op->archdata.num_irqs;
David S. Millera3138df2007-10-09 01:54:01 -07009117
9118 return 0;
9119#else
9120 return -EINVAL;
9121#endif
9122}
9123
9124static int __devinit niu_ldg_init(struct niu *np)
9125{
9126 struct niu_parent *parent = np->parent;
9127 u8 ldg_num_map[NIU_NUM_LDG];
9128 int first_chan, num_chan;
9129 int i, err, ldg_rotor;
9130 u8 port;
9131
9132 np->num_ldg = 1;
9133 np->ldg[0].irq = np->dev->irq;
9134 if (parent->plat_type == PLAT_TYPE_NIU) {
9135 err = niu_n2_irq_init(np, ldg_num_map);
9136 if (err)
9137 return err;
9138 } else
9139 niu_try_msix(np, ldg_num_map);
9140
9141 port = np->port;
9142 for (i = 0; i < np->num_ldg; i++) {
9143 struct niu_ldg *lp = &np->ldg[i];
9144
9145 netif_napi_add(np->dev, &lp->napi, niu_poll, 64);
9146
9147 lp->np = np;
9148 lp->ldg_num = ldg_num_map[i];
9149 lp->timer = 2; /* XXX */
9150
9151 /* On N2 NIU the firmware has setup the SID mappings so they go
9152 * to the correct values that will route the LDG to the proper
9153 * interrupt in the NCU interrupt table.
9154 */
9155 if (np->parent->plat_type != PLAT_TYPE_NIU) {
9156 err = niu_set_ldg_sid(np, lp->ldg_num, port, i);
9157 if (err)
9158 return err;
9159 }
9160 }
9161
9162 /* We adopt the LDG assignment ordering used by the N2 NIU
9163 * 'interrupt' properties because that simplifies a lot of
9164 * things. This ordering is:
9165 *
9166 * MAC
9167 * MIF (if port zero)
9168 * SYSERR (if port zero)
9169 * RX channels
9170 * TX channels
9171 */
9172
9173 ldg_rotor = 0;
9174
9175 err = niu_ldg_assign_ldn(np, parent, ldg_num_map[ldg_rotor],
9176 LDN_MAC(port));
9177 if (err)
9178 return err;
9179
9180 ldg_rotor++;
9181 if (ldg_rotor == np->num_ldg)
9182 ldg_rotor = 0;
9183
9184 if (port == 0) {
9185 err = niu_ldg_assign_ldn(np, parent,
9186 ldg_num_map[ldg_rotor],
9187 LDN_MIF);
9188 if (err)
9189 return err;
9190
9191 ldg_rotor++;
9192 if (ldg_rotor == np->num_ldg)
9193 ldg_rotor = 0;
9194
9195 err = niu_ldg_assign_ldn(np, parent,
9196 ldg_num_map[ldg_rotor],
9197 LDN_DEVICE_ERROR);
9198 if (err)
9199 return err;
9200
9201 ldg_rotor++;
9202 if (ldg_rotor == np->num_ldg)
9203 ldg_rotor = 0;
9204
9205 }
9206
9207 first_chan = 0;
9208 for (i = 0; i < port; i++)
9209 first_chan += parent->rxchan_per_port[port];
9210 num_chan = parent->rxchan_per_port[port];
9211
9212 for (i = first_chan; i < (first_chan + num_chan); i++) {
9213 err = niu_ldg_assign_ldn(np, parent,
9214 ldg_num_map[ldg_rotor],
9215 LDN_RXDMA(i));
9216 if (err)
9217 return err;
9218 ldg_rotor++;
9219 if (ldg_rotor == np->num_ldg)
9220 ldg_rotor = 0;
9221 }
9222
9223 first_chan = 0;
9224 for (i = 0; i < port; i++)
9225 first_chan += parent->txchan_per_port[port];
9226 num_chan = parent->txchan_per_port[port];
9227 for (i = first_chan; i < (first_chan + num_chan); i++) {
9228 err = niu_ldg_assign_ldn(np, parent,
9229 ldg_num_map[ldg_rotor],
9230 LDN_TXDMA(i));
9231 if (err)
9232 return err;
9233 ldg_rotor++;
9234 if (ldg_rotor == np->num_ldg)
9235 ldg_rotor = 0;
9236 }
9237
9238 return 0;
9239}
9240
9241static void __devexit niu_ldg_free(struct niu *np)
9242{
9243 if (np->flags & NIU_FLAGS_MSIX)
9244 pci_disable_msix(np->pdev);
9245}
9246
9247static int __devinit niu_get_of_props(struct niu *np)
9248{
9249#ifdef CONFIG_SPARC64
9250 struct net_device *dev = np->dev;
9251 struct device_node *dp;
9252 const char *phy_type;
9253 const u8 *mac_addr;
Matheos Workuf9af8572008-05-12 03:10:59 -07009254 const char *model;
David S. Millera3138df2007-10-09 01:54:01 -07009255 int prop_len;
9256
9257 if (np->parent->plat_type == PLAT_TYPE_NIU)
Grant Likely61c7a082010-04-13 16:12:29 -07009258 dp = np->op->dev.of_node;
David S. Millera3138df2007-10-09 01:54:01 -07009259 else
9260 dp = pci_device_to_OF_node(np->pdev);
9261
9262 phy_type = of_get_property(dp, "phy-type", &prop_len);
9263 if (!phy_type) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009264 netdev_err(dev, "%s: OF node lacks phy-type property\n",
9265 dp->full_name);
David S. Millera3138df2007-10-09 01:54:01 -07009266 return -EINVAL;
9267 }
9268
9269 if (!strcmp(phy_type, "none"))
9270 return -ENODEV;
9271
9272 strcpy(np->vpd.phy_type, phy_type);
9273
9274 if (niu_phy_type_prop_decode(np, np->vpd.phy_type)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009275 netdev_err(dev, "%s: Illegal phy string [%s]\n",
9276 dp->full_name, np->vpd.phy_type);
David S. Millera3138df2007-10-09 01:54:01 -07009277 return -EINVAL;
9278 }
9279
9280 mac_addr = of_get_property(dp, "local-mac-address", &prop_len);
9281 if (!mac_addr) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009282 netdev_err(dev, "%s: OF node lacks local-mac-address property\n",
9283 dp->full_name);
David S. Millera3138df2007-10-09 01:54:01 -07009284 return -EINVAL;
9285 }
9286 if (prop_len != dev->addr_len) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009287 netdev_err(dev, "%s: OF MAC address prop len (%d) is wrong\n",
9288 dp->full_name, prop_len);
David S. Millera3138df2007-10-09 01:54:01 -07009289 }
9290 memcpy(dev->perm_addr, mac_addr, dev->addr_len);
9291 if (!is_valid_ether_addr(&dev->perm_addr[0])) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009292 netdev_err(dev, "%s: OF MAC address is invalid\n",
9293 dp->full_name);
9294 netdev_err(dev, "%s: [ %pM ]\n", dp->full_name, dev->perm_addr);
David S. Millera3138df2007-10-09 01:54:01 -07009295 return -EINVAL;
9296 }
9297
9298 memcpy(dev->dev_addr, dev->perm_addr, dev->addr_len);
9299
Matheos Workuf9af8572008-05-12 03:10:59 -07009300 model = of_get_property(dp, "model", &prop_len);
9301
9302 if (model)
9303 strcpy(np->vpd.model, model);
9304
Tanli Chang9c5cd672009-05-26 20:45:50 -07009305 if (of_find_property(dp, "hot-swappable-phy", &prop_len)) {
9306 np->flags |= (NIU_FLAGS_10G | NIU_FLAGS_FIBER |
9307 NIU_FLAGS_HOTPLUG_PHY);
9308 }
9309
David S. Millera3138df2007-10-09 01:54:01 -07009310 return 0;
9311#else
9312 return -EINVAL;
9313#endif
9314}
9315
9316static int __devinit niu_get_invariants(struct niu *np)
9317{
9318 int err, have_props;
9319 u32 offset;
9320
9321 err = niu_get_of_props(np);
9322 if (err == -ENODEV)
9323 return err;
9324
9325 have_props = !err;
9326
David S. Millera3138df2007-10-09 01:54:01 -07009327 err = niu_init_mac_ipp_pcs_base(np);
9328 if (err)
9329 return err;
9330
Matheos Worku7f7c4072008-04-24 21:02:37 -07009331 if (have_props) {
9332 err = niu_get_and_validate_port(np);
9333 if (err)
9334 return err;
9335
9336 } else {
David S. Millera3138df2007-10-09 01:54:01 -07009337 if (np->parent->plat_type == PLAT_TYPE_NIU)
9338 return -EINVAL;
9339
9340 nw64(ESPC_PIO_EN, ESPC_PIO_EN_ENABLE);
9341 offset = niu_pci_vpd_offset(np);
Joe Perchesf10a1f22010-02-14 22:40:39 -08009342 netif_printk(np, probe, KERN_DEBUG, np->dev,
9343 "%s() VPD offset [%08x]\n", __func__, offset);
David S. Millera3138df2007-10-09 01:54:01 -07009344 if (offset)
9345 niu_pci_vpd_fetch(np, offset);
9346 nw64(ESPC_PIO_EN, 0);
9347
Matheos Worku7f7c4072008-04-24 21:02:37 -07009348 if (np->flags & NIU_FLAGS_VPD_VALID) {
David S. Millera3138df2007-10-09 01:54:01 -07009349 niu_pci_vpd_validate(np);
Matheos Worku7f7c4072008-04-24 21:02:37 -07009350 err = niu_get_and_validate_port(np);
9351 if (err)
9352 return err;
9353 }
David S. Millera3138df2007-10-09 01:54:01 -07009354
9355 if (!(np->flags & NIU_FLAGS_VPD_VALID)) {
Matheos Worku7f7c4072008-04-24 21:02:37 -07009356 err = niu_get_and_validate_port(np);
9357 if (err)
9358 return err;
David S. Millera3138df2007-10-09 01:54:01 -07009359 err = niu_pci_probe_sprom(np);
9360 if (err)
9361 return err;
9362 }
9363 }
9364
9365 err = niu_probe_ports(np);
9366 if (err)
9367 return err;
9368
9369 niu_ldg_init(np);
9370
9371 niu_classifier_swstate_init(np);
9372 niu_link_config_init(np);
9373
9374 err = niu_determine_phy_disposition(np);
9375 if (!err)
9376 err = niu_init_link(np);
9377
9378 return err;
9379}
9380
9381static LIST_HEAD(niu_parent_list);
9382static DEFINE_MUTEX(niu_parent_lock);
9383static int niu_parent_index;
9384
9385static ssize_t show_port_phy(struct device *dev,
9386 struct device_attribute *attr, char *buf)
9387{
9388 struct platform_device *plat_dev = to_platform_device(dev);
9389 struct niu_parent *p = plat_dev->dev.platform_data;
9390 u32 port_phy = p->port_phy;
9391 char *orig_buf = buf;
9392 int i;
9393
9394 if (port_phy == PORT_PHY_UNKNOWN ||
9395 port_phy == PORT_PHY_INVALID)
9396 return 0;
9397
9398 for (i = 0; i < p->num_ports; i++) {
9399 const char *type_str;
9400 int type;
9401
9402 type = phy_decode(port_phy, i);
9403 if (type == PORT_TYPE_10G)
9404 type_str = "10G";
9405 else
9406 type_str = "1G";
9407 buf += sprintf(buf,
9408 (i == 0) ? "%s" : " %s",
9409 type_str);
9410 }
9411 buf += sprintf(buf, "\n");
9412 return buf - orig_buf;
9413}
9414
9415static ssize_t show_plat_type(struct device *dev,
9416 struct device_attribute *attr, char *buf)
9417{
9418 struct platform_device *plat_dev = to_platform_device(dev);
9419 struct niu_parent *p = plat_dev->dev.platform_data;
9420 const char *type_str;
9421
9422 switch (p->plat_type) {
9423 case PLAT_TYPE_ATLAS:
9424 type_str = "atlas";
9425 break;
9426 case PLAT_TYPE_NIU:
9427 type_str = "niu";
9428 break;
9429 case PLAT_TYPE_VF_P0:
9430 type_str = "vf_p0";
9431 break;
9432 case PLAT_TYPE_VF_P1:
9433 type_str = "vf_p1";
9434 break;
9435 default:
9436 type_str = "unknown";
9437 break;
9438 }
9439
9440 return sprintf(buf, "%s\n", type_str);
9441}
9442
9443static ssize_t __show_chan_per_port(struct device *dev,
9444 struct device_attribute *attr, char *buf,
9445 int rx)
9446{
9447 struct platform_device *plat_dev = to_platform_device(dev);
9448 struct niu_parent *p = plat_dev->dev.platform_data;
9449 char *orig_buf = buf;
9450 u8 *arr;
9451 int i;
9452
9453 arr = (rx ? p->rxchan_per_port : p->txchan_per_port);
9454
9455 for (i = 0; i < p->num_ports; i++) {
9456 buf += sprintf(buf,
9457 (i == 0) ? "%d" : " %d",
9458 arr[i]);
9459 }
9460 buf += sprintf(buf, "\n");
9461
9462 return buf - orig_buf;
9463}
9464
9465static ssize_t show_rxchan_per_port(struct device *dev,
9466 struct device_attribute *attr, char *buf)
9467{
9468 return __show_chan_per_port(dev, attr, buf, 1);
9469}
9470
9471static ssize_t show_txchan_per_port(struct device *dev,
9472 struct device_attribute *attr, char *buf)
9473{
9474 return __show_chan_per_port(dev, attr, buf, 1);
9475}
9476
9477static ssize_t show_num_ports(struct device *dev,
9478 struct device_attribute *attr, char *buf)
9479{
9480 struct platform_device *plat_dev = to_platform_device(dev);
9481 struct niu_parent *p = plat_dev->dev.platform_data;
9482
9483 return sprintf(buf, "%d\n", p->num_ports);
9484}
9485
9486static struct device_attribute niu_parent_attributes[] = {
9487 __ATTR(port_phy, S_IRUGO, show_port_phy, NULL),
9488 __ATTR(plat_type, S_IRUGO, show_plat_type, NULL),
9489 __ATTR(rxchan_per_port, S_IRUGO, show_rxchan_per_port, NULL),
9490 __ATTR(txchan_per_port, S_IRUGO, show_txchan_per_port, NULL),
9491 __ATTR(num_ports, S_IRUGO, show_num_ports, NULL),
9492 {}
9493};
9494
9495static struct niu_parent * __devinit niu_new_parent(struct niu *np,
9496 union niu_parent_id *id,
9497 u8 ptype)
9498{
9499 struct platform_device *plat_dev;
9500 struct niu_parent *p;
9501 int i;
9502
David S. Millera769f492011-03-19 23:06:33 -07009503 plat_dev = platform_device_register_simple("niu-board", niu_parent_index,
David S. Millera3138df2007-10-09 01:54:01 -07009504 NULL, 0);
Dan Carpenter58f3e0a2009-04-08 15:44:04 -07009505 if (IS_ERR(plat_dev))
David S. Millera3138df2007-10-09 01:54:01 -07009506 return NULL;
9507
9508 for (i = 0; attr_name(niu_parent_attributes[i]); i++) {
9509 int err = device_create_file(&plat_dev->dev,
9510 &niu_parent_attributes[i]);
9511 if (err)
9512 goto fail_unregister;
9513 }
9514
9515 p = kzalloc(sizeof(*p), GFP_KERNEL);
9516 if (!p)
9517 goto fail_unregister;
9518
9519 p->index = niu_parent_index++;
9520
9521 plat_dev->dev.platform_data = p;
9522 p->plat_dev = plat_dev;
9523
9524 memcpy(&p->id, id, sizeof(*id));
9525 p->plat_type = ptype;
9526 INIT_LIST_HEAD(&p->list);
9527 atomic_set(&p->refcnt, 0);
9528 list_add(&p->list, &niu_parent_list);
9529 spin_lock_init(&p->lock);
9530
9531 p->rxdma_clock_divider = 7500;
9532
9533 p->tcam_num_entries = NIU_PCI_TCAM_ENTRIES;
9534 if (p->plat_type == PLAT_TYPE_NIU)
9535 p->tcam_num_entries = NIU_NONPCI_TCAM_ENTRIES;
9536
9537 for (i = CLASS_CODE_USER_PROG1; i <= CLASS_CODE_SCTP_IPV6; i++) {
9538 int index = i - CLASS_CODE_USER_PROG1;
9539
9540 p->tcam_key[index] = TCAM_KEY_TSEL;
9541 p->flow_key[index] = (FLOW_KEY_IPSA |
9542 FLOW_KEY_IPDA |
9543 FLOW_KEY_PROTO |
9544 (FLOW_KEY_L4_BYTE12 <<
9545 FLOW_KEY_L4_0_SHIFT) |
9546 (FLOW_KEY_L4_BYTE12 <<
9547 FLOW_KEY_L4_1_SHIFT));
9548 }
9549
9550 for (i = 0; i < LDN_MAX + 1; i++)
9551 p->ldg_map[i] = LDG_INVALID;
9552
9553 return p;
9554
9555fail_unregister:
9556 platform_device_unregister(plat_dev);
9557 return NULL;
9558}
9559
9560static struct niu_parent * __devinit niu_get_parent(struct niu *np,
9561 union niu_parent_id *id,
9562 u8 ptype)
9563{
9564 struct niu_parent *p, *tmp;
9565 int port = np->port;
9566
David S. Millera3138df2007-10-09 01:54:01 -07009567 mutex_lock(&niu_parent_lock);
9568 p = NULL;
9569 list_for_each_entry(tmp, &niu_parent_list, list) {
9570 if (!memcmp(id, &tmp->id, sizeof(*id))) {
9571 p = tmp;
9572 break;
9573 }
9574 }
9575 if (!p)
9576 p = niu_new_parent(np, id, ptype);
9577
9578 if (p) {
9579 char port_name[6];
9580 int err;
9581
9582 sprintf(port_name, "port%d", port);
9583 err = sysfs_create_link(&p->plat_dev->dev.kobj,
9584 &np->device->kobj,
9585 port_name);
9586 if (!err) {
9587 p->ports[port] = np;
9588 atomic_inc(&p->refcnt);
9589 }
9590 }
9591 mutex_unlock(&niu_parent_lock);
9592
9593 return p;
9594}
9595
9596static void niu_put_parent(struct niu *np)
9597{
9598 struct niu_parent *p = np->parent;
9599 u8 port = np->port;
9600 char port_name[6];
9601
9602 BUG_ON(!p || p->ports[port] != np);
9603
Joe Perchesf10a1f22010-02-14 22:40:39 -08009604 netif_printk(np, probe, KERN_DEBUG, np->dev,
9605 "%s() port[%u]\n", __func__, port);
David S. Millera3138df2007-10-09 01:54:01 -07009606
9607 sprintf(port_name, "port%d", port);
9608
9609 mutex_lock(&niu_parent_lock);
9610
9611 sysfs_remove_link(&p->plat_dev->dev.kobj, port_name);
9612
9613 p->ports[port] = NULL;
9614 np->parent = NULL;
9615
9616 if (atomic_dec_and_test(&p->refcnt)) {
9617 list_del(&p->list);
9618 platform_device_unregister(p->plat_dev);
9619 }
9620
9621 mutex_unlock(&niu_parent_lock);
9622}
9623
9624static void *niu_pci_alloc_coherent(struct device *dev, size_t size,
9625 u64 *handle, gfp_t flag)
9626{
9627 dma_addr_t dh;
9628 void *ret;
9629
9630 ret = dma_alloc_coherent(dev, size, &dh, flag);
9631 if (ret)
9632 *handle = dh;
9633 return ret;
9634}
9635
9636static void niu_pci_free_coherent(struct device *dev, size_t size,
9637 void *cpu_addr, u64 handle)
9638{
9639 dma_free_coherent(dev, size, cpu_addr, handle);
9640}
9641
9642static u64 niu_pci_map_page(struct device *dev, struct page *page,
9643 unsigned long offset, size_t size,
9644 enum dma_data_direction direction)
9645{
9646 return dma_map_page(dev, page, offset, size, direction);
9647}
9648
9649static void niu_pci_unmap_page(struct device *dev, u64 dma_address,
9650 size_t size, enum dma_data_direction direction)
9651{
Hannes Edera08b32d2008-12-25 23:56:04 -08009652 dma_unmap_page(dev, dma_address, size, direction);
David S. Millera3138df2007-10-09 01:54:01 -07009653}
9654
9655static u64 niu_pci_map_single(struct device *dev, void *cpu_addr,
9656 size_t size,
9657 enum dma_data_direction direction)
9658{
9659 return dma_map_single(dev, cpu_addr, size, direction);
9660}
9661
9662static void niu_pci_unmap_single(struct device *dev, u64 dma_address,
9663 size_t size,
9664 enum dma_data_direction direction)
9665{
9666 dma_unmap_single(dev, dma_address, size, direction);
9667}
9668
9669static const struct niu_ops niu_pci_ops = {
9670 .alloc_coherent = niu_pci_alloc_coherent,
9671 .free_coherent = niu_pci_free_coherent,
9672 .map_page = niu_pci_map_page,
9673 .unmap_page = niu_pci_unmap_page,
9674 .map_single = niu_pci_map_single,
9675 .unmap_single = niu_pci_unmap_single,
9676};
9677
9678static void __devinit niu_driver_version(void)
9679{
9680 static int niu_version_printed;
9681
9682 if (niu_version_printed++ == 0)
9683 pr_info("%s", version);
9684}
9685
9686static struct net_device * __devinit niu_alloc_and_init(
9687 struct device *gen_dev, struct pci_dev *pdev,
Grant Likely2dc11582010-08-06 09:25:50 -06009688 struct platform_device *op, const struct niu_ops *ops,
David S. Millera3138df2007-10-09 01:54:01 -07009689 u8 port)
9690{
David S. Millerb4c21632008-07-15 03:48:19 -07009691 struct net_device *dev;
David S. Millera3138df2007-10-09 01:54:01 -07009692 struct niu *np;
9693
David S. Millerb4c21632008-07-15 03:48:19 -07009694 dev = alloc_etherdev_mq(sizeof(struct niu), NIU_NUM_TXCHAN);
David S. Millera3138df2007-10-09 01:54:01 -07009695 if (!dev) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009696 dev_err(gen_dev, "Etherdev alloc failed, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009697 return NULL;
9698 }
9699
9700 SET_NETDEV_DEV(dev, gen_dev);
9701
9702 np = netdev_priv(dev);
9703 np->dev = dev;
9704 np->pdev = pdev;
9705 np->op = op;
9706 np->device = gen_dev;
9707 np->ops = ops;
9708
9709 np->msg_enable = niu_debug;
9710
9711 spin_lock_init(&np->lock);
9712 INIT_WORK(&np->reset_task, niu_reset_task);
9713
9714 np->port = port;
9715
9716 return dev;
9717}
9718
Stephen Hemminger2c9171d2008-11-19 22:27:43 -08009719static const struct net_device_ops niu_netdev_ops = {
9720 .ndo_open = niu_open,
9721 .ndo_stop = niu_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08009722 .ndo_start_xmit = niu_start_xmit,
Stephen Hemminger2c9171d2008-11-19 22:27:43 -08009723 .ndo_get_stats = niu_get_stats,
9724 .ndo_set_multicast_list = niu_set_rx_mode,
9725 .ndo_validate_addr = eth_validate_addr,
9726 .ndo_set_mac_address = niu_set_mac_addr,
9727 .ndo_do_ioctl = niu_ioctl,
9728 .ndo_tx_timeout = niu_tx_timeout,
9729 .ndo_change_mtu = niu_change_mtu,
9730};
9731
David S. Millera3138df2007-10-09 01:54:01 -07009732static void __devinit niu_assign_netdev_ops(struct net_device *dev)
9733{
Stephen Hemminger2c9171d2008-11-19 22:27:43 -08009734 dev->netdev_ops = &niu_netdev_ops;
David S. Millera3138df2007-10-09 01:54:01 -07009735 dev->ethtool_ops = &niu_ethtool_ops;
9736 dev->watchdog_timeo = NIU_TX_TIMEOUT;
David S. Millera3138df2007-10-09 01:54:01 -07009737}
9738
9739static void __devinit niu_device_announce(struct niu *np)
9740{
9741 struct net_device *dev = np->dev;
David S. Millera3138df2007-10-09 01:54:01 -07009742
Johannes Berge1749612008-10-27 15:59:26 -07009743 pr_info("%s: NIU Ethernet %pM\n", dev->name, dev->dev_addr);
David S. Millera3138df2007-10-09 01:54:01 -07009744
Matheos Worku5fbd7e22008-02-28 21:25:43 -08009745 if (np->parent->plat_type == PLAT_TYPE_ATCA_CP3220) {
9746 pr_info("%s: Port type[%s] mode[%s:%s] XCVR[%s] phy[%s]\n",
9747 dev->name,
9748 (np->flags & NIU_FLAGS_XMAC ? "XMAC" : "BMAC"),
9749 (np->flags & NIU_FLAGS_10G ? "10G" : "1G"),
9750 (np->flags & NIU_FLAGS_FIBER ? "RGMII FIBER" : "SERDES"),
9751 (np->mac_xcvr == MAC_XCVR_MII ? "MII" :
9752 (np->mac_xcvr == MAC_XCVR_PCS ? "PCS" : "XPCS")),
9753 np->vpd.phy_type);
9754 } else {
9755 pr_info("%s: Port type[%s] mode[%s:%s] XCVR[%s] phy[%s]\n",
9756 dev->name,
9757 (np->flags & NIU_FLAGS_XMAC ? "XMAC" : "BMAC"),
9758 (np->flags & NIU_FLAGS_10G ? "10G" : "1G"),
Santwona Beherae3e081e2008-11-14 14:44:08 -08009759 (np->flags & NIU_FLAGS_FIBER ? "FIBER" :
9760 (np->flags & NIU_FLAGS_XCVR_SERDES ? "SERDES" :
9761 "COPPER")),
Matheos Worku5fbd7e22008-02-28 21:25:43 -08009762 (np->mac_xcvr == MAC_XCVR_MII ? "MII" :
9763 (np->mac_xcvr == MAC_XCVR_PCS ? "PCS" : "XPCS")),
9764 np->vpd.phy_type);
9765 }
David S. Millera3138df2007-10-09 01:54:01 -07009766}
9767
David S. Miller3cfa8562010-04-22 15:48:17 -07009768static void __devinit niu_set_basic_features(struct net_device *dev)
9769{
9770 dev->features |= (NETIF_F_SG | NETIF_F_HW_CSUM |
9771 NETIF_F_GRO | NETIF_F_RXHASH);
9772}
9773
David S. Millera3138df2007-10-09 01:54:01 -07009774static int __devinit niu_pci_init_one(struct pci_dev *pdev,
9775 const struct pci_device_id *ent)
9776{
David S. Millera3138df2007-10-09 01:54:01 -07009777 union niu_parent_id parent_id;
9778 struct net_device *dev;
9779 struct niu *np;
9780 int err, pos;
9781 u64 dma_mask;
9782 u16 val16;
9783
9784 niu_driver_version();
9785
9786 err = pci_enable_device(pdev);
9787 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009788 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009789 return err;
9790 }
9791
9792 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM) ||
9793 !(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009794 dev_err(&pdev->dev, "Cannot find proper PCI device base addresses, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009795 err = -ENODEV;
9796 goto err_out_disable_pdev;
9797 }
9798
9799 err = pci_request_regions(pdev, DRV_MODULE_NAME);
9800 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009801 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009802 goto err_out_disable_pdev;
9803 }
9804
9805 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
9806 if (pos <= 0) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009807 dev_err(&pdev->dev, "Cannot find PCI Express capability, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009808 goto err_out_free_res;
9809 }
9810
9811 dev = niu_alloc_and_init(&pdev->dev, pdev, NULL,
9812 &niu_pci_ops, PCI_FUNC(pdev->devfn));
9813 if (!dev) {
9814 err = -ENOMEM;
9815 goto err_out_free_res;
9816 }
9817 np = netdev_priv(dev);
9818
9819 memset(&parent_id, 0, sizeof(parent_id));
9820 parent_id.pci.domain = pci_domain_nr(pdev->bus);
9821 parent_id.pci.bus = pdev->bus->number;
9822 parent_id.pci.device = PCI_SLOT(pdev->devfn);
9823
9824 np->parent = niu_get_parent(np, &parent_id,
9825 PLAT_TYPE_ATLAS);
9826 if (!np->parent) {
9827 err = -ENOMEM;
9828 goto err_out_free_dev;
9829 }
9830
9831 pci_read_config_word(pdev, pos + PCI_EXP_DEVCTL, &val16);
9832 val16 &= ~PCI_EXP_DEVCTL_NOSNOOP_EN;
9833 val16 |= (PCI_EXP_DEVCTL_CERE |
9834 PCI_EXP_DEVCTL_NFERE |
9835 PCI_EXP_DEVCTL_FERE |
9836 PCI_EXP_DEVCTL_URRE |
9837 PCI_EXP_DEVCTL_RELAX_EN);
9838 pci_write_config_word(pdev, pos + PCI_EXP_DEVCTL, val16);
9839
Marin Mitov8cbd9622009-11-08 05:59:27 +00009840 dma_mask = DMA_BIT_MASK(44);
David S. Millera3138df2007-10-09 01:54:01 -07009841 err = pci_set_dma_mask(pdev, dma_mask);
9842 if (!err) {
9843 dev->features |= NETIF_F_HIGHDMA;
9844 err = pci_set_consistent_dma_mask(pdev, dma_mask);
9845 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009846 dev_err(&pdev->dev, "Unable to obtain 44 bit DMA for consistent allocations, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009847 goto err_out_release_parent;
9848 }
9849 }
Yang Hongyang284901a2009-04-06 19:01:15 -07009850 if (err || dma_mask == DMA_BIT_MASK(32)) {
9851 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
David S. Millera3138df2007-10-09 01:54:01 -07009852 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009853 dev_err(&pdev->dev, "No usable DMA configuration, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009854 goto err_out_release_parent;
9855 }
9856 }
9857
David S. Miller3cfa8562010-04-22 15:48:17 -07009858 niu_set_basic_features(dev);
David S. Millera3138df2007-10-09 01:54:01 -07009859
David S. Miller19ecb6b2008-11-03 17:05:16 -08009860 np->regs = pci_ioremap_bar(pdev, 0);
David S. Millera3138df2007-10-09 01:54:01 -07009861 if (!np->regs) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009862 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009863 err = -ENOMEM;
9864 goto err_out_release_parent;
9865 }
9866
9867 pci_set_master(pdev);
9868 pci_save_state(pdev);
9869
9870 dev->irq = pdev->irq;
9871
9872 niu_assign_netdev_ops(dev);
9873
9874 err = niu_get_invariants(np);
9875 if (err) {
9876 if (err != -ENODEV)
Joe Perchesf10a1f22010-02-14 22:40:39 -08009877 dev_err(&pdev->dev, "Problem fetching invariants of chip, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009878 goto err_out_iounmap;
9879 }
9880
9881 err = register_netdev(dev);
9882 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -08009883 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -07009884 goto err_out_iounmap;
9885 }
9886
9887 pci_set_drvdata(pdev, dev);
9888
9889 niu_device_announce(np);
9890
9891 return 0;
9892
9893err_out_iounmap:
9894 if (np->regs) {
9895 iounmap(np->regs);
9896 np->regs = NULL;
9897 }
9898
9899err_out_release_parent:
9900 niu_put_parent(np);
9901
9902err_out_free_dev:
9903 free_netdev(dev);
9904
9905err_out_free_res:
9906 pci_release_regions(pdev);
9907
9908err_out_disable_pdev:
9909 pci_disable_device(pdev);
9910 pci_set_drvdata(pdev, NULL);
9911
9912 return err;
9913}
9914
9915static void __devexit niu_pci_remove_one(struct pci_dev *pdev)
9916{
9917 struct net_device *dev = pci_get_drvdata(pdev);
9918
9919 if (dev) {
9920 struct niu *np = netdev_priv(dev);
9921
9922 unregister_netdev(dev);
9923 if (np->regs) {
9924 iounmap(np->regs);
9925 np->regs = NULL;
9926 }
9927
9928 niu_ldg_free(np);
9929
9930 niu_put_parent(np);
9931
9932 free_netdev(dev);
9933 pci_release_regions(pdev);
9934 pci_disable_device(pdev);
9935 pci_set_drvdata(pdev, NULL);
9936 }
9937}
9938
9939static int niu_suspend(struct pci_dev *pdev, pm_message_t state)
9940{
9941 struct net_device *dev = pci_get_drvdata(pdev);
9942 struct niu *np = netdev_priv(dev);
9943 unsigned long flags;
9944
9945 if (!netif_running(dev))
9946 return 0;
9947
Tejun Heo23f333a2010-12-12 16:45:14 +01009948 flush_work_sync(&np->reset_task);
David S. Millera3138df2007-10-09 01:54:01 -07009949 niu_netif_stop(np);
9950
9951 del_timer_sync(&np->timer);
9952
9953 spin_lock_irqsave(&np->lock, flags);
9954 niu_enable_interrupts(np, 0);
9955 spin_unlock_irqrestore(&np->lock, flags);
9956
9957 netif_device_detach(dev);
9958
9959 spin_lock_irqsave(&np->lock, flags);
9960 niu_stop_hw(np);
9961 spin_unlock_irqrestore(&np->lock, flags);
9962
9963 pci_save_state(pdev);
9964
9965 return 0;
9966}
9967
9968static int niu_resume(struct pci_dev *pdev)
9969{
9970 struct net_device *dev = pci_get_drvdata(pdev);
9971 struct niu *np = netdev_priv(dev);
9972 unsigned long flags;
9973 int err;
9974
9975 if (!netif_running(dev))
9976 return 0;
9977
9978 pci_restore_state(pdev);
9979
9980 netif_device_attach(dev);
9981
9982 spin_lock_irqsave(&np->lock, flags);
9983
9984 err = niu_init_hw(np);
9985 if (!err) {
9986 np->timer.expires = jiffies + HZ;
9987 add_timer(&np->timer);
9988 niu_netif_start(np);
9989 }
9990
9991 spin_unlock_irqrestore(&np->lock, flags);
9992
9993 return err;
9994}
9995
9996static struct pci_driver niu_pci_driver = {
9997 .name = DRV_MODULE_NAME,
9998 .id_table = niu_pci_tbl,
9999 .probe = niu_pci_init_one,
10000 .remove = __devexit_p(niu_pci_remove_one),
10001 .suspend = niu_suspend,
10002 .resume = niu_resume,
10003};
10004
10005#ifdef CONFIG_SPARC64
10006static void *niu_phys_alloc_coherent(struct device *dev, size_t size,
10007 u64 *dma_addr, gfp_t flag)
10008{
10009 unsigned long order = get_order(size);
10010 unsigned long page = __get_free_pages(flag, order);
10011
10012 if (page == 0UL)
10013 return NULL;
10014 memset((char *)page, 0, PAGE_SIZE << order);
10015 *dma_addr = __pa(page);
10016
10017 return (void *) page;
10018}
10019
10020static void niu_phys_free_coherent(struct device *dev, size_t size,
10021 void *cpu_addr, u64 handle)
10022{
10023 unsigned long order = get_order(size);
10024
10025 free_pages((unsigned long) cpu_addr, order);
10026}
10027
10028static u64 niu_phys_map_page(struct device *dev, struct page *page,
10029 unsigned long offset, size_t size,
10030 enum dma_data_direction direction)
10031{
10032 return page_to_phys(page) + offset;
10033}
10034
10035static void niu_phys_unmap_page(struct device *dev, u64 dma_address,
10036 size_t size, enum dma_data_direction direction)
10037{
10038 /* Nothing to do. */
10039}
10040
10041static u64 niu_phys_map_single(struct device *dev, void *cpu_addr,
10042 size_t size,
10043 enum dma_data_direction direction)
10044{
10045 return __pa(cpu_addr);
10046}
10047
10048static void niu_phys_unmap_single(struct device *dev, u64 dma_address,
10049 size_t size,
10050 enum dma_data_direction direction)
10051{
10052 /* Nothing to do. */
10053}
10054
10055static const struct niu_ops niu_phys_ops = {
10056 .alloc_coherent = niu_phys_alloc_coherent,
10057 .free_coherent = niu_phys_free_coherent,
10058 .map_page = niu_phys_map_page,
10059 .unmap_page = niu_phys_unmap_page,
10060 .map_single = niu_phys_map_single,
10061 .unmap_single = niu_phys_unmap_single,
10062};
10063
Grant Likely74888762011-02-22 21:05:51 -070010064static int __devinit niu_of_probe(struct platform_device *op)
David S. Millera3138df2007-10-09 01:54:01 -070010065{
10066 union niu_parent_id parent_id;
10067 struct net_device *dev;
10068 struct niu *np;
10069 const u32 *reg;
10070 int err;
10071
10072 niu_driver_version();
10073
Grant Likely61c7a082010-04-13 16:12:29 -070010074 reg = of_get_property(op->dev.of_node, "reg", NULL);
David S. Millera3138df2007-10-09 01:54:01 -070010075 if (!reg) {
Joe Perchesf10a1f22010-02-14 22:40:39 -080010076 dev_err(&op->dev, "%s: No 'reg' property, aborting\n",
Grant Likely61c7a082010-04-13 16:12:29 -070010077 op->dev.of_node->full_name);
David S. Millera3138df2007-10-09 01:54:01 -070010078 return -ENODEV;
10079 }
10080
10081 dev = niu_alloc_and_init(&op->dev, NULL, op,
10082 &niu_phys_ops, reg[0] & 0x1);
10083 if (!dev) {
10084 err = -ENOMEM;
10085 goto err_out;
10086 }
10087 np = netdev_priv(dev);
10088
10089 memset(&parent_id, 0, sizeof(parent_id));
Grant Likely61c7a082010-04-13 16:12:29 -070010090 parent_id.of = of_get_parent(op->dev.of_node);
David S. Millera3138df2007-10-09 01:54:01 -070010091
10092 np->parent = niu_get_parent(np, &parent_id,
10093 PLAT_TYPE_NIU);
10094 if (!np->parent) {
10095 err = -ENOMEM;
10096 goto err_out_free_dev;
10097 }
10098
David S. Miller3cfa8562010-04-22 15:48:17 -070010099 niu_set_basic_features(dev);
David S. Millera3138df2007-10-09 01:54:01 -070010100
10101 np->regs = of_ioremap(&op->resource[1], 0,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010102 resource_size(&op->resource[1]),
David S. Millera3138df2007-10-09 01:54:01 -070010103 "niu regs");
10104 if (!np->regs) {
Joe Perchesf10a1f22010-02-14 22:40:39 -080010105 dev_err(&op->dev, "Cannot map device registers, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -070010106 err = -ENOMEM;
10107 goto err_out_release_parent;
10108 }
10109
10110 np->vir_regs_1 = of_ioremap(&op->resource[2], 0,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010111 resource_size(&op->resource[2]),
David S. Millera3138df2007-10-09 01:54:01 -070010112 "niu vregs-1");
10113 if (!np->vir_regs_1) {
Joe Perchesf10a1f22010-02-14 22:40:39 -080010114 dev_err(&op->dev, "Cannot map device vir registers 1, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -070010115 err = -ENOMEM;
10116 goto err_out_iounmap;
10117 }
10118
10119 np->vir_regs_2 = of_ioremap(&op->resource[3], 0,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010120 resource_size(&op->resource[3]),
David S. Millera3138df2007-10-09 01:54:01 -070010121 "niu vregs-2");
10122 if (!np->vir_regs_2) {
Joe Perchesf10a1f22010-02-14 22:40:39 -080010123 dev_err(&op->dev, "Cannot map device vir registers 2, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -070010124 err = -ENOMEM;
10125 goto err_out_iounmap;
10126 }
10127
10128 niu_assign_netdev_ops(dev);
10129
10130 err = niu_get_invariants(np);
10131 if (err) {
10132 if (err != -ENODEV)
Joe Perchesf10a1f22010-02-14 22:40:39 -080010133 dev_err(&op->dev, "Problem fetching invariants of chip, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -070010134 goto err_out_iounmap;
10135 }
10136
10137 err = register_netdev(dev);
10138 if (err) {
Joe Perchesf10a1f22010-02-14 22:40:39 -080010139 dev_err(&op->dev, "Cannot register net device, aborting\n");
David S. Millera3138df2007-10-09 01:54:01 -070010140 goto err_out_iounmap;
10141 }
10142
10143 dev_set_drvdata(&op->dev, dev);
10144
10145 niu_device_announce(np);
10146
10147 return 0;
10148
10149err_out_iounmap:
10150 if (np->vir_regs_1) {
10151 of_iounmap(&op->resource[2], np->vir_regs_1,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010152 resource_size(&op->resource[2]));
David S. Millera3138df2007-10-09 01:54:01 -070010153 np->vir_regs_1 = NULL;
10154 }
10155
10156 if (np->vir_regs_2) {
10157 of_iounmap(&op->resource[3], np->vir_regs_2,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010158 resource_size(&op->resource[3]));
David S. Millera3138df2007-10-09 01:54:01 -070010159 np->vir_regs_2 = NULL;
10160 }
10161
10162 if (np->regs) {
10163 of_iounmap(&op->resource[1], np->regs,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010164 resource_size(&op->resource[1]));
David S. Millera3138df2007-10-09 01:54:01 -070010165 np->regs = NULL;
10166 }
10167
10168err_out_release_parent:
10169 niu_put_parent(np);
10170
10171err_out_free_dev:
10172 free_netdev(dev);
10173
10174err_out:
10175 return err;
10176}
10177
Grant Likely2dc11582010-08-06 09:25:50 -060010178static int __devexit niu_of_remove(struct platform_device *op)
David S. Millera3138df2007-10-09 01:54:01 -070010179{
10180 struct net_device *dev = dev_get_drvdata(&op->dev);
10181
10182 if (dev) {
10183 struct niu *np = netdev_priv(dev);
10184
10185 unregister_netdev(dev);
10186
10187 if (np->vir_regs_1) {
10188 of_iounmap(&op->resource[2], np->vir_regs_1,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010189 resource_size(&op->resource[2]));
David S. Millera3138df2007-10-09 01:54:01 -070010190 np->vir_regs_1 = NULL;
10191 }
10192
10193 if (np->vir_regs_2) {
10194 of_iounmap(&op->resource[3], np->vir_regs_2,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010195 resource_size(&op->resource[3]));
David S. Millera3138df2007-10-09 01:54:01 -070010196 np->vir_regs_2 = NULL;
10197 }
10198
10199 if (np->regs) {
10200 of_iounmap(&op->resource[1], np->regs,
Tobias Klauser6f0e0132009-09-09 01:41:30 -070010201 resource_size(&op->resource[1]));
David S. Millera3138df2007-10-09 01:54:01 -070010202 np->regs = NULL;
10203 }
10204
10205 niu_ldg_free(np);
10206
10207 niu_put_parent(np);
10208
10209 free_netdev(dev);
10210 dev_set_drvdata(&op->dev, NULL);
10211 }
10212 return 0;
10213}
10214
David S. Millerfd098312008-08-31 01:23:17 -070010215static const struct of_device_id niu_match[] = {
David S. Millera3138df2007-10-09 01:54:01 -070010216 {
10217 .name = "network",
10218 .compatible = "SUNW,niusl",
10219 },
10220 {},
10221};
10222MODULE_DEVICE_TABLE(of, niu_match);
10223
Grant Likely74888762011-02-22 21:05:51 -070010224static struct platform_driver niu_of_driver = {
Grant Likely40182942010-04-13 16:13:02 -070010225 .driver = {
10226 .name = "niu",
10227 .owner = THIS_MODULE,
10228 .of_match_table = niu_match,
10229 },
David S. Millera3138df2007-10-09 01:54:01 -070010230 .probe = niu_of_probe,
10231 .remove = __devexit_p(niu_of_remove),
10232};
10233
10234#endif /* CONFIG_SPARC64 */
10235
10236static int __init niu_init(void)
10237{
10238 int err = 0;
10239
Olof Johansson81429972007-10-21 16:32:58 -070010240 BUILD_BUG_ON(PAGE_SIZE < 4 * 1024);
David S. Millera3138df2007-10-09 01:54:01 -070010241
10242 niu_debug = netif_msg_init(debug, NIU_MSG_DEFAULT);
10243
10244#ifdef CONFIG_SPARC64
Grant Likely74888762011-02-22 21:05:51 -070010245 err = platform_driver_register(&niu_of_driver);
David S. Millera3138df2007-10-09 01:54:01 -070010246#endif
10247
10248 if (!err) {
10249 err = pci_register_driver(&niu_pci_driver);
10250#ifdef CONFIG_SPARC64
10251 if (err)
Grant Likely74888762011-02-22 21:05:51 -070010252 platform_driver_unregister(&niu_of_driver);
David S. Millera3138df2007-10-09 01:54:01 -070010253#endif
10254 }
10255
10256 return err;
10257}
10258
10259static void __exit niu_exit(void)
10260{
10261 pci_unregister_driver(&niu_pci_driver);
10262#ifdef CONFIG_SPARC64
Grant Likely74888762011-02-22 21:05:51 -070010263 platform_driver_unregister(&niu_of_driver);
David S. Millera3138df2007-10-09 01:54:01 -070010264#endif
10265}
10266
10267module_init(niu_init);
10268module_exit(niu_exit);