2 * Copyright (C) 2015 Cavium, Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License
6 * as published by the Free Software Foundation.
9 #include <linux/acpi.h>
10 #include <linux/module.h>
11 #include <linux/interrupt.h>
12 #include <linux/pci.h>
13 #include <linux/netdevice.h>
14 #include <linux/etherdevice.h>
15 #include <linux/phy.h>
17 #include <linux/of_mdio.h>
18 #include <linux/of_net.h>
22 #include "thunder_bgx.h"
24 #define DRV_NAME "thunder_bgx"
25 #define DRV_VERSION "1.0"
27 /* RX_DMAC_CTL configuration */
29 MCAST_MODE_REJECT
= 0x0,
30 MCAST_MODE_ACCEPT
= 0x1,
31 MCAST_MODE_CAM_FILTER
= 0x2,
35 #define BCAST_ACCEPT BIT(0)
36 #define CAM_ACCEPT BIT(3)
37 #define MCAST_MODE_MASK 0x3
38 #define BGX_MCAST_MODE(x) (x << 1)
47 /* actual number of DMACs configured */
49 /* overal number of possible DMACs could be configured per LMAC */
51 struct dmac_map
*dmacs
; /* DMAC:VFs tracking filter array */
58 int lmacid
; /* ID within BGX */
59 int lmacid_bd
; /* ID on board */
60 struct net_device netdev
;
61 struct phy_device
*phydev
;
62 unsigned int last_duplex
;
63 unsigned int last_link
;
64 unsigned int last_speed
;
66 struct delayed_work dwork
;
67 struct workqueue_struct
*check_link
;
72 struct lmac lmac
[MAX_LMAC_PER_BGX
];
76 void __iomem
*reg_base
;
82 static struct bgx
*bgx_vnic
[MAX_BGX_THUNDER
];
83 static int lmac_count
; /* Total no of LMACs in system */
85 static int bgx_xaui_check_link(struct lmac
*lmac
);
87 /* Supported devices */
88 static const struct pci_device_id bgx_id_table
[] = {
89 { PCI_DEVICE(PCI_VENDOR_ID_CAVIUM
, PCI_DEVICE_ID_THUNDER_BGX
) },
90 { PCI_DEVICE(PCI_VENDOR_ID_CAVIUM
, PCI_DEVICE_ID_THUNDER_RGX
) },
91 { 0, } /* end of table */
94 MODULE_AUTHOR("Cavium Inc");
95 MODULE_DESCRIPTION("Cavium Thunder BGX/MAC Driver");
96 MODULE_LICENSE("GPL v2");
97 MODULE_VERSION(DRV_VERSION
);
98 MODULE_DEVICE_TABLE(pci
, bgx_id_table
);
100 /* The Cavium ThunderX network controller can *only* be found in SoCs
101 * containing the ThunderX ARM64 CPU implementation. All accesses to the device
102 * registers on this platform are implicitly strongly ordered with respect
103 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use
104 * with no memory barriers in this driver. The readq()/writeq() functions add
105 * explicit ordering operation which in this case are redundant, and only
109 /* Register read/write APIs */
110 static u64
bgx_reg_read(struct bgx
*bgx
, u8 lmac
, u64 offset
)
112 void __iomem
*addr
= bgx
->reg_base
+ ((u32
)lmac
<< 20) + offset
;
114 return readq_relaxed(addr
);
117 static void bgx_reg_write(struct bgx
*bgx
, u8 lmac
, u64 offset
, u64 val
)
119 void __iomem
*addr
= bgx
->reg_base
+ ((u32
)lmac
<< 20) + offset
;
121 writeq_relaxed(val
, addr
);
124 static void bgx_reg_modify(struct bgx
*bgx
, u8 lmac
, u64 offset
, u64 val
)
126 void __iomem
*addr
= bgx
->reg_base
+ ((u32
)lmac
<< 20) + offset
;
128 writeq_relaxed(val
| readq_relaxed(addr
), addr
);
131 static int bgx_poll_reg(struct bgx
*bgx
, u8 lmac
, u64 reg
, u64 mask
, bool zero
)
137 reg_val
= bgx_reg_read(bgx
, lmac
, reg
);
138 if (zero
&& !(reg_val
& mask
))
140 if (!zero
&& (reg_val
& mask
))
142 usleep_range(1000, 2000);
148 static int max_bgx_per_node
;
149 static void set_max_bgx_per_node(struct pci_dev
*pdev
)
153 if (max_bgx_per_node
)
156 pci_read_config_word(pdev
, PCI_SUBSYSTEM_ID
, &sdevid
);
158 case PCI_SUBSYS_DEVID_81XX_BGX
:
159 case PCI_SUBSYS_DEVID_81XX_RGX
:
160 max_bgx_per_node
= MAX_BGX_PER_CN81XX
;
162 case PCI_SUBSYS_DEVID_83XX_BGX
:
163 max_bgx_per_node
= MAX_BGX_PER_CN83XX
;
165 case PCI_SUBSYS_DEVID_88XX_BGX
:
167 max_bgx_per_node
= MAX_BGX_PER_CN88XX
;
172 static struct bgx
*get_bgx(int node
, int bgx_idx
)
174 int idx
= (node
* max_bgx_per_node
) + bgx_idx
;
176 return bgx_vnic
[idx
];
179 /* Return number of BGX present in HW */
180 unsigned bgx_get_map(int node
)
185 for (i
= 0; i
< max_bgx_per_node
; i
++) {
186 if (bgx_vnic
[(node
* max_bgx_per_node
) + i
])
192 EXPORT_SYMBOL(bgx_get_map
);
194 /* Return number of LMAC configured for this BGX */
195 int bgx_get_lmac_count(int node
, int bgx_idx
)
199 bgx
= get_bgx(node
, bgx_idx
);
201 return bgx
->lmac_count
;
205 EXPORT_SYMBOL(bgx_get_lmac_count
);
207 /* Returns the current link status of LMAC */
208 void bgx_get_lmac_link_state(int node
, int bgx_idx
, int lmacid
, void *status
)
210 struct bgx_link_status
*link
= (struct bgx_link_status
*)status
;
214 bgx
= get_bgx(node
, bgx_idx
);
218 lmac
= &bgx
->lmac
[lmacid
];
219 link
->mac_type
= lmac
->lmac_type
;
220 link
->link_up
= lmac
->link_up
;
221 link
->duplex
= lmac
->last_duplex
;
222 link
->speed
= lmac
->last_speed
;
224 EXPORT_SYMBOL(bgx_get_lmac_link_state
);
226 const u8
*bgx_get_lmac_mac(int node
, int bgx_idx
, int lmacid
)
228 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
231 return bgx
->lmac
[lmacid
].mac
;
235 EXPORT_SYMBOL(bgx_get_lmac_mac
);
237 void bgx_set_lmac_mac(int node
, int bgx_idx
, int lmacid
, const u8
*mac
)
239 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
244 ether_addr_copy(bgx
->lmac
[lmacid
].mac
, mac
);
246 EXPORT_SYMBOL(bgx_set_lmac_mac
);
248 static void bgx_flush_dmac_cam_filter(struct bgx
*bgx
, int lmacid
)
250 struct lmac
*lmac
= NULL
;
253 lmac
= &bgx
->lmac
[lmacid
];
254 /* reset CAM filters */
255 for (idx
= 0; idx
< lmac
->dmacs_count
; idx
++)
256 bgx_reg_write(bgx
, 0, BGX_CMR_RX_DMACX_CAM
+
257 ((lmacid
* lmac
->dmacs_count
) + idx
) *
261 static void bgx_lmac_remove_filters(struct lmac
*lmac
, u8 vf_id
)
268 /* We've got reset filters request from some of attached VF, while the
269 * others might want to keep their configuration. So in this case lets
270 * iterate over all of configured filters and decrease number of
271 * referencies. if some addresses get zero refs remove them from list
273 for (i
= lmac
->dmacs_cfg
- 1; i
>= 0; i
--) {
274 lmac
->dmacs
[i
].vf_map
&= ~BIT_ULL(vf_id
);
275 if (!lmac
->dmacs
[i
].vf_map
) {
277 lmac
->dmacs
[i
].dmac
= 0;
278 lmac
->dmacs
[i
].vf_map
= 0;
283 static int bgx_lmac_save_filter(struct lmac
*lmac
, u64 dmac
, u8 vf_id
)
290 /* At the same time we could have several VFs 'attached' to some
291 * particular LMAC, and each VF is represented as network interface
292 * for kernel. So from user perspective it should be possible to
293 * manipulate with its' (VF) receive modes. However from PF
294 * driver perspective we need to keep track of filter configurations
295 * for different VFs to prevent filter values dupes
297 for (i
= 0; i
< lmac
->dmacs_cfg
; i
++) {
298 if (lmac
->dmacs
[i
].dmac
== dmac
) {
299 lmac
->dmacs
[i
].vf_map
|= BIT_ULL(vf_id
);
304 if (!(lmac
->dmacs_cfg
< lmac
->dmacs_count
))
307 /* keep it for further tracking */
308 lmac
->dmacs
[lmac
->dmacs_cfg
].dmac
= dmac
;
309 lmac
->dmacs
[lmac
->dmacs_cfg
].vf_map
= BIT_ULL(vf_id
);
314 static int bgx_set_dmac_cam_filter_mac(struct bgx
*bgx
, int lmacid
,
315 u64 cam_dmac
, u8 idx
)
317 struct lmac
*lmac
= NULL
;
320 /* skip zero addresses as meaningless */
321 if (!cam_dmac
|| !bgx
)
324 lmac
= &bgx
->lmac
[lmacid
];
326 /* configure DCAM filtering for designated LMAC */
327 cfg
= RX_DMACX_CAM_LMACID(lmacid
& LMAC_ID_MASK
) |
328 RX_DMACX_CAM_EN
| cam_dmac
;
329 bgx_reg_write(bgx
, 0, BGX_CMR_RX_DMACX_CAM
+
330 ((lmacid
* lmac
->dmacs_count
) + idx
) * sizeof(u64
), cfg
);
334 void bgx_set_dmac_cam_filter(int node
, int bgx_idx
, int lmacid
,
335 u64 cam_dmac
, u8 vf_id
)
337 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
338 struct lmac
*lmac
= NULL
;
343 lmac
= &bgx
->lmac
[lmacid
];
346 cam_dmac
= ether_addr_to_u64(lmac
->mac
);
348 /* since we might have several VFs attached to particular LMAC
349 * and kernel could call mcast config for each of them with the
350 * same MAC, check if requested MAC is already in filtering list and
351 * updare/prepare list of MACs to be applied later to HW filters
353 bgx_lmac_save_filter(lmac
, cam_dmac
, vf_id
);
355 EXPORT_SYMBOL(bgx_set_dmac_cam_filter
);
357 void bgx_set_xcast_mode(int node
, int bgx_idx
, int lmacid
, u8 mode
)
359 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
360 struct lmac
*lmac
= NULL
;
367 lmac
= &bgx
->lmac
[lmacid
];
369 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_CMRX_RX_DMAC_CTL
);
370 if (mode
& BGX_XCAST_BCAST_ACCEPT
)
373 cfg
&= ~BCAST_ACCEPT
;
375 /* disable all MCASTs and DMAC filtering */
376 cfg
&= ~(CAM_ACCEPT
| BGX_MCAST_MODE(MCAST_MODE_MASK
));
378 /* check requested bits and set filtergin mode appropriately */
379 if (mode
& (BGX_XCAST_MCAST_ACCEPT
)) {
380 cfg
|= (BGX_MCAST_MODE(MCAST_MODE_ACCEPT
));
381 } else if (mode
& BGX_XCAST_MCAST_FILTER
) {
382 cfg
|= (BGX_MCAST_MODE(MCAST_MODE_CAM_FILTER
) | CAM_ACCEPT
);
383 for (i
= 0; i
< lmac
->dmacs_cfg
; i
++)
384 bgx_set_dmac_cam_filter_mac(bgx
, lmacid
,
385 lmac
->dmacs
[i
].dmac
, i
);
387 bgx_reg_write(bgx
, lmacid
, BGX_CMRX_RX_DMAC_CTL
, cfg
);
389 EXPORT_SYMBOL(bgx_set_xcast_mode
);
391 void bgx_reset_xcast_mode(int node
, int bgx_idx
, int lmacid
, u8 vf_id
)
393 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
398 bgx_lmac_remove_filters(&bgx
->lmac
[lmacid
], vf_id
);
399 bgx_flush_dmac_cam_filter(bgx
, lmacid
);
400 bgx_set_xcast_mode(node
, bgx_idx
, lmacid
,
401 (BGX_XCAST_BCAST_ACCEPT
| BGX_XCAST_MCAST_ACCEPT
));
403 EXPORT_SYMBOL(bgx_reset_xcast_mode
);
405 void bgx_lmac_rx_tx_enable(int node
, int bgx_idx
, int lmacid
, bool enable
)
407 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
413 lmac
= &bgx
->lmac
[lmacid
];
415 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_CMRX_CFG
);
417 cfg
|= CMR_PKT_RX_EN
| CMR_PKT_TX_EN
;
419 cfg
&= ~(CMR_PKT_RX_EN
| CMR_PKT_TX_EN
);
420 bgx_reg_write(bgx
, lmacid
, BGX_CMRX_CFG
, cfg
);
423 xcv_setup_link(enable
? lmac
->link_up
: 0, lmac
->last_speed
);
425 EXPORT_SYMBOL(bgx_lmac_rx_tx_enable
);
427 /* Enables or disables timestamp insertion by BGX for Rx packets */
428 void bgx_config_timestamping(int node
, int bgx_idx
, int lmacid
, bool enable
)
430 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
437 lmac
= &bgx
->lmac
[lmacid
];
439 if (lmac
->lmac_type
== BGX_MODE_SGMII
||
440 lmac
->lmac_type
== BGX_MODE_QSGMII
||
441 lmac
->lmac_type
== BGX_MODE_RGMII
)
442 csr_offset
= BGX_GMP_GMI_RXX_FRM_CTL
;
444 csr_offset
= BGX_SMUX_RX_FRM_CTL
;
446 cfg
= bgx_reg_read(bgx
, lmacid
, csr_offset
);
449 cfg
|= BGX_PKT_RX_PTP_EN
;
451 cfg
&= ~BGX_PKT_RX_PTP_EN
;
452 bgx_reg_write(bgx
, lmacid
, csr_offset
, cfg
);
454 EXPORT_SYMBOL(bgx_config_timestamping
);
456 void bgx_lmac_get_pfc(int node
, int bgx_idx
, int lmacid
, void *pause
)
458 struct pfc
*pfc
= (struct pfc
*)pause
;
459 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
465 lmac
= &bgx
->lmac
[lmacid
];
469 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SMUX_CBFC_CTL
);
470 pfc
->fc_rx
= cfg
& RX_EN
;
471 pfc
->fc_tx
= cfg
& TX_EN
;
474 EXPORT_SYMBOL(bgx_lmac_get_pfc
);
476 void bgx_lmac_set_pfc(int node
, int bgx_idx
, int lmacid
, void *pause
)
478 struct pfc
*pfc
= (struct pfc
*)pause
;
479 struct bgx
*bgx
= get_bgx(node
, bgx_idx
);
485 lmac
= &bgx
->lmac
[lmacid
];
489 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SMUX_CBFC_CTL
);
490 cfg
&= ~(RX_EN
| TX_EN
);
491 cfg
|= (pfc
->fc_rx
? RX_EN
: 0x00);
492 cfg
|= (pfc
->fc_tx
? TX_EN
: 0x00);
493 bgx_reg_write(bgx
, lmacid
, BGX_SMUX_CBFC_CTL
, cfg
);
495 EXPORT_SYMBOL(bgx_lmac_set_pfc
);
497 static void bgx_sgmii_change_link_state(struct lmac
*lmac
)
499 struct bgx
*bgx
= lmac
->bgx
;
505 cmr_cfg
= bgx_reg_read(bgx
, lmac
->lmacid
, BGX_CMRX_CFG
);
506 tx_en
= cmr_cfg
& CMR_PKT_TX_EN
;
507 rx_en
= cmr_cfg
& CMR_PKT_RX_EN
;
508 cmr_cfg
&= ~(CMR_PKT_RX_EN
| CMR_PKT_TX_EN
);
509 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_CMRX_CFG
, cmr_cfg
);
511 /* Wait for BGX RX to be idle */
512 if (bgx_poll_reg(bgx
, lmac
->lmacid
, BGX_GMP_GMI_PRTX_CFG
,
513 GMI_PORT_CFG_RX_IDLE
, false)) {
514 dev_err(&bgx
->pdev
->dev
, "BGX%d LMAC%d GMI RX not idle\n",
515 bgx
->bgx_id
, lmac
->lmacid
);
519 /* Wait for BGX TX to be idle */
520 if (bgx_poll_reg(bgx
, lmac
->lmacid
, BGX_GMP_GMI_PRTX_CFG
,
521 GMI_PORT_CFG_TX_IDLE
, false)) {
522 dev_err(&bgx
->pdev
->dev
, "BGX%d LMAC%d GMI TX not idle\n",
523 bgx
->bgx_id
, lmac
->lmacid
);
527 port_cfg
= bgx_reg_read(bgx
, lmac
->lmacid
, BGX_GMP_GMI_PRTX_CFG
);
528 misc_ctl
= bgx_reg_read(bgx
, lmac
->lmacid
, BGX_GMP_PCS_MISCX_CTL
);
531 misc_ctl
&= ~PCS_MISC_CTL_GMX_ENO
;
532 port_cfg
&= ~GMI_PORT_CFG_DUPLEX
;
533 port_cfg
|= (lmac
->last_duplex
<< 2);
535 misc_ctl
|= PCS_MISC_CTL_GMX_ENO
;
538 switch (lmac
->last_speed
) {
540 port_cfg
&= ~GMI_PORT_CFG_SPEED
; /* speed 0 */
541 port_cfg
|= GMI_PORT_CFG_SPEED_MSB
; /* speed_msb 1 */
542 port_cfg
&= ~GMI_PORT_CFG_SLOT_TIME
; /* slottime 0 */
543 misc_ctl
&= ~PCS_MISC_CTL_SAMP_PT_MASK
;
544 misc_ctl
|= 50; /* samp_pt */
545 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_GMP_GMI_TXX_SLOT
, 64);
546 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_GMP_GMI_TXX_BURST
, 0);
549 port_cfg
&= ~GMI_PORT_CFG_SPEED
; /* speed 0 */
550 port_cfg
&= ~GMI_PORT_CFG_SPEED_MSB
; /* speed_msb 0 */
551 port_cfg
&= ~GMI_PORT_CFG_SLOT_TIME
; /* slottime 0 */
552 misc_ctl
&= ~PCS_MISC_CTL_SAMP_PT_MASK
;
553 misc_ctl
|= 5; /* samp_pt */
554 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_GMP_GMI_TXX_SLOT
, 64);
555 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_GMP_GMI_TXX_BURST
, 0);
558 port_cfg
|= GMI_PORT_CFG_SPEED
; /* speed 1 */
559 port_cfg
&= ~GMI_PORT_CFG_SPEED_MSB
; /* speed_msb 0 */
560 port_cfg
|= GMI_PORT_CFG_SLOT_TIME
; /* slottime 1 */
561 misc_ctl
&= ~PCS_MISC_CTL_SAMP_PT_MASK
;
562 misc_ctl
|= 1; /* samp_pt */
563 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_GMP_GMI_TXX_SLOT
, 512);
564 if (lmac
->last_duplex
)
565 bgx_reg_write(bgx
, lmac
->lmacid
,
566 BGX_GMP_GMI_TXX_BURST
, 0);
568 bgx_reg_write(bgx
, lmac
->lmacid
,
569 BGX_GMP_GMI_TXX_BURST
, 8192);
574 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_GMP_PCS_MISCX_CTL
, misc_ctl
);
575 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_GMP_GMI_PRTX_CFG
, port_cfg
);
577 /* Restore CMR config settings */
578 cmr_cfg
|= (rx_en
? CMR_PKT_RX_EN
: 0) | (tx_en
? CMR_PKT_TX_EN
: 0);
579 bgx_reg_write(bgx
, lmac
->lmacid
, BGX_CMRX_CFG
, cmr_cfg
);
581 if (bgx
->is_rgx
&& (cmr_cfg
& (CMR_PKT_RX_EN
| CMR_PKT_TX_EN
)))
582 xcv_setup_link(lmac
->link_up
, lmac
->last_speed
);
585 static void bgx_lmac_handler(struct net_device
*netdev
)
587 struct lmac
*lmac
= container_of(netdev
, struct lmac
, netdev
);
588 struct phy_device
*phydev
;
589 int link_changed
= 0;
594 phydev
= lmac
->phydev
;
596 if (!phydev
->link
&& lmac
->last_link
)
600 (lmac
->last_duplex
!= phydev
->duplex
||
601 lmac
->last_link
!= phydev
->link
||
602 lmac
->last_speed
!= phydev
->speed
)) {
606 lmac
->last_link
= phydev
->link
;
607 lmac
->last_speed
= phydev
->speed
;
608 lmac
->last_duplex
= phydev
->duplex
;
613 if (link_changed
> 0)
614 lmac
->link_up
= true;
616 lmac
->link_up
= false;
619 bgx_sgmii_change_link_state(lmac
);
621 bgx_xaui_check_link(lmac
);
624 u64
bgx_get_rx_stats(int node
, int bgx_idx
, int lmac
, int idx
)
628 bgx
= get_bgx(node
, bgx_idx
);
634 return bgx_reg_read(bgx
, lmac
, BGX_CMRX_RX_STAT0
+ (idx
* 8));
636 EXPORT_SYMBOL(bgx_get_rx_stats
);
638 u64
bgx_get_tx_stats(int node
, int bgx_idx
, int lmac
, int idx
)
642 bgx
= get_bgx(node
, bgx_idx
);
646 return bgx_reg_read(bgx
, lmac
, BGX_CMRX_TX_STAT0
+ (idx
* 8));
648 EXPORT_SYMBOL(bgx_get_tx_stats
);
650 /* Configure BGX LMAC in internal loopback mode */
651 void bgx_lmac_internal_loopback(int node
, int bgx_idx
,
652 int lmac_idx
, bool enable
)
658 bgx
= get_bgx(node
, bgx_idx
);
662 lmac
= &bgx
->lmac
[lmac_idx
];
663 if (lmac
->is_sgmii
) {
664 cfg
= bgx_reg_read(bgx
, lmac_idx
, BGX_GMP_PCS_MRX_CTL
);
666 cfg
|= PCS_MRX_CTL_LOOPBACK1
;
668 cfg
&= ~PCS_MRX_CTL_LOOPBACK1
;
669 bgx_reg_write(bgx
, lmac_idx
, BGX_GMP_PCS_MRX_CTL
, cfg
);
671 cfg
= bgx_reg_read(bgx
, lmac_idx
, BGX_SPUX_CONTROL1
);
673 cfg
|= SPU_CTL_LOOPBACK
;
675 cfg
&= ~SPU_CTL_LOOPBACK
;
676 bgx_reg_write(bgx
, lmac_idx
, BGX_SPUX_CONTROL1
, cfg
);
679 EXPORT_SYMBOL(bgx_lmac_internal_loopback
);
681 static int bgx_lmac_sgmii_init(struct bgx
*bgx
, struct lmac
*lmac
)
683 int lmacid
= lmac
->lmacid
;
686 bgx_reg_modify(bgx
, lmacid
, BGX_GMP_GMI_TXX_THRESH
, 0x30);
687 /* max packet size */
688 bgx_reg_modify(bgx
, lmacid
, BGX_GMP_GMI_RXX_JABBER
, MAX_FRAME_SIZE
);
690 /* Disable frame alignment if using preamble */
691 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_GMP_GMI_TXX_APPEND
);
693 bgx_reg_write(bgx
, lmacid
, BGX_GMP_GMI_TXX_SGMII_CTL
, 0);
696 bgx_reg_modify(bgx
, lmacid
, BGX_CMRX_CFG
, CMR_EN
);
699 bgx_reg_modify(bgx
, lmacid
, BGX_GMP_PCS_MRX_CTL
, PCS_MRX_CTL_RESET
);
700 if (bgx_poll_reg(bgx
, lmacid
, BGX_GMP_PCS_MRX_CTL
,
701 PCS_MRX_CTL_RESET
, true)) {
702 dev_err(&bgx
->pdev
->dev
, "BGX PCS reset not completed\n");
706 /* power down, reset autoneg, autoneg enable */
707 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_GMP_PCS_MRX_CTL
);
708 cfg
&= ~PCS_MRX_CTL_PWR_DN
;
709 cfg
|= PCS_MRX_CTL_RST_AN
;
711 cfg
|= PCS_MRX_CTL_AN_EN
;
713 /* In scenarios where PHY driver is not present or it's a
714 * non-standard PHY, FW sets AN_EN to inform Linux driver
715 * to do auto-neg and link polling or not.
717 if (cfg
& PCS_MRX_CTL_AN_EN
)
718 lmac
->autoneg
= true;
720 bgx_reg_write(bgx
, lmacid
, BGX_GMP_PCS_MRX_CTL
, cfg
);
722 if (lmac
->lmac_type
== BGX_MODE_QSGMII
) {
723 /* Disable disparity check for QSGMII */
724 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_GMP_PCS_MISCX_CTL
);
725 cfg
&= ~PCS_MISC_CTL_DISP_EN
;
726 bgx_reg_write(bgx
, lmacid
, BGX_GMP_PCS_MISCX_CTL
, cfg
);
730 if ((lmac
->lmac_type
== BGX_MODE_SGMII
) && lmac
->phydev
) {
731 if (bgx_poll_reg(bgx
, lmacid
, BGX_GMP_PCS_MRX_STATUS
,
732 PCS_MRX_STATUS_AN_CPT
, false)) {
733 dev_err(&bgx
->pdev
->dev
, "BGX AN_CPT not completed\n");
741 static int bgx_lmac_xaui_init(struct bgx
*bgx
, struct lmac
*lmac
)
744 int lmacid
= lmac
->lmacid
;
747 bgx_reg_modify(bgx
, lmacid
, BGX_SPUX_CONTROL1
, SPU_CTL_RESET
);
748 if (bgx_poll_reg(bgx
, lmacid
, BGX_SPUX_CONTROL1
, SPU_CTL_RESET
, true)) {
749 dev_err(&bgx
->pdev
->dev
, "BGX SPU reset not completed\n");
754 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_CMRX_CFG
);
756 bgx_reg_write(bgx
, lmacid
, BGX_CMRX_CFG
, cfg
);
758 bgx_reg_modify(bgx
, lmacid
, BGX_SPUX_CONTROL1
, SPU_CTL_LOW_POWER
);
759 /* Set interleaved running disparity for RXAUI */
760 if (lmac
->lmac_type
== BGX_MODE_RXAUI
)
761 bgx_reg_modify(bgx
, lmacid
, BGX_SPUX_MISC_CONTROL
,
762 SPU_MISC_CTL_INTLV_RDISP
);
764 /* Clear receive packet disable */
765 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_MISC_CONTROL
);
766 cfg
&= ~SPU_MISC_CTL_RX_DIS
;
767 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_MISC_CONTROL
, cfg
);
769 /* clear all interrupts */
770 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SMUX_RX_INT
);
771 bgx_reg_write(bgx
, lmacid
, BGX_SMUX_RX_INT
, cfg
);
772 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SMUX_TX_INT
);
773 bgx_reg_write(bgx
, lmacid
, BGX_SMUX_TX_INT
, cfg
);
774 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_INT
);
775 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_INT
, cfg
);
777 if (lmac
->use_training
) {
778 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_BR_PMD_LP_CUP
, 0x00);
779 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_BR_PMD_LD_CUP
, 0x00);
780 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_BR_PMD_LD_REP
, 0x00);
781 /* training enable */
782 bgx_reg_modify(bgx
, lmacid
,
783 BGX_SPUX_BR_PMD_CRTL
, SPU_PMD_CRTL_TRAIN_EN
);
786 /* Append FCS to each packet */
787 bgx_reg_modify(bgx
, lmacid
, BGX_SMUX_TX_APPEND
, SMU_TX_APPEND_FCS_D
);
789 /* Disable forward error correction */
790 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_FEC_CONTROL
);
791 cfg
&= ~SPU_FEC_CTL_FEC_EN
;
792 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_FEC_CONTROL
, cfg
);
794 /* Disable autoneg */
795 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_AN_CONTROL
);
796 cfg
= cfg
& ~(SPU_AN_CTL_AN_EN
| SPU_AN_CTL_XNP_EN
);
797 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_AN_CONTROL
, cfg
);
799 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_AN_ADV
);
800 if (lmac
->lmac_type
== BGX_MODE_10G_KR
)
802 else if (lmac
->lmac_type
== BGX_MODE_40G_KR
)
805 cfg
&= ~((1 << 23) | (1 << 24));
806 cfg
= cfg
& (~((1ULL << 25) | (1ULL << 22) | (1ULL << 12)));
807 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_AN_ADV
, cfg
);
809 cfg
= bgx_reg_read(bgx
, 0, BGX_SPU_DBG_CONTROL
);
810 cfg
&= ~SPU_DBG_CTL_AN_ARB_LINK_CHK_EN
;
811 bgx_reg_write(bgx
, 0, BGX_SPU_DBG_CONTROL
, cfg
);
814 bgx_reg_modify(bgx
, lmacid
, BGX_CMRX_CFG
, CMR_EN
);
816 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_CONTROL1
);
817 cfg
&= ~SPU_CTL_LOW_POWER
;
818 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_CONTROL1
, cfg
);
820 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SMUX_TX_CTL
);
821 cfg
&= ~SMU_TX_CTL_UNI_EN
;
822 cfg
|= SMU_TX_CTL_DIC_EN
;
823 bgx_reg_write(bgx
, lmacid
, BGX_SMUX_TX_CTL
, cfg
);
825 /* Enable receive and transmission of pause frames */
826 bgx_reg_write(bgx
, lmacid
, BGX_SMUX_CBFC_CTL
, ((0xffffULL
<< 32) |
827 BCK_EN
| DRP_EN
| TX_EN
| RX_EN
));
828 /* Configure pause time and interval */
829 bgx_reg_write(bgx
, lmacid
,
830 BGX_SMUX_TX_PAUSE_PKT_TIME
, DEFAULT_PAUSE_TIME
);
831 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SMUX_TX_PAUSE_PKT_INTERVAL
);
833 bgx_reg_write(bgx
, lmacid
, BGX_SMUX_TX_PAUSE_PKT_INTERVAL
,
834 cfg
| (DEFAULT_PAUSE_TIME
- 0x1000));
835 bgx_reg_write(bgx
, lmacid
, BGX_SMUX_TX_PAUSE_ZERO
, 0x01);
837 /* take lmac_count into account */
838 bgx_reg_modify(bgx
, lmacid
, BGX_SMUX_TX_THRESH
, (0x100 - 1));
839 /* max packet size */
840 bgx_reg_modify(bgx
, lmacid
, BGX_SMUX_RX_JABBER
, MAX_FRAME_SIZE
);
845 static int bgx_xaui_check_link(struct lmac
*lmac
)
847 struct bgx
*bgx
= lmac
->bgx
;
848 int lmacid
= lmac
->lmacid
;
849 int lmac_type
= lmac
->lmac_type
;
852 if (lmac
->use_training
) {
853 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_INT
);
854 if (!(cfg
& (1ull << 13))) {
855 cfg
= (1ull << 13) | (1ull << 14);
856 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_INT
, cfg
);
857 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_BR_PMD_CRTL
);
859 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_BR_PMD_CRTL
, cfg
);
864 /* wait for PCS to come out of reset */
865 if (bgx_poll_reg(bgx
, lmacid
, BGX_SPUX_CONTROL1
, SPU_CTL_RESET
, true)) {
866 dev_err(&bgx
->pdev
->dev
, "BGX SPU reset not completed\n");
870 if ((lmac_type
== BGX_MODE_10G_KR
) || (lmac_type
== BGX_MODE_XFI
) ||
871 (lmac_type
== BGX_MODE_40G_KR
) || (lmac_type
== BGX_MODE_XLAUI
)) {
872 if (bgx_poll_reg(bgx
, lmacid
, BGX_SPUX_BR_STATUS1
,
873 SPU_BR_STATUS_BLK_LOCK
, false)) {
874 dev_err(&bgx
->pdev
->dev
,
875 "SPU_BR_STATUS_BLK_LOCK not completed\n");
879 if (bgx_poll_reg(bgx
, lmacid
, BGX_SPUX_BX_STATUS
,
880 SPU_BX_STATUS_RX_ALIGN
, false)) {
881 dev_err(&bgx
->pdev
->dev
,
882 "SPU_BX_STATUS_RX_ALIGN not completed\n");
887 /* Clear rcvflt bit (latching high) and read it back */
888 if (bgx_reg_read(bgx
, lmacid
, BGX_SPUX_STATUS2
) & SPU_STATUS2_RCVFLT
)
889 bgx_reg_modify(bgx
, lmacid
,
890 BGX_SPUX_STATUS2
, SPU_STATUS2_RCVFLT
);
891 if (bgx_reg_read(bgx
, lmacid
, BGX_SPUX_STATUS2
) & SPU_STATUS2_RCVFLT
) {
892 dev_err(&bgx
->pdev
->dev
, "Receive fault, retry training\n");
893 if (lmac
->use_training
) {
894 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_INT
);
895 if (!(cfg
& (1ull << 13))) {
896 cfg
= (1ull << 13) | (1ull << 14);
897 bgx_reg_write(bgx
, lmacid
, BGX_SPUX_INT
, cfg
);
898 cfg
= bgx_reg_read(bgx
, lmacid
,
899 BGX_SPUX_BR_PMD_CRTL
);
901 bgx_reg_write(bgx
, lmacid
,
902 BGX_SPUX_BR_PMD_CRTL
, cfg
);
909 /* Wait for BGX RX to be idle */
910 if (bgx_poll_reg(bgx
, lmacid
, BGX_SMUX_CTL
, SMU_CTL_RX_IDLE
, false)) {
911 dev_err(&bgx
->pdev
->dev
, "SMU RX not idle\n");
915 /* Wait for BGX TX to be idle */
916 if (bgx_poll_reg(bgx
, lmacid
, BGX_SMUX_CTL
, SMU_CTL_TX_IDLE
, false)) {
917 dev_err(&bgx
->pdev
->dev
, "SMU TX not idle\n");
921 /* Check for MAC RX faults */
922 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SMUX_RX_CTL
);
923 /* 0 - Link is okay, 1 - Local fault, 2 - Remote fault */
924 cfg
&= SMU_RX_CTL_STATUS
;
928 /* Rx local/remote fault seen.
929 * Do lmac reinit to see if condition recovers
931 bgx_lmac_xaui_init(bgx
, lmac
);
936 static void bgx_poll_for_sgmii_link(struct lmac
*lmac
)
938 u64 pcs_link
, an_result
;
941 pcs_link
= bgx_reg_read(lmac
->bgx
, lmac
->lmacid
,
942 BGX_GMP_PCS_MRX_STATUS
);
944 /*Link state bit is sticky, read it again*/
945 if (!(pcs_link
& PCS_MRX_STATUS_LINK
))
946 pcs_link
= bgx_reg_read(lmac
->bgx
, lmac
->lmacid
,
947 BGX_GMP_PCS_MRX_STATUS
);
949 if (bgx_poll_reg(lmac
->bgx
, lmac
->lmacid
, BGX_GMP_PCS_MRX_STATUS
,
950 PCS_MRX_STATUS_AN_CPT
, false)) {
951 lmac
->link_up
= false;
952 lmac
->last_speed
= SPEED_UNKNOWN
;
953 lmac
->last_duplex
= DUPLEX_UNKNOWN
;
957 lmac
->link_up
= ((pcs_link
& PCS_MRX_STATUS_LINK
) != 0) ? true : false;
958 an_result
= bgx_reg_read(lmac
->bgx
, lmac
->lmacid
,
959 BGX_GMP_PCS_ANX_AN_RESULTS
);
961 speed
= (an_result
>> 3) & 0x3;
962 lmac
->last_duplex
= (an_result
>> 1) & 0x1;
965 lmac
->last_speed
= 10;
968 lmac
->last_speed
= 100;
971 lmac
->last_speed
= 1000;
974 lmac
->link_up
= false;
975 lmac
->last_speed
= SPEED_UNKNOWN
;
976 lmac
->last_duplex
= DUPLEX_UNKNOWN
;
982 if (lmac
->last_link
!= lmac
->link_up
) {
984 bgx_sgmii_change_link_state(lmac
);
985 lmac
->last_link
= lmac
->link_up
;
988 queue_delayed_work(lmac
->check_link
, &lmac
->dwork
, HZ
* 3);
991 static void bgx_poll_for_link(struct work_struct
*work
)
994 u64 spu_link
, smu_link
;
996 lmac
= container_of(work
, struct lmac
, dwork
.work
);
997 if (lmac
->is_sgmii
) {
998 bgx_poll_for_sgmii_link(lmac
);
1002 /* Receive link is latching low. Force it high and verify it */
1003 bgx_reg_modify(lmac
->bgx
, lmac
->lmacid
,
1004 BGX_SPUX_STATUS1
, SPU_STATUS1_RCV_LNK
);
1005 bgx_poll_reg(lmac
->bgx
, lmac
->lmacid
, BGX_SPUX_STATUS1
,
1006 SPU_STATUS1_RCV_LNK
, false);
1008 spu_link
= bgx_reg_read(lmac
->bgx
, lmac
->lmacid
, BGX_SPUX_STATUS1
);
1009 smu_link
= bgx_reg_read(lmac
->bgx
, lmac
->lmacid
, BGX_SMUX_RX_CTL
);
1011 if ((spu_link
& SPU_STATUS1_RCV_LNK
) &&
1012 !(smu_link
& SMU_RX_CTL_STATUS
)) {
1014 if (lmac
->lmac_type
== BGX_MODE_XLAUI
)
1015 lmac
->last_speed
= 40000;
1017 lmac
->last_speed
= 10000;
1018 lmac
->last_duplex
= 1;
1021 lmac
->last_speed
= SPEED_UNKNOWN
;
1022 lmac
->last_duplex
= DUPLEX_UNKNOWN
;
1025 if (lmac
->last_link
!= lmac
->link_up
) {
1026 if (lmac
->link_up
) {
1027 if (bgx_xaui_check_link(lmac
)) {
1028 /* Errors, clear link_up state */
1030 lmac
->last_speed
= SPEED_UNKNOWN
;
1031 lmac
->last_duplex
= DUPLEX_UNKNOWN
;
1034 lmac
->last_link
= lmac
->link_up
;
1037 queue_delayed_work(lmac
->check_link
, &lmac
->dwork
, HZ
* 2);
1040 static int phy_interface_mode(u8 lmac_type
)
1042 if (lmac_type
== BGX_MODE_QSGMII
)
1043 return PHY_INTERFACE_MODE_QSGMII
;
1044 if (lmac_type
== BGX_MODE_RGMII
)
1045 return PHY_INTERFACE_MODE_RGMII
;
1047 return PHY_INTERFACE_MODE_SGMII
;
1050 static int bgx_lmac_enable(struct bgx
*bgx
, u8 lmacid
)
1055 lmac
= &bgx
->lmac
[lmacid
];
1058 if ((lmac
->lmac_type
== BGX_MODE_SGMII
) ||
1059 (lmac
->lmac_type
== BGX_MODE_QSGMII
) ||
1060 (lmac
->lmac_type
== BGX_MODE_RGMII
)) {
1062 if (bgx_lmac_sgmii_init(bgx
, lmac
))
1066 if (bgx_lmac_xaui_init(bgx
, lmac
))
1070 if (lmac
->is_sgmii
) {
1071 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_GMP_GMI_TXX_APPEND
);
1072 cfg
|= ((1ull << 2) | (1ull << 1)); /* FCS and PAD */
1073 bgx_reg_modify(bgx
, lmacid
, BGX_GMP_GMI_TXX_APPEND
, cfg
);
1074 bgx_reg_write(bgx
, lmacid
, BGX_GMP_GMI_TXX_MIN_PKT
, 60 - 1);
1076 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_SMUX_TX_APPEND
);
1077 cfg
|= ((1ull << 2) | (1ull << 1)); /* FCS and PAD */
1078 bgx_reg_modify(bgx
, lmacid
, BGX_SMUX_TX_APPEND
, cfg
);
1079 bgx_reg_write(bgx
, lmacid
, BGX_SMUX_TX_MIN_PKT
, 60 + 4);
1082 /* actual number of filters available to exact LMAC */
1083 lmac
->dmacs_count
= (RX_DMAC_COUNT
/ bgx
->lmac_count
);
1084 lmac
->dmacs
= kcalloc(lmac
->dmacs_count
, sizeof(*lmac
->dmacs
),
1088 bgx_reg_modify(bgx
, lmacid
, BGX_CMRX_CFG
, CMR_EN
);
1090 /* Restore default cfg, incase low level firmware changed it */
1091 bgx_reg_write(bgx
, lmacid
, BGX_CMRX_RX_DMAC_CTL
, 0x03);
1093 if ((lmac
->lmac_type
!= BGX_MODE_XFI
) &&
1094 (lmac
->lmac_type
!= BGX_MODE_XLAUI
) &&
1095 (lmac
->lmac_type
!= BGX_MODE_40G_KR
) &&
1096 (lmac
->lmac_type
!= BGX_MODE_10G_KR
)) {
1097 if (!lmac
->phydev
) {
1098 if (lmac
->autoneg
) {
1099 bgx_reg_write(bgx
, lmacid
,
1100 BGX_GMP_PCS_LINKX_TIMER
,
1101 PCS_LINKX_TIMER_COUNT
);
1104 /* Default to below link speed and duplex */
1105 lmac
->link_up
= true;
1106 lmac
->last_speed
= 1000;
1107 lmac
->last_duplex
= 1;
1108 bgx_sgmii_change_link_state(lmac
);
1112 lmac
->phydev
->dev_flags
= 0;
1114 if (phy_connect_direct(&lmac
->netdev
, lmac
->phydev
,
1116 phy_interface_mode(lmac
->lmac_type
)))
1119 phy_start_aneg(lmac
->phydev
);
1124 lmac
->check_link
= alloc_workqueue("check_link", WQ_UNBOUND
|
1126 if (!lmac
->check_link
)
1128 INIT_DELAYED_WORK(&lmac
->dwork
, bgx_poll_for_link
);
1129 queue_delayed_work(lmac
->check_link
, &lmac
->dwork
, 0);
1134 static void bgx_lmac_disable(struct bgx
*bgx
, u8 lmacid
)
1139 lmac
= &bgx
->lmac
[lmacid
];
1140 if (lmac
->check_link
) {
1141 /* Destroy work queue */
1142 cancel_delayed_work_sync(&lmac
->dwork
);
1143 destroy_workqueue(lmac
->check_link
);
1146 /* Disable packet reception */
1147 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_CMRX_CFG
);
1148 cfg
&= ~CMR_PKT_RX_EN
;
1149 bgx_reg_write(bgx
, lmacid
, BGX_CMRX_CFG
, cfg
);
1151 /* Give chance for Rx/Tx FIFO to get drained */
1152 bgx_poll_reg(bgx
, lmacid
, BGX_CMRX_RX_FIFO_LEN
, (u64
)0x1FFF, true);
1153 bgx_poll_reg(bgx
, lmacid
, BGX_CMRX_TX_FIFO_LEN
, (u64
)0x3FFF, true);
1155 /* Disable packet transmission */
1156 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_CMRX_CFG
);
1157 cfg
&= ~CMR_PKT_TX_EN
;
1158 bgx_reg_write(bgx
, lmacid
, BGX_CMRX_CFG
, cfg
);
1160 /* Disable serdes lanes */
1161 if (!lmac
->is_sgmii
)
1162 bgx_reg_modify(bgx
, lmacid
,
1163 BGX_SPUX_CONTROL1
, SPU_CTL_LOW_POWER
);
1165 bgx_reg_modify(bgx
, lmacid
,
1166 BGX_GMP_PCS_MRX_CTL
, PCS_MRX_CTL_PWR_DN
);
1169 cfg
= bgx_reg_read(bgx
, lmacid
, BGX_CMRX_CFG
);
1171 bgx_reg_write(bgx
, lmacid
, BGX_CMRX_CFG
, cfg
);
1173 bgx_flush_dmac_cam_filter(bgx
, lmacid
);
1176 if ((lmac
->lmac_type
!= BGX_MODE_XFI
) &&
1177 (lmac
->lmac_type
!= BGX_MODE_XLAUI
) &&
1178 (lmac
->lmac_type
!= BGX_MODE_40G_KR
) &&
1179 (lmac
->lmac_type
!= BGX_MODE_10G_KR
) && lmac
->phydev
)
1180 phy_disconnect(lmac
->phydev
);
1182 lmac
->phydev
= NULL
;
1185 static void bgx_init_hw(struct bgx
*bgx
)
1190 bgx_reg_modify(bgx
, 0, BGX_CMR_GLOBAL_CFG
, CMR_GLOBAL_CFG_FCS_STRIP
);
1191 if (bgx_reg_read(bgx
, 0, BGX_CMR_BIST_STATUS
))
1192 dev_err(&bgx
->pdev
->dev
, "BGX%d BIST failed\n", bgx
->bgx_id
);
1194 /* Set lmac type and lane2serdes mapping */
1195 for (i
= 0; i
< bgx
->lmac_count
; i
++) {
1196 lmac
= &bgx
->lmac
[i
];
1197 bgx_reg_write(bgx
, i
, BGX_CMRX_CFG
,
1198 (lmac
->lmac_type
<< 8) | lmac
->lane_to_sds
);
1199 bgx
->lmac
[i
].lmacid_bd
= lmac_count
;
1203 bgx_reg_write(bgx
, 0, BGX_CMR_TX_LMACS
, bgx
->lmac_count
);
1204 bgx_reg_write(bgx
, 0, BGX_CMR_RX_LMACS
, bgx
->lmac_count
);
1206 /* Set the backpressure AND mask */
1207 for (i
= 0; i
< bgx
->lmac_count
; i
++)
1208 bgx_reg_modify(bgx
, 0, BGX_CMR_CHAN_MSK_AND
,
1209 ((1ULL << MAX_BGX_CHANS_PER_LMAC
) - 1) <<
1210 (i
* MAX_BGX_CHANS_PER_LMAC
));
1212 /* Disable all MAC filtering */
1213 for (i
= 0; i
< RX_DMAC_COUNT
; i
++)
1214 bgx_reg_write(bgx
, 0, BGX_CMR_RX_DMACX_CAM
+ (i
* 8), 0x00);
1216 /* Disable MAC steering (NCSI traffic) */
1217 for (i
= 0; i
< RX_TRAFFIC_STEER_RULE_COUNT
; i
++)
1218 bgx_reg_write(bgx
, 0, BGX_CMR_RX_STREERING
+ (i
* 8), 0x00);
1221 static u8
bgx_get_lane2sds_cfg(struct bgx
*bgx
, struct lmac
*lmac
)
1223 return (u8
)(bgx_reg_read(bgx
, lmac
->lmacid
, BGX_CMRX_CFG
) & 0xFF);
1226 static void bgx_print_qlm_mode(struct bgx
*bgx
, u8 lmacid
)
1228 struct device
*dev
= &bgx
->pdev
->dev
;
1232 if (!bgx
->is_dlm
&& lmacid
)
1235 lmac
= &bgx
->lmac
[lmacid
];
1237 sprintf(str
, "BGX%d QLM mode", bgx
->bgx_id
);
1239 sprintf(str
, "BGX%d LMAC%d mode", bgx
->bgx_id
, lmacid
);
1241 switch (lmac
->lmac_type
) {
1242 case BGX_MODE_SGMII
:
1243 dev_info(dev
, "%s: SGMII\n", (char *)str
);
1246 dev_info(dev
, "%s: XAUI\n", (char *)str
);
1248 case BGX_MODE_RXAUI
:
1249 dev_info(dev
, "%s: RXAUI\n", (char *)str
);
1252 if (!lmac
->use_training
)
1253 dev_info(dev
, "%s: XFI\n", (char *)str
);
1255 dev_info(dev
, "%s: 10G_KR\n", (char *)str
);
1257 case BGX_MODE_XLAUI
:
1258 if (!lmac
->use_training
)
1259 dev_info(dev
, "%s: XLAUI\n", (char *)str
);
1261 dev_info(dev
, "%s: 40G_KR4\n", (char *)str
);
1263 case BGX_MODE_QSGMII
:
1264 dev_info(dev
, "%s: QSGMII\n", (char *)str
);
1266 case BGX_MODE_RGMII
:
1267 dev_info(dev
, "%s: RGMII\n", (char *)str
);
1269 case BGX_MODE_INVALID
:
1275 static void lmac_set_lane2sds(struct bgx
*bgx
, struct lmac
*lmac
)
1277 switch (lmac
->lmac_type
) {
1278 case BGX_MODE_SGMII
:
1280 lmac
->lane_to_sds
= lmac
->lmacid
;
1283 case BGX_MODE_XLAUI
:
1284 case BGX_MODE_RGMII
:
1285 lmac
->lane_to_sds
= 0xE4;
1287 case BGX_MODE_RXAUI
:
1288 lmac
->lane_to_sds
= (lmac
->lmacid
) ? 0xE : 0x4;
1290 case BGX_MODE_QSGMII
:
1291 /* There is no way to determine if DLM0/2 is QSGMII or
1292 * DLM1/3 is configured to QSGMII as bootloader will
1293 * configure all LMACs, so take whatever is configured
1294 * by low level firmware.
1296 lmac
->lane_to_sds
= bgx_get_lane2sds_cfg(bgx
, lmac
);
1299 lmac
->lane_to_sds
= 0;
1304 static void lmac_set_training(struct bgx
*bgx
, struct lmac
*lmac
, int lmacid
)
1306 if ((lmac
->lmac_type
!= BGX_MODE_10G_KR
) &&
1307 (lmac
->lmac_type
!= BGX_MODE_40G_KR
)) {
1308 lmac
->use_training
= 0;
1312 lmac
->use_training
= bgx_reg_read(bgx
, lmacid
, BGX_SPUX_BR_PMD_CRTL
) &
1313 SPU_PMD_CRTL_TRAIN_EN
;
1316 static void bgx_set_lmac_config(struct bgx
*bgx
, u8 idx
)
1323 lmac
= &bgx
->lmac
[idx
];
1325 if (!bgx
->is_dlm
|| bgx
->is_rgx
) {
1326 /* Read LMAC0 type to figure out QLM mode
1327 * This is configured by low level firmware
1329 cmr_cfg
= bgx_reg_read(bgx
, 0, BGX_CMRX_CFG
);
1330 lmac
->lmac_type
= (cmr_cfg
>> 8) & 0x07;
1332 lmac
->lmac_type
= BGX_MODE_RGMII
;
1333 lmac_set_training(bgx
, lmac
, 0);
1334 lmac_set_lane2sds(bgx
, lmac
);
1338 /* For DLMs or SLMs on 80/81/83xx so many lane configurations
1339 * are possible and vary across boards. Also Kernel doesn't have
1340 * any way to identify board type/info and since firmware does,
1341 * just take lmac type and serdes lane config as is.
1343 cmr_cfg
= bgx_reg_read(bgx
, idx
, BGX_CMRX_CFG
);
1344 lmac_type
= (u8
)((cmr_cfg
>> 8) & 0x07);
1345 lane_to_sds
= (u8
)(cmr_cfg
& 0xFF);
1346 /* Check if config is reset value */
1347 if ((lmac_type
== 0) && (lane_to_sds
== 0xE4))
1348 lmac
->lmac_type
= BGX_MODE_INVALID
;
1350 lmac
->lmac_type
= lmac_type
;
1351 lmac
->lane_to_sds
= lane_to_sds
;
1352 lmac_set_training(bgx
, lmac
, lmac
->lmacid
);
1355 static void bgx_get_qlm_mode(struct bgx
*bgx
)
1360 /* Init all LMAC's type to invalid */
1361 for (idx
= 0; idx
< bgx
->max_lmac
; idx
++) {
1362 lmac
= &bgx
->lmac
[idx
];
1364 lmac
->lmac_type
= BGX_MODE_INVALID
;
1365 lmac
->use_training
= false;
1368 /* It is assumed that low level firmware sets this value */
1369 bgx
->lmac_count
= bgx_reg_read(bgx
, 0, BGX_CMR_RX_LMACS
) & 0x7;
1370 if (bgx
->lmac_count
> bgx
->max_lmac
)
1371 bgx
->lmac_count
= bgx
->max_lmac
;
1373 for (idx
= 0; idx
< bgx
->lmac_count
; idx
++) {
1374 bgx_set_lmac_config(bgx
, idx
);
1375 bgx_print_qlm_mode(bgx
, idx
);
1381 static int acpi_get_mac_address(struct device
*dev
, struct acpi_device
*adev
,
1387 ret
= fwnode_property_read_u8_array(acpi_fwnode_handle(adev
),
1388 "mac-address", mac
, ETH_ALEN
);
1392 if (!is_valid_ether_addr(mac
)) {
1393 dev_err(dev
, "MAC address invalid: %pM\n", mac
);
1398 dev_info(dev
, "MAC address set to: %pM\n", mac
);
1400 memcpy(dst
, mac
, ETH_ALEN
);
1405 /* Currently only sets the MAC address. */
1406 static acpi_status
bgx_acpi_register_phy(acpi_handle handle
,
1407 u32 lvl
, void *context
, void **rv
)
1409 struct bgx
*bgx
= context
;
1410 struct device
*dev
= &bgx
->pdev
->dev
;
1411 struct acpi_device
*adev
;
1413 if (acpi_bus_get_device(handle
, &adev
))
1416 acpi_get_mac_address(dev
, adev
, bgx
->lmac
[bgx
->acpi_lmac_idx
].mac
);
1418 SET_NETDEV_DEV(&bgx
->lmac
[bgx
->acpi_lmac_idx
].netdev
, dev
);
1420 bgx
->lmac
[bgx
->acpi_lmac_idx
].lmacid
= bgx
->acpi_lmac_idx
;
1421 bgx
->acpi_lmac_idx
++; /* move to next LMAC */
1426 static acpi_status
bgx_acpi_match_id(acpi_handle handle
, u32 lvl
,
1427 void *context
, void **ret_val
)
1429 struct acpi_buffer string
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1430 struct bgx
*bgx
= context
;
1433 snprintf(bgx_sel
, 5, "BGX%d", bgx
->bgx_id
);
1434 if (ACPI_FAILURE(acpi_get_name(handle
, ACPI_SINGLE_NAME
, &string
))) {
1435 pr_warn("Invalid link device\n");
1439 if (strncmp(string
.pointer
, bgx_sel
, 4))
1442 acpi_walk_namespace(ACPI_TYPE_DEVICE
, handle
, 1,
1443 bgx_acpi_register_phy
, NULL
, bgx
, NULL
);
1445 kfree(string
.pointer
);
1446 return AE_CTRL_TERMINATE
;
1449 static int bgx_init_acpi_phy(struct bgx
*bgx
)
1451 acpi_get_devices(NULL
, bgx_acpi_match_id
, bgx
, (void **)NULL
);
1457 static int bgx_init_acpi_phy(struct bgx
*bgx
)
1462 #endif /* CONFIG_ACPI */
1464 #if IS_ENABLED(CONFIG_OF_MDIO)
1466 static int bgx_init_of_phy(struct bgx
*bgx
)
1468 struct fwnode_handle
*fwn
;
1469 struct device_node
*node
= NULL
;
1472 device_for_each_child_node(&bgx
->pdev
->dev
, fwn
) {
1473 struct phy_device
*pd
;
1474 struct device_node
*phy_np
;
1477 /* Should always be an OF node. But if it is not, we
1478 * cannot handle it, so exit the loop.
1480 node
= to_of_node(fwn
);
1484 mac
= of_get_mac_address(node
);
1486 ether_addr_copy(bgx
->lmac
[lmac
].mac
, mac
);
1488 SET_NETDEV_DEV(&bgx
->lmac
[lmac
].netdev
, &bgx
->pdev
->dev
);
1489 bgx
->lmac
[lmac
].lmacid
= lmac
;
1491 phy_np
= of_parse_phandle(node
, "phy-handle", 0);
1492 /* If there is no phy or defective firmware presents
1493 * this cortina phy, for which there is no driver
1494 * support, ignore it.
1497 !of_device_is_compatible(phy_np
, "cortina,cs4223-slice")) {
1498 /* Wait until the phy drivers are available */
1499 pd
= of_phy_find_device(phy_np
);
1502 bgx
->lmac
[lmac
].phydev
= pd
;
1506 if (lmac
== bgx
->max_lmac
) {
1514 /* We are bailing out, try not to leak device reference counts
1515 * for phy devices we may have already found.
1518 if (bgx
->lmac
[lmac
].phydev
) {
1519 put_device(&bgx
->lmac
[lmac
].phydev
->mdio
.dev
);
1520 bgx
->lmac
[lmac
].phydev
= NULL
;
1525 return -EPROBE_DEFER
;
1530 static int bgx_init_of_phy(struct bgx
*bgx
)
1535 #endif /* CONFIG_OF_MDIO */
1537 static int bgx_init_phy(struct bgx
*bgx
)
1540 return bgx_init_acpi_phy(bgx
);
1542 return bgx_init_of_phy(bgx
);
1545 static int bgx_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
1548 struct device
*dev
= &pdev
->dev
;
1549 struct bgx
*bgx
= NULL
;
1553 bgx
= devm_kzalloc(dev
, sizeof(*bgx
), GFP_KERNEL
);
1558 pci_set_drvdata(pdev
, bgx
);
1560 err
= pci_enable_device(pdev
);
1562 dev_err(dev
, "Failed to enable PCI device\n");
1563 pci_set_drvdata(pdev
, NULL
);
1567 err
= pci_request_regions(pdev
, DRV_NAME
);
1569 dev_err(dev
, "PCI request regions failed 0x%x\n", err
);
1570 goto err_disable_device
;
1573 /* MAP configuration registers */
1574 bgx
->reg_base
= pcim_iomap(pdev
, PCI_CFG_REG_BAR_NUM
, 0);
1575 if (!bgx
->reg_base
) {
1576 dev_err(dev
, "BGX: Cannot map CSR memory space, aborting\n");
1578 goto err_release_regions
;
1581 set_max_bgx_per_node(pdev
);
1583 pci_read_config_word(pdev
, PCI_DEVICE_ID
, &sdevid
);
1584 if (sdevid
!= PCI_DEVICE_ID_THUNDER_RGX
) {
1585 bgx
->bgx_id
= (pci_resource_start(pdev
,
1586 PCI_CFG_REG_BAR_NUM
) >> 24) & BGX_ID_MASK
;
1587 bgx
->bgx_id
+= nic_get_node_id(pdev
) * max_bgx_per_node
;
1588 bgx
->max_lmac
= MAX_LMAC_PER_BGX
;
1589 bgx_vnic
[bgx
->bgx_id
] = bgx
;
1593 bgx
->bgx_id
= MAX_BGX_PER_CN81XX
- 1;
1594 bgx_vnic
[bgx
->bgx_id
] = bgx
;
1598 /* On 81xx all are DLMs and on 83xx there are 3 BGX QLMs and one
1599 * BGX i.e BGX2 can be split across 2 DLMs.
1601 pci_read_config_word(pdev
, PCI_SUBSYSTEM_ID
, &sdevid
);
1602 if ((sdevid
== PCI_SUBSYS_DEVID_81XX_BGX
) ||
1603 ((sdevid
== PCI_SUBSYS_DEVID_83XX_BGX
) && (bgx
->bgx_id
== 2)))
1606 bgx_get_qlm_mode(bgx
);
1608 err
= bgx_init_phy(bgx
);
1614 /* Enable all LMACs */
1615 for (lmac
= 0; lmac
< bgx
->lmac_count
; lmac
++) {
1616 err
= bgx_lmac_enable(bgx
, lmac
);
1618 dev_err(dev
, "BGX%d failed to enable lmac%d\n",
1621 bgx_lmac_disable(bgx
, --lmac
);
1629 bgx_vnic
[bgx
->bgx_id
] = NULL
;
1630 err_release_regions
:
1631 pci_release_regions(pdev
);
1633 pci_disable_device(pdev
);
1634 pci_set_drvdata(pdev
, NULL
);
1638 static void bgx_remove(struct pci_dev
*pdev
)
1640 struct bgx
*bgx
= pci_get_drvdata(pdev
);
1643 /* Disable all LMACs */
1644 for (lmac
= 0; lmac
< bgx
->lmac_count
; lmac
++)
1645 bgx_lmac_disable(bgx
, lmac
);
1647 bgx_vnic
[bgx
->bgx_id
] = NULL
;
1648 pci_release_regions(pdev
);
1649 pci_disable_device(pdev
);
1650 pci_set_drvdata(pdev
, NULL
);
1653 static struct pci_driver bgx_driver
= {
1655 .id_table
= bgx_id_table
,
1657 .remove
= bgx_remove
,
1660 static int __init
bgx_init_module(void)
1662 pr_info("%s, ver %s\n", DRV_NAME
, DRV_VERSION
);
1664 return pci_register_driver(&bgx_driver
);
1667 static void __exit
bgx_cleanup_module(void)
1669 pci_unregister_driver(&bgx_driver
);
1672 module_init(bgx_init_module
);
1673 module_exit(bgx_cleanup_module
);