Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Texas Instruments Ethernet Switch Driver |
| 3 | * |
| 4 | * Copyright (C) 2012 Texas Instruments |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation version 2. |
| 9 | * |
| 10 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 11 | * kind, whether express or implied; without even the implied warranty |
| 12 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/io.h> |
| 18 | #include <linux/clk.h> |
| 19 | #include <linux/timer.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/irqreturn.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/if_ether.h> |
| 25 | #include <linux/etherdevice.h> |
| 26 | #include <linux/netdevice.h> |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 27 | #include <linux/net_tstamp.h> |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 28 | #include <linux/phy.h> |
| 29 | #include <linux/workqueue.h> |
| 30 | #include <linux/delay.h> |
Mugunthan V N | f150bd7 | 2012-07-17 08:09:50 +0000 | [diff] [blame] | 31 | #include <linux/pm_runtime.h> |
Mugunthan V N | 1d147cc | 2015-09-07 15:16:44 +0530 | [diff] [blame] | 32 | #include <linux/gpio.h> |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 33 | #include <linux/of.h> |
Heiko Schocher | 9e42f71 | 2015-10-17 06:04:35 +0200 | [diff] [blame] | 34 | #include <linux/of_mdio.h> |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 35 | #include <linux/of_net.h> |
| 36 | #include <linux/of_device.h> |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 37 | #include <linux/if_vlan.h> |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 38 | |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 39 | #include <linux/pinctrl/consumer.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" |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 43 | #include "cpts.h" |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 44 | #include "davinci_cpdma.h" |
| 45 | |
| 46 | #define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \ |
| 47 | NETIF_MSG_DRV | NETIF_MSG_LINK | \ |
| 48 | NETIF_MSG_IFUP | NETIF_MSG_INTR | \ |
| 49 | NETIF_MSG_PROBE | NETIF_MSG_TIMER | \ |
| 50 | NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \ |
| 51 | NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \ |
| 52 | NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \ |
| 53 | NETIF_MSG_RX_STATUS) |
| 54 | |
| 55 | #define cpsw_info(priv, type, format, ...) \ |
| 56 | do { \ |
| 57 | if (netif_msg_##type(priv) && net_ratelimit()) \ |
| 58 | dev_info(priv->dev, format, ## __VA_ARGS__); \ |
| 59 | } while (0) |
| 60 | |
| 61 | #define cpsw_err(priv, type, format, ...) \ |
| 62 | do { \ |
| 63 | if (netif_msg_##type(priv) && net_ratelimit()) \ |
| 64 | dev_err(priv->dev, format, ## __VA_ARGS__); \ |
| 65 | } while (0) |
| 66 | |
| 67 | #define cpsw_dbg(priv, type, format, ...) \ |
| 68 | do { \ |
| 69 | if (netif_msg_##type(priv) && net_ratelimit()) \ |
| 70 | dev_dbg(priv->dev, format, ## __VA_ARGS__); \ |
| 71 | } while (0) |
| 72 | |
| 73 | #define cpsw_notice(priv, type, format, ...) \ |
| 74 | do { \ |
| 75 | if (netif_msg_##type(priv) && net_ratelimit()) \ |
| 76 | dev_notice(priv->dev, format, ## __VA_ARGS__); \ |
| 77 | } while (0) |
| 78 | |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 79 | #define ALE_ALL_PORTS 0x7 |
| 80 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 81 | #define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7) |
| 82 | #define CPSW_MINOR_VERSION(reg) (reg & 0xff) |
| 83 | #define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f) |
| 84 | |
Richard Cochran | e90cfac | 2012-10-29 08:45:14 +0000 | [diff] [blame] | 85 | #define CPSW_VERSION_1 0x19010a |
| 86 | #define CPSW_VERSION_2 0x19010c |
Mugunthan V N | c193f36 | 2013-08-05 17:30:05 +0530 | [diff] [blame] | 87 | #define CPSW_VERSION_3 0x19010f |
Mugunthan V N | 926489b | 2013-08-12 17:11:15 +0530 | [diff] [blame] | 88 | #define CPSW_VERSION_4 0x190112 |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 89 | |
| 90 | #define HOST_PORT_NUM 0 |
| 91 | #define SLIVER_SIZE 0x40 |
| 92 | |
| 93 | #define CPSW1_HOST_PORT_OFFSET 0x028 |
| 94 | #define CPSW1_SLAVE_OFFSET 0x050 |
| 95 | #define CPSW1_SLAVE_SIZE 0x040 |
| 96 | #define CPSW1_CPDMA_OFFSET 0x100 |
| 97 | #define CPSW1_STATERAM_OFFSET 0x200 |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 98 | #define CPSW1_HW_STATS 0x400 |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 99 | #define CPSW1_CPTS_OFFSET 0x500 |
| 100 | #define CPSW1_ALE_OFFSET 0x600 |
| 101 | #define CPSW1_SLIVER_OFFSET 0x700 |
| 102 | |
| 103 | #define CPSW2_HOST_PORT_OFFSET 0x108 |
| 104 | #define CPSW2_SLAVE_OFFSET 0x200 |
| 105 | #define CPSW2_SLAVE_SIZE 0x100 |
| 106 | #define CPSW2_CPDMA_OFFSET 0x800 |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 107 | #define CPSW2_HW_STATS 0x900 |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 108 | #define CPSW2_STATERAM_OFFSET 0xa00 |
| 109 | #define CPSW2_CPTS_OFFSET 0xc00 |
| 110 | #define CPSW2_ALE_OFFSET 0xd00 |
| 111 | #define CPSW2_SLIVER_OFFSET 0xd80 |
| 112 | #define CPSW2_BD_OFFSET 0x2000 |
| 113 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 114 | #define CPDMA_RXTHRESH 0x0c0 |
| 115 | #define CPDMA_RXFREE 0x0e0 |
| 116 | #define CPDMA_TXHDP 0x00 |
| 117 | #define CPDMA_RXHDP 0x20 |
| 118 | #define CPDMA_TXCP 0x40 |
| 119 | #define CPDMA_RXCP 0x60 |
| 120 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 121 | #define CPSW_POLL_WEIGHT 64 |
| 122 | #define CPSW_MIN_PACKET_SIZE 60 |
| 123 | #define CPSW_MAX_PACKET_SIZE (1500 + 14 + 4 + 4) |
| 124 | |
| 125 | #define RX_PRIORITY_MAPPING 0x76543210 |
| 126 | #define TX_PRIORITY_MAPPING 0x33221100 |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 127 | #define CPDMA_TX_PRIORITY_MAP 0x01234567 |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 128 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 129 | #define CPSW_VLAN_AWARE BIT(1) |
| 130 | #define CPSW_ALE_VLAN_AWARE 1 |
| 131 | |
John Ogness | 35717d8 | 2014-11-14 15:42:52 +0100 | [diff] [blame] | 132 | #define CPSW_FIFO_NORMAL_MODE (0 << 16) |
| 133 | #define CPSW_FIFO_DUAL_MAC_MODE (1 << 16) |
| 134 | #define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 135 | |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 136 | #define CPSW_INTPACEEN (0x3f << 16) |
| 137 | #define CPSW_INTPRESCALE_MASK (0x7FF << 0) |
| 138 | #define CPSW_CMINTMAX_CNT 63 |
| 139 | #define CPSW_CMINTMIN_CNT 2 |
| 140 | #define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT) |
| 141 | #define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1) |
| 142 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 143 | #define cpsw_slave_index(cpsw, priv) \ |
| 144 | ((cpsw->data.dual_emac) ? priv->emac_port : \ |
| 145 | cpsw->data.active_slave) |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 146 | #define IRQ_NUM 2 |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 147 | #define CPSW_MAX_QUEUES 8 |
Grygorii Strashko | 90225bf | 2017-01-06 14:07:33 -0600 | [diff] [blame] | 148 | #define CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT 256 |
Mugunthan V N | d3bb9c5 | 2013-03-11 23:16:36 +0000 | [diff] [blame] | 149 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 150 | static int debug_level; |
| 151 | module_param(debug_level, int, 0); |
| 152 | MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)"); |
| 153 | |
| 154 | static int ale_ageout = 10; |
| 155 | module_param(ale_ageout, int, 0); |
| 156 | MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)"); |
| 157 | |
| 158 | static int rx_packet_max = CPSW_MAX_PACKET_SIZE; |
| 159 | module_param(rx_packet_max, int, 0); |
| 160 | MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)"); |
| 161 | |
Grygorii Strashko | 90225bf | 2017-01-06 14:07:33 -0600 | [diff] [blame] | 162 | static int descs_pool_size = CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT; |
| 163 | module_param(descs_pool_size, int, 0444); |
| 164 | MODULE_PARM_DESC(descs_pool_size, "Number of CPDMA CPPI descriptors in pool"); |
| 165 | |
Richard Cochran | 996a5c2 | 2012-10-29 08:45:12 +0000 | [diff] [blame] | 166 | struct cpsw_wr_regs { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 167 | u32 id_ver; |
| 168 | u32 soft_reset; |
| 169 | u32 control; |
| 170 | u32 int_control; |
| 171 | u32 rx_thresh_en; |
| 172 | u32 rx_en; |
| 173 | u32 tx_en; |
| 174 | u32 misc_en; |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 175 | u32 mem_allign1[8]; |
| 176 | u32 rx_thresh_stat; |
| 177 | u32 rx_stat; |
| 178 | u32 tx_stat; |
| 179 | u32 misc_stat; |
| 180 | u32 mem_allign2[8]; |
| 181 | u32 rx_imax; |
| 182 | u32 tx_imax; |
| 183 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 184 | }; |
| 185 | |
Richard Cochran | 996a5c2 | 2012-10-29 08:45:12 +0000 | [diff] [blame] | 186 | struct cpsw_ss_regs { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 187 | u32 id_ver; |
| 188 | u32 control; |
| 189 | u32 soft_reset; |
| 190 | u32 stat_port_en; |
| 191 | u32 ptype; |
Richard Cochran | bd357af | 2012-10-29 08:45:13 +0000 | [diff] [blame] | 192 | u32 soft_idle; |
| 193 | u32 thru_rate; |
| 194 | u32 gap_thresh; |
| 195 | u32 tx_start_wds; |
| 196 | u32 flow_control; |
| 197 | u32 vlan_ltype; |
| 198 | u32 ts_ltype; |
| 199 | u32 dlr_ltype; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 200 | }; |
| 201 | |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 202 | /* CPSW_PORT_V1 */ |
| 203 | #define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */ |
| 204 | #define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */ |
| 205 | #define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */ |
| 206 | #define CPSW1_PORT_VLAN 0x0c /* VLAN Register */ |
| 207 | #define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */ |
| 208 | #define CPSW1_TS_CTL 0x14 /* Time Sync Control */ |
| 209 | #define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */ |
| 210 | #define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */ |
| 211 | |
| 212 | /* CPSW_PORT_V2 */ |
| 213 | #define CPSW2_CONTROL 0x00 /* Control Register */ |
| 214 | #define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */ |
| 215 | #define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */ |
| 216 | #define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */ |
| 217 | #define CPSW2_PORT_VLAN 0x14 /* VLAN Register */ |
| 218 | #define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */ |
| 219 | #define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */ |
| 220 | |
| 221 | /* CPSW_PORT_V1 and V2 */ |
| 222 | #define SA_LO 0x20 /* CPGMAC_SL Source Address Low */ |
| 223 | #define SA_HI 0x24 /* CPGMAC_SL Source Address High */ |
| 224 | #define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */ |
| 225 | |
| 226 | /* CPSW_PORT_V2 only */ |
| 227 | #define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */ |
| 228 | #define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */ |
| 229 | #define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */ |
| 230 | #define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */ |
| 231 | #define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */ |
| 232 | #define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */ |
| 233 | #define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */ |
| 234 | #define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */ |
| 235 | |
| 236 | /* Bit definitions for the CPSW2_CONTROL register */ |
| 237 | #define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */ |
| 238 | #define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */ |
| 239 | #define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */ |
| 240 | #define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */ |
| 241 | #define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */ |
| 242 | #define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */ |
| 243 | #define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */ |
| 244 | #define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */ |
| 245 | #define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */ |
| 246 | #define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */ |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 247 | #define TS_TTL_NONZERO (1<<8) /* Time Sync Time To Live Non-zero enable */ |
| 248 | #define TS_ANNEX_F_EN (1<<6) /* Time Sync Annex F enable */ |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 249 | #define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */ |
| 250 | #define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */ |
| 251 | #define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */ |
| 252 | #define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */ |
| 253 | #define TS_RX_EN (1<<0) /* Time Sync Receive Enable */ |
| 254 | |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 255 | #define CTRL_V2_TS_BITS \ |
| 256 | (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\ |
| 257 | TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN) |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 258 | |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 259 | #define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN) |
| 260 | #define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN) |
| 261 | #define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN) |
| 262 | |
| 263 | |
| 264 | #define CTRL_V3_TS_BITS \ |
| 265 | (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\ |
| 266 | TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\ |
| 267 | TS_LTYPE1_EN) |
| 268 | |
| 269 | #define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN) |
| 270 | #define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN) |
| 271 | #define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN) |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 272 | |
| 273 | /* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */ |
| 274 | #define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */ |
| 275 | #define TS_SEQ_ID_OFFSET_MASK (0x3f) |
| 276 | #define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */ |
| 277 | #define TS_MSG_TYPE_EN_MASK (0xffff) |
| 278 | |
| 279 | /* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */ |
| 280 | #define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3)) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 281 | |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 282 | /* Bit definitions for the CPSW1_TS_CTL register */ |
| 283 | #define CPSW_V1_TS_RX_EN BIT(0) |
| 284 | #define CPSW_V1_TS_TX_EN BIT(4) |
| 285 | #define CPSW_V1_MSG_TYPE_OFS 16 |
| 286 | |
| 287 | /* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */ |
| 288 | #define CPSW_V1_SEQ_ID_OFS_SHIFT 16 |
| 289 | |
Grygorii Strashko | 48f5bcc | 2017-05-08 14:21:21 -0500 | [diff] [blame^] | 290 | #define CPSW_MAX_BLKS_TX 15 |
| 291 | #define CPSW_MAX_BLKS_TX_SHIFT 4 |
| 292 | #define CPSW_MAX_BLKS_RX 5 |
| 293 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 294 | struct cpsw_host_regs { |
| 295 | u32 max_blks; |
| 296 | u32 blk_cnt; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 297 | u32 tx_in_ctl; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 298 | u32 port_vlan; |
| 299 | u32 tx_pri_map; |
| 300 | u32 cpdma_tx_pri_map; |
| 301 | u32 cpdma_rx_chan_map; |
| 302 | }; |
| 303 | |
| 304 | struct cpsw_sliver_regs { |
| 305 | u32 id_ver; |
| 306 | u32 mac_control; |
| 307 | u32 mac_status; |
| 308 | u32 soft_reset; |
| 309 | u32 rx_maxlen; |
| 310 | u32 __reserved_0; |
| 311 | u32 rx_pause; |
| 312 | u32 tx_pause; |
| 313 | u32 __reserved_1; |
| 314 | u32 rx_pri_map; |
| 315 | }; |
| 316 | |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 317 | struct cpsw_hw_stats { |
| 318 | u32 rxgoodframes; |
| 319 | u32 rxbroadcastframes; |
| 320 | u32 rxmulticastframes; |
| 321 | u32 rxpauseframes; |
| 322 | u32 rxcrcerrors; |
| 323 | u32 rxaligncodeerrors; |
| 324 | u32 rxoversizedframes; |
| 325 | u32 rxjabberframes; |
| 326 | u32 rxundersizedframes; |
| 327 | u32 rxfragments; |
| 328 | u32 __pad_0[2]; |
| 329 | u32 rxoctets; |
| 330 | u32 txgoodframes; |
| 331 | u32 txbroadcastframes; |
| 332 | u32 txmulticastframes; |
| 333 | u32 txpauseframes; |
| 334 | u32 txdeferredframes; |
| 335 | u32 txcollisionframes; |
| 336 | u32 txsinglecollframes; |
| 337 | u32 txmultcollframes; |
| 338 | u32 txexcessivecollisions; |
| 339 | u32 txlatecollisions; |
| 340 | u32 txunderrun; |
| 341 | u32 txcarriersenseerrors; |
| 342 | u32 txoctets; |
| 343 | u32 octetframes64; |
| 344 | u32 octetframes65t127; |
| 345 | u32 octetframes128t255; |
| 346 | u32 octetframes256t511; |
| 347 | u32 octetframes512t1023; |
| 348 | u32 octetframes1024tup; |
| 349 | u32 netoctets; |
| 350 | u32 rxsofoverruns; |
| 351 | u32 rxmofoverruns; |
| 352 | u32 rxdmaoverruns; |
| 353 | }; |
| 354 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 355 | struct cpsw_slave { |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 356 | void __iomem *regs; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 357 | struct cpsw_sliver_regs __iomem *sliver; |
| 358 | int slave_num; |
| 359 | u32 mac_control; |
| 360 | struct cpsw_slave_data *data; |
| 361 | struct phy_device *phy; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 362 | struct net_device *ndev; |
| 363 | u32 port_vlan; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 364 | }; |
| 365 | |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 366 | static inline u32 slave_read(struct cpsw_slave *slave, u32 offset) |
| 367 | { |
| 368 | return __raw_readl(slave->regs + offset); |
| 369 | } |
| 370 | |
| 371 | static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset) |
| 372 | { |
| 373 | __raw_writel(val, slave->regs + offset); |
| 374 | } |
| 375 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 376 | struct cpsw_vector { |
| 377 | struct cpdma_chan *ch; |
| 378 | int budget; |
| 379 | }; |
| 380 | |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 381 | struct cpsw_common { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 382 | struct device *dev; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 383 | struct cpsw_platform_data data; |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 384 | struct napi_struct napi_rx; |
| 385 | struct napi_struct napi_tx; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 386 | struct cpsw_ss_regs __iomem *regs; |
| 387 | struct cpsw_wr_regs __iomem *wr_regs; |
| 388 | u8 __iomem *hw_stats; |
| 389 | struct cpsw_host_regs __iomem *host_port_regs; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 390 | u32 version; |
| 391 | u32 coal_intvl; |
| 392 | u32 bus_freq_mhz; |
| 393 | int rx_packet_max; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 394 | struct cpsw_slave *slaves; |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 395 | struct cpdma_ctlr *dma; |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 396 | struct cpsw_vector txv[CPSW_MAX_QUEUES]; |
| 397 | struct cpsw_vector rxv[CPSW_MAX_QUEUES]; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 398 | struct cpsw_ale *ale; |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 399 | bool quirk_irq; |
| 400 | bool rx_irq_disabled; |
| 401 | bool tx_irq_disabled; |
| 402 | u32 irqs_table[IRQ_NUM]; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 403 | struct cpts *cpts; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 404 | int rx_ch_num, tx_ch_num; |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 405 | int speed; |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 406 | int usage_count; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 407 | }; |
| 408 | |
| 409 | struct cpsw_priv { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 410 | struct net_device *ndev; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 411 | struct device *dev; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 412 | u32 msg_enable; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 413 | u8 mac_addr[ETH_ALEN]; |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 414 | bool rx_pause; |
| 415 | bool tx_pause; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 416 | u32 emac_port; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 417 | struct cpsw_common *cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 418 | }; |
| 419 | |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 420 | struct cpsw_stats { |
| 421 | char stat_string[ETH_GSTRING_LEN]; |
| 422 | int type; |
| 423 | int sizeof_stat; |
| 424 | int stat_offset; |
| 425 | }; |
| 426 | |
| 427 | enum { |
| 428 | CPSW_STATS, |
| 429 | CPDMA_RX_STATS, |
| 430 | CPDMA_TX_STATS, |
| 431 | }; |
| 432 | |
| 433 | #define CPSW_STAT(m) CPSW_STATS, \ |
| 434 | sizeof(((struct cpsw_hw_stats *)0)->m), \ |
| 435 | offsetof(struct cpsw_hw_stats, m) |
| 436 | #define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \ |
| 437 | sizeof(((struct cpdma_chan_stats *)0)->m), \ |
| 438 | offsetof(struct cpdma_chan_stats, m) |
| 439 | #define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \ |
| 440 | sizeof(((struct cpdma_chan_stats *)0)->m), \ |
| 441 | offsetof(struct cpdma_chan_stats, m) |
| 442 | |
| 443 | static const struct cpsw_stats cpsw_gstrings_stats[] = { |
| 444 | { "Good Rx Frames", CPSW_STAT(rxgoodframes) }, |
| 445 | { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) }, |
| 446 | { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) }, |
| 447 | { "Pause Rx Frames", CPSW_STAT(rxpauseframes) }, |
| 448 | { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) }, |
| 449 | { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) }, |
| 450 | { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) }, |
| 451 | { "Rx Jabbers", CPSW_STAT(rxjabberframes) }, |
| 452 | { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) }, |
| 453 | { "Rx Fragments", CPSW_STAT(rxfragments) }, |
| 454 | { "Rx Octets", CPSW_STAT(rxoctets) }, |
| 455 | { "Good Tx Frames", CPSW_STAT(txgoodframes) }, |
| 456 | { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) }, |
| 457 | { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) }, |
| 458 | { "Pause Tx Frames", CPSW_STAT(txpauseframes) }, |
| 459 | { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) }, |
| 460 | { "Collisions", CPSW_STAT(txcollisionframes) }, |
| 461 | { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) }, |
| 462 | { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) }, |
| 463 | { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) }, |
| 464 | { "Late Collisions", CPSW_STAT(txlatecollisions) }, |
| 465 | { "Tx Underrun", CPSW_STAT(txunderrun) }, |
| 466 | { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) }, |
| 467 | { "Tx Octets", CPSW_STAT(txoctets) }, |
| 468 | { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) }, |
| 469 | { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) }, |
| 470 | { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) }, |
| 471 | { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) }, |
| 472 | { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) }, |
| 473 | { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) }, |
| 474 | { "Net Octets", CPSW_STAT(netoctets) }, |
| 475 | { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) }, |
| 476 | { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) }, |
| 477 | { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) }, |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 478 | }; |
| 479 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 480 | static const struct cpsw_stats cpsw_gstrings_ch_stats[] = { |
| 481 | { "head_enqueue", CPDMA_RX_STAT(head_enqueue) }, |
| 482 | { "tail_enqueue", CPDMA_RX_STAT(tail_enqueue) }, |
| 483 | { "pad_enqueue", CPDMA_RX_STAT(pad_enqueue) }, |
| 484 | { "misqueued", CPDMA_RX_STAT(misqueued) }, |
| 485 | { "desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) }, |
| 486 | { "pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) }, |
| 487 | { "runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) }, |
| 488 | { "runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) }, |
| 489 | { "empty_dequeue", CPDMA_RX_STAT(empty_dequeue) }, |
| 490 | { "busy_dequeue", CPDMA_RX_STAT(busy_dequeue) }, |
| 491 | { "good_dequeue", CPDMA_RX_STAT(good_dequeue) }, |
| 492 | { "requeue", CPDMA_RX_STAT(requeue) }, |
| 493 | { "teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) }, |
| 494 | }; |
| 495 | |
| 496 | #define CPSW_STATS_COMMON_LEN ARRAY_SIZE(cpsw_gstrings_stats) |
| 497 | #define CPSW_STATS_CH_LEN ARRAY_SIZE(cpsw_gstrings_ch_stats) |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 498 | |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 499 | #define ndev_to_cpsw(ndev) (((struct cpsw_priv *)netdev_priv(ndev))->cpsw) |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 500 | #define napi_to_cpsw(napi) container_of(napi, struct cpsw_common, napi) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 501 | #define for_each_slave(priv, func, arg...) \ |
| 502 | do { \ |
Sebastian Siewior | 6e6ceae | 2013-04-24 08:48:24 +0000 | [diff] [blame] | 503 | struct cpsw_slave *slave; \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 504 | struct cpsw_common *cpsw = (priv)->cpsw; \ |
Sebastian Siewior | 6e6ceae | 2013-04-24 08:48:24 +0000 | [diff] [blame] | 505 | int n; \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 506 | if (cpsw->data.dual_emac) \ |
| 507 | (func)((cpsw)->slaves + priv->emac_port, ##arg);\ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 508 | else \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 509 | for (n = cpsw->data.slaves, \ |
| 510 | slave = cpsw->slaves; \ |
Sebastian Siewior | 6e6ceae | 2013-04-24 08:48:24 +0000 | [diff] [blame] | 511 | n; n--) \ |
| 512 | (func)(slave++, ##arg); \ |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 513 | } while (0) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 514 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 515 | #define cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb) \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 516 | do { \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 517 | if (!cpsw->data.dual_emac) \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 518 | break; \ |
| 519 | if (CPDMA_RX_SOURCE_PORT(status) == 1) { \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 520 | ndev = cpsw->slaves[0].ndev; \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 521 | skb->dev = ndev; \ |
| 522 | } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 523 | ndev = cpsw->slaves[1].ndev; \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 524 | skb->dev = ndev; \ |
| 525 | } \ |
| 526 | } while (0) |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 527 | #define cpsw_add_mcast(cpsw, priv, addr) \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 528 | do { \ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 529 | if (cpsw->data.dual_emac) { \ |
| 530 | struct cpsw_slave *slave = cpsw->slaves + \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 531 | priv->emac_port; \ |
Ivan Khoronzhuk | 6f1f583 | 2016-08-10 02:22:34 +0300 | [diff] [blame] | 532 | int slave_port = cpsw_get_slave_port( \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 533 | slave->slave_num); \ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 534 | cpsw_ale_add_mcast(cpsw->ale, addr, \ |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 535 | 1 << slave_port | ALE_PORT_HOST, \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 536 | ALE_VLAN, slave->port_vlan, 0); \ |
| 537 | } else { \ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 538 | cpsw_ale_add_mcast(cpsw->ale, addr, \ |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 539 | ALE_ALL_PORTS, \ |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 540 | 0, 0, 0); \ |
| 541 | } \ |
| 542 | } while (0) |
| 543 | |
Ivan Khoronzhuk | 6f1f583 | 2016-08-10 02:22:34 +0300 | [diff] [blame] | 544 | static inline int cpsw_get_slave_port(u32 slave_num) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 545 | { |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 546 | return slave_num + 1; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 547 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 548 | |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 549 | static void cpsw_set_promiscious(struct net_device *ndev, bool enable) |
| 550 | { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 551 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
| 552 | struct cpsw_ale *ale = cpsw->ale; |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 553 | int i; |
| 554 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 555 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 556 | bool flag = false; |
| 557 | |
| 558 | /* Enabling promiscuous mode for one interface will be |
| 559 | * common for both the interface as the interface shares |
| 560 | * the same hardware resource. |
| 561 | */ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 562 | for (i = 0; i < cpsw->data.slaves; i++) |
| 563 | if (cpsw->slaves[i].ndev->flags & IFF_PROMISC) |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 564 | flag = true; |
| 565 | |
| 566 | if (!enable && flag) { |
| 567 | enable = true; |
| 568 | dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n"); |
| 569 | } |
| 570 | |
| 571 | if (enable) { |
| 572 | /* Enable Bypass */ |
| 573 | cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1); |
| 574 | |
| 575 | dev_dbg(&ndev->dev, "promiscuity enabled\n"); |
| 576 | } else { |
| 577 | /* Disable Bypass */ |
| 578 | cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0); |
| 579 | dev_dbg(&ndev->dev, "promiscuity disabled\n"); |
| 580 | } |
| 581 | } else { |
| 582 | if (enable) { |
| 583 | unsigned long timeout = jiffies + HZ; |
| 584 | |
Lennart Sorensen | 6f979eb | 2014-10-31 13:28:54 -0400 | [diff] [blame] | 585 | /* 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] | 586 | for (i = 0; i <= cpsw->data.slaves; i++) { |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 587 | cpsw_ale_control_set(ale, i, |
| 588 | ALE_PORT_NOLEARN, 1); |
| 589 | cpsw_ale_control_set(ale, i, |
| 590 | ALE_PORT_NO_SA_UPDATE, 1); |
| 591 | } |
| 592 | |
| 593 | /* Clear All Untouched entries */ |
| 594 | cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1); |
| 595 | do { |
| 596 | cpu_relax(); |
| 597 | if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT)) |
| 598 | break; |
| 599 | } while (time_after(timeout, jiffies)); |
| 600 | cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1); |
| 601 | |
| 602 | /* Clear all mcast from ALE */ |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 603 | cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1); |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 604 | |
| 605 | /* Flood All Unicast Packets to Host port */ |
| 606 | cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1); |
| 607 | dev_dbg(&ndev->dev, "promiscuity enabled\n"); |
| 608 | } else { |
Lennart Sorensen | 6f979eb | 2014-10-31 13:28:54 -0400 | [diff] [blame] | 609 | /* Don't Flood All Unicast Packets to Host port */ |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 610 | cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0); |
| 611 | |
Lennart Sorensen | 6f979eb | 2014-10-31 13:28:54 -0400 | [diff] [blame] | 612 | /* 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] | 613 | for (i = 0; i <= cpsw->data.slaves; i++) { |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 614 | cpsw_ale_control_set(ale, i, |
| 615 | ALE_PORT_NOLEARN, 0); |
| 616 | cpsw_ale_control_set(ale, i, |
| 617 | ALE_PORT_NO_SA_UPDATE, 0); |
| 618 | } |
| 619 | dev_dbg(&ndev->dev, "promiscuity disabled\n"); |
| 620 | } |
| 621 | } |
| 622 | } |
| 623 | |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 624 | static void cpsw_ndo_set_rx_mode(struct net_device *ndev) |
| 625 | { |
| 626 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 627 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | 2590605 | 2015-01-13 17:35:49 +0530 | [diff] [blame] | 628 | int vid; |
| 629 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 630 | if (cpsw->data.dual_emac) |
| 631 | vid = cpsw->slaves[priv->emac_port].port_vlan; |
Mugunthan V N | 2590605 | 2015-01-13 17:35:49 +0530 | [diff] [blame] | 632 | else |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 633 | vid = cpsw->data.default_vlan; |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 634 | |
| 635 | if (ndev->flags & IFF_PROMISC) { |
| 636 | /* Enable promiscuous mode */ |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 637 | cpsw_set_promiscious(ndev, true); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 638 | cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI); |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 639 | return; |
Mugunthan V N | 0cd8f9c | 2014-01-23 00:03:12 +0530 | [diff] [blame] | 640 | } else { |
| 641 | /* Disable promiscuous mode */ |
| 642 | cpsw_set_promiscious(ndev, false); |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 645 | /* Restore allmulti on vlans if necessary */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 646 | cpsw_ale_set_allmulti(cpsw->ale, priv->ndev->flags & IFF_ALLMULTI); |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 647 | |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 648 | /* Clear all mcast from ALE */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 649 | cpsw_ale_flush_multicast(cpsw->ale, ALE_ALL_PORTS, vid); |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 650 | |
| 651 | if (!netdev_mc_empty(ndev)) { |
| 652 | struct netdev_hw_addr *ha; |
| 653 | |
| 654 | /* program multicast address list into ALE register */ |
| 655 | netdev_for_each_mc_addr(ha, ndev) { |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 656 | cpsw_add_mcast(cpsw, priv, (u8 *)ha->addr); |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 657 | } |
| 658 | } |
| 659 | } |
| 660 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 661 | static void cpsw_intr_enable(struct cpsw_common *cpsw) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 662 | { |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 663 | __raw_writel(0xFF, &cpsw->wr_regs->tx_en); |
| 664 | __raw_writel(0xFF, &cpsw->wr_regs->rx_en); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 665 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 666 | cpdma_ctlr_int_ctrl(cpsw->dma, true); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 667 | return; |
| 668 | } |
| 669 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 670 | static void cpsw_intr_disable(struct cpsw_common *cpsw) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 671 | { |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 672 | __raw_writel(0, &cpsw->wr_regs->tx_en); |
| 673 | __raw_writel(0, &cpsw->wr_regs->rx_en); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 674 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 675 | cpdma_ctlr_int_ctrl(cpsw->dma, false); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 676 | return; |
| 677 | } |
| 678 | |
Olof Johansson | 1a3b505 | 2013-12-11 15:58:07 -0800 | [diff] [blame] | 679 | static void cpsw_tx_handler(void *token, int len, int status) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 680 | { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 681 | struct netdev_queue *txq; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 682 | struct sk_buff *skb = token; |
| 683 | struct net_device *ndev = skb->dev; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 684 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 685 | |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 686 | /* Check whether the queue is stopped due to stalled tx dma, if the |
| 687 | * queue is stopped then start the queue as we have free desc for tx |
| 688 | */ |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 689 | txq = netdev_get_tx_queue(ndev, skb_get_queue_mapping(skb)); |
| 690 | if (unlikely(netif_tx_queue_stopped(txq))) |
| 691 | netif_tx_wake_queue(txq); |
| 692 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 693 | cpts_tx_timestamp(cpsw->cpts, skb); |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 694 | ndev->stats.tx_packets++; |
| 695 | ndev->stats.tx_bytes += len; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 696 | dev_kfree_skb_any(skb); |
| 697 | } |
| 698 | |
Olof Johansson | 1a3b505 | 2013-12-11 15:58:07 -0800 | [diff] [blame] | 699 | static void cpsw_rx_handler(void *token, int len, int status) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 700 | { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 701 | struct cpdma_chan *ch; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 702 | struct sk_buff *skb = token; |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 703 | struct sk_buff *new_skb; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 704 | struct net_device *ndev = skb->dev; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 705 | int ret = 0; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 706 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 707 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 708 | cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 709 | |
Mugunthan V N | 16e5c57 | 2014-04-10 14:23:23 +0530 | [diff] [blame] | 710 | if (unlikely(status < 0) || unlikely(!netif_running(ndev))) { |
Ivan Khoronzhuk | fe734d0 | 2017-01-19 18:58:26 +0200 | [diff] [blame] | 711 | /* In dual emac mode check for all interfaces */ |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 712 | if (cpsw->data.dual_emac && cpsw->usage_count && |
Ivan Khoronzhuk | fe734d0 | 2017-01-19 18:58:26 +0200 | [diff] [blame] | 713 | (status >= 0)) { |
Mugunthan V N | a0e2c82 | 2014-09-10 16:38:09 +0530 | [diff] [blame] | 714 | /* The packet received is for the interface which |
| 715 | * is already down and the other interface is up |
Joe Perches | dbedd44 | 2015-03-06 20:49:12 -0800 | [diff] [blame] | 716 | * and running, instead of freeing which results |
Mugunthan V N | a0e2c82 | 2014-09-10 16:38:09 +0530 | [diff] [blame] | 717 | * in reducing of the number of rx descriptor in |
| 718 | * DMA engine, requeue skb back to cpdma. |
| 719 | */ |
| 720 | new_skb = skb; |
| 721 | goto requeue; |
| 722 | } |
| 723 | |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 724 | /* the interface is going down, skbs are purged */ |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 725 | dev_kfree_skb_any(skb); |
| 726 | return; |
| 727 | } |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 728 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 729 | new_skb = netdev_alloc_skb_ip_align(ndev, cpsw->rx_packet_max); |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 730 | if (new_skb) { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 731 | skb_copy_queue_mapping(new_skb, skb); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 732 | skb_put(skb, len); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 733 | cpts_rx_timestamp(cpsw->cpts, skb); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 734 | skb->protocol = eth_type_trans(skb, ndev); |
| 735 | netif_receive_skb(skb); |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 736 | ndev->stats.rx_bytes += len; |
| 737 | ndev->stats.rx_packets++; |
Grygorii Strashko | 254a49d | 2016-08-09 15:09:44 +0300 | [diff] [blame] | 738 | kmemleak_not_leak(new_skb); |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 739 | } else { |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 740 | ndev->stats.rx_dropped++; |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 741 | new_skb = skb; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Mugunthan V N | a0e2c82 | 2014-09-10 16:38:09 +0530 | [diff] [blame] | 744 | requeue: |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 745 | if (netif_dormant(ndev)) { |
| 746 | dev_kfree_skb_any(new_skb); |
| 747 | return; |
| 748 | } |
| 749 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 750 | ch = cpsw->rxv[skb_get_queue_mapping(new_skb)].ch; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 751 | ret = cpdma_chan_submit(ch, new_skb, new_skb->data, |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 752 | skb_tailroom(new_skb), 0); |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 753 | if (WARN_ON(ret < 0)) |
| 754 | dev_kfree_skb_any(new_skb); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 755 | } |
| 756 | |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 757 | static void cpsw_split_res(struct net_device *ndev) |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 758 | { |
| 759 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 760 | u32 consumed_rate = 0, bigest_rate = 0; |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 761 | struct cpsw_common *cpsw = priv->cpsw; |
| 762 | struct cpsw_vector *txv = cpsw->txv; |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 763 | int i, ch_weight, rlim_ch_num = 0; |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 764 | int budget, bigest_rate_ch = 0; |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 765 | u32 ch_rate, max_rate; |
| 766 | int ch_budget = 0; |
| 767 | |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 768 | for (i = 0; i < cpsw->tx_ch_num; i++) { |
| 769 | ch_rate = cpdma_chan_get_rate(txv[i].ch); |
| 770 | if (!ch_rate) |
| 771 | continue; |
| 772 | |
| 773 | rlim_ch_num++; |
| 774 | consumed_rate += ch_rate; |
| 775 | } |
| 776 | |
| 777 | if (cpsw->tx_ch_num == rlim_ch_num) { |
| 778 | max_rate = consumed_rate; |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 779 | } else if (!rlim_ch_num) { |
| 780 | ch_budget = CPSW_POLL_WEIGHT / cpsw->tx_ch_num; |
| 781 | bigest_rate = 0; |
| 782 | max_rate = consumed_rate; |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 783 | } else { |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 784 | max_rate = cpsw->speed * 1000; |
| 785 | |
| 786 | /* if max_rate is less then expected due to reduced link speed, |
| 787 | * split proportionally according next potential max speed |
| 788 | */ |
| 789 | if (max_rate < consumed_rate) |
| 790 | max_rate *= 10; |
| 791 | |
| 792 | if (max_rate < consumed_rate) |
| 793 | max_rate *= 10; |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 794 | |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 795 | ch_budget = (consumed_rate * CPSW_POLL_WEIGHT) / max_rate; |
| 796 | ch_budget = (CPSW_POLL_WEIGHT - ch_budget) / |
| 797 | (cpsw->tx_ch_num - rlim_ch_num); |
| 798 | bigest_rate = (max_rate - consumed_rate) / |
| 799 | (cpsw->tx_ch_num - rlim_ch_num); |
| 800 | } |
| 801 | |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 802 | /* split tx weight/budget */ |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 803 | budget = CPSW_POLL_WEIGHT; |
| 804 | for (i = 0; i < cpsw->tx_ch_num; i++) { |
| 805 | ch_rate = cpdma_chan_get_rate(txv[i].ch); |
| 806 | if (ch_rate) { |
| 807 | txv[i].budget = (ch_rate * CPSW_POLL_WEIGHT) / max_rate; |
| 808 | if (!txv[i].budget) |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 809 | txv[i].budget++; |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 810 | if (ch_rate > bigest_rate) { |
| 811 | bigest_rate_ch = i; |
| 812 | bigest_rate = ch_rate; |
| 813 | } |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 814 | |
| 815 | ch_weight = (ch_rate * 100) / max_rate; |
| 816 | if (!ch_weight) |
| 817 | ch_weight++; |
| 818 | cpdma_chan_set_weight(cpsw->txv[i].ch, ch_weight); |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 819 | } else { |
| 820 | txv[i].budget = ch_budget; |
| 821 | if (!bigest_rate_ch) |
| 822 | bigest_rate_ch = i; |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 823 | cpdma_chan_set_weight(cpsw->txv[i].ch, 0); |
Ivan Khoronzhuk | 48e0a83 | 2016-12-06 03:45:00 +0200 | [diff] [blame] | 824 | } |
| 825 | |
| 826 | budget -= txv[i].budget; |
| 827 | } |
| 828 | |
| 829 | if (budget) |
| 830 | txv[bigest_rate_ch].budget += budget; |
| 831 | |
| 832 | /* split rx budget */ |
| 833 | budget = CPSW_POLL_WEIGHT; |
| 834 | ch_budget = budget / cpsw->rx_ch_num; |
| 835 | for (i = 0; i < cpsw->rx_ch_num; i++) { |
| 836 | cpsw->rxv[i].budget = ch_budget; |
| 837 | budget -= ch_budget; |
| 838 | } |
| 839 | |
| 840 | if (budget) |
| 841 | cpsw->rxv[0].budget += budget; |
| 842 | } |
| 843 | |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 844 | static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 845 | { |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 846 | struct cpsw_common *cpsw = dev_id; |
Felipe Balbi | 7ce67a3 | 2015-01-02 16:15:59 -0600 | [diff] [blame] | 847 | |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 848 | writel(0, &cpsw->wr_regs->tx_en); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 849 | cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_TX); |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 850 | |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 851 | if (cpsw->quirk_irq) { |
| 852 | disable_irq_nosync(cpsw->irqs_table[1]); |
| 853 | cpsw->tx_irq_disabled = true; |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 854 | } |
| 855 | |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 856 | napi_schedule(&cpsw->napi_tx); |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 857 | return IRQ_HANDLED; |
| 858 | } |
| 859 | |
| 860 | static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id) |
| 861 | { |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 862 | struct cpsw_common *cpsw = dev_id; |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 863 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 864 | cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_RX); |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 865 | writel(0, &cpsw->wr_regs->rx_en); |
Sebastian Siewior | fd51cf1 | 2013-04-23 07:31:37 +0000 | [diff] [blame] | 866 | |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 867 | if (cpsw->quirk_irq) { |
| 868 | disable_irq_nosync(cpsw->irqs_table[0]); |
| 869 | cpsw->rx_irq_disabled = true; |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 870 | } |
| 871 | |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 872 | napi_schedule(&cpsw->napi_rx); |
Mugunthan V N | d354eb8 | 2015-08-04 16:06:19 +0530 | [diff] [blame] | 873 | return IRQ_HANDLED; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 874 | } |
| 875 | |
Mugunthan V N | 32a7432 | 2015-08-04 16:06:20 +0530 | [diff] [blame] | 876 | static int cpsw_tx_poll(struct napi_struct *napi_tx, int budget) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 877 | { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 878 | u32 ch_map; |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 879 | int num_tx, cur_budget, ch; |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 880 | struct cpsw_common *cpsw = napi_to_cpsw(napi_tx); |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 881 | struct cpsw_vector *txv; |
Mugunthan V N | 32a7432 | 2015-08-04 16:06:20 +0530 | [diff] [blame] | 882 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 883 | /* process every unprocessed channel */ |
| 884 | ch_map = cpdma_ctrl_txchs_state(cpsw->dma); |
Ivan Khoronzhuk | 342934a | 2016-11-29 17:00:50 +0200 | [diff] [blame] | 885 | for (ch = 0, num_tx = 0; ch_map; ch_map >>= 1, ch++) { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 886 | if (!(ch_map & 0x01)) |
| 887 | continue; |
| 888 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 889 | txv = &cpsw->txv[ch]; |
| 890 | if (unlikely(txv->budget > budget - num_tx)) |
| 891 | cur_budget = budget - num_tx; |
| 892 | else |
| 893 | cur_budget = txv->budget; |
| 894 | |
| 895 | num_tx += cpdma_chan_process(txv->ch, cur_budget); |
Ivan Khoronzhuk | 342934a | 2016-11-29 17:00:50 +0200 | [diff] [blame] | 896 | if (num_tx >= budget) |
| 897 | break; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 898 | } |
| 899 | |
Mugunthan V N | 32a7432 | 2015-08-04 16:06:20 +0530 | [diff] [blame] | 900 | if (num_tx < budget) { |
| 901 | napi_complete(napi_tx); |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 902 | writel(0xff, &cpsw->wr_regs->tx_en); |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 903 | if (cpsw->quirk_irq && cpsw->tx_irq_disabled) { |
| 904 | cpsw->tx_irq_disabled = false; |
| 905 | enable_irq(cpsw->irqs_table[1]); |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 906 | } |
Mugunthan V N | 32a7432 | 2015-08-04 16:06:20 +0530 | [diff] [blame] | 907 | } |
| 908 | |
Mugunthan V N | 32a7432 | 2015-08-04 16:06:20 +0530 | [diff] [blame] | 909 | return num_tx; |
| 910 | } |
| 911 | |
| 912 | static int cpsw_rx_poll(struct napi_struct *napi_rx, int budget) |
| 913 | { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 914 | u32 ch_map; |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 915 | int num_rx, cur_budget, ch; |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 916 | struct cpsw_common *cpsw = napi_to_cpsw(napi_rx); |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 917 | struct cpsw_vector *rxv; |
Mugunthan V N | 510a1e72 | 2013-02-17 22:19:20 +0000 | [diff] [blame] | 918 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 919 | /* process every unprocessed channel */ |
| 920 | ch_map = cpdma_ctrl_rxchs_state(cpsw->dma); |
Ivan Khoronzhuk | 342934a | 2016-11-29 17:00:50 +0200 | [diff] [blame] | 921 | for (ch = 0, num_rx = 0; ch_map; ch_map >>= 1, ch++) { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 922 | if (!(ch_map & 0x01)) |
| 923 | continue; |
| 924 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 925 | rxv = &cpsw->rxv[ch]; |
| 926 | if (unlikely(rxv->budget > budget - num_rx)) |
| 927 | cur_budget = budget - num_rx; |
| 928 | else |
| 929 | cur_budget = rxv->budget; |
| 930 | |
| 931 | num_rx += cpdma_chan_process(rxv->ch, cur_budget); |
Ivan Khoronzhuk | 342934a | 2016-11-29 17:00:50 +0200 | [diff] [blame] | 932 | if (num_rx >= budget) |
| 933 | break; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 934 | } |
| 935 | |
Mugunthan V N | 510a1e72 | 2013-02-17 22:19:20 +0000 | [diff] [blame] | 936 | if (num_rx < budget) { |
Eric Dumazet | 6ad2016 | 2017-01-30 08:22:01 -0800 | [diff] [blame] | 937 | napi_complete_done(napi_rx, num_rx); |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 938 | writel(0xff, &cpsw->wr_regs->rx_en); |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 939 | if (cpsw->quirk_irq && cpsw->rx_irq_disabled) { |
| 940 | cpsw->rx_irq_disabled = false; |
| 941 | enable_irq(cpsw->irqs_table[0]); |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 942 | } |
Mugunthan V N | 510a1e72 | 2013-02-17 22:19:20 +0000 | [diff] [blame] | 943 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 944 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 945 | return num_rx; |
| 946 | } |
| 947 | |
| 948 | static inline void soft_reset(const char *module, void __iomem *reg) |
| 949 | { |
| 950 | unsigned long timeout = jiffies + HZ; |
| 951 | |
| 952 | __raw_writel(1, reg); |
| 953 | do { |
| 954 | cpu_relax(); |
| 955 | } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies)); |
| 956 | |
| 957 | WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module); |
| 958 | } |
| 959 | |
| 960 | #define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \ |
| 961 | ((mac)[2] << 16) | ((mac)[3] << 24)) |
| 962 | #define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8)) |
| 963 | |
| 964 | static void cpsw_set_slave_mac(struct cpsw_slave *slave, |
| 965 | struct cpsw_priv *priv) |
| 966 | { |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 967 | slave_write(slave, mac_hi(priv->mac_addr), SA_HI); |
| 968 | slave_write(slave, mac_lo(priv->mac_addr), SA_LO); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | static void _cpsw_adjust_link(struct cpsw_slave *slave, |
| 972 | struct cpsw_priv *priv, bool *link) |
| 973 | { |
| 974 | struct phy_device *phy = slave->phy; |
| 975 | u32 mac_control = 0; |
| 976 | u32 slave_port; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 977 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 978 | |
| 979 | if (!phy) |
| 980 | return; |
| 981 | |
Ivan Khoronzhuk | 6f1f583 | 2016-08-10 02:22:34 +0300 | [diff] [blame] | 982 | slave_port = cpsw_get_slave_port(slave->slave_num); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 983 | |
| 984 | if (phy->link) { |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 985 | mac_control = cpsw->data.mac_control; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 986 | |
| 987 | /* enable forwarding */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 988 | cpsw_ale_control_set(cpsw->ale, slave_port, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 989 | ALE_PORT_STATE, ALE_PORT_STATE_FORWARD); |
| 990 | |
| 991 | if (phy->speed == 1000) |
| 992 | mac_control |= BIT(7); /* GIGABITEN */ |
| 993 | if (phy->duplex) |
| 994 | mac_control |= BIT(0); /* FULLDUPLEXEN */ |
Daniel Mack | 342b7b7 | 2012-09-27 09:19:34 +0000 | [diff] [blame] | 995 | |
| 996 | /* set speed_in input in case RMII mode is used in 100Mbps */ |
| 997 | if (phy->speed == 100) |
| 998 | mac_control |= BIT(15); |
Mugunthan V N | a81d876 | 2013-12-13 18:42:55 +0530 | [diff] [blame] | 999 | else if (phy->speed == 10) |
| 1000 | mac_control |= BIT(18); /* In Band mode */ |
Daniel Mack | 342b7b7 | 2012-09-27 09:19:34 +0000 | [diff] [blame] | 1001 | |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 1002 | if (priv->rx_pause) |
| 1003 | mac_control |= BIT(3); |
| 1004 | |
| 1005 | if (priv->tx_pause) |
| 1006 | mac_control |= BIT(4); |
| 1007 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1008 | *link = true; |
| 1009 | } else { |
| 1010 | mac_control = 0; |
| 1011 | /* disable forwarding */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1012 | cpsw_ale_control_set(cpsw->ale, slave_port, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1013 | ALE_PORT_STATE, ALE_PORT_STATE_DISABLE); |
| 1014 | } |
| 1015 | |
| 1016 | if (mac_control != slave->mac_control) { |
| 1017 | phy_print_status(phy); |
| 1018 | __raw_writel(mac_control, &slave->sliver->mac_control); |
| 1019 | } |
| 1020 | |
| 1021 | slave->mac_control = mac_control; |
| 1022 | } |
| 1023 | |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 1024 | static int cpsw_get_common_speed(struct cpsw_common *cpsw) |
| 1025 | { |
| 1026 | int i, speed; |
| 1027 | |
| 1028 | for (i = 0, speed = 0; i < cpsw->data.slaves; i++) |
| 1029 | if (cpsw->slaves[i].phy && cpsw->slaves[i].phy->link) |
| 1030 | speed += cpsw->slaves[i].phy->speed; |
| 1031 | |
| 1032 | return speed; |
| 1033 | } |
| 1034 | |
| 1035 | static int cpsw_need_resplit(struct cpsw_common *cpsw) |
| 1036 | { |
| 1037 | int i, rlim_ch_num; |
| 1038 | int speed, ch_rate; |
| 1039 | |
| 1040 | /* re-split resources only in case speed was changed */ |
| 1041 | speed = cpsw_get_common_speed(cpsw); |
| 1042 | if (speed == cpsw->speed || !speed) |
| 1043 | return 0; |
| 1044 | |
| 1045 | cpsw->speed = speed; |
| 1046 | |
| 1047 | for (i = 0, rlim_ch_num = 0; i < cpsw->tx_ch_num; i++) { |
| 1048 | ch_rate = cpdma_chan_get_rate(cpsw->txv[i].ch); |
| 1049 | if (!ch_rate) |
| 1050 | break; |
| 1051 | |
| 1052 | rlim_ch_num++; |
| 1053 | } |
| 1054 | |
| 1055 | /* cases not dependent on speed */ |
| 1056 | if (!rlim_ch_num || rlim_ch_num == cpsw->tx_ch_num) |
| 1057 | return 0; |
| 1058 | |
| 1059 | return 1; |
| 1060 | } |
| 1061 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1062 | static void cpsw_adjust_link(struct net_device *ndev) |
| 1063 | { |
| 1064 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 1065 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1066 | bool link = false; |
| 1067 | |
| 1068 | for_each_slave(priv, _cpsw_adjust_link, priv, &link); |
| 1069 | |
| 1070 | if (link) { |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 1071 | if (cpsw_need_resplit(cpsw)) |
| 1072 | cpsw_split_res(ndev); |
| 1073 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1074 | netif_carrier_on(ndev); |
| 1075 | if (netif_running(ndev)) |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1076 | netif_tx_wake_all_queues(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1077 | } else { |
| 1078 | netif_carrier_off(ndev); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1079 | netif_tx_stop_all_queues(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1080 | } |
| 1081 | } |
| 1082 | |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1083 | static int cpsw_get_coalesce(struct net_device *ndev, |
| 1084 | struct ethtool_coalesce *coal) |
| 1085 | { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1086 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1087 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1088 | coal->rx_coalesce_usecs = cpsw->coal_intvl; |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1089 | return 0; |
| 1090 | } |
| 1091 | |
| 1092 | static int cpsw_set_coalesce(struct net_device *ndev, |
| 1093 | struct ethtool_coalesce *coal) |
| 1094 | { |
| 1095 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 1096 | u32 int_ctrl; |
| 1097 | u32 num_interrupts = 0; |
| 1098 | u32 prescale = 0; |
| 1099 | u32 addnl_dvdr = 1; |
| 1100 | u32 coal_intvl = 0; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1101 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1102 | |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1103 | coal_intvl = coal->rx_coalesce_usecs; |
| 1104 | |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1105 | int_ctrl = readl(&cpsw->wr_regs->int_control); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1106 | prescale = cpsw->bus_freq_mhz * 4; |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1107 | |
Mugunthan V N | a84bc2a | 2014-07-15 20:26:53 +0530 | [diff] [blame] | 1108 | if (!coal->rx_coalesce_usecs) { |
| 1109 | int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN); |
| 1110 | goto update_return; |
| 1111 | } |
| 1112 | |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1113 | if (coal_intvl < CPSW_CMINTMIN_INTVL) |
| 1114 | coal_intvl = CPSW_CMINTMIN_INTVL; |
| 1115 | |
| 1116 | if (coal_intvl > CPSW_CMINTMAX_INTVL) { |
| 1117 | /* Interrupt pacer works with 4us Pulse, we can |
| 1118 | * throttle further by dilating the 4us pulse. |
| 1119 | */ |
| 1120 | addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale; |
| 1121 | |
| 1122 | if (addnl_dvdr > 1) { |
| 1123 | prescale *= addnl_dvdr; |
| 1124 | if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr)) |
| 1125 | coal_intvl = (CPSW_CMINTMAX_INTVL |
| 1126 | * addnl_dvdr); |
| 1127 | } else { |
| 1128 | addnl_dvdr = 1; |
| 1129 | coal_intvl = CPSW_CMINTMAX_INTVL; |
| 1130 | } |
| 1131 | } |
| 1132 | |
| 1133 | num_interrupts = (1000 * addnl_dvdr) / coal_intvl; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1134 | writel(num_interrupts, &cpsw->wr_regs->rx_imax); |
| 1135 | writel(num_interrupts, &cpsw->wr_regs->tx_imax); |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1136 | |
| 1137 | int_ctrl |= CPSW_INTPACEEN; |
| 1138 | int_ctrl &= (~CPSW_INTPRESCALE_MASK); |
| 1139 | int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK); |
Mugunthan V N | a84bc2a | 2014-07-15 20:26:53 +0530 | [diff] [blame] | 1140 | |
| 1141 | update_return: |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1142 | writel(int_ctrl, &cpsw->wr_regs->int_control); |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1143 | |
| 1144 | cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1145 | cpsw->coal_intvl = coal_intvl; |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1146 | |
| 1147 | return 0; |
| 1148 | } |
| 1149 | |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1150 | static int cpsw_get_sset_count(struct net_device *ndev, int sset) |
| 1151 | { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1152 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
| 1153 | |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1154 | switch (sset) { |
| 1155 | case ETH_SS_STATS: |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1156 | return (CPSW_STATS_COMMON_LEN + |
| 1157 | (cpsw->rx_ch_num + cpsw->tx_ch_num) * |
| 1158 | CPSW_STATS_CH_LEN); |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1159 | default: |
| 1160 | return -EOPNOTSUPP; |
| 1161 | } |
| 1162 | } |
| 1163 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1164 | static void cpsw_add_ch_strings(u8 **p, int ch_num, int rx_dir) |
| 1165 | { |
| 1166 | int ch_stats_len; |
| 1167 | int line; |
| 1168 | int i; |
| 1169 | |
| 1170 | ch_stats_len = CPSW_STATS_CH_LEN * ch_num; |
| 1171 | for (i = 0; i < ch_stats_len; i++) { |
| 1172 | line = i % CPSW_STATS_CH_LEN; |
| 1173 | snprintf(*p, ETH_GSTRING_LEN, |
| 1174 | "%s DMA chan %d: %s", rx_dir ? "Rx" : "Tx", |
| 1175 | i / CPSW_STATS_CH_LEN, |
| 1176 | cpsw_gstrings_ch_stats[line].stat_string); |
| 1177 | *p += ETH_GSTRING_LEN; |
| 1178 | } |
| 1179 | } |
| 1180 | |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1181 | static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data) |
| 1182 | { |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1183 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1184 | u8 *p = data; |
| 1185 | int i; |
| 1186 | |
| 1187 | switch (stringset) { |
| 1188 | case ETH_SS_STATS: |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1189 | for (i = 0; i < CPSW_STATS_COMMON_LEN; i++) { |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1190 | memcpy(p, cpsw_gstrings_stats[i].stat_string, |
| 1191 | ETH_GSTRING_LEN); |
| 1192 | p += ETH_GSTRING_LEN; |
| 1193 | } |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1194 | |
| 1195 | cpsw_add_ch_strings(&p, cpsw->rx_ch_num, 1); |
| 1196 | cpsw_add_ch_strings(&p, cpsw->tx_ch_num, 0); |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1197 | break; |
| 1198 | } |
| 1199 | } |
| 1200 | |
| 1201 | static void cpsw_get_ethtool_stats(struct net_device *ndev, |
| 1202 | struct ethtool_stats *stats, u64 *data) |
| 1203 | { |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1204 | u8 *p; |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1205 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1206 | struct cpdma_chan_stats ch_stats; |
| 1207 | int i, l, ch; |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1208 | |
| 1209 | /* Collect Davinci CPDMA stats for Rx and Tx Channel */ |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1210 | for (l = 0; l < CPSW_STATS_COMMON_LEN; l++) |
| 1211 | data[l] = readl(cpsw->hw_stats + |
| 1212 | cpsw_gstrings_stats[l].stat_offset); |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1213 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1214 | for (ch = 0; ch < cpsw->rx_ch_num; ch++) { |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 1215 | cpdma_chan_get_stats(cpsw->rxv[ch].ch, &ch_stats); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1216 | for (i = 0; i < CPSW_STATS_CH_LEN; i++, l++) { |
| 1217 | p = (u8 *)&ch_stats + |
| 1218 | cpsw_gstrings_ch_stats[i].stat_offset; |
| 1219 | data[l] = *(u32 *)p; |
| 1220 | } |
| 1221 | } |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1222 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1223 | for (ch = 0; ch < cpsw->tx_ch_num; ch++) { |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 1224 | cpdma_chan_get_stats(cpsw->txv[ch].ch, &ch_stats); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1225 | for (i = 0; i < CPSW_STATS_CH_LEN; i++, l++) { |
| 1226 | p = (u8 *)&ch_stats + |
| 1227 | cpsw_gstrings_ch_stats[i].stat_offset; |
| 1228 | data[l] = *(u32 *)p; |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 1229 | } |
| 1230 | } |
| 1231 | } |
| 1232 | |
Ivan Khoronzhuk | 27e9e10 | 2016-08-10 02:22:32 +0300 | [diff] [blame] | 1233 | static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv, |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1234 | struct sk_buff *skb, |
| 1235 | struct cpdma_chan *txch) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1236 | { |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1237 | struct cpsw_common *cpsw = priv->cpsw; |
| 1238 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1239 | return cpdma_chan_submit(txch, skb, skb->data, skb->len, |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1240 | priv->emac_port + cpsw->data.dual_emac); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1241 | } |
| 1242 | |
| 1243 | static inline void cpsw_add_dual_emac_def_ale_entries( |
| 1244 | struct cpsw_priv *priv, struct cpsw_slave *slave, |
| 1245 | u32 slave_port) |
| 1246 | { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1247 | struct cpsw_common *cpsw = priv->cpsw; |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 1248 | u32 port_mask = 1 << slave_port | ALE_PORT_HOST; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1249 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1250 | if (cpsw->version == CPSW_VERSION_1) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1251 | slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN); |
| 1252 | else |
| 1253 | slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1254 | cpsw_ale_add_vlan(cpsw->ale, slave->port_vlan, port_mask, |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1255 | port_mask, port_mask, 0); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1256 | cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1257 | port_mask, ALE_VLAN, slave->port_vlan, 0); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1258 | cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, |
| 1259 | HOST_PORT_NUM, ALE_VLAN | |
| 1260 | ALE_SECURE, slave->port_vlan); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1261 | } |
| 1262 | |
Daniel Mack | 1e7a2e2 | 2013-11-15 08:29:16 +0100 | [diff] [blame] | 1263 | static void soft_reset_slave(struct cpsw_slave *slave) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1264 | { |
| 1265 | char name[32]; |
Daniel Mack | 1e7a2e2 | 2013-11-15 08:29:16 +0100 | [diff] [blame] | 1266 | |
| 1267 | snprintf(name, sizeof(name), "slave-%d", slave->slave_num); |
| 1268 | soft_reset(name, &slave->sliver->soft_reset); |
| 1269 | } |
| 1270 | |
| 1271 | static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv) |
| 1272 | { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1273 | u32 slave_port; |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 1274 | struct phy_device *phy; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1275 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1276 | |
Daniel Mack | 1e7a2e2 | 2013-11-15 08:29:16 +0100 | [diff] [blame] | 1277 | soft_reset_slave(slave); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1278 | |
| 1279 | /* setup priority mapping */ |
| 1280 | __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map); |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 1281 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1282 | switch (cpsw->version) { |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 1283 | case CPSW_VERSION_1: |
| 1284 | slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP); |
Grygorii Strashko | 48f5bcc | 2017-05-08 14:21:21 -0500 | [diff] [blame^] | 1285 | /* Increase RX FIFO size to 5 for supporting fullduplex |
| 1286 | * flow control mode |
| 1287 | */ |
| 1288 | slave_write(slave, |
| 1289 | (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) | |
| 1290 | CPSW_MAX_BLKS_RX, CPSW1_MAX_BLKS); |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 1291 | break; |
| 1292 | case CPSW_VERSION_2: |
Mugunthan V N | c193f36 | 2013-08-05 17:30:05 +0530 | [diff] [blame] | 1293 | case CPSW_VERSION_3: |
Mugunthan V N | 926489b | 2013-08-12 17:11:15 +0530 | [diff] [blame] | 1294 | case CPSW_VERSION_4: |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 1295 | slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP); |
Grygorii Strashko | 48f5bcc | 2017-05-08 14:21:21 -0500 | [diff] [blame^] | 1296 | /* Increase RX FIFO size to 5 for supporting fullduplex |
| 1297 | * flow control mode |
| 1298 | */ |
| 1299 | slave_write(slave, |
| 1300 | (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) | |
| 1301 | CPSW_MAX_BLKS_RX, CPSW2_MAX_BLKS); |
Richard Cochran | 9750a3a | 2012-10-29 08:45:15 +0000 | [diff] [blame] | 1302 | break; |
| 1303 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1304 | |
| 1305 | /* setup max packet size, and mac address */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1306 | __raw_writel(cpsw->rx_packet_max, &slave->sliver->rx_maxlen); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1307 | cpsw_set_slave_mac(slave, priv); |
| 1308 | |
| 1309 | slave->mac_control = 0; /* no link yet */ |
| 1310 | |
Ivan Khoronzhuk | 6f1f583 | 2016-08-10 02:22:34 +0300 | [diff] [blame] | 1311 | slave_port = cpsw_get_slave_port(slave->slave_num); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1312 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1313 | if (cpsw->data.dual_emac) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1314 | cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port); |
| 1315 | else |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1316 | cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1317 | 1 << slave_port, 0, 0, ALE_MCAST_FWD_2); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1318 | |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 1319 | if (slave->data->phy_node) { |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 1320 | phy = of_phy_connect(priv->ndev, slave->data->phy_node, |
Heiko Schocher | 9e42f71 | 2015-10-17 06:04:35 +0200 | [diff] [blame] | 1321 | &cpsw_adjust_link, 0, slave->data->phy_if); |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 1322 | if (!phy) { |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 1323 | dev_err(priv->dev, "phy \"%s\" not found on slave %d\n", |
| 1324 | slave->data->phy_node->full_name, |
| 1325 | slave->slave_num); |
| 1326 | return; |
| 1327 | } |
| 1328 | } else { |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 1329 | phy = phy_connect(priv->ndev, slave->data->phy_id, |
Florian Fainelli | f9a8f83 | 2013-01-14 00:52:52 +0000 | [diff] [blame] | 1330 | &cpsw_adjust_link, slave->data->phy_if); |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 1331 | if (IS_ERR(phy)) { |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 1332 | dev_err(priv->dev, |
| 1333 | "phy \"%s\" not found on slave %d, err %ld\n", |
| 1334 | slave->data->phy_id, slave->slave_num, |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 1335 | PTR_ERR(phy)); |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 1336 | return; |
| 1337 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1338 | } |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 1339 | |
Sekhar Nori | 30c57f0 | 2017-04-03 17:34:28 +0530 | [diff] [blame] | 1340 | slave->phy = phy; |
| 1341 | |
David Rivshin | d733f754 | 2016-04-27 21:32:31 -0400 | [diff] [blame] | 1342 | phy_attached_info(slave->phy); |
| 1343 | |
| 1344 | phy_start(slave->phy); |
| 1345 | |
| 1346 | /* Configure GMII_SEL register */ |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1347 | cpsw_phy_sel(cpsw->dev, slave->phy->interface, slave->slave_num); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1348 | } |
| 1349 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1350 | static inline void cpsw_add_default_vlan(struct cpsw_priv *priv) |
| 1351 | { |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1352 | struct cpsw_common *cpsw = priv->cpsw; |
| 1353 | const int vlan = cpsw->data.default_vlan; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1354 | u32 reg; |
| 1355 | int i; |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 1356 | int unreg_mcast_mask; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1357 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1358 | reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN : |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1359 | CPSW2_PORT_VLAN; |
| 1360 | |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1361 | writel(vlan, &cpsw->host_port_regs->port_vlan); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1362 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1363 | for (i = 0; i < cpsw->data.slaves; i++) |
| 1364 | slave_write(cpsw->slaves + i, vlan, reg); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1365 | |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 1366 | if (priv->ndev->flags & IFF_ALLMULTI) |
| 1367 | unreg_mcast_mask = ALE_ALL_PORTS; |
| 1368 | else |
| 1369 | unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2; |
| 1370 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1371 | cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS, |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 1372 | ALE_ALL_PORTS, ALE_ALL_PORTS, |
| 1373 | unreg_mcast_mask); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1374 | } |
| 1375 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1376 | static void cpsw_init_host_port(struct cpsw_priv *priv) |
| 1377 | { |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1378 | u32 fifo_mode; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1379 | u32 control_reg; |
| 1380 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1381 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1382 | /* soft reset the controller and initialize ale */ |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1383 | soft_reset("cpsw", &cpsw->regs->soft_reset); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1384 | cpsw_ale_start(cpsw->ale); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1385 | |
| 1386 | /* switch to vlan unaware mode */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1387 | 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] | 1388 | CPSW_ALE_VLAN_AWARE); |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1389 | control_reg = readl(&cpsw->regs->control); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1390 | control_reg |= CPSW_VLAN_AWARE; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1391 | writel(control_reg, &cpsw->regs->control); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1392 | fifo_mode = (cpsw->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE : |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1393 | CPSW_FIFO_NORMAL_MODE; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1394 | writel(fifo_mode, &cpsw->host_port_regs->tx_in_ctl); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1395 | |
| 1396 | /* setup host port priority mapping */ |
| 1397 | __raw_writel(CPDMA_TX_PRIORITY_MAP, |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1398 | &cpsw->host_port_regs->cpdma_tx_pri_map); |
| 1399 | __raw_writel(0, &cpsw->host_port_regs->cpdma_rx_chan_map); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1400 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1401 | cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1402 | ALE_PORT_STATE, ALE_PORT_STATE_FORWARD); |
| 1403 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1404 | if (!cpsw->data.dual_emac) { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1405 | 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] | 1406 | 0, 0); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1407 | cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 1408 | ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1409 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1410 | } |
| 1411 | |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 1412 | static int cpsw_fill_rx_channels(struct cpsw_priv *priv) |
| 1413 | { |
| 1414 | struct cpsw_common *cpsw = priv->cpsw; |
| 1415 | struct sk_buff *skb; |
| 1416 | int ch_buf_num; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1417 | int ch, i, ret; |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 1418 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1419 | for (ch = 0; ch < cpsw->rx_ch_num; ch++) { |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 1420 | ch_buf_num = cpdma_chan_get_rx_buf_num(cpsw->rxv[ch].ch); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1421 | for (i = 0; i < ch_buf_num; i++) { |
| 1422 | skb = __netdev_alloc_skb_ip_align(priv->ndev, |
| 1423 | cpsw->rx_packet_max, |
| 1424 | GFP_KERNEL); |
| 1425 | if (!skb) { |
| 1426 | cpsw_err(priv, ifup, "cannot allocate skb\n"); |
| 1427 | return -ENOMEM; |
| 1428 | } |
| 1429 | |
| 1430 | skb_set_queue_mapping(skb, ch); |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 1431 | ret = cpdma_chan_submit(cpsw->rxv[ch].ch, skb, |
| 1432 | skb->data, skb_tailroom(skb), |
| 1433 | 0); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1434 | if (ret < 0) { |
| 1435 | cpsw_err(priv, ifup, |
| 1436 | "cannot submit skb to channel %d rx, error %d\n", |
| 1437 | ch, ret); |
| 1438 | kfree_skb(skb); |
| 1439 | return ret; |
| 1440 | } |
| 1441 | kmemleak_not_leak(skb); |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 1442 | } |
| 1443 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1444 | cpsw_info(priv, ifup, "ch %d rx, submitted %d descriptors\n", |
| 1445 | ch, ch_buf_num); |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 1446 | } |
| 1447 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1448 | return 0; |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 1449 | } |
| 1450 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1451 | 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] | 1452 | { |
Schuyler Patton | 3995d26 | 2014-03-03 16:19:06 +0530 | [diff] [blame] | 1453 | u32 slave_port; |
| 1454 | |
Ivan Khoronzhuk | 6f1f583 | 2016-08-10 02:22:34 +0300 | [diff] [blame] | 1455 | slave_port = cpsw_get_slave_port(slave->slave_num); |
Schuyler Patton | 3995d26 | 2014-03-03 16:19:06 +0530 | [diff] [blame] | 1456 | |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 1457 | if (!slave->phy) |
| 1458 | return; |
| 1459 | phy_stop(slave->phy); |
| 1460 | phy_disconnect(slave->phy); |
| 1461 | slave->phy = NULL; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1462 | cpsw_ale_control_set(cpsw->ale, slave_port, |
Schuyler Patton | 3995d26 | 2014-03-03 16:19:06 +0530 | [diff] [blame] | 1463 | ALE_PORT_STATE, ALE_PORT_STATE_DISABLE); |
Grygorii Strashko | 1f95ba0 | 2016-06-24 21:23:41 +0300 | [diff] [blame] | 1464 | soft_reset_slave(slave); |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 1465 | } |
| 1466 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1467 | static int cpsw_ndo_open(struct net_device *ndev) |
| 1468 | { |
| 1469 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1470 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 1471 | int ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1472 | u32 reg; |
| 1473 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1474 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | 108a653 | 2016-06-24 21:23:42 +0300 | [diff] [blame] | 1475 | if (ret < 0) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1476 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | 108a653 | 2016-06-24 21:23:42 +0300 | [diff] [blame] | 1477 | return ret; |
| 1478 | } |
Grygorii Strashko | 3fa88c5 | 2016-04-19 21:09:49 +0300 | [diff] [blame] | 1479 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1480 | netif_carrier_off(ndev); |
| 1481 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1482 | /* Notify the stack of the actual queue counts. */ |
| 1483 | ret = netif_set_real_num_tx_queues(ndev, cpsw->tx_ch_num); |
| 1484 | if (ret) { |
| 1485 | dev_err(priv->dev, "cannot set real number of tx queues\n"); |
| 1486 | goto err_cleanup; |
| 1487 | } |
| 1488 | |
| 1489 | ret = netif_set_real_num_rx_queues(ndev, cpsw->rx_ch_num); |
| 1490 | if (ret) { |
| 1491 | dev_err(priv->dev, "cannot set real number of rx queues\n"); |
| 1492 | goto err_cleanup; |
| 1493 | } |
| 1494 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1495 | reg = cpsw->version; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1496 | |
| 1497 | dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n", |
| 1498 | CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg), |
| 1499 | CPSW_RTL_VERSION(reg)); |
| 1500 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 1501 | /* Initialize host and slave ports */ |
| 1502 | if (!cpsw->usage_count) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1503 | cpsw_init_host_port(priv); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1504 | for_each_slave(priv, cpsw_slave_open, priv); |
| 1505 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1506 | /* Add default VLAN */ |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1507 | if (!cpsw->data.dual_emac) |
Mugunthan V N | e6afea0 | 2014-06-18 17:21:48 +0530 | [diff] [blame] | 1508 | cpsw_add_default_vlan(priv); |
| 1509 | else |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1510 | cpsw_ale_add_vlan(cpsw->ale, cpsw->data.default_vlan, |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 1511 | ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1512 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 1513 | /* initialize shared resources for every ndev */ |
| 1514 | if (!cpsw->usage_count) { |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1515 | /* disable priority elevation */ |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1516 | __raw_writel(0, &cpsw->regs->ptype); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1517 | |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1518 | /* enable statistics collection only on all ports */ |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1519 | __raw_writel(0x7, &cpsw->regs->stat_port_en); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1520 | |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 1521 | /* Enable internal fifo flow control */ |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1522 | writel(0x7, &cpsw->regs->flow_control); |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 1523 | |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 1524 | napi_enable(&cpsw->napi_rx); |
| 1525 | napi_enable(&cpsw->napi_tx); |
Mugunthan V N | d354eb8 | 2015-08-04 16:06:19 +0530 | [diff] [blame] | 1526 | |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 1527 | if (cpsw->tx_irq_disabled) { |
| 1528 | cpsw->tx_irq_disabled = false; |
| 1529 | enable_irq(cpsw->irqs_table[1]); |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 1530 | } |
| 1531 | |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 1532 | if (cpsw->rx_irq_disabled) { |
| 1533 | cpsw->rx_irq_disabled = false; |
| 1534 | enable_irq(cpsw->irqs_table[0]); |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 1535 | } |
| 1536 | |
Ivan Khoronzhuk | 3802dce1 | 2016-08-22 21:18:24 +0300 | [diff] [blame] | 1537 | ret = cpsw_fill_rx_channels(priv); |
| 1538 | if (ret < 0) |
| 1539 | goto err_cleanup; |
Mugunthan V N | f280e89 | 2013-12-11 22:09:05 -0600 | [diff] [blame] | 1540 | |
Grygorii Strashko | 8a2c9a5 | 2016-12-06 18:00:41 -0600 | [diff] [blame] | 1541 | if (cpts_register(cpsw->cpts)) |
Mugunthan V N | f280e89 | 2013-12-11 22:09:05 -0600 | [diff] [blame] | 1542 | dev_err(priv->dev, "error registering cpts device\n"); |
| 1543 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1544 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1545 | |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1546 | /* Enable Interrupt pacing if configured */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1547 | if (cpsw->coal_intvl != 0) { |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1548 | struct ethtool_coalesce coal; |
| 1549 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1550 | coal.rx_coalesce_usecs = cpsw->coal_intvl; |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 1551 | cpsw_set_coalesce(ndev, &coal); |
| 1552 | } |
| 1553 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1554 | cpdma_ctlr_start(cpsw->dma); |
| 1555 | cpsw_intr_enable(cpsw); |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 1556 | cpsw->usage_count++; |
Mugunthan V N | f63a975 | 2014-04-10 14:23:24 +0530 | [diff] [blame] | 1557 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1558 | return 0; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1559 | |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 1560 | err_cleanup: |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1561 | cpdma_ctlr_stop(cpsw->dma); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1562 | for_each_slave(priv, cpsw_slave_stop, cpsw); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1563 | pm_runtime_put_sync(cpsw->dev); |
Sebastian Siewior | aacebbf | 2013-04-23 07:31:36 +0000 | [diff] [blame] | 1564 | netif_carrier_off(priv->ndev); |
| 1565 | return ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1566 | } |
| 1567 | |
| 1568 | static int cpsw_ndo_stop(struct net_device *ndev) |
| 1569 | { |
| 1570 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1571 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1572 | |
| 1573 | cpsw_info(priv, ifdown, "shutting down cpsw device\n"); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1574 | netif_tx_stop_all_queues(priv->ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1575 | netif_carrier_off(priv->ndev); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1576 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 1577 | if (cpsw->usage_count <= 1) { |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 1578 | napi_disable(&cpsw->napi_rx); |
| 1579 | napi_disable(&cpsw->napi_tx); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1580 | cpts_unregister(cpsw->cpts); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1581 | cpsw_intr_disable(cpsw); |
| 1582 | cpdma_ctlr_stop(cpsw->dma); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1583 | cpsw_ale_stop(cpsw->ale); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1584 | } |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1585 | for_each_slave(priv, cpsw_slave_stop, cpsw); |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 1586 | |
| 1587 | if (cpsw_need_resplit(cpsw)) |
| 1588 | cpsw_split_res(ndev); |
| 1589 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 1590 | cpsw->usage_count--; |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1591 | pm_runtime_put_sync(cpsw->dev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1592 | return 0; |
| 1593 | } |
| 1594 | |
| 1595 | static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb, |
| 1596 | struct net_device *ndev) |
| 1597 | { |
| 1598 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1599 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1600 | struct netdev_queue *txq; |
| 1601 | struct cpdma_chan *txch; |
| 1602 | int ret, q_idx; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1603 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1604 | if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) { |
| 1605 | cpsw_err(priv, tx_err, "packet pad failed\n"); |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 1606 | ndev->stats.tx_dropped++; |
Ivan Khoronzhuk | 1bf9605 | 2017-02-11 03:49:57 +0200 | [diff] [blame] | 1607 | return NET_XMIT_DROP; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1608 | } |
| 1609 | |
Mugunthan V N | 9232b16 | 2013-02-11 09:52:19 +0000 | [diff] [blame] | 1610 | if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP && |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1611 | cpts_is_tx_enabled(cpsw->cpts)) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1612 | skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; |
| 1613 | |
| 1614 | skb_tx_timestamp(skb); |
| 1615 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1616 | q_idx = skb_get_queue_mapping(skb); |
| 1617 | if (q_idx >= cpsw->tx_ch_num) |
| 1618 | q_idx = q_idx % cpsw->tx_ch_num; |
| 1619 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 1620 | txch = cpsw->txv[q_idx].ch; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1621 | ret = cpsw_tx_packet_submit(priv, skb, txch); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1622 | if (unlikely(ret != 0)) { |
| 1623 | cpsw_err(priv, tx_err, "desc submit failed\n"); |
| 1624 | goto fail; |
| 1625 | } |
| 1626 | |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 1627 | /* If there is no more tx desc left free then we need to |
| 1628 | * tell the kernel to stop sending us tx frames. |
| 1629 | */ |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1630 | if (unlikely(!cpdma_check_free_tx_desc(txch))) { |
| 1631 | txq = netdev_get_tx_queue(ndev, q_idx); |
| 1632 | netif_tx_stop_queue(txq); |
| 1633 | } |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 1634 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1635 | return NETDEV_TX_OK; |
| 1636 | fail: |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 1637 | ndev->stats.tx_dropped++; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1638 | txq = netdev_get_tx_queue(ndev, skb_get_queue_mapping(skb)); |
| 1639 | netif_tx_stop_queue(txq); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1640 | return NETDEV_TX_BUSY; |
| 1641 | } |
| 1642 | |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 1643 | #if IS_ENABLED(CONFIG_TI_CPTS) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1644 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1645 | static void cpsw_hwtstamp_v1(struct cpsw_common *cpsw) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1646 | { |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1647 | struct cpsw_slave *slave = &cpsw->slaves[cpsw->data.active_slave]; |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1648 | u32 ts_en, seq_id; |
| 1649 | |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1650 | if (!cpts_is_tx_enabled(cpsw->cpts) && |
| 1651 | !cpts_is_rx_enabled(cpsw->cpts)) { |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1652 | slave_write(slave, 0, CPSW1_TS_CTL); |
| 1653 | return; |
| 1654 | } |
| 1655 | |
| 1656 | seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588; |
| 1657 | ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS; |
| 1658 | |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1659 | if (cpts_is_tx_enabled(cpsw->cpts)) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1660 | ts_en |= CPSW_V1_TS_TX_EN; |
| 1661 | |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1662 | if (cpts_is_rx_enabled(cpsw->cpts)) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1663 | ts_en |= CPSW_V1_TS_RX_EN; |
| 1664 | |
| 1665 | slave_write(slave, ts_en, CPSW1_TS_CTL); |
| 1666 | slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE); |
| 1667 | } |
| 1668 | |
| 1669 | static void cpsw_hwtstamp_v2(struct cpsw_priv *priv) |
| 1670 | { |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1671 | struct cpsw_slave *slave; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1672 | struct cpsw_common *cpsw = priv->cpsw; |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1673 | u32 ctrl, mtype; |
| 1674 | |
Ivan Khoronzhuk | cb7d78d0 | 2016-12-10 14:23:46 +0200 | [diff] [blame] | 1675 | slave = &cpsw->slaves[cpsw_slave_index(cpsw, priv)]; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 1676 | |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1677 | ctrl = slave_read(slave, CPSW2_CONTROL); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1678 | switch (cpsw->version) { |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 1679 | case CPSW_VERSION_2: |
| 1680 | ctrl &= ~CTRL_V2_ALL_TS_MASK; |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1681 | |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1682 | if (cpts_is_tx_enabled(cpsw->cpts)) |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 1683 | ctrl |= CTRL_V2_TX_TS_BITS; |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1684 | |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1685 | if (cpts_is_rx_enabled(cpsw->cpts)) |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 1686 | ctrl |= CTRL_V2_RX_TS_BITS; |
Richard Cochran | 26fe7eb | 2015-05-25 11:02:13 +0200 | [diff] [blame] | 1687 | break; |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 1688 | case CPSW_VERSION_3: |
| 1689 | default: |
| 1690 | ctrl &= ~CTRL_V3_ALL_TS_MASK; |
| 1691 | |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1692 | if (cpts_is_tx_enabled(cpsw->cpts)) |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 1693 | ctrl |= CTRL_V3_TX_TS_BITS; |
| 1694 | |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1695 | if (cpts_is_rx_enabled(cpsw->cpts)) |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 1696 | ctrl |= CTRL_V3_RX_TS_BITS; |
Richard Cochran | 26fe7eb | 2015-05-25 11:02:13 +0200 | [diff] [blame] | 1697 | break; |
George Cherian | 09c5537 | 2014-05-02 12:02:02 +0530 | [diff] [blame] | 1698 | } |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1699 | |
| 1700 | mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS; |
| 1701 | |
| 1702 | slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE); |
| 1703 | slave_write(slave, ctrl, CPSW2_CONTROL); |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 1704 | __raw_writel(ETH_P_1588, &cpsw->regs->ts_ltype); |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1705 | } |
| 1706 | |
Ben Hutchings | a5b4145 | 2013-11-18 23:23:40 +0000 | [diff] [blame] | 1707 | static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1708 | { |
Mugunthan V N | 3177bf6 | 2012-11-27 07:53:40 +0000 | [diff] [blame] | 1709 | struct cpsw_priv *priv = netdev_priv(dev); |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1710 | struct hwtstamp_config cfg; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1711 | struct cpsw_common *cpsw = priv->cpsw; |
| 1712 | struct cpts *cpts = cpsw->cpts; |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1713 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1714 | if (cpsw->version != CPSW_VERSION_1 && |
| 1715 | cpsw->version != CPSW_VERSION_2 && |
| 1716 | cpsw->version != CPSW_VERSION_3) |
Ben Hutchings | 2ee91e5 | 2013-11-14 00:47:36 +0000 | [diff] [blame] | 1717 | return -EOPNOTSUPP; |
| 1718 | |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1719 | if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg))) |
| 1720 | return -EFAULT; |
| 1721 | |
| 1722 | /* reserved for future extensions */ |
| 1723 | if (cfg.flags) |
| 1724 | return -EINVAL; |
| 1725 | |
Ben Hutchings | 2ee91e5 | 2013-11-14 00:47:36 +0000 | [diff] [blame] | 1726 | if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1727 | return -ERANGE; |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1728 | |
| 1729 | switch (cfg.rx_filter) { |
| 1730 | case HWTSTAMP_FILTER_NONE: |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1731 | cpts_rx_enable(cpts, 0); |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1732 | break; |
| 1733 | case HWTSTAMP_FILTER_ALL: |
| 1734 | case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: |
| 1735 | case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: |
| 1736 | case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: |
| 1737 | return -ERANGE; |
| 1738 | case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: |
| 1739 | case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: |
| 1740 | case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: |
| 1741 | case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: |
| 1742 | case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: |
| 1743 | case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: |
| 1744 | case HWTSTAMP_FILTER_PTP_V2_EVENT: |
| 1745 | case HWTSTAMP_FILTER_PTP_V2_SYNC: |
| 1746 | case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1747 | cpts_rx_enable(cpts, 1); |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1748 | cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT; |
| 1749 | break; |
| 1750 | default: |
| 1751 | return -ERANGE; |
| 1752 | } |
| 1753 | |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1754 | cpts_tx_enable(cpts, cfg.tx_type == HWTSTAMP_TX_ON); |
Ben Hutchings | 2ee91e5 | 2013-11-14 00:47:36 +0000 | [diff] [blame] | 1755 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1756 | switch (cpsw->version) { |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1757 | case CPSW_VERSION_1: |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1758 | cpsw_hwtstamp_v1(cpsw); |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1759 | break; |
| 1760 | case CPSW_VERSION_2: |
George Cherian | f7d403c | 2014-05-02 12:02:01 +0530 | [diff] [blame] | 1761 | case CPSW_VERSION_3: |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1762 | cpsw_hwtstamp_v2(priv); |
| 1763 | break; |
| 1764 | default: |
Ben Hutchings | 2ee91e5 | 2013-11-14 00:47:36 +0000 | [diff] [blame] | 1765 | WARN_ON(1); |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1766 | } |
| 1767 | |
| 1768 | return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0; |
| 1769 | } |
| 1770 | |
Ben Hutchings | a5b4145 | 2013-11-18 23:23:40 +0000 | [diff] [blame] | 1771 | static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr) |
| 1772 | { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1773 | struct cpsw_common *cpsw = ndev_to_cpsw(dev); |
| 1774 | struct cpts *cpts = cpsw->cpts; |
Ben Hutchings | a5b4145 | 2013-11-18 23:23:40 +0000 | [diff] [blame] | 1775 | struct hwtstamp_config cfg; |
| 1776 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1777 | if (cpsw->version != CPSW_VERSION_1 && |
| 1778 | cpsw->version != CPSW_VERSION_2 && |
| 1779 | cpsw->version != CPSW_VERSION_3) |
Ben Hutchings | a5b4145 | 2013-11-18 23:23:40 +0000 | [diff] [blame] | 1780 | return -EOPNOTSUPP; |
| 1781 | |
| 1782 | cfg.flags = 0; |
Grygorii Strashko | b63ba58 | 2016-12-06 18:00:35 -0600 | [diff] [blame] | 1783 | cfg.tx_type = cpts_is_tx_enabled(cpts) ? |
| 1784 | HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF; |
| 1785 | cfg.rx_filter = (cpts_is_rx_enabled(cpts) ? |
Ben Hutchings | a5b4145 | 2013-11-18 23:23:40 +0000 | [diff] [blame] | 1786 | HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE); |
| 1787 | |
| 1788 | return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0; |
| 1789 | } |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 1790 | #else |
| 1791 | static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr) |
| 1792 | { |
| 1793 | return -EOPNOTSUPP; |
| 1794 | } |
Ben Hutchings | a5b4145 | 2013-11-18 23:23:40 +0000 | [diff] [blame] | 1795 | |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 1796 | static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr) |
| 1797 | { |
| 1798 | return -EOPNOTSUPP; |
| 1799 | } |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1800 | #endif /*CONFIG_TI_CPTS*/ |
| 1801 | |
| 1802 | static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd) |
| 1803 | { |
Mugunthan V N | 11f2c98 | 2013-03-11 23:16:38 +0000 | [diff] [blame] | 1804 | struct cpsw_priv *priv = netdev_priv(dev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1805 | struct cpsw_common *cpsw = priv->cpsw; |
| 1806 | int slave_no = cpsw_slave_index(cpsw, priv); |
Mugunthan V N | 11f2c98 | 2013-03-11 23:16:38 +0000 | [diff] [blame] | 1807 | |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1808 | if (!netif_running(dev)) |
| 1809 | return -EINVAL; |
| 1810 | |
Mugunthan V N | 11f2c98 | 2013-03-11 23:16:38 +0000 | [diff] [blame] | 1811 | switch (cmd) { |
Mugunthan V N | 11f2c98 | 2013-03-11 23:16:38 +0000 | [diff] [blame] | 1812 | case SIOCSHWTSTAMP: |
Ben Hutchings | a5b4145 | 2013-11-18 23:23:40 +0000 | [diff] [blame] | 1813 | return cpsw_hwtstamp_set(dev, req); |
| 1814 | case SIOCGHWTSTAMP: |
| 1815 | return cpsw_hwtstamp_get(dev, req); |
Mugunthan V N | 11f2c98 | 2013-03-11 23:16:38 +0000 | [diff] [blame] | 1816 | } |
| 1817 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1818 | if (!cpsw->slaves[slave_no].phy) |
Stefan Sørensen | c1b5994 | 2014-02-16 14:54:25 +0100 | [diff] [blame] | 1819 | return -EOPNOTSUPP; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1820 | return phy_mii_ioctl(cpsw->slaves[slave_no].phy, req, cmd); |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 1821 | } |
| 1822 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1823 | static void cpsw_ndo_tx_timeout(struct net_device *ndev) |
| 1824 | { |
| 1825 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1826 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1827 | int ch; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1828 | |
| 1829 | cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n"); |
Tobias Klauser | 8dc43dd | 2014-03-10 13:12:23 +0100 | [diff] [blame] | 1830 | ndev->stats.tx_errors++; |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1831 | cpsw_intr_disable(cpsw); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1832 | for (ch = 0; ch < cpsw->tx_ch_num; ch++) { |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 1833 | cpdma_chan_stop(cpsw->txv[ch].ch); |
| 1834 | cpdma_chan_start(cpsw->txv[ch].ch); |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 1835 | } |
| 1836 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 1837 | cpsw_intr_enable(cpsw); |
Grygorii Strashko | 75514b6 | 2017-03-31 18:41:23 -0500 | [diff] [blame] | 1838 | netif_trans_update(ndev); |
| 1839 | netif_tx_wake_all_queues(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1840 | } |
| 1841 | |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 1842 | static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p) |
| 1843 | { |
| 1844 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 1845 | struct sockaddr *addr = (struct sockaddr *)p; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1846 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 1847 | int flags = 0; |
| 1848 | u16 vid = 0; |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1849 | int ret; |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 1850 | |
| 1851 | if (!is_valid_ether_addr(addr->sa_data)) |
| 1852 | return -EADDRNOTAVAIL; |
| 1853 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1854 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1855 | if (ret < 0) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1856 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1857 | return ret; |
| 1858 | } |
| 1859 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1860 | if (cpsw->data.dual_emac) { |
| 1861 | vid = cpsw->slaves[priv->emac_port].port_vlan; |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 1862 | flags = ALE_VLAN; |
| 1863 | } |
| 1864 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1865 | 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] | 1866 | flags, vid); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1867 | 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] | 1868 | flags, vid); |
| 1869 | |
| 1870 | memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN); |
| 1871 | memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN); |
| 1872 | for_each_slave(priv, cpsw_set_slave_mac, priv); |
| 1873 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1874 | pm_runtime_put(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1875 | |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 1876 | return 0; |
| 1877 | } |
| 1878 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1879 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1880 | static void cpsw_ndo_poll_controller(struct net_device *ndev) |
| 1881 | { |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 1882 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1883 | |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 1884 | cpsw_intr_disable(cpsw); |
| 1885 | cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw); |
| 1886 | cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw); |
| 1887 | cpsw_intr_enable(cpsw); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 1888 | } |
| 1889 | #endif |
| 1890 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1891 | static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv, |
| 1892 | unsigned short vid) |
| 1893 | { |
| 1894 | int ret; |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1895 | int unreg_mcast_mask = 0; |
| 1896 | u32 port_mask; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1897 | struct cpsw_common *cpsw = priv->cpsw; |
Lennart Sorensen | 1e5c4bc | 2014-10-31 13:38:52 -0400 | [diff] [blame] | 1898 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1899 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1900 | port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1901 | |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1902 | if (priv->ndev->flags & IFF_ALLMULTI) |
| 1903 | unreg_mcast_mask = port_mask; |
| 1904 | } else { |
| 1905 | port_mask = ALE_ALL_PORTS; |
| 1906 | |
| 1907 | if (priv->ndev->flags & IFF_ALLMULTI) |
| 1908 | unreg_mcast_mask = ALE_ALL_PORTS; |
| 1909 | else |
| 1910 | unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2; |
| 1911 | } |
| 1912 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1913 | 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] | 1914 | unreg_mcast_mask); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1915 | if (ret != 0) |
| 1916 | return ret; |
| 1917 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1918 | ret = cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 1919 | HOST_PORT_NUM, ALE_VLAN, vid); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1920 | if (ret != 0) |
| 1921 | goto clean_vid; |
| 1922 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1923 | ret = cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, |
Mugunthan V N | 9f6bd8f | 2015-01-15 14:59:28 +0530 | [diff] [blame] | 1924 | port_mask, ALE_VLAN, vid, 0); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1925 | if (ret != 0) |
| 1926 | goto clean_vlan_ucast; |
| 1927 | return 0; |
| 1928 | |
| 1929 | clean_vlan_ucast: |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1930 | cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, |
Grygorii Strashko | 71a2cbb | 2016-04-07 15:16:44 +0300 | [diff] [blame] | 1931 | HOST_PORT_NUM, ALE_VLAN, vid); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1932 | clean_vid: |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1933 | cpsw_ale_del_vlan(cpsw->ale, vid, 0); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1934 | return ret; |
| 1935 | } |
| 1936 | |
| 1937 | static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev, |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1938 | __be16 proto, u16 vid) |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1939 | { |
| 1940 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1941 | struct cpsw_common *cpsw = priv->cpsw; |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1942 | int ret; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1943 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1944 | if (vid == cpsw->data.default_vlan) |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1945 | return 0; |
| 1946 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1947 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1948 | if (ret < 0) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1949 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1950 | return ret; |
| 1951 | } |
| 1952 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1953 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 02a5416 | 2015-01-22 15:19:22 +0530 | [diff] [blame] | 1954 | /* In dual EMAC, reserved VLAN id should not be used for |
| 1955 | * creating VLAN interfaces as this can break the dual |
| 1956 | * EMAC port separation |
| 1957 | */ |
| 1958 | int i; |
| 1959 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1960 | for (i = 0; i < cpsw->data.slaves; i++) { |
| 1961 | if (vid == cpsw->slaves[i].port_vlan) |
Mugunthan V N | 02a5416 | 2015-01-22 15:19:22 +0530 | [diff] [blame] | 1962 | return -EINVAL; |
| 1963 | } |
| 1964 | } |
| 1965 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1966 | dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1967 | ret = cpsw_add_vlan_ale_entry(priv, vid); |
| 1968 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1969 | pm_runtime_put(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1970 | return ret; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1971 | } |
| 1972 | |
| 1973 | static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev, |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1974 | __be16 proto, u16 vid) |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1975 | { |
| 1976 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 1977 | struct cpsw_common *cpsw = priv->cpsw; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1978 | int ret; |
| 1979 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1980 | if (vid == cpsw->data.default_vlan) |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1981 | return 0; |
| 1982 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1983 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1984 | if (ret < 0) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 1985 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 1986 | return ret; |
| 1987 | } |
| 1988 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1989 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 02a5416 | 2015-01-22 15:19:22 +0530 | [diff] [blame] | 1990 | int i; |
| 1991 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 1992 | for (i = 0; i < cpsw->data.slaves; i++) { |
| 1993 | if (vid == cpsw->slaves[i].port_vlan) |
Mugunthan V N | 02a5416 | 2015-01-22 15:19:22 +0530 | [diff] [blame] | 1994 | return -EINVAL; |
| 1995 | } |
| 1996 | } |
| 1997 | |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 1998 | dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 1999 | ret = cpsw_ale_del_vlan(cpsw->ale, vid, 0); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 2000 | if (ret != 0) |
| 2001 | return ret; |
| 2002 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2003 | ret = cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, |
Grygorii Strashko | 61f1cef | 2016-04-07 15:16:43 +0300 | [diff] [blame] | 2004 | HOST_PORT_NUM, ALE_VLAN, vid); |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 2005 | if (ret != 0) |
| 2006 | return ret; |
| 2007 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2008 | ret = cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast, |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 2009 | 0, ALE_VLAN, vid); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2010 | pm_runtime_put(cpsw->dev); |
Grygorii Strashko | a6c5d14 | 2016-06-24 21:23:45 +0300 | [diff] [blame] | 2011 | return ret; |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 2012 | } |
| 2013 | |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2014 | static int cpsw_ndo_set_tx_maxrate(struct net_device *ndev, int queue, u32 rate) |
| 2015 | { |
| 2016 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2017 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | 52986a2 | 2016-12-10 14:23:50 +0200 | [diff] [blame] | 2018 | struct cpsw_slave *slave; |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 2019 | u32 min_rate; |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2020 | u32 ch_rate; |
Ivan Khoronzhuk | 52986a2 | 2016-12-10 14:23:50 +0200 | [diff] [blame] | 2021 | int i, ret; |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2022 | |
| 2023 | ch_rate = netdev_get_tx_queue(ndev, queue)->tx_maxrate; |
| 2024 | if (ch_rate == rate) |
| 2025 | return 0; |
| 2026 | |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 2027 | ch_rate = rate * 1000; |
| 2028 | min_rate = cpdma_chan_get_min_rate(cpsw->dma); |
| 2029 | if ((ch_rate < min_rate && ch_rate)) { |
| 2030 | dev_err(priv->dev, "The channel rate cannot be less than %dMbps", |
| 2031 | min_rate); |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2032 | return -EINVAL; |
| 2033 | } |
| 2034 | |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 2035 | if (rate > cpsw->speed) { |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 2036 | dev_err(priv->dev, "The channel rate cannot be more than 2Gbps"); |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2037 | return -EINVAL; |
| 2038 | } |
| 2039 | |
| 2040 | ret = pm_runtime_get_sync(cpsw->dev); |
| 2041 | if (ret < 0) { |
| 2042 | pm_runtime_put_noidle(cpsw->dev); |
| 2043 | return ret; |
| 2044 | } |
| 2045 | |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 2046 | ret = cpdma_chan_set_rate(cpsw->txv[queue].ch, ch_rate); |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2047 | pm_runtime_put(cpsw->dev); |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 2048 | |
| 2049 | if (ret) |
| 2050 | return ret; |
| 2051 | |
Ivan Khoronzhuk | 52986a2 | 2016-12-10 14:23:50 +0200 | [diff] [blame] | 2052 | /* update rates for slaves tx queues */ |
| 2053 | for (i = 0; i < cpsw->data.slaves; i++) { |
| 2054 | slave = &cpsw->slaves[i]; |
| 2055 | if (!slave->ndev) |
| 2056 | continue; |
| 2057 | |
| 2058 | netdev_get_tx_queue(slave->ndev, queue)->tx_maxrate = rate; |
| 2059 | } |
| 2060 | |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 2061 | cpsw_split_res(ndev); |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2062 | return ret; |
| 2063 | } |
| 2064 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2065 | static const struct net_device_ops cpsw_netdev_ops = { |
| 2066 | .ndo_open = cpsw_ndo_open, |
| 2067 | .ndo_stop = cpsw_ndo_stop, |
| 2068 | .ndo_start_xmit = cpsw_ndo_start_xmit, |
Mugunthan V N | dcfd8d5 | 2013-07-25 23:44:01 +0530 | [diff] [blame] | 2069 | .ndo_set_mac_address = cpsw_ndo_set_mac_address, |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2070 | .ndo_do_ioctl = cpsw_ndo_ioctl, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2071 | .ndo_validate_addr = eth_validate_addr, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2072 | .ndo_tx_timeout = cpsw_ndo_tx_timeout, |
Mugunthan V N | 5c50a85 | 2012-10-29 08:45:11 +0000 | [diff] [blame] | 2073 | .ndo_set_rx_mode = cpsw_ndo_set_rx_mode, |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2074 | .ndo_set_tx_maxrate = cpsw_ndo_set_tx_maxrate, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2075 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 2076 | .ndo_poll_controller = cpsw_ndo_poll_controller, |
| 2077 | #endif |
Mugunthan V N | 3b72c2f | 2013-02-05 08:26:48 +0000 | [diff] [blame] | 2078 | .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid, |
| 2079 | .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2080 | }; |
| 2081 | |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2082 | static int cpsw_get_regs_len(struct net_device *ndev) |
| 2083 | { |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2084 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2085 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2086 | return cpsw->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32); |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2087 | } |
| 2088 | |
| 2089 | static void cpsw_get_regs(struct net_device *ndev, |
| 2090 | struct ethtool_regs *regs, void *p) |
| 2091 | { |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2092 | u32 *reg = p; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2093 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2094 | |
| 2095 | /* update CPSW IP version */ |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2096 | regs->version = cpsw->version; |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2097 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2098 | cpsw_ale_dump(cpsw->ale, reg); |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2099 | } |
| 2100 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2101 | static void cpsw_get_drvinfo(struct net_device *ndev, |
| 2102 | struct ethtool_drvinfo *info) |
| 2103 | { |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 2104 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2105 | struct platform_device *pdev = to_platform_device(cpsw->dev); |
Jiri Pirko | 7826d43 | 2013-01-06 00:44:26 +0000 | [diff] [blame] | 2106 | |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2107 | strlcpy(info->driver, "cpsw", sizeof(info->driver)); |
Jiri Pirko | 7826d43 | 2013-01-06 00:44:26 +0000 | [diff] [blame] | 2108 | strlcpy(info->version, "1.0", sizeof(info->version)); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2109 | strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info)); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2110 | } |
| 2111 | |
| 2112 | static u32 cpsw_get_msglevel(struct net_device *ndev) |
| 2113 | { |
| 2114 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2115 | return priv->msg_enable; |
| 2116 | } |
| 2117 | |
| 2118 | static void cpsw_set_msglevel(struct net_device *ndev, u32 value) |
| 2119 | { |
| 2120 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2121 | priv->msg_enable = value; |
| 2122 | } |
| 2123 | |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 2124 | #if IS_ENABLED(CONFIG_TI_CPTS) |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2125 | static int cpsw_get_ts_info(struct net_device *ndev, |
| 2126 | struct ethtool_ts_info *info) |
| 2127 | { |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2128 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2129 | |
| 2130 | info->so_timestamping = |
| 2131 | SOF_TIMESTAMPING_TX_HARDWARE | |
| 2132 | SOF_TIMESTAMPING_TX_SOFTWARE | |
| 2133 | SOF_TIMESTAMPING_RX_HARDWARE | |
| 2134 | SOF_TIMESTAMPING_RX_SOFTWARE | |
| 2135 | SOF_TIMESTAMPING_SOFTWARE | |
| 2136 | SOF_TIMESTAMPING_RAW_HARDWARE; |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2137 | info->phc_index = cpsw->cpts->phc_index; |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2138 | info->tx_types = |
| 2139 | (1 << HWTSTAMP_TX_OFF) | |
| 2140 | (1 << HWTSTAMP_TX_ON); |
| 2141 | info->rx_filters = |
| 2142 | (1 << HWTSTAMP_FILTER_NONE) | |
| 2143 | (1 << HWTSTAMP_FILTER_PTP_V2_EVENT); |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 2144 | return 0; |
| 2145 | } |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2146 | #else |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 2147 | static int cpsw_get_ts_info(struct net_device *ndev, |
| 2148 | struct ethtool_ts_info *info) |
| 2149 | { |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2150 | info->so_timestamping = |
| 2151 | SOF_TIMESTAMPING_TX_SOFTWARE | |
| 2152 | SOF_TIMESTAMPING_RX_SOFTWARE | |
| 2153 | SOF_TIMESTAMPING_SOFTWARE; |
| 2154 | info->phc_index = -1; |
| 2155 | info->tx_types = 0; |
| 2156 | info->rx_filters = 0; |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2157 | return 0; |
| 2158 | } |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 2159 | #endif |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2160 | |
Philippe Reynes | 2479876 | 2016-10-08 17:46:15 +0200 | [diff] [blame] | 2161 | static int cpsw_get_link_ksettings(struct net_device *ndev, |
| 2162 | struct ethtool_link_ksettings *ecmd) |
Mugunthan V N | d3bb9c5 | 2013-03-11 23:16:36 +0000 | [diff] [blame] | 2163 | { |
| 2164 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2165 | struct cpsw_common *cpsw = priv->cpsw; |
| 2166 | int slave_no = cpsw_slave_index(cpsw, priv); |
Mugunthan V N | d3bb9c5 | 2013-03-11 23:16:36 +0000 | [diff] [blame] | 2167 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2168 | if (cpsw->slaves[slave_no].phy) |
Philippe Reynes | 2479876 | 2016-10-08 17:46:15 +0200 | [diff] [blame] | 2169 | return phy_ethtool_ksettings_get(cpsw->slaves[slave_no].phy, |
| 2170 | ecmd); |
Mugunthan V N | d3bb9c5 | 2013-03-11 23:16:36 +0000 | [diff] [blame] | 2171 | else |
| 2172 | return -EOPNOTSUPP; |
| 2173 | } |
| 2174 | |
Philippe Reynes | 2479876 | 2016-10-08 17:46:15 +0200 | [diff] [blame] | 2175 | static int cpsw_set_link_ksettings(struct net_device *ndev, |
| 2176 | const struct ethtool_link_ksettings *ecmd) |
Mugunthan V N | d3bb9c5 | 2013-03-11 23:16:36 +0000 | [diff] [blame] | 2177 | { |
| 2178 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2179 | struct cpsw_common *cpsw = priv->cpsw; |
| 2180 | int slave_no = cpsw_slave_index(cpsw, priv); |
Mugunthan V N | d3bb9c5 | 2013-03-11 23:16:36 +0000 | [diff] [blame] | 2181 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2182 | if (cpsw->slaves[slave_no].phy) |
Philippe Reynes | 2479876 | 2016-10-08 17:46:15 +0200 | [diff] [blame] | 2183 | return phy_ethtool_ksettings_set(cpsw->slaves[slave_no].phy, |
| 2184 | ecmd); |
Mugunthan V N | d3bb9c5 | 2013-03-11 23:16:36 +0000 | [diff] [blame] | 2185 | else |
| 2186 | return -EOPNOTSUPP; |
| 2187 | } |
| 2188 | |
Matus Ujhelyi | d8a6442 | 2013-08-20 07:59:38 +0200 | [diff] [blame] | 2189 | static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol) |
| 2190 | { |
| 2191 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2192 | struct cpsw_common *cpsw = priv->cpsw; |
| 2193 | int slave_no = cpsw_slave_index(cpsw, priv); |
Matus Ujhelyi | d8a6442 | 2013-08-20 07:59:38 +0200 | [diff] [blame] | 2194 | |
| 2195 | wol->supported = 0; |
| 2196 | wol->wolopts = 0; |
| 2197 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2198 | if (cpsw->slaves[slave_no].phy) |
| 2199 | phy_ethtool_get_wol(cpsw->slaves[slave_no].phy, wol); |
Matus Ujhelyi | d8a6442 | 2013-08-20 07:59:38 +0200 | [diff] [blame] | 2200 | } |
| 2201 | |
| 2202 | static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol) |
| 2203 | { |
| 2204 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2205 | struct cpsw_common *cpsw = priv->cpsw; |
| 2206 | int slave_no = cpsw_slave_index(cpsw, priv); |
Matus Ujhelyi | d8a6442 | 2013-08-20 07:59:38 +0200 | [diff] [blame] | 2207 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2208 | if (cpsw->slaves[slave_no].phy) |
| 2209 | return phy_ethtool_set_wol(cpsw->slaves[slave_no].phy, wol); |
Matus Ujhelyi | d8a6442 | 2013-08-20 07:59:38 +0200 | [diff] [blame] | 2210 | else |
| 2211 | return -EOPNOTSUPP; |
| 2212 | } |
| 2213 | |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 2214 | static void cpsw_get_pauseparam(struct net_device *ndev, |
| 2215 | struct ethtool_pauseparam *pause) |
| 2216 | { |
| 2217 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2218 | |
| 2219 | pause->autoneg = AUTONEG_DISABLE; |
| 2220 | pause->rx_pause = priv->rx_pause ? true : false; |
| 2221 | pause->tx_pause = priv->tx_pause ? true : false; |
| 2222 | } |
| 2223 | |
| 2224 | static int cpsw_set_pauseparam(struct net_device *ndev, |
| 2225 | struct ethtool_pauseparam *pause) |
| 2226 | { |
| 2227 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2228 | bool link; |
| 2229 | |
| 2230 | priv->rx_pause = pause->rx_pause ? true : false; |
| 2231 | priv->tx_pause = pause->tx_pause ? true : false; |
| 2232 | |
| 2233 | for_each_slave(priv, _cpsw_adjust_link, priv, &link); |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 2234 | return 0; |
| 2235 | } |
| 2236 | |
Grygorii Strashko | 7898b1d | 2016-06-24 21:23:44 +0300 | [diff] [blame] | 2237 | static int cpsw_ethtool_op_begin(struct net_device *ndev) |
| 2238 | { |
| 2239 | struct cpsw_priv *priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 2240 | struct cpsw_common *cpsw = priv->cpsw; |
Grygorii Strashko | 7898b1d | 2016-06-24 21:23:44 +0300 | [diff] [blame] | 2241 | int ret; |
| 2242 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2243 | ret = pm_runtime_get_sync(cpsw->dev); |
Grygorii Strashko | 7898b1d | 2016-06-24 21:23:44 +0300 | [diff] [blame] | 2244 | if (ret < 0) { |
| 2245 | cpsw_err(priv, drv, "ethtool begin failed %d\n", ret); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2246 | pm_runtime_put_noidle(cpsw->dev); |
Grygorii Strashko | 7898b1d | 2016-06-24 21:23:44 +0300 | [diff] [blame] | 2247 | } |
| 2248 | |
| 2249 | return ret; |
| 2250 | } |
| 2251 | |
| 2252 | static void cpsw_ethtool_op_complete(struct net_device *ndev) |
| 2253 | { |
| 2254 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2255 | int ret; |
| 2256 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2257 | ret = pm_runtime_put(priv->cpsw->dev); |
Grygorii Strashko | 7898b1d | 2016-06-24 21:23:44 +0300 | [diff] [blame] | 2258 | if (ret < 0) |
| 2259 | cpsw_err(priv, drv, "ethtool complete failed %d\n", ret); |
| 2260 | } |
| 2261 | |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2262 | static void cpsw_get_channels(struct net_device *ndev, |
| 2263 | struct ethtool_channels *ch) |
| 2264 | { |
| 2265 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
| 2266 | |
| 2267 | ch->max_combined = 0; |
| 2268 | ch->max_rx = CPSW_MAX_QUEUES; |
| 2269 | ch->max_tx = CPSW_MAX_QUEUES; |
| 2270 | ch->max_other = 0; |
| 2271 | ch->other_count = 0; |
| 2272 | ch->rx_count = cpsw->rx_ch_num; |
| 2273 | ch->tx_count = cpsw->tx_ch_num; |
| 2274 | ch->combined_count = 0; |
| 2275 | } |
| 2276 | |
| 2277 | static int cpsw_check_ch_settings(struct cpsw_common *cpsw, |
| 2278 | struct ethtool_channels *ch) |
| 2279 | { |
| 2280 | if (ch->combined_count) |
| 2281 | return -EINVAL; |
| 2282 | |
| 2283 | /* verify we have at least one channel in each direction */ |
| 2284 | if (!ch->rx_count || !ch->tx_count) |
| 2285 | return -EINVAL; |
| 2286 | |
| 2287 | if (ch->rx_count > cpsw->data.channels || |
| 2288 | ch->tx_count > cpsw->data.channels) |
| 2289 | return -EINVAL; |
| 2290 | |
| 2291 | return 0; |
| 2292 | } |
| 2293 | |
| 2294 | static int cpsw_update_channels_res(struct cpsw_priv *priv, int ch_num, int rx) |
| 2295 | { |
| 2296 | int (*poll)(struct napi_struct *, int); |
| 2297 | struct cpsw_common *cpsw = priv->cpsw; |
| 2298 | void (*handler)(void *, int, int); |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2299 | struct netdev_queue *queue; |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 2300 | struct cpsw_vector *vec; |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2301 | int ret, *ch; |
| 2302 | |
| 2303 | if (rx) { |
| 2304 | ch = &cpsw->rx_ch_num; |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 2305 | vec = cpsw->rxv; |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2306 | handler = cpsw_rx_handler; |
| 2307 | poll = cpsw_rx_poll; |
| 2308 | } else { |
| 2309 | ch = &cpsw->tx_ch_num; |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 2310 | vec = cpsw->txv; |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2311 | handler = cpsw_tx_handler; |
| 2312 | poll = cpsw_tx_poll; |
| 2313 | } |
| 2314 | |
| 2315 | while (*ch < ch_num) { |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 2316 | vec[*ch].ch = cpdma_chan_create(cpsw->dma, *ch, handler, rx); |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 2317 | queue = netdev_get_tx_queue(priv->ndev, *ch); |
| 2318 | queue->tx_maxrate = 0; |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2319 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 2320 | if (IS_ERR(vec[*ch].ch)) |
| 2321 | return PTR_ERR(vec[*ch].ch); |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2322 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 2323 | if (!vec[*ch].ch) |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2324 | return -EINVAL; |
| 2325 | |
| 2326 | cpsw_info(priv, ifup, "created new %d %s channel\n", *ch, |
| 2327 | (rx ? "rx" : "tx")); |
| 2328 | (*ch)++; |
| 2329 | } |
| 2330 | |
| 2331 | while (*ch > ch_num) { |
| 2332 | (*ch)--; |
| 2333 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 2334 | ret = cpdma_chan_destroy(vec[*ch].ch); |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2335 | if (ret) |
| 2336 | return ret; |
| 2337 | |
| 2338 | cpsw_info(priv, ifup, "destroyed %d %s channel\n", *ch, |
| 2339 | (rx ? "rx" : "tx")); |
| 2340 | } |
| 2341 | |
| 2342 | return 0; |
| 2343 | } |
| 2344 | |
| 2345 | static int cpsw_update_channels(struct cpsw_priv *priv, |
| 2346 | struct ethtool_channels *ch) |
| 2347 | { |
| 2348 | int ret; |
| 2349 | |
| 2350 | ret = cpsw_update_channels_res(priv, ch->rx_count, 1); |
| 2351 | if (ret) |
| 2352 | return ret; |
| 2353 | |
| 2354 | ret = cpsw_update_channels_res(priv, ch->tx_count, 0); |
| 2355 | if (ret) |
| 2356 | return ret; |
| 2357 | |
| 2358 | return 0; |
| 2359 | } |
| 2360 | |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2361 | static void cpsw_suspend_data_pass(struct net_device *ndev) |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2362 | { |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2363 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2364 | struct cpsw_slave *slave; |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2365 | int i; |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2366 | |
| 2367 | /* Disable NAPI scheduling */ |
| 2368 | cpsw_intr_disable(cpsw); |
| 2369 | |
| 2370 | /* Stop all transmit queues for every network device. |
| 2371 | * Disable re-using rx descriptors with dormant_on. |
| 2372 | */ |
| 2373 | for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) { |
| 2374 | if (!(slave->ndev && netif_running(slave->ndev))) |
| 2375 | continue; |
| 2376 | |
| 2377 | netif_tx_stop_all_queues(slave->ndev); |
| 2378 | netif_dormant_on(slave->ndev); |
| 2379 | } |
| 2380 | |
| 2381 | /* Handle rest of tx packets and stop cpdma channels */ |
| 2382 | cpdma_ctlr_stop(cpsw->dma); |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2383 | } |
| 2384 | |
| 2385 | static int cpsw_resume_data_pass(struct net_device *ndev) |
| 2386 | { |
| 2387 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2388 | struct cpsw_common *cpsw = priv->cpsw; |
| 2389 | struct cpsw_slave *slave; |
| 2390 | int i, ret; |
| 2391 | |
| 2392 | /* Allow rx packets handling */ |
| 2393 | for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) |
| 2394 | if (slave->ndev && netif_running(slave->ndev)) |
| 2395 | netif_dormant_off(slave->ndev); |
| 2396 | |
| 2397 | /* After this receive is started */ |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 2398 | if (cpsw->usage_count) { |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2399 | ret = cpsw_fill_rx_channels(priv); |
| 2400 | if (ret) |
| 2401 | return ret; |
| 2402 | |
| 2403 | cpdma_ctlr_start(cpsw->dma); |
| 2404 | cpsw_intr_enable(cpsw); |
| 2405 | } |
| 2406 | |
| 2407 | /* Resume transmit for every affected interface */ |
| 2408 | for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) |
| 2409 | if (slave->ndev && netif_running(slave->ndev)) |
| 2410 | netif_tx_start_all_queues(slave->ndev); |
| 2411 | |
| 2412 | return 0; |
| 2413 | } |
| 2414 | |
| 2415 | static int cpsw_set_channels(struct net_device *ndev, |
| 2416 | struct ethtool_channels *chs) |
| 2417 | { |
| 2418 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2419 | struct cpsw_common *cpsw = priv->cpsw; |
| 2420 | struct cpsw_slave *slave; |
| 2421 | int i, ret; |
| 2422 | |
| 2423 | ret = cpsw_check_ch_settings(cpsw, chs); |
| 2424 | if (ret < 0) |
| 2425 | return ret; |
| 2426 | |
| 2427 | cpsw_suspend_data_pass(ndev); |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2428 | ret = cpsw_update_channels(priv, chs); |
| 2429 | if (ret) |
| 2430 | goto err; |
| 2431 | |
| 2432 | for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) { |
| 2433 | if (!(slave->ndev && netif_running(slave->ndev))) |
| 2434 | continue; |
| 2435 | |
| 2436 | /* Inform stack about new count of queues */ |
| 2437 | ret = netif_set_real_num_tx_queues(slave->ndev, |
| 2438 | cpsw->tx_ch_num); |
| 2439 | if (ret) { |
| 2440 | dev_err(priv->dev, "cannot set real number of tx queues\n"); |
| 2441 | goto err; |
| 2442 | } |
| 2443 | |
| 2444 | ret = netif_set_real_num_rx_queues(slave->ndev, |
| 2445 | cpsw->rx_ch_num); |
| 2446 | if (ret) { |
| 2447 | dev_err(priv->dev, "cannot set real number of rx queues\n"); |
| 2448 | goto err; |
| 2449 | } |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2450 | } |
| 2451 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 2452 | if (cpsw->usage_count) |
Ivan Khoronzhuk | 32b78d8 | 2016-12-10 14:23:48 +0200 | [diff] [blame] | 2453 | cpsw_split_res(ndev); |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 2454 | |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2455 | ret = cpsw_resume_data_pass(ndev); |
| 2456 | if (!ret) |
| 2457 | return 0; |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2458 | err: |
| 2459 | dev_err(priv->dev, "cannot update channels number, closing device\n"); |
| 2460 | dev_close(ndev); |
| 2461 | return ret; |
| 2462 | } |
| 2463 | |
Yegor Yefremov | a090994 | 2016-11-28 09:41:33 +0100 | [diff] [blame] | 2464 | static int cpsw_get_eee(struct net_device *ndev, struct ethtool_eee *edata) |
| 2465 | { |
| 2466 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2467 | struct cpsw_common *cpsw = priv->cpsw; |
| 2468 | int slave_no = cpsw_slave_index(cpsw, priv); |
| 2469 | |
| 2470 | if (cpsw->slaves[slave_no].phy) |
| 2471 | return phy_ethtool_get_eee(cpsw->slaves[slave_no].phy, edata); |
| 2472 | else |
| 2473 | return -EOPNOTSUPP; |
| 2474 | } |
| 2475 | |
| 2476 | static int cpsw_set_eee(struct net_device *ndev, struct ethtool_eee *edata) |
| 2477 | { |
| 2478 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2479 | struct cpsw_common *cpsw = priv->cpsw; |
| 2480 | int slave_no = cpsw_slave_index(cpsw, priv); |
| 2481 | |
| 2482 | if (cpsw->slaves[slave_no].phy) |
| 2483 | return phy_ethtool_set_eee(cpsw->slaves[slave_no].phy, edata); |
| 2484 | else |
| 2485 | return -EOPNOTSUPP; |
| 2486 | } |
| 2487 | |
Yegor Yefremov | 6bb10c2 | 2016-11-28 10:47:52 +0100 | [diff] [blame] | 2488 | static int cpsw_nway_reset(struct net_device *ndev) |
| 2489 | { |
| 2490 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2491 | struct cpsw_common *cpsw = priv->cpsw; |
| 2492 | int slave_no = cpsw_slave_index(cpsw, priv); |
| 2493 | |
| 2494 | if (cpsw->slaves[slave_no].phy) |
| 2495 | return genphy_restart_aneg(cpsw->slaves[slave_no].phy); |
| 2496 | else |
| 2497 | return -EOPNOTSUPP; |
| 2498 | } |
| 2499 | |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2500 | static void cpsw_get_ringparam(struct net_device *ndev, |
| 2501 | struct ethtool_ringparam *ering) |
| 2502 | { |
| 2503 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2504 | struct cpsw_common *cpsw = priv->cpsw; |
| 2505 | |
| 2506 | /* not supported */ |
| 2507 | ering->tx_max_pending = 0; |
| 2508 | ering->tx_pending = cpdma_get_num_tx_descs(cpsw->dma); |
Ivan Khoronzhuk | f89d21b | 2017-01-08 22:12:27 +0200 | [diff] [blame] | 2509 | ering->rx_max_pending = descs_pool_size - CPSW_MAX_QUEUES; |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2510 | ering->rx_pending = cpdma_get_num_rx_descs(cpsw->dma); |
| 2511 | } |
| 2512 | |
| 2513 | static int cpsw_set_ringparam(struct net_device *ndev, |
| 2514 | struct ethtool_ringparam *ering) |
| 2515 | { |
| 2516 | struct cpsw_priv *priv = netdev_priv(ndev); |
| 2517 | struct cpsw_common *cpsw = priv->cpsw; |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2518 | int ret; |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2519 | |
| 2520 | /* ignore ering->tx_pending - only rx_pending adjustment is supported */ |
| 2521 | |
| 2522 | if (ering->rx_mini_pending || ering->rx_jumbo_pending || |
Ivan Khoronzhuk | f89d21b | 2017-01-08 22:12:27 +0200 | [diff] [blame] | 2523 | ering->rx_pending < CPSW_MAX_QUEUES || |
| 2524 | ering->rx_pending > (descs_pool_size - CPSW_MAX_QUEUES)) |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2525 | return -EINVAL; |
| 2526 | |
| 2527 | if (ering->rx_pending == cpdma_get_num_rx_descs(cpsw->dma)) |
| 2528 | return 0; |
| 2529 | |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2530 | cpsw_suspend_data_pass(ndev); |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2531 | |
| 2532 | cpdma_set_num_rx_descs(cpsw->dma, ering->rx_pending); |
| 2533 | |
Ivan Khoronzhuk | d5bc161 | 2017-02-14 16:02:36 +0200 | [diff] [blame] | 2534 | if (cpsw->usage_count) |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2535 | cpdma_chan_split_pool(cpsw->dma); |
| 2536 | |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2537 | ret = cpsw_resume_data_pass(ndev); |
| 2538 | if (!ret) |
| 2539 | return 0; |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2540 | |
Ivan Khoronzhuk | 022d7ad | 2017-01-19 18:58:27 +0200 | [diff] [blame] | 2541 | dev_err(&ndev->dev, "cannot set ring params, closing device\n"); |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2542 | dev_close(ndev); |
| 2543 | return ret; |
| 2544 | } |
| 2545 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2546 | static const struct ethtool_ops cpsw_ethtool_ops = { |
| 2547 | .get_drvinfo = cpsw_get_drvinfo, |
| 2548 | .get_msglevel = cpsw_get_msglevel, |
| 2549 | .set_msglevel = cpsw_set_msglevel, |
| 2550 | .get_link = ethtool_op_get_link, |
Richard Cochran | 2e5b38a | 2012-10-29 08:45:20 +0000 | [diff] [blame] | 2551 | .get_ts_info = cpsw_get_ts_info, |
Mugunthan V N | ff5b8ef | 2013-03-11 23:16:37 +0000 | [diff] [blame] | 2552 | .get_coalesce = cpsw_get_coalesce, |
| 2553 | .set_coalesce = cpsw_set_coalesce, |
Mugunthan V N | d971854 | 2013-07-23 15:38:17 +0530 | [diff] [blame] | 2554 | .get_sset_count = cpsw_get_sset_count, |
| 2555 | .get_strings = cpsw_get_strings, |
| 2556 | .get_ethtool_stats = cpsw_get_ethtool_stats, |
Mugunthan V N | 1923d6e | 2014-09-08 22:54:02 +0530 | [diff] [blame] | 2557 | .get_pauseparam = cpsw_get_pauseparam, |
| 2558 | .set_pauseparam = cpsw_set_pauseparam, |
Matus Ujhelyi | d8a6442 | 2013-08-20 07:59:38 +0200 | [diff] [blame] | 2559 | .get_wol = cpsw_get_wol, |
| 2560 | .set_wol = cpsw_set_wol, |
Mugunthan V N | 52c4f0e | 2014-07-22 23:25:07 +0530 | [diff] [blame] | 2561 | .get_regs_len = cpsw_get_regs_len, |
| 2562 | .get_regs = cpsw_get_regs, |
Grygorii Strashko | 7898b1d | 2016-06-24 21:23:44 +0300 | [diff] [blame] | 2563 | .begin = cpsw_ethtool_op_begin, |
| 2564 | .complete = cpsw_ethtool_op_complete, |
Ivan Khoronzhuk | ce52c74 | 2016-08-22 21:18:28 +0300 | [diff] [blame] | 2565 | .get_channels = cpsw_get_channels, |
| 2566 | .set_channels = cpsw_set_channels, |
Philippe Reynes | 2479876 | 2016-10-08 17:46:15 +0200 | [diff] [blame] | 2567 | .get_link_ksettings = cpsw_get_link_ksettings, |
| 2568 | .set_link_ksettings = cpsw_set_link_ksettings, |
Yegor Yefremov | a090994 | 2016-11-28 09:41:33 +0100 | [diff] [blame] | 2569 | .get_eee = cpsw_get_eee, |
| 2570 | .set_eee = cpsw_set_eee, |
Yegor Yefremov | 6bb10c2 | 2016-11-28 10:47:52 +0100 | [diff] [blame] | 2571 | .nway_reset = cpsw_nway_reset, |
Grygorii Strashko | be034fc | 2017-01-06 14:07:34 -0600 | [diff] [blame] | 2572 | .get_ringparam = cpsw_get_ringparam, |
| 2573 | .set_ringparam = cpsw_set_ringparam, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2574 | }; |
| 2575 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2576 | static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_common *cpsw, |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2577 | u32 slave_reg_ofs, u32 sliver_reg_ofs) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2578 | { |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 2579 | void __iomem *regs = cpsw->regs; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2580 | int slave_num = slave->slave_num; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2581 | struct cpsw_slave_data *data = cpsw->data.slave_data + slave_num; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2582 | |
| 2583 | slave->data = data; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2584 | slave->regs = regs + slave_reg_ofs; |
| 2585 | slave->sliver = regs + sliver_reg_ofs; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2586 | slave->port_vlan = data->dual_emac_res_vlan; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2587 | } |
| 2588 | |
David Rivshin | 552165b | 2016-04-27 21:25:25 -0400 | [diff] [blame] | 2589 | static int cpsw_probe_dt(struct cpsw_platform_data *data, |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2590 | struct platform_device *pdev) |
| 2591 | { |
| 2592 | struct device_node *node = pdev->dev.of_node; |
| 2593 | struct device_node *slave_node; |
| 2594 | int i = 0, ret; |
| 2595 | u32 prop; |
| 2596 | |
| 2597 | if (!node) |
| 2598 | return -EINVAL; |
| 2599 | |
| 2600 | if (of_property_read_u32(node, "slaves", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2601 | dev_err(&pdev->dev, "Missing slaves property in the DT.\n"); |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2602 | return -EINVAL; |
| 2603 | } |
| 2604 | data->slaves = prop; |
| 2605 | |
Mugunthan V N | e86ac13 | 2013-03-11 23:16:35 +0000 | [diff] [blame] | 2606 | if (of_property_read_u32(node, "active_slave", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2607 | dev_err(&pdev->dev, "Missing active_slave property in the DT.\n"); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2608 | return -EINVAL; |
Richard Cochran | 78ca0b2 | 2012-10-29 08:45:18 +0000 | [diff] [blame] | 2609 | } |
Mugunthan V N | e86ac13 | 2013-03-11 23:16:35 +0000 | [diff] [blame] | 2610 | data->active_slave = prop; |
Richard Cochran | 78ca0b2 | 2012-10-29 08:45:18 +0000 | [diff] [blame] | 2611 | |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2612 | data->slave_data = devm_kzalloc(&pdev->dev, data->slaves |
| 2613 | * sizeof(struct cpsw_slave_data), |
| 2614 | GFP_KERNEL); |
Joe Perches | b2adaca | 2013-02-03 17:43:58 +0000 | [diff] [blame] | 2615 | if (!data->slave_data) |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2616 | return -ENOMEM; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2617 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2618 | if (of_property_read_u32(node, "cpdma_channels", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2619 | dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n"); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2620 | return -EINVAL; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2621 | } |
| 2622 | data->channels = prop; |
| 2623 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2624 | if (of_property_read_u32(node, "ale_entries", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2625 | dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n"); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2626 | return -EINVAL; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2627 | } |
| 2628 | data->ale_entries = prop; |
| 2629 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2630 | if (of_property_read_u32(node, "bd_ram_size", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2631 | 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] | 2632 | return -EINVAL; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2633 | } |
| 2634 | data->bd_ram_size = prop; |
| 2635 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2636 | if (of_property_read_u32(node, "mac_control", &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2637 | dev_err(&pdev->dev, "Missing mac_control property in the DT.\n"); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2638 | return -EINVAL; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2639 | } |
| 2640 | data->mac_control = prop; |
| 2641 | |
Markus Pargmann | 281abd9 | 2013-10-04 14:44:40 +0200 | [diff] [blame] | 2642 | if (of_property_read_bool(node, "dual_emac")) |
| 2643 | data->dual_emac = 1; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2644 | |
Vaibhav Hiremath | 1fb19aa | 2012-11-14 09:07:55 +0000 | [diff] [blame] | 2645 | /* |
| 2646 | * Populate all the child nodes here... |
| 2647 | */ |
| 2648 | ret = of_platform_populate(node, NULL, NULL, &pdev->dev); |
| 2649 | /* We do not want to force this, as in some cases may not have child */ |
| 2650 | if (ret) |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2651 | dev_warn(&pdev->dev, "Doesn't have any child node\n"); |
Vaibhav Hiremath | 1fb19aa | 2012-11-14 09:07:55 +0000 | [diff] [blame] | 2652 | |
Ben Hutchings | 8658aaf | 2016-06-21 01:16:31 +0100 | [diff] [blame] | 2653 | for_each_available_child_of_node(node, slave_node) { |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2654 | struct cpsw_slave_data *slave_data = data->slave_data + i; |
| 2655 | const void *mac_addr = NULL; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2656 | int lenp; |
| 2657 | const __be32 *parp; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2658 | |
Markus Pargmann | f468b10 | 2013-10-04 14:44:39 +0200 | [diff] [blame] | 2659 | /* This is no slave child node, continue */ |
| 2660 | if (strcmp(slave_node->name, "slave")) |
| 2661 | continue; |
| 2662 | |
David Rivshin | 552165b | 2016-04-27 21:25:25 -0400 | [diff] [blame] | 2663 | slave_data->phy_node = of_parse_phandle(slave_node, |
| 2664 | "phy-handle", 0); |
David Rivshin | f1eea5c | 2015-12-16 23:02:10 -0500 | [diff] [blame] | 2665 | parp = of_get_property(slave_node, "phy_id", &lenp); |
David Rivshin | ae092b5 | 2016-04-27 21:38:26 -0400 | [diff] [blame] | 2666 | if (slave_data->phy_node) { |
| 2667 | dev_dbg(&pdev->dev, |
| 2668 | "slave[%d] using phy-handle=\"%s\"\n", |
| 2669 | i, slave_data->phy_node->full_name); |
| 2670 | } else if (of_phy_is_fixed_link(slave_node)) { |
David Rivshin | dfc0a6d | 2015-12-16 23:02:11 -0500 | [diff] [blame] | 2671 | /* In the case of a fixed PHY, the DT node associated |
| 2672 | * to the PHY is the Ethernet MAC DT node. |
| 2673 | */ |
Markus Brunner | 1f71e8c | 2015-11-03 22:09:51 +0100 | [diff] [blame] | 2674 | ret = of_phy_register_fixed_link(slave_node); |
Johan Hovold | 23a0987 | 2016-11-17 17:40:04 +0100 | [diff] [blame] | 2675 | if (ret) { |
| 2676 | if (ret != -EPROBE_DEFER) |
| 2677 | dev_err(&pdev->dev, "failed to register fixed-link phy: %d\n", ret); |
Markus Brunner | 1f71e8c | 2015-11-03 22:09:51 +0100 | [diff] [blame] | 2678 | return ret; |
Johan Hovold | 23a0987 | 2016-11-17 17:40:04 +0100 | [diff] [blame] | 2679 | } |
David Rivshin | 06cd6d6 | 2016-04-27 21:45:45 -0400 | [diff] [blame] | 2680 | slave_data->phy_node = of_node_get(slave_node); |
David Rivshin | f1eea5c | 2015-12-16 23:02:10 -0500 | [diff] [blame] | 2681 | } else if (parp) { |
| 2682 | u32 phyid; |
| 2683 | struct device_node *mdio_node; |
| 2684 | struct platform_device *mdio; |
| 2685 | |
| 2686 | if (lenp != (sizeof(__be32) * 2)) { |
| 2687 | dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i); |
| 2688 | goto no_phy_slave; |
| 2689 | } |
| 2690 | mdio_node = of_find_node_by_phandle(be32_to_cpup(parp)); |
| 2691 | phyid = be32_to_cpup(parp+1); |
| 2692 | mdio = of_find_device_by_node(mdio_node); |
| 2693 | of_node_put(mdio_node); |
| 2694 | if (!mdio) { |
| 2695 | dev_err(&pdev->dev, "Missing mdio platform device\n"); |
| 2696 | return -EINVAL; |
| 2697 | } |
| 2698 | snprintf(slave_data->phy_id, sizeof(slave_data->phy_id), |
| 2699 | PHY_ID_FMT, mdio->name, phyid); |
Johan Hovold | 86e1d5a | 2016-11-17 17:39:59 +0100 | [diff] [blame] | 2700 | put_device(&mdio->dev); |
David Rivshin | f1eea5c | 2015-12-16 23:02:10 -0500 | [diff] [blame] | 2701 | } else { |
David Rivshin | ae092b5 | 2016-04-27 21:38:26 -0400 | [diff] [blame] | 2702 | dev_err(&pdev->dev, |
| 2703 | "No slave[%d] phy_id, phy-handle, or fixed-link property\n", |
| 2704 | i); |
Markus Brunner | 1f71e8c | 2015-11-03 22:09:51 +0100 | [diff] [blame] | 2705 | goto no_phy_slave; |
| 2706 | } |
Mugunthan V N | 47276fc | 2014-10-24 18:51:33 +0530 | [diff] [blame] | 2707 | slave_data->phy_if = of_get_phy_mode(slave_node); |
| 2708 | if (slave_data->phy_if < 0) { |
| 2709 | dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n", |
| 2710 | i); |
| 2711 | return slave_data->phy_if; |
| 2712 | } |
| 2713 | |
| 2714 | no_phy_slave: |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2715 | mac_addr = of_get_mac_address(slave_node); |
Markus Pargmann | 0ba517b | 2014-09-29 08:53:17 +0200 | [diff] [blame] | 2716 | if (mac_addr) { |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2717 | memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN); |
Markus Pargmann | 0ba517b | 2014-09-29 08:53:17 +0200 | [diff] [blame] | 2718 | } else { |
Mugunthan V N | b6745f6 | 2015-09-21 15:56:50 +0530 | [diff] [blame] | 2719 | ret = ti_cm_get_macid(&pdev->dev, i, |
| 2720 | slave_data->mac_addr); |
| 2721 | if (ret) |
| 2722 | return ret; |
Markus Pargmann | 0ba517b | 2014-09-29 08:53:17 +0200 | [diff] [blame] | 2723 | } |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2724 | if (data->dual_emac) { |
Mugunthan V N | 91c4166 | 2013-04-15 07:31:28 +0000 | [diff] [blame] | 2725 | if (of_property_read_u32(slave_node, "dual_emac_res_vlan", |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2726 | &prop)) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2727 | 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] | 2728 | slave_data->dual_emac_res_vlan = i+1; |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2729 | dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n", |
| 2730 | slave_data->dual_emac_res_vlan, i); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2731 | } else { |
| 2732 | slave_data->dual_emac_res_vlan = prop; |
| 2733 | } |
| 2734 | } |
| 2735 | |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2736 | i++; |
Mugunthan V N | 3a27bfa | 2013-12-02 12:53:39 +0530 | [diff] [blame] | 2737 | if (i == data->slaves) |
| 2738 | break; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2739 | } |
| 2740 | |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2741 | return 0; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2742 | } |
| 2743 | |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2744 | static void cpsw_remove_dt(struct platform_device *pdev) |
| 2745 | { |
Johan Hovold | 8cbcc46 | 2016-11-17 17:40:01 +0100 | [diff] [blame] | 2746 | struct net_device *ndev = platform_get_drvdata(pdev); |
| 2747 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
| 2748 | struct cpsw_platform_data *data = &cpsw->data; |
| 2749 | struct device_node *node = pdev->dev.of_node; |
| 2750 | struct device_node *slave_node; |
| 2751 | int i = 0; |
| 2752 | |
| 2753 | for_each_available_child_of_node(node, slave_node) { |
| 2754 | struct cpsw_slave_data *slave_data = &data->slave_data[i]; |
| 2755 | |
| 2756 | if (strcmp(slave_node->name, "slave")) |
| 2757 | continue; |
| 2758 | |
Johan Hovold | 3f65047 | 2016-11-28 19:24:55 +0100 | [diff] [blame] | 2759 | if (of_phy_is_fixed_link(slave_node)) |
| 2760 | of_phy_deregister_fixed_link(slave_node); |
Johan Hovold | 8cbcc46 | 2016-11-17 17:40:01 +0100 | [diff] [blame] | 2761 | |
| 2762 | of_node_put(slave_data->phy_node); |
| 2763 | |
| 2764 | i++; |
| 2765 | if (i == data->slaves) |
| 2766 | break; |
| 2767 | } |
| 2768 | |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2769 | of_platform_depopulate(&pdev->dev); |
| 2770 | } |
| 2771 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2772 | static int cpsw_probe_dual_emac(struct cpsw_priv *priv) |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2773 | { |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2774 | struct cpsw_common *cpsw = priv->cpsw; |
| 2775 | struct cpsw_platform_data *data = &cpsw->data; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2776 | struct net_device *ndev; |
| 2777 | struct cpsw_priv *priv_sl2; |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 2778 | int ret = 0; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2779 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 2780 | ndev = alloc_etherdev_mq(sizeof(struct cpsw_priv), CPSW_MAX_QUEUES); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2781 | if (!ndev) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2782 | dev_err(cpsw->dev, "cpsw: error allocating net_device\n"); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2783 | return -ENOMEM; |
| 2784 | } |
| 2785 | |
| 2786 | priv_sl2 = netdev_priv(ndev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2787 | priv_sl2->cpsw = cpsw; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2788 | priv_sl2->ndev = ndev; |
| 2789 | priv_sl2->dev = &ndev->dev; |
| 2790 | priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2791 | |
| 2792 | if (is_valid_ether_addr(data->slave_data[1].mac_addr)) { |
| 2793 | memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr, |
| 2794 | ETH_ALEN); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2795 | dev_info(cpsw->dev, "cpsw: Detected MACID = %pM\n", |
| 2796 | priv_sl2->mac_addr); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2797 | } else { |
| 2798 | random_ether_addr(priv_sl2->mac_addr); |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2799 | dev_info(cpsw->dev, "cpsw: Random MACID = %pM\n", |
| 2800 | priv_sl2->mac_addr); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2801 | } |
| 2802 | memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN); |
| 2803 | |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2804 | priv_sl2->emac_port = 1; |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2805 | cpsw->slaves[1].ndev = ndev; |
Patrick McHardy | f646968 | 2013-04-19 02:04:27 +0000 | [diff] [blame] | 2806 | ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2807 | |
| 2808 | ndev->netdev_ops = &cpsw_netdev_ops; |
Wilfried Klaebe | 7ad24ea | 2014-05-11 00:12:32 +0000 | [diff] [blame] | 2809 | ndev->ethtool_ops = &cpsw_ethtool_ops; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2810 | |
| 2811 | /* register the network device */ |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2812 | SET_NETDEV_DEV(ndev, cpsw->dev); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2813 | ret = register_netdev(ndev); |
| 2814 | if (ret) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2815 | dev_err(cpsw->dev, "cpsw: error registering net device\n"); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2816 | free_netdev(ndev); |
| 2817 | ret = -ENODEV; |
| 2818 | } |
| 2819 | |
| 2820 | return ret; |
| 2821 | } |
| 2822 | |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 2823 | #define CPSW_QUIRK_IRQ BIT(0) |
| 2824 | |
| 2825 | static struct platform_device_id cpsw_devtype[] = { |
| 2826 | { |
| 2827 | /* keep it for existing comaptibles */ |
| 2828 | .name = "cpsw", |
| 2829 | .driver_data = CPSW_QUIRK_IRQ, |
| 2830 | }, { |
| 2831 | .name = "am335x-cpsw", |
| 2832 | .driver_data = CPSW_QUIRK_IRQ, |
| 2833 | }, { |
| 2834 | .name = "am4372-cpsw", |
| 2835 | .driver_data = 0, |
| 2836 | }, { |
| 2837 | .name = "dra7-cpsw", |
| 2838 | .driver_data = 0, |
| 2839 | }, { |
| 2840 | /* sentinel */ |
| 2841 | } |
| 2842 | }; |
| 2843 | MODULE_DEVICE_TABLE(platform, cpsw_devtype); |
| 2844 | |
| 2845 | enum ti_cpsw_type { |
| 2846 | CPSW = 0, |
| 2847 | AM335X_CPSW, |
| 2848 | AM4372_CPSW, |
| 2849 | DRA7_CPSW, |
| 2850 | }; |
| 2851 | |
| 2852 | static const struct of_device_id cpsw_of_mtable[] = { |
| 2853 | { .compatible = "ti,cpsw", .data = &cpsw_devtype[CPSW], }, |
| 2854 | { .compatible = "ti,am335x-cpsw", .data = &cpsw_devtype[AM335X_CPSW], }, |
| 2855 | { .compatible = "ti,am4372-cpsw", .data = &cpsw_devtype[AM4372_CPSW], }, |
| 2856 | { .compatible = "ti,dra7-cpsw", .data = &cpsw_devtype[DRA7_CPSW], }, |
| 2857 | { /* sentinel */ }, |
| 2858 | }; |
| 2859 | MODULE_DEVICE_TABLE(of, cpsw_of_mtable); |
| 2860 | |
Bill Pemberton | 663e12e | 2012-12-03 09:23:45 -0500 | [diff] [blame] | 2861 | static int cpsw_probe(struct platform_device *pdev) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2862 | { |
Ivan Khoronzhuk | ef4183a | 2016-08-10 02:22:35 +0300 | [diff] [blame] | 2863 | struct clk *clk; |
Sebastian Siewior | d1bd9ac | 2013-04-24 08:48:23 +0000 | [diff] [blame] | 2864 | struct cpsw_platform_data *data; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2865 | struct net_device *ndev; |
| 2866 | struct cpsw_priv *priv; |
| 2867 | struct cpdma_params dma_params; |
| 2868 | struct cpsw_ale_params ale_params; |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2869 | void __iomem *ss_regs; |
Grygorii Strashko | 8a2c9a5 | 2016-12-06 18:00:41 -0600 | [diff] [blame] | 2870 | void __iomem *cpts_regs; |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2871 | struct resource *res, *ss_res; |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 2872 | const struct of_device_id *of_id; |
Mugunthan V N | 1d147cc | 2015-09-07 15:16:44 +0530 | [diff] [blame] | 2873 | struct gpio_descs *mode; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2874 | u32 slave_offset, sliver_offset, slave_size; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 2875 | struct cpsw_common *cpsw; |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 2876 | int ret = 0, i; |
| 2877 | int irq; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2878 | |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 2879 | cpsw = devm_kzalloc(&pdev->dev, sizeof(struct cpsw_common), GFP_KERNEL); |
Johan Hovold | 3420ea8 | 2016-11-17 17:40:03 +0100 | [diff] [blame] | 2880 | if (!cpsw) |
| 2881 | return -ENOMEM; |
| 2882 | |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 2883 | cpsw->dev = &pdev->dev; |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 2884 | |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 2885 | ndev = alloc_etherdev_mq(sizeof(struct cpsw_priv), CPSW_MAX_QUEUES); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2886 | if (!ndev) { |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2887 | dev_err(&pdev->dev, "error allocating net_device\n"); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2888 | return -ENOMEM; |
| 2889 | } |
| 2890 | |
| 2891 | platform_set_drvdata(pdev, ndev); |
| 2892 | priv = netdev_priv(ndev); |
Ivan Khoronzhuk | 649a168 | 2016-08-10 02:22:37 +0300 | [diff] [blame] | 2893 | priv->cpsw = cpsw; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2894 | priv->ndev = ndev; |
| 2895 | priv->dev = &ndev->dev; |
| 2896 | priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2897 | cpsw->rx_packet_max = max(rx_packet_max, 128); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2898 | |
Mugunthan V N | 1d147cc | 2015-09-07 15:16:44 +0530 | [diff] [blame] | 2899 | mode = devm_gpiod_get_array_optional(&pdev->dev, "mode", GPIOD_OUT_LOW); |
| 2900 | if (IS_ERR(mode)) { |
| 2901 | ret = PTR_ERR(mode); |
| 2902 | dev_err(&pdev->dev, "gpio request failed, ret %d\n", ret); |
| 2903 | goto clean_ndev_ret; |
| 2904 | } |
| 2905 | |
Vaibhav Hiremath | 1fb19aa | 2012-11-14 09:07:55 +0000 | [diff] [blame] | 2906 | /* |
| 2907 | * This may be required here for child devices. |
| 2908 | */ |
| 2909 | pm_runtime_enable(&pdev->dev); |
| 2910 | |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 2911 | /* Select default pin state */ |
| 2912 | pinctrl_pm_select_default_state(&pdev->dev); |
| 2913 | |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2914 | /* Need to enable clocks with runtime PM api to access module |
| 2915 | * registers |
| 2916 | */ |
| 2917 | ret = pm_runtime_get_sync(&pdev->dev); |
| 2918 | if (ret < 0) { |
| 2919 | pm_runtime_put_noidle(&pdev->dev); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2920 | goto clean_runtime_disable_ret; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2921 | } |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2922 | |
Johan Hovold | 23a0987 | 2016-11-17 17:40:04 +0100 | [diff] [blame] | 2923 | ret = cpsw_probe_dt(&cpsw->data, pdev); |
| 2924 | if (ret) |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2925 | goto clean_dt_ret; |
Johan Hovold | 23a0987 | 2016-11-17 17:40:04 +0100 | [diff] [blame] | 2926 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2927 | data = &cpsw->data; |
Ivan Khoronzhuk | e05107e | 2016-08-22 21:18:26 +0300 | [diff] [blame] | 2928 | cpsw->rx_ch_num = 1; |
| 2929 | cpsw->tx_ch_num = 1; |
Mugunthan V N | 2eb32b0 | 2012-07-30 10:17:14 +0000 | [diff] [blame] | 2930 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2931 | if (is_valid_ether_addr(data->slave_data[0].mac_addr)) { |
| 2932 | memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN); |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2933 | dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2934 | } else { |
Joe Perches | 7efd26d | 2012-07-12 19:33:06 +0000 | [diff] [blame] | 2935 | eth_random_addr(priv->mac_addr); |
George Cherian | 88c99ff | 2014-05-12 10:21:19 +0530 | [diff] [blame] | 2936 | dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2937 | } |
| 2938 | |
| 2939 | memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN); |
| 2940 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2941 | cpsw->slaves = devm_kzalloc(&pdev->dev, |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2942 | sizeof(struct cpsw_slave) * data->slaves, |
| 2943 | GFP_KERNEL); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2944 | if (!cpsw->slaves) { |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2945 | ret = -ENOMEM; |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2946 | goto clean_dt_ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2947 | } |
| 2948 | for (i = 0; i < data->slaves; i++) |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2949 | cpsw->slaves[i].slave_num = i; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2950 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 2951 | cpsw->slaves[0].ndev = ndev; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 2952 | priv->emac_port = 0; |
| 2953 | |
Ivan Khoronzhuk | ef4183a | 2016-08-10 02:22:35 +0300 | [diff] [blame] | 2954 | clk = devm_clk_get(&pdev->dev, "fck"); |
| 2955 | if (IS_ERR(clk)) { |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2956 | dev_err(priv->dev, "fck is not found\n"); |
Mugunthan V N | f150bd7 | 2012-07-17 08:09:50 +0000 | [diff] [blame] | 2957 | ret = -ENODEV; |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2958 | goto clean_dt_ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2959 | } |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2960 | cpsw->bus_freq_mhz = clk_get_rate(clk) / 1000000; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2961 | |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2962 | ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 2963 | ss_regs = devm_ioremap_resource(&pdev->dev, ss_res); |
| 2964 | if (IS_ERR(ss_regs)) { |
| 2965 | ret = PTR_ERR(ss_regs); |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2966 | goto clean_dt_ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2967 | } |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 2968 | cpsw->regs = ss_regs; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2969 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2970 | cpsw->version = readl(&cpsw->regs->id_ver); |
Mugunthan V N | f280e89 | 2013-12-11 22:09:05 -0600 | [diff] [blame] | 2971 | |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 2972 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 2973 | cpsw->wr_regs = devm_ioremap_resource(&pdev->dev, res); |
| 2974 | if (IS_ERR(cpsw->wr_regs)) { |
| 2975 | ret = PTR_ERR(cpsw->wr_regs); |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 2976 | goto clean_dt_ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2977 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 2978 | |
| 2979 | memset(&dma_params, 0, sizeof(dma_params)); |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2980 | memset(&ale_params, 0, sizeof(ale_params)); |
| 2981 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 2982 | switch (cpsw->version) { |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2983 | case CPSW_VERSION_1: |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 2984 | cpsw->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET; |
Grygorii Strashko | 8a2c9a5 | 2016-12-06 18:00:41 -0600 | [diff] [blame] | 2985 | cpts_regs = ss_regs + CPSW1_CPTS_OFFSET; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 2986 | cpsw->hw_stats = ss_regs + CPSW1_HW_STATS; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 2987 | dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET; |
| 2988 | dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET; |
| 2989 | ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET; |
| 2990 | slave_offset = CPSW1_SLAVE_OFFSET; |
| 2991 | slave_size = CPSW1_SLAVE_SIZE; |
| 2992 | sliver_offset = CPSW1_SLIVER_OFFSET; |
| 2993 | dma_params.desc_mem_phys = 0; |
| 2994 | break; |
| 2995 | case CPSW_VERSION_2: |
Mugunthan V N | c193f36 | 2013-08-05 17:30:05 +0530 | [diff] [blame] | 2996 | case CPSW_VERSION_3: |
Mugunthan V N | 926489b | 2013-08-12 17:11:15 +0530 | [diff] [blame] | 2997 | case CPSW_VERSION_4: |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 2998 | cpsw->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET; |
Grygorii Strashko | 8a2c9a5 | 2016-12-06 18:00:41 -0600 | [diff] [blame] | 2999 | cpts_regs = ss_regs + CPSW2_CPTS_OFFSET; |
Ivan Khoronzhuk | 5d8d0d4 | 2016-08-10 02:22:39 +0300 | [diff] [blame] | 3000 | cpsw->hw_stats = ss_regs + CPSW2_HW_STATS; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 3001 | dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET; |
| 3002 | dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET; |
| 3003 | ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET; |
| 3004 | slave_offset = CPSW2_SLAVE_OFFSET; |
| 3005 | slave_size = CPSW2_SLAVE_SIZE; |
| 3006 | sliver_offset = CPSW2_SLIVER_OFFSET; |
| 3007 | dma_params.desc_mem_phys = |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 3008 | (u32 __force) ss_res->start + CPSW2_BD_OFFSET; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 3009 | break; |
| 3010 | default: |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 3011 | dev_err(priv->dev, "unknown version 0x%08x\n", cpsw->version); |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 3012 | ret = -ENODEV; |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 3013 | goto clean_dt_ret; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 3014 | } |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3015 | for (i = 0; i < cpsw->data.slaves; i++) { |
| 3016 | struct cpsw_slave *slave = &cpsw->slaves[i]; |
| 3017 | |
| 3018 | cpsw_slave_init(slave, cpsw, slave_offset, sliver_offset); |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 3019 | slave_offset += slave_size; |
| 3020 | sliver_offset += SLIVER_SIZE; |
| 3021 | } |
| 3022 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3023 | dma_params.dev = &pdev->dev; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 3024 | dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH; |
| 3025 | dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE; |
| 3026 | dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP; |
| 3027 | dma_params.txcp = dma_params.txhdp + CPDMA_TXCP; |
| 3028 | dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3029 | |
| 3030 | dma_params.num_chan = data->channels; |
| 3031 | dma_params.has_soft_reset = true; |
| 3032 | dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE; |
| 3033 | dma_params.desc_mem_size = data->bd_ram_size; |
| 3034 | dma_params.desc_align = 16; |
| 3035 | dma_params.has_ext_regs = true; |
Richard Cochran | 549985e | 2012-11-14 09:07:56 +0000 | [diff] [blame] | 3036 | dma_params.desc_hw_addr = dma_params.desc_mem_phys; |
Ivan Khoronzhuk | 83fcad0 | 2016-11-29 17:00:49 +0200 | [diff] [blame] | 3037 | dma_params.bus_freq_mhz = cpsw->bus_freq_mhz; |
Grygorii Strashko | 90225bf | 2017-01-06 14:07:33 -0600 | [diff] [blame] | 3038 | dma_params.descs_pool_size = descs_pool_size; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3039 | |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 3040 | cpsw->dma = cpdma_ctlr_create(&dma_params); |
| 3041 | if (!cpsw->dma) { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3042 | dev_err(priv->dev, "error initializing dma\n"); |
| 3043 | ret = -ENOMEM; |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 3044 | goto clean_dt_ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3045 | } |
| 3046 | |
Ivan Khoronzhuk | 8feb0a1 | 2016-11-29 17:00:51 +0200 | [diff] [blame] | 3047 | cpsw->txv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_tx_handler, 0); |
| 3048 | cpsw->rxv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_rx_handler, 1); |
| 3049 | if (WARN_ON(!cpsw->rxv[0].ch || !cpsw->txv[0].ch)) { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3050 | dev_err(priv->dev, "error initializing dma channels\n"); |
| 3051 | ret = -ENOMEM; |
| 3052 | goto clean_dma_ret; |
| 3053 | } |
| 3054 | |
Ivan Khoronzhuk | 9fe9aa0 | 2017-02-15 19:45:02 +0200 | [diff] [blame] | 3055 | ale_params.dev = &pdev->dev; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3056 | ale_params.ale_ageout = ale_ageout; |
| 3057 | ale_params.ale_entries = data->ale_entries; |
| 3058 | ale_params.ale_ports = data->slaves; |
| 3059 | |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 3060 | cpsw->ale = cpsw_ale_create(&ale_params); |
| 3061 | if (!cpsw->ale) { |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3062 | dev_err(priv->dev, "error initializing ale engine\n"); |
| 3063 | ret = -ENODEV; |
| 3064 | goto clean_dma_ret; |
| 3065 | } |
| 3066 | |
Grygorii Strashko | 4a88fb9 | 2016-12-06 18:00:42 -0600 | [diff] [blame] | 3067 | cpsw->cpts = cpts_create(cpsw->dev, cpts_regs, cpsw->dev->of_node); |
Grygorii Strashko | 8a2c9a5 | 2016-12-06 18:00:41 -0600 | [diff] [blame] | 3068 | if (IS_ERR(cpsw->cpts)) { |
| 3069 | ret = PTR_ERR(cpsw->cpts); |
| 3070 | goto clean_ale_ret; |
| 3071 | } |
| 3072 | |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 3073 | ndev->irq = platform_get_irq(pdev, 1); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3074 | if (ndev->irq < 0) { |
| 3075 | dev_err(priv->dev, "error getting irq resource\n"); |
Julia Lawall | c1e3334 | 2015-12-26 20:12:13 +0100 | [diff] [blame] | 3076 | ret = ndev->irq; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3077 | goto clean_ale_ret; |
| 3078 | } |
| 3079 | |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 3080 | of_id = of_match_device(cpsw_of_mtable, &pdev->dev); |
| 3081 | if (of_id) { |
| 3082 | pdev->id_entry = of_id->data; |
| 3083 | if (pdev->id_entry->driver_data) |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 3084 | cpsw->quirk_irq = true; |
Mugunthan V N | 7da1160 | 2015-08-12 15:22:53 +0530 | [diff] [blame] | 3085 | } |
| 3086 | |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 3087 | /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and |
| 3088 | * MISC IRQs which are always kept disabled with this driver so |
| 3089 | * we will not request them. |
| 3090 | * |
| 3091 | * If anyone wants to implement support for those, make sure to |
| 3092 | * first request and append them to irqs_table array. |
| 3093 | */ |
Daniel Mack | c2b32e5 | 2014-09-04 09:00:23 +0200 | [diff] [blame] | 3094 | |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 3095 | /* RX IRQ */ |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 3096 | irq = platform_get_irq(pdev, 1); |
Julia Lawall | c1e3334 | 2015-12-26 20:12:13 +0100 | [diff] [blame] | 3097 | if (irq < 0) { |
| 3098 | ret = irq; |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 3099 | goto clean_ale_ret; |
Julia Lawall | c1e3334 | 2015-12-26 20:12:13 +0100 | [diff] [blame] | 3100 | } |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 3101 | |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 3102 | cpsw->irqs_table[0] = irq; |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 3103 | ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt, |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 3104 | 0, dev_name(&pdev->dev), cpsw); |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 3105 | if (ret < 0) { |
| 3106 | dev_err(priv->dev, "error attaching irq (%d)\n", ret); |
| 3107 | goto clean_ale_ret; |
| 3108 | } |
| 3109 | |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 3110 | /* TX IRQ */ |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 3111 | irq = platform_get_irq(pdev, 2); |
Julia Lawall | c1e3334 | 2015-12-26 20:12:13 +0100 | [diff] [blame] | 3112 | if (irq < 0) { |
| 3113 | ret = irq; |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 3114 | goto clean_ale_ret; |
Julia Lawall | c1e3334 | 2015-12-26 20:12:13 +0100 | [diff] [blame] | 3115 | } |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 3116 | |
Ivan Khoronzhuk | e38b5a3 | 2016-08-10 02:22:41 +0300 | [diff] [blame] | 3117 | cpsw->irqs_table[1] = irq; |
Felipe Balbi | c03abd8 | 2015-01-16 10:11:12 -0600 | [diff] [blame] | 3118 | ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt, |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 3119 | 0, dev_name(&pdev->dev), cpsw); |
Felipe Balbi | 5087b91 | 2015-01-16 10:11:11 -0600 | [diff] [blame] | 3120 | if (ret < 0) { |
| 3121 | dev_err(priv->dev, "error attaching irq (%d)\n", ret); |
| 3122 | goto clean_ale_ret; |
| 3123 | } |
Daniel Mack | c2b32e5 | 2014-09-04 09:00:23 +0200 | [diff] [blame] | 3124 | |
Patrick McHardy | f646968 | 2013-04-19 02:04:27 +0000 | [diff] [blame] | 3125 | ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3126 | |
| 3127 | ndev->netdev_ops = &cpsw_netdev_ops; |
Wilfried Klaebe | 7ad24ea | 2014-05-11 00:12:32 +0000 | [diff] [blame] | 3128 | ndev->ethtool_ops = &cpsw_ethtool_ops; |
Ivan Khoronzhuk | dbc4ec5 | 2016-08-10 02:22:43 +0300 | [diff] [blame] | 3129 | netif_napi_add(ndev, &cpsw->napi_rx, cpsw_rx_poll, CPSW_POLL_WEIGHT); |
| 3130 | netif_tx_napi_add(ndev, &cpsw->napi_tx, cpsw_tx_poll, CPSW_POLL_WEIGHT); |
Ivan Khoronzhuk | 0be01b8 | 2016-12-10 14:23:49 +0200 | [diff] [blame] | 3131 | cpsw_split_res(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3132 | |
| 3133 | /* register the network device */ |
| 3134 | SET_NETDEV_DEV(ndev, &pdev->dev); |
| 3135 | ret = register_netdev(ndev); |
| 3136 | if (ret) { |
| 3137 | dev_err(priv->dev, "error registering net device\n"); |
| 3138 | ret = -ENODEV; |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 3139 | goto clean_ale_ret; |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3140 | } |
| 3141 | |
Grygorii Strashko | 90225bf | 2017-01-06 14:07:33 -0600 | [diff] [blame] | 3142 | cpsw_notice(priv, probe, |
| 3143 | "initialized device (regs %pa, irq %d, pool size %d)\n", |
| 3144 | &ss_res->start, ndev->irq, dma_params.descs_pool_size); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3145 | if (cpsw->data.dual_emac) { |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 3146 | ret = cpsw_probe_dual_emac(priv); |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 3147 | if (ret) { |
| 3148 | cpsw_err(priv, probe, "error probe slave 2 emac interface\n"); |
Johan Hovold | a7fe9d4 | 2016-11-17 17:40:02 +0100 | [diff] [blame] | 3149 | goto clean_unregister_netdev_ret; |
Mugunthan V N | d9ba8f9 | 2013-02-11 09:52:20 +0000 | [diff] [blame] | 3150 | } |
| 3151 | } |
| 3152 | |
Johan Hovold | c46ab7e | 2016-11-17 17:39:58 +0100 | [diff] [blame] | 3153 | pm_runtime_put(&pdev->dev); |
| 3154 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3155 | return 0; |
| 3156 | |
Johan Hovold | a7fe9d4 | 2016-11-17 17:40:02 +0100 | [diff] [blame] | 3157 | clean_unregister_netdev_ret: |
| 3158 | unregister_netdev(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3159 | clean_ale_ret: |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 3160 | cpsw_ale_destroy(cpsw->ale); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3161 | clean_dma_ret: |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 3162 | cpdma_ctlr_destroy(cpsw->dma); |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 3163 | clean_dt_ret: |
| 3164 | cpsw_remove_dt(pdev); |
Johan Hovold | c46ab7e | 2016-11-17 17:39:58 +0100 | [diff] [blame] | 3165 | pm_runtime_put_sync(&pdev->dev); |
Daniel Mack | aa1a15e | 2013-09-21 00:50:38 +0530 | [diff] [blame] | 3166 | clean_runtime_disable_ret: |
Mugunthan V N | f150bd7 | 2012-07-17 08:09:50 +0000 | [diff] [blame] | 3167 | pm_runtime_disable(&pdev->dev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3168 | clean_ndev_ret: |
Sebastian Siewior | d1bd9ac | 2013-04-24 08:48:23 +0000 | [diff] [blame] | 3169 | free_netdev(priv->ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3170 | return ret; |
| 3171 | } |
| 3172 | |
Bill Pemberton | 663e12e | 2012-12-03 09:23:45 -0500 | [diff] [blame] | 3173 | static int cpsw_remove(struct platform_device *pdev) |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3174 | { |
| 3175 | struct net_device *ndev = platform_get_drvdata(pdev); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 3176 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Grygorii Strashko | 8a0b6dc | 2016-07-28 20:50:35 +0300 | [diff] [blame] | 3177 | int ret; |
| 3178 | |
| 3179 | ret = pm_runtime_get_sync(&pdev->dev); |
| 3180 | if (ret < 0) { |
| 3181 | pm_runtime_put_noidle(&pdev->dev); |
| 3182 | return ret; |
| 3183 | } |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3184 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3185 | if (cpsw->data.dual_emac) |
| 3186 | unregister_netdev(cpsw->slaves[1].ndev); |
Sebastian Siewior | d1bd9ac | 2013-04-24 08:48:23 +0000 | [diff] [blame] | 3187 | unregister_netdev(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3188 | |
Grygorii Strashko | 8a2c9a5 | 2016-12-06 18:00:41 -0600 | [diff] [blame] | 3189 | cpts_release(cpsw->cpts); |
Ivan Khoronzhuk | 2a05a62 | 2016-08-10 02:22:44 +0300 | [diff] [blame] | 3190 | cpsw_ale_destroy(cpsw->ale); |
Ivan Khoronzhuk | 2c836bd | 2016-08-10 02:22:40 +0300 | [diff] [blame] | 3191 | cpdma_ctlr_destroy(cpsw->dma); |
Johan Hovold | a4e32b0 | 2016-11-17 17:40:00 +0100 | [diff] [blame] | 3192 | cpsw_remove_dt(pdev); |
Grygorii Strashko | 8a0b6dc | 2016-07-28 20:50:35 +0300 | [diff] [blame] | 3193 | pm_runtime_put_sync(&pdev->dev); |
| 3194 | pm_runtime_disable(&pdev->dev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3195 | if (cpsw->data.dual_emac) |
| 3196 | free_netdev(cpsw->slaves[1].ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3197 | free_netdev(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3198 | return 0; |
| 3199 | } |
| 3200 | |
Grygorii Strashko | 8963a50 | 2015-02-27 13:19:45 +0200 | [diff] [blame] | 3201 | #ifdef CONFIG_PM_SLEEP |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3202 | static int cpsw_suspend(struct device *dev) |
| 3203 | { |
| 3204 | struct platform_device *pdev = to_platform_device(dev); |
| 3205 | struct net_device *ndev = platform_get_drvdata(pdev); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3206 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3207 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3208 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 618073e | 2014-09-11 22:52:38 +0530 | [diff] [blame] | 3209 | int i; |
Daniel Mack | 1e7a2e2 | 2013-11-15 08:29:16 +0100 | [diff] [blame] | 3210 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3211 | for (i = 0; i < cpsw->data.slaves; i++) { |
| 3212 | if (netif_running(cpsw->slaves[i].ndev)) |
| 3213 | cpsw_ndo_stop(cpsw->slaves[i].ndev); |
Mugunthan V N | 618073e | 2014-09-11 22:52:38 +0530 | [diff] [blame] | 3214 | } |
| 3215 | } else { |
| 3216 | if (netif_running(ndev)) |
| 3217 | cpsw_ndo_stop(ndev); |
Mugunthan V N | 618073e | 2014-09-11 22:52:38 +0530 | [diff] [blame] | 3218 | } |
Daniel Mack | 1e7a2e2 | 2013-11-15 08:29:16 +0100 | [diff] [blame] | 3219 | |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 3220 | /* Select sleep pin state */ |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 3221 | pinctrl_pm_select_sleep_state(dev); |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 3222 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3223 | return 0; |
| 3224 | } |
| 3225 | |
| 3226 | static int cpsw_resume(struct device *dev) |
| 3227 | { |
| 3228 | struct platform_device *pdev = to_platform_device(dev); |
| 3229 | struct net_device *ndev = platform_get_drvdata(pdev); |
Ivan Khoronzhuk | a60ced9 | 2017-02-14 14:42:15 +0200 | [diff] [blame] | 3230 | struct cpsw_common *cpsw = ndev_to_cpsw(ndev); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3231 | |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 3232 | /* Select default pin state */ |
Ivan Khoronzhuk | 56e31bd | 2016-08-10 02:22:38 +0300 | [diff] [blame] | 3233 | pinctrl_pm_select_default_state(dev); |
Mugunthan V N | 739683b | 2013-06-06 23:45:14 +0530 | [diff] [blame] | 3234 | |
Grygorii Strashko | 4ccfd63 | 2016-11-29 16:27:03 -0600 | [diff] [blame] | 3235 | /* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */ |
| 3236 | rtnl_lock(); |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3237 | if (cpsw->data.dual_emac) { |
Mugunthan V N | 618073e | 2014-09-11 22:52:38 +0530 | [diff] [blame] | 3238 | int i; |
| 3239 | |
Ivan Khoronzhuk | 606f399 | 2016-08-10 02:22:42 +0300 | [diff] [blame] | 3240 | for (i = 0; i < cpsw->data.slaves; i++) { |
| 3241 | if (netif_running(cpsw->slaves[i].ndev)) |
| 3242 | cpsw_ndo_open(cpsw->slaves[i].ndev); |
Mugunthan V N | 618073e | 2014-09-11 22:52:38 +0530 | [diff] [blame] | 3243 | } |
| 3244 | } else { |
| 3245 | if (netif_running(ndev)) |
| 3246 | cpsw_ndo_open(ndev); |
| 3247 | } |
Grygorii Strashko | 4ccfd63 | 2016-11-29 16:27:03 -0600 | [diff] [blame] | 3248 | rtnl_unlock(); |
| 3249 | |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3250 | return 0; |
| 3251 | } |
Grygorii Strashko | 8963a50 | 2015-02-27 13:19:45 +0200 | [diff] [blame] | 3252 | #endif |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3253 | |
Grygorii Strashko | 8963a50 | 2015-02-27 13:19:45 +0200 | [diff] [blame] | 3254 | 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] | 3255 | |
| 3256 | static struct platform_driver cpsw_driver = { |
| 3257 | .driver = { |
| 3258 | .name = "cpsw", |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3259 | .pm = &cpsw_pm_ops, |
Sachin Kamat | 1e5c76d | 2013-09-30 09:55:12 +0530 | [diff] [blame] | 3260 | .of_match_table = cpsw_of_mtable, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3261 | }, |
| 3262 | .probe = cpsw_probe, |
Bill Pemberton | 663e12e | 2012-12-03 09:23:45 -0500 | [diff] [blame] | 3263 | .remove = cpsw_remove, |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3264 | }; |
| 3265 | |
Grygorii Strashko | 6fb3b6b5 | 2015-10-23 14:41:12 +0300 | [diff] [blame] | 3266 | module_platform_driver(cpsw_driver); |
Mugunthan V N | df82859 | 2012-03-18 20:17:54 +0000 | [diff] [blame] | 3267 | |
| 3268 | MODULE_LICENSE("GPL"); |
| 3269 | MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>"); |
| 3270 | MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>"); |
| 3271 | MODULE_DESCRIPTION("TI CPSW Ethernet driver"); |