Grygorii Strashko | 68cf027 | 2019-04-26 20:12:23 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Texas Instruments Ethernet Switch Driver |
| 4 | * |
| 5 | * Copyright (C) 2012 Texas Instruments |
| 6 | * |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/kernel.h> |
| 10 | #include <linux/io.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> |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 20 | #include <linux/net_tstamp.h> |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 21 | #include <linux/phy.h> |
Grygorii Strashko | 3ff1884 | 2018-11-25 18:15:25 -0600 | [diff] [blame] | 22 | #include <linux/phy/phy.h> |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 23 | #include <linux/workqueue.h> |
| 24 | #include <linux/delay.h> |
Mugunthan V N | f150bd7 | 2012-07-17 08:09:50 +0000 | [diff] [blame] | 25 | #include <linux/pm_runtime.h> |
Arnd Bergmann | e2b3e49 | 2018-05-30 23:51:54 +0200 | [diff] [blame] | 26 | #include <linux/gpio/consumer.h> |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 27 | #include <linux/of.h> |
Heiko Schocher | 9e42f71 | 2015-10-17 06:04:35 +0200 | [diff] [blame] | 28 | #include <linux/of_mdio.h> |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 29 | #include <linux/of_net.h> |
| 30 | #include <linux/of_device.h> |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 31 | #include <linux/if_vlan.h> |
Randy Dunlap | 514c603 | 2018-04-05 16:25:34 -0700 | [diff] [blame] | 32 | #include <linux/kmemleak.h> |
Ivan Khoronzhuk | 9611d6d | 2018-05-17 01:21:45 +0300 | [diff] [blame] | 33 | #include <linux/sys_soc.h> |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 34 | #include <net/page_pool.h> |
| 35 | #include <linux/bpf.h> |
| 36 | #include <linux/bpf_trace.h> |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 37 | |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 38 | #include <linux/pinctrl/consumer.h> |
Ivan Khoronzhuk | 7929a66 | 2018-07-24 00:26:31 +0300 | [diff] [blame] | 39 | #include <net/pkt_cls.h> |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 40 | |
Mugunthan V N | dbe3472 | 2013-08-19 17:47:40 +0530 | [diff] [blame] | 41 | #include "cpsw.h" |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 42 | #include "cpsw_ale.h" |
Grygorii Strashko | 814b4a6 | 2019-04-26 20:12:37 +0300 | [diff] [blame] | 43 | #include "cpsw_priv.h" |
Grygorii Strashko | cfc0834 | 2019-04-26 20:12:41 +0300 | [diff] [blame] | 44 | #include "cpsw_sl.h" |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 45 | #include "cpts.h" |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 46 | #include "davinci_cpdma.h" |
| 47 | |
Ivan Khoronzhuk | 57d9014 | 2018-07-24 00:26:32 +0300 | [diff] [blame] | 48 | #include <net/pkt_sched.h> |
| 49 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 50 | static int debug_level; |
| 51 | module_param(debug_level, int, 0); |
| 52 | MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)"); |
| 53 | |
| 54 | static int ale_ageout = 10; |
| 55 | module_param(ale_ageout, int, 0); |
| 56 | MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)"); |
| 57 | |
| 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)"); |
| 61 | |
Grygorii Strashko | 90225bf | 2017-01-06 14:07:33 -0600 | [diff] [blame] | 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"); |
| 65 | |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 66 | #define for_each_slave(priv, func, arg...) \ |
| 67 | do { \ |
Sebastian Siewior | 6e6ceae | 2013-04-24 08:48:24 +0000 | [diff] [blame] | 68 | struct cpsw_slave *slave; \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 69 | struct cpsw_common *cpsw = (priv)->cpsw; \ |
Sebastian Siewior | 6e6ceae | 2013-04-24 08:48:24 +0000 | [diff] [blame] | 70 | int n; \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 71 | if (cpsw->data.dual_emac) \ |
| 72 | (func)((cpsw)->slaves + priv->emac_port, ##arg);\ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 73 | else \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 74 | for (n = cpsw->data.slaves, \ |
| 75 | slave = cpsw->slaves; \ |
Sebastian Siewior | 6e6ceae | 2013-04-24 08:48:24 +0000 | [diff] [blame] | 76 | n; n--) \ |
| 77 | (func)(slave++, ##arg); \ |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 78 | } while (0) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 79 | |
Grygorii Strashko | 51a9533 | 2019-11-20 00:19:16 +0200 | [diff] [blame] | 80 | static int cpsw_slave_index_priv(struct cpsw_common *cpsw, |
| 81 | struct cpsw_priv *priv) |
| 82 | { |
| 83 | return cpsw->data.dual_emac ? priv->emac_port : cpsw->data.active_slave; |
| 84 | } |
| 85 | |
| 86 | static int cpsw_get_slave_port(u32 slave_num) |
| 87 | { |
| 88 | return slave_num + 1; |
| 89 | } |
| 90 | |
Ivan Khoronzhuk | 00fe471 | 2018-11-08 22:27:57 +0200 | [diff] [blame] | 91 | static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev, |
| 92 | __be16 proto, u16 vid); |
| 93 | |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 94 | static void cpsw_set_promiscious(struct net_device *ndev, bool enable) |
| 95 | { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 96 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
| 97 | struct cpsw_ale *ale = cpsw->ale; |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 98 | int i; |
| 99 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 100 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 101 | bool flag = false; |
| 102 | |
| 103 | /* Enabling promiscuous mode for one interface will be |
| 104 | * common for both the interface as the interface shares |
| 105 | * the same hardware resource. |
| 106 | */ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 107 | for (i = 0; i < cpsw->data.slaves; i++) |
| 108 | if (cpsw->slaves[i].ndev->flags & IFF_PROMISC) |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 109 | flag = true; |
| 110 | |
| 111 | if (!enable && flag) { |
| 112 | enable = true; |
| 113 | dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n"); |
| 114 | } |
| 115 | |
| 116 | if (enable) { |
| 117 | /* Enable Bypass */ |
| 118 | cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1); |
| 119 | |
| 120 | dev_dbg(&ndev->dev, "promiscuity enabled\n"); |
| 121 | } else { |
| 122 | /* Disable Bypass */ |
| 123 | cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0); |
| 124 | dev_dbg(&ndev->dev, "promiscuity disabled\n"); |
| 125 | } |
| 126 | } else { |
| 127 | if (enable) { |
| 128 | unsigned long timeout = jiffies + HZ; |
| 129 | |
Lennart Sorensen | 6f979eb | 2014-10-31 13:28:54 -0400 | [diff] [blame] | 130 | /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 131 | for (i = 0; i <= cpsw->data.slaves; i++) { |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 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); |
| 136 | } |
| 137 | |
| 138 | /* Clear All Untouched entries */ |
| 139 | cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1); |
| 140 | do { |
| 141 | cpu_relax(); |
| 142 | if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT)) |
| 143 | break; |
| 144 | } while (time_after(timeout, jiffies)); |
| 145 | cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1); |
| 146 | |
| 147 | /* Clear all mcast from ALE */ |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 148 | cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1); |
Ivan Khoronzhuk | 15180ec | 2018-11-08 22:27:56 +0200 | [diff] [blame] | 149 | __hw_addr_ref_unsync_dev(&ndev->mc, ndev, NULL); |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 150 | |
| 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"); |
| 154 | } else { |
Lennart Sorensen | 6f979eb | 2014-10-31 13:28:54 -0400 | [diff] [blame] | 155 | /* Don't Flood All Unicast Packets to Host port */ |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 156 | cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0); |
| 157 | |
Lennart Sorensen | 6f979eb | 2014-10-31 13:28:54 -0400 | [diff] [blame] | 158 | /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 159 | for (i = 0; i <= cpsw->data.slaves; i++) { |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 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); |
| 164 | } |
| 165 | dev_dbg(&ndev->dev, "promiscuity disabled\n"); |
| 166 | } |
| 167 | } |
| 168 | } |
| 169 | |
Ivan Khoronzhuk | 15180ec | 2018-11-08 22:27:56 +0200 | [diff] [blame] | 170 | /** |
| 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 |
| 177 | */ |
| 178 | static int cpsw_set_mc(struct net_device *ndev, const u8 *addr, |
| 179 | int vid, int add) |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 180 | { |
| 181 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 182 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | 15180ec | 2018-11-08 22:27:56 +0200 | [diff] [blame] | 183 | int mask, flags, ret; |
Mugunthan V N | 2590605 | 2015-01-13 17:35:49 +0530 | [diff] [blame] | 184 | |
Ivan Khoronzhuk | 15180ec | 2018-11-08 22:27:56 +0200 | [diff] [blame] | 185 | if (vid < 0) { |
| 186 | if (cpsw->data.dual_emac) |
| 187 | vid = cpsw->slaves[priv->emac_port].port_vlan; |
| 188 | else |
| 189 | vid = 0; |
Ivan Khoronzhuk | 5da1948 | 2018-10-12 18:28:15 +0300 | [diff] [blame] | 190 | } |
| 191 | |
Ivan Khoronzhuk | 15180ec | 2018-11-08 22:27:56 +0200 | [diff] [blame] | 192 | mask = cpsw->data.dual_emac ? ALE_PORT_HOST : ALE_ALL_PORTS; |
| 193 | flags = vid ? ALE_VLAN : 0; |
| 194 | |
| 195 | if (add) |
| 196 | ret = cpsw_ale_add_mcast(cpsw->ale, addr, mask, flags, vid, 0); |
| 197 | else |
| 198 | ret = cpsw_ale_del_mcast(cpsw->ale, addr, 0, flags, vid); |
| 199 | |
| 200 | return ret; |
| 201 | } |
| 202 | |
| 203 | static int cpsw_update_vlan_mc(struct net_device *vdev, int vid, void *ctx) |
| 204 | { |
| 205 | struct addr_sync_ctx *sync_ctx = ctx; |
| 206 | struct netdev_hw_addr *ha; |
| 207 | int found = 0, ret = 0; |
| 208 | |
| 209 | if (!vdev || !(vdev->flags & IFF_UP)) |
| 210 | return 0; |
| 211 | |
| 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; |
| 216 | break; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | if (found) |
| 221 | sync_ctx->consumed++; |
| 222 | |
| 223 | if (sync_ctx->flush) { |
| 224 | if (!found) |
| 225 | cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 0); |
| 226 | return 0; |
| 227 | } |
| 228 | |
| 229 | if (found) |
| 230 | ret = cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 1); |
| 231 | |
| 232 | return ret; |
| 233 | } |
| 234 | |
| 235 | static int cpsw_add_mc_addr(struct net_device *ndev, const u8 *addr, int num) |
| 236 | { |
| 237 | struct addr_sync_ctx sync_ctx; |
| 238 | int ret; |
| 239 | |
| 240 | sync_ctx.consumed = 0; |
| 241 | sync_ctx.addr = addr; |
| 242 | sync_ctx.ndev = ndev; |
| 243 | sync_ctx.flush = 0; |
| 244 | |
| 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); |
| 248 | |
| 249 | return ret; |
| 250 | } |
| 251 | |
| 252 | static int cpsw_del_mc_addr(struct net_device *ndev, const u8 *addr, int num) |
| 253 | { |
| 254 | struct addr_sync_ctx sync_ctx; |
| 255 | |
| 256 | sync_ctx.consumed = 0; |
| 257 | sync_ctx.addr = addr; |
| 258 | sync_ctx.ndev = ndev; |
| 259 | sync_ctx.flush = 1; |
| 260 | |
| 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); |
| 264 | |
| 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | static int cpsw_purge_vlan_mc(struct net_device *vdev, int vid, void *ctx) |
| 269 | { |
| 270 | struct addr_sync_ctx *sync_ctx = ctx; |
| 271 | struct netdev_hw_addr *ha; |
| 272 | int found = 0; |
| 273 | |
| 274 | if (!vdev || !(vdev->flags & IFF_UP)) |
| 275 | return 0; |
| 276 | |
| 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; |
| 281 | break; |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | if (!found) |
| 286 | return 0; |
| 287 | |
| 288 | sync_ctx->consumed++; |
| 289 | cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 0); |
| 290 | return 0; |
| 291 | } |
| 292 | |
| 293 | static int cpsw_purge_all_mc(struct net_device *ndev, const u8 *addr, int num) |
| 294 | { |
| 295 | struct addr_sync_ctx sync_ctx; |
| 296 | |
| 297 | sync_ctx.addr = addr; |
| 298 | sync_ctx.ndev = ndev; |
| 299 | sync_ctx.consumed = 0; |
| 300 | |
| 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); |
| 304 | |
Ivan Khoronzhuk | 5da1948 | 2018-10-12 18:28:15 +0300 | [diff] [blame] | 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | static void cpsw_ndo_set_rx_mode(struct net_device *ndev) |
| 309 | { |
Grygorii Strashko | 06095f3 | 2019-04-26 20:12:33 +0300 | [diff] [blame] | 310 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 311 | struct cpsw_common *cpsw = priv->cpsw; |
| 312 | int slave_port = -1; |
| 313 | |
| 314 | if (cpsw->data.dual_emac) |
| 315 | slave_port = priv->emac_port + 1; |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 316 | |
| 317 | if (ndev->flags & IFF_PROMISC) { |
| 318 | /* Enable promiscuous mode */ |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 319 | cpsw_set_promiscious(ndev, true); |
Grygorii Strashko | 06095f3 | 2019-04-26 20:12:33 +0300 | [diff] [blame] | 320 | cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI, slave_port); |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 321 | return; |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 322 | } else { |
| 323 | /* Disable promiscuous mode */ |
| 324 | cpsw_set_promiscious(ndev, false); |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 327 | /* Restore allmulti on vlans if necessary */ |
Grygorii Strashko | 06095f3 | 2019-04-26 20:12:33 +0300 | [diff] [blame] | 328 | cpsw_ale_set_allmulti(cpsw->ale, |
| 329 | ndev->flags & IFF_ALLMULTI, slave_port); |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 330 | |
Ivan Khoronzhuk | 15180ec | 2018-11-08 22:27:56 +0200 | [diff] [blame] | 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, |
| 333 | cpsw_del_mc_addr); |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 336 | static unsigned int cpsw_rxbuf_total_len(unsigned int len) |
| 337 | { |
| 338 | len += CPSW_HEADROOM; |
| 339 | len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 340 | |
| 341 | return SKB_DATA_ALIGN(len); |
| 342 | } |
| 343 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 344 | static void cpsw_rx_handler(void *token, int len, int status) |
| 345 | { |
| 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; |
Ard Biesheuvel | 1771afd | 2022-01-18 11:22:04 +0100 | [diff] [blame] | 352 | int headroom = CPSW_HEADROOM_NA; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 353 | struct net_device *ndev = xmeta->ndev; |
| 354 | struct cpsw_priv *priv; |
| 355 | struct page_pool *pool; |
| 356 | struct sk_buff *skb; |
| 357 | struct xdp_buff xdp; |
| 358 | dma_addr_t dma; |
| 359 | |
| 360 | if (cpsw->data.dual_emac && status >= 0) { |
| 361 | port = CPDMA_RX_SOURCE_PORT(status); |
| 362 | if (port) |
| 363 | ndev = cpsw->slaves[--port].ndev; |
| 364 | } |
| 365 | |
| 366 | priv = netdev_priv(ndev); |
| 367 | pool = cpsw->page_pool[ch]; |
Mugunthan V N | 16e5c57 | 2014-04-10 14:23:23 +0530 | [diff] [blame] | 368 | if (unlikely(status < 0) || unlikely(!netif_running(ndev))) { |
Ivan Khoronzhuk | fe734d0 | 2017-01-19 18:58:26 +0200 | [diff] [blame] | 369 | /* In dual emac mode check for all interfaces */ |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 370 | if (cpsw->data.dual_emac && cpsw->usage_count && |
Ivan Khoronzhuk | fe734d0 | 2017-01-19 18:58:26 +0200 | [diff] [blame] | 371 | (status >= 0)) { |
Mugunthan V N | a0e2c82 | 2014-09-10 16:38:09 +0530 | [diff] [blame] | 372 | /* The packet received is for the interface which |
| 373 | * is already down and the other interface is up |
Joe Perches | dbedd44 | 2015-03-06 20:49:12 -0800 | [diff] [blame] | 374 | * and running, instead of freeing which results |
Mugunthan V N | a0e2c82 | 2014-09-10 16:38:09 +0530 | [diff] [blame] | 375 | * in reducing of the number of rx descriptor in |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 376 | * DMA engine, requeue page back to cpdma. |
Mugunthan V N | a0e2c82 | 2014-09-10 16:38:09 +0530 | [diff] [blame] | 377 | */ |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 378 | new_page = page; |
Mugunthan V N | a0e2c82 | 2014-09-10 16:38:09 +0530 | [diff] [blame] | 379 | goto requeue; |
| 380 | } |
| 381 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 382 | /* the interface is going down, pages are purged */ |
| 383 | page_pool_recycle_direct(pool, page); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 384 | return; |
| 385 | } |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 386 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 387 | new_page = page_pool_dev_alloc_pages(pool); |
| 388 | if (unlikely(!new_page)) { |
| 389 | new_page = page; |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 390 | ndev->stats.rx_dropped++; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 391 | goto requeue; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 394 | if (priv->xdp_prog) { |
Ard Biesheuvel | 1771afd | 2022-01-18 11:22:04 +0100 | [diff] [blame] | 395 | int size = len; |
Lorenzo Bianconi | 43b5169 | 2020-12-22 22:09:28 +0100 | [diff] [blame] | 396 | |
Lorenzo Bianconi | be9df4a | 2020-12-22 22:09:29 +0100 | [diff] [blame] | 397 | xdp_init_buff(&xdp, PAGE_SIZE, &priv->xdp_rxq[ch]); |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 398 | if (status & CPDMA_RX_VLAN_ENCAP) { |
Lorenzo Bianconi | be9df4a | 2020-12-22 22:09:29 +0100 | [diff] [blame] | 399 | headroom += CPSW_RX_VLAN_ENCAP_HDR_SIZE; |
| 400 | size -= CPSW_RX_VLAN_ENCAP_HDR_SIZE; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 401 | } |
| 402 | |
Lorenzo Bianconi | be9df4a | 2020-12-22 22:09:29 +0100 | [diff] [blame] | 403 | xdp_prepare_buff(&xdp, pa, headroom, size, false); |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 404 | |
Grygorii Strashko | c5013ac | 2019-11-20 00:19:17 +0200 | [diff] [blame] | 405 | port = priv->emac_port + cpsw->data.dual_emac; |
Lorenzo Bianconi | a8225ef | 2021-02-03 19:06:17 +0100 | [diff] [blame] | 406 | ret = cpsw_run_xdp(priv, ch, &xdp, page, port, &len); |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 407 | if (ret != CPSW_XDP_PASS) |
| 408 | goto requeue; |
| 409 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 410 | headroom = xdp.data - xdp.data_hard_start; |
| 411 | |
| 412 | /* XDP prog can modify vlan tag, so can't use encap header */ |
| 413 | status &= ~CPDMA_RX_VLAN_ENCAP; |
| 414 | } |
| 415 | |
| 416 | /* pass skb to netstack if no XDP prog or returned XDP_PASS */ |
| 417 | skb = build_skb(pa, cpsw_rxbuf_total_len(pkt_size)); |
| 418 | if (!skb) { |
| 419 | ndev->stats.rx_dropped++; |
| 420 | page_pool_recycle_direct(pool, page); |
| 421 | goto requeue; |
| 422 | } |
| 423 | |
| 424 | skb_reserve(skb, headroom); |
| 425 | skb_put(skb, len); |
| 426 | skb->dev = ndev; |
| 427 | if (status & CPDMA_RX_VLAN_ENCAP) |
| 428 | cpsw_rx_vlan_encap(skb); |
| 429 | if (priv->rx_ts_enabled) |
| 430 | cpts_rx_timestamp(cpsw->cpts, skb); |
| 431 | skb->protocol = eth_type_trans(skb, ndev); |
| 432 | |
Lorenzo Bianconi | a078d98 | 2021-06-15 15:27:41 +0200 | [diff] [blame] | 433 | /* mark skb for recycling */ |
Yunsheng Lin | 57f05bc | 2021-08-06 10:46:19 +0800 | [diff] [blame] | 434 | skb_mark_for_recycle(skb); |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 435 | netif_receive_skb(skb); |
| 436 | |
| 437 | ndev->stats.rx_bytes += len; |
| 438 | ndev->stats.rx_packets++; |
| 439 | |
Mugunthan V N | a0e2c82 | 2014-09-10 16:38:09 +0530 | [diff] [blame] | 440 | requeue: |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 441 | xmeta = page_address(new_page) + CPSW_XMETA_OFFSET; |
| 442 | xmeta->ndev = ndev; |
| 443 | xmeta->ch = ch; |
| 444 | |
Ard Biesheuvel | 1771afd | 2022-01-18 11:22:04 +0100 | [diff] [blame] | 445 | dma = page_pool_get_dma_addr(new_page) + CPSW_HEADROOM_NA; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 446 | ret = cpdma_chan_submit_mapped(cpsw->rxv[ch].ch, new_page, dma, |
| 447 | pkt_size, 0); |
Ivan Khoronzhuk | 871e846 | 2019-06-15 14:01:32 +0300 | [diff] [blame] | 448 | if (ret < 0) { |
| 449 | WARN_ON(ret == -ENOMEM); |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 450 | page_pool_recycle_direct(pool, new_page); |
Ivan Khoronzhuk | 871e846 | 2019-06-15 14:01:32 +0300 | [diff] [blame] | 451 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 452 | } |
| 453 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 454 | static void _cpsw_adjust_link(struct cpsw_slave *slave, |
| 455 | struct cpsw_priv *priv, bool *link) |
| 456 | { |
| 457 | struct phy_device *phy = slave->phy; |
| 458 | u32 mac_control = 0; |
| 459 | u32 slave_port; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 460 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 461 | |
| 462 | if (!phy) |
| 463 | return; |
| 464 | |
Ivan Khoronzhuk | 6f1f583 | 2016-08-10 02:22:34 +0300 | [diff] [blame] | 465 | slave_port = cpsw_get_slave_port(slave->slave_num); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 466 | |
| 467 | if (phy->link) { |
Grygorii Strashko | cfc0834 | 2019-04-26 20:12:41 +0300 | [diff] [blame] | 468 | mac_control = CPSW_SL_CTL_GMII_EN; |
| 469 | |
| 470 | if (phy->speed == 1000) |
| 471 | mac_control |= CPSW_SL_CTL_GIG; |
| 472 | if (phy->duplex) |
| 473 | mac_control |= CPSW_SL_CTL_FULLDUPLEX; |
| 474 | |
| 475 | /* set speed_in input in case RMII mode is used in 100Mbps */ |
| 476 | if (phy->speed == 100) |
| 477 | mac_control |= CPSW_SL_CTL_IFCTL_A; |
| 478 | /* in band mode only works in 10Mbps RGMII mode */ |
| 479 | else if ((phy->speed == 10) && phy_interface_is_rgmii(phy)) |
| 480 | mac_control |= CPSW_SL_CTL_EXT_EN; /* In Band mode */ |
| 481 | |
| 482 | if (priv->rx_pause) |
| 483 | mac_control |= CPSW_SL_CTL_RX_FLOW_EN; |
| 484 | |
| 485 | if (priv->tx_pause) |
| 486 | mac_control |= CPSW_SL_CTL_TX_FLOW_EN; |
| 487 | |
| 488 | if (mac_control != slave->mac_control) |
| 489 | cpsw_sl_ctl_set(slave->mac_sl, mac_control); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 490 | |
| 491 | /* enable forwarding */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 492 | cpsw_ale_control_set(cpsw->ale, slave_port, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 493 | ALE_PORT_STATE, ALE_PORT_STATE_FORWARD); |
| 494 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 495 | *link = true; |
Ivan Khoronzhuk | 57d9014 | 2018-07-24 00:26:32 +0300 | [diff] [blame] | 496 | |
| 497 | if (priv->shp_cfg_speed && |
| 498 | priv->shp_cfg_speed != slave->phy->speed && |
| 499 | !cpsw_shp_is_off(priv)) |
| 500 | dev_warn(priv->dev, |
| 501 | "Speed was changed, CBS shaper speeds are changed!"); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 502 | } else { |
| 503 | mac_control = 0; |
| 504 | /* disable forwarding */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 505 | cpsw_ale_control_set(cpsw->ale, slave_port, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 506 | ALE_PORT_STATE, ALE_PORT_STATE_DISABLE); |
Grygorii Strashko | cfc0834 | 2019-04-26 20:12:41 +0300 | [diff] [blame] | 507 | |
| 508 | cpsw_sl_wait_for_idle(slave->mac_sl, 100); |
| 509 | |
| 510 | cpsw_sl_ctl_reset(slave->mac_sl); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 511 | } |
| 512 | |
Grygorii Strashko | cfc0834 | 2019-04-26 20:12:41 +0300 | [diff] [blame] | 513 | if (mac_control != slave->mac_control) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 514 | phy_print_status(phy); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 515 | |
| 516 | slave->mac_control = mac_control; |
| 517 | } |
| 518 | |
| 519 | static void cpsw_adjust_link(struct net_device *ndev) |
| 520 | { |
| 521 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 522 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 523 | bool link = false; |
| 524 | |
| 525 | for_each_slave(priv, _cpsw_adjust_link, priv, &link); |
| 526 | |
| 527 | if (link) { |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 528 | if (cpsw_need_resplit(cpsw)) |
Grygorii Strashko | 9763a89 | 2019-04-26 20:12:26 +0300 | [diff] [blame] | 529 | cpsw_split_res(cpsw); |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 530 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 531 | netif_carrier_on(ndev); |
| 532 | if (netif_running(ndev)) |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 533 | netif_tx_wake_all_queues(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 534 | } else { |
| 535 | netif_carrier_off(ndev); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 536 | netif_tx_stop_all_queues(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 537 | } |
| 538 | } |
| 539 | |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 540 | static inline void cpsw_add_dual_emac_def_ale_entries( |
| 541 | struct cpsw_priv *priv, struct cpsw_slave *slave, |
| 542 | u32 slave_port) |
| 543 | { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 544 | struct cpsw_common *cpsw = priv->cpsw; |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 545 | u32 port_mask = 1 << slave_port | ALE_PORT_HOST; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 546 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 547 | if (cpsw->version == CPSW_VERSION_1) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 548 | slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN); |
| 549 | else |
| 550 | slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 551 | cpsw_ale_add_vlan(cpsw->ale, slave->port_vlan, port_mask, |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 552 | port_mask, port_mask, 0); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 553 | cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, |
Ivan Khoronzhuk | 5b3a5a1 | 2018-10-12 19:06:29 +0300 | [diff] [blame] | 554 | ALE_PORT_HOST, ALE_VLAN, slave->port_vlan, 0); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 555 | cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, |
| 556 | HOST_PORT_NUM, ALE_VLAN | |
| 557 | ALE_SECURE, slave->port_vlan); |
Grygorii Strashko | 5e5add1 | 2018-05-01 12:41:22 -0500 | [diff] [blame] | 558 | cpsw_ale_control_set(cpsw->ale, slave_port, |
| 559 | ALE_PORT_DROP_UNKNOWN_VLAN, 1); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 560 | } |
| 561 | |
Daniel Mack | 1e7a2e2 | 2013-11-15 08:29:16 +0100 | [diff] [blame] | 562 | static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv) |
| 563 | { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 564 | u32 slave_port; |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 565 | struct phy_device *phy; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 566 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 567 | |
Grygorii Strashko | cfc0834 | 2019-04-26 20:12:41 +0300 | [diff] [blame] | 568 | cpsw_sl_reset(slave->mac_sl, 100); |
| 569 | cpsw_sl_ctl_reset(slave->mac_sl); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 570 | |
| 571 | /* setup priority mapping */ |
Grygorii Strashko | cfc0834 | 2019-04-26 20:12:41 +0300 | [diff] [blame] | 572 | cpsw_sl_reg_write(slave->mac_sl, CPSW_SL_RX_PRI_MAP, |
| 573 | RX_PRIORITY_MAPPING); |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 574 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 575 | switch (cpsw->version) { |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 576 | case CPSW_VERSION_1: |
| 577 | slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP); |
Grygorii Strashko | 48f5bcc | 2017-05-08 14:21:21 -0500 | [diff] [blame] | 578 | /* Increase RX FIFO size to 5 for supporting fullduplex |
| 579 | * flow control mode |
| 580 | */ |
| 581 | slave_write(slave, |
| 582 | (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) | |
| 583 | CPSW_MAX_BLKS_RX, CPSW1_MAX_BLKS); |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 584 | break; |
| 585 | case CPSW_VERSION_2: |
Mugunthan V N | c193f36 | 2013-08-05 17:30:05 +0530 | [diff] [blame] | 586 | case CPSW_VERSION_3: |
Mugunthan V N | 926489b | 2013-08-12 17:11:15 +0530 | [diff] [blame] | 587 | case CPSW_VERSION_4: |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 588 | slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP); |
Grygorii Strashko | 48f5bcc | 2017-05-08 14:21:21 -0500 | [diff] [blame] | 589 | /* Increase RX FIFO size to 5 for supporting fullduplex |
| 590 | * flow control mode |
| 591 | */ |
| 592 | slave_write(slave, |
| 593 | (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) | |
| 594 | CPSW_MAX_BLKS_RX, CPSW2_MAX_BLKS); |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 595 | break; |
| 596 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 597 | |
| 598 | /* setup max packet size, and mac address */ |
Grygorii Strashko | cfc0834 | 2019-04-26 20:12:41 +0300 | [diff] [blame] | 599 | cpsw_sl_reg_write(slave->mac_sl, CPSW_SL_RX_MAXLEN, |
| 600 | cpsw->rx_packet_max); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 601 | cpsw_set_slave_mac(slave, priv); |
| 602 | |
| 603 | slave->mac_control = 0; /* no link yet */ |
| 604 | |
Ivan Khoronzhuk | 6f1f583 | 2016-08-10 02:22:34 +0300 | [diff] [blame] | 605 | slave_port = cpsw_get_slave_port(slave->slave_num); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 606 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 607 | if (cpsw->data.dual_emac) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 608 | cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port); |
| 609 | else |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 610 | cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 611 | 1 << slave_port, 0, 0, ALE_MCAST_FWD_2); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 612 | |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 613 | if (slave->data->phy_node) { |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 614 | phy = of_phy_connect(priv->ndev, slave->data->phy_node, |
Heiko Schocher | 9e42f71 | 2015-10-17 06:04:35 +0200 | [diff] [blame] | 615 | &cpsw_adjust_link, 0, slave->data->phy_if); |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 616 | if (!phy) { |
Rob Herring | f7ce910 | 2017-07-18 16:43:19 -0500 | [diff] [blame] | 617 | dev_err(priv->dev, "phy \"%pOF\" not found on slave %d\n", |
| 618 | slave->data->phy_node, |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 619 | slave->slave_num); |
| 620 | return; |
| 621 | } |
| 622 | } else { |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 623 | phy = phy_connect(priv->ndev, slave->data->phy_id, |
Florian Fainelli | f9a8f83 | 2013-01-14 00:52:52 +0000 | [diff] [blame] | 624 | &cpsw_adjust_link, slave->data->phy_if); |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 625 | if (IS_ERR(phy)) { |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 626 | dev_err(priv->dev, |
| 627 | "phy \"%s\" not found on slave %d, err %ld\n", |
| 628 | slave->data->phy_id, slave->slave_num, |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 629 | PTR_ERR(phy)); |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 630 | return; |
| 631 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 632 | } |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 633 | |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 634 | slave->phy = phy; |
| 635 | |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 636 | phy_attached_info(slave->phy); |
| 637 | |
| 638 | phy_start(slave->phy); |
| 639 | |
| 640 | /* Configure GMII_SEL register */ |
Grygorii Strashko | 3ff1884 | 2018-11-25 18:15:25 -0600 | [diff] [blame] | 641 | if (!IS_ERR(slave->data->ifphy)) |
| 642 | phy_set_mode_ext(slave->data->ifphy, PHY_MODE_ETHERNET, |
| 643 | slave->data->phy_if); |
| 644 | else |
| 645 | cpsw_phy_sel(cpsw->dev, slave->phy->interface, |
| 646 | slave->slave_num); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 647 | } |
| 648 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 649 | static inline void cpsw_add_default_vlan(struct cpsw_priv *priv) |
| 650 | { |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 651 | struct cpsw_common *cpsw = priv->cpsw; |
| 652 | const int vlan = cpsw->data.default_vlan; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 653 | u32 reg; |
| 654 | int i; |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 655 | int unreg_mcast_mask; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 656 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 657 | reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN : |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 658 | CPSW2_PORT_VLAN; |
| 659 | |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 660 | writel(vlan, &cpsw->host_port_regs->port_vlan); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 661 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 662 | for (i = 0; i < cpsw->data.slaves; i++) |
| 663 | slave_write(cpsw->slaves + i, vlan, reg); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 664 | |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 665 | if (priv->ndev->flags & IFF_ALLMULTI) |
| 666 | unreg_mcast_mask = ALE_ALL_PORTS; |
| 667 | else |
| 668 | unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2; |
| 669 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 670 | cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS, |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 671 | ALE_ALL_PORTS, ALE_ALL_PORTS, |
| 672 | unreg_mcast_mask); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 673 | } |
| 674 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 675 | static void cpsw_init_host_port(struct cpsw_priv *priv) |
| 676 | { |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 677 | u32 fifo_mode; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 678 | u32 control_reg; |
| 679 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 680 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 681 | /* soft reset the controller and initialize ale */ |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 682 | soft_reset("cpsw", &cpsw->regs->soft_reset); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 683 | cpsw_ale_start(cpsw->ale); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 684 | |
| 685 | /* switch to vlan unaware mode */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 686 | cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_VLAN_AWARE, |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 687 | CPSW_ALE_VLAN_AWARE); |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 688 | control_reg = readl(&cpsw->regs->control); |
Grygorii Strashko | a3a41d2 | 2018-03-15 15:15:50 -0500 | [diff] [blame] | 689 | control_reg |= CPSW_VLAN_AWARE | CPSW_RX_VLAN_ENCAP; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 690 | writel(control_reg, &cpsw->regs->control); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 691 | fifo_mode = (cpsw->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE : |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 692 | CPSW_FIFO_NORMAL_MODE; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 693 | writel(fifo_mode, &cpsw->host_port_regs->tx_in_ctl); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 694 | |
| 695 | /* setup host port priority mapping */ |
Grygorii Strashko | dda5f5fe | 2017-11-30 18:21:11 -0600 | [diff] [blame] | 696 | writel_relaxed(CPDMA_TX_PRIORITY_MAP, |
| 697 | &cpsw->host_port_regs->cpdma_tx_pri_map); |
| 698 | writel_relaxed(0, &cpsw->host_port_regs->cpdma_rx_chan_map); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 699 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 700 | cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 701 | ALE_PORT_STATE, ALE_PORT_STATE_FORWARD); |
| 702 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 703 | if (!cpsw->data.dual_emac) { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 704 | cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM, |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 705 | 0, 0); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 706 | cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 707 | ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 708 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 711 | static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_common *cpsw) |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 712 | { |
Schuyler Patton | 3995d26 | 2014-03-03 16:19:06 +0530 | [diff] [blame] | 713 | u32 slave_port; |
| 714 | |
Ivan Khoronzhuk | 6f1f583 | 2016-08-10 02:22:34 +0300 | [diff] [blame] | 715 | slave_port = cpsw_get_slave_port(slave->slave_num); |
Schuyler Patton | 3995d26 | 2014-03-03 16:19:06 +0530 | [diff] [blame] | 716 | |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 717 | if (!slave->phy) |
| 718 | return; |
| 719 | phy_stop(slave->phy); |
| 720 | phy_disconnect(slave->phy); |
| 721 | slave->phy = NULL; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 722 | cpsw_ale_control_set(cpsw->ale, slave_port, |
Schuyler Patton | 3995d26 | 2014-03-03 16:19:06 +0530 | [diff] [blame] | 723 | ALE_PORT_STATE, ALE_PORT_STATE_DISABLE); |
Grygorii Strashko | cfc0834 | 2019-04-26 20:12:41 +0300 | [diff] [blame] | 724 | cpsw_sl_reset(slave->mac_sl, 100); |
| 725 | cpsw_sl_ctl_reset(slave->mac_sl); |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 726 | } |
| 727 | |
Ivan Khoronzhuk | 00fe471 | 2018-11-08 22:27:57 +0200 | [diff] [blame] | 728 | static int cpsw_restore_vlans(struct net_device *vdev, int vid, void *arg) |
| 729 | { |
| 730 | struct cpsw_priv *priv = arg; |
| 731 | |
| 732 | if (!vdev) |
| 733 | return 0; |
| 734 | |
| 735 | cpsw_ndo_vlan_rx_add_vid(priv->ndev, 0, vid); |
| 736 | return 0; |
| 737 | } |
| 738 | |
Ivan Khoronzhuk | 4b4255e | 2018-07-24 00:26:33 +0300 | [diff] [blame] | 739 | /* restore resources after port reset */ |
| 740 | static void cpsw_restore(struct cpsw_priv *priv) |
| 741 | { |
Ivan Khoronzhuk | 00fe471 | 2018-11-08 22:27:57 +0200 | [diff] [blame] | 742 | /* restore vlan configurations */ |
| 743 | vlan_for_each(priv->ndev, cpsw_restore_vlans, priv); |
| 744 | |
Ivan Khoronzhuk | 4b4255e | 2018-07-24 00:26:33 +0300 | [diff] [blame] | 745 | /* restore MQPRIO offload */ |
| 746 | for_each_slave(priv, cpsw_mqprio_resume, priv); |
| 747 | |
| 748 | /* restore CBS offload */ |
| 749 | for_each_slave(priv, cpsw_cbs_resume, priv); |
| 750 | } |
| 751 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 752 | static int cpsw_ndo_open(struct net_device *ndev) |
| 753 | { |
| 754 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 755 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 756 | int ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 757 | u32 reg; |
| 758 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 759 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | 108a653 | 2016-06-24 21:23:42 +0300 | [diff] [blame] | 760 | if (ret < 0) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 761 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | 108a653 | 2016-06-24 21:23:42 +0300 | [diff] [blame] | 762 | return ret; |
| 763 | } |
Grygorii Strashko | 3fa88c5 | 2016-04-19 21:09:49 +0300 | [diff] [blame] | 764 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 765 | netif_carrier_off(ndev); |
| 766 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 767 | /* Notify the stack of the actual queue counts. */ |
| 768 | ret = netif_set_real_num_tx_queues(ndev, cpsw->tx_ch_num); |
| 769 | if (ret) { |
| 770 | dev_err(priv->dev, "cannot set real number of tx queues\n"); |
| 771 | goto err_cleanup; |
| 772 | } |
| 773 | |
| 774 | ret = netif_set_real_num_rx_queues(ndev, cpsw->rx_ch_num); |
| 775 | if (ret) { |
| 776 | dev_err(priv->dev, "cannot set real number of rx queues\n"); |
| 777 | goto err_cleanup; |
| 778 | } |
| 779 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 780 | reg = cpsw->version; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 781 | |
| 782 | dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n", |
| 783 | CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg), |
| 784 | CPSW_RTL_VERSION(reg)); |
| 785 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 786 | /* Initialize host and slave ports */ |
| 787 | if (!cpsw->usage_count) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 788 | cpsw_init_host_port(priv); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 789 | for_each_slave(priv, cpsw_slave_open, priv); |
| 790 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 791 | /* Add default VLAN */ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 792 | if (!cpsw->data.dual_emac) |
Mugunthan V N | e6afea0 | 2014-06-18 17:21:48 +0530 | [diff] [blame] | 793 | cpsw_add_default_vlan(priv); |
| 794 | else |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 795 | cpsw_ale_add_vlan(cpsw->ale, cpsw->data.default_vlan, |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 796 | ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 797 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 798 | /* initialize shared resources for every ndev */ |
| 799 | if (!cpsw->usage_count) { |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 800 | /* disable priority elevation */ |
Grygorii Strashko | dda5f5fe | 2017-11-30 18:21:11 -0600 | [diff] [blame] | 801 | writel_relaxed(0, &cpsw->regs->ptype); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 802 | |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 803 | /* enable statistics collection only on all ports */ |
Grygorii Strashko | dda5f5fe | 2017-11-30 18:21:11 -0600 | [diff] [blame] | 804 | writel_relaxed(0x7, &cpsw->regs->stat_port_en); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 805 | |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 806 | /* Enable internal fifo flow control */ |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 807 | writel(0x7, &cpsw->regs->flow_control); |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 808 | |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 809 | napi_enable(&cpsw->napi_rx); |
| 810 | napi_enable(&cpsw->napi_tx); |
Mugunthan V N | d354eb8 | 2015-08-04 16:06:19 +0530 | [diff] [blame] | 811 | |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 812 | if (cpsw->tx_irq_disabled) { |
| 813 | cpsw->tx_irq_disabled = false; |
| 814 | enable_irq(cpsw->irqs_table[1]); |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 815 | } |
| 816 | |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 817 | if (cpsw->rx_irq_disabled) { |
| 818 | cpsw->rx_irq_disabled = false; |
| 819 | enable_irq(cpsw->irqs_table[0]); |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 820 | } |
| 821 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 822 | /* create rxqs for both infs in dual mac as they use same pool |
| 823 | * and must be destroyed together when no users. |
| 824 | */ |
| 825 | ret = cpsw_create_xdp_rxqs(cpsw); |
| 826 | if (ret < 0) |
| 827 | goto err_cleanup; |
| 828 | |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 829 | ret = cpsw_fill_rx_channels(priv); |
| 830 | if (ret < 0) |
| 831 | goto err_cleanup; |
Mugunthan V N | f280e89 | 2013-12-11 22:09:05 -0600 | [diff] [blame] | 832 | |
Grygorii Strashko | 2b56687 | 2020-11-12 13:15:46 +0200 | [diff] [blame] | 833 | if (cpsw->cpts) { |
| 834 | if (cpts_register(cpsw->cpts)) |
| 835 | dev_err(priv->dev, "error registering cpts device\n"); |
| 836 | else |
| 837 | writel(0x10, &cpsw->wr_regs->misc_en); |
| 838 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 839 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 840 | |
Ivan Khoronzhuk | 4b4255e | 2018-07-24 00:26:33 +0300 | [diff] [blame] | 841 | cpsw_restore(priv); |
| 842 | |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 843 | /* Enable Interrupt pacing if configured */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 844 | if (cpsw->coal_intvl != 0) { |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 845 | struct ethtool_coalesce coal; |
| 846 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 847 | coal.rx_coalesce_usecs = cpsw->coal_intvl; |
Yufeng Mo | f3ccfda1 | 2021-08-20 15:35:18 +0800 | [diff] [blame] | 848 | cpsw_set_coalesce(ndev, &coal, NULL, NULL); |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 849 | } |
| 850 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 851 | cpdma_ctlr_start(cpsw->dma); |
| 852 | cpsw_intr_enable(cpsw); |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 853 | cpsw->usage_count++; |
Mugunthan V N | f63a975 | 2014-04-10 14:23:24 +0530 | [diff] [blame] | 854 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 855 | return 0; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 856 | |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 857 | err_cleanup: |
Ivan Khoronzhuk | 02caced | 2019-05-28 20:45:19 +0300 | [diff] [blame] | 858 | if (!cpsw->usage_count) { |
| 859 | cpdma_ctlr_stop(cpsw->dma); |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 860 | cpsw_destroy_xdp_rxqs(cpsw); |
Ivan Khoronzhuk | 02caced | 2019-05-28 20:45:19 +0300 | [diff] [blame] | 861 | } |
| 862 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 863 | for_each_slave(priv, cpsw_slave_stop, cpsw); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 864 | pm_runtime_put_sync(cpsw->dev); |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 865 | netif_carrier_off(priv->ndev); |
| 866 | return ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | static int cpsw_ndo_stop(struct net_device *ndev) |
| 870 | { |
| 871 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 872 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 873 | |
| 874 | cpsw_info(priv, ifdown, "shutting down cpsw device\n"); |
Ivan Khoronzhuk | 15180ec | 2018-11-08 22:27:56 +0200 | [diff] [blame] | 875 | __hw_addr_ref_unsync_dev(&ndev->mc, ndev, cpsw_purge_all_mc); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 876 | netif_tx_stop_all_queues(priv->ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 877 | netif_carrier_off(priv->ndev); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 878 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 879 | if (cpsw->usage_count <= 1) { |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 880 | napi_disable(&cpsw->napi_rx); |
| 881 | napi_disable(&cpsw->napi_tx); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 882 | cpts_unregister(cpsw->cpts); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 883 | cpsw_intr_disable(cpsw); |
| 884 | cpdma_ctlr_stop(cpsw->dma); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 885 | cpsw_ale_stop(cpsw->ale); |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 886 | cpsw_destroy_xdp_rxqs(cpsw); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 887 | } |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 888 | for_each_slave(priv, cpsw_slave_stop, cpsw); |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 889 | |
| 890 | if (cpsw_need_resplit(cpsw)) |
Grygorii Strashko | 9763a89 | 2019-04-26 20:12:26 +0300 | [diff] [blame] | 891 | cpsw_split_res(cpsw); |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 892 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 893 | cpsw->usage_count--; |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 894 | pm_runtime_put_sync(cpsw->dev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 895 | return 0; |
| 896 | } |
| 897 | |
| 898 | static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb, |
| 899 | struct net_device *ndev) |
| 900 | { |
| 901 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 902 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | f44f841 | 2017-06-27 16:58:52 +0300 | [diff] [blame] | 903 | struct cpts *cpts = cpsw->cpts; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 904 | struct netdev_queue *txq; |
| 905 | struct cpdma_chan *txch; |
| 906 | int ret, q_idx; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 907 | |
Grygorii Strashko | 1f88d5d | 2021-08-05 17:55:53 +0300 | [diff] [blame] | 908 | if (skb_put_padto(skb, CPSW_MIN_PACKET_SIZE)) { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 909 | cpsw_err(priv, tx_err, "packet pad failed\n"); |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 910 | ndev->stats.tx_dropped++; |
Ivan Khoronzhuk | 1bf9605 | 2017-02-11 03:49:57 +0200 | [diff] [blame] | 911 | return NET_XMIT_DROP; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 912 | } |
| 913 | |
Mugunthan V N | 9232b16 | 2013-02-11 09:52:19 +0000 | [diff] [blame] | 914 | if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP && |
Ivan Khoronzhuk | a942312 | 2018-11-12 16:00:22 +0200 | [diff] [blame] | 915 | priv->tx_ts_enabled && cpts_can_timestamp(cpts, skb)) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 916 | skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; |
| 917 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 918 | q_idx = skb_get_queue_mapping(skb); |
| 919 | if (q_idx >= cpsw->tx_ch_num) |
| 920 | q_idx = q_idx % cpsw->tx_ch_num; |
| 921 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 922 | txch = cpsw->txv[q_idx].ch; |
Grygorii Strashko | 62f94c2 | 2018-02-06 19:17:06 -0600 | [diff] [blame] | 923 | txq = netdev_get_tx_queue(ndev, q_idx); |
Grygorii Strashko | 10ae805 | 2019-04-26 20:12:30 +0300 | [diff] [blame] | 924 | skb_tx_timestamp(skb); |
| 925 | ret = cpdma_chan_submit(txch, skb, skb->data, skb->len, |
| 926 | priv->emac_port + cpsw->data.dual_emac); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 927 | if (unlikely(ret != 0)) { |
| 928 | cpsw_err(priv, tx_err, "desc submit failed\n"); |
| 929 | goto fail; |
| 930 | } |
| 931 | |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 932 | /* If there is no more tx desc left free then we need to |
| 933 | * tell the kernel to stop sending us tx frames. |
| 934 | */ |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 935 | if (unlikely(!cpdma_check_free_tx_desc(txch))) { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 936 | netif_tx_stop_queue(txq); |
Grygorii Strashko | 62f94c2 | 2018-02-06 19:17:06 -0600 | [diff] [blame] | 937 | |
| 938 | /* Barrier, so that stop_queue visible to other cpus */ |
| 939 | smp_mb__after_atomic(); |
| 940 | |
| 941 | if (cpdma_check_free_tx_desc(txch)) |
| 942 | netif_tx_wake_queue(txq); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 943 | } |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 944 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 945 | return NETDEV_TX_OK; |
| 946 | fail: |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 947 | ndev->stats.tx_dropped++; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 948 | netif_tx_stop_queue(txq); |
Grygorii Strashko | 62f94c2 | 2018-02-06 19:17:06 -0600 | [diff] [blame] | 949 | |
| 950 | /* Barrier, so that stop_queue visible to other cpus */ |
| 951 | smp_mb__after_atomic(); |
| 952 | |
| 953 | if (cpdma_check_free_tx_desc(txch)) |
| 954 | netif_tx_wake_queue(txq); |
| 955 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 956 | return NETDEV_TX_BUSY; |
| 957 | } |
| 958 | |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 959 | static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p) |
| 960 | { |
| 961 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 962 | struct sockaddr *addr = (struct sockaddr *)p; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 963 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 964 | int flags = 0; |
| 965 | u16 vid = 0; |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 966 | int ret; |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 967 | |
| 968 | if (!is_valid_ether_addr(addr->sa_data)) |
| 969 | return -EADDRNOTAVAIL; |
| 970 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 971 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 972 | if (ret < 0) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 973 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 974 | return ret; |
| 975 | } |
| 976 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 977 | if (cpsw->data.dual_emac) { |
| 978 | vid = cpsw->slaves[priv->emac_port].port_vlan; |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 979 | flags = ALE_VLAN; |
| 980 | } |
| 981 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 982 | cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM, |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 983 | flags, vid); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 984 | cpsw_ale_add_ucast(cpsw->ale, addr->sa_data, HOST_PORT_NUM, |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 985 | flags, vid); |
| 986 | |
| 987 | memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN); |
Jakub Kicinski | a96d317 | 2021-10-01 14:32:20 -0700 | [diff] [blame] | 988 | eth_hw_addr_set(ndev, priv->mac_addr); |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 989 | for_each_slave(priv, cpsw_set_slave_mac, priv); |
| 990 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 991 | pm_runtime_put(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 992 | |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 993 | return 0; |
| 994 | } |
| 995 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 996 | static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv, |
| 997 | unsigned short vid) |
| 998 | { |
| 999 | int ret; |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1000 | int unreg_mcast_mask = 0; |
Ivan Khoronzhuk | 5b3a5a1 | 2018-10-12 19:06:29 +0300 | [diff] [blame] | 1001 | int mcast_mask; |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1002 | u32 port_mask; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1003 | struct cpsw_common *cpsw = priv->cpsw; |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 1004 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1005 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1006 | port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1007 | |
Ivan Khoronzhuk | 5b3a5a1 | 2018-10-12 19:06:29 +0300 | [diff] [blame] | 1008 | mcast_mask = ALE_PORT_HOST; |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1009 | if (priv->ndev->flags & IFF_ALLMULTI) |
Ivan Khoronzhuk | 5b3a5a1 | 2018-10-12 19:06:29 +0300 | [diff] [blame] | 1010 | unreg_mcast_mask = mcast_mask; |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1011 | } else { |
| 1012 | port_mask = ALE_ALL_PORTS; |
Ivan Khoronzhuk | 5b3a5a1 | 2018-10-12 19:06:29 +0300 | [diff] [blame] | 1013 | mcast_mask = port_mask; |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1014 | |
| 1015 | if (priv->ndev->flags & IFF_ALLMULTI) |
| 1016 | unreg_mcast_mask = ALE_ALL_PORTS; |
| 1017 | else |
| 1018 | unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2; |
| 1019 | } |
| 1020 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1021 | ret = cpsw_ale_add_vlan(cpsw->ale, vid, port_mask, 0, port_mask, |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 1022 | unreg_mcast_mask); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1023 | if (ret != 0) |
| 1024 | return ret; |
| 1025 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1026 | ret = cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 1027 | HOST_PORT_NUM, ALE_VLAN, vid); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1028 | if (ret != 0) |
| 1029 | goto clean_vid; |
| 1030 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1031 | ret = cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, |
Ivan Khoronzhuk | 5b3a5a1 | 2018-10-12 19:06:29 +0300 | [diff] [blame] | 1032 | mcast_mask, ALE_VLAN, vid, 0); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1033 | if (ret != 0) |
| 1034 | goto clean_vlan_ucast; |
| 1035 | return 0; |
| 1036 | |
| 1037 | clean_vlan_ucast: |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1038 | cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 1039 | HOST_PORT_NUM, ALE_VLAN, vid); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1040 | clean_vid: |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1041 | cpsw_ale_del_vlan(cpsw->ale, vid, 0); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1042 | return ret; |
| 1043 | } |
| 1044 | |
| 1045 | static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev, |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1046 | __be16 proto, u16 vid) |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1047 | { |
| 1048 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1049 | struct cpsw_common *cpsw = priv->cpsw; |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1050 | int ret; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1051 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1052 | if (vid == cpsw->data.default_vlan) |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1053 | return 0; |
| 1054 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1055 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1056 | if (ret < 0) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1057 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1058 | return ret; |
| 1059 | } |
| 1060 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1061 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 02a5416 | 2015-01-22 15:19:22 +0530 | [diff] [blame] | 1062 | /* In dual EMAC, reserved VLAN id should not be used for |
| 1063 | * creating VLAN interfaces as this can break the dual |
| 1064 | * EMAC port separation |
| 1065 | */ |
| 1066 | int i; |
| 1067 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1068 | for (i = 0; i < cpsw->data.slaves; i++) { |
Ivan Khoronzhuk | 803c4f6 | 2018-08-10 15:47:09 +0300 | [diff] [blame] | 1069 | if (vid == cpsw->slaves[i].port_vlan) { |
| 1070 | ret = -EINVAL; |
| 1071 | goto err; |
| 1072 | } |
Mugunthan V N | 02a5416 | 2015-01-22 15:19:22 +0530 | [diff] [blame] | 1073 | } |
| 1074 | } |
| 1075 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1076 | dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1077 | ret = cpsw_add_vlan_ale_entry(priv, vid); |
Ivan Khoronzhuk | 803c4f6 | 2018-08-10 15:47:09 +0300 | [diff] [blame] | 1078 | err: |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1079 | pm_runtime_put(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1080 | return ret; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev, |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1084 | __be16 proto, u16 vid) |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1085 | { |
| 1086 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1087 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1088 | int ret; |
| 1089 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1090 | if (vid == cpsw->data.default_vlan) |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1091 | return 0; |
| 1092 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1093 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1094 | if (ret < 0) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1095 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1096 | return ret; |
| 1097 | } |
| 1098 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1099 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 02a5416 | 2015-01-22 15:19:22 +0530 | [diff] [blame] | 1100 | int i; |
| 1101 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1102 | for (i = 0; i < cpsw->data.slaves; i++) { |
| 1103 | if (vid == cpsw->slaves[i].port_vlan) |
Ivan Khoronzhuk | 803c4f6 | 2018-08-10 15:47:09 +0300 | [diff] [blame] | 1104 | goto err; |
Mugunthan V N | 02a5416 | 2015-01-22 15:19:22 +0530 | [diff] [blame] | 1105 | } |
| 1106 | } |
| 1107 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1108 | dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1109 | ret = cpsw_ale_del_vlan(cpsw->ale, vid, 0); |
Ivan Khoronzhuk | be35b98 | 2018-08-10 15:47:08 +0300 | [diff] [blame] | 1110 | ret |= cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, |
| 1111 | HOST_PORT_NUM, ALE_VLAN, vid); |
| 1112 | ret |= cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast, |
| 1113 | 0, ALE_VLAN, vid); |
Murali Karicheri | 99d469f | 2020-08-24 11:10:52 -0400 | [diff] [blame] | 1114 | ret |= cpsw_ale_flush_multicast(cpsw->ale, ALE_PORT_HOST, vid); |
Ivan Khoronzhuk | 803c4f6 | 2018-08-10 15:47:09 +0300 | [diff] [blame] | 1115 | err: |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1116 | pm_runtime_put(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1117 | return ret; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 1120 | static int cpsw_ndo_xdp_xmit(struct net_device *ndev, int n, |
| 1121 | struct xdp_frame **frames, u32 flags) |
| 1122 | { |
| 1123 | struct cpsw_priv *priv = netdev_priv(ndev); |
Grygorii Strashko | c5013ac | 2019-11-20 00:19:17 +0200 | [diff] [blame] | 1124 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 1125 | struct xdp_frame *xdpf; |
Lorenzo Bianconi | fdc1397 | 2021-03-08 12:06:58 +0100 | [diff] [blame] | 1126 | int i, nxmit = 0, port; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 1127 | |
| 1128 | if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) |
| 1129 | return -EINVAL; |
| 1130 | |
| 1131 | for (i = 0; i < n; i++) { |
| 1132 | xdpf = frames[i]; |
Lorenzo Bianconi | fdc1397 | 2021-03-08 12:06:58 +0100 | [diff] [blame] | 1133 | if (xdpf->len < CPSW_MIN_PACKET_SIZE) |
| 1134 | break; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 1135 | |
Grygorii Strashko | c5013ac | 2019-11-20 00:19:17 +0200 | [diff] [blame] | 1136 | port = priv->emac_port + cpsw->data.dual_emac; |
| 1137 | if (cpsw_xdp_tx_frame(priv, xdpf, NULL, port)) |
Lorenzo Bianconi | fdc1397 | 2021-03-08 12:06:58 +0100 | [diff] [blame] | 1138 | break; |
| 1139 | nxmit++; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 1140 | } |
| 1141 | |
Lorenzo Bianconi | fdc1397 | 2021-03-08 12:06:58 +0100 | [diff] [blame] | 1142 | return nxmit; |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 1143 | } |
| 1144 | |
David S. Miller | 026cc9c | 2019-04-27 20:08:25 -0400 | [diff] [blame] | 1145 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1146 | static void cpsw_ndo_poll_controller(struct net_device *ndev) |
| 1147 | { |
| 1148 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
| 1149 | |
| 1150 | cpsw_intr_disable(cpsw); |
| 1151 | cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw); |
| 1152 | cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw); |
| 1153 | cpsw_intr_enable(cpsw); |
| 1154 | } |
| 1155 | #endif |
| 1156 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1157 | static const struct net_device_ops cpsw_netdev_ops = { |
| 1158 | .ndo_open = cpsw_ndo_open, |
| 1159 | .ndo_stop = cpsw_ndo_stop, |
| 1160 | .ndo_start_xmit = cpsw_ndo_start_xmit, |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 1161 | .ndo_set_mac_address = cpsw_ndo_set_mac_address, |
Arnd Bergmann | a760537 | 2021-07-27 15:45:13 +0200 | [diff] [blame] | 1162 | .ndo_eth_ioctl = cpsw_ndo_ioctl, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1163 | .ndo_validate_addr = eth_validate_addr, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1164 | .ndo_tx_timeout = cpsw_ndo_tx_timeout, |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 1165 | .ndo_set_rx_mode = cpsw_ndo_set_rx_mode, |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 1166 | .ndo_set_tx_maxrate = cpsw_ndo_set_tx_maxrate, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1167 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1168 | .ndo_poll_controller = cpsw_ndo_poll_controller, |
| 1169 | #endif |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1170 | .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid, |
| 1171 | .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid, |
Ivan Khoronzhuk | 7929a66 | 2018-07-24 00:26:31 +0300 | [diff] [blame] | 1172 | .ndo_setup_tc = cpsw_ndo_setup_tc, |
Ivan Khoronzhuk | 9ed4050 | 2019-07-09 00:34:32 +0300 | [diff] [blame] | 1173 | .ndo_bpf = cpsw_ndo_bpf, |
| 1174 | .ndo_xdp_xmit = cpsw_ndo_xdp_xmit, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1175 | }; |
| 1176 | |
| 1177 | static void cpsw_get_drvinfo(struct net_device *ndev, |
| 1178 | struct ethtool_drvinfo *info) |
| 1179 | { |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1180 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1181 | struct platform_device *pdev = to_platform_device(cpsw->dev); |
Jiri Pirko | 7826d43 | 2013-01-06 00:44:26 +0000 | [diff] [blame] | 1182 | |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 1183 | strlcpy(info->driver, "cpsw", sizeof(info->driver)); |
Jiri Pirko | 7826d43 | 2013-01-06 00:44:26 +0000 | [diff] [blame] | 1184 | strlcpy(info->version, "1.0", sizeof(info->version)); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1185 | strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info)); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1186 | } |
| 1187 | |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 1188 | static int cpsw_set_pauseparam(struct net_device *ndev, |
| 1189 | struct ethtool_pauseparam *pause) |
| 1190 | { |
| 1191 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 1192 | bool link; |
| 1193 | |
| 1194 | priv->rx_pause = pause->rx_pause ? true : false; |
| 1195 | priv->tx_pause = pause->tx_pause ? true : false; |
| 1196 | |
| 1197 | for_each_slave(priv, _cpsw_adjust_link, priv, &link); |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 1198 | return 0; |
| 1199 | } |
| 1200 | |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 1201 | static int cpsw_set_channels(struct net_device *ndev, |
| 1202 | struct ethtool_channels *chs) |
| 1203 | { |
Grygorii Strashko | c24eef2 | 2019-04-26 20:12:42 +0300 | [diff] [blame] | 1204 | return cpsw_set_channels_common(ndev, chs, cpsw_rx_handler); |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 1205 | } |
| 1206 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1207 | static const struct ethtool_ops cpsw_ethtool_ops = { |
Jakub Kicinski | 3b6e1a4 | 2020-03-16 13:47:08 -0700 | [diff] [blame] | 1208 | .supported_coalesce_params = ETHTOOL_COALESCE_RX_USECS, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1209 | .get_drvinfo = cpsw_get_drvinfo, |
| 1210 | .get_msglevel = cpsw_get_msglevel, |
| 1211 | .set_msglevel = cpsw_set_msglevel, |
| 1212 | .get_link = ethtool_op_get_link, |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1213 | .get_ts_info = cpsw_get_ts_info, |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1214 | .get_coalesce = cpsw_get_coalesce, |
| 1215 | .set_coalesce = cpsw_set_coalesce, |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1216 | .get_sset_count = cpsw_get_sset_count, |
| 1217 | .get_strings = cpsw_get_strings, |
| 1218 | .get_ethtool_stats = cpsw_get_ethtool_stats, |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 1219 | .get_pauseparam = cpsw_get_pauseparam, |
| 1220 | .set_pauseparam = cpsw_set_pauseparam, |
Matus Ujhelyi | d8a6442 | 2013-08-20 07:59:38 +0200 | [diff] [blame] | 1221 | .get_wol = cpsw_get_wol, |
| 1222 | .set_wol = cpsw_set_wol, |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 1223 | .get_regs_len = cpsw_get_regs_len, |
| 1224 | .get_regs = cpsw_get_regs, |
Grygorii Strashko | 7898b1d | 2016-06-24 21:23:44 +0300 | [diff] [blame] | 1225 | .begin = cpsw_ethtool_op_begin, |
| 1226 | .complete = cpsw_ethtool_op_complete, |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 1227 | .get_channels = cpsw_get_channels, |
| 1228 | .set_channels = cpsw_set_channels, |
Philippe Reynes | 2479876 | 2016-10-08 17:46:15 +0200 | [diff] [blame] | 1229 | .get_link_ksettings = cpsw_get_link_ksettings, |
| 1230 | .set_link_ksettings = cpsw_set_link_ksettings, |
Yegor Yefremov | a090994 | 2016-11-28 09:41:33 +0100 | [diff] [blame] | 1231 | .get_eee = cpsw_get_eee, |
| 1232 | .set_eee = cpsw_set_eee, |
Yegor Yefremov | 6bb10c2 | 2016-11-28 10:47:52 +0100 | [diff] [blame] | 1233 | .nway_reset = cpsw_nway_reset, |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 1234 | .get_ringparam = cpsw_get_ringparam, |
| 1235 | .set_ringparam = cpsw_set_ringparam, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1236 | }; |
| 1237 | |
David Rivshin | 552165b | 2016-04-27 21:25:25 -0400 | [diff] [blame] | 1238 | static int cpsw_probe_dt(struct cpsw_platform_data *data, |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1239 | struct platform_device *pdev) |
| 1240 | { |
| 1241 | struct device_node *node = pdev->dev.of_node; |
| 1242 | struct device_node *slave_node; |
| 1243 | int i = 0, ret; |
| 1244 | u32 prop; |
| 1245 | |
| 1246 | if (!node) |
| 1247 | return -EINVAL; |
| 1248 | |
| 1249 | if (of_property_read_u32(node, "slaves", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 1250 | dev_err(&pdev->dev, "Missing slaves property in the DT.\n"); |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1251 | return -EINVAL; |
| 1252 | } |
| 1253 | data->slaves = prop; |
| 1254 | |
Mugunthan V N | e86ac13 | 2013-03-11 23:16:35 +0000 | [diff] [blame] | 1255 | if (of_property_read_u32(node, "active_slave", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 1256 | dev_err(&pdev->dev, "Missing active_slave property in the DT.\n"); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1257 | return -EINVAL; |
Richard Cochran | 78ca0b2 | 2012-10-29 08:45:18 +0000 | [diff] [blame] | 1258 | } |
Mugunthan V N | e86ac13 | 2013-03-11 23:16:35 +0000 | [diff] [blame] | 1259 | data->active_slave = prop; |
Richard Cochran | 78ca0b2 | 2012-10-29 08:45:18 +0000 | [diff] [blame] | 1260 | |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 1261 | data->slave_data = devm_kcalloc(&pdev->dev, |
| 1262 | data->slaves, |
| 1263 | sizeof(struct cpsw_slave_data), |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1264 | GFP_KERNEL); |
Joe Perches | b2adaca | 2013-02-03 17:43:58 +0000 | [diff] [blame] | 1265 | if (!data->slave_data) |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1266 | return -ENOMEM; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1267 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1268 | if (of_property_read_u32(node, "cpdma_channels", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 1269 | dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n"); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1270 | return -EINVAL; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1271 | } |
| 1272 | data->channels = prop; |
| 1273 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1274 | if (of_property_read_u32(node, "bd_ram_size", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 1275 | dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n"); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1276 | return -EINVAL; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1277 | } |
| 1278 | data->bd_ram_size = prop; |
| 1279 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1280 | if (of_property_read_u32(node, "mac_control", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 1281 | dev_err(&pdev->dev, "Missing mac_control property in the DT.\n"); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1282 | return -EINVAL; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1283 | } |
| 1284 | data->mac_control = prop; |
| 1285 | |
Markus Pargmann | 281abd9 | 2013-10-04 14:44:40 +0200 | [diff] [blame] | 1286 | if (of_property_read_bool(node, "dual_emac")) |
Jason Yan | a78766d | 2020-09-19 15:46:17 +0800 | [diff] [blame] | 1287 | data->dual_emac = true; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1288 | |
Vaibhav Hiremath | 1fb19aa | 2012-11-14 09:07:55 +0000 | [diff] [blame] | 1289 | /* |
| 1290 | * Populate all the child nodes here... |
| 1291 | */ |
| 1292 | ret = of_platform_populate(node, NULL, NULL, &pdev->dev); |
| 1293 | /* We do not want to force this, as in some cases may not have child */ |
| 1294 | if (ret) |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 1295 | dev_warn(&pdev->dev, "Doesn't have any child node\n"); |
Vaibhav Hiremath | 1fb19aa | 2012-11-14 09:07:55 +0000 | [diff] [blame] | 1296 | |
Ben Hutchings | 8658aaf | 2016-06-21 01:16:31 +0100 | [diff] [blame] | 1297 | for_each_available_child_of_node(node, slave_node) { |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 1298 | struct cpsw_slave_data *slave_data = data->slave_data + i; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 1299 | int lenp; |
| 1300 | const __be32 *parp; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 1301 | |
Markus Pargmann | f468b10 | 2013-10-04 14:44:39 +0200 | [diff] [blame] | 1302 | /* This is no slave child node, continue */ |
Rob Herring | bf5849f | 2018-12-05 13:50:32 -0600 | [diff] [blame] | 1303 | if (!of_node_name_eq(slave_node, "slave")) |
Markus Pargmann | f468b10 | 2013-10-04 14:44:39 +0200 | [diff] [blame] | 1304 | continue; |
| 1305 | |
Grygorii Strashko | 3ff1884 | 2018-11-25 18:15:25 -0600 | [diff] [blame] | 1306 | slave_data->ifphy = devm_of_phy_get(&pdev->dev, slave_node, |
| 1307 | NULL); |
| 1308 | if (!IS_ENABLED(CONFIG_TI_CPSW_PHY_SEL) && |
| 1309 | IS_ERR(slave_data->ifphy)) { |
| 1310 | ret = PTR_ERR(slave_data->ifphy); |
| 1311 | dev_err(&pdev->dev, |
| 1312 | "%d: Error retrieving port phy: %d\n", i, ret); |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1313 | goto err_node_put; |
Grygorii Strashko | 3ff1884 | 2018-11-25 18:15:25 -0600 | [diff] [blame] | 1314 | } |
| 1315 | |
Marek Vasut | 337d172 | 2019-06-23 14:11:43 +0200 | [diff] [blame] | 1316 | slave_data->slave_node = slave_node; |
David Rivshin | 552165b | 2016-04-27 21:25:25 -0400 | [diff] [blame] | 1317 | slave_data->phy_node = of_parse_phandle(slave_node, |
| 1318 | "phy-handle", 0); |
David Rivshin | f1eea5c | 2015-12-16 23:02:10 -0500 | [diff] [blame] | 1319 | parp = of_get_property(slave_node, "phy_id", &lenp); |
David Rivshin | ae092b5 | 2016-04-27 21:38:26 -0400 | [diff] [blame] | 1320 | if (slave_data->phy_node) { |
| 1321 | dev_dbg(&pdev->dev, |
Rob Herring | f7ce910 | 2017-07-18 16:43:19 -0500 | [diff] [blame] | 1322 | "slave[%d] using phy-handle=\"%pOF\"\n", |
| 1323 | i, slave_data->phy_node); |
David Rivshin | ae092b5 | 2016-04-27 21:38:26 -0400 | [diff] [blame] | 1324 | } else if (of_phy_is_fixed_link(slave_node)) { |
David Rivshin | dfc0a6d | 2015-12-16 23:02:11 -0500 | [diff] [blame] | 1325 | /* In the case of a fixed PHY, the DT node associated |
| 1326 | * to the PHY is the Ethernet MAC DT node. |
| 1327 | */ |
Markus Brunner | 1f71e8c | 2015-11-03 22:09:51 +0100 | [diff] [blame] | 1328 | ret = of_phy_register_fixed_link(slave_node); |
Johan Hovold | 23a0987 | 2016-11-17 17:40:04 +0100 | [diff] [blame] | 1329 | if (ret) { |
| 1330 | if (ret != -EPROBE_DEFER) |
| 1331 | dev_err(&pdev->dev, "failed to register fixed-link phy: %d\n", ret); |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1332 | goto err_node_put; |
Johan Hovold | 23a0987 | 2016-11-17 17:40:04 +0100 | [diff] [blame] | 1333 | } |
David Rivshin | 06cd6d6 | 2016-04-27 21:45:45 -0400 | [diff] [blame] | 1334 | slave_data->phy_node = of_node_get(slave_node); |
David Rivshin | f1eea5c | 2015-12-16 23:02:10 -0500 | [diff] [blame] | 1335 | } else if (parp) { |
| 1336 | u32 phyid; |
| 1337 | struct device_node *mdio_node; |
| 1338 | struct platform_device *mdio; |
| 1339 | |
| 1340 | if (lenp != (sizeof(__be32) * 2)) { |
| 1341 | dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i); |
| 1342 | goto no_phy_slave; |
| 1343 | } |
| 1344 | mdio_node = of_find_node_by_phandle(be32_to_cpup(parp)); |
| 1345 | phyid = be32_to_cpup(parp+1); |
| 1346 | mdio = of_find_device_by_node(mdio_node); |
| 1347 | of_node_put(mdio_node); |
| 1348 | if (!mdio) { |
| 1349 | dev_err(&pdev->dev, "Missing mdio platform device\n"); |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1350 | ret = -EINVAL; |
| 1351 | goto err_node_put; |
David Rivshin | f1eea5c | 2015-12-16 23:02:10 -0500 | [diff] [blame] | 1352 | } |
| 1353 | snprintf(slave_data->phy_id, sizeof(slave_data->phy_id), |
| 1354 | PHY_ID_FMT, mdio->name, phyid); |
Johan Hovold | 86e1d5a | 2016-11-17 17:39:59 +0100 | [diff] [blame] | 1355 | put_device(&mdio->dev); |
David Rivshin | f1eea5c | 2015-12-16 23:02:10 -0500 | [diff] [blame] | 1356 | } else { |
David Rivshin | ae092b5 | 2016-04-27 21:38:26 -0400 | [diff] [blame] | 1357 | dev_err(&pdev->dev, |
| 1358 | "No slave[%d] phy_id, phy-handle, or fixed-link property\n", |
| 1359 | i); |
Markus Brunner | 1f71e8c | 2015-11-03 22:09:51 +0100 | [diff] [blame] | 1360 | goto no_phy_slave; |
| 1361 | } |
Andrew Lunn | 0c65b2b | 2019-11-04 02:40:33 +0100 | [diff] [blame] | 1362 | ret = of_get_phy_mode(slave_node, &slave_data->phy_if); |
| 1363 | if (ret) { |
Mugunthan V N | 47276fc | 2014-10-24 18:51:33 +0530 | [diff] [blame] | 1364 | dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n", |
| 1365 | i); |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1366 | goto err_node_put; |
Mugunthan V N | 47276fc | 2014-10-24 18:51:33 +0530 | [diff] [blame] | 1367 | } |
| 1368 | |
| 1369 | no_phy_slave: |
Michael Walle | 83216e3 | 2021-04-12 19:47:17 +0200 | [diff] [blame] | 1370 | ret = of_get_mac_address(slave_node, slave_data->mac_addr); |
| 1371 | if (ret) { |
Mugunthan V N | b6745f6 | 2015-09-21 15:56:50 +0530 | [diff] [blame] | 1372 | ret = ti_cm_get_macid(&pdev->dev, i, |
| 1373 | slave_data->mac_addr); |
| 1374 | if (ret) |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1375 | goto err_node_put; |
Markus Pargmann | 0ba517b | 2014-09-29 08:53:17 +0200 | [diff] [blame] | 1376 | } |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1377 | if (data->dual_emac) { |
Mugunthan V N | 91c4166 | 2013-04-15 07:31:28 +0000 | [diff] [blame] | 1378 | if (of_property_read_u32(slave_node, "dual_emac_res_vlan", |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1379 | &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 1380 | dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n"); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1381 | slave_data->dual_emac_res_vlan = i+1; |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 1382 | dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n", |
| 1383 | slave_data->dual_emac_res_vlan, i); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1384 | } else { |
| 1385 | slave_data->dual_emac_res_vlan = prop; |
| 1386 | } |
| 1387 | } |
| 1388 | |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 1389 | i++; |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1390 | if (i == data->slaves) { |
| 1391 | ret = 0; |
| 1392 | goto err_node_put; |
| 1393 | } |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 1394 | } |
| 1395 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1396 | return 0; |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1397 | |
| 1398 | err_node_put: |
| 1399 | of_node_put(slave_node); |
| 1400 | return ret; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1401 | } |
| 1402 | |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1403 | static void cpsw_remove_dt(struct platform_device *pdev) |
| 1404 | { |
Ivan Khoronzhuk | bfe5903 | 2019-06-12 00:49:03 +0300 | [diff] [blame] | 1405 | struct cpsw_common *cpsw = platform_get_drvdata(pdev); |
Johan Hovold | 8cbcc46 | 2016-11-17 17:40:01 +0100 | [diff] [blame] | 1406 | struct cpsw_platform_data *data = &cpsw->data; |
| 1407 | struct device_node *node = pdev->dev.of_node; |
| 1408 | struct device_node *slave_node; |
| 1409 | int i = 0; |
| 1410 | |
| 1411 | for_each_available_child_of_node(node, slave_node) { |
| 1412 | struct cpsw_slave_data *slave_data = &data->slave_data[i]; |
| 1413 | |
Rob Herring | bf5849f | 2018-12-05 13:50:32 -0600 | [diff] [blame] | 1414 | if (!of_node_name_eq(slave_node, "slave")) |
Johan Hovold | 8cbcc46 | 2016-11-17 17:40:01 +0100 | [diff] [blame] | 1415 | continue; |
| 1416 | |
Johan Hovold | 3f65047 | 2016-11-28 19:24:55 +0100 | [diff] [blame] | 1417 | if (of_phy_is_fixed_link(slave_node)) |
| 1418 | of_phy_deregister_fixed_link(slave_node); |
Johan Hovold | 8cbcc46 | 2016-11-17 17:40:01 +0100 | [diff] [blame] | 1419 | |
| 1420 | of_node_put(slave_data->phy_node); |
| 1421 | |
| 1422 | i++; |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1423 | if (i == data->slaves) { |
| 1424 | of_node_put(slave_node); |
Johan Hovold | 8cbcc46 | 2016-11-17 17:40:01 +0100 | [diff] [blame] | 1425 | break; |
Nishka Dasgupta | 3cd6e20 | 2019-07-16 11:18:43 +0530 | [diff] [blame] | 1426 | } |
Johan Hovold | 8cbcc46 | 2016-11-17 17:40:01 +0100 | [diff] [blame] | 1427 | } |
| 1428 | |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1429 | of_platform_depopulate(&pdev->dev); |
| 1430 | } |
| 1431 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1432 | static int cpsw_probe_dual_emac(struct cpsw_priv *priv) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1433 | { |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1434 | struct cpsw_common *cpsw = priv->cpsw; |
| 1435 | struct cpsw_platform_data *data = &cpsw->data; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1436 | struct net_device *ndev; |
| 1437 | struct cpsw_priv *priv_sl2; |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 1438 | int ret = 0; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1439 | |
Grygorii Strashko | d183a94 | 2019-04-26 20:12:29 +0300 | [diff] [blame] | 1440 | ndev = devm_alloc_etherdev_mqs(cpsw->dev, sizeof(struct cpsw_priv), |
| 1441 | CPSW_MAX_QUEUES, CPSW_MAX_QUEUES); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1442 | if (!ndev) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1443 | dev_err(cpsw->dev, "cpsw: error allocating net_device\n"); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1444 | return -ENOMEM; |
| 1445 | } |
| 1446 | |
| 1447 | priv_sl2 = netdev_priv(ndev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1448 | priv_sl2->cpsw = cpsw; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1449 | priv_sl2->ndev = ndev; |
| 1450 | priv_sl2->dev = &ndev->dev; |
| 1451 | priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1452 | |
| 1453 | if (is_valid_ether_addr(data->slave_data[1].mac_addr)) { |
| 1454 | memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr, |
| 1455 | ETH_ALEN); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1456 | dev_info(cpsw->dev, "cpsw: Detected MACID = %pM\n", |
| 1457 | priv_sl2->mac_addr); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1458 | } else { |
Joe Perches | 6c1f0a1 | 2018-06-22 10:51:00 -0700 | [diff] [blame] | 1459 | eth_random_addr(priv_sl2->mac_addr); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1460 | dev_info(cpsw->dev, "cpsw: Random MACID = %pM\n", |
| 1461 | priv_sl2->mac_addr); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1462 | } |
Jakub Kicinski | a96d317 | 2021-10-01 14:32:20 -0700 | [diff] [blame] | 1463 | eth_hw_addr_set(ndev, priv_sl2->mac_addr); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1464 | |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1465 | priv_sl2->emac_port = 1; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1466 | cpsw->slaves[1].ndev = ndev; |
Ivan Khoronzhuk | 193736c | 2018-07-27 19:54:39 +0300 | [diff] [blame] | 1467 | ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1468 | |
| 1469 | ndev->netdev_ops = &cpsw_netdev_ops; |
Wilfried Klaebe | 7ad24ea | 2014-05-11 00:12:32 +0000 | [diff] [blame] | 1470 | ndev->ethtool_ops = &cpsw_ethtool_ops; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1471 | |
| 1472 | /* register the network device */ |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1473 | SET_NETDEV_DEV(ndev, cpsw->dev); |
Marek Vasut | 337d172 | 2019-06-23 14:11:43 +0200 | [diff] [blame] | 1474 | ndev->dev.of_node = cpsw->slaves[1].data->slave_node; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1475 | ret = register_netdev(ndev); |
Grygorii Strashko | d183a94 | 2019-04-26 20:12:29 +0300 | [diff] [blame] | 1476 | if (ret) |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1477 | dev_err(cpsw->dev, "cpsw: error registering net device\n"); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1478 | |
| 1479 | return ret; |
| 1480 | } |
| 1481 | |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 1482 | static const struct of_device_id cpsw_of_mtable[] = { |
Ivan Khoronzhuk | 9611d6d | 2018-05-17 01:21:45 +0300 | [diff] [blame] | 1483 | { .compatible = "ti,cpsw"}, |
| 1484 | { .compatible = "ti,am335x-cpsw"}, |
| 1485 | { .compatible = "ti,am4372-cpsw"}, |
| 1486 | { .compatible = "ti,dra7-cpsw"}, |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 1487 | { /* sentinel */ }, |
| 1488 | }; |
| 1489 | MODULE_DEVICE_TABLE(of, cpsw_of_mtable); |
| 1490 | |
Ivan Khoronzhuk | 9611d6d | 2018-05-17 01:21:45 +0300 | [diff] [blame] | 1491 | static const struct soc_device_attribute cpsw_soc_devices[] = { |
| 1492 | { .family = "AM33xx", .revision = "ES1.0"}, |
| 1493 | { /* sentinel */ } |
| 1494 | }; |
| 1495 | |
Bill Pemberton | 663e12e | 2012-12-03 09:23:45 -0500 | [diff] [blame] | 1496 | static int cpsw_probe(struct platform_device *pdev) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1497 | { |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1498 | struct device *dev = &pdev->dev; |
Ivan Khoronzhuk | ef4183a | 2016-08-10 02:22:35 +0300 | [diff] [blame] | 1499 | struct clk *clk; |
Sebastian Siewior | d1bd9ac | 2013-04-24 08:48:23 +0000 | [diff] [blame] | 1500 | struct cpsw_platform_data *data; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1501 | struct net_device *ndev; |
| 1502 | struct cpsw_priv *priv; |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1503 | void __iomem *ss_regs; |
YueHaibing | c8ace62 | 2019-08-21 20:48:50 +0800 | [diff] [blame] | 1504 | struct resource *ss_res; |
Mugunthan V N | 1d147cc | 2015-09-07 15:16:44 +0530 | [diff] [blame] | 1505 | struct gpio_descs *mode; |
Ivan Khoronzhuk | 9611d6d | 2018-05-17 01:21:45 +0300 | [diff] [blame] | 1506 | const struct soc_device_attribute *soc; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1507 | struct cpsw_common *cpsw; |
Grygorii Strashko | e6a8462 | 2019-04-26 20:12:39 +0300 | [diff] [blame] | 1508 | int ret = 0, ch; |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 1509 | int irq; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1510 | |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1511 | cpsw = devm_kzalloc(dev, sizeof(struct cpsw_common), GFP_KERNEL); |
Johan Hovold | 3420ea8 | 2016-11-17 17:40:03 +0100 | [diff] [blame] | 1512 | if (!cpsw) |
| 1513 | return -ENOMEM; |
| 1514 | |
Antoine Tenart | 2d683ea | 2019-08-21 16:41:23 +0200 | [diff] [blame] | 1515 | platform_set_drvdata(pdev, cpsw); |
Grygorii Strashko | 51a9533 | 2019-11-20 00:19:16 +0200 | [diff] [blame] | 1516 | cpsw_slave_index = cpsw_slave_index_priv; |
| 1517 | |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1518 | cpsw->dev = dev; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1519 | |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1520 | mode = devm_gpiod_get_array_optional(dev, "mode", GPIOD_OUT_LOW); |
Mugunthan V N | 1d147cc | 2015-09-07 15:16:44 +0530 | [diff] [blame] | 1521 | if (IS_ERR(mode)) { |
| 1522 | ret = PTR_ERR(mode); |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1523 | dev_err(dev, "gpio request failed, ret %d\n", ret); |
Grygorii Strashko | d183a94 | 2019-04-26 20:12:29 +0300 | [diff] [blame] | 1524 | return ret; |
Mugunthan V N | 1d147cc | 2015-09-07 15:16:44 +0530 | [diff] [blame] | 1525 | } |
| 1526 | |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1527 | clk = devm_clk_get(dev, "fck"); |
| 1528 | if (IS_ERR(clk)) { |
YueHaibing | ac97a35 | 2019-04-30 01:55:24 +0000 | [diff] [blame] | 1529 | ret = PTR_ERR(clk); |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1530 | dev_err(dev, "fck is not found %d\n", ret); |
| 1531 | return ret; |
| 1532 | } |
| 1533 | cpsw->bus_freq_mhz = clk_get_rate(clk) / 1000000; |
| 1534 | |
Yang Yingliang | aced6d3 | 2021-06-09 22:01:52 +0800 | [diff] [blame] | 1535 | ss_regs = devm_platform_get_and_ioremap_resource(pdev, 0, &ss_res); |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1536 | if (IS_ERR(ss_regs)) |
| 1537 | return PTR_ERR(ss_regs); |
| 1538 | cpsw->regs = ss_regs; |
| 1539 | |
YueHaibing | c8ace62 | 2019-08-21 20:48:50 +0800 | [diff] [blame] | 1540 | cpsw->wr_regs = devm_platform_ioremap_resource(pdev, 1); |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1541 | if (IS_ERR(cpsw->wr_regs)) |
| 1542 | return PTR_ERR(cpsw->wr_regs); |
| 1543 | |
| 1544 | /* RX IRQ */ |
| 1545 | irq = platform_get_irq(pdev, 1); |
| 1546 | if (irq < 0) |
| 1547 | return irq; |
| 1548 | cpsw->irqs_table[0] = irq; |
| 1549 | |
| 1550 | /* TX IRQ */ |
| 1551 | irq = platform_get_irq(pdev, 2); |
| 1552 | if (irq < 0) |
| 1553 | return irq; |
| 1554 | cpsw->irqs_table[1] = irq; |
| 1555 | |
Grygorii Strashko | 84ea9c0 | 2020-04-23 17:20:22 +0300 | [diff] [blame] | 1556 | /* get misc irq*/ |
| 1557 | irq = platform_get_irq(pdev, 3); |
| 1558 | if (irq <= 0) |
| 1559 | return irq; |
| 1560 | cpsw->misc_irq = irq; |
| 1561 | |
Vaibhav Hiremath | 1fb19aa | 2012-11-14 09:07:55 +0000 | [diff] [blame] | 1562 | /* |
| 1563 | * This may be required here for child devices. |
| 1564 | */ |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1565 | pm_runtime_enable(dev); |
Vaibhav Hiremath | 1fb19aa | 2012-11-14 09:07:55 +0000 | [diff] [blame] | 1566 | |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1567 | /* Need to enable clocks with runtime PM api to access module |
| 1568 | * registers |
| 1569 | */ |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1570 | ret = pm_runtime_get_sync(dev); |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1571 | if (ret < 0) { |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1572 | pm_runtime_put_noidle(dev); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1573 | goto clean_runtime_disable_ret; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 1574 | } |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1575 | |
Johan Hovold | 23a0987 | 2016-11-17 17:40:04 +0100 | [diff] [blame] | 1576 | ret = cpsw_probe_dt(&cpsw->data, pdev); |
| 1577 | if (ret) |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1578 | goto clean_dt_ret; |
Johan Hovold | 23a0987 | 2016-11-17 17:40:04 +0100 | [diff] [blame] | 1579 | |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1580 | soc = soc_device_match(cpsw_soc_devices); |
| 1581 | if (soc) |
Jason Yan | a78766d | 2020-09-19 15:46:17 +0800 | [diff] [blame] | 1582 | cpsw->quirk_irq = true; |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1583 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1584 | data = &cpsw->data; |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1585 | cpsw->slaves = devm_kcalloc(dev, |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 1586 | data->slaves, sizeof(struct cpsw_slave), |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1587 | GFP_KERNEL); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1588 | if (!cpsw->slaves) { |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1589 | ret = -ENOMEM; |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1590 | goto clean_dt_ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1591 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1592 | |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1593 | cpsw->rx_packet_max = max(rx_packet_max, CPSW_MAX_PACKET_SIZE); |
Grygorii Strashko | c24eef2 | 2019-04-26 20:12:42 +0300 | [diff] [blame] | 1594 | cpsw->descs_pool_size = descs_pool_size; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1595 | |
Grygorii Strashko | e6a8462 | 2019-04-26 20:12:39 +0300 | [diff] [blame] | 1596 | ret = cpsw_init_common(cpsw, ss_regs, ale_ageout, |
| 1597 | ss_res->start + CPSW2_BD_OFFSET, |
| 1598 | descs_pool_size); |
| 1599 | if (ret) |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1600 | goto clean_dt_ret; |
Grygorii Strashko | 8a2c9a5 | 2016-12-06 18:00:41 -0600 | [diff] [blame] | 1601 | |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1602 | ch = cpsw->quirk_irq ? 0 : 7; |
| 1603 | cpsw->txv[0].ch = cpdma_chan_create(cpsw->dma, ch, cpsw_tx_handler, 0); |
| 1604 | if (IS_ERR(cpsw->txv[0].ch)) { |
| 1605 | dev_err(dev, "error initializing tx dma channel\n"); |
| 1606 | ret = PTR_ERR(cpsw->txv[0].ch); |
| 1607 | goto clean_cpts; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1608 | } |
| 1609 | |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1610 | cpsw->rxv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_rx_handler, 1); |
| 1611 | if (IS_ERR(cpsw->rxv[0].ch)) { |
| 1612 | dev_err(dev, "error initializing rx dma channel\n"); |
| 1613 | ret = PTR_ERR(cpsw->rxv[0].ch); |
| 1614 | goto clean_cpts; |
| 1615 | } |
| 1616 | cpsw_split_res(cpsw); |
| 1617 | |
| 1618 | /* setup netdev */ |
| 1619 | ndev = devm_alloc_etherdev_mqs(dev, sizeof(struct cpsw_priv), |
| 1620 | CPSW_MAX_QUEUES, CPSW_MAX_QUEUES); |
| 1621 | if (!ndev) { |
| 1622 | dev_err(dev, "error allocating net_device\n"); |
Zhang Changzhong | 35f735c | 2020-11-13 14:49:33 +0800 | [diff] [blame] | 1623 | ret = -ENOMEM; |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1624 | goto clean_cpts; |
| 1625 | } |
| 1626 | |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1627 | priv = netdev_priv(ndev); |
| 1628 | priv->cpsw = cpsw; |
| 1629 | priv->ndev = ndev; |
| 1630 | priv->dev = dev; |
| 1631 | priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG); |
| 1632 | priv->emac_port = 0; |
| 1633 | |
| 1634 | if (is_valid_ether_addr(data->slave_data[0].mac_addr)) { |
| 1635 | memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN); |
| 1636 | dev_info(dev, "Detected MACID = %pM\n", priv->mac_addr); |
| 1637 | } else { |
| 1638 | eth_random_addr(priv->mac_addr); |
| 1639 | dev_info(dev, "Random MACID = %pM\n", priv->mac_addr); |
| 1640 | } |
| 1641 | |
Jakub Kicinski | a96d317 | 2021-10-01 14:32:20 -0700 | [diff] [blame] | 1642 | eth_hw_addr_set(ndev, priv->mac_addr); |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1643 | |
| 1644 | cpsw->slaves[0].ndev = ndev; |
| 1645 | |
Grygorii Strashko | a3a41d2 | 2018-03-15 15:15:50 -0500 | [diff] [blame] | 1646 | ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX; |
Keerthy | 070f9c6 | 2017-07-20 16:59:52 +0530 | [diff] [blame] | 1647 | |
| 1648 | ndev->netdev_ops = &cpsw_netdev_ops; |
| 1649 | ndev->ethtool_ops = &cpsw_ethtool_ops; |
Ivan Khoronzhuk | 9611d6d | 2018-05-17 01:21:45 +0300 | [diff] [blame] | 1650 | netif_napi_add(ndev, &cpsw->napi_rx, |
| 1651 | cpsw->quirk_irq ? cpsw_rx_poll : cpsw_rx_mq_poll, |
| 1652 | CPSW_POLL_WEIGHT); |
| 1653 | netif_tx_napi_add(ndev, &cpsw->napi_tx, |
| 1654 | cpsw->quirk_irq ? cpsw_tx_poll : cpsw_tx_mq_poll, |
| 1655 | CPSW_POLL_WEIGHT); |
Keerthy | 070f9c6 | 2017-07-20 16:59:52 +0530 | [diff] [blame] | 1656 | |
| 1657 | /* register the network device */ |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1658 | SET_NETDEV_DEV(ndev, dev); |
Marek Vasut | 337d172 | 2019-06-23 14:11:43 +0200 | [diff] [blame] | 1659 | ndev->dev.of_node = cpsw->slaves[0].data->slave_node; |
Keerthy | 070f9c6 | 2017-07-20 16:59:52 +0530 | [diff] [blame] | 1660 | ret = register_netdev(ndev); |
| 1661 | if (ret) { |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1662 | dev_err(dev, "error registering net device\n"); |
Keerthy | 070f9c6 | 2017-07-20 16:59:52 +0530 | [diff] [blame] | 1663 | ret = -ENODEV; |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1664 | goto clean_cpts; |
Keerthy | 070f9c6 | 2017-07-20 16:59:52 +0530 | [diff] [blame] | 1665 | } |
| 1666 | |
| 1667 | if (cpsw->data.dual_emac) { |
| 1668 | ret = cpsw_probe_dual_emac(priv); |
| 1669 | if (ret) { |
| 1670 | cpsw_err(priv, probe, "error probe slave 2 emac interface\n"); |
| 1671 | goto clean_unregister_netdev_ret; |
| 1672 | } |
| 1673 | } |
| 1674 | |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 1675 | /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and |
| 1676 | * MISC IRQs which are always kept disabled with this driver so |
| 1677 | * we will not request them. |
| 1678 | * |
| 1679 | * If anyone wants to implement support for those, make sure to |
| 1680 | * first request and append them to irqs_table array. |
| 1681 | */ |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1682 | ret = devm_request_irq(dev, cpsw->irqs_table[0], cpsw_rx_interrupt, |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1683 | 0, dev_name(dev), cpsw); |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 1684 | if (ret < 0) { |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1685 | dev_err(dev, "error attaching irq (%d)\n", ret); |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1686 | goto clean_unregister_netdev_ret; |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 1687 | } |
| 1688 | |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 1689 | |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1690 | ret = devm_request_irq(dev, cpsw->irqs_table[1], cpsw_tx_interrupt, |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 1691 | 0, dev_name(&pdev->dev), cpsw); |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 1692 | if (ret < 0) { |
Grygorii Strashko | c8fb566 | 2019-04-26 20:12:27 +0300 | [diff] [blame] | 1693 | dev_err(dev, "error attaching irq (%d)\n", ret); |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1694 | goto clean_unregister_netdev_ret; |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 1695 | } |
Daniel Mack | c2b32e5 | 2014-09-04 09:00:23 +0200 | [diff] [blame] | 1696 | |
Grygorii Strashko | 84ea9c0 | 2020-04-23 17:20:22 +0300 | [diff] [blame] | 1697 | if (!cpsw->cpts) |
| 1698 | goto skip_cpts; |
| 1699 | |
| 1700 | ret = devm_request_irq(&pdev->dev, cpsw->misc_irq, cpsw_misc_interrupt, |
| 1701 | 0, dev_name(&pdev->dev), cpsw); |
| 1702 | if (ret < 0) { |
| 1703 | dev_err(dev, "error attaching misc irq (%d)\n", ret); |
| 1704 | goto clean_unregister_netdev_ret; |
| 1705 | } |
| 1706 | |
| 1707 | /* Enable misc CPTS evnt_pend IRQ */ |
| 1708 | cpts_set_irqpoll(cpsw->cpts, false); |
Grygorii Strashko | 84ea9c0 | 2020-04-23 17:20:22 +0300 | [diff] [blame] | 1709 | |
| 1710 | skip_cpts: |
Grygorii Strashko | 90225bf | 2017-01-06 14:07:33 -0600 | [diff] [blame] | 1711 | cpsw_notice(priv, probe, |
| 1712 | "initialized device (regs %pa, irq %d, pool size %d)\n", |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1713 | &ss_res->start, cpsw->irqs_table[0], descs_pool_size); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1714 | |
Johan Hovold | c46ab7e | 2016-11-17 17:39:58 +0100 | [diff] [blame] | 1715 | pm_runtime_put(&pdev->dev); |
| 1716 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1717 | return 0; |
| 1718 | |
Johan Hovold | a7fe9d4 | 2016-11-17 17:40:02 +0100 | [diff] [blame] | 1719 | clean_unregister_netdev_ret: |
| 1720 | unregister_netdev(ndev); |
Grygorii Strashko | 83a8471 | 2019-04-26 20:12:36 +0300 | [diff] [blame] | 1721 | clean_cpts: |
| 1722 | cpts_release(cpsw->cpts); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1723 | cpdma_ctlr_destroy(cpsw->dma); |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1724 | clean_dt_ret: |
| 1725 | cpsw_remove_dt(pdev); |
Johan Hovold | c46ab7e | 2016-11-17 17:39:58 +0100 | [diff] [blame] | 1726 | pm_runtime_put_sync(&pdev->dev); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 1727 | clean_runtime_disable_ret: |
Mugunthan V N | f150bd7 | 2012-07-17 08:09:50 +0000 | [diff] [blame] | 1728 | pm_runtime_disable(&pdev->dev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1729 | return ret; |
| 1730 | } |
| 1731 | |
Bill Pemberton | 663e12e | 2012-12-03 09:23:45 -0500 | [diff] [blame] | 1732 | static int cpsw_remove(struct platform_device *pdev) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1733 | { |
Ivan Khoronzhuk | bfe5903 | 2019-06-12 00:49:03 +0300 | [diff] [blame] | 1734 | struct cpsw_common *cpsw = platform_get_drvdata(pdev); |
| 1735 | int i, ret; |
Grygorii Strashko | 8a0b6dc | 2016-07-28 20:50:35 +0300 | [diff] [blame] | 1736 | |
| 1737 | ret = pm_runtime_get_sync(&pdev->dev); |
| 1738 | if (ret < 0) { |
| 1739 | pm_runtime_put_noidle(&pdev->dev); |
| 1740 | return ret; |
| 1741 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1742 | |
Ivan Khoronzhuk | bfe5903 | 2019-06-12 00:49:03 +0300 | [diff] [blame] | 1743 | for (i = 0; i < cpsw->data.slaves; i++) |
| 1744 | if (cpsw->slaves[i].ndev) |
| 1745 | unregister_netdev(cpsw->slaves[i].ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1746 | |
Grygorii Strashko | 8a2c9a5 | 2016-12-06 18:00:41 -0600 | [diff] [blame] | 1747 | cpts_release(cpsw->cpts); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1748 | cpdma_ctlr_destroy(cpsw->dma); |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 1749 | cpsw_remove_dt(pdev); |
Grygorii Strashko | 8a0b6dc | 2016-07-28 20:50:35 +0300 | [diff] [blame] | 1750 | pm_runtime_put_sync(&pdev->dev); |
| 1751 | pm_runtime_disable(&pdev->dev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1752 | return 0; |
| 1753 | } |
| 1754 | |
Grygorii Strashko | 8963a50 | 2015-02-27 13:19:45 +0200 | [diff] [blame] | 1755 | #ifdef CONFIG_PM_SLEEP |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1756 | static int cpsw_suspend(struct device *dev) |
| 1757 | { |
Keerthy | 2f9b0d9 | 2019-06-24 10:46:19 +0530 | [diff] [blame] | 1758 | struct cpsw_common *cpsw = dev_get_drvdata(dev); |
| 1759 | int i; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1760 | |
Grygorii Strashko | 4c64b83 | 2020-05-22 20:09:28 +0300 | [diff] [blame] | 1761 | rtnl_lock(); |
| 1762 | |
Keerthy | 2f9b0d9 | 2019-06-24 10:46:19 +0530 | [diff] [blame] | 1763 | for (i = 0; i < cpsw->data.slaves; i++) |
| 1764 | if (cpsw->slaves[i].ndev) |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1765 | if (netif_running(cpsw->slaves[i].ndev)) |
| 1766 | cpsw_ndo_stop(cpsw->slaves[i].ndev); |
Daniel Mack | 1e7a2e2 | 2013-11-15 08:29:16 +0100 | [diff] [blame] | 1767 | |
Grygorii Strashko | 4c64b83 | 2020-05-22 20:09:28 +0300 | [diff] [blame] | 1768 | rtnl_unlock(); |
| 1769 | |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 1770 | /* Select sleep pin state */ |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1771 | pinctrl_pm_select_sleep_state(dev); |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 1772 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1773 | return 0; |
| 1774 | } |
| 1775 | |
| 1776 | static int cpsw_resume(struct device *dev) |
| 1777 | { |
Keerthy | 2f9b0d9 | 2019-06-24 10:46:19 +0530 | [diff] [blame] | 1778 | struct cpsw_common *cpsw = dev_get_drvdata(dev); |
| 1779 | int i; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1780 | |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 1781 | /* Select default pin state */ |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1782 | pinctrl_pm_select_default_state(dev); |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 1783 | |
Grygorii Strashko | 4ccfd63 | 2016-11-29 16:27:03 -0600 | [diff] [blame] | 1784 | /* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */ |
| 1785 | rtnl_lock(); |
Mugunthan V N | 618073e | 2014-09-11 22:52:38 +0530 | [diff] [blame] | 1786 | |
Keerthy | 2f9b0d9 | 2019-06-24 10:46:19 +0530 | [diff] [blame] | 1787 | for (i = 0; i < cpsw->data.slaves; i++) |
| 1788 | if (cpsw->slaves[i].ndev) |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1789 | if (netif_running(cpsw->slaves[i].ndev)) |
| 1790 | cpsw_ndo_open(cpsw->slaves[i].ndev); |
Keerthy | 2f9b0d9 | 2019-06-24 10:46:19 +0530 | [diff] [blame] | 1791 | |
Grygorii Strashko | 4ccfd63 | 2016-11-29 16:27:03 -0600 | [diff] [blame] | 1792 | rtnl_unlock(); |
| 1793 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1794 | return 0; |
| 1795 | } |
Grygorii Strashko | 8963a50 | 2015-02-27 13:19:45 +0200 | [diff] [blame] | 1796 | #endif |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1797 | |
Grygorii Strashko | 8963a50 | 2015-02-27 13:19:45 +0200 | [diff] [blame] | 1798 | static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1799 | |
| 1800 | static struct platform_driver cpsw_driver = { |
| 1801 | .driver = { |
| 1802 | .name = "cpsw", |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1803 | .pm = &cpsw_pm_ops, |
Sachin Kamat | 1e5c76d | 2013-09-30 09:55:12 +0530 | [diff] [blame] | 1804 | .of_match_table = cpsw_of_mtable, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1805 | }, |
| 1806 | .probe = cpsw_probe, |
Bill Pemberton | 663e12e | 2012-12-03 09:23:45 -0500 | [diff] [blame] | 1807 | .remove = cpsw_remove, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1808 | }; |
| 1809 | |
Grygorii Strashko | 6fb3b6b5 | 2015-10-23 14:41:12 +0300 | [diff] [blame] | 1810 | module_platform_driver(cpsw_driver); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1811 | |
| 1812 | MODULE_LICENSE("GPL"); |
| 1813 | MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>"); |
| 1814 | MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>"); |
| 1815 | MODULE_DESCRIPTION("TI CPSW Ethernet driver"); |