1 // SPDX-License-Identifier: GPL-2.0
2 /* Texas Instruments K3 AM65 Ethernet Switch SubSystem Driver
4 * Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/
9 #include <linux/etherdevice.h>
10 #include <linux/if_vlan.h>
11 #include <linux/interrupt.h>
12 #include <linux/irqdomain.h>
13 #include <linux/kernel.h>
14 #include <linux/kmemleak.h>
15 #include <linux/module.h>
16 #include <linux/netdevice.h>
17 #include <linux/net_tstamp.h>
19 #include <linux/of_mdio.h>
20 #include <linux/of_net.h>
21 #include <linux/of_device.h>
22 #include <linux/of_platform.h>
23 #include <linux/phylink.h>
24 #include <linux/phy/phy.h>
25 #include <linux/platform_device.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/regmap.h>
28 #include <linux/rtnetlink.h>
29 #include <linux/mfd/syscon.h>
30 #include <linux/sys_soc.h>
31 #include <linux/dma/ti-cppi5.h>
32 #include <linux/dma/k3-udma-glue.h>
33 #include <net/switchdev.h>
37 #include "am65-cpsw-nuss.h"
38 #include "am65-cpsw-switchdev.h"
39 #include "k3-cppi-desc-pool.h"
40 #include "am65-cpts.h"
42 #define AM65_CPSW_SS_BASE 0x0
43 #define AM65_CPSW_SGMII_BASE 0x100
44 #define AM65_CPSW_XGMII_BASE 0x2100
45 #define AM65_CPSW_CPSW_NU_BASE 0x20000
46 #define AM65_CPSW_NU_PORTS_BASE 0x1000
47 #define AM65_CPSW_NU_FRAM_BASE 0x12000
48 #define AM65_CPSW_NU_STATS_BASE 0x1a000
49 #define AM65_CPSW_NU_ALE_BASE 0x1e000
50 #define AM65_CPSW_NU_CPTS_BASE 0x1d000
52 #define AM65_CPSW_NU_PORTS_OFFSET 0x1000
53 #define AM65_CPSW_NU_STATS_PORT_OFFSET 0x200
54 #define AM65_CPSW_NU_FRAM_PORT_OFFSET 0x200
56 #define AM65_CPSW_MAX_PORTS 8
58 #define AM65_CPSW_MIN_PACKET_SIZE VLAN_ETH_ZLEN
59 #define AM65_CPSW_MAX_PACKET_SIZE (VLAN_ETH_FRAME_LEN + ETH_FCS_LEN)
61 #define AM65_CPSW_REG_CTL 0x004
62 #define AM65_CPSW_REG_STAT_PORT_EN 0x014
63 #define AM65_CPSW_REG_PTYPE 0x018
65 #define AM65_CPSW_P0_REG_CTL 0x004
66 #define AM65_CPSW_PORT0_REG_FLOW_ID_OFFSET 0x008
68 #define AM65_CPSW_PORT_REG_PRI_CTL 0x01c
69 #define AM65_CPSW_PORT_REG_RX_PRI_MAP 0x020
70 #define AM65_CPSW_PORT_REG_RX_MAXLEN 0x024
72 #define AM65_CPSW_PORTN_REG_SA_L 0x308
73 #define AM65_CPSW_PORTN_REG_SA_H 0x30c
74 #define AM65_CPSW_PORTN_REG_TS_CTL 0x310
75 #define AM65_CPSW_PORTN_REG_TS_SEQ_LTYPE_REG 0x314
76 #define AM65_CPSW_PORTN_REG_TS_VLAN_LTYPE_REG 0x318
77 #define AM65_CPSW_PORTN_REG_TS_CTL_LTYPE2 0x31C
79 #define AM65_CPSW_SGMII_CONTROL_REG 0x010
80 #define AM65_CPSW_SGMII_MR_ADV_ABILITY_REG 0x018
81 #define AM65_CPSW_SGMII_CONTROL_MR_AN_ENABLE BIT(0)
83 #define AM65_CPSW_CTL_VLAN_AWARE BIT(1)
84 #define AM65_CPSW_CTL_P0_ENABLE BIT(2)
85 #define AM65_CPSW_CTL_P0_TX_CRC_REMOVE BIT(13)
86 #define AM65_CPSW_CTL_P0_RX_PAD BIT(14)
88 /* AM65_CPSW_P0_REG_CTL */
89 #define AM65_CPSW_P0_REG_CTL_RX_CHECKSUM_EN BIT(0)
90 #define AM65_CPSW_P0_REG_CTL_RX_REMAP_VLAN BIT(16)
92 /* AM65_CPSW_PORT_REG_PRI_CTL */
93 #define AM65_CPSW_PORT_REG_PRI_CTL_RX_PTYPE_RROBIN BIT(8)
95 /* AM65_CPSW_PN_TS_CTL register fields */
96 #define AM65_CPSW_PN_TS_CTL_TX_ANX_F_EN BIT(4)
97 #define AM65_CPSW_PN_TS_CTL_TX_VLAN_LT1_EN BIT(5)
98 #define AM65_CPSW_PN_TS_CTL_TX_VLAN_LT2_EN BIT(6)
99 #define AM65_CPSW_PN_TS_CTL_TX_ANX_D_EN BIT(7)
100 #define AM65_CPSW_PN_TS_CTL_TX_ANX_E_EN BIT(10)
101 #define AM65_CPSW_PN_TS_CTL_TX_HOST_TS_EN BIT(11)
102 #define AM65_CPSW_PN_TS_CTL_MSG_TYPE_EN_SHIFT 16
104 /* AM65_CPSW_PORTN_REG_TS_SEQ_LTYPE_REG register fields */
105 #define AM65_CPSW_PN_TS_SEQ_ID_OFFSET_SHIFT 16
107 /* AM65_CPSW_PORTN_REG_TS_CTL_LTYPE2 */
108 #define AM65_CPSW_PN_TS_CTL_LTYPE2_TS_107 BIT(16)
109 #define AM65_CPSW_PN_TS_CTL_LTYPE2_TS_129 BIT(17)
110 #define AM65_CPSW_PN_TS_CTL_LTYPE2_TS_130 BIT(18)
111 #define AM65_CPSW_PN_TS_CTL_LTYPE2_TS_131 BIT(19)
112 #define AM65_CPSW_PN_TS_CTL_LTYPE2_TS_132 BIT(20)
113 #define AM65_CPSW_PN_TS_CTL_LTYPE2_TS_319 BIT(21)
114 #define AM65_CPSW_PN_TS_CTL_LTYPE2_TS_320 BIT(22)
115 #define AM65_CPSW_PN_TS_CTL_LTYPE2_TS_TTL_NONZERO BIT(23)
117 /* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
118 #define AM65_CPSW_TS_EVENT_MSG_TYPE_BITS (BIT(0) | BIT(1) | BIT(2) | BIT(3))
120 #define AM65_CPSW_TS_SEQ_ID_OFFSET (0x1e)
122 #define AM65_CPSW_TS_TX_ANX_ALL_EN \
123 (AM65_CPSW_PN_TS_CTL_TX_ANX_D_EN | \
124 AM65_CPSW_PN_TS_CTL_TX_ANX_E_EN | \
125 AM65_CPSW_PN_TS_CTL_TX_ANX_F_EN)
127 #define AM65_CPSW_ALE_AGEOUT_DEFAULT 30
128 /* Number of TX/RX descriptors */
129 #define AM65_CPSW_MAX_TX_DESC 500
130 #define AM65_CPSW_MAX_RX_DESC 500
132 #define AM65_CPSW_NAV_PS_DATA_SIZE 16
133 #define AM65_CPSW_NAV_SW_DATA_SIZE 16
135 #define AM65_CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_DRV | NETIF_MSG_LINK | \
136 NETIF_MSG_IFUP | NETIF_MSG_PROBE | NETIF_MSG_IFDOWN | \
137 NETIF_MSG_RX_ERR | NETIF_MSG_TX_ERR)
139 static void am65_cpsw_port_set_sl_mac(struct am65_cpsw_port *slave,
142 u32 mac_hi = (dev_addr[0] << 0) | (dev_addr[1] << 8) |
143 (dev_addr[2] << 16) | (dev_addr[3] << 24);
144 u32 mac_lo = (dev_addr[4] << 0) | (dev_addr[5] << 8);
146 writel(mac_hi, slave->port_base + AM65_CPSW_PORTN_REG_SA_H);
147 writel(mac_lo, slave->port_base + AM65_CPSW_PORTN_REG_SA_L);
150 static void am65_cpsw_sl_ctl_reset(struct am65_cpsw_port *port)
152 cpsw_sl_reset(port->slave.mac_sl, 100);
153 /* Max length register has to be restored after MAC SL reset */
154 writel(AM65_CPSW_MAX_PACKET_SIZE,
155 port->port_base + AM65_CPSW_PORT_REG_RX_MAXLEN);
158 static void am65_cpsw_nuss_get_ver(struct am65_cpsw_common *common)
160 common->nuss_ver = readl(common->ss_base);
161 common->cpsw_ver = readl(common->cpsw_base);
162 dev_info(common->dev,
163 "initializing am65 cpsw nuss version 0x%08X, cpsw version 0x%08X Ports: %u quirks:%08x\n",
166 common->port_num + 1,
167 common->pdata.quirks);
170 static int am65_cpsw_nuss_ndo_slave_add_vid(struct net_device *ndev,
171 __be16 proto, u16 vid)
173 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
174 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
175 u32 port_mask, unreg_mcast = 0;
178 if (!common->is_emac_mode)
181 if (!netif_running(ndev) || !vid)
184 ret = pm_runtime_resume_and_get(common->dev);
188 port_mask = BIT(port->port_id) | ALE_PORT_HOST;
190 unreg_mcast = port_mask;
191 dev_info(common->dev, "Adding vlan %d to vlan filter\n", vid);
192 ret = cpsw_ale_vlan_add_modify(common->ale, vid, port_mask,
193 unreg_mcast, port_mask, 0);
195 pm_runtime_put(common->dev);
199 static int am65_cpsw_nuss_ndo_slave_kill_vid(struct net_device *ndev,
200 __be16 proto, u16 vid)
202 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
203 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
206 if (!common->is_emac_mode)
209 if (!netif_running(ndev) || !vid)
212 ret = pm_runtime_resume_and_get(common->dev);
216 dev_info(common->dev, "Removing vlan %d from vlan filter\n", vid);
217 ret = cpsw_ale_del_vlan(common->ale, vid,
218 BIT(port->port_id) | ALE_PORT_HOST);
220 pm_runtime_put(common->dev);
224 static void am65_cpsw_slave_set_promisc(struct am65_cpsw_port *port,
227 struct am65_cpsw_common *common = port->common;
229 if (promisc && !common->is_emac_mode) {
230 dev_dbg(common->dev, "promisc mode requested in switch mode");
235 /* Enable promiscuous mode */
236 cpsw_ale_control_set(common->ale, port->port_id,
237 ALE_PORT_MACONLY_CAF, 1);
238 dev_dbg(common->dev, "promisc enabled\n");
240 /* Disable promiscuous mode */
241 cpsw_ale_control_set(common->ale, port->port_id,
242 ALE_PORT_MACONLY_CAF, 0);
243 dev_dbg(common->dev, "promisc disabled\n");
247 static void am65_cpsw_nuss_ndo_slave_set_rx_mode(struct net_device *ndev)
249 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
250 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
254 promisc = !!(ndev->flags & IFF_PROMISC);
255 am65_cpsw_slave_set_promisc(port, promisc);
260 /* Restore allmulti on vlans if necessary */
261 cpsw_ale_set_allmulti(common->ale,
262 ndev->flags & IFF_ALLMULTI, port->port_id);
264 port_mask = ALE_PORT_HOST;
265 /* Clear all mcast from ALE */
266 cpsw_ale_flush_multicast(common->ale, port_mask, -1);
268 if (!netdev_mc_empty(ndev)) {
269 struct netdev_hw_addr *ha;
271 /* program multicast address list into ALE register */
272 netdev_for_each_mc_addr(ha, ndev) {
273 cpsw_ale_add_mcast(common->ale, ha->addr,
279 static void am65_cpsw_nuss_ndo_host_tx_timeout(struct net_device *ndev,
280 unsigned int txqueue)
282 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
283 struct am65_cpsw_tx_chn *tx_chn;
284 struct netdev_queue *netif_txq;
285 unsigned long trans_start;
287 netif_txq = netdev_get_tx_queue(ndev, txqueue);
288 tx_chn = &common->tx_chns[txqueue];
289 trans_start = READ_ONCE(netif_txq->trans_start);
291 netdev_err(ndev, "txq:%d DRV_XOFF:%d tmo:%u dql_avail:%d free_desc:%zu\n",
293 netif_tx_queue_stopped(netif_txq),
294 jiffies_to_msecs(jiffies - trans_start),
295 dql_avail(&netif_txq->dql),
296 k3_cppi_desc_pool_avail(tx_chn->desc_pool));
298 if (netif_tx_queue_stopped(netif_txq)) {
299 /* try recover if stopped by us */
300 txq_trans_update(netif_txq);
301 netif_tx_wake_queue(netif_txq);
305 static int am65_cpsw_nuss_rx_push(struct am65_cpsw_common *common,
308 struct am65_cpsw_rx_chn *rx_chn = &common->rx_chns;
309 struct cppi5_host_desc_t *desc_rx;
310 struct device *dev = common->dev;
311 u32 pkt_len = skb_tailroom(skb);
316 desc_rx = k3_cppi_desc_pool_alloc(rx_chn->desc_pool);
318 dev_err(dev, "Failed to allocate RXFDQ descriptor\n");
321 desc_dma = k3_cppi_desc_pool_virt2dma(rx_chn->desc_pool, desc_rx);
323 buf_dma = dma_map_single(rx_chn->dma_dev, skb->data, pkt_len,
325 if (unlikely(dma_mapping_error(rx_chn->dma_dev, buf_dma))) {
326 k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
327 dev_err(dev, "Failed to map rx skb buffer\n");
331 cppi5_hdesc_init(desc_rx, CPPI5_INFO0_HDESC_EPIB_PRESENT,
332 AM65_CPSW_NAV_PS_DATA_SIZE);
333 k3_udma_glue_rx_dma_to_cppi5_addr(rx_chn->rx_chn, &buf_dma);
334 cppi5_hdesc_attach_buf(desc_rx, buf_dma, skb_tailroom(skb), buf_dma, skb_tailroom(skb));
335 swdata = cppi5_hdesc_get_swdata(desc_rx);
336 *((void **)swdata) = skb;
338 return k3_udma_glue_push_rx_chn(rx_chn->rx_chn, 0, desc_rx, desc_dma);
341 void am65_cpsw_nuss_set_p0_ptype(struct am65_cpsw_common *common)
343 struct am65_cpsw_host *host_p = am65_common_get_host(common);
346 /* P0 set Receive Priority Type */
347 val = readl(host_p->port_base + AM65_CPSW_PORT_REG_PRI_CTL);
349 if (common->pf_p0_rx_ptype_rrobin) {
350 val |= AM65_CPSW_PORT_REG_PRI_CTL_RX_PTYPE_RROBIN;
351 /* Enet Ports fifos works in fixed priority mode only, so
352 * reset P0_Rx_Pri_Map so all packet will go in Enet fifo 0
356 val &= ~AM65_CPSW_PORT_REG_PRI_CTL_RX_PTYPE_RROBIN;
357 /* restore P0_Rx_Pri_Map */
358 pri_map = 0x76543210;
361 writel(pri_map, host_p->port_base + AM65_CPSW_PORT_REG_RX_PRI_MAP);
362 writel(val, host_p->port_base + AM65_CPSW_PORT_REG_PRI_CTL);
365 static void am65_cpsw_init_host_port_switch(struct am65_cpsw_common *common);
366 static void am65_cpsw_init_host_port_emac(struct am65_cpsw_common *common);
367 static void am65_cpsw_init_port_switch_ale(struct am65_cpsw_port *port);
368 static void am65_cpsw_init_port_emac_ale(struct am65_cpsw_port *port);
370 static int am65_cpsw_nuss_common_open(struct am65_cpsw_common *common)
372 struct am65_cpsw_host *host_p = am65_common_get_host(common);
373 int port_idx, i, ret;
377 if (common->usage_count)
380 /* Control register */
381 writel(AM65_CPSW_CTL_P0_ENABLE | AM65_CPSW_CTL_P0_TX_CRC_REMOVE |
382 AM65_CPSW_CTL_VLAN_AWARE | AM65_CPSW_CTL_P0_RX_PAD,
383 common->cpsw_base + AM65_CPSW_REG_CTL);
384 /* Max length register */
385 writel(AM65_CPSW_MAX_PACKET_SIZE,
386 host_p->port_base + AM65_CPSW_PORT_REG_RX_MAXLEN);
387 /* set base flow_id */
388 writel(common->rx_flow_id_base,
389 host_p->port_base + AM65_CPSW_PORT0_REG_FLOW_ID_OFFSET);
390 writel(AM65_CPSW_P0_REG_CTL_RX_CHECKSUM_EN | AM65_CPSW_P0_REG_CTL_RX_REMAP_VLAN,
391 host_p->port_base + AM65_CPSW_P0_REG_CTL);
393 am65_cpsw_nuss_set_p0_ptype(common);
395 /* enable statistic */
396 val = BIT(HOST_PORT_NUM);
397 for (port_idx = 0; port_idx < common->port_num; port_idx++) {
398 struct am65_cpsw_port *port = &common->ports[port_idx];
401 val |= BIT(port->port_id);
403 writel(val, common->cpsw_base + AM65_CPSW_REG_STAT_PORT_EN);
405 /* disable priority elevation */
406 writel(0, common->cpsw_base + AM65_CPSW_REG_PTYPE);
408 cpsw_ale_start(common->ale);
410 /* limit to one RX flow only */
411 cpsw_ale_control_set(common->ale, HOST_PORT_NUM,
412 ALE_DEFAULT_THREAD_ID, 0);
413 cpsw_ale_control_set(common->ale, HOST_PORT_NUM,
414 ALE_DEFAULT_THREAD_ENABLE, 1);
415 /* switch to vlan unaware mode */
416 cpsw_ale_control_set(common->ale, HOST_PORT_NUM, ALE_VLAN_AWARE, 1);
417 cpsw_ale_control_set(common->ale, HOST_PORT_NUM,
418 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
420 /* default vlan cfg: create mask based on enabled ports */
421 port_mask = GENMASK(common->port_num, 0) &
422 ~common->disabled_ports_mask;
424 cpsw_ale_add_vlan(common->ale, 0, port_mask,
425 port_mask, port_mask,
426 port_mask & ~ALE_PORT_HOST);
428 if (common->is_emac_mode)
429 am65_cpsw_init_host_port_emac(common);
431 am65_cpsw_init_host_port_switch(common);
433 am65_cpsw_qos_tx_p0_rate_init(common);
435 for (i = 0; i < common->rx_chns.descs_num; i++) {
436 skb = __netdev_alloc_skb_ip_align(NULL,
437 AM65_CPSW_MAX_PACKET_SIZE,
440 dev_err(common->dev, "cannot allocate skb\n");
444 ret = am65_cpsw_nuss_rx_push(common, skb);
447 "cannot submit skb to channel rx, error %d\n",
452 kmemleak_not_leak(skb);
454 k3_udma_glue_enable_rx_chn(common->rx_chns.rx_chn);
456 for (i = 0; i < common->tx_ch_num; i++) {
457 ret = k3_udma_glue_enable_tx_chn(common->tx_chns[i].tx_chn);
460 napi_enable(&common->tx_chns[i].napi_tx);
463 napi_enable(&common->napi_rx);
464 if (common->rx_irq_disabled) {
465 common->rx_irq_disabled = false;
466 enable_irq(common->rx_chns.irq);
469 dev_dbg(common->dev, "cpsw_nuss started\n");
473 static void am65_cpsw_nuss_tx_cleanup(void *data, dma_addr_t desc_dma);
474 static void am65_cpsw_nuss_rx_cleanup(void *data, dma_addr_t desc_dma);
476 static int am65_cpsw_nuss_common_stop(struct am65_cpsw_common *common)
480 if (common->usage_count != 1)
483 cpsw_ale_control_set(common->ale, HOST_PORT_NUM,
484 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
486 /* shutdown tx channels */
487 atomic_set(&common->tdown_cnt, common->tx_ch_num);
488 /* ensure new tdown_cnt value is visible */
489 smp_mb__after_atomic();
490 reinit_completion(&common->tdown_complete);
492 for (i = 0; i < common->tx_ch_num; i++)
493 k3_udma_glue_tdown_tx_chn(common->tx_chns[i].tx_chn, false);
495 i = wait_for_completion_timeout(&common->tdown_complete,
496 msecs_to_jiffies(1000));
498 dev_err(common->dev, "tx timeout\n");
499 for (i = 0; i < common->tx_ch_num; i++)
500 napi_disable(&common->tx_chns[i].napi_tx);
502 for (i = 0; i < common->tx_ch_num; i++) {
503 k3_udma_glue_reset_tx_chn(common->tx_chns[i].tx_chn,
505 am65_cpsw_nuss_tx_cleanup);
506 k3_udma_glue_disable_tx_chn(common->tx_chns[i].tx_chn);
509 reinit_completion(&common->tdown_complete);
510 k3_udma_glue_tdown_rx_chn(common->rx_chns.rx_chn, true);
512 if (common->pdata.quirks & AM64_CPSW_QUIRK_DMA_RX_TDOWN_IRQ) {
513 i = wait_for_completion_timeout(&common->tdown_complete, msecs_to_jiffies(1000));
515 dev_err(common->dev, "rx teardown timeout\n");
518 napi_disable(&common->napi_rx);
520 for (i = 0; i < AM65_CPSW_MAX_RX_FLOWS; i++)
521 k3_udma_glue_reset_rx_chn(common->rx_chns.rx_chn, i,
523 am65_cpsw_nuss_rx_cleanup, !!i);
525 k3_udma_glue_disable_rx_chn(common->rx_chns.rx_chn);
527 cpsw_ale_stop(common->ale);
529 writel(0, common->cpsw_base + AM65_CPSW_REG_CTL);
530 writel(0, common->cpsw_base + AM65_CPSW_REG_STAT_PORT_EN);
532 dev_dbg(common->dev, "cpsw_nuss stopped\n");
536 static int am65_cpsw_nuss_ndo_slave_stop(struct net_device *ndev)
538 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
539 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
542 phylink_stop(port->slave.phylink);
544 netif_tx_stop_all_queues(ndev);
546 phylink_disconnect_phy(port->slave.phylink);
548 ret = am65_cpsw_nuss_common_stop(common);
552 common->usage_count--;
553 pm_runtime_put(common->dev);
557 static int cpsw_restore_vlans(struct net_device *vdev, int vid, void *arg)
559 struct am65_cpsw_port *port = arg;
564 return am65_cpsw_nuss_ndo_slave_add_vid(port->ndev, 0, vid);
567 static int am65_cpsw_nuss_ndo_slave_open(struct net_device *ndev)
569 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
570 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
574 ret = pm_runtime_resume_and_get(common->dev);
579 cpsw_sl_ctl_set(port->slave.mac_sl, CPSW_SL_CTL_CMD_IDLE);
580 cpsw_sl_wait_for_idle(port->slave.mac_sl, 100);
581 cpsw_sl_ctl_reset(port->slave.mac_sl);
584 cpsw_sl_reg_write(port->slave.mac_sl, CPSW_SL_SOFT_RESET, 1);
586 reg = cpsw_sl_reg_read(port->slave.mac_sl, CPSW_SL_SOFT_RESET);
588 dev_err(common->dev, "soft RESET didn't complete\n");
593 /* Notify the stack of the actual queue counts. */
594 ret = netif_set_real_num_tx_queues(ndev, common->tx_ch_num);
596 dev_err(common->dev, "cannot set real number of tx queues\n");
600 ret = netif_set_real_num_rx_queues(ndev, AM65_CPSW_MAX_RX_QUEUES);
602 dev_err(common->dev, "cannot set real number of rx queues\n");
606 for (i = 0; i < common->tx_ch_num; i++) {
607 struct netdev_queue *txq = netdev_get_tx_queue(ndev, i);
609 netdev_tx_reset_queue(txq);
610 txq->tx_maxrate = common->tx_chns[i].rate_mbps;
613 ret = am65_cpsw_nuss_common_open(common);
617 common->usage_count++;
619 am65_cpsw_port_set_sl_mac(port, ndev->dev_addr);
621 if (common->is_emac_mode)
622 am65_cpsw_init_port_emac_ale(port);
624 am65_cpsw_init_port_switch_ale(port);
626 /* mac_sl should be configured via phy-link interface */
627 am65_cpsw_sl_ctl_reset(port);
629 ret = phylink_of_phy_connect(port->slave.phylink, port->slave.phy_node, 0);
633 /* restore vlan configurations */
634 vlan_for_each(ndev, cpsw_restore_vlans, port);
636 phylink_start(port->slave.phylink);
641 am65_cpsw_nuss_ndo_slave_stop(ndev);
645 pm_runtime_put(common->dev);
649 static void am65_cpsw_nuss_rx_cleanup(void *data, dma_addr_t desc_dma)
651 struct am65_cpsw_rx_chn *rx_chn = data;
652 struct cppi5_host_desc_t *desc_rx;
658 desc_rx = k3_cppi_desc_pool_dma2virt(rx_chn->desc_pool, desc_dma);
659 swdata = cppi5_hdesc_get_swdata(desc_rx);
661 cppi5_hdesc_get_obuf(desc_rx, &buf_dma, &buf_dma_len);
662 k3_udma_glue_rx_cppi5_to_dma_addr(rx_chn->rx_chn, &buf_dma);
664 dma_unmap_single(rx_chn->dma_dev, buf_dma, buf_dma_len, DMA_FROM_DEVICE);
665 k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
667 dev_kfree_skb_any(skb);
670 static void am65_cpsw_nuss_rx_ts(struct sk_buff *skb, u32 *psdata)
672 struct skb_shared_hwtstamps *ssh;
675 ns = ((u64)psdata[1] << 32) | psdata[0];
677 ssh = skb_hwtstamps(skb);
678 memset(ssh, 0, sizeof(*ssh));
679 ssh->hwtstamp = ns_to_ktime(ns);
682 /* RX psdata[2] word format - checksum information */
683 #define AM65_CPSW_RX_PSD_CSUM_ADD GENMASK(15, 0)
684 #define AM65_CPSW_RX_PSD_CSUM_ERR BIT(16)
685 #define AM65_CPSW_RX_PSD_IS_FRAGMENT BIT(17)
686 #define AM65_CPSW_RX_PSD_IS_TCP BIT(18)
687 #define AM65_CPSW_RX_PSD_IPV6_VALID BIT(19)
688 #define AM65_CPSW_RX_PSD_IPV4_VALID BIT(20)
690 static void am65_cpsw_nuss_rx_csum(struct sk_buff *skb, u32 csum_info)
692 /* HW can verify IPv4/IPv6 TCP/UDP packets checksum
693 * csum information provides in psdata[2] word:
694 * AM65_CPSW_RX_PSD_CSUM_ERR bit - indicates csum error
695 * AM65_CPSW_RX_PSD_IPV6_VALID and AM65_CPSW_RX_PSD_IPV4_VALID
696 * bits - indicates IPv4/IPv6 packet
697 * AM65_CPSW_RX_PSD_IS_FRAGMENT bit - indicates fragmented packet
698 * AM65_CPSW_RX_PSD_CSUM_ADD has value 0xFFFF for non fragmented packets
699 * or csum value for fragmented packets if !AM65_CPSW_RX_PSD_CSUM_ERR
701 skb_checksum_none_assert(skb);
703 if (unlikely(!(skb->dev->features & NETIF_F_RXCSUM)))
706 if ((csum_info & (AM65_CPSW_RX_PSD_IPV6_VALID |
707 AM65_CPSW_RX_PSD_IPV4_VALID)) &&
708 !(csum_info & AM65_CPSW_RX_PSD_CSUM_ERR)) {
709 /* csum for fragmented packets is unsupported */
710 if (!(csum_info & AM65_CPSW_RX_PSD_IS_FRAGMENT))
711 skb->ip_summed = CHECKSUM_UNNECESSARY;
715 static int am65_cpsw_nuss_rx_packets(struct am65_cpsw_common *common,
718 struct am65_cpsw_rx_chn *rx_chn = &common->rx_chns;
719 u32 buf_dma_len, pkt_len, port_id = 0, csum_info;
720 struct am65_cpsw_ndev_priv *ndev_priv;
721 struct am65_cpsw_ndev_stats *stats;
722 struct cppi5_host_desc_t *desc_rx;
723 struct device *dev = common->dev;
724 struct sk_buff *skb, *new_skb;
725 dma_addr_t desc_dma, buf_dma;
726 struct am65_cpsw_port *port;
727 struct net_device *ndev;
732 ret = k3_udma_glue_pop_rx_chn(rx_chn->rx_chn, flow_idx, &desc_dma);
735 dev_err(dev, "RX: pop chn fail %d\n", ret);
739 if (cppi5_desc_is_tdcm(desc_dma)) {
740 dev_dbg(dev, "%s RX tdown flow: %u\n", __func__, flow_idx);
741 if (common->pdata.quirks & AM64_CPSW_QUIRK_DMA_RX_TDOWN_IRQ)
742 complete(&common->tdown_complete);
746 desc_rx = k3_cppi_desc_pool_dma2virt(rx_chn->desc_pool, desc_dma);
747 dev_dbg(dev, "%s flow_idx: %u desc %pad\n",
748 __func__, flow_idx, &desc_dma);
750 swdata = cppi5_hdesc_get_swdata(desc_rx);
752 cppi5_hdesc_get_obuf(desc_rx, &buf_dma, &buf_dma_len);
753 k3_udma_glue_rx_cppi5_to_dma_addr(rx_chn->rx_chn, &buf_dma);
754 pkt_len = cppi5_hdesc_get_pktlen(desc_rx);
755 cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
756 dev_dbg(dev, "%s rx port_id:%d\n", __func__, port_id);
757 port = am65_common_get_port(common, port_id);
761 psdata = cppi5_hdesc_get_psdata(desc_rx);
762 /* add RX timestamp */
763 if (port->rx_ts_enabled)
764 am65_cpsw_nuss_rx_ts(skb, psdata);
765 csum_info = psdata[2];
766 dev_dbg(dev, "%s rx csum_info:%#x\n", __func__, csum_info);
768 dma_unmap_single(rx_chn->dma_dev, buf_dma, buf_dma_len, DMA_FROM_DEVICE);
770 k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
772 new_skb = netdev_alloc_skb_ip_align(ndev, AM65_CPSW_MAX_PACKET_SIZE);
774 ndev_priv = netdev_priv(ndev);
775 am65_cpsw_nuss_set_offload_fwd_mark(skb, ndev_priv->offload_fwd_mark);
776 skb_put(skb, pkt_len);
777 skb->protocol = eth_type_trans(skb, ndev);
778 am65_cpsw_nuss_rx_csum(skb, csum_info);
779 napi_gro_receive(&common->napi_rx, skb);
781 stats = this_cpu_ptr(ndev_priv->stats);
783 u64_stats_update_begin(&stats->syncp);
785 stats->rx_bytes += pkt_len;
786 u64_stats_update_end(&stats->syncp);
787 kmemleak_not_leak(new_skb);
789 ndev->stats.rx_dropped++;
793 if (netif_dormant(ndev)) {
794 dev_kfree_skb_any(new_skb);
795 ndev->stats.rx_dropped++;
799 ret = am65_cpsw_nuss_rx_push(common, new_skb);
800 if (WARN_ON(ret < 0)) {
801 dev_kfree_skb_any(new_skb);
802 ndev->stats.rx_errors++;
803 ndev->stats.rx_dropped++;
809 static int am65_cpsw_nuss_rx_poll(struct napi_struct *napi_rx, int budget)
811 struct am65_cpsw_common *common = am65_cpsw_napi_to_common(napi_rx);
812 int flow = AM65_CPSW_MAX_RX_FLOWS;
816 /* process every flow */
818 cur_budget = budget - num_rx;
820 while (cur_budget--) {
821 ret = am65_cpsw_nuss_rx_packets(common, flow);
827 if (num_rx >= budget)
831 dev_dbg(common->dev, "%s num_rx:%d %d\n", __func__, num_rx, budget);
833 if (num_rx < budget && napi_complete_done(napi_rx, num_rx)) {
834 if (common->rx_irq_disabled) {
835 common->rx_irq_disabled = false;
836 enable_irq(common->rx_chns.irq);
843 static void am65_cpsw_nuss_xmit_free(struct am65_cpsw_tx_chn *tx_chn,
844 struct cppi5_host_desc_t *desc)
846 struct cppi5_host_desc_t *first_desc, *next_desc;
847 dma_addr_t buf_dma, next_desc_dma;
851 next_desc = first_desc;
853 cppi5_hdesc_get_obuf(first_desc, &buf_dma, &buf_dma_len);
854 k3_udma_glue_tx_cppi5_to_dma_addr(tx_chn->tx_chn, &buf_dma);
856 dma_unmap_single(tx_chn->dma_dev, buf_dma, buf_dma_len, DMA_TO_DEVICE);
858 next_desc_dma = cppi5_hdesc_get_next_hbdesc(first_desc);
859 k3_udma_glue_tx_cppi5_to_dma_addr(tx_chn->tx_chn, &next_desc_dma);
860 while (next_desc_dma) {
861 next_desc = k3_cppi_desc_pool_dma2virt(tx_chn->desc_pool,
863 cppi5_hdesc_get_obuf(next_desc, &buf_dma, &buf_dma_len);
864 k3_udma_glue_tx_cppi5_to_dma_addr(tx_chn->tx_chn, &buf_dma);
866 dma_unmap_page(tx_chn->dma_dev, buf_dma, buf_dma_len,
869 next_desc_dma = cppi5_hdesc_get_next_hbdesc(next_desc);
870 k3_udma_glue_tx_cppi5_to_dma_addr(tx_chn->tx_chn, &next_desc_dma);
872 k3_cppi_desc_pool_free(tx_chn->desc_pool, next_desc);
875 k3_cppi_desc_pool_free(tx_chn->desc_pool, first_desc);
878 static void am65_cpsw_nuss_tx_cleanup(void *data, dma_addr_t desc_dma)
880 struct am65_cpsw_tx_chn *tx_chn = data;
881 struct cppi5_host_desc_t *desc_tx;
885 desc_tx = k3_cppi_desc_pool_dma2virt(tx_chn->desc_pool, desc_dma);
886 swdata = cppi5_hdesc_get_swdata(desc_tx);
888 am65_cpsw_nuss_xmit_free(tx_chn, desc_tx);
890 dev_kfree_skb_any(skb);
893 static struct sk_buff *
894 am65_cpsw_nuss_tx_compl_packet(struct am65_cpsw_tx_chn *tx_chn,
897 struct am65_cpsw_ndev_priv *ndev_priv;
898 struct am65_cpsw_ndev_stats *stats;
899 struct cppi5_host_desc_t *desc_tx;
900 struct net_device *ndev;
904 desc_tx = k3_cppi_desc_pool_dma2virt(tx_chn->desc_pool,
906 swdata = cppi5_hdesc_get_swdata(desc_tx);
908 am65_cpsw_nuss_xmit_free(tx_chn, desc_tx);
912 am65_cpts_tx_timestamp(tx_chn->common->cpts, skb);
914 ndev_priv = netdev_priv(ndev);
915 stats = this_cpu_ptr(ndev_priv->stats);
916 u64_stats_update_begin(&stats->syncp);
918 stats->tx_bytes += skb->len;
919 u64_stats_update_end(&stats->syncp);
924 static void am65_cpsw_nuss_tx_wake(struct am65_cpsw_tx_chn *tx_chn, struct net_device *ndev,
925 struct netdev_queue *netif_txq)
927 if (netif_tx_queue_stopped(netif_txq)) {
928 /* Check whether the queue is stopped due to stalled
929 * tx dma, if the queue is stopped then wake the queue
930 * as we have free desc for tx
932 __netif_tx_lock(netif_txq, smp_processor_id());
933 if (netif_running(ndev) &&
934 (k3_cppi_desc_pool_avail(tx_chn->desc_pool) >= MAX_SKB_FRAGS))
935 netif_tx_wake_queue(netif_txq);
937 __netif_tx_unlock(netif_txq);
941 static int am65_cpsw_nuss_tx_compl_packets(struct am65_cpsw_common *common,
942 int chn, unsigned int budget)
944 struct device *dev = common->dev;
945 struct am65_cpsw_tx_chn *tx_chn;
946 struct netdev_queue *netif_txq;
947 unsigned int total_bytes = 0;
948 struct net_device *ndev;
953 tx_chn = &common->tx_chns[chn];
956 spin_lock(&tx_chn->lock);
957 res = k3_udma_glue_pop_tx_chn(tx_chn->tx_chn, &desc_dma);
958 spin_unlock(&tx_chn->lock);
962 if (cppi5_desc_is_tdcm(desc_dma)) {
963 if (atomic_dec_and_test(&common->tdown_cnt))
964 complete(&common->tdown_complete);
968 skb = am65_cpsw_nuss_tx_compl_packet(tx_chn, desc_dma);
969 total_bytes = skb->len;
971 napi_consume_skb(skb, budget);
974 netif_txq = netdev_get_tx_queue(ndev, chn);
976 netdev_tx_completed_queue(netif_txq, num_tx, total_bytes);
978 am65_cpsw_nuss_tx_wake(tx_chn, ndev, netif_txq);
981 dev_dbg(dev, "%s:%u pkt:%d\n", __func__, chn, num_tx);
986 static int am65_cpsw_nuss_tx_compl_packets_2g(struct am65_cpsw_common *common,
987 int chn, unsigned int budget)
989 struct device *dev = common->dev;
990 struct am65_cpsw_tx_chn *tx_chn;
991 struct netdev_queue *netif_txq;
992 unsigned int total_bytes = 0;
993 struct net_device *ndev;
998 tx_chn = &common->tx_chns[chn];
1001 res = k3_udma_glue_pop_tx_chn(tx_chn->tx_chn, &desc_dma);
1002 if (res == -ENODATA)
1005 if (cppi5_desc_is_tdcm(desc_dma)) {
1006 if (atomic_dec_and_test(&common->tdown_cnt))
1007 complete(&common->tdown_complete);
1011 skb = am65_cpsw_nuss_tx_compl_packet(tx_chn, desc_dma);
1014 total_bytes += skb->len;
1015 napi_consume_skb(skb, budget);
1022 netif_txq = netdev_get_tx_queue(ndev, chn);
1024 netdev_tx_completed_queue(netif_txq, num_tx, total_bytes);
1026 am65_cpsw_nuss_tx_wake(tx_chn, ndev, netif_txq);
1028 dev_dbg(dev, "%s:%u pkt:%d\n", __func__, chn, num_tx);
1033 static int am65_cpsw_nuss_tx_poll(struct napi_struct *napi_tx, int budget)
1035 struct am65_cpsw_tx_chn *tx_chn = am65_cpsw_napi_to_tx_chn(napi_tx);
1038 if (AM65_CPSW_IS_CPSW2G(tx_chn->common))
1039 num_tx = am65_cpsw_nuss_tx_compl_packets_2g(tx_chn->common, tx_chn->id, budget);
1041 num_tx = am65_cpsw_nuss_tx_compl_packets(tx_chn->common, tx_chn->id, budget);
1043 if (num_tx >= budget)
1046 if (napi_complete_done(napi_tx, num_tx))
1047 enable_irq(tx_chn->irq);
1052 static irqreturn_t am65_cpsw_nuss_rx_irq(int irq, void *dev_id)
1054 struct am65_cpsw_common *common = dev_id;
1056 common->rx_irq_disabled = true;
1057 disable_irq_nosync(irq);
1058 napi_schedule(&common->napi_rx);
1063 static irqreturn_t am65_cpsw_nuss_tx_irq(int irq, void *dev_id)
1065 struct am65_cpsw_tx_chn *tx_chn = dev_id;
1067 disable_irq_nosync(irq);
1068 napi_schedule(&tx_chn->napi_tx);
1073 static netdev_tx_t am65_cpsw_nuss_ndo_slave_xmit(struct sk_buff *skb,
1074 struct net_device *ndev)
1076 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
1077 struct cppi5_host_desc_t *first_desc, *next_desc, *cur_desc;
1078 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
1079 struct device *dev = common->dev;
1080 struct am65_cpsw_tx_chn *tx_chn;
1081 struct netdev_queue *netif_txq;
1082 dma_addr_t desc_dma, buf_dma;
1088 /* padding enabled in hw */
1089 pkt_len = skb_headlen(skb);
1091 /* SKB TX timestamp */
1092 if (port->tx_ts_enabled)
1093 am65_cpts_prep_tx_timestamp(common->cpts, skb);
1095 q_idx = skb_get_queue_mapping(skb);
1096 dev_dbg(dev, "%s skb_queue:%d\n", __func__, q_idx);
1098 tx_chn = &common->tx_chns[q_idx];
1099 netif_txq = netdev_get_tx_queue(ndev, q_idx);
1101 /* Map the linear buffer */
1102 buf_dma = dma_map_single(tx_chn->dma_dev, skb->data, pkt_len,
1104 if (unlikely(dma_mapping_error(tx_chn->dma_dev, buf_dma))) {
1105 dev_err(dev, "Failed to map tx skb buffer\n");
1106 ndev->stats.tx_errors++;
1110 first_desc = k3_cppi_desc_pool_alloc(tx_chn->desc_pool);
1112 dev_dbg(dev, "Failed to allocate descriptor\n");
1113 dma_unmap_single(tx_chn->dma_dev, buf_dma, pkt_len,
1118 cppi5_hdesc_init(first_desc, CPPI5_INFO0_HDESC_EPIB_PRESENT,
1119 AM65_CPSW_NAV_PS_DATA_SIZE);
1120 cppi5_desc_set_pktids(&first_desc->hdr, 0, 0x3FFF);
1121 cppi5_hdesc_set_pkttype(first_desc, 0x7);
1122 cppi5_desc_set_tags_ids(&first_desc->hdr, 0, port->port_id);
1124 k3_udma_glue_tx_dma_to_cppi5_addr(tx_chn->tx_chn, &buf_dma);
1125 cppi5_hdesc_attach_buf(first_desc, buf_dma, pkt_len, buf_dma, pkt_len);
1126 swdata = cppi5_hdesc_get_swdata(first_desc);
1128 psdata = cppi5_hdesc_get_psdata(first_desc);
1130 /* HW csum offload if enabled */
1132 if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
1133 unsigned int cs_start, cs_offset;
1135 cs_start = skb_transport_offset(skb);
1136 cs_offset = cs_start + skb->csum_offset;
1137 /* HW numerates bytes starting from 1 */
1138 psdata[2] = ((cs_offset + 1) << 24) |
1139 ((cs_start + 1) << 16) | (skb->len - cs_start);
1140 dev_dbg(dev, "%s tx psdata:%#x\n", __func__, psdata[2]);
1143 if (!skb_is_nonlinear(skb))
1146 dev_dbg(dev, "fragmented SKB\n");
1148 /* Handle the case where skb is fragmented in pages */
1149 cur_desc = first_desc;
1150 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1151 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1152 u32 frag_size = skb_frag_size(frag);
1154 next_desc = k3_cppi_desc_pool_alloc(tx_chn->desc_pool);
1156 dev_err(dev, "Failed to allocate descriptor\n");
1157 goto busy_free_descs;
1160 buf_dma = skb_frag_dma_map(tx_chn->dma_dev, frag, 0, frag_size,
1162 if (unlikely(dma_mapping_error(tx_chn->dma_dev, buf_dma))) {
1163 dev_err(dev, "Failed to map tx skb page\n");
1164 k3_cppi_desc_pool_free(tx_chn->desc_pool, next_desc);
1165 ndev->stats.tx_errors++;
1166 goto err_free_descs;
1169 cppi5_hdesc_reset_hbdesc(next_desc);
1170 k3_udma_glue_tx_dma_to_cppi5_addr(tx_chn->tx_chn, &buf_dma);
1171 cppi5_hdesc_attach_buf(next_desc,
1172 buf_dma, frag_size, buf_dma, frag_size);
1174 desc_dma = k3_cppi_desc_pool_virt2dma(tx_chn->desc_pool,
1176 k3_udma_glue_tx_dma_to_cppi5_addr(tx_chn->tx_chn, &desc_dma);
1177 cppi5_hdesc_link_hbdesc(cur_desc, desc_dma);
1179 pkt_len += frag_size;
1180 cur_desc = next_desc;
1182 WARN_ON(pkt_len != skb->len);
1185 skb_tx_timestamp(skb);
1187 /* report bql before sending packet */
1188 netdev_tx_sent_queue(netif_txq, pkt_len);
1190 cppi5_hdesc_set_pktlen(first_desc, pkt_len);
1191 desc_dma = k3_cppi_desc_pool_virt2dma(tx_chn->desc_pool, first_desc);
1192 if (AM65_CPSW_IS_CPSW2G(common)) {
1193 ret = k3_udma_glue_push_tx_chn(tx_chn->tx_chn, first_desc, desc_dma);
1195 spin_lock_bh(&tx_chn->lock);
1196 ret = k3_udma_glue_push_tx_chn(tx_chn->tx_chn, first_desc, desc_dma);
1197 spin_unlock_bh(&tx_chn->lock);
1200 dev_err(dev, "can't push desc %d\n", ret);
1202 netdev_tx_completed_queue(netif_txq, 1, pkt_len);
1203 ndev->stats.tx_errors++;
1204 goto err_free_descs;
1207 if (k3_cppi_desc_pool_avail(tx_chn->desc_pool) < MAX_SKB_FRAGS) {
1208 netif_tx_stop_queue(netif_txq);
1209 /* Barrier, so that stop_queue visible to other cpus */
1210 smp_mb__after_atomic();
1211 dev_dbg(dev, "netif_tx_stop_queue %d\n", q_idx);
1213 /* re-check for smp */
1214 if (k3_cppi_desc_pool_avail(tx_chn->desc_pool) >=
1216 netif_tx_wake_queue(netif_txq);
1217 dev_dbg(dev, "netif_tx_wake_queue %d\n", q_idx);
1221 return NETDEV_TX_OK;
1224 am65_cpsw_nuss_xmit_free(tx_chn, first_desc);
1226 ndev->stats.tx_dropped++;
1227 dev_kfree_skb_any(skb);
1228 return NETDEV_TX_OK;
1231 am65_cpsw_nuss_xmit_free(tx_chn, first_desc);
1233 netif_tx_stop_queue(netif_txq);
1234 return NETDEV_TX_BUSY;
1237 static int am65_cpsw_nuss_ndo_slave_set_mac_address(struct net_device *ndev,
1240 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
1241 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
1242 struct sockaddr *sockaddr = (struct sockaddr *)addr;
1245 ret = eth_prepare_mac_addr_change(ndev, addr);
1249 ret = pm_runtime_resume_and_get(common->dev);
1253 cpsw_ale_del_ucast(common->ale, ndev->dev_addr,
1254 HOST_PORT_NUM, 0, 0);
1255 cpsw_ale_add_ucast(common->ale, sockaddr->sa_data,
1256 HOST_PORT_NUM, ALE_SECURE, 0);
1258 am65_cpsw_port_set_sl_mac(port, addr);
1259 eth_commit_mac_addr_change(ndev, sockaddr);
1261 pm_runtime_put(common->dev);
1266 static int am65_cpsw_nuss_hwtstamp_set(struct net_device *ndev,
1269 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
1270 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
1271 u32 ts_ctrl, seq_id, ts_ctrl_ltype2, ts_vlan_ltype;
1272 struct hwtstamp_config cfg;
1274 if (!IS_ENABLED(CONFIG_TI_K3_AM65_CPTS))
1277 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1280 /* TX HW timestamp */
1281 switch (cfg.tx_type) {
1282 case HWTSTAMP_TX_OFF:
1283 case HWTSTAMP_TX_ON:
1289 switch (cfg.rx_filter) {
1290 case HWTSTAMP_FILTER_NONE:
1291 port->rx_ts_enabled = false;
1293 case HWTSTAMP_FILTER_ALL:
1294 case HWTSTAMP_FILTER_SOME:
1295 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1296 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1297 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1298 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1299 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1300 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1301 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1302 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1303 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1304 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1305 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1306 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1307 case HWTSTAMP_FILTER_NTP_ALL:
1308 port->rx_ts_enabled = true;
1309 cfg.rx_filter = HWTSTAMP_FILTER_ALL;
1315 port->tx_ts_enabled = (cfg.tx_type == HWTSTAMP_TX_ON);
1317 /* cfg TX timestamp */
1318 seq_id = (AM65_CPSW_TS_SEQ_ID_OFFSET <<
1319 AM65_CPSW_PN_TS_SEQ_ID_OFFSET_SHIFT) | ETH_P_1588;
1321 ts_vlan_ltype = ETH_P_8021Q;
1323 ts_ctrl_ltype2 = ETH_P_1588 |
1324 AM65_CPSW_PN_TS_CTL_LTYPE2_TS_107 |
1325 AM65_CPSW_PN_TS_CTL_LTYPE2_TS_129 |
1326 AM65_CPSW_PN_TS_CTL_LTYPE2_TS_130 |
1327 AM65_CPSW_PN_TS_CTL_LTYPE2_TS_131 |
1328 AM65_CPSW_PN_TS_CTL_LTYPE2_TS_132 |
1329 AM65_CPSW_PN_TS_CTL_LTYPE2_TS_319 |
1330 AM65_CPSW_PN_TS_CTL_LTYPE2_TS_320 |
1331 AM65_CPSW_PN_TS_CTL_LTYPE2_TS_TTL_NONZERO;
1333 ts_ctrl = AM65_CPSW_TS_EVENT_MSG_TYPE_BITS <<
1334 AM65_CPSW_PN_TS_CTL_MSG_TYPE_EN_SHIFT;
1336 if (port->tx_ts_enabled)
1337 ts_ctrl |= AM65_CPSW_TS_TX_ANX_ALL_EN |
1338 AM65_CPSW_PN_TS_CTL_TX_VLAN_LT1_EN;
1340 writel(seq_id, port->port_base + AM65_CPSW_PORTN_REG_TS_SEQ_LTYPE_REG);
1341 writel(ts_vlan_ltype, port->port_base +
1342 AM65_CPSW_PORTN_REG_TS_VLAN_LTYPE_REG);
1343 writel(ts_ctrl_ltype2, port->port_base +
1344 AM65_CPSW_PORTN_REG_TS_CTL_LTYPE2);
1345 writel(ts_ctrl, port->port_base + AM65_CPSW_PORTN_REG_TS_CTL);
1347 /* en/dis RX timestamp */
1348 am65_cpts_rx_enable(common->cpts, port->rx_ts_enabled);
1350 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1353 static int am65_cpsw_nuss_hwtstamp_get(struct net_device *ndev,
1356 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
1357 struct hwtstamp_config cfg;
1359 if (!IS_ENABLED(CONFIG_TI_K3_AM65_CPTS))
1363 cfg.tx_type = port->tx_ts_enabled ?
1364 HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1365 cfg.rx_filter = port->rx_ts_enabled ?
1366 HWTSTAMP_FILTER_ALL : HWTSTAMP_FILTER_NONE;
1368 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1371 static int am65_cpsw_nuss_ndo_slave_ioctl(struct net_device *ndev,
1372 struct ifreq *req, int cmd)
1374 struct am65_cpsw_port *port = am65_ndev_to_port(ndev);
1376 if (!netif_running(ndev))
1381 return am65_cpsw_nuss_hwtstamp_set(ndev, req);
1383 return am65_cpsw_nuss_hwtstamp_get(ndev, req);
1386 return phylink_mii_ioctl(port->slave.phylink, req, cmd);
1389 static void am65_cpsw_nuss_ndo_get_stats(struct net_device *dev,
1390 struct rtnl_link_stats64 *stats)
1392 struct am65_cpsw_ndev_priv *ndev_priv = netdev_priv(dev);
1396 for_each_possible_cpu(cpu) {
1397 struct am65_cpsw_ndev_stats *cpu_stats;
1403 cpu_stats = per_cpu_ptr(ndev_priv->stats, cpu);
1405 start = u64_stats_fetch_begin(&cpu_stats->syncp);
1406 rx_packets = cpu_stats->rx_packets;
1407 rx_bytes = cpu_stats->rx_bytes;
1408 tx_packets = cpu_stats->tx_packets;
1409 tx_bytes = cpu_stats->tx_bytes;
1410 } while (u64_stats_fetch_retry(&cpu_stats->syncp, start));
1412 stats->rx_packets += rx_packets;
1413 stats->rx_bytes += rx_bytes;
1414 stats->tx_packets += tx_packets;
1415 stats->tx_bytes += tx_bytes;
1418 stats->rx_errors = dev->stats.rx_errors;
1419 stats->rx_dropped = dev->stats.rx_dropped;
1420 stats->tx_dropped = dev->stats.tx_dropped;
1423 static const struct net_device_ops am65_cpsw_nuss_netdev_ops = {
1424 .ndo_open = am65_cpsw_nuss_ndo_slave_open,
1425 .ndo_stop = am65_cpsw_nuss_ndo_slave_stop,
1426 .ndo_start_xmit = am65_cpsw_nuss_ndo_slave_xmit,
1427 .ndo_set_rx_mode = am65_cpsw_nuss_ndo_slave_set_rx_mode,
1428 .ndo_get_stats64 = am65_cpsw_nuss_ndo_get_stats,
1429 .ndo_validate_addr = eth_validate_addr,
1430 .ndo_set_mac_address = am65_cpsw_nuss_ndo_slave_set_mac_address,
1431 .ndo_tx_timeout = am65_cpsw_nuss_ndo_host_tx_timeout,
1432 .ndo_vlan_rx_add_vid = am65_cpsw_nuss_ndo_slave_add_vid,
1433 .ndo_vlan_rx_kill_vid = am65_cpsw_nuss_ndo_slave_kill_vid,
1434 .ndo_eth_ioctl = am65_cpsw_nuss_ndo_slave_ioctl,
1435 .ndo_setup_tc = am65_cpsw_qos_ndo_setup_tc,
1436 .ndo_set_tx_maxrate = am65_cpsw_qos_ndo_tx_p0_set_maxrate,
1439 static void am65_cpsw_disable_phy(struct phy *phy)
1445 static int am65_cpsw_enable_phy(struct phy *phy)
1449 ret = phy_init(phy);
1453 ret = phy_power_on(phy);
1462 static void am65_cpsw_disable_serdes_phy(struct am65_cpsw_common *common)
1464 struct am65_cpsw_port *port;
1468 for (i = 0; i < common->port_num; i++) {
1469 port = &common->ports[i];
1470 phy = port->slave.serdes_phy;
1472 am65_cpsw_disable_phy(phy);
1476 static int am65_cpsw_init_serdes_phy(struct device *dev, struct device_node *port_np,
1477 struct am65_cpsw_port *port)
1479 const char *name = "serdes";
1483 phy = devm_of_phy_optional_get(dev, port_np, name);
1484 if (IS_ERR_OR_NULL(phy))
1485 return PTR_ERR_OR_ZERO(phy);
1487 /* Serdes PHY exists. Store it. */
1488 port->slave.serdes_phy = phy;
1490 ret = am65_cpsw_enable_phy(phy);
1497 devm_phy_put(dev, phy);
1501 static void am65_cpsw_nuss_mac_config(struct phylink_config *config, unsigned int mode,
1502 const struct phylink_link_state *state)
1504 struct am65_cpsw_slave_data *slave = container_of(config, struct am65_cpsw_slave_data,
1506 struct am65_cpsw_port *port = container_of(slave, struct am65_cpsw_port, slave);
1507 struct am65_cpsw_common *common = port->common;
1509 if (common->pdata.extra_modes & BIT(state->interface)) {
1510 if (state->interface == PHY_INTERFACE_MODE_SGMII) {
1511 writel(ADVERTISE_SGMII,
1512 port->sgmii_base + AM65_CPSW_SGMII_MR_ADV_ABILITY_REG);
1513 cpsw_sl_ctl_set(port->slave.mac_sl, CPSW_SL_CTL_EXT_EN);
1515 cpsw_sl_ctl_clr(port->slave.mac_sl, CPSW_SL_CTL_EXT_EN);
1518 if (state->interface == PHY_INTERFACE_MODE_USXGMII) {
1519 cpsw_sl_ctl_set(port->slave.mac_sl,
1520 CPSW_SL_CTL_XGIG | CPSW_SL_CTL_XGMII_EN);
1522 cpsw_sl_ctl_clr(port->slave.mac_sl,
1523 CPSW_SL_CTL_XGIG | CPSW_SL_CTL_XGMII_EN);
1526 writel(AM65_CPSW_SGMII_CONTROL_MR_AN_ENABLE,
1527 port->sgmii_base + AM65_CPSW_SGMII_CONTROL_REG);
1531 static void am65_cpsw_nuss_mac_link_down(struct phylink_config *config, unsigned int mode,
1532 phy_interface_t interface)
1534 struct am65_cpsw_slave_data *slave = container_of(config, struct am65_cpsw_slave_data,
1536 struct am65_cpsw_port *port = container_of(slave, struct am65_cpsw_port, slave);
1537 struct am65_cpsw_common *common = port->common;
1538 struct net_device *ndev = port->ndev;
1542 /* disable forwarding */
1543 cpsw_ale_control_set(common->ale, port->port_id, ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
1545 cpsw_sl_ctl_set(port->slave.mac_sl, CPSW_SL_CTL_CMD_IDLE);
1547 tmo = cpsw_sl_wait_for_idle(port->slave.mac_sl, 100);
1548 dev_dbg(common->dev, "down msc_sl %08x tmo %d\n",
1549 cpsw_sl_reg_read(port->slave.mac_sl, CPSW_SL_MACSTATUS), tmo);
1551 /* All the bits that am65_cpsw_nuss_mac_link_up() can possibly set */
1552 mac_control = CPSW_SL_CTL_GMII_EN | CPSW_SL_CTL_GIG | CPSW_SL_CTL_IFCTL_A |
1553 CPSW_SL_CTL_FULLDUPLEX | CPSW_SL_CTL_RX_FLOW_EN | CPSW_SL_CTL_TX_FLOW_EN;
1554 /* If interface mode is RGMII, CPSW_SL_CTL_EXT_EN might have been set for 10 Mbps */
1555 if (phy_interface_mode_is_rgmii(interface))
1556 mac_control |= CPSW_SL_CTL_EXT_EN;
1557 /* Only clear those bits that can be set by am65_cpsw_nuss_mac_link_up() */
1558 cpsw_sl_ctl_clr(port->slave.mac_sl, mac_control);
1560 am65_cpsw_qos_link_down(ndev);
1561 netif_tx_stop_all_queues(ndev);
1564 static void am65_cpsw_nuss_mac_link_up(struct phylink_config *config, struct phy_device *phy,
1565 unsigned int mode, phy_interface_t interface, int speed,
1566 int duplex, bool tx_pause, bool rx_pause)
1568 struct am65_cpsw_slave_data *slave = container_of(config, struct am65_cpsw_slave_data,
1570 struct am65_cpsw_port *port = container_of(slave, struct am65_cpsw_port, slave);
1571 struct am65_cpsw_common *common = port->common;
1572 u32 mac_control = CPSW_SL_CTL_GMII_EN;
1573 struct net_device *ndev = port->ndev;
1575 /* Bring the port out of idle state */
1576 cpsw_sl_ctl_clr(port->slave.mac_sl, CPSW_SL_CTL_CMD_IDLE);
1578 if (speed == SPEED_1000)
1579 mac_control |= CPSW_SL_CTL_GIG;
1580 /* TODO: Verify whether in-band is necessary for 10 Mbps RGMII */
1581 if (speed == SPEED_10 && phy_interface_mode_is_rgmii(interface))
1582 /* Can be used with in band mode only */
1583 mac_control |= CPSW_SL_CTL_EXT_EN;
1584 if (speed == SPEED_100 && interface == PHY_INTERFACE_MODE_RMII)
1585 mac_control |= CPSW_SL_CTL_IFCTL_A;
1587 mac_control |= CPSW_SL_CTL_FULLDUPLEX;
1589 /* rx_pause/tx_pause */
1591 mac_control |= CPSW_SL_CTL_RX_FLOW_EN;
1594 mac_control |= CPSW_SL_CTL_TX_FLOW_EN;
1596 cpsw_sl_ctl_set(port->slave.mac_sl, mac_control);
1598 /* enable forwarding */
1599 cpsw_ale_control_set(common->ale, port->port_id, ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1601 am65_cpsw_qos_link_up(ndev, speed);
1602 netif_tx_wake_all_queues(ndev);
1605 static const struct phylink_mac_ops am65_cpsw_phylink_mac_ops = {
1606 .mac_config = am65_cpsw_nuss_mac_config,
1607 .mac_link_down = am65_cpsw_nuss_mac_link_down,
1608 .mac_link_up = am65_cpsw_nuss_mac_link_up,
1611 static void am65_cpsw_nuss_slave_disable_unused(struct am65_cpsw_port *port)
1613 struct am65_cpsw_common *common = port->common;
1615 if (!port->disabled)
1618 cpsw_ale_control_set(common->ale, port->port_id,
1619 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
1621 cpsw_sl_reset(port->slave.mac_sl, 100);
1622 cpsw_sl_ctl_reset(port->slave.mac_sl);
1625 static void am65_cpsw_nuss_free_tx_chns(void *data)
1627 struct am65_cpsw_common *common = data;
1630 for (i = 0; i < common->tx_ch_num; i++) {
1631 struct am65_cpsw_tx_chn *tx_chn = &common->tx_chns[i];
1633 if (!IS_ERR_OR_NULL(tx_chn->desc_pool))
1634 k3_cppi_desc_pool_destroy(tx_chn->desc_pool);
1636 if (!IS_ERR_OR_NULL(tx_chn->tx_chn))
1637 k3_udma_glue_release_tx_chn(tx_chn->tx_chn);
1639 memset(tx_chn, 0, sizeof(*tx_chn));
1643 void am65_cpsw_nuss_remove_tx_chns(struct am65_cpsw_common *common)
1645 struct device *dev = common->dev;
1648 devm_remove_action(dev, am65_cpsw_nuss_free_tx_chns, common);
1650 common->tx_ch_rate_msk = 0;
1651 for (i = 0; i < common->tx_ch_num; i++) {
1652 struct am65_cpsw_tx_chn *tx_chn = &common->tx_chns[i];
1655 devm_free_irq(dev, tx_chn->irq, tx_chn);
1657 netif_napi_del(&tx_chn->napi_tx);
1659 if (!IS_ERR_OR_NULL(tx_chn->desc_pool))
1660 k3_cppi_desc_pool_destroy(tx_chn->desc_pool);
1662 if (!IS_ERR_OR_NULL(tx_chn->tx_chn))
1663 k3_udma_glue_release_tx_chn(tx_chn->tx_chn);
1665 memset(tx_chn, 0, sizeof(*tx_chn));
1669 static int am65_cpsw_nuss_ndev_add_tx_napi(struct am65_cpsw_common *common)
1671 struct device *dev = common->dev;
1674 for (i = 0; i < common->tx_ch_num; i++) {
1675 struct am65_cpsw_tx_chn *tx_chn = &common->tx_chns[i];
1677 netif_napi_add_tx(common->dma_ndev, &tx_chn->napi_tx,
1678 am65_cpsw_nuss_tx_poll);
1680 ret = devm_request_irq(dev, tx_chn->irq,
1681 am65_cpsw_nuss_tx_irq,
1683 tx_chn->tx_chn_name, tx_chn);
1685 dev_err(dev, "failure requesting tx%u irq %u, %d\n",
1686 tx_chn->id, tx_chn->irq, ret);
1695 static int am65_cpsw_nuss_init_tx_chns(struct am65_cpsw_common *common)
1697 u32 max_desc_num = ALIGN(AM65_CPSW_MAX_TX_DESC, MAX_SKB_FRAGS);
1698 struct k3_udma_glue_tx_channel_cfg tx_cfg = { 0 };
1699 struct device *dev = common->dev;
1700 struct k3_ring_cfg ring_cfg = {
1701 .elm_size = K3_RINGACC_RING_ELSIZE_8,
1702 .mode = K3_RINGACC_RING_MODE_RING,
1708 hdesc_size = cppi5_hdesc_calc_size(true, AM65_CPSW_NAV_PS_DATA_SIZE,
1709 AM65_CPSW_NAV_SW_DATA_SIZE);
1711 tx_cfg.swdata_size = AM65_CPSW_NAV_SW_DATA_SIZE;
1712 tx_cfg.tx_cfg = ring_cfg;
1713 tx_cfg.txcq_cfg = ring_cfg;
1714 tx_cfg.tx_cfg.size = max_desc_num;
1715 tx_cfg.txcq_cfg.size = max_desc_num;
1717 for (i = 0; i < common->tx_ch_num; i++) {
1718 struct am65_cpsw_tx_chn *tx_chn = &common->tx_chns[i];
1720 snprintf(tx_chn->tx_chn_name,
1721 sizeof(tx_chn->tx_chn_name), "tx%d", i);
1723 spin_lock_init(&tx_chn->lock);
1724 tx_chn->common = common;
1726 tx_chn->descs_num = max_desc_num;
1729 k3_udma_glue_request_tx_chn(dev,
1730 tx_chn->tx_chn_name,
1732 if (IS_ERR(tx_chn->tx_chn)) {
1733 ret = dev_err_probe(dev, PTR_ERR(tx_chn->tx_chn),
1734 "Failed to request tx dma channel\n");
1737 tx_chn->dma_dev = k3_udma_glue_tx_get_dma_device(tx_chn->tx_chn);
1739 tx_chn->desc_pool = k3_cppi_desc_pool_create_name(tx_chn->dma_dev,
1742 tx_chn->tx_chn_name);
1743 if (IS_ERR(tx_chn->desc_pool)) {
1744 ret = PTR_ERR(tx_chn->desc_pool);
1745 dev_err(dev, "Failed to create poll %d\n", ret);
1749 tx_chn->irq = k3_udma_glue_tx_get_irq(tx_chn->tx_chn);
1750 if (tx_chn->irq <= 0) {
1751 dev_err(dev, "Failed to get tx dma irq %d\n",
1756 snprintf(tx_chn->tx_chn_name,
1757 sizeof(tx_chn->tx_chn_name), "%s-tx%d",
1758 dev_name(dev), tx_chn->id);
1761 ret = am65_cpsw_nuss_ndev_add_tx_napi(common);
1763 dev_err(dev, "Failed to add tx NAPI %d\n", ret);
1768 i = devm_add_action(dev, am65_cpsw_nuss_free_tx_chns, common);
1770 dev_err(dev, "Failed to add free_tx_chns action %d\n", i);
1777 static void am65_cpsw_nuss_free_rx_chns(void *data)
1779 struct am65_cpsw_common *common = data;
1780 struct am65_cpsw_rx_chn *rx_chn;
1782 rx_chn = &common->rx_chns;
1784 if (!IS_ERR_OR_NULL(rx_chn->desc_pool))
1785 k3_cppi_desc_pool_destroy(rx_chn->desc_pool);
1787 if (!IS_ERR_OR_NULL(rx_chn->rx_chn))
1788 k3_udma_glue_release_rx_chn(rx_chn->rx_chn);
1791 static void am65_cpsw_nuss_remove_rx_chns(void *data)
1793 struct am65_cpsw_common *common = data;
1794 struct am65_cpsw_rx_chn *rx_chn;
1795 struct device *dev = common->dev;
1797 rx_chn = &common->rx_chns;
1798 devm_remove_action(dev, am65_cpsw_nuss_free_rx_chns, common);
1800 if (!(rx_chn->irq < 0))
1801 devm_free_irq(dev, rx_chn->irq, common);
1803 netif_napi_del(&common->napi_rx);
1805 if (!IS_ERR_OR_NULL(rx_chn->desc_pool))
1806 k3_cppi_desc_pool_destroy(rx_chn->desc_pool);
1808 if (!IS_ERR_OR_NULL(rx_chn->rx_chn))
1809 k3_udma_glue_release_rx_chn(rx_chn->rx_chn);
1811 common->rx_flow_id_base = -1;
1814 static int am65_cpsw_nuss_init_rx_chns(struct am65_cpsw_common *common)
1816 struct am65_cpsw_rx_chn *rx_chn = &common->rx_chns;
1817 struct k3_udma_glue_rx_channel_cfg rx_cfg = { 0 };
1818 u32 max_desc_num = AM65_CPSW_MAX_RX_DESC;
1819 struct device *dev = common->dev;
1824 hdesc_size = cppi5_hdesc_calc_size(true, AM65_CPSW_NAV_PS_DATA_SIZE,
1825 AM65_CPSW_NAV_SW_DATA_SIZE);
1827 rx_cfg.swdata_size = AM65_CPSW_NAV_SW_DATA_SIZE;
1828 rx_cfg.flow_id_num = AM65_CPSW_MAX_RX_FLOWS;
1829 rx_cfg.flow_id_base = common->rx_flow_id_base;
1831 /* init all flows */
1833 rx_chn->descs_num = max_desc_num;
1835 rx_chn->rx_chn = k3_udma_glue_request_rx_chn(dev, "rx", &rx_cfg);
1836 if (IS_ERR(rx_chn->rx_chn)) {
1837 ret = dev_err_probe(dev, PTR_ERR(rx_chn->rx_chn),
1838 "Failed to request rx dma channel\n");
1841 rx_chn->dma_dev = k3_udma_glue_rx_get_dma_device(rx_chn->rx_chn);
1843 rx_chn->desc_pool = k3_cppi_desc_pool_create_name(rx_chn->dma_dev,
1846 if (IS_ERR(rx_chn->desc_pool)) {
1847 ret = PTR_ERR(rx_chn->desc_pool);
1848 dev_err(dev, "Failed to create rx poll %d\n", ret);
1852 common->rx_flow_id_base =
1853 k3_udma_glue_rx_get_flow_id_base(rx_chn->rx_chn);
1854 dev_info(dev, "set new flow-id-base %u\n", common->rx_flow_id_base);
1856 fdqring_id = K3_RINGACC_RING_ID_ANY;
1857 for (i = 0; i < rx_cfg.flow_id_num; i++) {
1858 struct k3_ring_cfg rxring_cfg = {
1859 .elm_size = K3_RINGACC_RING_ELSIZE_8,
1860 .mode = K3_RINGACC_RING_MODE_RING,
1863 struct k3_ring_cfg fdqring_cfg = {
1864 .elm_size = K3_RINGACC_RING_ELSIZE_8,
1865 .flags = K3_RINGACC_RING_SHARED,
1867 struct k3_udma_glue_rx_flow_cfg rx_flow_cfg = {
1868 .rx_cfg = rxring_cfg,
1869 .rxfdq_cfg = fdqring_cfg,
1870 .ring_rxq_id = K3_RINGACC_RING_ID_ANY,
1872 K3_UDMA_GLUE_SRC_TAG_LO_USE_REMOTE_SRC_TAG,
1875 rx_flow_cfg.ring_rxfdq0_id = fdqring_id;
1876 rx_flow_cfg.rx_cfg.size = max_desc_num;
1877 rx_flow_cfg.rxfdq_cfg.size = max_desc_num;
1878 rx_flow_cfg.rxfdq_cfg.mode = common->pdata.fdqring_mode;
1880 ret = k3_udma_glue_rx_flow_init(rx_chn->rx_chn,
1883 dev_err(dev, "Failed to init rx flow%d %d\n", i, ret);
1888 k3_udma_glue_rx_flow_get_fdq_id(rx_chn->rx_chn,
1891 rx_chn->irq = k3_udma_glue_rx_get_irq(rx_chn->rx_chn, i);
1893 if (rx_chn->irq <= 0) {
1894 dev_err(dev, "Failed to get rx dma irq %d\n",
1901 netif_napi_add(common->dma_ndev, &common->napi_rx,
1902 am65_cpsw_nuss_rx_poll);
1904 ret = devm_request_irq(dev, rx_chn->irq,
1905 am65_cpsw_nuss_rx_irq,
1906 IRQF_TRIGGER_HIGH, dev_name(dev), common);
1908 dev_err(dev, "failure requesting rx irq %u, %d\n",
1914 i = devm_add_action(dev, am65_cpsw_nuss_free_rx_chns, common);
1916 dev_err(dev, "Failed to add free_rx_chns action %d\n", i);
1923 static int am65_cpsw_nuss_init_host_p(struct am65_cpsw_common *common)
1925 struct am65_cpsw_host *host_p = am65_common_get_host(common);
1927 host_p->common = common;
1928 host_p->port_base = common->cpsw_base + AM65_CPSW_NU_PORTS_BASE;
1929 host_p->stat_base = common->cpsw_base + AM65_CPSW_NU_STATS_BASE;
1934 static int am65_cpsw_am654_get_efuse_macid(struct device_node *of_node,
1935 int slave, u8 *mac_addr)
1937 u32 mac_lo, mac_hi, offset;
1938 struct regmap *syscon;
1941 syscon = syscon_regmap_lookup_by_phandle(of_node, "ti,syscon-efuse");
1942 if (IS_ERR(syscon)) {
1943 if (PTR_ERR(syscon) == -ENODEV)
1945 return PTR_ERR(syscon);
1948 ret = of_property_read_u32_index(of_node, "ti,syscon-efuse", 1,
1953 regmap_read(syscon, offset, &mac_lo);
1954 regmap_read(syscon, offset + 4, &mac_hi);
1956 mac_addr[0] = (mac_hi >> 8) & 0xff;
1957 mac_addr[1] = mac_hi & 0xff;
1958 mac_addr[2] = (mac_lo >> 24) & 0xff;
1959 mac_addr[3] = (mac_lo >> 16) & 0xff;
1960 mac_addr[4] = (mac_lo >> 8) & 0xff;
1961 mac_addr[5] = mac_lo & 0xff;
1966 static int am65_cpsw_init_cpts(struct am65_cpsw_common *common)
1968 struct device *dev = common->dev;
1969 struct device_node *node;
1970 struct am65_cpts *cpts;
1971 void __iomem *reg_base;
1973 if (!IS_ENABLED(CONFIG_TI_K3_AM65_CPTS))
1976 node = of_get_child_by_name(dev->of_node, "cpts");
1978 dev_err(dev, "%s cpts not found\n", __func__);
1982 reg_base = common->cpsw_base + AM65_CPSW_NU_CPTS_BASE;
1983 cpts = am65_cpts_create(dev, reg_base, node);
1985 int ret = PTR_ERR(cpts);
1988 dev_err(dev, "cpts create err %d\n", ret);
1991 common->cpts = cpts;
1992 /* Forbid PM runtime if CPTS is running.
1993 * K3 CPSWxG modules may completely lose context during ON->OFF
1994 * transitions depending on integration.
1995 * AM65x/J721E MCU CPSW2G: false
1996 * J721E MAIN_CPSW9G: true
1998 pm_runtime_forbid(dev);
2003 static int am65_cpsw_nuss_init_slave_ports(struct am65_cpsw_common *common)
2005 struct device_node *node, *port_np;
2006 struct device *dev = common->dev;
2009 node = of_get_child_by_name(dev->of_node, "ethernet-ports");
2013 for_each_child_of_node(node, port_np) {
2014 struct am65_cpsw_port *port;
2017 /* it is not a slave port node, continue */
2018 if (strcmp(port_np->name, "port"))
2021 ret = of_property_read_u32(port_np, "reg", &port_id);
2023 dev_err(dev, "%pOF error reading port_id %d\n",
2028 if (!port_id || port_id > common->port_num) {
2029 dev_err(dev, "%pOF has invalid port_id %u %s\n",
2030 port_np, port_id, port_np->name);
2035 port = am65_common_get_port(common, port_id);
2036 port->port_id = port_id;
2037 port->common = common;
2038 port->port_base = common->cpsw_base + AM65_CPSW_NU_PORTS_BASE +
2039 AM65_CPSW_NU_PORTS_OFFSET * (port_id);
2040 if (common->pdata.extra_modes)
2041 port->sgmii_base = common->ss_base + AM65_CPSW_SGMII_BASE * (port_id);
2042 port->stat_base = common->cpsw_base + AM65_CPSW_NU_STATS_BASE +
2043 (AM65_CPSW_NU_STATS_PORT_OFFSET * port_id);
2044 port->name = of_get_property(port_np, "label", NULL);
2045 port->fetch_ram_base =
2046 common->cpsw_base + AM65_CPSW_NU_FRAM_BASE +
2047 (AM65_CPSW_NU_FRAM_PORT_OFFSET * (port_id - 1));
2049 port->slave.mac_sl = cpsw_sl_get("am65", dev, port->port_base);
2050 if (IS_ERR(port->slave.mac_sl)) {
2051 ret = PTR_ERR(port->slave.mac_sl);
2055 port->disabled = !of_device_is_available(port_np);
2056 if (port->disabled) {
2057 common->disabled_ports_mask |= BIT(port->port_id);
2061 port->slave.ifphy = devm_of_phy_get(dev, port_np, NULL);
2062 if (IS_ERR(port->slave.ifphy)) {
2063 ret = PTR_ERR(port->slave.ifphy);
2064 dev_err(dev, "%pOF error retrieving port phy: %d\n",
2069 /* Initialize the Serdes PHY for the port */
2070 ret = am65_cpsw_init_serdes_phy(dev, port_np, port);
2074 port->slave.mac_only =
2075 of_property_read_bool(port_np, "ti,mac-only");
2077 /* get phy/link info */
2078 port->slave.phy_node = port_np;
2079 ret = of_get_phy_mode(port_np, &port->slave.phy_if);
2081 dev_err(dev, "%pOF read phy-mode err %d\n",
2086 ret = phy_set_mode_ext(port->slave.ifphy, PHY_MODE_ETHERNET, port->slave.phy_if);
2090 ret = of_get_mac_address(port_np, port->slave.mac_addr);
2092 am65_cpsw_am654_get_efuse_macid(port_np,
2094 port->slave.mac_addr);
2095 if (!is_valid_ether_addr(port->slave.mac_addr)) {
2096 eth_random_addr(port->slave.mac_addr);
2097 dev_err(dev, "Use random MAC address\n");
2103 /* is there at least one ext.port */
2104 if (!(~common->disabled_ports_mask & GENMASK(common->port_num, 1))) {
2105 dev_err(dev, "No Ext. port are available\n");
2112 of_node_put(port_np);
2117 static void am65_cpsw_pcpu_stats_free(void *data)
2119 struct am65_cpsw_ndev_stats __percpu *stats = data;
2124 static void am65_cpsw_nuss_phylink_cleanup(struct am65_cpsw_common *common)
2126 struct am65_cpsw_port *port;
2129 for (i = 0; i < common->port_num; i++) {
2130 port = &common->ports[i];
2131 if (port->slave.phylink)
2132 phylink_destroy(port->slave.phylink);
2137 am65_cpsw_nuss_init_port_ndev(struct am65_cpsw_common *common, u32 port_idx)
2139 struct am65_cpsw_ndev_priv *ndev_priv;
2140 struct device *dev = common->dev;
2141 struct am65_cpsw_port *port;
2142 struct phylink *phylink;
2145 port = &common->ports[port_idx];
2151 port->ndev = devm_alloc_etherdev_mqs(common->dev,
2152 sizeof(struct am65_cpsw_ndev_priv),
2153 AM65_CPSW_MAX_TX_QUEUES,
2154 AM65_CPSW_MAX_RX_QUEUES);
2156 dev_err(dev, "error allocating slave net_device %u\n",
2161 ndev_priv = netdev_priv(port->ndev);
2162 ndev_priv->port = port;
2163 ndev_priv->msg_enable = AM65_CPSW_DEBUG;
2164 SET_NETDEV_DEV(port->ndev, dev);
2166 eth_hw_addr_set(port->ndev, port->slave.mac_addr);
2168 port->ndev->min_mtu = AM65_CPSW_MIN_PACKET_SIZE;
2169 port->ndev->max_mtu = AM65_CPSW_MAX_PACKET_SIZE;
2170 port->ndev->hw_features = NETIF_F_SG |
2174 port->ndev->features = port->ndev->hw_features |
2175 NETIF_F_HW_VLAN_CTAG_FILTER;
2176 port->ndev->vlan_features |= NETIF_F_SG;
2177 port->ndev->netdev_ops = &am65_cpsw_nuss_netdev_ops;
2178 port->ndev->ethtool_ops = &am65_cpsw_ethtool_ops_slave;
2180 /* Configuring Phylink */
2181 port->slave.phylink_config.dev = &port->ndev->dev;
2182 port->slave.phylink_config.type = PHYLINK_NETDEV;
2183 port->slave.phylink_config.mac_capabilities = MAC_SYM_PAUSE | MAC_10 | MAC_100 |
2184 MAC_1000FD | MAC_5000FD;
2185 port->slave.phylink_config.mac_managed_pm = true; /* MAC does PM */
2187 switch (port->slave.phy_if) {
2188 case PHY_INTERFACE_MODE_RGMII:
2189 case PHY_INTERFACE_MODE_RGMII_ID:
2190 case PHY_INTERFACE_MODE_RGMII_RXID:
2191 case PHY_INTERFACE_MODE_RGMII_TXID:
2192 phy_interface_set_rgmii(port->slave.phylink_config.supported_interfaces);
2195 case PHY_INTERFACE_MODE_RMII:
2196 __set_bit(PHY_INTERFACE_MODE_RMII,
2197 port->slave.phylink_config.supported_interfaces);
2200 case PHY_INTERFACE_MODE_QSGMII:
2201 case PHY_INTERFACE_MODE_SGMII:
2202 case PHY_INTERFACE_MODE_USXGMII:
2203 if (common->pdata.extra_modes & BIT(port->slave.phy_if)) {
2204 __set_bit(port->slave.phy_if,
2205 port->slave.phylink_config.supported_interfaces);
2207 dev_err(dev, "selected phy-mode is not supported\n");
2213 dev_err(dev, "selected phy-mode is not supported\n");
2217 phylink = phylink_create(&port->slave.phylink_config,
2218 of_node_to_fwnode(port->slave.phy_node),
2220 &am65_cpsw_phylink_mac_ops);
2221 if (IS_ERR(phylink))
2222 return PTR_ERR(phylink);
2224 port->slave.phylink = phylink;
2226 /* Disable TX checksum offload by default due to HW bug */
2227 if (common->pdata.quirks & AM65_CPSW_QUIRK_I2027_NO_TX_CSUM)
2228 port->ndev->features &= ~NETIF_F_HW_CSUM;
2230 ndev_priv->stats = netdev_alloc_pcpu_stats(struct am65_cpsw_ndev_stats);
2231 if (!ndev_priv->stats)
2234 ret = devm_add_action_or_reset(dev, am65_cpsw_pcpu_stats_free,
2237 dev_err(dev, "failed to add percpu stat free action %d\n", ret);
2239 if (!common->dma_ndev)
2240 common->dma_ndev = port->ndev;
2245 static int am65_cpsw_nuss_init_ndevs(struct am65_cpsw_common *common)
2250 for (i = 0; i < common->port_num; i++) {
2251 ret = am65_cpsw_nuss_init_port_ndev(common, i);
2259 static void am65_cpsw_nuss_cleanup_ndev(struct am65_cpsw_common *common)
2261 struct am65_cpsw_port *port;
2264 for (i = 0; i < common->port_num; i++) {
2265 port = &common->ports[i];
2266 if (port->ndev && port->ndev->reg_state == NETREG_REGISTERED)
2267 unregister_netdev(port->ndev);
2271 static void am65_cpsw_port_offload_fwd_mark_update(struct am65_cpsw_common *common)
2276 if (common->br_members == (GENMASK(common->port_num, 1) & ~common->disabled_ports_mask))
2279 dev_dbg(common->dev, "set offload_fwd_mark %d\n", set_val);
2281 for (i = 1; i <= common->port_num; i++) {
2282 struct am65_cpsw_port *port = am65_common_get_port(common, i);
2283 struct am65_cpsw_ndev_priv *priv;
2288 priv = am65_ndev_to_priv(port->ndev);
2289 priv->offload_fwd_mark = set_val;
2293 bool am65_cpsw_port_dev_check(const struct net_device *ndev)
2295 if (ndev->netdev_ops == &am65_cpsw_nuss_netdev_ops) {
2296 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
2298 return !common->is_emac_mode;
2304 static int am65_cpsw_netdevice_port_link(struct net_device *ndev,
2305 struct net_device *br_ndev,
2306 struct netlink_ext_ack *extack)
2308 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
2309 struct am65_cpsw_ndev_priv *priv = am65_ndev_to_priv(ndev);
2312 if (!common->br_members) {
2313 common->hw_bridge_dev = br_ndev;
2315 /* This is adding the port to a second bridge, this is
2318 if (common->hw_bridge_dev != br_ndev)
2322 err = switchdev_bridge_port_offload(ndev, ndev, NULL, NULL, NULL,
2327 common->br_members |= BIT(priv->port->port_id);
2329 am65_cpsw_port_offload_fwd_mark_update(common);
2334 static void am65_cpsw_netdevice_port_unlink(struct net_device *ndev)
2336 struct am65_cpsw_common *common = am65_ndev_to_common(ndev);
2337 struct am65_cpsw_ndev_priv *priv = am65_ndev_to_priv(ndev);
2339 switchdev_bridge_port_unoffload(ndev, NULL, NULL, NULL);
2341 common->br_members &= ~BIT(priv->port->port_id);
2343 am65_cpsw_port_offload_fwd_mark_update(common);
2345 if (!common->br_members)
2346 common->hw_bridge_dev = NULL;
2349 /* netdev notifier */
2350 static int am65_cpsw_netdevice_event(struct notifier_block *unused,
2351 unsigned long event, void *ptr)
2353 struct netlink_ext_ack *extack = netdev_notifier_info_to_extack(ptr);
2354 struct net_device *ndev = netdev_notifier_info_to_dev(ptr);
2355 struct netdev_notifier_changeupper_info *info;
2356 int ret = NOTIFY_DONE;
2358 if (!am65_cpsw_port_dev_check(ndev))
2362 case NETDEV_CHANGEUPPER:
2365 if (netif_is_bridge_master(info->upper_dev)) {
2367 ret = am65_cpsw_netdevice_port_link(ndev,
2371 am65_cpsw_netdevice_port_unlink(ndev);
2378 return notifier_from_errno(ret);
2381 static int am65_cpsw_register_notifiers(struct am65_cpsw_common *cpsw)
2385 if (AM65_CPSW_IS_CPSW2G(cpsw) ||
2386 !IS_REACHABLE(CONFIG_TI_K3_AM65_CPSW_SWITCHDEV))
2389 cpsw->am65_cpsw_netdevice_nb.notifier_call = &am65_cpsw_netdevice_event;
2390 ret = register_netdevice_notifier(&cpsw->am65_cpsw_netdevice_nb);
2392 dev_err(cpsw->dev, "can't register netdevice notifier\n");
2396 ret = am65_cpsw_switchdev_register_notifiers(cpsw);
2398 unregister_netdevice_notifier(&cpsw->am65_cpsw_netdevice_nb);
2403 static void am65_cpsw_unregister_notifiers(struct am65_cpsw_common *cpsw)
2405 if (AM65_CPSW_IS_CPSW2G(cpsw) ||
2406 !IS_REACHABLE(CONFIG_TI_K3_AM65_CPSW_SWITCHDEV))
2409 am65_cpsw_switchdev_unregister_notifiers(cpsw);
2410 unregister_netdevice_notifier(&cpsw->am65_cpsw_netdevice_nb);
2413 static const struct devlink_ops am65_cpsw_devlink_ops = {};
2415 static void am65_cpsw_init_stp_ale_entry(struct am65_cpsw_common *cpsw)
2417 cpsw_ale_add_mcast(cpsw->ale, eth_stp_addr, ALE_PORT_HOST, ALE_SUPER, 0,
2418 ALE_MCAST_BLOCK_LEARN_FWD);
2421 static void am65_cpsw_init_host_port_switch(struct am65_cpsw_common *common)
2423 struct am65_cpsw_host *host = am65_common_get_host(common);
2425 writel(common->default_vlan, host->port_base + AM65_CPSW_PORT_VLAN_REG_OFFSET);
2427 am65_cpsw_init_stp_ale_entry(common);
2429 cpsw_ale_control_set(common->ale, HOST_PORT_NUM, ALE_P0_UNI_FLOOD, 1);
2430 dev_dbg(common->dev, "Set P0_UNI_FLOOD\n");
2431 cpsw_ale_control_set(common->ale, HOST_PORT_NUM, ALE_PORT_NOLEARN, 0);
2434 static void am65_cpsw_init_host_port_emac(struct am65_cpsw_common *common)
2436 struct am65_cpsw_host *host = am65_common_get_host(common);
2438 writel(0, host->port_base + AM65_CPSW_PORT_VLAN_REG_OFFSET);
2440 cpsw_ale_control_set(common->ale, HOST_PORT_NUM, ALE_P0_UNI_FLOOD, 0);
2441 dev_dbg(common->dev, "unset P0_UNI_FLOOD\n");
2443 /* learning make no sense in multi-mac mode */
2444 cpsw_ale_control_set(common->ale, HOST_PORT_NUM, ALE_PORT_NOLEARN, 1);
2447 static int am65_cpsw_dl_switch_mode_get(struct devlink *dl, u32 id,
2448 struct devlink_param_gset_ctx *ctx)
2450 struct am65_cpsw_devlink *dl_priv = devlink_priv(dl);
2451 struct am65_cpsw_common *common = dl_priv->common;
2453 dev_dbg(common->dev, "%s id:%u\n", __func__, id);
2455 if (id != AM65_CPSW_DL_PARAM_SWITCH_MODE)
2458 ctx->val.vbool = !common->is_emac_mode;
2463 static void am65_cpsw_init_port_emac_ale(struct am65_cpsw_port *port)
2465 struct am65_cpsw_slave_data *slave = &port->slave;
2466 struct am65_cpsw_common *common = port->common;
2469 writel(slave->port_vlan, port->port_base + AM65_CPSW_PORT_VLAN_REG_OFFSET);
2471 if (slave->mac_only)
2472 /* enable mac-only mode on port */
2473 cpsw_ale_control_set(common->ale, port->port_id,
2474 ALE_PORT_MACONLY, 1);
2476 cpsw_ale_control_set(common->ale, port->port_id, ALE_PORT_NOLEARN, 1);
2478 port_mask = BIT(port->port_id) | ALE_PORT_HOST;
2480 cpsw_ale_add_ucast(common->ale, port->ndev->dev_addr,
2481 HOST_PORT_NUM, ALE_SECURE, slave->port_vlan);
2482 cpsw_ale_add_mcast(common->ale, port->ndev->broadcast,
2483 port_mask, ALE_VLAN, slave->port_vlan, ALE_MCAST_FWD_2);
2486 static void am65_cpsw_init_port_switch_ale(struct am65_cpsw_port *port)
2488 struct am65_cpsw_slave_data *slave = &port->slave;
2489 struct am65_cpsw_common *cpsw = port->common;
2492 cpsw_ale_control_set(cpsw->ale, port->port_id,
2493 ALE_PORT_NOLEARN, 0);
2495 cpsw_ale_add_ucast(cpsw->ale, port->ndev->dev_addr,
2496 HOST_PORT_NUM, ALE_SECURE | ALE_BLOCKED | ALE_VLAN,
2499 port_mask = BIT(port->port_id) | ALE_PORT_HOST;
2501 cpsw_ale_add_mcast(cpsw->ale, port->ndev->broadcast,
2502 port_mask, ALE_VLAN, slave->port_vlan,
2505 writel(slave->port_vlan, port->port_base + AM65_CPSW_PORT_VLAN_REG_OFFSET);
2507 cpsw_ale_control_set(cpsw->ale, port->port_id,
2508 ALE_PORT_MACONLY, 0);
2511 static int am65_cpsw_dl_switch_mode_set(struct devlink *dl, u32 id,
2512 struct devlink_param_gset_ctx *ctx)
2514 struct am65_cpsw_devlink *dl_priv = devlink_priv(dl);
2515 struct am65_cpsw_common *cpsw = dl_priv->common;
2516 bool switch_en = ctx->val.vbool;
2517 bool if_running = false;
2520 dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id);
2522 if (id != AM65_CPSW_DL_PARAM_SWITCH_MODE)
2525 if (switch_en == !cpsw->is_emac_mode)
2528 if (!switch_en && cpsw->br_members) {
2529 dev_err(cpsw->dev, "Remove ports from bridge before disabling switch mode\n");
2535 cpsw->is_emac_mode = !switch_en;
2537 for (i = 0; i < cpsw->port_num; i++) {
2538 struct net_device *sl_ndev = cpsw->ports[i].ndev;
2540 if (!sl_ndev || !netif_running(sl_ndev))
2547 /* all ndevs are down */
2548 for (i = 0; i < cpsw->port_num; i++) {
2549 struct net_device *sl_ndev = cpsw->ports[i].ndev;
2550 struct am65_cpsw_slave_data *slave;
2555 slave = am65_ndev_to_slave(sl_ndev);
2557 slave->port_vlan = cpsw->default_vlan;
2559 slave->port_vlan = 0;
2565 cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 1);
2566 /* clean up ALE table */
2567 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_CLEAR, 1);
2568 cpsw_ale_control_get(cpsw->ale, HOST_PORT_NUM, ALE_AGEOUT);
2571 dev_info(cpsw->dev, "Enable switch mode\n");
2573 am65_cpsw_init_host_port_switch(cpsw);
2575 for (i = 0; i < cpsw->port_num; i++) {
2576 struct net_device *sl_ndev = cpsw->ports[i].ndev;
2577 struct am65_cpsw_slave_data *slave;
2578 struct am65_cpsw_port *port;
2583 port = am65_ndev_to_port(sl_ndev);
2584 slave = am65_ndev_to_slave(sl_ndev);
2585 slave->port_vlan = cpsw->default_vlan;
2587 if (netif_running(sl_ndev))
2588 am65_cpsw_init_port_switch_ale(port);
2592 dev_info(cpsw->dev, "Disable switch mode\n");
2594 am65_cpsw_init_host_port_emac(cpsw);
2596 for (i = 0; i < cpsw->port_num; i++) {
2597 struct net_device *sl_ndev = cpsw->ports[i].ndev;
2598 struct am65_cpsw_port *port;
2603 port = am65_ndev_to_port(sl_ndev);
2604 port->slave.port_vlan = 0;
2605 if (netif_running(sl_ndev))
2606 am65_cpsw_init_port_emac_ale(port);
2609 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_BYPASS, 0);
2616 static const struct devlink_param am65_cpsw_devlink_params[] = {
2617 DEVLINK_PARAM_DRIVER(AM65_CPSW_DL_PARAM_SWITCH_MODE, "switch_mode",
2618 DEVLINK_PARAM_TYPE_BOOL,
2619 BIT(DEVLINK_PARAM_CMODE_RUNTIME),
2620 am65_cpsw_dl_switch_mode_get,
2621 am65_cpsw_dl_switch_mode_set, NULL),
2624 static int am65_cpsw_nuss_register_devlink(struct am65_cpsw_common *common)
2626 struct devlink_port_attrs attrs = {};
2627 struct am65_cpsw_devlink *dl_priv;
2628 struct device *dev = common->dev;
2629 struct devlink_port *dl_port;
2630 struct am65_cpsw_port *port;
2635 devlink_alloc(&am65_cpsw_devlink_ops, sizeof(*dl_priv), dev);
2636 if (!common->devlink)
2639 dl_priv = devlink_priv(common->devlink);
2640 dl_priv->common = common;
2642 /* Provide devlink hook to switch mode when multiple external ports
2643 * are present NUSS switchdev driver is enabled.
2645 if (!AM65_CPSW_IS_CPSW2G(common) &&
2646 IS_ENABLED(CONFIG_TI_K3_AM65_CPSW_SWITCHDEV)) {
2647 ret = devlink_params_register(common->devlink,
2648 am65_cpsw_devlink_params,
2649 ARRAY_SIZE(am65_cpsw_devlink_params));
2651 dev_err(dev, "devlink params reg fail ret:%d\n", ret);
2656 for (i = 1; i <= common->port_num; i++) {
2657 port = am65_common_get_port(common, i);
2658 dl_port = &port->devlink_port;
2661 attrs.flavour = DEVLINK_PORT_FLAVOUR_PHYSICAL;
2663 attrs.flavour = DEVLINK_PORT_FLAVOUR_UNUSED;
2664 attrs.phys.port_number = port->port_id;
2665 attrs.switch_id.id_len = sizeof(resource_size_t);
2666 memcpy(attrs.switch_id.id, common->switch_id, attrs.switch_id.id_len);
2667 devlink_port_attrs_set(dl_port, &attrs);
2669 ret = devlink_port_register(common->devlink, dl_port, port->port_id);
2671 dev_err(dev, "devlink_port reg fail for port %d, ret:%d\n",
2672 port->port_id, ret);
2676 devlink_register(common->devlink);
2680 for (i = i - 1; i >= 1; i--) {
2681 port = am65_common_get_port(common, i);
2682 dl_port = &port->devlink_port;
2684 devlink_port_unregister(dl_port);
2687 devlink_free(common->devlink);
2691 static void am65_cpsw_unregister_devlink(struct am65_cpsw_common *common)
2693 struct devlink_port *dl_port;
2694 struct am65_cpsw_port *port;
2697 devlink_unregister(common->devlink);
2699 for (i = 1; i <= common->port_num; i++) {
2700 port = am65_common_get_port(common, i);
2701 dl_port = &port->devlink_port;
2703 devlink_port_unregister(dl_port);
2706 if (!AM65_CPSW_IS_CPSW2G(common) &&
2707 IS_ENABLED(CONFIG_TI_K3_AM65_CPSW_SWITCHDEV))
2708 devlink_params_unregister(common->devlink,
2709 am65_cpsw_devlink_params,
2710 ARRAY_SIZE(am65_cpsw_devlink_params));
2712 devlink_free(common->devlink);
2715 static int am65_cpsw_nuss_register_ndevs(struct am65_cpsw_common *common)
2717 struct device *dev = common->dev;
2718 struct am65_cpsw_port *port;
2721 /* init tx channels */
2722 ret = am65_cpsw_nuss_init_tx_chns(common);
2725 ret = am65_cpsw_nuss_init_rx_chns(common);
2729 ret = am65_cpsw_nuss_register_devlink(common);
2733 for (i = 0; i < common->port_num; i++) {
2734 port = &common->ports[i];
2739 SET_NETDEV_DEVLINK_PORT(port->ndev, &port->devlink_port);
2741 ret = register_netdev(port->ndev);
2743 dev_err(dev, "error registering slave net device%i %d\n",
2745 goto err_cleanup_ndev;
2749 ret = am65_cpsw_register_notifiers(common);
2751 goto err_cleanup_ndev;
2753 /* can't auto unregister ndev using devm_add_action() due to
2754 * devres release sequence in DD core for DMA
2760 am65_cpsw_nuss_cleanup_ndev(common);
2761 am65_cpsw_unregister_devlink(common);
2766 int am65_cpsw_nuss_update_tx_chns(struct am65_cpsw_common *common, int num_tx)
2770 common->tx_ch_num = num_tx;
2771 ret = am65_cpsw_nuss_init_tx_chns(common);
2776 struct am65_cpsw_soc_pdata {
2780 static const struct am65_cpsw_soc_pdata am65x_soc_sr2_0 = {
2781 .quirks_dis = AM65_CPSW_QUIRK_I2027_NO_TX_CSUM,
2784 static const struct soc_device_attribute am65_cpsw_socinfo[] = {
2785 { .family = "AM65X",
2786 .revision = "SR2.0",
2787 .data = &am65x_soc_sr2_0
2792 static const struct am65_cpsw_pdata am65x_sr1_0 = {
2793 .quirks = AM65_CPSW_QUIRK_I2027_NO_TX_CSUM,
2794 .ale_dev_id = "am65x-cpsw2g",
2795 .fdqring_mode = K3_RINGACC_RING_MODE_MESSAGE,
2798 static const struct am65_cpsw_pdata j721e_pdata = {
2800 .ale_dev_id = "am65x-cpsw2g",
2801 .fdqring_mode = K3_RINGACC_RING_MODE_MESSAGE,
2804 static const struct am65_cpsw_pdata am64x_cpswxg_pdata = {
2805 .quirks = AM64_CPSW_QUIRK_DMA_RX_TDOWN_IRQ,
2806 .ale_dev_id = "am64-cpswxg",
2807 .fdqring_mode = K3_RINGACC_RING_MODE_RING,
2810 static const struct am65_cpsw_pdata j7200_cpswxg_pdata = {
2812 .ale_dev_id = "am64-cpswxg",
2813 .fdqring_mode = K3_RINGACC_RING_MODE_RING,
2814 .extra_modes = BIT(PHY_INTERFACE_MODE_QSGMII) | BIT(PHY_INTERFACE_MODE_SGMII),
2817 static const struct am65_cpsw_pdata j721e_cpswxg_pdata = {
2819 .ale_dev_id = "am64-cpswxg",
2820 .fdqring_mode = K3_RINGACC_RING_MODE_MESSAGE,
2821 .extra_modes = BIT(PHY_INTERFACE_MODE_QSGMII) | BIT(PHY_INTERFACE_MODE_SGMII),
2824 static const struct am65_cpsw_pdata j784s4_cpswxg_pdata = {
2826 .ale_dev_id = "am64-cpswxg",
2827 .fdqring_mode = K3_RINGACC_RING_MODE_MESSAGE,
2828 .extra_modes = BIT(PHY_INTERFACE_MODE_QSGMII) | BIT(PHY_INTERFACE_MODE_USXGMII),
2831 static const struct of_device_id am65_cpsw_nuss_of_mtable[] = {
2832 { .compatible = "ti,am654-cpsw-nuss", .data = &am65x_sr1_0},
2833 { .compatible = "ti,j721e-cpsw-nuss", .data = &j721e_pdata},
2834 { .compatible = "ti,am642-cpsw-nuss", .data = &am64x_cpswxg_pdata},
2835 { .compatible = "ti,j7200-cpswxg-nuss", .data = &j7200_cpswxg_pdata},
2836 { .compatible = "ti,j721e-cpswxg-nuss", .data = &j721e_cpswxg_pdata},
2837 { .compatible = "ti,j784s4-cpswxg-nuss", .data = &j784s4_cpswxg_pdata},
2840 MODULE_DEVICE_TABLE(of, am65_cpsw_nuss_of_mtable);
2842 static void am65_cpsw_nuss_apply_socinfo(struct am65_cpsw_common *common)
2844 const struct soc_device_attribute *soc;
2846 soc = soc_device_match(am65_cpsw_socinfo);
2847 if (soc && soc->data) {
2848 const struct am65_cpsw_soc_pdata *socdata = soc->data;
2850 /* disable quirks */
2851 common->pdata.quirks &= ~socdata->quirks_dis;
2855 static int am65_cpsw_nuss_probe(struct platform_device *pdev)
2857 struct cpsw_ale_params ale_params = { 0 };
2858 const struct of_device_id *of_id;
2859 struct device *dev = &pdev->dev;
2860 struct am65_cpsw_common *common;
2861 struct device_node *node;
2862 struct resource *res;
2868 common = devm_kzalloc(dev, sizeof(struct am65_cpsw_common), GFP_KERNEL);
2873 of_id = of_match_device(am65_cpsw_nuss_of_mtable, dev);
2876 common->pdata = *(const struct am65_cpsw_pdata *)of_id->data;
2878 am65_cpsw_nuss_apply_socinfo(common);
2880 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cpsw_nuss");
2881 common->ss_base = devm_ioremap_resource(&pdev->dev, res);
2882 if (IS_ERR(common->ss_base))
2883 return PTR_ERR(common->ss_base);
2884 common->cpsw_base = common->ss_base + AM65_CPSW_CPSW_NU_BASE;
2885 /* Use device's physical base address as switch id */
2886 id_temp = cpu_to_be64(res->start);
2887 memcpy(common->switch_id, &id_temp, sizeof(res->start));
2889 node = of_get_child_by_name(dev->of_node, "ethernet-ports");
2892 common->port_num = of_get_child_count(node);
2894 if (common->port_num < 1 || common->port_num > AM65_CPSW_MAX_PORTS)
2897 common->rx_flow_id_base = -1;
2898 init_completion(&common->tdown_complete);
2899 common->tx_ch_num = 1;
2900 common->pf_p0_rx_ptype_rrobin = false;
2901 common->default_vlan = 1;
2903 common->ports = devm_kcalloc(dev, common->port_num,
2904 sizeof(*common->ports),
2909 clk = devm_clk_get(dev, "fck");
2911 return dev_err_probe(dev, PTR_ERR(clk), "getting fck clock\n");
2912 common->bus_freq = clk_get_rate(clk);
2914 pm_runtime_enable(dev);
2915 ret = pm_runtime_resume_and_get(dev);
2917 pm_runtime_disable(dev);
2921 node = of_get_child_by_name(dev->of_node, "mdio");
2923 dev_warn(dev, "MDIO node not found\n");
2924 } else if (of_device_is_available(node)) {
2925 struct platform_device *mdio_pdev;
2927 mdio_pdev = of_platform_device_create(node, NULL, dev);
2933 common->mdio_dev = &mdio_pdev->dev;
2937 am65_cpsw_nuss_get_ver(common);
2939 ret = am65_cpsw_nuss_init_host_p(common);
2943 ret = am65_cpsw_nuss_init_slave_ports(common);
2947 /* init common data */
2948 ale_params.dev = dev;
2949 ale_params.ale_ageout = AM65_CPSW_ALE_AGEOUT_DEFAULT;
2950 ale_params.ale_ports = common->port_num + 1;
2951 ale_params.ale_regs = common->cpsw_base + AM65_CPSW_NU_ALE_BASE;
2952 ale_params.dev_id = common->pdata.ale_dev_id;
2953 ale_params.bus_freq = common->bus_freq;
2955 common->ale = cpsw_ale_create(&ale_params);
2956 if (IS_ERR(common->ale)) {
2957 dev_err(dev, "error initializing ale engine\n");
2958 ret = PTR_ERR(common->ale);
2962 ale_entries = common->ale->params.ale_entries;
2963 common->ale_context = devm_kzalloc(dev,
2964 ale_entries * ALE_ENTRY_WORDS * sizeof(u32),
2966 ret = am65_cpsw_init_cpts(common);
2971 for (i = 0; i < common->port_num; i++)
2972 am65_cpsw_nuss_slave_disable_unused(&common->ports[i]);
2974 dev_set_drvdata(dev, common);
2976 common->is_emac_mode = true;
2978 ret = am65_cpsw_nuss_init_ndevs(common);
2980 goto err_free_phylink;
2982 ret = am65_cpsw_nuss_register_ndevs(common);
2984 goto err_free_phylink;
2986 pm_runtime_put(dev);
2990 am65_cpsw_nuss_phylink_cleanup(common);
2991 am65_cpts_release(common->cpts);
2993 if (common->mdio_dev)
2994 of_platform_device_destroy(common->mdio_dev, NULL);
2996 pm_runtime_put_sync(dev);
2997 pm_runtime_disable(dev);
3001 static int am65_cpsw_nuss_remove(struct platform_device *pdev)
3003 struct device *dev = &pdev->dev;
3004 struct am65_cpsw_common *common;
3007 common = dev_get_drvdata(dev);
3009 ret = pm_runtime_resume_and_get(&pdev->dev);
3013 am65_cpsw_unregister_devlink(common);
3014 am65_cpsw_unregister_notifiers(common);
3016 /* must unregister ndevs here because DD release_driver routine calls
3017 * dma_deconfigure(dev) before devres_release_all(dev)
3019 am65_cpsw_nuss_cleanup_ndev(common);
3020 am65_cpsw_nuss_phylink_cleanup(common);
3021 am65_cpts_release(common->cpts);
3022 am65_cpsw_disable_serdes_phy(common);
3024 if (common->mdio_dev)
3025 of_platform_device_destroy(common->mdio_dev, NULL);
3027 pm_runtime_put_sync(&pdev->dev);
3028 pm_runtime_disable(&pdev->dev);
3032 static int am65_cpsw_nuss_suspend(struct device *dev)
3034 struct am65_cpsw_common *common = dev_get_drvdata(dev);
3035 struct am65_cpsw_host *host_p = am65_common_get_host(common);
3036 struct am65_cpsw_port *port;
3037 struct net_device *ndev;
3040 cpsw_ale_dump(common->ale, common->ale_context);
3041 host_p->vid_context = readl(host_p->port_base + AM65_CPSW_PORT_VLAN_REG_OFFSET);
3042 for (i = 0; i < common->port_num; i++) {
3043 port = &common->ports[i];
3049 port->vid_context = readl(port->port_base + AM65_CPSW_PORT_VLAN_REG_OFFSET);
3050 netif_device_detach(ndev);
3051 if (netif_running(ndev)) {
3053 ret = am65_cpsw_nuss_ndo_slave_stop(ndev);
3056 netdev_err(ndev, "failed to stop: %d", ret);
3062 am65_cpts_suspend(common->cpts);
3064 am65_cpsw_nuss_remove_rx_chns(common);
3065 am65_cpsw_nuss_remove_tx_chns(common);
3070 static int am65_cpsw_nuss_resume(struct device *dev)
3072 struct am65_cpsw_common *common = dev_get_drvdata(dev);
3073 struct am65_cpsw_port *port;
3074 struct net_device *ndev;
3076 struct am65_cpsw_host *host_p = am65_common_get_host(common);
3078 ret = am65_cpsw_nuss_init_tx_chns(common);
3081 ret = am65_cpsw_nuss_init_rx_chns(common);
3085 /* If RX IRQ was disabled before suspend, keep it disabled */
3086 if (common->rx_irq_disabled)
3087 disable_irq(common->rx_chns.irq);
3089 am65_cpts_resume(common->cpts);
3091 for (i = 0; i < common->port_num; i++) {
3092 port = &common->ports[i];
3098 if (netif_running(ndev)) {
3100 ret = am65_cpsw_nuss_ndo_slave_open(ndev);
3103 netdev_err(ndev, "failed to start: %d", ret);
3108 netif_device_attach(ndev);
3109 writel(port->vid_context, port->port_base + AM65_CPSW_PORT_VLAN_REG_OFFSET);
3112 writel(host_p->vid_context, host_p->port_base + AM65_CPSW_PORT_VLAN_REG_OFFSET);
3113 cpsw_ale_restore(common->ale, common->ale_context);
3118 static const struct dev_pm_ops am65_cpsw_nuss_dev_pm_ops = {
3119 SYSTEM_SLEEP_PM_OPS(am65_cpsw_nuss_suspend, am65_cpsw_nuss_resume)
3122 static struct platform_driver am65_cpsw_nuss_driver = {
3124 .name = AM65_CPSW_DRV_NAME,
3125 .of_match_table = am65_cpsw_nuss_of_mtable,
3126 .pm = &am65_cpsw_nuss_dev_pm_ops,
3128 .probe = am65_cpsw_nuss_probe,
3129 .remove = am65_cpsw_nuss_remove,
3132 module_platform_driver(am65_cpsw_nuss_driver);
3134 MODULE_LICENSE("GPL v2");
3135 MODULE_AUTHOR("Grygorii Strashko <grygorii.strashko@ti.com>");
3136 MODULE_DESCRIPTION("TI AM65 CPSW Ethernet driver");