1 // SPDX-License-Identifier: GPL-2.0
3 * Texas Instruments Ethernet Switch Driver
5 * Copyright (C) 2019 Texas Instruments
10 #include <linux/timer.h>
11 #include <linux/module.h>
12 #include <linux/irqreturn.h>
13 #include <linux/interrupt.h>
14 #include <linux/if_ether.h>
15 #include <linux/etherdevice.h>
16 #include <linux/net_tstamp.h>
17 #include <linux/phy.h>
18 #include <linux/phy/phy.h>
19 #include <linux/delay.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/gpio/consumer.h>
23 #include <linux/of_mdio.h>
24 #include <linux/of_net.h>
25 #include <linux/of_device.h>
26 #include <linux/if_vlan.h>
27 #include <linux/kmemleak.h>
28 #include <linux/sys_soc.h>
30 #include <net/page_pool.h>
31 #include <net/pkt_cls.h>
32 #include <net/devlink.h>
36 #include "cpsw_priv.h"
38 #include "cpsw_switchdev.h"
40 #include "davinci_cpdma.h"
42 #include <net/pkt_sched.h>
44 static int debug_level
;
45 static int ale_ageout
= CPSW_ALE_AGEOUT_DEFAULT
;
46 static int rx_packet_max
= CPSW_MAX_PACKET_SIZE
;
47 static int descs_pool_size
= CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT
;
50 struct cpsw_common
*cpsw
;
53 enum cpsw_devlink_param_id
{
54 CPSW_DEVLINK_PARAM_ID_BASE
= DEVLINK_PARAM_GENERIC_ID_MAX
,
55 CPSW_DL_PARAM_SWITCH_MODE
,
56 CPSW_DL_PARAM_ALE_BYPASS
,
59 /* struct cpsw_common is not needed, kept here for compatibility
60 * reasons witrh the old driver
62 static int cpsw_slave_index_priv(struct cpsw_common
*cpsw
,
63 struct cpsw_priv
*priv
)
65 if (priv
->emac_port
== HOST_PORT_NUM
)
68 return priv
->emac_port
- 1;
71 static bool cpsw_is_switch_en(struct cpsw_common
*cpsw
)
73 return !cpsw
->data
.dual_emac
;
76 static void cpsw_set_promiscious(struct net_device
*ndev
, bool enable
)
78 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
79 bool enable_uni
= false;
82 if (cpsw_is_switch_en(cpsw
))
85 /* Enabling promiscuous mode for one interface will be
86 * common for both the interface as the interface shares
87 * the same hardware resource.
89 for (i
= 0; i
< cpsw
->data
.slaves
; i
++)
90 if (cpsw
->slaves
[i
].ndev
&&
91 (cpsw
->slaves
[i
].ndev
->flags
& IFF_PROMISC
))
94 if (!enable
&& enable_uni
) {
96 dev_dbg(cpsw
->dev
, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
100 /* Enable unknown unicast, reg/unreg mcast */
101 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
,
102 ALE_P0_UNI_FLOOD
, 1);
104 dev_dbg(cpsw
->dev
, "promiscuity enabled\n");
106 /* Disable unknown unicast */
107 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
,
108 ALE_P0_UNI_FLOOD
, 0);
109 dev_dbg(cpsw
->dev
, "promiscuity disabled\n");
114 * cpsw_set_mc - adds multicast entry to the table if it's not added or deletes
115 * if it's not deleted
116 * @ndev: device to sync
117 * @addr: address to be added or deleted
118 * @vid: vlan id, if vid < 0 set/unset address for real device
119 * @add: add address if the flag is set or remove otherwise
121 static int cpsw_set_mc(struct net_device
*ndev
, const u8
*addr
,
124 struct cpsw_priv
*priv
= netdev_priv(ndev
);
125 struct cpsw_common
*cpsw
= priv
->cpsw
;
126 int mask
, flags
, ret
, slave_no
;
128 slave_no
= cpsw_slave_index(cpsw
, priv
);
130 vid
= cpsw
->slaves
[slave_no
].port_vlan
;
132 mask
= ALE_PORT_HOST
;
133 flags
= vid
? ALE_VLAN
: 0;
136 ret
= cpsw_ale_add_mcast(cpsw
->ale
, addr
, mask
, flags
, vid
, 0);
138 ret
= cpsw_ale_del_mcast(cpsw
->ale
, addr
, 0, flags
, vid
);
143 static int cpsw_update_vlan_mc(struct net_device
*vdev
, int vid
, void *ctx
)
145 struct addr_sync_ctx
*sync_ctx
= ctx
;
146 struct netdev_hw_addr
*ha
;
147 int found
= 0, ret
= 0;
149 if (!vdev
|| !(vdev
->flags
& IFF_UP
))
152 /* vlan address is relevant if its sync_cnt != 0 */
153 netdev_for_each_mc_addr(ha
, vdev
) {
154 if (ether_addr_equal(ha
->addr
, sync_ctx
->addr
)) {
155 found
= ha
->sync_cnt
;
161 sync_ctx
->consumed
++;
163 if (sync_ctx
->flush
) {
165 cpsw_set_mc(sync_ctx
->ndev
, sync_ctx
->addr
, vid
, 0);
170 ret
= cpsw_set_mc(sync_ctx
->ndev
, sync_ctx
->addr
, vid
, 1);
175 static int cpsw_add_mc_addr(struct net_device
*ndev
, const u8
*addr
, int num
)
177 struct addr_sync_ctx sync_ctx
;
180 sync_ctx
.consumed
= 0;
181 sync_ctx
.addr
= addr
;
182 sync_ctx
.ndev
= ndev
;
185 ret
= vlan_for_each(ndev
, cpsw_update_vlan_mc
, &sync_ctx
);
186 if (sync_ctx
.consumed
< num
&& !ret
)
187 ret
= cpsw_set_mc(ndev
, addr
, -1, 1);
192 static int cpsw_del_mc_addr(struct net_device
*ndev
, const u8
*addr
, int num
)
194 struct addr_sync_ctx sync_ctx
;
196 sync_ctx
.consumed
= 0;
197 sync_ctx
.addr
= addr
;
198 sync_ctx
.ndev
= ndev
;
201 vlan_for_each(ndev
, cpsw_update_vlan_mc
, &sync_ctx
);
202 if (sync_ctx
.consumed
== num
)
203 cpsw_set_mc(ndev
, addr
, -1, 0);
208 static int cpsw_purge_vlan_mc(struct net_device
*vdev
, int vid
, void *ctx
)
210 struct addr_sync_ctx
*sync_ctx
= ctx
;
211 struct netdev_hw_addr
*ha
;
214 if (!vdev
|| !(vdev
->flags
& IFF_UP
))
217 /* vlan address is relevant if its sync_cnt != 0 */
218 netdev_for_each_mc_addr(ha
, vdev
) {
219 if (ether_addr_equal(ha
->addr
, sync_ctx
->addr
)) {
220 found
= ha
->sync_cnt
;
228 sync_ctx
->consumed
++;
229 cpsw_set_mc(sync_ctx
->ndev
, sync_ctx
->addr
, vid
, 0);
233 static int cpsw_purge_all_mc(struct net_device
*ndev
, const u8
*addr
, int num
)
235 struct addr_sync_ctx sync_ctx
;
237 sync_ctx
.addr
= addr
;
238 sync_ctx
.ndev
= ndev
;
239 sync_ctx
.consumed
= 0;
241 vlan_for_each(ndev
, cpsw_purge_vlan_mc
, &sync_ctx
);
242 if (sync_ctx
.consumed
< num
)
243 cpsw_set_mc(ndev
, addr
, -1, 0);
248 static void cpsw_ndo_set_rx_mode(struct net_device
*ndev
)
250 struct cpsw_priv
*priv
= netdev_priv(ndev
);
251 struct cpsw_common
*cpsw
= priv
->cpsw
;
253 if (ndev
->flags
& IFF_PROMISC
) {
254 /* Enable promiscuous mode */
255 cpsw_set_promiscious(ndev
, true);
256 cpsw_ale_set_allmulti(cpsw
->ale
, IFF_ALLMULTI
, priv
->emac_port
);
260 /* Disable promiscuous mode */
261 cpsw_set_promiscious(ndev
, false);
263 /* Restore allmulti on vlans if necessary */
264 cpsw_ale_set_allmulti(cpsw
->ale
,
265 ndev
->flags
& IFF_ALLMULTI
, priv
->emac_port
);
267 /* add/remove mcast address either for real netdev or for vlan */
268 __hw_addr_ref_sync_dev(&ndev
->mc
, ndev
, cpsw_add_mc_addr
,
272 static unsigned int cpsw_rxbuf_total_len(unsigned int len
)
274 len
+= CPSW_HEADROOM
;
275 len
+= SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
277 return SKB_DATA_ALIGN(len
);
280 static void cpsw_rx_handler(void *token
, int len
, int status
)
282 struct page
*new_page
, *page
= token
;
283 void *pa
= page_address(page
);
284 int headroom
= CPSW_HEADROOM
;
285 struct cpsw_meta_xdp
*xmeta
;
286 struct cpsw_common
*cpsw
;
287 struct net_device
*ndev
;
288 int port
, ch
, pkt_size
;
289 struct cpsw_priv
*priv
;
290 struct page_pool
*pool
;
296 xmeta
= pa
+ CPSW_XMETA_OFFSET
;
297 cpsw
= ndev_to_cpsw(xmeta
->ndev
);
299 pkt_size
= cpsw
->rx_packet_max
;
303 port
= CPDMA_RX_SOURCE_PORT(status
);
305 ndev
= cpsw
->slaves
[--port
].ndev
;
308 priv
= netdev_priv(ndev
);
309 pool
= cpsw
->page_pool
[ch
];
311 if (unlikely(status
< 0) || unlikely(!netif_running(ndev
))) {
312 /* In dual emac mode check for all interfaces */
313 if (cpsw
->usage_count
&& status
>= 0) {
314 /* The packet received is for the interface which
315 * is already down and the other interface is up
316 * and running, instead of freeing which results
317 * in reducing of the number of rx descriptor in
318 * DMA engine, requeue page back to cpdma.
324 /* the interface is going down, pages are purged */
325 page_pool_recycle_direct(pool
, page
);
329 new_page
= page_pool_dev_alloc_pages(pool
);
330 if (unlikely(!new_page
)) {
332 ndev
->stats
.rx_dropped
++;
336 if (priv
->xdp_prog
) {
337 if (status
& CPDMA_RX_VLAN_ENCAP
) {
338 xdp
.data
= pa
+ CPSW_HEADROOM
+
339 CPSW_RX_VLAN_ENCAP_HDR_SIZE
;
340 xdp
.data_end
= xdp
.data
+ len
-
341 CPSW_RX_VLAN_ENCAP_HDR_SIZE
;
343 xdp
.data
= pa
+ CPSW_HEADROOM
;
344 xdp
.data_end
= xdp
.data
+ len
;
347 xdp_set_data_meta_invalid(&xdp
);
349 xdp
.data_hard_start
= pa
;
350 xdp
.rxq
= &priv
->xdp_rxq
[ch
];
352 ret
= cpsw_run_xdp(priv
, ch
, &xdp
, page
, priv
->emac_port
);
353 if (ret
!= CPSW_XDP_PASS
)
356 /* XDP prog might have changed packet data and boundaries */
357 len
= xdp
.data_end
- xdp
.data
;
358 headroom
= xdp
.data
- xdp
.data_hard_start
;
360 /* XDP prog can modify vlan tag, so can't use encap header */
361 status
&= ~CPDMA_RX_VLAN_ENCAP
;
364 /* pass skb to netstack if no XDP prog or returned XDP_PASS */
365 skb
= build_skb(pa
, cpsw_rxbuf_total_len(pkt_size
));
367 ndev
->stats
.rx_dropped
++;
368 page_pool_recycle_direct(pool
, page
);
372 skb
->offload_fwd_mark
= priv
->offload_fwd_mark
;
373 skb_reserve(skb
, headroom
);
376 if (status
& CPDMA_RX_VLAN_ENCAP
)
377 cpsw_rx_vlan_encap(skb
);
378 if (priv
->rx_ts_enabled
)
379 cpts_rx_timestamp(cpsw
->cpts
, skb
);
380 skb
->protocol
= eth_type_trans(skb
, ndev
);
382 /* unmap page as no netstack skb page recycling */
383 page_pool_release_page(pool
, page
);
384 netif_receive_skb(skb
);
386 ndev
->stats
.rx_bytes
+= len
;
387 ndev
->stats
.rx_packets
++;
390 xmeta
= page_address(new_page
) + CPSW_XMETA_OFFSET
;
394 dma
= page_pool_get_dma_addr(new_page
) + CPSW_HEADROOM
;
395 ret
= cpdma_chan_submit_mapped(cpsw
->rxv
[ch
].ch
, new_page
, dma
,
398 WARN_ON(ret
== -ENOMEM
);
399 page_pool_recycle_direct(pool
, new_page
);
403 static int cpsw_add_vlan_ale_entry(struct cpsw_priv
*priv
,
406 struct cpsw_common
*cpsw
= priv
->cpsw
;
407 int unreg_mcast_mask
= 0;
412 port_mask
= (1 << priv
->emac_port
) | ALE_PORT_HOST
;
414 mcast_mask
= ALE_PORT_HOST
;
415 if (priv
->ndev
->flags
& IFF_ALLMULTI
)
416 unreg_mcast_mask
= mcast_mask
;
418 ret
= cpsw_ale_add_vlan(cpsw
->ale
, vid
, port_mask
, 0, port_mask
,
423 ret
= cpsw_ale_add_ucast(cpsw
->ale
, priv
->mac_addr
,
424 HOST_PORT_NUM
, ALE_VLAN
, vid
);
428 ret
= cpsw_ale_add_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
429 mcast_mask
, ALE_VLAN
, vid
, 0);
431 goto clean_vlan_ucast
;
435 cpsw_ale_del_ucast(cpsw
->ale
, priv
->mac_addr
,
436 HOST_PORT_NUM
, ALE_VLAN
, vid
);
438 cpsw_ale_del_vlan(cpsw
->ale
, vid
, 0);
442 static int cpsw_ndo_vlan_rx_add_vid(struct net_device
*ndev
,
443 __be16 proto
, u16 vid
)
445 struct cpsw_priv
*priv
= netdev_priv(ndev
);
446 struct cpsw_common
*cpsw
= priv
->cpsw
;
449 if (cpsw_is_switch_en(cpsw
)) {
450 dev_dbg(cpsw
->dev
, ".ndo_vlan_rx_add_vid called in switch mode\n");
454 if (vid
== cpsw
->data
.default_vlan
)
457 ret
= pm_runtime_get_sync(cpsw
->dev
);
459 pm_runtime_put_noidle(cpsw
->dev
);
463 /* In dual EMAC, reserved VLAN id should not be used for
464 * creating VLAN interfaces as this can break the dual
465 * EMAC port separation
467 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
468 if (cpsw
->slaves
[i
].ndev
&&
469 vid
== cpsw
->slaves
[i
].port_vlan
) {
475 dev_dbg(priv
->dev
, "Adding vlanid %d to vlan filter\n", vid
);
476 ret
= cpsw_add_vlan_ale_entry(priv
, vid
);
478 pm_runtime_put(cpsw
->dev
);
482 static int cpsw_restore_vlans(struct net_device
*vdev
, int vid
, void *arg
)
484 struct cpsw_priv
*priv
= arg
;
489 cpsw_ndo_vlan_rx_add_vid(priv
->ndev
, 0, vid
);
493 /* restore resources after port reset */
494 static void cpsw_restore(struct cpsw_priv
*priv
)
496 struct cpsw_common
*cpsw
= priv
->cpsw
;
498 /* restore vlan configurations */
499 vlan_for_each(priv
->ndev
, cpsw_restore_vlans
, priv
);
501 /* restore MQPRIO offload */
502 cpsw_mqprio_resume(&cpsw
->slaves
[priv
->emac_port
- 1], priv
);
504 /* restore CBS offload */
505 cpsw_cbs_resume(&cpsw
->slaves
[priv
->emac_port
- 1], priv
);
508 static void cpsw_init_stp_ale_entry(struct cpsw_common
*cpsw
)
510 char stpa
[] = {0x01, 0x80, 0xc2, 0x0, 0x0, 0x0};
512 cpsw_ale_add_mcast(cpsw
->ale
, stpa
,
513 ALE_PORT_HOST
, ALE_SUPER
, 0,
514 ALE_MCAST_BLOCK_LEARN_FWD
);
517 static void cpsw_init_host_port_switch(struct cpsw_common
*cpsw
)
519 int vlan
= cpsw
->data
.default_vlan
;
521 writel(CPSW_FIFO_NORMAL_MODE
, &cpsw
->host_port_regs
->tx_in_ctl
);
523 writel(vlan
, &cpsw
->host_port_regs
->port_vlan
);
525 cpsw_ale_add_vlan(cpsw
->ale
, vlan
, ALE_ALL_PORTS
,
526 ALE_ALL_PORTS
, ALE_ALL_PORTS
,
527 ALE_PORT_1
| ALE_PORT_2
);
529 cpsw_init_stp_ale_entry(cpsw
);
531 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
, ALE_P0_UNI_FLOOD
, 1);
532 dev_dbg(cpsw
->dev
, "Set P0_UNI_FLOOD\n");
533 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
, ALE_PORT_NOLEARN
, 0);
536 static void cpsw_init_host_port_dual_mac(struct cpsw_common
*cpsw
)
538 int vlan
= cpsw
->data
.default_vlan
;
540 writel(CPSW_FIFO_DUAL_MAC_MODE
, &cpsw
->host_port_regs
->tx_in_ctl
);
542 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
, ALE_P0_UNI_FLOOD
, 0);
543 dev_dbg(cpsw
->dev
, "unset P0_UNI_FLOOD\n");
545 writel(vlan
, &cpsw
->host_port_regs
->port_vlan
);
547 cpsw_ale_add_vlan(cpsw
->ale
, vlan
, ALE_ALL_PORTS
, ALE_ALL_PORTS
, 0, 0);
548 /* learning make no sense in dual_mac mode */
549 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
, ALE_PORT_NOLEARN
, 1);
552 static void cpsw_init_host_port(struct cpsw_priv
*priv
)
554 struct cpsw_common
*cpsw
= priv
->cpsw
;
557 /* soft reset the controller and initialize ale */
558 soft_reset("cpsw", &cpsw
->regs
->soft_reset
);
559 cpsw_ale_start(cpsw
->ale
);
561 /* switch to vlan unaware mode */
562 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
, ALE_VLAN_AWARE
,
563 CPSW_ALE_VLAN_AWARE
);
564 control_reg
= readl(&cpsw
->regs
->control
);
565 control_reg
|= CPSW_VLAN_AWARE
| CPSW_RX_VLAN_ENCAP
;
566 writel(control_reg
, &cpsw
->regs
->control
);
568 /* setup host port priority mapping */
569 writel_relaxed(CPDMA_TX_PRIORITY_MAP
,
570 &cpsw
->host_port_regs
->cpdma_tx_pri_map
);
571 writel_relaxed(0, &cpsw
->host_port_regs
->cpdma_rx_chan_map
);
573 /* disable priority elevation */
574 writel_relaxed(0, &cpsw
->regs
->ptype
);
576 /* enable statistics collection only on all ports */
577 writel_relaxed(0x7, &cpsw
->regs
->stat_port_en
);
579 /* Enable internal fifo flow control */
580 writel(0x7, &cpsw
->regs
->flow_control
);
582 if (cpsw_is_switch_en(cpsw
))
583 cpsw_init_host_port_switch(cpsw
);
585 cpsw_init_host_port_dual_mac(cpsw
);
587 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
,
588 ALE_PORT_STATE
, ALE_PORT_STATE_FORWARD
);
591 static void cpsw_port_add_dual_emac_def_ale_entries(struct cpsw_priv
*priv
,
592 struct cpsw_slave
*slave
)
594 u32 port_mask
= 1 << priv
->emac_port
| ALE_PORT_HOST
;
595 struct cpsw_common
*cpsw
= priv
->cpsw
;
598 reg
= (cpsw
->version
== CPSW_VERSION_1
) ? CPSW1_PORT_VLAN
:
600 slave_write(slave
, slave
->port_vlan
, reg
);
602 cpsw_ale_add_vlan(cpsw
->ale
, slave
->port_vlan
, port_mask
,
603 port_mask
, port_mask
, 0);
604 cpsw_ale_add_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
605 ALE_PORT_HOST
, ALE_VLAN
, slave
->port_vlan
,
607 cpsw_ale_add_ucast(cpsw
->ale
, priv
->mac_addr
,
608 HOST_PORT_NUM
, ALE_VLAN
|
609 ALE_SECURE
, slave
->port_vlan
);
610 cpsw_ale_control_set(cpsw
->ale
, priv
->emac_port
,
611 ALE_PORT_DROP_UNKNOWN_VLAN
, 1);
612 /* learning make no sense in dual_mac mode */
613 cpsw_ale_control_set(cpsw
->ale
, priv
->emac_port
,
614 ALE_PORT_NOLEARN
, 1);
617 static void cpsw_port_add_switch_def_ale_entries(struct cpsw_priv
*priv
,
618 struct cpsw_slave
*slave
)
620 u32 port_mask
= 1 << priv
->emac_port
| ALE_PORT_HOST
;
621 struct cpsw_common
*cpsw
= priv
->cpsw
;
624 cpsw_ale_control_set(cpsw
->ale
, priv
->emac_port
,
625 ALE_PORT_DROP_UNKNOWN_VLAN
, 0);
626 cpsw_ale_control_set(cpsw
->ale
, priv
->emac_port
,
627 ALE_PORT_NOLEARN
, 0);
628 /* disabling SA_UPDATE required to make stp work, without this setting
629 * Host MAC addresses will jump between ports.
630 * As per TRM MAC address can be defined as unicast supervisory (super)
631 * by setting both (ALE_BLOCKED | ALE_SECURE) which should prevent
632 * SA_UPDATE, but HW seems works incorrectly and setting ALE_SECURE
633 * causes STP packets to be dropped due to ingress filter
634 * if (source address found) and (secure) and
635 * (receive port number != port_number))
636 * then discard the packet
638 cpsw_ale_control_set(cpsw
->ale
, priv
->emac_port
,
639 ALE_PORT_NO_SA_UPDATE
, 1);
641 cpsw_ale_add_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
642 port_mask
, ALE_VLAN
, slave
->port_vlan
,
644 cpsw_ale_add_ucast(cpsw
->ale
, priv
->mac_addr
,
645 HOST_PORT_NUM
, ALE_VLAN
, slave
->port_vlan
);
647 reg
= (cpsw
->version
== CPSW_VERSION_1
) ? CPSW1_PORT_VLAN
:
649 slave_write(slave
, slave
->port_vlan
, reg
);
652 static void cpsw_adjust_link(struct net_device
*ndev
)
654 struct cpsw_priv
*priv
= netdev_priv(ndev
);
655 struct cpsw_common
*cpsw
= priv
->cpsw
;
656 struct cpsw_slave
*slave
;
657 struct phy_device
*phy
;
660 slave
= &cpsw
->slaves
[priv
->emac_port
- 1];
667 mac_control
= CPSW_SL_CTL_GMII_EN
;
669 if (phy
->speed
== 1000)
670 mac_control
|= CPSW_SL_CTL_GIG
;
672 mac_control
|= CPSW_SL_CTL_FULLDUPLEX
;
674 /* set speed_in input in case RMII mode is used in 100Mbps */
675 if (phy
->speed
== 100)
676 mac_control
|= CPSW_SL_CTL_IFCTL_A
;
677 /* in band mode only works in 10Mbps RGMII mode */
678 else if ((phy
->speed
== 10) && phy_interface_is_rgmii(phy
))
679 mac_control
|= CPSW_SL_CTL_EXT_EN
; /* In Band mode */
682 mac_control
|= CPSW_SL_CTL_RX_FLOW_EN
;
685 mac_control
|= CPSW_SL_CTL_TX_FLOW_EN
;
687 if (mac_control
!= slave
->mac_control
)
688 cpsw_sl_ctl_set(slave
->mac_sl
, mac_control
);
690 /* enable forwarding */
691 cpsw_ale_control_set(cpsw
->ale
, priv
->emac_port
,
692 ALE_PORT_STATE
, ALE_PORT_STATE_FORWARD
);
694 netif_tx_wake_all_queues(ndev
);
696 if (priv
->shp_cfg_speed
&&
697 priv
->shp_cfg_speed
!= slave
->phy
->speed
&&
698 !cpsw_shp_is_off(priv
))
699 dev_warn(priv
->dev
, "Speed was changed, CBS shaper speeds are changed!");
701 netif_tx_stop_all_queues(ndev
);
704 /* disable forwarding */
705 cpsw_ale_control_set(cpsw
->ale
, priv
->emac_port
,
706 ALE_PORT_STATE
, ALE_PORT_STATE_DISABLE
);
708 cpsw_sl_wait_for_idle(slave
->mac_sl
, 100);
710 cpsw_sl_ctl_reset(slave
->mac_sl
);
713 if (mac_control
!= slave
->mac_control
)
714 phy_print_status(phy
);
716 slave
->mac_control
= mac_control
;
718 if (phy
->link
&& cpsw_need_resplit(cpsw
))
719 cpsw_split_res(cpsw
);
722 static void cpsw_slave_open(struct cpsw_slave
*slave
, struct cpsw_priv
*priv
)
724 struct cpsw_common
*cpsw
= priv
->cpsw
;
725 struct phy_device
*phy
;
727 cpsw_sl_reset(slave
->mac_sl
, 100);
728 cpsw_sl_ctl_reset(slave
->mac_sl
);
730 /* setup priority mapping */
731 cpsw_sl_reg_write(slave
->mac_sl
, CPSW_SL_RX_PRI_MAP
,
732 RX_PRIORITY_MAPPING
);
734 switch (cpsw
->version
) {
736 slave_write(slave
, TX_PRIORITY_MAPPING
, CPSW1_TX_PRI_MAP
);
737 /* Increase RX FIFO size to 5 for supporting fullduplex
741 (CPSW_MAX_BLKS_TX
<< CPSW_MAX_BLKS_TX_SHIFT
) |
742 CPSW_MAX_BLKS_RX
, CPSW1_MAX_BLKS
);
747 slave_write(slave
, TX_PRIORITY_MAPPING
, CPSW2_TX_PRI_MAP
);
748 /* Increase RX FIFO size to 5 for supporting fullduplex
752 (CPSW_MAX_BLKS_TX
<< CPSW_MAX_BLKS_TX_SHIFT
) |
753 CPSW_MAX_BLKS_RX
, CPSW2_MAX_BLKS
);
757 /* setup max packet size, and mac address */
758 cpsw_sl_reg_write(slave
->mac_sl
, CPSW_SL_RX_MAXLEN
,
759 cpsw
->rx_packet_max
);
760 cpsw_set_slave_mac(slave
, priv
);
762 slave
->mac_control
= 0; /* no link yet */
764 if (cpsw_is_switch_en(cpsw
))
765 cpsw_port_add_switch_def_ale_entries(priv
, slave
);
767 cpsw_port_add_dual_emac_def_ale_entries(priv
, slave
);
769 if (!slave
->data
->phy_node
)
770 dev_err(priv
->dev
, "no phy found on slave %d\n",
772 phy
= of_phy_connect(priv
->ndev
, slave
->data
->phy_node
,
773 &cpsw_adjust_link
, 0, slave
->data
->phy_if
);
775 dev_err(priv
->dev
, "phy \"%pOF\" not found on slave %d\n",
776 slave
->data
->phy_node
,
782 phy_attached_info(slave
->phy
);
784 phy_start(slave
->phy
);
786 /* Configure GMII_SEL register */
787 phy_set_mode_ext(slave
->data
->ifphy
, PHY_MODE_ETHERNET
,
788 slave
->data
->phy_if
);
791 static int cpsw_ndo_stop(struct net_device
*ndev
)
793 struct cpsw_priv
*priv
= netdev_priv(ndev
);
794 struct cpsw_common
*cpsw
= priv
->cpsw
;
795 struct cpsw_slave
*slave
;
797 cpsw_info(priv
, ifdown
, "shutting down ndev\n");
798 slave
= &cpsw
->slaves
[priv
->emac_port
- 1];
800 phy_stop(slave
->phy
);
802 netif_tx_stop_all_queues(priv
->ndev
);
805 phy_disconnect(slave
->phy
);
809 __hw_addr_ref_unsync_dev(&ndev
->mc
, ndev
, cpsw_purge_all_mc
);
811 if (cpsw
->usage_count
<= 1) {
812 napi_disable(&cpsw
->napi_rx
);
813 napi_disable(&cpsw
->napi_tx
);
814 cpts_unregister(cpsw
->cpts
);
815 cpsw_intr_disable(cpsw
);
816 cpdma_ctlr_stop(cpsw
->dma
);
817 cpsw_ale_stop(cpsw
->ale
);
818 cpsw_destroy_xdp_rxqs(cpsw
);
821 if (cpsw_need_resplit(cpsw
))
822 cpsw_split_res(cpsw
);
825 pm_runtime_put_sync(cpsw
->dev
);
829 static int cpsw_ndo_open(struct net_device
*ndev
)
831 struct cpsw_priv
*priv
= netdev_priv(ndev
);
832 struct cpsw_common
*cpsw
= priv
->cpsw
;
835 dev_info(priv
->dev
, "starting ndev. mode: %s\n",
836 cpsw_is_switch_en(cpsw
) ? "switch" : "dual_mac");
837 ret
= pm_runtime_get_sync(cpsw
->dev
);
839 pm_runtime_put_noidle(cpsw
->dev
);
843 /* Notify the stack of the actual queue counts. */
844 ret
= netif_set_real_num_tx_queues(ndev
, cpsw
->tx_ch_num
);
846 dev_err(priv
->dev
, "cannot set real number of tx queues\n");
850 ret
= netif_set_real_num_rx_queues(ndev
, cpsw
->rx_ch_num
);
852 dev_err(priv
->dev
, "cannot set real number of rx queues\n");
856 /* Initialize host and slave ports */
857 if (!cpsw
->usage_count
)
858 cpsw_init_host_port(priv
);
859 cpsw_slave_open(&cpsw
->slaves
[priv
->emac_port
- 1], priv
);
861 /* initialize shared resources for every ndev */
862 if (!cpsw
->usage_count
) {
863 /* create rxqs for both infs in dual mac as they use same pool
864 * and must be destroyed together when no users.
866 ret
= cpsw_create_xdp_rxqs(cpsw
);
870 ret
= cpsw_fill_rx_channels(priv
);
874 if (cpts_register(cpsw
->cpts
))
875 dev_err(priv
->dev
, "error registering cpts device\n");
877 napi_enable(&cpsw
->napi_rx
);
878 napi_enable(&cpsw
->napi_tx
);
880 if (cpsw
->tx_irq_disabled
) {
881 cpsw
->tx_irq_disabled
= false;
882 enable_irq(cpsw
->irqs_table
[1]);
885 if (cpsw
->rx_irq_disabled
) {
886 cpsw
->rx_irq_disabled
= false;
887 enable_irq(cpsw
->irqs_table
[0]);
893 /* Enable Interrupt pacing if configured */
894 if (cpsw
->coal_intvl
!= 0) {
895 struct ethtool_coalesce coal
;
897 coal
.rx_coalesce_usecs
= cpsw
->coal_intvl
;
898 cpsw_set_coalesce(ndev
, &coal
);
901 cpdma_ctlr_start(cpsw
->dma
);
902 cpsw_intr_enable(cpsw
);
911 pm_runtime_put_sync(cpsw
->dev
);
915 static netdev_tx_t
cpsw_ndo_start_xmit(struct sk_buff
*skb
,
916 struct net_device
*ndev
)
918 struct cpsw_priv
*priv
= netdev_priv(ndev
);
919 struct cpsw_common
*cpsw
= priv
->cpsw
;
920 struct cpts
*cpts
= cpsw
->cpts
;
921 struct netdev_queue
*txq
;
922 struct cpdma_chan
*txch
;
925 if (skb_padto(skb
, CPSW_MIN_PACKET_SIZE
)) {
926 cpsw_err(priv
, tx_err
, "packet pad failed\n");
927 ndev
->stats
.tx_dropped
++;
928 return NET_XMIT_DROP
;
931 if (skb_shinfo(skb
)->tx_flags
& SKBTX_HW_TSTAMP
&&
932 priv
->tx_ts_enabled
&& cpts_can_timestamp(cpts
, skb
))
933 skb_shinfo(skb
)->tx_flags
|= SKBTX_IN_PROGRESS
;
935 q_idx
= skb_get_queue_mapping(skb
);
936 if (q_idx
>= cpsw
->tx_ch_num
)
937 q_idx
= q_idx
% cpsw
->tx_ch_num
;
939 txch
= cpsw
->txv
[q_idx
].ch
;
940 txq
= netdev_get_tx_queue(ndev
, q_idx
);
941 skb_tx_timestamp(skb
);
942 ret
= cpdma_chan_submit(txch
, skb
, skb
->data
, skb
->len
,
944 if (unlikely(ret
!= 0)) {
945 cpsw_err(priv
, tx_err
, "desc submit failed\n");
949 /* If there is no more tx desc left free then we need to
950 * tell the kernel to stop sending us tx frames.
952 if (unlikely(!cpdma_check_free_tx_desc(txch
))) {
953 netif_tx_stop_queue(txq
);
955 /* Barrier, so that stop_queue visible to other cpus */
956 smp_mb__after_atomic();
958 if (cpdma_check_free_tx_desc(txch
))
959 netif_tx_wake_queue(txq
);
964 ndev
->stats
.tx_dropped
++;
965 netif_tx_stop_queue(txq
);
967 /* Barrier, so that stop_queue visible to other cpus */
968 smp_mb__after_atomic();
970 if (cpdma_check_free_tx_desc(txch
))
971 netif_tx_wake_queue(txq
);
973 return NETDEV_TX_BUSY
;
976 static int cpsw_ndo_set_mac_address(struct net_device
*ndev
, void *p
)
978 struct sockaddr
*addr
= (struct sockaddr
*)p
;
979 struct cpsw_priv
*priv
= netdev_priv(ndev
);
980 struct cpsw_common
*cpsw
= priv
->cpsw
;
985 slave_no
= cpsw_slave_index(cpsw
, priv
);
986 if (!is_valid_ether_addr(addr
->sa_data
))
987 return -EADDRNOTAVAIL
;
989 ret
= pm_runtime_get_sync(cpsw
->dev
);
991 pm_runtime_put_noidle(cpsw
->dev
);
995 vid
= cpsw
->slaves
[slave_no
].port_vlan
;
996 flags
= ALE_VLAN
| ALE_SECURE
;
998 cpsw_ale_del_ucast(cpsw
->ale
, priv
->mac_addr
, HOST_PORT_NUM
,
1000 cpsw_ale_add_ucast(cpsw
->ale
, addr
->sa_data
, HOST_PORT_NUM
,
1003 ether_addr_copy(priv
->mac_addr
, addr
->sa_data
);
1004 ether_addr_copy(ndev
->dev_addr
, priv
->mac_addr
);
1005 cpsw_set_slave_mac(&cpsw
->slaves
[slave_no
], priv
);
1007 pm_runtime_put(cpsw
->dev
);
1012 static int cpsw_ndo_vlan_rx_kill_vid(struct net_device
*ndev
,
1013 __be16 proto
, u16 vid
)
1015 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1016 struct cpsw_common
*cpsw
= priv
->cpsw
;
1020 if (cpsw_is_switch_en(cpsw
)) {
1021 dev_dbg(cpsw
->dev
, "ndo del vlan is called in switch mode\n");
1025 if (vid
== cpsw
->data
.default_vlan
)
1028 ret
= pm_runtime_get_sync(cpsw
->dev
);
1030 pm_runtime_put_noidle(cpsw
->dev
);
1034 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1035 if (cpsw
->slaves
[i
].ndev
&&
1036 vid
== cpsw
->slaves
[i
].port_vlan
)
1040 dev_dbg(priv
->dev
, "removing vlanid %d from vlan filter\n", vid
);
1041 cpsw_ale_del_vlan(cpsw
->ale
, vid
, 0);
1042 cpsw_ale_del_ucast(cpsw
->ale
, priv
->mac_addr
,
1043 HOST_PORT_NUM
, ALE_VLAN
, vid
);
1044 cpsw_ale_del_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
1046 cpsw_ale_flush_multicast(cpsw
->ale
, 0, vid
);
1048 pm_runtime_put(cpsw
->dev
);
1052 static int cpsw_ndo_get_phys_port_name(struct net_device
*ndev
, char *name
,
1055 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1058 err
= snprintf(name
, len
, "p%d", priv
->emac_port
);
1066 #ifdef CONFIG_NET_POLL_CONTROLLER
1067 static void cpsw_ndo_poll_controller(struct net_device
*ndev
)
1069 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
1071 cpsw_intr_disable(cpsw
);
1072 cpsw_rx_interrupt(cpsw
->irqs_table
[0], cpsw
);
1073 cpsw_tx_interrupt(cpsw
->irqs_table
[1], cpsw
);
1074 cpsw_intr_enable(cpsw
);
1078 static int cpsw_ndo_xdp_xmit(struct net_device
*ndev
, int n
,
1079 struct xdp_frame
**frames
, u32 flags
)
1081 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1082 struct xdp_frame
*xdpf
;
1085 if (unlikely(flags
& ~XDP_XMIT_FLAGS_MASK
))
1088 for (i
= 0; i
< n
; i
++) {
1090 if (xdpf
->len
< CPSW_MIN_PACKET_SIZE
) {
1091 xdp_return_frame_rx_napi(xdpf
);
1096 if (cpsw_xdp_tx_frame(priv
, xdpf
, NULL
, priv
->emac_port
))
1103 static int cpsw_get_port_parent_id(struct net_device
*ndev
,
1104 struct netdev_phys_item_id
*ppid
)
1106 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
1108 ppid
->id_len
= sizeof(cpsw
->base_mac
);
1109 memcpy(&ppid
->id
, &cpsw
->base_mac
, ppid
->id_len
);
1114 static const struct net_device_ops cpsw_netdev_ops
= {
1115 .ndo_open
= cpsw_ndo_open
,
1116 .ndo_stop
= cpsw_ndo_stop
,
1117 .ndo_start_xmit
= cpsw_ndo_start_xmit
,
1118 .ndo_set_mac_address
= cpsw_ndo_set_mac_address
,
1119 .ndo_do_ioctl
= cpsw_ndo_ioctl
,
1120 .ndo_validate_addr
= eth_validate_addr
,
1121 .ndo_tx_timeout
= cpsw_ndo_tx_timeout
,
1122 .ndo_set_rx_mode
= cpsw_ndo_set_rx_mode
,
1123 .ndo_set_tx_maxrate
= cpsw_ndo_set_tx_maxrate
,
1124 #ifdef CONFIG_NET_POLL_CONTROLLER
1125 .ndo_poll_controller
= cpsw_ndo_poll_controller
,
1127 .ndo_vlan_rx_add_vid
= cpsw_ndo_vlan_rx_add_vid
,
1128 .ndo_vlan_rx_kill_vid
= cpsw_ndo_vlan_rx_kill_vid
,
1129 .ndo_setup_tc
= cpsw_ndo_setup_tc
,
1130 .ndo_get_phys_port_name
= cpsw_ndo_get_phys_port_name
,
1131 .ndo_bpf
= cpsw_ndo_bpf
,
1132 .ndo_xdp_xmit
= cpsw_ndo_xdp_xmit
,
1133 .ndo_get_port_parent_id
= cpsw_get_port_parent_id
,
1136 static void cpsw_get_drvinfo(struct net_device
*ndev
,
1137 struct ethtool_drvinfo
*info
)
1139 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
1140 struct platform_device
*pdev
;
1142 pdev
= to_platform_device(cpsw
->dev
);
1143 strlcpy(info
->driver
, "cpsw-switch", sizeof(info
->driver
));
1144 strlcpy(info
->version
, "2.0", sizeof(info
->version
));
1145 strlcpy(info
->bus_info
, pdev
->name
, sizeof(info
->bus_info
));
1148 static int cpsw_set_pauseparam(struct net_device
*ndev
,
1149 struct ethtool_pauseparam
*pause
)
1151 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
1152 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1155 slave_no
= cpsw_slave_index(cpsw
, priv
);
1156 if (!cpsw
->slaves
[slave_no
].phy
)
1159 if (!phy_validate_pause(cpsw
->slaves
[slave_no
].phy
, pause
))
1162 priv
->rx_pause
= pause
->rx_pause
? true : false;
1163 priv
->tx_pause
= pause
->tx_pause
? true : false;
1165 phy_set_asym_pause(cpsw
->slaves
[slave_no
].phy
,
1166 priv
->rx_pause
, priv
->tx_pause
);
1171 static int cpsw_set_channels(struct net_device
*ndev
,
1172 struct ethtool_channels
*chs
)
1174 return cpsw_set_channels_common(ndev
, chs
, cpsw_rx_handler
);
1177 static const struct ethtool_ops cpsw_ethtool_ops
= {
1178 .supported_coalesce_params
= ETHTOOL_COALESCE_RX_USECS
,
1179 .get_drvinfo
= cpsw_get_drvinfo
,
1180 .get_msglevel
= cpsw_get_msglevel
,
1181 .set_msglevel
= cpsw_set_msglevel
,
1182 .get_link
= ethtool_op_get_link
,
1183 .get_ts_info
= cpsw_get_ts_info
,
1184 .get_coalesce
= cpsw_get_coalesce
,
1185 .set_coalesce
= cpsw_set_coalesce
,
1186 .get_sset_count
= cpsw_get_sset_count
,
1187 .get_strings
= cpsw_get_strings
,
1188 .get_ethtool_stats
= cpsw_get_ethtool_stats
,
1189 .get_pauseparam
= cpsw_get_pauseparam
,
1190 .set_pauseparam
= cpsw_set_pauseparam
,
1191 .get_wol
= cpsw_get_wol
,
1192 .set_wol
= cpsw_set_wol
,
1193 .get_regs_len
= cpsw_get_regs_len
,
1194 .get_regs
= cpsw_get_regs
,
1195 .begin
= cpsw_ethtool_op_begin
,
1196 .complete
= cpsw_ethtool_op_complete
,
1197 .get_channels
= cpsw_get_channels
,
1198 .set_channels
= cpsw_set_channels
,
1199 .get_link_ksettings
= cpsw_get_link_ksettings
,
1200 .set_link_ksettings
= cpsw_set_link_ksettings
,
1201 .get_eee
= cpsw_get_eee
,
1202 .set_eee
= cpsw_set_eee
,
1203 .nway_reset
= cpsw_nway_reset
,
1204 .get_ringparam
= cpsw_get_ringparam
,
1205 .set_ringparam
= cpsw_set_ringparam
,
1208 static int cpsw_probe_dt(struct cpsw_common
*cpsw
)
1210 struct device_node
*node
= cpsw
->dev
->of_node
, *tmp_node
, *port_np
;
1211 struct cpsw_platform_data
*data
= &cpsw
->data
;
1212 struct device
*dev
= cpsw
->dev
;
1219 tmp_node
= of_get_child_by_name(node
, "ethernet-ports");
1222 data
->slaves
= of_get_child_count(tmp_node
);
1223 if (data
->slaves
!= CPSW_SLAVE_PORTS_NUM
) {
1224 of_node_put(tmp_node
);
1228 data
->active_slave
= 0;
1229 data
->channels
= CPSW_MAX_QUEUES
;
1230 data
->ale_entries
= CPSW_ALE_NUM_ENTRIES
;
1231 data
->dual_emac
= 1;
1232 data
->bd_ram_size
= CPSW_BD_RAM_SIZE
;
1233 data
->mac_control
= 0;
1235 data
->slave_data
= devm_kcalloc(dev
, CPSW_SLAVE_PORTS_NUM
,
1236 sizeof(struct cpsw_slave_data
),
1238 if (!data
->slave_data
)
1241 /* Populate all the child nodes here...
1243 ret
= devm_of_platform_populate(dev
);
1244 /* We do not want to force this, as in some cases may not have child */
1246 dev_warn(dev
, "Doesn't have any child node\n");
1248 for_each_child_of_node(tmp_node
, port_np
) {
1249 struct cpsw_slave_data
*slave_data
;
1250 const void *mac_addr
;
1253 ret
= of_property_read_u32(port_np
, "reg", &port_id
);
1255 dev_err(dev
, "%pOF error reading port_id %d\n",
1260 if (!port_id
|| port_id
> CPSW_SLAVE_PORTS_NUM
) {
1261 dev_err(dev
, "%pOF has invalid port_id %u\n",
1267 slave_data
= &data
->slave_data
[port_id
- 1];
1269 slave_data
->disabled
= !of_device_is_available(port_np
);
1270 if (slave_data
->disabled
)
1273 slave_data
->slave_node
= port_np
;
1274 slave_data
->ifphy
= devm_of_phy_get(dev
, port_np
, NULL
);
1275 if (IS_ERR(slave_data
->ifphy
)) {
1276 ret
= PTR_ERR(slave_data
->ifphy
);
1277 dev_err(dev
, "%pOF: Error retrieving port phy: %d\n",
1282 if (of_phy_is_fixed_link(port_np
)) {
1283 ret
= of_phy_register_fixed_link(port_np
);
1285 if (ret
!= -EPROBE_DEFER
)
1286 dev_err(dev
, "%pOF failed to register fixed-link phy: %d\n",
1290 slave_data
->phy_node
= of_node_get(port_np
);
1292 slave_data
->phy_node
=
1293 of_parse_phandle(port_np
, "phy-handle", 0);
1296 if (!slave_data
->phy_node
) {
1297 dev_err(dev
, "%pOF no phy found\n", port_np
);
1302 ret
= of_get_phy_mode(port_np
, &slave_data
->phy_if
);
1304 dev_err(dev
, "%pOF read phy-mode err %d\n",
1309 mac_addr
= of_get_mac_address(port_np
);
1310 if (!IS_ERR(mac_addr
)) {
1311 ether_addr_copy(slave_data
->mac_addr
, mac_addr
);
1313 ret
= ti_cm_get_macid(dev
, port_id
- 1,
1314 slave_data
->mac_addr
);
1319 if (of_property_read_u32(port_np
, "ti,dual-emac-pvid",
1321 dev_err(dev
, "%pOF Missing dual_emac_res_vlan in DT.\n",
1323 slave_data
->dual_emac_res_vlan
= port_id
;
1324 dev_err(dev
, "%pOF Using %d as Reserved VLAN\n",
1325 port_np
, slave_data
->dual_emac_res_vlan
);
1327 slave_data
->dual_emac_res_vlan
= prop
;
1331 of_node_put(tmp_node
);
1335 of_node_put(port_np
);
1339 static void cpsw_remove_dt(struct cpsw_common
*cpsw
)
1341 struct cpsw_platform_data
*data
= &cpsw
->data
;
1344 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1345 struct cpsw_slave_data
*slave_data
= &data
->slave_data
[i
];
1346 struct device_node
*port_np
= slave_data
->phy_node
;
1349 if (of_phy_is_fixed_link(port_np
))
1350 of_phy_deregister_fixed_link(port_np
);
1352 of_node_put(port_np
);
1357 static int cpsw_create_ports(struct cpsw_common
*cpsw
)
1359 struct cpsw_platform_data
*data
= &cpsw
->data
;
1360 struct net_device
*ndev
, *napi_ndev
= NULL
;
1361 struct device
*dev
= cpsw
->dev
;
1362 struct cpsw_priv
*priv
;
1365 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1366 struct cpsw_slave_data
*slave_data
= &data
->slave_data
[i
];
1368 if (slave_data
->disabled
)
1371 ndev
= devm_alloc_etherdev_mqs(dev
, sizeof(struct cpsw_priv
),
1375 dev_err(dev
, "error allocating net_device\n");
1379 priv
= netdev_priv(ndev
);
1383 priv
->msg_enable
= netif_msg_init(debug_level
, CPSW_DEBUG
);
1384 priv
->emac_port
= i
+ 1;
1386 if (is_valid_ether_addr(slave_data
->mac_addr
)) {
1387 ether_addr_copy(priv
->mac_addr
, slave_data
->mac_addr
);
1388 dev_info(cpsw
->dev
, "Detected MACID = %pM\n",
1391 eth_random_addr(slave_data
->mac_addr
);
1392 dev_info(cpsw
->dev
, "Random MACID = %pM\n",
1395 ether_addr_copy(ndev
->dev_addr
, slave_data
->mac_addr
);
1396 ether_addr_copy(priv
->mac_addr
, slave_data
->mac_addr
);
1398 cpsw
->slaves
[i
].ndev
= ndev
;
1400 ndev
->features
|= NETIF_F_HW_VLAN_CTAG_FILTER
|
1401 NETIF_F_HW_VLAN_CTAG_RX
| NETIF_F_NETNS_LOCAL
;
1403 ndev
->netdev_ops
= &cpsw_netdev_ops
;
1404 ndev
->ethtool_ops
= &cpsw_ethtool_ops
;
1405 SET_NETDEV_DEV(ndev
, dev
);
1408 /* CPSW Host port CPDMA interface is shared between
1409 * ports and there is only one TX and one RX IRQs
1410 * available for all possible TX and RX channels
1413 netif_napi_add(ndev
, &cpsw
->napi_rx
,
1415 cpsw_rx_poll
: cpsw_rx_mq_poll
,
1417 netif_tx_napi_add(ndev
, &cpsw
->napi_tx
,
1419 cpsw_tx_poll
: cpsw_tx_mq_poll
,
1429 static void cpsw_unregister_ports(struct cpsw_common
*cpsw
)
1433 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1434 if (!cpsw
->slaves
[i
].ndev
)
1437 unregister_netdev(cpsw
->slaves
[i
].ndev
);
1441 static int cpsw_register_ports(struct cpsw_common
*cpsw
)
1445 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1446 if (!cpsw
->slaves
[i
].ndev
)
1449 /* register the network device */
1450 ret
= register_netdev(cpsw
->slaves
[i
].ndev
);
1453 "cpsw: err registering net device%d\n", i
);
1454 cpsw
->slaves
[i
].ndev
= NULL
;
1460 cpsw_unregister_ports(cpsw
);
1464 bool cpsw_port_dev_check(const struct net_device
*ndev
)
1466 if (ndev
->netdev_ops
== &cpsw_netdev_ops
) {
1467 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
1469 return !cpsw
->data
.dual_emac
;
1475 static void cpsw_port_offload_fwd_mark_update(struct cpsw_common
*cpsw
)
1480 if (!cpsw
->ale_bypass
&&
1481 (cpsw
->br_members
== (ALE_PORT_1
| ALE_PORT_2
)))
1484 dev_dbg(cpsw
->dev
, "set offload_fwd_mark %d\n", set_val
);
1486 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1487 struct net_device
*sl_ndev
= cpsw
->slaves
[i
].ndev
;
1488 struct cpsw_priv
*priv
= netdev_priv(sl_ndev
);
1490 priv
->offload_fwd_mark
= set_val
;
1494 static int cpsw_netdevice_port_link(struct net_device
*ndev
,
1495 struct net_device
*br_ndev
)
1497 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1498 struct cpsw_common
*cpsw
= priv
->cpsw
;
1500 if (!cpsw
->br_members
) {
1501 cpsw
->hw_bridge_dev
= br_ndev
;
1503 /* This is adding the port to a second bridge, this is
1506 if (cpsw
->hw_bridge_dev
!= br_ndev
)
1510 cpsw
->br_members
|= BIT(priv
->emac_port
);
1512 cpsw_port_offload_fwd_mark_update(cpsw
);
1517 static void cpsw_netdevice_port_unlink(struct net_device
*ndev
)
1519 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1520 struct cpsw_common
*cpsw
= priv
->cpsw
;
1522 cpsw
->br_members
&= ~BIT(priv
->emac_port
);
1524 cpsw_port_offload_fwd_mark_update(cpsw
);
1526 if (!cpsw
->br_members
)
1527 cpsw
->hw_bridge_dev
= NULL
;
1530 /* netdev notifier */
1531 static int cpsw_netdevice_event(struct notifier_block
*unused
,
1532 unsigned long event
, void *ptr
)
1534 struct net_device
*ndev
= netdev_notifier_info_to_dev(ptr
);
1535 struct netdev_notifier_changeupper_info
*info
;
1536 int ret
= NOTIFY_DONE
;
1538 if (!cpsw_port_dev_check(ndev
))
1542 case NETDEV_CHANGEUPPER
:
1545 if (netif_is_bridge_master(info
->upper_dev
)) {
1547 ret
= cpsw_netdevice_port_link(ndev
,
1550 cpsw_netdevice_port_unlink(ndev
);
1557 return notifier_from_errno(ret
);
1560 static struct notifier_block cpsw_netdevice_nb __read_mostly
= {
1561 .notifier_call
= cpsw_netdevice_event
,
1564 static int cpsw_register_notifiers(struct cpsw_common
*cpsw
)
1568 ret
= register_netdevice_notifier(&cpsw_netdevice_nb
);
1570 dev_err(cpsw
->dev
, "can't register netdevice notifier\n");
1574 ret
= cpsw_switchdev_register_notifiers(cpsw
);
1576 unregister_netdevice_notifier(&cpsw_netdevice_nb
);
1581 static void cpsw_unregister_notifiers(struct cpsw_common
*cpsw
)
1583 cpsw_switchdev_unregister_notifiers(cpsw
);
1584 unregister_netdevice_notifier(&cpsw_netdevice_nb
);
1587 static const struct devlink_ops cpsw_devlink_ops
= {
1590 static int cpsw_dl_switch_mode_get(struct devlink
*dl
, u32 id
,
1591 struct devlink_param_gset_ctx
*ctx
)
1593 struct cpsw_devlink
*dl_priv
= devlink_priv(dl
);
1594 struct cpsw_common
*cpsw
= dl_priv
->cpsw
;
1596 dev_dbg(cpsw
->dev
, "%s id:%u\n", __func__
, id
);
1598 if (id
!= CPSW_DL_PARAM_SWITCH_MODE
)
1601 ctx
->val
.vbool
= !cpsw
->data
.dual_emac
;
1606 static int cpsw_dl_switch_mode_set(struct devlink
*dl
, u32 id
,
1607 struct devlink_param_gset_ctx
*ctx
)
1609 struct cpsw_devlink
*dl_priv
= devlink_priv(dl
);
1610 struct cpsw_common
*cpsw
= dl_priv
->cpsw
;
1611 int vlan
= cpsw
->data
.default_vlan
;
1612 bool switch_en
= ctx
->val
.vbool
;
1613 bool if_running
= false;
1616 dev_dbg(cpsw
->dev
, "%s id:%u\n", __func__
, id
);
1618 if (id
!= CPSW_DL_PARAM_SWITCH_MODE
)
1621 if (switch_en
== !cpsw
->data
.dual_emac
)
1624 if (!switch_en
&& cpsw
->br_members
) {
1625 dev_err(cpsw
->dev
, "Remove ports from BR before disabling switch mode\n");
1631 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1632 struct cpsw_slave
*slave
= &cpsw
->slaves
[i
];
1633 struct net_device
*sl_ndev
= slave
->ndev
;
1635 if (!sl_ndev
|| !netif_running(sl_ndev
))
1642 /* all ndevs are down */
1643 cpsw
->data
.dual_emac
= !switch_en
;
1644 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1645 struct cpsw_slave
*slave
= &cpsw
->slaves
[i
];
1646 struct net_device
*sl_ndev
= slave
->ndev
;
1647 struct cpsw_priv
*priv
;
1652 priv
= netdev_priv(sl_ndev
);
1654 vlan
= cpsw
->data
.default_vlan
;
1656 vlan
= slave
->data
->dual_emac_res_vlan
;
1657 slave
->port_vlan
= vlan
;
1663 dev_info(cpsw
->dev
, "Enable switch mode\n");
1665 /* enable bypass - no forwarding; all traffic goes to Host */
1666 cpsw_ale_control_set(cpsw
->ale
, 0, ALE_BYPASS
, 1);
1668 /* clean up ALE table */
1669 cpsw_ale_control_set(cpsw
->ale
, 0, ALE_CLEAR
, 1);
1670 cpsw_ale_control_get(cpsw
->ale
, 0, ALE_AGEOUT
);
1672 cpsw_init_host_port_switch(cpsw
);
1674 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1675 struct cpsw_slave
*slave
= &cpsw
->slaves
[i
];
1676 struct net_device
*sl_ndev
= slave
->ndev
;
1677 struct cpsw_priv
*priv
;
1682 priv
= netdev_priv(sl_ndev
);
1683 slave
->port_vlan
= vlan
;
1684 if (netif_running(sl_ndev
))
1685 cpsw_port_add_switch_def_ale_entries(priv
,
1689 cpsw_ale_control_set(cpsw
->ale
, 0, ALE_BYPASS
, 0);
1690 cpsw
->data
.dual_emac
= false;
1692 dev_info(cpsw
->dev
, "Disable switch mode\n");
1694 /* enable bypass - no forwarding; all traffic goes to Host */
1695 cpsw_ale_control_set(cpsw
->ale
, 0, ALE_BYPASS
, 1);
1697 cpsw_ale_control_set(cpsw
->ale
, 0, ALE_CLEAR
, 1);
1698 cpsw_ale_control_get(cpsw
->ale
, 0, ALE_AGEOUT
);
1700 cpsw_init_host_port_dual_mac(cpsw
);
1702 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1703 struct cpsw_slave
*slave
= &cpsw
->slaves
[i
];
1704 struct net_device
*sl_ndev
= slave
->ndev
;
1705 struct cpsw_priv
*priv
;
1710 priv
= netdev_priv(slave
->ndev
);
1711 slave
->port_vlan
= slave
->data
->dual_emac_res_vlan
;
1712 cpsw_port_add_dual_emac_def_ale_entries(priv
, slave
);
1715 cpsw_ale_control_set(cpsw
->ale
, 0, ALE_BYPASS
, 0);
1716 cpsw
->data
.dual_emac
= true;
1724 static int cpsw_dl_ale_ctrl_get(struct devlink
*dl
, u32 id
,
1725 struct devlink_param_gset_ctx
*ctx
)
1727 struct cpsw_devlink
*dl_priv
= devlink_priv(dl
);
1728 struct cpsw_common
*cpsw
= dl_priv
->cpsw
;
1730 dev_dbg(cpsw
->dev
, "%s id:%u\n", __func__
, id
);
1733 case CPSW_DL_PARAM_ALE_BYPASS
:
1734 ctx
->val
.vbool
= cpsw_ale_control_get(cpsw
->ale
, 0, ALE_BYPASS
);
1743 static int cpsw_dl_ale_ctrl_set(struct devlink
*dl
, u32 id
,
1744 struct devlink_param_gset_ctx
*ctx
)
1746 struct cpsw_devlink
*dl_priv
= devlink_priv(dl
);
1747 struct cpsw_common
*cpsw
= dl_priv
->cpsw
;
1748 int ret
= -EOPNOTSUPP
;
1750 dev_dbg(cpsw
->dev
, "%s id:%u\n", __func__
, id
);
1753 case CPSW_DL_PARAM_ALE_BYPASS
:
1754 ret
= cpsw_ale_control_set(cpsw
->ale
, 0, ALE_BYPASS
,
1757 cpsw
->ale_bypass
= ctx
->val
.vbool
;
1758 cpsw_port_offload_fwd_mark_update(cpsw
);
1768 static const struct devlink_param cpsw_devlink_params
[] = {
1769 DEVLINK_PARAM_DRIVER(CPSW_DL_PARAM_SWITCH_MODE
,
1770 "switch_mode", DEVLINK_PARAM_TYPE_BOOL
,
1771 BIT(DEVLINK_PARAM_CMODE_RUNTIME
),
1772 cpsw_dl_switch_mode_get
, cpsw_dl_switch_mode_set
,
1774 DEVLINK_PARAM_DRIVER(CPSW_DL_PARAM_ALE_BYPASS
,
1775 "ale_bypass", DEVLINK_PARAM_TYPE_BOOL
,
1776 BIT(DEVLINK_PARAM_CMODE_RUNTIME
),
1777 cpsw_dl_ale_ctrl_get
, cpsw_dl_ale_ctrl_set
, NULL
),
1780 static int cpsw_register_devlink(struct cpsw_common
*cpsw
)
1782 struct device
*dev
= cpsw
->dev
;
1783 struct cpsw_devlink
*dl_priv
;
1786 cpsw
->devlink
= devlink_alloc(&cpsw_devlink_ops
, sizeof(*dl_priv
));
1790 dl_priv
= devlink_priv(cpsw
->devlink
);
1791 dl_priv
->cpsw
= cpsw
;
1793 ret
= devlink_register(cpsw
->devlink
, dev
);
1795 dev_err(dev
, "DL reg fail ret:%d\n", ret
);
1799 ret
= devlink_params_register(cpsw
->devlink
, cpsw_devlink_params
,
1800 ARRAY_SIZE(cpsw_devlink_params
));
1802 dev_err(dev
, "DL params reg fail ret:%d\n", ret
);
1806 devlink_params_publish(cpsw
->devlink
);
1810 devlink_unregister(cpsw
->devlink
);
1812 devlink_free(cpsw
->devlink
);
1816 static void cpsw_unregister_devlink(struct cpsw_common
*cpsw
)
1818 devlink_params_unpublish(cpsw
->devlink
);
1819 devlink_params_unregister(cpsw
->devlink
, cpsw_devlink_params
,
1820 ARRAY_SIZE(cpsw_devlink_params
));
1821 devlink_unregister(cpsw
->devlink
);
1822 devlink_free(cpsw
->devlink
);
1825 static const struct of_device_id cpsw_of_mtable
[] = {
1826 { .compatible
= "ti,cpsw-switch"},
1827 { .compatible
= "ti,am335x-cpsw-switch"},
1828 { .compatible
= "ti,am4372-cpsw-switch"},
1829 { .compatible
= "ti,dra7-cpsw-switch"},
1832 MODULE_DEVICE_TABLE(of
, cpsw_of_mtable
);
1834 static const struct soc_device_attribute cpsw_soc_devices
[] = {
1835 { .family
= "AM33xx", .revision
= "ES1.0"},
1839 static int cpsw_probe(struct platform_device
*pdev
)
1841 const struct soc_device_attribute
*soc
;
1842 struct device
*dev
= &pdev
->dev
;
1843 struct cpsw_common
*cpsw
;
1844 struct resource
*ss_res
;
1845 struct gpio_descs
*mode
;
1846 void __iomem
*ss_regs
;
1851 cpsw
= devm_kzalloc(dev
, sizeof(struct cpsw_common
), GFP_KERNEL
);
1855 cpsw_slave_index
= cpsw_slave_index_priv
;
1859 cpsw
->slaves
= devm_kcalloc(dev
,
1860 CPSW_SLAVE_PORTS_NUM
,
1861 sizeof(struct cpsw_slave
),
1866 mode
= devm_gpiod_get_array_optional(dev
, "mode", GPIOD_OUT_LOW
);
1868 ret
= PTR_ERR(mode
);
1869 dev_err(dev
, "gpio request failed, ret %d\n", ret
);
1873 clk
= devm_clk_get(dev
, "fck");
1876 dev_err(dev
, "fck is not found %d\n", ret
);
1879 cpsw
->bus_freq_mhz
= clk_get_rate(clk
) / 1000000;
1881 ss_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1882 ss_regs
= devm_ioremap_resource(dev
, ss_res
);
1883 if (IS_ERR(ss_regs
)) {
1884 ret
= PTR_ERR(ss_regs
);
1887 cpsw
->regs
= ss_regs
;
1889 irq
= platform_get_irq_byname(pdev
, "rx");
1892 cpsw
->irqs_table
[0] = irq
;
1894 irq
= platform_get_irq_byname(pdev
, "tx");
1897 cpsw
->irqs_table
[1] = irq
;
1899 platform_set_drvdata(pdev
, cpsw
);
1900 /* This may be required here for child devices. */
1901 pm_runtime_enable(dev
);
1903 /* Need to enable clocks with runtime PM api to access module
1906 ret
= pm_runtime_get_sync(dev
);
1908 pm_runtime_put_noidle(dev
);
1909 pm_runtime_disable(dev
);
1913 ret
= cpsw_probe_dt(cpsw
);
1917 soc
= soc_device_match(cpsw_soc_devices
);
1919 cpsw
->quirk_irq
= 1;
1921 cpsw
->rx_packet_max
= rx_packet_max
;
1922 cpsw
->descs_pool_size
= descs_pool_size
;
1923 eth_random_addr(cpsw
->base_mac
);
1925 ret
= cpsw_init_common(cpsw
, ss_regs
, ale_ageout
,
1926 (u32 __force
)ss_res
->start
+ CPSW2_BD_OFFSET
,
1931 cpsw
->wr_regs
= cpsw
->version
== CPSW_VERSION_1
?
1932 ss_regs
+ CPSW1_WR_OFFSET
:
1933 ss_regs
+ CPSW2_WR_OFFSET
;
1935 ch
= cpsw
->quirk_irq
? 0 : 7;
1936 cpsw
->txv
[0].ch
= cpdma_chan_create(cpsw
->dma
, ch
, cpsw_tx_handler
, 0);
1937 if (IS_ERR(cpsw
->txv
[0].ch
)) {
1938 dev_err(dev
, "error initializing tx dma channel\n");
1939 ret
= PTR_ERR(cpsw
->txv
[0].ch
);
1943 cpsw
->rxv
[0].ch
= cpdma_chan_create(cpsw
->dma
, 0, cpsw_rx_handler
, 1);
1944 if (IS_ERR(cpsw
->rxv
[0].ch
)) {
1945 dev_err(dev
, "error initializing rx dma channel\n");
1946 ret
= PTR_ERR(cpsw
->rxv
[0].ch
);
1949 cpsw_split_res(cpsw
);
1952 ret
= cpsw_create_ports(cpsw
);
1954 goto clean_unregister_netdev
;
1956 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
1957 * MISC IRQs which are always kept disabled with this driver so
1958 * we will not request them.
1960 * If anyone wants to implement support for those, make sure to
1961 * first request and append them to irqs_table array.
1964 ret
= devm_request_irq(dev
, cpsw
->irqs_table
[0], cpsw_rx_interrupt
,
1965 0, dev_name(dev
), cpsw
);
1967 dev_err(dev
, "error attaching irq (%d)\n", ret
);
1968 goto clean_unregister_netdev
;
1971 ret
= devm_request_irq(dev
, cpsw
->irqs_table
[1], cpsw_tx_interrupt
,
1972 0, dev_name(dev
), cpsw
);
1974 dev_err(dev
, "error attaching irq (%d)\n", ret
);
1975 goto clean_unregister_netdev
;
1978 ret
= cpsw_register_notifiers(cpsw
);
1980 goto clean_unregister_netdev
;
1982 ret
= cpsw_register_devlink(cpsw
);
1984 goto clean_unregister_notifiers
;
1986 ret
= cpsw_register_ports(cpsw
);
1988 goto clean_unregister_notifiers
;
1990 dev_notice(dev
, "initialized (regs %pa, pool size %d) hw_ver:%08X %d.%d (%d)\n",
1991 &ss_res
->start
, descs_pool_size
,
1992 cpsw
->version
, CPSW_MAJOR_VERSION(cpsw
->version
),
1993 CPSW_MINOR_VERSION(cpsw
->version
),
1994 CPSW_RTL_VERSION(cpsw
->version
));
1996 pm_runtime_put(dev
);
2000 clean_unregister_notifiers
:
2001 cpsw_unregister_notifiers(cpsw
);
2002 clean_unregister_netdev
:
2003 cpsw_unregister_ports(cpsw
);
2005 cpts_release(cpsw
->cpts
);
2006 cpdma_ctlr_destroy(cpsw
->dma
);
2008 cpsw_remove_dt(cpsw
);
2009 pm_runtime_put_sync(dev
);
2010 pm_runtime_disable(dev
);
2014 static int cpsw_remove(struct platform_device
*pdev
)
2016 struct cpsw_common
*cpsw
= platform_get_drvdata(pdev
);
2019 ret
= pm_runtime_get_sync(&pdev
->dev
);
2021 pm_runtime_put_noidle(&pdev
->dev
);
2025 cpsw_unregister_notifiers(cpsw
);
2026 cpsw_unregister_devlink(cpsw
);
2027 cpsw_unregister_ports(cpsw
);
2029 cpts_release(cpsw
->cpts
);
2030 cpdma_ctlr_destroy(cpsw
->dma
);
2031 cpsw_remove_dt(cpsw
);
2032 pm_runtime_put_sync(&pdev
->dev
);
2033 pm_runtime_disable(&pdev
->dev
);
2037 static struct platform_driver cpsw_driver
= {
2039 .name
= "cpsw-switch",
2040 .of_match_table
= cpsw_of_mtable
,
2042 .probe
= cpsw_probe
,
2043 .remove
= cpsw_remove
,
2046 module_platform_driver(cpsw_driver
);
2048 MODULE_LICENSE("GPL");
2049 MODULE_DESCRIPTION("TI CPSW switchdev Ethernet driver");