1 // SPDX-License-Identifier: GPL-2.0
3 * Texas Instruments Ethernet Switch Driver
5 * Copyright (C) 2012 Texas Instruments
9 #include <linux/kernel.h>
11 #include <linux/clk.h>
12 #include <linux/timer.h>
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/irqreturn.h>
16 #include <linux/interrupt.h>
17 #include <linux/if_ether.h>
18 #include <linux/etherdevice.h>
19 #include <linux/netdevice.h>
20 #include <linux/net_tstamp.h>
21 #include <linux/phy.h>
22 #include <linux/phy/phy.h>
23 #include <linux/workqueue.h>
24 #include <linux/delay.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/gpio/consumer.h>
28 #include <linux/of_mdio.h>
29 #include <linux/of_net.h>
30 #include <linux/of_device.h>
31 #include <linux/if_vlan.h>
32 #include <linux/kmemleak.h>
33 #include <linux/sys_soc.h>
34 #include <net/page_pool.h>
35 #include <linux/bpf.h>
36 #include <linux/bpf_trace.h>
38 #include <linux/pinctrl/consumer.h>
39 #include <net/pkt_cls.h>
43 #include "cpsw_priv.h"
46 #include "davinci_cpdma.h"
48 #include <net/pkt_sched.h>
50 static int debug_level
;
51 module_param(debug_level
, int, 0);
52 MODULE_PARM_DESC(debug_level
, "cpsw debug level (NETIF_MSG bits)");
54 static int ale_ageout
= 10;
55 module_param(ale_ageout
, int, 0);
56 MODULE_PARM_DESC(ale_ageout
, "cpsw ale ageout interval (seconds)");
58 static int rx_packet_max
= CPSW_MAX_PACKET_SIZE
;
59 module_param(rx_packet_max
, int, 0);
60 MODULE_PARM_DESC(rx_packet_max
, "maximum receive packet size (bytes)");
62 static int descs_pool_size
= CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT
;
63 module_param(descs_pool_size
, int, 0444);
64 MODULE_PARM_DESC(descs_pool_size
, "Number of CPDMA CPPI descriptors in pool");
66 #define for_each_slave(priv, func, arg...) \
68 struct cpsw_slave *slave; \
69 struct cpsw_common *cpsw = (priv)->cpsw; \
71 if (cpsw->data.dual_emac) \
72 (func)((cpsw)->slaves + priv->emac_port, ##arg);\
74 for (n = cpsw->data.slaves, \
75 slave = cpsw->slaves; \
77 (func)(slave++, ##arg); \
80 static int cpsw_slave_index_priv(struct cpsw_common
*cpsw
,
81 struct cpsw_priv
*priv
)
83 return cpsw
->data
.dual_emac
? priv
->emac_port
: cpsw
->data
.active_slave
;
86 static int cpsw_get_slave_port(u32 slave_num
)
91 static int cpsw_ndo_vlan_rx_add_vid(struct net_device
*ndev
,
92 __be16 proto
, u16 vid
);
94 static void cpsw_set_promiscious(struct net_device
*ndev
, bool enable
)
96 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
97 struct cpsw_ale
*ale
= cpsw
->ale
;
100 if (cpsw
->data
.dual_emac
) {
103 /* Enabling promiscuous mode for one interface will be
104 * common for both the interface as the interface shares
105 * the same hardware resource.
107 for (i
= 0; i
< cpsw
->data
.slaves
; i
++)
108 if (cpsw
->slaves
[i
].ndev
->flags
& IFF_PROMISC
)
111 if (!enable
&& flag
) {
113 dev_err(&ndev
->dev
, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
118 cpsw_ale_control_set(ale
, 0, ALE_BYPASS
, 1);
120 dev_dbg(&ndev
->dev
, "promiscuity enabled\n");
123 cpsw_ale_control_set(ale
, 0, ALE_BYPASS
, 0);
124 dev_dbg(&ndev
->dev
, "promiscuity disabled\n");
128 unsigned long timeout
= jiffies
+ HZ
;
130 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
131 for (i
= 0; i
<= cpsw
->data
.slaves
; i
++) {
132 cpsw_ale_control_set(ale
, i
,
133 ALE_PORT_NOLEARN
, 1);
134 cpsw_ale_control_set(ale
, i
,
135 ALE_PORT_NO_SA_UPDATE
, 1);
138 /* Clear All Untouched entries */
139 cpsw_ale_control_set(ale
, 0, ALE_AGEOUT
, 1);
142 if (cpsw_ale_control_get(ale
, 0, ALE_AGEOUT
))
144 } while (time_after(timeout
, jiffies
));
145 cpsw_ale_control_set(ale
, 0, ALE_AGEOUT
, 1);
147 /* Clear all mcast from ALE */
148 cpsw_ale_flush_multicast(ale
, ALE_ALL_PORTS
, -1);
149 __hw_addr_ref_unsync_dev(&ndev
->mc
, ndev
, NULL
);
151 /* Flood All Unicast Packets to Host port */
152 cpsw_ale_control_set(ale
, 0, ALE_P0_UNI_FLOOD
, 1);
153 dev_dbg(&ndev
->dev
, "promiscuity enabled\n");
155 /* Don't Flood All Unicast Packets to Host port */
156 cpsw_ale_control_set(ale
, 0, ALE_P0_UNI_FLOOD
, 0);
158 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
159 for (i
= 0; i
<= cpsw
->data
.slaves
; i
++) {
160 cpsw_ale_control_set(ale
, i
,
161 ALE_PORT_NOLEARN
, 0);
162 cpsw_ale_control_set(ale
, i
,
163 ALE_PORT_NO_SA_UPDATE
, 0);
165 dev_dbg(&ndev
->dev
, "promiscuity disabled\n");
171 * cpsw_set_mc - adds multicast entry to the table if it's not added or deletes
172 * if it's not deleted
173 * @ndev: device to sync
174 * @addr: address to be added or deleted
175 * @vid: vlan id, if vid < 0 set/unset address for real device
176 * @add: add address if the flag is set or remove otherwise
178 static int cpsw_set_mc(struct net_device
*ndev
, const u8
*addr
,
181 struct cpsw_priv
*priv
= netdev_priv(ndev
);
182 struct cpsw_common
*cpsw
= priv
->cpsw
;
183 int mask
, flags
, ret
;
186 if (cpsw
->data
.dual_emac
)
187 vid
= cpsw
->slaves
[priv
->emac_port
].port_vlan
;
192 mask
= cpsw
->data
.dual_emac
? ALE_PORT_HOST
: ALE_ALL_PORTS
;
193 flags
= vid
? ALE_VLAN
: 0;
196 ret
= cpsw_ale_add_mcast(cpsw
->ale
, addr
, mask
, flags
, vid
, 0);
198 ret
= cpsw_ale_del_mcast(cpsw
->ale
, addr
, 0, flags
, vid
);
203 static int cpsw_update_vlan_mc(struct net_device
*vdev
, int vid
, void *ctx
)
205 struct addr_sync_ctx
*sync_ctx
= ctx
;
206 struct netdev_hw_addr
*ha
;
207 int found
= 0, ret
= 0;
209 if (!vdev
|| !(vdev
->flags
& IFF_UP
))
212 /* vlan address is relevant if its sync_cnt != 0 */
213 netdev_for_each_mc_addr(ha
, vdev
) {
214 if (ether_addr_equal(ha
->addr
, sync_ctx
->addr
)) {
215 found
= ha
->sync_cnt
;
221 sync_ctx
->consumed
++;
223 if (sync_ctx
->flush
) {
225 cpsw_set_mc(sync_ctx
->ndev
, sync_ctx
->addr
, vid
, 0);
230 ret
= cpsw_set_mc(sync_ctx
->ndev
, sync_ctx
->addr
, vid
, 1);
235 static int cpsw_add_mc_addr(struct net_device
*ndev
, const u8
*addr
, int num
)
237 struct addr_sync_ctx sync_ctx
;
240 sync_ctx
.consumed
= 0;
241 sync_ctx
.addr
= addr
;
242 sync_ctx
.ndev
= ndev
;
245 ret
= vlan_for_each(ndev
, cpsw_update_vlan_mc
, &sync_ctx
);
246 if (sync_ctx
.consumed
< num
&& !ret
)
247 ret
= cpsw_set_mc(ndev
, addr
, -1, 1);
252 static int cpsw_del_mc_addr(struct net_device
*ndev
, const u8
*addr
, int num
)
254 struct addr_sync_ctx sync_ctx
;
256 sync_ctx
.consumed
= 0;
257 sync_ctx
.addr
= addr
;
258 sync_ctx
.ndev
= ndev
;
261 vlan_for_each(ndev
, cpsw_update_vlan_mc
, &sync_ctx
);
262 if (sync_ctx
.consumed
== num
)
263 cpsw_set_mc(ndev
, addr
, -1, 0);
268 static int cpsw_purge_vlan_mc(struct net_device
*vdev
, int vid
, void *ctx
)
270 struct addr_sync_ctx
*sync_ctx
= ctx
;
271 struct netdev_hw_addr
*ha
;
274 if (!vdev
|| !(vdev
->flags
& IFF_UP
))
277 /* vlan address is relevant if its sync_cnt != 0 */
278 netdev_for_each_mc_addr(ha
, vdev
) {
279 if (ether_addr_equal(ha
->addr
, sync_ctx
->addr
)) {
280 found
= ha
->sync_cnt
;
288 sync_ctx
->consumed
++;
289 cpsw_set_mc(sync_ctx
->ndev
, sync_ctx
->addr
, vid
, 0);
293 static int cpsw_purge_all_mc(struct net_device
*ndev
, const u8
*addr
, int num
)
295 struct addr_sync_ctx sync_ctx
;
297 sync_ctx
.addr
= addr
;
298 sync_ctx
.ndev
= ndev
;
299 sync_ctx
.consumed
= 0;
301 vlan_for_each(ndev
, cpsw_purge_vlan_mc
, &sync_ctx
);
302 if (sync_ctx
.consumed
< num
)
303 cpsw_set_mc(ndev
, addr
, -1, 0);
308 static void cpsw_ndo_set_rx_mode(struct net_device
*ndev
)
310 struct cpsw_priv
*priv
= netdev_priv(ndev
);
311 struct cpsw_common
*cpsw
= priv
->cpsw
;
314 if (cpsw
->data
.dual_emac
)
315 slave_port
= priv
->emac_port
+ 1;
317 if (ndev
->flags
& IFF_PROMISC
) {
318 /* Enable promiscuous mode */
319 cpsw_set_promiscious(ndev
, true);
320 cpsw_ale_set_allmulti(cpsw
->ale
, IFF_ALLMULTI
, slave_port
);
323 /* Disable promiscuous mode */
324 cpsw_set_promiscious(ndev
, false);
327 /* Restore allmulti on vlans if necessary */
328 cpsw_ale_set_allmulti(cpsw
->ale
,
329 ndev
->flags
& IFF_ALLMULTI
, slave_port
);
331 /* add/remove mcast address either for real netdev or for vlan */
332 __hw_addr_ref_sync_dev(&ndev
->mc
, ndev
, cpsw_add_mc_addr
,
336 static unsigned int cpsw_rxbuf_total_len(unsigned int len
)
338 len
+= CPSW_HEADROOM
;
339 len
+= SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
341 return SKB_DATA_ALIGN(len
);
344 static void cpsw_rx_handler(void *token
, int len
, int status
)
346 struct page
*new_page
, *page
= token
;
347 void *pa
= page_address(page
);
348 struct cpsw_meta_xdp
*xmeta
= pa
+ CPSW_XMETA_OFFSET
;
349 struct cpsw_common
*cpsw
= ndev_to_cpsw(xmeta
->ndev
);
350 int pkt_size
= cpsw
->rx_packet_max
;
351 int ret
= 0, port
, ch
= xmeta
->ch
;
352 int headroom
= CPSW_HEADROOM
;
353 struct net_device
*ndev
= xmeta
->ndev
;
354 struct cpsw_priv
*priv
;
355 struct page_pool
*pool
;
360 if (cpsw
->data
.dual_emac
&& status
>= 0) {
361 port
= CPDMA_RX_SOURCE_PORT(status
);
363 ndev
= cpsw
->slaves
[--port
].ndev
;
366 priv
= netdev_priv(ndev
);
367 pool
= cpsw
->page_pool
[ch
];
368 if (unlikely(status
< 0) || unlikely(!netif_running(ndev
))) {
369 /* In dual emac mode check for all interfaces */
370 if (cpsw
->data
.dual_emac
&& cpsw
->usage_count
&&
372 /* The packet received is for the interface which
373 * is already down and the other interface is up
374 * and running, instead of freeing which results
375 * in reducing of the number of rx descriptor in
376 * DMA engine, requeue page back to cpdma.
382 /* the interface is going down, pages are purged */
383 page_pool_recycle_direct(pool
, page
);
387 new_page
= page_pool_dev_alloc_pages(pool
);
388 if (unlikely(!new_page
)) {
390 ndev
->stats
.rx_dropped
++;
394 if (priv
->xdp_prog
) {
395 if (status
& CPDMA_RX_VLAN_ENCAP
) {
396 xdp
.data
= pa
+ CPSW_HEADROOM
+
397 CPSW_RX_VLAN_ENCAP_HDR_SIZE
;
398 xdp
.data_end
= xdp
.data
+ len
-
399 CPSW_RX_VLAN_ENCAP_HDR_SIZE
;
401 xdp
.data
= pa
+ CPSW_HEADROOM
;
402 xdp
.data_end
= xdp
.data
+ len
;
405 xdp_set_data_meta_invalid(&xdp
);
407 xdp
.data_hard_start
= pa
;
408 xdp
.rxq
= &priv
->xdp_rxq
[ch
];
410 port
= priv
->emac_port
+ cpsw
->data
.dual_emac
;
411 ret
= cpsw_run_xdp(priv
, ch
, &xdp
, page
, port
);
412 if (ret
!= CPSW_XDP_PASS
)
415 /* XDP prog might have changed packet data and boundaries */
416 len
= xdp
.data_end
- xdp
.data
;
417 headroom
= xdp
.data
- xdp
.data_hard_start
;
419 /* XDP prog can modify vlan tag, so can't use encap header */
420 status
&= ~CPDMA_RX_VLAN_ENCAP
;
423 /* pass skb to netstack if no XDP prog or returned XDP_PASS */
424 skb
= build_skb(pa
, cpsw_rxbuf_total_len(pkt_size
));
426 ndev
->stats
.rx_dropped
++;
427 page_pool_recycle_direct(pool
, page
);
431 skb_reserve(skb
, headroom
);
434 if (status
& CPDMA_RX_VLAN_ENCAP
)
435 cpsw_rx_vlan_encap(skb
);
436 if (priv
->rx_ts_enabled
)
437 cpts_rx_timestamp(cpsw
->cpts
, skb
);
438 skb
->protocol
= eth_type_trans(skb
, ndev
);
440 /* unmap page as no netstack skb page recycling */
441 page_pool_release_page(pool
, page
);
442 netif_receive_skb(skb
);
444 ndev
->stats
.rx_bytes
+= len
;
445 ndev
->stats
.rx_packets
++;
448 xmeta
= page_address(new_page
) + CPSW_XMETA_OFFSET
;
452 dma
= page_pool_get_dma_addr(new_page
) + CPSW_HEADROOM
;
453 ret
= cpdma_chan_submit_mapped(cpsw
->rxv
[ch
].ch
, new_page
, dma
,
456 WARN_ON(ret
== -ENOMEM
);
457 page_pool_recycle_direct(pool
, new_page
);
461 static void _cpsw_adjust_link(struct cpsw_slave
*slave
,
462 struct cpsw_priv
*priv
, bool *link
)
464 struct phy_device
*phy
= slave
->phy
;
467 struct cpsw_common
*cpsw
= priv
->cpsw
;
472 slave_port
= cpsw_get_slave_port(slave
->slave_num
);
475 mac_control
= CPSW_SL_CTL_GMII_EN
;
477 if (phy
->speed
== 1000)
478 mac_control
|= CPSW_SL_CTL_GIG
;
480 mac_control
|= CPSW_SL_CTL_FULLDUPLEX
;
482 /* set speed_in input in case RMII mode is used in 100Mbps */
483 if (phy
->speed
== 100)
484 mac_control
|= CPSW_SL_CTL_IFCTL_A
;
485 /* in band mode only works in 10Mbps RGMII mode */
486 else if ((phy
->speed
== 10) && phy_interface_is_rgmii(phy
))
487 mac_control
|= CPSW_SL_CTL_EXT_EN
; /* In Band mode */
490 mac_control
|= CPSW_SL_CTL_RX_FLOW_EN
;
493 mac_control
|= CPSW_SL_CTL_TX_FLOW_EN
;
495 if (mac_control
!= slave
->mac_control
)
496 cpsw_sl_ctl_set(slave
->mac_sl
, mac_control
);
498 /* enable forwarding */
499 cpsw_ale_control_set(cpsw
->ale
, slave_port
,
500 ALE_PORT_STATE
, ALE_PORT_STATE_FORWARD
);
504 if (priv
->shp_cfg_speed
&&
505 priv
->shp_cfg_speed
!= slave
->phy
->speed
&&
506 !cpsw_shp_is_off(priv
))
508 "Speed was changed, CBS shaper speeds are changed!");
511 /* disable forwarding */
512 cpsw_ale_control_set(cpsw
->ale
, slave_port
,
513 ALE_PORT_STATE
, ALE_PORT_STATE_DISABLE
);
515 cpsw_sl_wait_for_idle(slave
->mac_sl
, 100);
517 cpsw_sl_ctl_reset(slave
->mac_sl
);
520 if (mac_control
!= slave
->mac_control
)
521 phy_print_status(phy
);
523 slave
->mac_control
= mac_control
;
526 static void cpsw_adjust_link(struct net_device
*ndev
)
528 struct cpsw_priv
*priv
= netdev_priv(ndev
);
529 struct cpsw_common
*cpsw
= priv
->cpsw
;
532 for_each_slave(priv
, _cpsw_adjust_link
, priv
, &link
);
535 if (cpsw_need_resplit(cpsw
))
536 cpsw_split_res(cpsw
);
538 netif_carrier_on(ndev
);
539 if (netif_running(ndev
))
540 netif_tx_wake_all_queues(ndev
);
542 netif_carrier_off(ndev
);
543 netif_tx_stop_all_queues(ndev
);
547 static inline void cpsw_add_dual_emac_def_ale_entries(
548 struct cpsw_priv
*priv
, struct cpsw_slave
*slave
,
551 struct cpsw_common
*cpsw
= priv
->cpsw
;
552 u32 port_mask
= 1 << slave_port
| ALE_PORT_HOST
;
554 if (cpsw
->version
== CPSW_VERSION_1
)
555 slave_write(slave
, slave
->port_vlan
, CPSW1_PORT_VLAN
);
557 slave_write(slave
, slave
->port_vlan
, CPSW2_PORT_VLAN
);
558 cpsw_ale_add_vlan(cpsw
->ale
, slave
->port_vlan
, port_mask
,
559 port_mask
, port_mask
, 0);
560 cpsw_ale_add_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
561 ALE_PORT_HOST
, ALE_VLAN
, slave
->port_vlan
, 0);
562 cpsw_ale_add_ucast(cpsw
->ale
, priv
->mac_addr
,
563 HOST_PORT_NUM
, ALE_VLAN
|
564 ALE_SECURE
, slave
->port_vlan
);
565 cpsw_ale_control_set(cpsw
->ale
, slave_port
,
566 ALE_PORT_DROP_UNKNOWN_VLAN
, 1);
569 static void cpsw_slave_open(struct cpsw_slave
*slave
, struct cpsw_priv
*priv
)
572 struct phy_device
*phy
;
573 struct cpsw_common
*cpsw
= priv
->cpsw
;
575 cpsw_sl_reset(slave
->mac_sl
, 100);
576 cpsw_sl_ctl_reset(slave
->mac_sl
);
578 /* setup priority mapping */
579 cpsw_sl_reg_write(slave
->mac_sl
, CPSW_SL_RX_PRI_MAP
,
580 RX_PRIORITY_MAPPING
);
582 switch (cpsw
->version
) {
584 slave_write(slave
, TX_PRIORITY_MAPPING
, CPSW1_TX_PRI_MAP
);
585 /* Increase RX FIFO size to 5 for supporting fullduplex
589 (CPSW_MAX_BLKS_TX
<< CPSW_MAX_BLKS_TX_SHIFT
) |
590 CPSW_MAX_BLKS_RX
, CPSW1_MAX_BLKS
);
595 slave_write(slave
, TX_PRIORITY_MAPPING
, CPSW2_TX_PRI_MAP
);
596 /* Increase RX FIFO size to 5 for supporting fullduplex
600 (CPSW_MAX_BLKS_TX
<< CPSW_MAX_BLKS_TX_SHIFT
) |
601 CPSW_MAX_BLKS_RX
, CPSW2_MAX_BLKS
);
605 /* setup max packet size, and mac address */
606 cpsw_sl_reg_write(slave
->mac_sl
, CPSW_SL_RX_MAXLEN
,
607 cpsw
->rx_packet_max
);
608 cpsw_set_slave_mac(slave
, priv
);
610 slave
->mac_control
= 0; /* no link yet */
612 slave_port
= cpsw_get_slave_port(slave
->slave_num
);
614 if (cpsw
->data
.dual_emac
)
615 cpsw_add_dual_emac_def_ale_entries(priv
, slave
, slave_port
);
617 cpsw_ale_add_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
618 1 << slave_port
, 0, 0, ALE_MCAST_FWD_2
);
620 if (slave
->data
->phy_node
) {
621 phy
= of_phy_connect(priv
->ndev
, slave
->data
->phy_node
,
622 &cpsw_adjust_link
, 0, slave
->data
->phy_if
);
624 dev_err(priv
->dev
, "phy \"%pOF\" not found on slave %d\n",
625 slave
->data
->phy_node
,
630 phy
= phy_connect(priv
->ndev
, slave
->data
->phy_id
,
631 &cpsw_adjust_link
, slave
->data
->phy_if
);
634 "phy \"%s\" not found on slave %d, err %ld\n",
635 slave
->data
->phy_id
, slave
->slave_num
,
643 phy_attached_info(slave
->phy
);
645 phy_start(slave
->phy
);
647 /* Configure GMII_SEL register */
648 if (!IS_ERR(slave
->data
->ifphy
))
649 phy_set_mode_ext(slave
->data
->ifphy
, PHY_MODE_ETHERNET
,
650 slave
->data
->phy_if
);
652 cpsw_phy_sel(cpsw
->dev
, slave
->phy
->interface
,
656 static inline void cpsw_add_default_vlan(struct cpsw_priv
*priv
)
658 struct cpsw_common
*cpsw
= priv
->cpsw
;
659 const int vlan
= cpsw
->data
.default_vlan
;
662 int unreg_mcast_mask
;
664 reg
= (cpsw
->version
== CPSW_VERSION_1
) ? CPSW1_PORT_VLAN
:
667 writel(vlan
, &cpsw
->host_port_regs
->port_vlan
);
669 for (i
= 0; i
< cpsw
->data
.slaves
; i
++)
670 slave_write(cpsw
->slaves
+ i
, vlan
, reg
);
672 if (priv
->ndev
->flags
& IFF_ALLMULTI
)
673 unreg_mcast_mask
= ALE_ALL_PORTS
;
675 unreg_mcast_mask
= ALE_PORT_1
| ALE_PORT_2
;
677 cpsw_ale_add_vlan(cpsw
->ale
, vlan
, ALE_ALL_PORTS
,
678 ALE_ALL_PORTS
, ALE_ALL_PORTS
,
682 static void cpsw_init_host_port(struct cpsw_priv
*priv
)
686 struct cpsw_common
*cpsw
= priv
->cpsw
;
688 /* soft reset the controller and initialize ale */
689 soft_reset("cpsw", &cpsw
->regs
->soft_reset
);
690 cpsw_ale_start(cpsw
->ale
);
692 /* switch to vlan unaware mode */
693 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
, ALE_VLAN_AWARE
,
694 CPSW_ALE_VLAN_AWARE
);
695 control_reg
= readl(&cpsw
->regs
->control
);
696 control_reg
|= CPSW_VLAN_AWARE
| CPSW_RX_VLAN_ENCAP
;
697 writel(control_reg
, &cpsw
->regs
->control
);
698 fifo_mode
= (cpsw
->data
.dual_emac
) ? CPSW_FIFO_DUAL_MAC_MODE
:
699 CPSW_FIFO_NORMAL_MODE
;
700 writel(fifo_mode
, &cpsw
->host_port_regs
->tx_in_ctl
);
702 /* setup host port priority mapping */
703 writel_relaxed(CPDMA_TX_PRIORITY_MAP
,
704 &cpsw
->host_port_regs
->cpdma_tx_pri_map
);
705 writel_relaxed(0, &cpsw
->host_port_regs
->cpdma_rx_chan_map
);
707 cpsw_ale_control_set(cpsw
->ale
, HOST_PORT_NUM
,
708 ALE_PORT_STATE
, ALE_PORT_STATE_FORWARD
);
710 if (!cpsw
->data
.dual_emac
) {
711 cpsw_ale_add_ucast(cpsw
->ale
, priv
->mac_addr
, HOST_PORT_NUM
,
713 cpsw_ale_add_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
714 ALE_PORT_HOST
, 0, 0, ALE_MCAST_FWD_2
);
718 static void cpsw_slave_stop(struct cpsw_slave
*slave
, struct cpsw_common
*cpsw
)
722 slave_port
= cpsw_get_slave_port(slave
->slave_num
);
726 phy_stop(slave
->phy
);
727 phy_disconnect(slave
->phy
);
729 cpsw_ale_control_set(cpsw
->ale
, slave_port
,
730 ALE_PORT_STATE
, ALE_PORT_STATE_DISABLE
);
731 cpsw_sl_reset(slave
->mac_sl
, 100);
732 cpsw_sl_ctl_reset(slave
->mac_sl
);
735 static int cpsw_restore_vlans(struct net_device
*vdev
, int vid
, void *arg
)
737 struct cpsw_priv
*priv
= arg
;
742 cpsw_ndo_vlan_rx_add_vid(priv
->ndev
, 0, vid
);
746 /* restore resources after port reset */
747 static void cpsw_restore(struct cpsw_priv
*priv
)
749 /* restore vlan configurations */
750 vlan_for_each(priv
->ndev
, cpsw_restore_vlans
, priv
);
752 /* restore MQPRIO offload */
753 for_each_slave(priv
, cpsw_mqprio_resume
, priv
);
755 /* restore CBS offload */
756 for_each_slave(priv
, cpsw_cbs_resume
, priv
);
759 static int cpsw_ndo_open(struct net_device
*ndev
)
761 struct cpsw_priv
*priv
= netdev_priv(ndev
);
762 struct cpsw_common
*cpsw
= priv
->cpsw
;
766 ret
= pm_runtime_get_sync(cpsw
->dev
);
768 pm_runtime_put_noidle(cpsw
->dev
);
772 netif_carrier_off(ndev
);
774 /* Notify the stack of the actual queue counts. */
775 ret
= netif_set_real_num_tx_queues(ndev
, cpsw
->tx_ch_num
);
777 dev_err(priv
->dev
, "cannot set real number of tx queues\n");
781 ret
= netif_set_real_num_rx_queues(ndev
, cpsw
->rx_ch_num
);
783 dev_err(priv
->dev
, "cannot set real number of rx queues\n");
789 dev_info(priv
->dev
, "initializing cpsw version %d.%d (%d)\n",
790 CPSW_MAJOR_VERSION(reg
), CPSW_MINOR_VERSION(reg
),
791 CPSW_RTL_VERSION(reg
));
793 /* Initialize host and slave ports */
794 if (!cpsw
->usage_count
)
795 cpsw_init_host_port(priv
);
796 for_each_slave(priv
, cpsw_slave_open
, priv
);
798 /* Add default VLAN */
799 if (!cpsw
->data
.dual_emac
)
800 cpsw_add_default_vlan(priv
);
802 cpsw_ale_add_vlan(cpsw
->ale
, cpsw
->data
.default_vlan
,
803 ALE_ALL_PORTS
, ALE_ALL_PORTS
, 0, 0);
805 /* initialize shared resources for every ndev */
806 if (!cpsw
->usage_count
) {
807 /* disable priority elevation */
808 writel_relaxed(0, &cpsw
->regs
->ptype
);
810 /* enable statistics collection only on all ports */
811 writel_relaxed(0x7, &cpsw
->regs
->stat_port_en
);
813 /* Enable internal fifo flow control */
814 writel(0x7, &cpsw
->regs
->flow_control
);
816 napi_enable(&cpsw
->napi_rx
);
817 napi_enable(&cpsw
->napi_tx
);
819 if (cpsw
->tx_irq_disabled
) {
820 cpsw
->tx_irq_disabled
= false;
821 enable_irq(cpsw
->irqs_table
[1]);
824 if (cpsw
->rx_irq_disabled
) {
825 cpsw
->rx_irq_disabled
= false;
826 enable_irq(cpsw
->irqs_table
[0]);
829 /* create rxqs for both infs in dual mac as they use same pool
830 * and must be destroyed together when no users.
832 ret
= cpsw_create_xdp_rxqs(cpsw
);
836 ret
= cpsw_fill_rx_channels(priv
);
840 if (cpts_register(cpsw
->cpts
))
841 dev_err(priv
->dev
, "error registering cpts device\n");
847 /* Enable Interrupt pacing if configured */
848 if (cpsw
->coal_intvl
!= 0) {
849 struct ethtool_coalesce coal
;
851 coal
.rx_coalesce_usecs
= cpsw
->coal_intvl
;
852 cpsw_set_coalesce(ndev
, &coal
);
855 cpdma_ctlr_start(cpsw
->dma
);
856 cpsw_intr_enable(cpsw
);
862 if (!cpsw
->usage_count
) {
863 cpdma_ctlr_stop(cpsw
->dma
);
864 cpsw_destroy_xdp_rxqs(cpsw
);
867 for_each_slave(priv
, cpsw_slave_stop
, cpsw
);
868 pm_runtime_put_sync(cpsw
->dev
);
869 netif_carrier_off(priv
->ndev
);
873 static int cpsw_ndo_stop(struct net_device
*ndev
)
875 struct cpsw_priv
*priv
= netdev_priv(ndev
);
876 struct cpsw_common
*cpsw
= priv
->cpsw
;
878 cpsw_info(priv
, ifdown
, "shutting down cpsw device\n");
879 __hw_addr_ref_unsync_dev(&ndev
->mc
, ndev
, cpsw_purge_all_mc
);
880 netif_tx_stop_all_queues(priv
->ndev
);
881 netif_carrier_off(priv
->ndev
);
883 if (cpsw
->usage_count
<= 1) {
884 napi_disable(&cpsw
->napi_rx
);
885 napi_disable(&cpsw
->napi_tx
);
886 cpts_unregister(cpsw
->cpts
);
887 cpsw_intr_disable(cpsw
);
888 cpdma_ctlr_stop(cpsw
->dma
);
889 cpsw_ale_stop(cpsw
->ale
);
890 cpsw_destroy_xdp_rxqs(cpsw
);
892 for_each_slave(priv
, cpsw_slave_stop
, cpsw
);
894 if (cpsw_need_resplit(cpsw
))
895 cpsw_split_res(cpsw
);
898 pm_runtime_put_sync(cpsw
->dev
);
902 static netdev_tx_t
cpsw_ndo_start_xmit(struct sk_buff
*skb
,
903 struct net_device
*ndev
)
905 struct cpsw_priv
*priv
= netdev_priv(ndev
);
906 struct cpsw_common
*cpsw
= priv
->cpsw
;
907 struct cpts
*cpts
= cpsw
->cpts
;
908 struct netdev_queue
*txq
;
909 struct cpdma_chan
*txch
;
912 if (skb_padto(skb
, CPSW_MIN_PACKET_SIZE
)) {
913 cpsw_err(priv
, tx_err
, "packet pad failed\n");
914 ndev
->stats
.tx_dropped
++;
915 return NET_XMIT_DROP
;
918 if (skb_shinfo(skb
)->tx_flags
& SKBTX_HW_TSTAMP
&&
919 priv
->tx_ts_enabled
&& cpts_can_timestamp(cpts
, skb
))
920 skb_shinfo(skb
)->tx_flags
|= SKBTX_IN_PROGRESS
;
922 q_idx
= skb_get_queue_mapping(skb
);
923 if (q_idx
>= cpsw
->tx_ch_num
)
924 q_idx
= q_idx
% cpsw
->tx_ch_num
;
926 txch
= cpsw
->txv
[q_idx
].ch
;
927 txq
= netdev_get_tx_queue(ndev
, q_idx
);
928 skb_tx_timestamp(skb
);
929 ret
= cpdma_chan_submit(txch
, skb
, skb
->data
, skb
->len
,
930 priv
->emac_port
+ cpsw
->data
.dual_emac
);
931 if (unlikely(ret
!= 0)) {
932 cpsw_err(priv
, tx_err
, "desc submit failed\n");
936 /* If there is no more tx desc left free then we need to
937 * tell the kernel to stop sending us tx frames.
939 if (unlikely(!cpdma_check_free_tx_desc(txch
))) {
940 netif_tx_stop_queue(txq
);
942 /* Barrier, so that stop_queue visible to other cpus */
943 smp_mb__after_atomic();
945 if (cpdma_check_free_tx_desc(txch
))
946 netif_tx_wake_queue(txq
);
951 ndev
->stats
.tx_dropped
++;
952 netif_tx_stop_queue(txq
);
954 /* Barrier, so that stop_queue visible to other cpus */
955 smp_mb__after_atomic();
957 if (cpdma_check_free_tx_desc(txch
))
958 netif_tx_wake_queue(txq
);
960 return NETDEV_TX_BUSY
;
963 static int cpsw_ndo_set_mac_address(struct net_device
*ndev
, void *p
)
965 struct cpsw_priv
*priv
= netdev_priv(ndev
);
966 struct sockaddr
*addr
= (struct sockaddr
*)p
;
967 struct cpsw_common
*cpsw
= priv
->cpsw
;
972 if (!is_valid_ether_addr(addr
->sa_data
))
973 return -EADDRNOTAVAIL
;
975 ret
= pm_runtime_get_sync(cpsw
->dev
);
977 pm_runtime_put_noidle(cpsw
->dev
);
981 if (cpsw
->data
.dual_emac
) {
982 vid
= cpsw
->slaves
[priv
->emac_port
].port_vlan
;
986 cpsw_ale_del_ucast(cpsw
->ale
, priv
->mac_addr
, HOST_PORT_NUM
,
988 cpsw_ale_add_ucast(cpsw
->ale
, addr
->sa_data
, HOST_PORT_NUM
,
991 memcpy(priv
->mac_addr
, addr
->sa_data
, ETH_ALEN
);
992 memcpy(ndev
->dev_addr
, priv
->mac_addr
, ETH_ALEN
);
993 for_each_slave(priv
, cpsw_set_slave_mac
, priv
);
995 pm_runtime_put(cpsw
->dev
);
1000 static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv
*priv
,
1004 int unreg_mcast_mask
= 0;
1007 struct cpsw_common
*cpsw
= priv
->cpsw
;
1009 if (cpsw
->data
.dual_emac
) {
1010 port_mask
= (1 << (priv
->emac_port
+ 1)) | ALE_PORT_HOST
;
1012 mcast_mask
= ALE_PORT_HOST
;
1013 if (priv
->ndev
->flags
& IFF_ALLMULTI
)
1014 unreg_mcast_mask
= mcast_mask
;
1016 port_mask
= ALE_ALL_PORTS
;
1017 mcast_mask
= port_mask
;
1019 if (priv
->ndev
->flags
& IFF_ALLMULTI
)
1020 unreg_mcast_mask
= ALE_ALL_PORTS
;
1022 unreg_mcast_mask
= ALE_PORT_1
| ALE_PORT_2
;
1025 ret
= cpsw_ale_add_vlan(cpsw
->ale
, vid
, port_mask
, 0, port_mask
,
1030 ret
= cpsw_ale_add_ucast(cpsw
->ale
, priv
->mac_addr
,
1031 HOST_PORT_NUM
, ALE_VLAN
, vid
);
1035 ret
= cpsw_ale_add_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
1036 mcast_mask
, ALE_VLAN
, vid
, 0);
1038 goto clean_vlan_ucast
;
1042 cpsw_ale_del_ucast(cpsw
->ale
, priv
->mac_addr
,
1043 HOST_PORT_NUM
, ALE_VLAN
, vid
);
1045 cpsw_ale_del_vlan(cpsw
->ale
, vid
, 0);
1049 static int cpsw_ndo_vlan_rx_add_vid(struct net_device
*ndev
,
1050 __be16 proto
, u16 vid
)
1052 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1053 struct cpsw_common
*cpsw
= priv
->cpsw
;
1056 if (vid
== cpsw
->data
.default_vlan
)
1059 ret
= pm_runtime_get_sync(cpsw
->dev
);
1061 pm_runtime_put_noidle(cpsw
->dev
);
1065 if (cpsw
->data
.dual_emac
) {
1066 /* In dual EMAC, reserved VLAN id should not be used for
1067 * creating VLAN interfaces as this can break the dual
1068 * EMAC port separation
1072 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1073 if (vid
== cpsw
->slaves
[i
].port_vlan
) {
1080 dev_info(priv
->dev
, "Adding vlanid %d to vlan filter\n", vid
);
1081 ret
= cpsw_add_vlan_ale_entry(priv
, vid
);
1083 pm_runtime_put(cpsw
->dev
);
1087 static int cpsw_ndo_vlan_rx_kill_vid(struct net_device
*ndev
,
1088 __be16 proto
, u16 vid
)
1090 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1091 struct cpsw_common
*cpsw
= priv
->cpsw
;
1094 if (vid
== cpsw
->data
.default_vlan
)
1097 ret
= pm_runtime_get_sync(cpsw
->dev
);
1099 pm_runtime_put_noidle(cpsw
->dev
);
1103 if (cpsw
->data
.dual_emac
) {
1106 for (i
= 0; i
< cpsw
->data
.slaves
; i
++) {
1107 if (vid
== cpsw
->slaves
[i
].port_vlan
)
1112 dev_info(priv
->dev
, "removing vlanid %d from vlan filter\n", vid
);
1113 ret
= cpsw_ale_del_vlan(cpsw
->ale
, vid
, 0);
1114 ret
|= cpsw_ale_del_ucast(cpsw
->ale
, priv
->mac_addr
,
1115 HOST_PORT_NUM
, ALE_VLAN
, vid
);
1116 ret
|= cpsw_ale_del_mcast(cpsw
->ale
, priv
->ndev
->broadcast
,
1118 ret
|= cpsw_ale_flush_multicast(cpsw
->ale
, 0, vid
);
1120 pm_runtime_put(cpsw
->dev
);
1124 static int cpsw_ndo_xdp_xmit(struct net_device
*ndev
, int n
,
1125 struct xdp_frame
**frames
, u32 flags
)
1127 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1128 struct cpsw_common
*cpsw
= priv
->cpsw
;
1129 struct xdp_frame
*xdpf
;
1130 int i
, drops
= 0, port
;
1132 if (unlikely(flags
& ~XDP_XMIT_FLAGS_MASK
))
1135 for (i
= 0; i
< n
; i
++) {
1137 if (xdpf
->len
< CPSW_MIN_PACKET_SIZE
) {
1138 xdp_return_frame_rx_napi(xdpf
);
1143 port
= priv
->emac_port
+ cpsw
->data
.dual_emac
;
1144 if (cpsw_xdp_tx_frame(priv
, xdpf
, NULL
, port
))
1151 #ifdef CONFIG_NET_POLL_CONTROLLER
1152 static void cpsw_ndo_poll_controller(struct net_device
*ndev
)
1154 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
1156 cpsw_intr_disable(cpsw
);
1157 cpsw_rx_interrupt(cpsw
->irqs_table
[0], cpsw
);
1158 cpsw_tx_interrupt(cpsw
->irqs_table
[1], cpsw
);
1159 cpsw_intr_enable(cpsw
);
1163 static const struct net_device_ops cpsw_netdev_ops
= {
1164 .ndo_open
= cpsw_ndo_open
,
1165 .ndo_stop
= cpsw_ndo_stop
,
1166 .ndo_start_xmit
= cpsw_ndo_start_xmit
,
1167 .ndo_set_mac_address
= cpsw_ndo_set_mac_address
,
1168 .ndo_do_ioctl
= cpsw_ndo_ioctl
,
1169 .ndo_validate_addr
= eth_validate_addr
,
1170 .ndo_tx_timeout
= cpsw_ndo_tx_timeout
,
1171 .ndo_set_rx_mode
= cpsw_ndo_set_rx_mode
,
1172 .ndo_set_tx_maxrate
= cpsw_ndo_set_tx_maxrate
,
1173 #ifdef CONFIG_NET_POLL_CONTROLLER
1174 .ndo_poll_controller
= cpsw_ndo_poll_controller
,
1176 .ndo_vlan_rx_add_vid
= cpsw_ndo_vlan_rx_add_vid
,
1177 .ndo_vlan_rx_kill_vid
= cpsw_ndo_vlan_rx_kill_vid
,
1178 .ndo_setup_tc
= cpsw_ndo_setup_tc
,
1179 .ndo_bpf
= cpsw_ndo_bpf
,
1180 .ndo_xdp_xmit
= cpsw_ndo_xdp_xmit
,
1183 static void cpsw_get_drvinfo(struct net_device
*ndev
,
1184 struct ethtool_drvinfo
*info
)
1186 struct cpsw_common
*cpsw
= ndev_to_cpsw(ndev
);
1187 struct platform_device
*pdev
= to_platform_device(cpsw
->dev
);
1189 strlcpy(info
->driver
, "cpsw", sizeof(info
->driver
));
1190 strlcpy(info
->version
, "1.0", sizeof(info
->version
));
1191 strlcpy(info
->bus_info
, pdev
->name
, sizeof(info
->bus_info
));
1194 static int cpsw_set_pauseparam(struct net_device
*ndev
,
1195 struct ethtool_pauseparam
*pause
)
1197 struct cpsw_priv
*priv
= netdev_priv(ndev
);
1200 priv
->rx_pause
= pause
->rx_pause
? true : false;
1201 priv
->tx_pause
= pause
->tx_pause
? true : false;
1203 for_each_slave(priv
, _cpsw_adjust_link
, priv
, &link
);
1207 static int cpsw_set_channels(struct net_device
*ndev
,
1208 struct ethtool_channels
*chs
)
1210 return cpsw_set_channels_common(ndev
, chs
, cpsw_rx_handler
);
1213 static const struct ethtool_ops cpsw_ethtool_ops
= {
1214 .supported_coalesce_params
= ETHTOOL_COALESCE_RX_USECS
,
1215 .get_drvinfo
= cpsw_get_drvinfo
,
1216 .get_msglevel
= cpsw_get_msglevel
,
1217 .set_msglevel
= cpsw_set_msglevel
,
1218 .get_link
= ethtool_op_get_link
,
1219 .get_ts_info
= cpsw_get_ts_info
,
1220 .get_coalesce
= cpsw_get_coalesce
,
1221 .set_coalesce
= cpsw_set_coalesce
,
1222 .get_sset_count
= cpsw_get_sset_count
,
1223 .get_strings
= cpsw_get_strings
,
1224 .get_ethtool_stats
= cpsw_get_ethtool_stats
,
1225 .get_pauseparam
= cpsw_get_pauseparam
,
1226 .set_pauseparam
= cpsw_set_pauseparam
,
1227 .get_wol
= cpsw_get_wol
,
1228 .set_wol
= cpsw_set_wol
,
1229 .get_regs_len
= cpsw_get_regs_len
,
1230 .get_regs
= cpsw_get_regs
,
1231 .begin
= cpsw_ethtool_op_begin
,
1232 .complete
= cpsw_ethtool_op_complete
,
1233 .get_channels
= cpsw_get_channels
,
1234 .set_channels
= cpsw_set_channels
,
1235 .get_link_ksettings
= cpsw_get_link_ksettings
,
1236 .set_link_ksettings
= cpsw_set_link_ksettings
,
1237 .get_eee
= cpsw_get_eee
,
1238 .set_eee
= cpsw_set_eee
,
1239 .nway_reset
= cpsw_nway_reset
,
1240 .get_ringparam
= cpsw_get_ringparam
,
1241 .set_ringparam
= cpsw_set_ringparam
,
1244 static int cpsw_probe_dt(struct cpsw_platform_data
*data
,
1245 struct platform_device
*pdev
)
1247 struct device_node
*node
= pdev
->dev
.of_node
;
1248 struct device_node
*slave_node
;
1255 if (of_property_read_u32(node
, "slaves", &prop
)) {
1256 dev_err(&pdev
->dev
, "Missing slaves property in the DT.\n");
1259 data
->slaves
= prop
;
1261 if (of_property_read_u32(node
, "active_slave", &prop
)) {
1262 dev_err(&pdev
->dev
, "Missing active_slave property in the DT.\n");
1265 data
->active_slave
= prop
;
1267 data
->slave_data
= devm_kcalloc(&pdev
->dev
,
1269 sizeof(struct cpsw_slave_data
),
1271 if (!data
->slave_data
)
1274 if (of_property_read_u32(node
, "cpdma_channels", &prop
)) {
1275 dev_err(&pdev
->dev
, "Missing cpdma_channels property in the DT.\n");
1278 data
->channels
= prop
;
1280 if (of_property_read_u32(node
, "ale_entries", &prop
)) {
1281 dev_err(&pdev
->dev
, "Missing ale_entries property in the DT.\n");
1284 data
->ale_entries
= prop
;
1286 if (of_property_read_u32(node
, "bd_ram_size", &prop
)) {
1287 dev_err(&pdev
->dev
, "Missing bd_ram_size property in the DT.\n");
1290 data
->bd_ram_size
= prop
;
1292 if (of_property_read_u32(node
, "mac_control", &prop
)) {
1293 dev_err(&pdev
->dev
, "Missing mac_control property in the DT.\n");
1296 data
->mac_control
= prop
;
1298 if (of_property_read_bool(node
, "dual_emac"))
1299 data
->dual_emac
= 1;
1302 * Populate all the child nodes here...
1304 ret
= of_platform_populate(node
, NULL
, NULL
, &pdev
->dev
);
1305 /* We do not want to force this, as in some cases may not have child */
1307 dev_warn(&pdev
->dev
, "Doesn't have any child node\n");
1309 for_each_available_child_of_node(node
, slave_node
) {
1310 struct cpsw_slave_data
*slave_data
= data
->slave_data
+ i
;
1311 const void *mac_addr
= NULL
;
1315 /* This is no slave child node, continue */
1316 if (!of_node_name_eq(slave_node
, "slave"))
1319 slave_data
->ifphy
= devm_of_phy_get(&pdev
->dev
, slave_node
,
1321 if (!IS_ENABLED(CONFIG_TI_CPSW_PHY_SEL
) &&
1322 IS_ERR(slave_data
->ifphy
)) {
1323 ret
= PTR_ERR(slave_data
->ifphy
);
1325 "%d: Error retrieving port phy: %d\n", i
, ret
);
1329 slave_data
->slave_node
= slave_node
;
1330 slave_data
->phy_node
= of_parse_phandle(slave_node
,
1332 parp
= of_get_property(slave_node
, "phy_id", &lenp
);
1333 if (slave_data
->phy_node
) {
1335 "slave[%d] using phy-handle=\"%pOF\"\n",
1336 i
, slave_data
->phy_node
);
1337 } else if (of_phy_is_fixed_link(slave_node
)) {
1338 /* In the case of a fixed PHY, the DT node associated
1339 * to the PHY is the Ethernet MAC DT node.
1341 ret
= of_phy_register_fixed_link(slave_node
);
1343 if (ret
!= -EPROBE_DEFER
)
1344 dev_err(&pdev
->dev
, "failed to register fixed-link phy: %d\n", ret
);
1347 slave_data
->phy_node
= of_node_get(slave_node
);
1350 struct device_node
*mdio_node
;
1351 struct platform_device
*mdio
;
1353 if (lenp
!= (sizeof(__be32
) * 2)) {
1354 dev_err(&pdev
->dev
, "Invalid slave[%d] phy_id property\n", i
);
1357 mdio_node
= of_find_node_by_phandle(be32_to_cpup(parp
));
1358 phyid
= be32_to_cpup(parp
+1);
1359 mdio
= of_find_device_by_node(mdio_node
);
1360 of_node_put(mdio_node
);
1362 dev_err(&pdev
->dev
, "Missing mdio platform device\n");
1366 snprintf(slave_data
->phy_id
, sizeof(slave_data
->phy_id
),
1367 PHY_ID_FMT
, mdio
->name
, phyid
);
1368 put_device(&mdio
->dev
);
1371 "No slave[%d] phy_id, phy-handle, or fixed-link property\n",
1375 ret
= of_get_phy_mode(slave_node
, &slave_data
->phy_if
);
1377 dev_err(&pdev
->dev
, "Missing or malformed slave[%d] phy-mode property\n",
1383 mac_addr
= of_get_mac_address(slave_node
);
1384 if (!IS_ERR(mac_addr
)) {
1385 ether_addr_copy(slave_data
->mac_addr
, mac_addr
);
1387 ret
= ti_cm_get_macid(&pdev
->dev
, i
,
1388 slave_data
->mac_addr
);
1392 if (data
->dual_emac
) {
1393 if (of_property_read_u32(slave_node
, "dual_emac_res_vlan",
1395 dev_err(&pdev
->dev
, "Missing dual_emac_res_vlan in DT.\n");
1396 slave_data
->dual_emac_res_vlan
= i
+1;
1397 dev_err(&pdev
->dev
, "Using %d as Reserved VLAN for %d slave\n",
1398 slave_data
->dual_emac_res_vlan
, i
);
1400 slave_data
->dual_emac_res_vlan
= prop
;
1405 if (i
== data
->slaves
) {
1414 of_node_put(slave_node
);
1418 static void cpsw_remove_dt(struct platform_device
*pdev
)
1420 struct cpsw_common
*cpsw
= platform_get_drvdata(pdev
);
1421 struct cpsw_platform_data
*data
= &cpsw
->data
;
1422 struct device_node
*node
= pdev
->dev
.of_node
;
1423 struct device_node
*slave_node
;
1426 for_each_available_child_of_node(node
, slave_node
) {
1427 struct cpsw_slave_data
*slave_data
= &data
->slave_data
[i
];
1429 if (!of_node_name_eq(slave_node
, "slave"))
1432 if (of_phy_is_fixed_link(slave_node
))
1433 of_phy_deregister_fixed_link(slave_node
);
1435 of_node_put(slave_data
->phy_node
);
1438 if (i
== data
->slaves
) {
1439 of_node_put(slave_node
);
1444 of_platform_depopulate(&pdev
->dev
);
1447 static int cpsw_probe_dual_emac(struct cpsw_priv
*priv
)
1449 struct cpsw_common
*cpsw
= priv
->cpsw
;
1450 struct cpsw_platform_data
*data
= &cpsw
->data
;
1451 struct net_device
*ndev
;
1452 struct cpsw_priv
*priv_sl2
;
1455 ndev
= devm_alloc_etherdev_mqs(cpsw
->dev
, sizeof(struct cpsw_priv
),
1456 CPSW_MAX_QUEUES
, CPSW_MAX_QUEUES
);
1458 dev_err(cpsw
->dev
, "cpsw: error allocating net_device\n");
1462 priv_sl2
= netdev_priv(ndev
);
1463 priv_sl2
->cpsw
= cpsw
;
1464 priv_sl2
->ndev
= ndev
;
1465 priv_sl2
->dev
= &ndev
->dev
;
1466 priv_sl2
->msg_enable
= netif_msg_init(debug_level
, CPSW_DEBUG
);
1468 if (is_valid_ether_addr(data
->slave_data
[1].mac_addr
)) {
1469 memcpy(priv_sl2
->mac_addr
, data
->slave_data
[1].mac_addr
,
1471 dev_info(cpsw
->dev
, "cpsw: Detected MACID = %pM\n",
1472 priv_sl2
->mac_addr
);
1474 eth_random_addr(priv_sl2
->mac_addr
);
1475 dev_info(cpsw
->dev
, "cpsw: Random MACID = %pM\n",
1476 priv_sl2
->mac_addr
);
1478 memcpy(ndev
->dev_addr
, priv_sl2
->mac_addr
, ETH_ALEN
);
1480 priv_sl2
->emac_port
= 1;
1481 cpsw
->slaves
[1].ndev
= ndev
;
1482 ndev
->features
|= NETIF_F_HW_VLAN_CTAG_FILTER
| NETIF_F_HW_VLAN_CTAG_RX
;
1484 ndev
->netdev_ops
= &cpsw_netdev_ops
;
1485 ndev
->ethtool_ops
= &cpsw_ethtool_ops
;
1487 /* register the network device */
1488 SET_NETDEV_DEV(ndev
, cpsw
->dev
);
1489 ndev
->dev
.of_node
= cpsw
->slaves
[1].data
->slave_node
;
1490 ret
= register_netdev(ndev
);
1492 dev_err(cpsw
->dev
, "cpsw: error registering net device\n");
1497 static const struct of_device_id cpsw_of_mtable
[] = {
1498 { .compatible
= "ti,cpsw"},
1499 { .compatible
= "ti,am335x-cpsw"},
1500 { .compatible
= "ti,am4372-cpsw"},
1501 { .compatible
= "ti,dra7-cpsw"},
1504 MODULE_DEVICE_TABLE(of
, cpsw_of_mtable
);
1506 static const struct soc_device_attribute cpsw_soc_devices
[] = {
1507 { .family
= "AM33xx", .revision
= "ES1.0"},
1511 static int cpsw_probe(struct platform_device
*pdev
)
1513 struct device
*dev
= &pdev
->dev
;
1515 struct cpsw_platform_data
*data
;
1516 struct net_device
*ndev
;
1517 struct cpsw_priv
*priv
;
1518 void __iomem
*ss_regs
;
1519 struct resource
*ss_res
;
1520 struct gpio_descs
*mode
;
1521 const struct soc_device_attribute
*soc
;
1522 struct cpsw_common
*cpsw
;
1526 cpsw
= devm_kzalloc(dev
, sizeof(struct cpsw_common
), GFP_KERNEL
);
1530 platform_set_drvdata(pdev
, cpsw
);
1531 cpsw_slave_index
= cpsw_slave_index_priv
;
1535 mode
= devm_gpiod_get_array_optional(dev
, "mode", GPIOD_OUT_LOW
);
1537 ret
= PTR_ERR(mode
);
1538 dev_err(dev
, "gpio request failed, ret %d\n", ret
);
1542 clk
= devm_clk_get(dev
, "fck");
1545 dev_err(dev
, "fck is not found %d\n", ret
);
1548 cpsw
->bus_freq_mhz
= clk_get_rate(clk
) / 1000000;
1550 ss_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1551 ss_regs
= devm_ioremap_resource(dev
, ss_res
);
1552 if (IS_ERR(ss_regs
))
1553 return PTR_ERR(ss_regs
);
1554 cpsw
->regs
= ss_regs
;
1556 cpsw
->wr_regs
= devm_platform_ioremap_resource(pdev
, 1);
1557 if (IS_ERR(cpsw
->wr_regs
))
1558 return PTR_ERR(cpsw
->wr_regs
);
1561 irq
= platform_get_irq(pdev
, 1);
1564 cpsw
->irqs_table
[0] = irq
;
1567 irq
= platform_get_irq(pdev
, 2);
1570 cpsw
->irqs_table
[1] = irq
;
1573 * This may be required here for child devices.
1575 pm_runtime_enable(dev
);
1577 /* Need to enable clocks with runtime PM api to access module
1580 ret
= pm_runtime_get_sync(dev
);
1582 pm_runtime_put_noidle(dev
);
1583 goto clean_runtime_disable_ret
;
1586 ret
= cpsw_probe_dt(&cpsw
->data
, pdev
);
1590 soc
= soc_device_match(cpsw_soc_devices
);
1592 cpsw
->quirk_irq
= 1;
1595 cpsw
->slaves
= devm_kcalloc(dev
,
1596 data
->slaves
, sizeof(struct cpsw_slave
),
1598 if (!cpsw
->slaves
) {
1603 cpsw
->rx_packet_max
= max(rx_packet_max
, CPSW_MAX_PACKET_SIZE
);
1604 cpsw
->descs_pool_size
= descs_pool_size
;
1606 ret
= cpsw_init_common(cpsw
, ss_regs
, ale_ageout
,
1607 ss_res
->start
+ CPSW2_BD_OFFSET
,
1612 ch
= cpsw
->quirk_irq
? 0 : 7;
1613 cpsw
->txv
[0].ch
= cpdma_chan_create(cpsw
->dma
, ch
, cpsw_tx_handler
, 0);
1614 if (IS_ERR(cpsw
->txv
[0].ch
)) {
1615 dev_err(dev
, "error initializing tx dma channel\n");
1616 ret
= PTR_ERR(cpsw
->txv
[0].ch
);
1620 cpsw
->rxv
[0].ch
= cpdma_chan_create(cpsw
->dma
, 0, cpsw_rx_handler
, 1);
1621 if (IS_ERR(cpsw
->rxv
[0].ch
)) {
1622 dev_err(dev
, "error initializing rx dma channel\n");
1623 ret
= PTR_ERR(cpsw
->rxv
[0].ch
);
1626 cpsw_split_res(cpsw
);
1629 ndev
= devm_alloc_etherdev_mqs(dev
, sizeof(struct cpsw_priv
),
1630 CPSW_MAX_QUEUES
, CPSW_MAX_QUEUES
);
1632 dev_err(dev
, "error allocating net_device\n");
1636 priv
= netdev_priv(ndev
);
1640 priv
->msg_enable
= netif_msg_init(debug_level
, CPSW_DEBUG
);
1641 priv
->emac_port
= 0;
1643 if (is_valid_ether_addr(data
->slave_data
[0].mac_addr
)) {
1644 memcpy(priv
->mac_addr
, data
->slave_data
[0].mac_addr
, ETH_ALEN
);
1645 dev_info(dev
, "Detected MACID = %pM\n", priv
->mac_addr
);
1647 eth_random_addr(priv
->mac_addr
);
1648 dev_info(dev
, "Random MACID = %pM\n", priv
->mac_addr
);
1651 memcpy(ndev
->dev_addr
, priv
->mac_addr
, ETH_ALEN
);
1653 cpsw
->slaves
[0].ndev
= ndev
;
1655 ndev
->features
|= NETIF_F_HW_VLAN_CTAG_FILTER
| NETIF_F_HW_VLAN_CTAG_RX
;
1657 ndev
->netdev_ops
= &cpsw_netdev_ops
;
1658 ndev
->ethtool_ops
= &cpsw_ethtool_ops
;
1659 netif_napi_add(ndev
, &cpsw
->napi_rx
,
1660 cpsw
->quirk_irq
? cpsw_rx_poll
: cpsw_rx_mq_poll
,
1662 netif_tx_napi_add(ndev
, &cpsw
->napi_tx
,
1663 cpsw
->quirk_irq
? cpsw_tx_poll
: cpsw_tx_mq_poll
,
1666 /* register the network device */
1667 SET_NETDEV_DEV(ndev
, dev
);
1668 ndev
->dev
.of_node
= cpsw
->slaves
[0].data
->slave_node
;
1669 ret
= register_netdev(ndev
);
1671 dev_err(dev
, "error registering net device\n");
1676 if (cpsw
->data
.dual_emac
) {
1677 ret
= cpsw_probe_dual_emac(priv
);
1679 cpsw_err(priv
, probe
, "error probe slave 2 emac interface\n");
1680 goto clean_unregister_netdev_ret
;
1684 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
1685 * MISC IRQs which are always kept disabled with this driver so
1686 * we will not request them.
1688 * If anyone wants to implement support for those, make sure to
1689 * first request and append them to irqs_table array.
1691 ret
= devm_request_irq(dev
, cpsw
->irqs_table
[0], cpsw_rx_interrupt
,
1692 0, dev_name(dev
), cpsw
);
1694 dev_err(dev
, "error attaching irq (%d)\n", ret
);
1695 goto clean_unregister_netdev_ret
;
1699 ret
= devm_request_irq(dev
, cpsw
->irqs_table
[1], cpsw_tx_interrupt
,
1700 0, dev_name(&pdev
->dev
), cpsw
);
1702 dev_err(dev
, "error attaching irq (%d)\n", ret
);
1703 goto clean_unregister_netdev_ret
;
1706 cpsw_notice(priv
, probe
,
1707 "initialized device (regs %pa, irq %d, pool size %d)\n",
1708 &ss_res
->start
, cpsw
->irqs_table
[0], descs_pool_size
);
1710 pm_runtime_put(&pdev
->dev
);
1714 clean_unregister_netdev_ret
:
1715 unregister_netdev(ndev
);
1717 cpts_release(cpsw
->cpts
);
1718 cpdma_ctlr_destroy(cpsw
->dma
);
1720 cpsw_remove_dt(pdev
);
1721 pm_runtime_put_sync(&pdev
->dev
);
1722 clean_runtime_disable_ret
:
1723 pm_runtime_disable(&pdev
->dev
);
1727 static int cpsw_remove(struct platform_device
*pdev
)
1729 struct cpsw_common
*cpsw
= platform_get_drvdata(pdev
);
1732 ret
= pm_runtime_get_sync(&pdev
->dev
);
1734 pm_runtime_put_noidle(&pdev
->dev
);
1738 for (i
= 0; i
< cpsw
->data
.slaves
; i
++)
1739 if (cpsw
->slaves
[i
].ndev
)
1740 unregister_netdev(cpsw
->slaves
[i
].ndev
);
1742 cpts_release(cpsw
->cpts
);
1743 cpdma_ctlr_destroy(cpsw
->dma
);
1744 cpsw_remove_dt(pdev
);
1745 pm_runtime_put_sync(&pdev
->dev
);
1746 pm_runtime_disable(&pdev
->dev
);
1750 #ifdef CONFIG_PM_SLEEP
1751 static int cpsw_suspend(struct device
*dev
)
1753 struct cpsw_common
*cpsw
= dev_get_drvdata(dev
);
1756 for (i
= 0; i
< cpsw
->data
.slaves
; i
++)
1757 if (cpsw
->slaves
[i
].ndev
)
1758 if (netif_running(cpsw
->slaves
[i
].ndev
))
1759 cpsw_ndo_stop(cpsw
->slaves
[i
].ndev
);
1761 /* Select sleep pin state */
1762 pinctrl_pm_select_sleep_state(dev
);
1767 static int cpsw_resume(struct device
*dev
)
1769 struct cpsw_common
*cpsw
= dev_get_drvdata(dev
);
1772 /* Select default pin state */
1773 pinctrl_pm_select_default_state(dev
);
1775 /* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
1778 for (i
= 0; i
< cpsw
->data
.slaves
; i
++)
1779 if (cpsw
->slaves
[i
].ndev
)
1780 if (netif_running(cpsw
->slaves
[i
].ndev
))
1781 cpsw_ndo_open(cpsw
->slaves
[i
].ndev
);
1789 static SIMPLE_DEV_PM_OPS(cpsw_pm_ops
, cpsw_suspend
, cpsw_resume
);
1791 static struct platform_driver cpsw_driver
= {
1795 .of_match_table
= cpsw_of_mtable
,
1797 .probe
= cpsw_probe
,
1798 .remove
= cpsw_remove
,
1801 module_platform_driver(cpsw_driver
);
1803 MODULE_LICENSE("GPL");
1804 MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
1805 MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
1806 MODULE_DESCRIPTION("TI CPSW Ethernet driver");