Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: (GPL-2.0 OR MIT) |
| 2 | /* |
| 3 | * Microsemi Ocelot Switch driver |
| 4 | * |
| 5 | * Copyright (c) 2017 Microsemi Corporation |
| 6 | */ |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 7 | #include <linux/if_bridge.h> |
Vladimir Oltean | 2096805 | 2020-09-30 01:27:26 +0300 | [diff] [blame] | 8 | #include <soc/mscc/ocelot_vcap.h> |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 9 | #include "ocelot.h" |
Vladimir Oltean | 3c83654 | 2020-06-20 18:43:45 +0300 | [diff] [blame] | 10 | #include "ocelot_vcap.h" |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 11 | |
Steen Hegelund | 639c1b2 | 2018-12-20 14:16:31 +0100 | [diff] [blame] | 12 | #define TABLE_UPDATE_SLEEP_US 10 |
| 13 | #define TABLE_UPDATE_TIMEOUT_US 100000 |
| 14 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 15 | struct ocelot_mact_entry { |
| 16 | u8 mac[ETH_ALEN]; |
| 17 | u16 vid; |
| 18 | enum macaccess_entry_type type; |
| 19 | }; |
| 20 | |
Steen Hegelund | 639c1b2 | 2018-12-20 14:16:31 +0100 | [diff] [blame] | 21 | static inline u32 ocelot_mact_read_macaccess(struct ocelot *ocelot) |
| 22 | { |
| 23 | return ocelot_read(ocelot, ANA_TABLES_MACACCESS); |
| 24 | } |
| 25 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 26 | static inline int ocelot_mact_wait_for_completion(struct ocelot *ocelot) |
| 27 | { |
Steen Hegelund | 639c1b2 | 2018-12-20 14:16:31 +0100 | [diff] [blame] | 28 | u32 val; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 29 | |
Steen Hegelund | 639c1b2 | 2018-12-20 14:16:31 +0100 | [diff] [blame] | 30 | return readx_poll_timeout(ocelot_mact_read_macaccess, |
| 31 | ocelot, val, |
| 32 | (val & ANA_TABLES_MACACCESS_MAC_TABLE_CMD_M) == |
| 33 | MACACCESS_CMD_IDLE, |
| 34 | TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | static void ocelot_mact_select(struct ocelot *ocelot, |
| 38 | const unsigned char mac[ETH_ALEN], |
| 39 | unsigned int vid) |
| 40 | { |
| 41 | u32 macl = 0, mach = 0; |
| 42 | |
| 43 | /* Set the MAC address to handle and the vlan associated in a format |
| 44 | * understood by the hardware. |
| 45 | */ |
| 46 | mach |= vid << 16; |
| 47 | mach |= mac[0] << 8; |
| 48 | mach |= mac[1] << 0; |
| 49 | macl |= mac[2] << 24; |
| 50 | macl |= mac[3] << 16; |
| 51 | macl |= mac[4] << 8; |
| 52 | macl |= mac[5] << 0; |
| 53 | |
| 54 | ocelot_write(ocelot, macl, ANA_TABLES_MACLDATA); |
| 55 | ocelot_write(ocelot, mach, ANA_TABLES_MACHDATA); |
| 56 | |
| 57 | } |
| 58 | |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 59 | int ocelot_mact_learn(struct ocelot *ocelot, int port, |
| 60 | const unsigned char mac[ETH_ALEN], |
| 61 | unsigned int vid, enum macaccess_entry_type type) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 62 | { |
Alban Bedel | 584b7cf | 2021-01-19 15:06:38 +0100 | [diff] [blame] | 63 | u32 cmd = ANA_TABLES_MACACCESS_VALID | |
| 64 | ANA_TABLES_MACACCESS_DEST_IDX(port) | |
| 65 | ANA_TABLES_MACACCESS_ENTRYTYPE(type) | |
| 66 | ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_LEARN); |
| 67 | unsigned int mc_ports; |
| 68 | |
| 69 | /* Set MAC_CPU_COPY if the CPU port is used by a multicast entry */ |
| 70 | if (type == ENTRYTYPE_MACv4) |
| 71 | mc_ports = (mac[1] << 8) | mac[2]; |
| 72 | else if (type == ENTRYTYPE_MACv6) |
| 73 | mc_ports = (mac[0] << 8) | mac[1]; |
| 74 | else |
| 75 | mc_ports = 0; |
| 76 | |
| 77 | if (mc_ports & BIT(ocelot->num_phys_ports)) |
| 78 | cmd |= ANA_TABLES_MACACCESS_MAC_CPU_COPY; |
| 79 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 80 | ocelot_mact_select(ocelot, mac, vid); |
| 81 | |
| 82 | /* Issue a write command */ |
Alban Bedel | 584b7cf | 2021-01-19 15:06:38 +0100 | [diff] [blame] | 83 | ocelot_write(ocelot, cmd, ANA_TABLES_MACACCESS); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 84 | |
| 85 | return ocelot_mact_wait_for_completion(ocelot); |
| 86 | } |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 87 | EXPORT_SYMBOL(ocelot_mact_learn); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 88 | |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 89 | int ocelot_mact_forget(struct ocelot *ocelot, |
| 90 | const unsigned char mac[ETH_ALEN], unsigned int vid) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 91 | { |
| 92 | ocelot_mact_select(ocelot, mac, vid); |
| 93 | |
| 94 | /* Issue a forget command */ |
| 95 | ocelot_write(ocelot, |
| 96 | ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_FORGET), |
| 97 | ANA_TABLES_MACACCESS); |
| 98 | |
| 99 | return ocelot_mact_wait_for_completion(ocelot); |
| 100 | } |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 101 | EXPORT_SYMBOL(ocelot_mact_forget); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 102 | |
| 103 | static void ocelot_mact_init(struct ocelot *ocelot) |
| 104 | { |
| 105 | /* Configure the learning mode entries attributes: |
| 106 | * - Do not copy the frame to the CPU extraction queues. |
| 107 | * - Use the vlan and mac_cpoy for dmac lookup. |
| 108 | */ |
| 109 | ocelot_rmw(ocelot, 0, |
| 110 | ANA_AGENCTRL_LEARN_CPU_COPY | ANA_AGENCTRL_IGNORE_DMAC_FLAGS |
| 111 | | ANA_AGENCTRL_LEARN_FWD_KILL |
| 112 | | ANA_AGENCTRL_LEARN_IGNORE_VLAN, |
| 113 | ANA_AGENCTRL); |
| 114 | |
| 115 | /* Clear the MAC table */ |
| 116 | ocelot_write(ocelot, MACACCESS_CMD_INIT, ANA_TABLES_MACACCESS); |
| 117 | } |
| 118 | |
Vladimir Oltean | f270dbf | 2019-11-09 15:02:52 +0200 | [diff] [blame] | 119 | static void ocelot_vcap_enable(struct ocelot *ocelot, int port) |
Horatiu Vultur | b596229 | 2019-05-31 09:16:56 +0200 | [diff] [blame] | 120 | { |
| 121 | ocelot_write_gix(ocelot, ANA_PORT_VCAP_S2_CFG_S2_ENA | |
| 122 | ANA_PORT_VCAP_S2_CFG_S2_IP6_CFG(0xa), |
Vladimir Oltean | f270dbf | 2019-11-09 15:02:52 +0200 | [diff] [blame] | 123 | ANA_PORT_VCAP_S2_CFG, port); |
Xiaoliang Yang | 75944fd | 2020-10-02 15:02:23 +0300 | [diff] [blame] | 124 | |
| 125 | ocelot_write_gix(ocelot, ANA_PORT_VCAP_CFG_S1_ENA, |
| 126 | ANA_PORT_VCAP_CFG, port); |
Xiaoliang Yang | 2f17c05 | 2020-10-02 15:02:24 +0300 | [diff] [blame] | 127 | |
| 128 | ocelot_rmw_gix(ocelot, REW_PORT_CFG_ES0_EN, |
| 129 | REW_PORT_CFG_ES0_EN, |
| 130 | REW_PORT_CFG, port); |
Horatiu Vultur | b596229 | 2019-05-31 09:16:56 +0200 | [diff] [blame] | 131 | } |
| 132 | |
Steen Hegelund | 639c1b2 | 2018-12-20 14:16:31 +0100 | [diff] [blame] | 133 | static inline u32 ocelot_vlant_read_vlanaccess(struct ocelot *ocelot) |
| 134 | { |
| 135 | return ocelot_read(ocelot, ANA_TABLES_VLANACCESS); |
| 136 | } |
| 137 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 138 | static inline int ocelot_vlant_wait_for_completion(struct ocelot *ocelot) |
| 139 | { |
Steen Hegelund | 639c1b2 | 2018-12-20 14:16:31 +0100 | [diff] [blame] | 140 | u32 val; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 141 | |
Steen Hegelund | 639c1b2 | 2018-12-20 14:16:31 +0100 | [diff] [blame] | 142 | return readx_poll_timeout(ocelot_vlant_read_vlanaccess, |
| 143 | ocelot, |
| 144 | val, |
| 145 | (val & ANA_TABLES_VLANACCESS_VLAN_TBL_CMD_M) == |
| 146 | ANA_TABLES_VLANACCESS_CMD_IDLE, |
| 147 | TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 148 | } |
| 149 | |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 150 | static int ocelot_vlant_set_mask(struct ocelot *ocelot, u16 vid, u32 mask) |
| 151 | { |
| 152 | /* Select the VID to configure */ |
| 153 | ocelot_write(ocelot, ANA_TABLES_VLANTIDX_V_INDEX(vid), |
| 154 | ANA_TABLES_VLANTIDX); |
| 155 | /* Set the vlan port members mask and issue a write command */ |
| 156 | ocelot_write(ocelot, ANA_TABLES_VLANACCESS_VLAN_PORT_MASK(mask) | |
| 157 | ANA_TABLES_VLANACCESS_CMD_WRITE, |
| 158 | ANA_TABLES_VLANACCESS); |
| 159 | |
| 160 | return ocelot_vlant_wait_for_completion(ocelot); |
| 161 | } |
| 162 | |
Vladimir Oltean | 2f0402f | 2020-10-31 12:29:15 +0200 | [diff] [blame] | 163 | static void ocelot_port_set_native_vlan(struct ocelot *ocelot, int port, |
| 164 | struct ocelot_vlan native_vlan) |
Vladimir Oltean | 97bb69e | 2019-11-09 15:02:47 +0200 | [diff] [blame] | 165 | { |
| 166 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 167 | u32 val = 0; |
Vladimir Oltean | 97bb69e | 2019-11-09 15:02:47 +0200 | [diff] [blame] | 168 | |
Vladimir Oltean | e2b2e83 | 2020-10-31 12:29:13 +0200 | [diff] [blame] | 169 | ocelot_port->native_vlan = native_vlan; |
| 170 | |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 171 | ocelot_rmw_gix(ocelot, REW_PORT_VLAN_CFG_PORT_VID(native_vlan.vid), |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 172 | REW_PORT_VLAN_CFG_PORT_VID_M, |
Vladimir Oltean | 97bb69e | 2019-11-09 15:02:47 +0200 | [diff] [blame] | 173 | REW_PORT_VLAN_CFG, port); |
| 174 | |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 175 | if (ocelot_port->vlan_aware) { |
Vladimir Oltean | e2b2e83 | 2020-10-31 12:29:13 +0200 | [diff] [blame] | 176 | if (native_vlan.valid) |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 177 | /* Tag all frames except when VID == DEFAULT_VLAN */ |
| 178 | val = REW_TAG_CFG_TAG_CFG(1); |
| 179 | else |
| 180 | /* Tag all frames */ |
| 181 | val = REW_TAG_CFG_TAG_CFG(3); |
| 182 | } else { |
| 183 | /* Port tagging disabled. */ |
| 184 | val = REW_TAG_CFG_TAG_CFG(0); |
| 185 | } |
| 186 | ocelot_rmw_gix(ocelot, val, |
| 187 | REW_TAG_CFG_TAG_CFG_M, |
| 188 | REW_TAG_CFG, port); |
Vladimir Oltean | 97bb69e | 2019-11-09 15:02:47 +0200 | [diff] [blame] | 189 | } |
| 190 | |
Vladimir Oltean | 75e5a55 | 2020-10-31 12:29:10 +0200 | [diff] [blame] | 191 | /* Default vlan to clasify for untagged frames (may be zero) */ |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 192 | static void ocelot_port_set_pvid(struct ocelot *ocelot, int port, |
| 193 | struct ocelot_vlan pvid_vlan) |
Vladimir Oltean | 75e5a55 | 2020-10-31 12:29:10 +0200 | [diff] [blame] | 194 | { |
| 195 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
Vladimir Oltean | be0576f | 2020-10-31 12:29:14 +0200 | [diff] [blame] | 196 | u32 val = 0; |
Vladimir Oltean | 75e5a55 | 2020-10-31 12:29:10 +0200 | [diff] [blame] | 197 | |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 198 | ocelot_port->pvid_vlan = pvid_vlan; |
Vladimir Oltean | 75e5a55 | 2020-10-31 12:29:10 +0200 | [diff] [blame] | 199 | |
| 200 | if (!ocelot_port->vlan_aware) |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 201 | pvid_vlan.vid = 0; |
Vladimir Oltean | 75e5a55 | 2020-10-31 12:29:10 +0200 | [diff] [blame] | 202 | |
| 203 | ocelot_rmw_gix(ocelot, |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 204 | ANA_PORT_VLAN_CFG_VLAN_VID(pvid_vlan.vid), |
Vladimir Oltean | 75e5a55 | 2020-10-31 12:29:10 +0200 | [diff] [blame] | 205 | ANA_PORT_VLAN_CFG_VLAN_VID_M, |
| 206 | ANA_PORT_VLAN_CFG, port); |
Vladimir Oltean | be0576f | 2020-10-31 12:29:14 +0200 | [diff] [blame] | 207 | |
| 208 | /* If there's no pvid, we should drop not only untagged traffic (which |
| 209 | * happens automatically), but also 802.1p traffic which gets |
| 210 | * classified to VLAN 0, but that is always in our RX filter, so it |
| 211 | * would get accepted were it not for this setting. |
| 212 | */ |
| 213 | if (!pvid_vlan.valid && ocelot_port->vlan_aware) |
| 214 | val = ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA | |
| 215 | ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA; |
| 216 | |
| 217 | ocelot_rmw_gix(ocelot, val, |
| 218 | ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA | |
| 219 | ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA, |
| 220 | ANA_PORT_DROP_CFG, port); |
Vladimir Oltean | 75e5a55 | 2020-10-31 12:29:10 +0200 | [diff] [blame] | 221 | } |
| 222 | |
Vladimir Oltean | 2e554a7 | 2020-10-03 01:06:46 +0300 | [diff] [blame] | 223 | int ocelot_port_vlan_filtering(struct ocelot *ocelot, int port, |
Vladimir Oltean | bae33f2 | 2021-01-09 02:01:50 +0200 | [diff] [blame] | 224 | bool vlan_aware) |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 225 | { |
Vladimir Oltean | bae33f2 | 2021-01-09 02:01:50 +0200 | [diff] [blame] | 226 | struct ocelot_vcap_block *block = &ocelot->block[VCAP_IS1]; |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 227 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
Vladimir Oltean | bae33f2 | 2021-01-09 02:01:50 +0200 | [diff] [blame] | 228 | struct ocelot_vcap_filter *filter; |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 229 | u32 val; |
| 230 | |
Vladimir Oltean | bae33f2 | 2021-01-09 02:01:50 +0200 | [diff] [blame] | 231 | list_for_each_entry(filter, &block->rules, list) { |
| 232 | if (filter->ingress_port_mask & BIT(port) && |
| 233 | filter->action.vid_replace_ena) { |
| 234 | dev_err(ocelot->dev, |
| 235 | "Cannot change VLAN state with vlan modify rules active\n"); |
| 236 | return -EBUSY; |
Vladimir Oltean | 70edfae | 2020-10-08 14:56:58 +0300 | [diff] [blame] | 237 | } |
Vladimir Oltean | 70edfae | 2020-10-08 14:56:58 +0300 | [diff] [blame] | 238 | } |
Vladimir Oltean | 2e554a7 | 2020-10-03 01:06:46 +0300 | [diff] [blame] | 239 | |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 240 | ocelot_port->vlan_aware = vlan_aware; |
| 241 | |
| 242 | if (vlan_aware) |
| 243 | val = ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA | |
| 244 | ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1); |
| 245 | else |
| 246 | val = 0; |
| 247 | ocelot_rmw_gix(ocelot, val, |
| 248 | ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA | |
| 249 | ANA_PORT_VLAN_CFG_VLAN_POP_CNT_M, |
| 250 | ANA_PORT_VLAN_CFG, port); |
| 251 | |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 252 | ocelot_port_set_pvid(ocelot, port, ocelot_port->pvid_vlan); |
| 253 | ocelot_port_set_native_vlan(ocelot, port, ocelot_port->native_vlan); |
Vladimir Oltean | 2e554a7 | 2020-10-03 01:06:46 +0300 | [diff] [blame] | 254 | |
| 255 | return 0; |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 256 | } |
| 257 | EXPORT_SYMBOL(ocelot_port_vlan_filtering); |
| 258 | |
Vladimir Oltean | 2f0402f | 2020-10-31 12:29:15 +0200 | [diff] [blame] | 259 | int ocelot_vlan_prepare(struct ocelot *ocelot, int port, u16 vid, bool pvid, |
| 260 | bool untagged) |
| 261 | { |
| 262 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 263 | |
| 264 | /* Deny changing the native VLAN, but always permit deleting it */ |
| 265 | if (untagged && ocelot_port->native_vlan.vid != vid && |
| 266 | ocelot_port->native_vlan.valid) { |
| 267 | dev_err(ocelot->dev, |
| 268 | "Port already has a native VLAN: %d\n", |
| 269 | ocelot_port->native_vlan.vid); |
| 270 | return -EBUSY; |
| 271 | } |
| 272 | |
| 273 | return 0; |
| 274 | } |
| 275 | EXPORT_SYMBOL(ocelot_vlan_prepare); |
| 276 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 277 | int ocelot_vlan_add(struct ocelot *ocelot, int port, u16 vid, bool pvid, |
| 278 | bool untagged) |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 279 | { |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 280 | int ret; |
| 281 | |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 282 | /* Make the port a member of the VLAN */ |
Vladimir Oltean | 97bb69e | 2019-11-09 15:02:47 +0200 | [diff] [blame] | 283 | ocelot->vlan_mask[vid] |= BIT(port); |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 284 | ret = ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]); |
| 285 | if (ret) |
| 286 | return ret; |
| 287 | |
| 288 | /* Default ingress vlan classification */ |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 289 | if (pvid) { |
| 290 | struct ocelot_vlan pvid_vlan; |
| 291 | |
| 292 | pvid_vlan.vid = vid; |
Vladimir Oltean | e2b2e83 | 2020-10-31 12:29:13 +0200 | [diff] [blame] | 293 | pvid_vlan.valid = true; |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 294 | ocelot_port_set_pvid(ocelot, port, pvid_vlan); |
| 295 | } |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 296 | |
| 297 | /* Untagged egress vlan clasification */ |
Vladimir Oltean | 97bb69e | 2019-11-09 15:02:47 +0200 | [diff] [blame] | 298 | if (untagged) { |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 299 | struct ocelot_vlan native_vlan; |
| 300 | |
| 301 | native_vlan.vid = vid; |
Vladimir Oltean | e2b2e83 | 2020-10-31 12:29:13 +0200 | [diff] [blame] | 302 | native_vlan.valid = true; |
Vladimir Oltean | 2f0402f | 2020-10-31 12:29:15 +0200 | [diff] [blame] | 303 | ocelot_port_set_native_vlan(ocelot, port, native_vlan); |
Vladimir Oltean | b9cd75e | 2019-10-26 21:04:27 +0300 | [diff] [blame] | 304 | } |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 305 | |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 306 | return 0; |
| 307 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 308 | EXPORT_SYMBOL(ocelot_vlan_add); |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 309 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 310 | int ocelot_vlan_del(struct ocelot *ocelot, int port, u16 vid) |
Vladimir Oltean | 9855934 | 2019-11-09 15:02:48 +0200 | [diff] [blame] | 311 | { |
| 312 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 313 | int ret; |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 314 | |
| 315 | /* Stop the port from being a member of the vlan */ |
Vladimir Oltean | 97bb69e | 2019-11-09 15:02:47 +0200 | [diff] [blame] | 316 | ocelot->vlan_mask[vid] &= ~BIT(port); |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 317 | ret = ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]); |
| 318 | if (ret) |
| 319 | return ret; |
| 320 | |
Vladimir Oltean | be0576f | 2020-10-31 12:29:14 +0200 | [diff] [blame] | 321 | /* Ingress */ |
| 322 | if (ocelot_port->pvid_vlan.vid == vid) { |
| 323 | struct ocelot_vlan pvid_vlan = {0}; |
| 324 | |
| 325 | ocelot_port_set_pvid(ocelot, port, pvid_vlan); |
| 326 | } |
| 327 | |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 328 | /* Egress */ |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 329 | if (ocelot_port->native_vlan.vid == vid) { |
Vladimir Oltean | e2b2e83 | 2020-10-31 12:29:13 +0200 | [diff] [blame] | 330 | struct ocelot_vlan native_vlan = {0}; |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 331 | |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 332 | ocelot_port_set_native_vlan(ocelot, port, native_vlan); |
| 333 | } |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 334 | |
| 335 | return 0; |
| 336 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 337 | EXPORT_SYMBOL(ocelot_vlan_del); |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 338 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 339 | static void ocelot_vlan_init(struct ocelot *ocelot) |
| 340 | { |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 341 | u16 port, vid; |
| 342 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 343 | /* Clear VLAN table, by default all ports are members of all VLANs */ |
| 344 | ocelot_write(ocelot, ANA_TABLES_VLANACCESS_CMD_INIT, |
| 345 | ANA_TABLES_VLANACCESS); |
| 346 | ocelot_vlant_wait_for_completion(ocelot); |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 347 | |
| 348 | /* Configure the port VLAN memberships */ |
| 349 | for (vid = 1; vid < VLAN_N_VID; vid++) { |
| 350 | ocelot->vlan_mask[vid] = 0; |
| 351 | ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]); |
| 352 | } |
| 353 | |
| 354 | /* Because VLAN filtering is enabled, we need VID 0 to get untagged |
| 355 | * traffic. It is added automatically if 8021q module is loaded, but |
| 356 | * we can't rely on it since module may be not loaded. |
| 357 | */ |
| 358 | ocelot->vlan_mask[0] = GENMASK(ocelot->num_phys_ports - 1, 0); |
| 359 | ocelot_vlant_set_mask(ocelot, 0, ocelot->vlan_mask[0]); |
| 360 | |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 361 | /* Set vlan ingress filter mask to all ports but the CPU port by |
| 362 | * default. |
| 363 | */ |
Vladimir Oltean | 714d0ff | 2019-11-09 15:02:55 +0200 | [diff] [blame] | 364 | ocelot_write(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0), |
| 365 | ANA_VLANMASK); |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 366 | |
| 367 | for (port = 0; port < ocelot->num_phys_ports; port++) { |
| 368 | ocelot_write_gix(ocelot, 0, REW_PORT_VLAN_CFG, port); |
| 369 | ocelot_write_gix(ocelot, 0, REW_TAG_CFG, port); |
| 370 | } |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 371 | } |
| 372 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 373 | void ocelot_adjust_link(struct ocelot *ocelot, int port, |
| 374 | struct phy_device *phydev) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 375 | { |
Vladimir Oltean | 26f4dba | 2019-11-09 15:02:59 +0200 | [diff] [blame] | 376 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
Vladimir Oltean | 5bc9d2e | 2019-11-14 17:03:22 +0200 | [diff] [blame] | 377 | int speed, mode = 0; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 378 | |
Vladimir Oltean | 26f4dba | 2019-11-09 15:02:59 +0200 | [diff] [blame] | 379 | switch (phydev->speed) { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 380 | case SPEED_10: |
| 381 | speed = OCELOT_SPEED_10; |
| 382 | break; |
| 383 | case SPEED_100: |
| 384 | speed = OCELOT_SPEED_100; |
| 385 | break; |
| 386 | case SPEED_1000: |
| 387 | speed = OCELOT_SPEED_1000; |
| 388 | mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA; |
| 389 | break; |
| 390 | case SPEED_2500: |
| 391 | speed = OCELOT_SPEED_2500; |
| 392 | mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA; |
| 393 | break; |
| 394 | default: |
Vladimir Oltean | 26f4dba | 2019-11-09 15:02:59 +0200 | [diff] [blame] | 395 | dev_err(ocelot->dev, "Unsupported PHY speed on port %d: %d\n", |
| 396 | port, phydev->speed); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 397 | return; |
| 398 | } |
| 399 | |
Vladimir Oltean | 26f4dba | 2019-11-09 15:02:59 +0200 | [diff] [blame] | 400 | phy_print_status(phydev); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 401 | |
Vladimir Oltean | 26f4dba | 2019-11-09 15:02:59 +0200 | [diff] [blame] | 402 | if (!phydev->link) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 403 | return; |
| 404 | |
| 405 | /* Only full duplex supported for now */ |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 406 | ocelot_port_writel(ocelot_port, DEV_MAC_MODE_CFG_FDX_ENA | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 407 | mode, DEV_MAC_MODE_CFG); |
| 408 | |
Vladimir Oltean | 1ba8f65 | 2020-02-29 16:31:11 +0200 | [diff] [blame] | 409 | /* Disable HDX fast control */ |
| 410 | ocelot_port_writel(ocelot_port, DEV_PORT_MISC_HDX_FAST_DIS, |
| 411 | DEV_PORT_MISC); |
| 412 | |
| 413 | /* SGMII only for now */ |
| 414 | ocelot_port_writel(ocelot_port, PCS1G_MODE_CFG_SGMII_MODE_ENA, |
| 415 | PCS1G_MODE_CFG); |
| 416 | ocelot_port_writel(ocelot_port, PCS1G_SD_CFG_SD_SEL, PCS1G_SD_CFG); |
| 417 | |
| 418 | /* Enable PCS */ |
| 419 | ocelot_port_writel(ocelot_port, PCS1G_CFG_PCS_ENA, PCS1G_CFG); |
| 420 | |
| 421 | /* No aneg on SGMII */ |
| 422 | ocelot_port_writel(ocelot_port, 0, PCS1G_ANEG_CFG); |
| 423 | |
| 424 | /* No loopback */ |
| 425 | ocelot_port_writel(ocelot_port, 0, PCS1G_LB_CFG); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 426 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 427 | /* Enable MAC module */ |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 428 | ocelot_port_writel(ocelot_port, DEV_MAC_ENA_CFG_RX_ENA | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 429 | DEV_MAC_ENA_CFG_TX_ENA, DEV_MAC_ENA_CFG); |
| 430 | |
| 431 | /* Take MAC, Port, Phy (intern) and PCS (SGMII/Serdes) clock out of |
| 432 | * reset */ |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 433 | ocelot_port_writel(ocelot_port, DEV_CLOCK_CFG_LINK_SPEED(speed), |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 434 | DEV_CLOCK_CFG); |
| 435 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 436 | /* No PFC */ |
| 437 | ocelot_write_gix(ocelot, ANA_PFC_PFC_CFG_FC_LINK_SPEED(speed), |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 438 | ANA_PFC_PFC_CFG, port); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 439 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 440 | /* Core: Enable port for frame transfer */ |
Vladimir Oltean | 886e138 | 2020-07-13 19:57:03 +0300 | [diff] [blame] | 441 | ocelot_fields_write(ocelot, port, |
| 442 | QSYS_SWITCH_PORT_MODE_PORT_ENA, 1); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 443 | |
| 444 | /* Flow control */ |
| 445 | ocelot_write_rix(ocelot, SYS_MAC_FC_CFG_PAUSE_VAL_CFG(0xffff) | |
| 446 | SYS_MAC_FC_CFG_RX_FC_ENA | SYS_MAC_FC_CFG_TX_FC_ENA | |
| 447 | SYS_MAC_FC_CFG_ZERO_PAUSE_ENA | |
| 448 | SYS_MAC_FC_CFG_FC_LATENCY_CFG(0x7) | |
| 449 | SYS_MAC_FC_CFG_FC_LINK_SPEED(speed), |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 450 | SYS_MAC_FC_CFG, port); |
| 451 | ocelot_write_rix(ocelot, 0, ANA_POL_FLOWC, port); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 452 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 453 | EXPORT_SYMBOL(ocelot_adjust_link); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 454 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 455 | void ocelot_port_enable(struct ocelot *ocelot, int port, |
| 456 | struct phy_device *phy) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 457 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 458 | /* Enable receiving frames on the port, and activate auto-learning of |
| 459 | * MAC addresses. |
| 460 | */ |
| 461 | ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_LEARNAUTO | |
| 462 | ANA_PORT_PORT_CFG_RECV_ENA | |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 463 | ANA_PORT_PORT_CFG_PORTID_VAL(port), |
| 464 | ANA_PORT_PORT_CFG, port); |
Vladimir Oltean | 889b895 | 2019-11-09 15:02:57 +0200 | [diff] [blame] | 465 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 466 | EXPORT_SYMBOL(ocelot_port_enable); |
Vladimir Oltean | 889b895 | 2019-11-09 15:02:57 +0200 | [diff] [blame] | 467 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 468 | void ocelot_port_disable(struct ocelot *ocelot, int port) |
Vladimir Oltean | 889b895 | 2019-11-09 15:02:57 +0200 | [diff] [blame] | 469 | { |
| 470 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 471 | |
| 472 | ocelot_port_writel(ocelot_port, 0, DEV_MAC_ENA_CFG); |
Vladimir Oltean | 886e138 | 2020-07-13 19:57:03 +0300 | [diff] [blame] | 473 | ocelot_fields_write(ocelot, port, QSYS_SWITCH_PORT_MODE_PORT_ENA, 0); |
Vladimir Oltean | 889b895 | 2019-11-09 15:02:57 +0200 | [diff] [blame] | 474 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 475 | EXPORT_SYMBOL(ocelot_port_disable); |
Vladimir Oltean | 889b895 | 2019-11-09 15:02:57 +0200 | [diff] [blame] | 476 | |
Vladimir Oltean | e2f9a8f | 2020-09-23 14:24:20 +0300 | [diff] [blame] | 477 | void ocelot_port_add_txtstamp_skb(struct ocelot *ocelot, int port, |
| 478 | struct sk_buff *clone) |
Yangbo Lu | 400928b | 2019-11-20 16:23:16 +0800 | [diff] [blame] | 479 | { |
Vladimir Oltean | e2f9a8f | 2020-09-23 14:24:20 +0300 | [diff] [blame] | 480 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
Yangbo Lu | 400928b | 2019-11-20 16:23:16 +0800 | [diff] [blame] | 481 | |
Vladimir Oltean | e2f9a8f | 2020-09-23 14:24:20 +0300 | [diff] [blame] | 482 | spin_lock(&ocelot_port->ts_id_lock); |
Vladimir Oltean | 6565243 | 2020-09-18 04:07:24 +0300 | [diff] [blame] | 483 | |
Vladimir Oltean | e2f9a8f | 2020-09-23 14:24:20 +0300 | [diff] [blame] | 484 | skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS; |
| 485 | /* Store timestamp ID in cb[0] of sk_buff */ |
| 486 | clone->cb[0] = ocelot_port->ts_id; |
| 487 | ocelot_port->ts_id = (ocelot_port->ts_id + 1) % 4; |
| 488 | skb_queue_tail(&ocelot_port->tx_skbs, clone); |
Vladimir Oltean | 6565243 | 2020-09-18 04:07:24 +0300 | [diff] [blame] | 489 | |
Vladimir Oltean | e2f9a8f | 2020-09-23 14:24:20 +0300 | [diff] [blame] | 490 | spin_unlock(&ocelot_port->ts_id_lock); |
Yangbo Lu | 400928b | 2019-11-20 16:23:16 +0800 | [diff] [blame] | 491 | } |
| 492 | EXPORT_SYMBOL(ocelot_port_add_txtstamp_skb); |
| 493 | |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 494 | static void ocelot_get_hwtimestamp(struct ocelot *ocelot, |
| 495 | struct timespec64 *ts) |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 496 | { |
| 497 | unsigned long flags; |
| 498 | u32 val; |
| 499 | |
| 500 | spin_lock_irqsave(&ocelot->ptp_clock_lock, flags); |
| 501 | |
| 502 | /* Read current PTP time to get seconds */ |
| 503 | val = ocelot_read_rix(ocelot, PTP_PIN_CFG, TOD_ACC_PIN); |
| 504 | |
| 505 | val &= ~(PTP_PIN_CFG_SYNC | PTP_PIN_CFG_ACTION_MASK | PTP_PIN_CFG_DOM); |
| 506 | val |= PTP_PIN_CFG_ACTION(PTP_PIN_ACTION_SAVE); |
| 507 | ocelot_write_rix(ocelot, val, PTP_PIN_CFG, TOD_ACC_PIN); |
| 508 | ts->tv_sec = ocelot_read_rix(ocelot, PTP_PIN_TOD_SEC_LSB, TOD_ACC_PIN); |
| 509 | |
| 510 | /* Read packet HW timestamp from FIFO */ |
| 511 | val = ocelot_read(ocelot, SYS_PTP_TXSTAMP); |
| 512 | ts->tv_nsec = SYS_PTP_TXSTAMP_PTP_TXSTAMP(val); |
| 513 | |
| 514 | /* Sec has incremented since the ts was registered */ |
| 515 | if ((ts->tv_sec & 0x1) != !!(val & SYS_PTP_TXSTAMP_PTP_TXSTAMP_SEC)) |
| 516 | ts->tv_sec--; |
| 517 | |
| 518 | spin_unlock_irqrestore(&ocelot->ptp_clock_lock, flags); |
| 519 | } |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 520 | |
| 521 | void ocelot_get_txtstamp(struct ocelot *ocelot) |
| 522 | { |
| 523 | int budget = OCELOT_PTP_QUEUE_SZ; |
| 524 | |
| 525 | while (budget--) { |
Yangbo Lu | b049da1 | 2019-11-27 15:27:57 +0800 | [diff] [blame] | 526 | struct sk_buff *skb, *skb_tmp, *skb_match = NULL; |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 527 | struct skb_shared_hwtstamps shhwtstamps; |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 528 | struct ocelot_port *port; |
| 529 | struct timespec64 ts; |
Yangbo Lu | b049da1 | 2019-11-27 15:27:57 +0800 | [diff] [blame] | 530 | unsigned long flags; |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 531 | u32 val, id, txport; |
| 532 | |
| 533 | val = ocelot_read(ocelot, SYS_PTP_STATUS); |
| 534 | |
| 535 | /* Check if a timestamp can be retrieved */ |
| 536 | if (!(val & SYS_PTP_STATUS_PTP_MESS_VLD)) |
| 537 | break; |
| 538 | |
| 539 | WARN_ON(val & SYS_PTP_STATUS_PTP_OVFL); |
| 540 | |
| 541 | /* Retrieve the ts ID and Tx port */ |
| 542 | id = SYS_PTP_STATUS_PTP_MESS_ID_X(val); |
| 543 | txport = SYS_PTP_STATUS_PTP_MESS_TXPORT_X(val); |
| 544 | |
| 545 | /* Retrieve its associated skb */ |
| 546 | port = ocelot->ports[txport]; |
| 547 | |
Yangbo Lu | b049da1 | 2019-11-27 15:27:57 +0800 | [diff] [blame] | 548 | spin_lock_irqsave(&port->tx_skbs.lock, flags); |
| 549 | |
| 550 | skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { |
| 551 | if (skb->cb[0] != id) |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 552 | continue; |
Yangbo Lu | b049da1 | 2019-11-27 15:27:57 +0800 | [diff] [blame] | 553 | __skb_unlink(skb, &port->tx_skbs); |
| 554 | skb_match = skb; |
Yangbo Lu | fc62c09 | 2019-11-27 15:27:56 +0800 | [diff] [blame] | 555 | break; |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 556 | } |
| 557 | |
Yangbo Lu | b049da1 | 2019-11-27 15:27:57 +0800 | [diff] [blame] | 558 | spin_unlock_irqrestore(&port->tx_skbs.lock, flags); |
| 559 | |
laurent brando | 5fd8220 | 2020-07-27 18:26:14 +0800 | [diff] [blame] | 560 | /* Get the h/w timestamp */ |
| 561 | ocelot_get_hwtimestamp(ocelot, &ts); |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 562 | |
Yangbo Lu | b049da1 | 2019-11-27 15:27:57 +0800 | [diff] [blame] | 563 | if (unlikely(!skb_match)) |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 564 | continue; |
| 565 | |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 566 | /* Set the timestamp into the skb */ |
| 567 | memset(&shhwtstamps, 0, sizeof(shhwtstamps)); |
| 568 | shhwtstamps.hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec); |
Vladimir Oltean | e2f9a8f | 2020-09-23 14:24:20 +0300 | [diff] [blame] | 569 | skb_complete_tx_timestamp(skb_match, &shhwtstamps); |
laurent brando | 5fd8220 | 2020-07-27 18:26:14 +0800 | [diff] [blame] | 570 | |
| 571 | /* Next ts */ |
| 572 | ocelot_write(ocelot, SYS_PTP_NXT_PTP_NXT, SYS_PTP_NXT); |
Yangbo Lu | e23a7b3 | 2019-11-20 16:23:15 +0800 | [diff] [blame] | 573 | } |
| 574 | } |
| 575 | EXPORT_SYMBOL(ocelot_get_txtstamp); |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 576 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 577 | int ocelot_fdb_add(struct ocelot *ocelot, int port, |
Vladimir Oltean | 87b0f98 | 2020-04-14 22:36:15 +0300 | [diff] [blame] | 578 | const unsigned char *addr, u16 vid) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 579 | { |
Vladimir Oltean | 471beb1 | 2020-06-21 14:46:00 +0300 | [diff] [blame] | 580 | int pgid = port; |
| 581 | |
| 582 | if (port == ocelot->npi) |
| 583 | pgid = PGID_CPU; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 584 | |
Vladimir Oltean | 471beb1 | 2020-06-21 14:46:00 +0300 | [diff] [blame] | 585 | return ocelot_mact_learn(ocelot, pgid, addr, vid, ENTRYTYPE_LOCKED); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 586 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 587 | EXPORT_SYMBOL(ocelot_fdb_add); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 588 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 589 | int ocelot_fdb_del(struct ocelot *ocelot, int port, |
| 590 | const unsigned char *addr, u16 vid) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 591 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 592 | return ocelot_mact_forget(ocelot, addr, vid); |
| 593 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 594 | EXPORT_SYMBOL(ocelot_fdb_del); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 595 | |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 596 | int ocelot_port_fdb_do_dump(const unsigned char *addr, u16 vid, |
| 597 | bool is_static, void *data) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 598 | { |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 599 | struct ocelot_dump_ctx *dump = data; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 600 | u32 portid = NETLINK_CB(dump->cb->skb).portid; |
| 601 | u32 seq = dump->cb->nlh->nlmsg_seq; |
| 602 | struct nlmsghdr *nlh; |
| 603 | struct ndmsg *ndm; |
| 604 | |
| 605 | if (dump->idx < dump->cb->args[2]) |
| 606 | goto skip; |
| 607 | |
| 608 | nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH, |
| 609 | sizeof(*ndm), NLM_F_MULTI); |
| 610 | if (!nlh) |
| 611 | return -EMSGSIZE; |
| 612 | |
| 613 | ndm = nlmsg_data(nlh); |
| 614 | ndm->ndm_family = AF_BRIDGE; |
| 615 | ndm->ndm_pad1 = 0; |
| 616 | ndm->ndm_pad2 = 0; |
| 617 | ndm->ndm_flags = NTF_SELF; |
| 618 | ndm->ndm_type = 0; |
| 619 | ndm->ndm_ifindex = dump->dev->ifindex; |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 620 | ndm->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 621 | |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 622 | if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr)) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 623 | goto nla_put_failure; |
| 624 | |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 625 | if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid)) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 626 | goto nla_put_failure; |
| 627 | |
| 628 | nlmsg_end(dump->skb, nlh); |
| 629 | |
| 630 | skip: |
| 631 | dump->idx++; |
| 632 | return 0; |
| 633 | |
| 634 | nla_put_failure: |
| 635 | nlmsg_cancel(dump->skb, nlh); |
| 636 | return -EMSGSIZE; |
| 637 | } |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 638 | EXPORT_SYMBOL(ocelot_port_fdb_do_dump); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 639 | |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 640 | static int ocelot_mact_read(struct ocelot *ocelot, int port, int row, int col, |
| 641 | struct ocelot_mact_entry *entry) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 642 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 643 | u32 val, dst, macl, mach; |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 644 | char mac[ETH_ALEN]; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 645 | |
| 646 | /* Set row and column to read from */ |
| 647 | ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_M_INDEX, row); |
| 648 | ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_BUCKET, col); |
| 649 | |
| 650 | /* Issue a read command */ |
| 651 | ocelot_write(ocelot, |
| 652 | ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_READ), |
| 653 | ANA_TABLES_MACACCESS); |
| 654 | |
| 655 | if (ocelot_mact_wait_for_completion(ocelot)) |
| 656 | return -ETIMEDOUT; |
| 657 | |
| 658 | /* Read the entry flags */ |
| 659 | val = ocelot_read(ocelot, ANA_TABLES_MACACCESS); |
| 660 | if (!(val & ANA_TABLES_MACACCESS_VALID)) |
| 661 | return -EINVAL; |
| 662 | |
| 663 | /* If the entry read has another port configured as its destination, |
| 664 | * do not report it. |
| 665 | */ |
| 666 | dst = (val & ANA_TABLES_MACACCESS_DEST_IDX_M) >> 3; |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 667 | if (dst != port) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 668 | return -EINVAL; |
| 669 | |
| 670 | /* Get the entry's MAC address and VLAN id */ |
| 671 | macl = ocelot_read(ocelot, ANA_TABLES_MACLDATA); |
| 672 | mach = ocelot_read(ocelot, ANA_TABLES_MACHDATA); |
| 673 | |
| 674 | mac[0] = (mach >> 8) & 0xff; |
| 675 | mac[1] = (mach >> 0) & 0xff; |
| 676 | mac[2] = (macl >> 24) & 0xff; |
| 677 | mac[3] = (macl >> 16) & 0xff; |
| 678 | mac[4] = (macl >> 8) & 0xff; |
| 679 | mac[5] = (macl >> 0) & 0xff; |
| 680 | |
| 681 | entry->vid = (mach >> 16) & 0xfff; |
| 682 | ether_addr_copy(entry->mac, mac); |
| 683 | |
| 684 | return 0; |
| 685 | } |
| 686 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 687 | int ocelot_fdb_dump(struct ocelot *ocelot, int port, |
| 688 | dsa_fdb_dump_cb_t *cb, void *data) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 689 | { |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 690 | int i, j; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 691 | |
Vladimir Oltean | 21ce7f3 | 2020-05-04 01:20:26 +0300 | [diff] [blame] | 692 | /* Loop through all the mac tables entries. */ |
| 693 | for (i = 0; i < ocelot->num_mact_rows; i++) { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 694 | for (j = 0; j < 4; j++) { |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 695 | struct ocelot_mact_entry entry; |
| 696 | bool is_static; |
| 697 | int ret; |
| 698 | |
| 699 | ret = ocelot_mact_read(ocelot, port, i, j, &entry); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 700 | /* If the entry is invalid (wrong port, invalid...), |
| 701 | * skip it. |
| 702 | */ |
| 703 | if (ret == -EINVAL) |
| 704 | continue; |
| 705 | else if (ret) |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 706 | return ret; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 707 | |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 708 | is_static = (entry.type == ENTRYTYPE_LOCKED); |
| 709 | |
| 710 | ret = cb(entry.mac, entry.vid, is_static, data); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 711 | if (ret) |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 712 | return ret; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 713 | } |
| 714 | } |
| 715 | |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 716 | return 0; |
| 717 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 718 | EXPORT_SYMBOL(ocelot_fdb_dump); |
Vladimir Oltean | 531ee1a | 2019-11-09 15:02:49 +0200 | [diff] [blame] | 719 | |
Yangbo Lu | f145922 | 2019-11-20 16:23:14 +0800 | [diff] [blame] | 720 | int ocelot_hwstamp_get(struct ocelot *ocelot, int port, struct ifreq *ifr) |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 721 | { |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 722 | return copy_to_user(ifr->ifr_data, &ocelot->hwtstamp_config, |
| 723 | sizeof(ocelot->hwtstamp_config)) ? -EFAULT : 0; |
| 724 | } |
Yangbo Lu | f145922 | 2019-11-20 16:23:14 +0800 | [diff] [blame] | 725 | EXPORT_SYMBOL(ocelot_hwstamp_get); |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 726 | |
Yangbo Lu | f145922 | 2019-11-20 16:23:14 +0800 | [diff] [blame] | 727 | int ocelot_hwstamp_set(struct ocelot *ocelot, int port, struct ifreq *ifr) |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 728 | { |
Vladimir Oltean | 306fd44 | 2019-11-09 15:02:50 +0200 | [diff] [blame] | 729 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 730 | struct hwtstamp_config cfg; |
| 731 | |
| 732 | if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg))) |
| 733 | return -EFAULT; |
| 734 | |
| 735 | /* reserved for future extensions */ |
| 736 | if (cfg.flags) |
| 737 | return -EINVAL; |
| 738 | |
| 739 | /* Tx type sanity check */ |
| 740 | switch (cfg.tx_type) { |
| 741 | case HWTSTAMP_TX_ON: |
Vladimir Oltean | 306fd44 | 2019-11-09 15:02:50 +0200 | [diff] [blame] | 742 | ocelot_port->ptp_cmd = IFH_REW_OP_TWO_STEP_PTP; |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 743 | break; |
| 744 | case HWTSTAMP_TX_ONESTEP_SYNC: |
| 745 | /* IFH_REW_OP_ONE_STEP_PTP updates the correctional field, we |
| 746 | * need to update the origin time. |
| 747 | */ |
Vladimir Oltean | 306fd44 | 2019-11-09 15:02:50 +0200 | [diff] [blame] | 748 | ocelot_port->ptp_cmd = IFH_REW_OP_ORIGIN_PTP; |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 749 | break; |
| 750 | case HWTSTAMP_TX_OFF: |
Vladimir Oltean | 306fd44 | 2019-11-09 15:02:50 +0200 | [diff] [blame] | 751 | ocelot_port->ptp_cmd = 0; |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 752 | break; |
| 753 | default: |
| 754 | return -ERANGE; |
| 755 | } |
| 756 | |
| 757 | mutex_lock(&ocelot->ptp_lock); |
| 758 | |
| 759 | switch (cfg.rx_filter) { |
| 760 | case HWTSTAMP_FILTER_NONE: |
| 761 | break; |
| 762 | case HWTSTAMP_FILTER_ALL: |
| 763 | case HWTSTAMP_FILTER_SOME: |
| 764 | case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: |
| 765 | case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: |
| 766 | case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: |
| 767 | case HWTSTAMP_FILTER_NTP_ALL: |
| 768 | case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: |
| 769 | case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: |
| 770 | case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: |
| 771 | case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: |
| 772 | case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: |
| 773 | case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: |
| 774 | case HWTSTAMP_FILTER_PTP_V2_EVENT: |
| 775 | case HWTSTAMP_FILTER_PTP_V2_SYNC: |
| 776 | case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: |
| 777 | cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT; |
| 778 | break; |
| 779 | default: |
| 780 | mutex_unlock(&ocelot->ptp_lock); |
| 781 | return -ERANGE; |
| 782 | } |
| 783 | |
| 784 | /* Commit back the result & save it */ |
| 785 | memcpy(&ocelot->hwtstamp_config, &cfg, sizeof(cfg)); |
| 786 | mutex_unlock(&ocelot->ptp_lock); |
| 787 | |
| 788 | return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0; |
| 789 | } |
Yangbo Lu | f145922 | 2019-11-20 16:23:14 +0800 | [diff] [blame] | 790 | EXPORT_SYMBOL(ocelot_hwstamp_set); |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 791 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 792 | void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 793 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 794 | int i; |
| 795 | |
| 796 | if (sset != ETH_SS_STATS) |
| 797 | return; |
| 798 | |
| 799 | for (i = 0; i < ocelot->num_stats; i++) |
| 800 | memcpy(data + i * ETH_GSTRING_LEN, ocelot->stats_layout[i].name, |
| 801 | ETH_GSTRING_LEN); |
| 802 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 803 | EXPORT_SYMBOL(ocelot_get_strings); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 804 | |
Claudiu Manoil | 1e1caa9 | 2019-04-16 17:51:59 +0300 | [diff] [blame] | 805 | static void ocelot_update_stats(struct ocelot *ocelot) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 806 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 807 | int i, j; |
| 808 | |
| 809 | mutex_lock(&ocelot->stats_lock); |
| 810 | |
| 811 | for (i = 0; i < ocelot->num_phys_ports; i++) { |
| 812 | /* Configure the port to read the stats from */ |
| 813 | ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(i), SYS_STAT_CFG); |
| 814 | |
| 815 | for (j = 0; j < ocelot->num_stats; j++) { |
| 816 | u32 val; |
| 817 | unsigned int idx = i * ocelot->num_stats + j; |
| 818 | |
| 819 | val = ocelot_read_rix(ocelot, SYS_COUNT_RX_OCTETS, |
| 820 | ocelot->stats_layout[j].offset); |
| 821 | |
| 822 | if (val < (ocelot->stats[idx] & U32_MAX)) |
| 823 | ocelot->stats[idx] += (u64)1 << 32; |
| 824 | |
| 825 | ocelot->stats[idx] = (ocelot->stats[idx] & |
| 826 | ~(u64)U32_MAX) + val; |
| 827 | } |
| 828 | } |
| 829 | |
Claudiu Manoil | 1e1caa9 | 2019-04-16 17:51:59 +0300 | [diff] [blame] | 830 | mutex_unlock(&ocelot->stats_lock); |
| 831 | } |
| 832 | |
| 833 | static void ocelot_check_stats_work(struct work_struct *work) |
| 834 | { |
| 835 | struct delayed_work *del_work = to_delayed_work(work); |
| 836 | struct ocelot *ocelot = container_of(del_work, struct ocelot, |
| 837 | stats_work); |
| 838 | |
| 839 | ocelot_update_stats(ocelot); |
| 840 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 841 | queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work, |
| 842 | OCELOT_STATS_CHECK_DELAY); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 843 | } |
| 844 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 845 | void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 846 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 847 | int i; |
| 848 | |
| 849 | /* check and update now */ |
Claudiu Manoil | 1e1caa9 | 2019-04-16 17:51:59 +0300 | [diff] [blame] | 850 | ocelot_update_stats(ocelot); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 851 | |
| 852 | /* Copy all counters */ |
| 853 | for (i = 0; i < ocelot->num_stats; i++) |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 854 | *data++ = ocelot->stats[port * ocelot->num_stats + i]; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 855 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 856 | EXPORT_SYMBOL(ocelot_get_ethtool_stats); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 857 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 858 | int ocelot_get_sset_count(struct ocelot *ocelot, int port, int sset) |
Vladimir Oltean | c7282d3 | 2019-11-09 15:02:54 +0200 | [diff] [blame] | 859 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 860 | if (sset != ETH_SS_STATS) |
| 861 | return -EOPNOTSUPP; |
Vladimir Oltean | c7282d3 | 2019-11-09 15:02:54 +0200 | [diff] [blame] | 862 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 863 | return ocelot->num_stats; |
| 864 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 865 | EXPORT_SYMBOL(ocelot_get_sset_count); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 866 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 867 | int ocelot_get_ts_info(struct ocelot *ocelot, int port, |
| 868 | struct ethtool_ts_info *info) |
Vladimir Oltean | c7282d3 | 2019-11-09 15:02:54 +0200 | [diff] [blame] | 869 | { |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 870 | info->phc_index = ocelot->ptp_clock ? |
| 871 | ptp_clock_index(ocelot->ptp_clock) : -1; |
Yangbo Lu | d2b09a8 | 2020-04-20 10:46:46 +0800 | [diff] [blame] | 872 | if (info->phc_index == -1) { |
| 873 | info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE | |
| 874 | SOF_TIMESTAMPING_RX_SOFTWARE | |
| 875 | SOF_TIMESTAMPING_SOFTWARE; |
| 876 | return 0; |
| 877 | } |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 878 | info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE | |
| 879 | SOF_TIMESTAMPING_RX_SOFTWARE | |
| 880 | SOF_TIMESTAMPING_SOFTWARE | |
| 881 | SOF_TIMESTAMPING_TX_HARDWARE | |
| 882 | SOF_TIMESTAMPING_RX_HARDWARE | |
| 883 | SOF_TIMESTAMPING_RAW_HARDWARE; |
| 884 | info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON) | |
| 885 | BIT(HWTSTAMP_TX_ONESTEP_SYNC); |
| 886 | info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | BIT(HWTSTAMP_FILTER_ALL); |
| 887 | |
| 888 | return 0; |
| 889 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 890 | EXPORT_SYMBOL(ocelot_get_ts_info); |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 891 | |
Vladimir Oltean | b80af65 | 2021-02-06 00:02:14 +0200 | [diff] [blame] | 892 | static u32 ocelot_get_bond_mask(struct ocelot *ocelot, struct net_device *bond) |
| 893 | { |
| 894 | u32 mask = 0; |
| 895 | int port; |
| 896 | |
| 897 | for (port = 0; port < ocelot->num_phys_ports; port++) { |
| 898 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 899 | |
| 900 | if (!ocelot_port) |
| 901 | continue; |
| 902 | |
| 903 | if (ocelot_port->bond == bond) |
| 904 | mask |= BIT(port); |
| 905 | } |
| 906 | |
| 907 | return mask; |
| 908 | } |
| 909 | |
Vladimir Oltean | e21268e | 2021-01-29 03:00:09 +0200 | [diff] [blame] | 910 | static u32 ocelot_get_dsa_8021q_cpu_mask(struct ocelot *ocelot) |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 911 | { |
Vladimir Oltean | e21268e | 2021-01-29 03:00:09 +0200 | [diff] [blame] | 912 | u32 mask = 0; |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 913 | int port; |
| 914 | |
Vladimir Oltean | e21268e | 2021-01-29 03:00:09 +0200 | [diff] [blame] | 915 | for (port = 0; port < ocelot->num_phys_ports; port++) { |
| 916 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 917 | |
| 918 | if (!ocelot_port) |
| 919 | continue; |
| 920 | |
| 921 | if (ocelot_port->is_dsa_8021q_cpu) |
| 922 | mask |= BIT(port); |
| 923 | } |
| 924 | |
| 925 | return mask; |
| 926 | } |
| 927 | |
| 928 | void ocelot_apply_bridge_fwd_mask(struct ocelot *ocelot) |
| 929 | { |
| 930 | unsigned long cpu_fwd_mask; |
| 931 | int port; |
| 932 | |
| 933 | /* If a DSA tag_8021q CPU exists, it needs to be included in the |
| 934 | * regular forwarding path of the front ports regardless of whether |
| 935 | * those are bridged or standalone. |
| 936 | * If DSA tag_8021q is not used, this returns 0, which is fine because |
| 937 | * the hardware-based CPU port module can be a destination for packets |
| 938 | * even if it isn't part of PGID_SRC. |
| 939 | */ |
| 940 | cpu_fwd_mask = ocelot_get_dsa_8021q_cpu_mask(ocelot); |
| 941 | |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 942 | /* Apply FWD mask. The loop is needed to add/remove the current port as |
| 943 | * a source for the other ports. |
| 944 | */ |
| 945 | for (port = 0; port < ocelot->num_phys_ports; port++) { |
Vladimir Oltean | e21268e | 2021-01-29 03:00:09 +0200 | [diff] [blame] | 946 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 947 | unsigned long mask; |
| 948 | |
| 949 | if (!ocelot_port) { |
| 950 | /* Unused ports can't send anywhere */ |
| 951 | mask = 0; |
| 952 | } else if (ocelot_port->is_dsa_8021q_cpu) { |
| 953 | /* The DSA tag_8021q CPU ports need to be able to |
| 954 | * forward packets to all other ports except for |
| 955 | * themselves |
| 956 | */ |
| 957 | mask = GENMASK(ocelot->num_phys_ports - 1, 0); |
| 958 | mask &= ~cpu_fwd_mask; |
| 959 | } else if (ocelot->bridge_fwd_mask & BIT(port)) { |
Vladimir Oltean | 528d3f1 | 2021-02-06 00:02:17 +0200 | [diff] [blame] | 960 | struct net_device *bond = ocelot_port->bond; |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 961 | |
Vladimir Oltean | e21268e | 2021-01-29 03:00:09 +0200 | [diff] [blame] | 962 | mask = ocelot->bridge_fwd_mask & ~BIT(port); |
Vladimir Oltean | 528d3f1 | 2021-02-06 00:02:17 +0200 | [diff] [blame] | 963 | if (bond) |
| 964 | mask &= ~ocelot_get_bond_mask(ocelot, bond); |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 965 | } else { |
Vladimir Oltean | e21268e | 2021-01-29 03:00:09 +0200 | [diff] [blame] | 966 | /* Standalone ports forward only to DSA tag_8021q CPU |
| 967 | * ports (if those exist), or to the hardware CPU port |
| 968 | * module otherwise. |
| 969 | */ |
| 970 | mask = cpu_fwd_mask; |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 971 | } |
Vladimir Oltean | e21268e | 2021-01-29 03:00:09 +0200 | [diff] [blame] | 972 | |
| 973 | ocelot_write_rix(ocelot, mask, ANA_PGID_PGID, PGID_SRC + port); |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 974 | } |
| 975 | } |
Vladimir Oltean | e21268e | 2021-01-29 03:00:09 +0200 | [diff] [blame] | 976 | EXPORT_SYMBOL(ocelot_apply_bridge_fwd_mask); |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 977 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 978 | void ocelot_bridge_stp_state_set(struct ocelot *ocelot, int port, u8 state) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 979 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 980 | u32 port_cfg; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 981 | |
Vladimir Oltean | 4bda141 | 2019-11-09 15:02:51 +0200 | [diff] [blame] | 982 | if (!(BIT(port) & ocelot->bridge_mask)) |
| 983 | return; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 984 | |
Vladimir Oltean | 4bda141 | 2019-11-09 15:02:51 +0200 | [diff] [blame] | 985 | port_cfg = ocelot_read_gix(ocelot, ANA_PORT_PORT_CFG, port); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 986 | |
| 987 | switch (state) { |
| 988 | case BR_STATE_FORWARDING: |
Vladimir Oltean | 4bda141 | 2019-11-09 15:02:51 +0200 | [diff] [blame] | 989 | ocelot->bridge_fwd_mask |= BIT(port); |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 990 | fallthrough; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 991 | case BR_STATE_LEARNING: |
| 992 | port_cfg |= ANA_PORT_PORT_CFG_LEARN_ENA; |
| 993 | break; |
| 994 | |
| 995 | default: |
| 996 | port_cfg &= ~ANA_PORT_PORT_CFG_LEARN_ENA; |
Vladimir Oltean | 4bda141 | 2019-11-09 15:02:51 +0200 | [diff] [blame] | 997 | ocelot->bridge_fwd_mask &= ~BIT(port); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 998 | break; |
| 999 | } |
| 1000 | |
Vladimir Oltean | 4bda141 | 2019-11-09 15:02:51 +0200 | [diff] [blame] | 1001 | ocelot_write_gix(ocelot, port_cfg, ANA_PORT_PORT_CFG, port); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1002 | |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 1003 | ocelot_apply_bridge_fwd_mask(ocelot); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1004 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1005 | EXPORT_SYMBOL(ocelot_bridge_stp_state_set); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1006 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1007 | void ocelot_set_ageing_time(struct ocelot *ocelot, unsigned int msecs) |
Vladimir Oltean | 4bda141 | 2019-11-09 15:02:51 +0200 | [diff] [blame] | 1008 | { |
Vladimir Oltean | c0d7ecc | 2020-05-04 01:20:27 +0300 | [diff] [blame] | 1009 | unsigned int age_period = ANA_AUTOAGE_AGE_PERIOD(msecs / 2000); |
| 1010 | |
| 1011 | /* Setting AGE_PERIOD to zero effectively disables automatic aging, |
| 1012 | * which is clearly not what our intention is. So avoid that. |
| 1013 | */ |
| 1014 | if (!age_period) |
| 1015 | age_period = 1; |
| 1016 | |
| 1017 | ocelot_rmw(ocelot, age_period, ANA_AUTOAGE_AGE_PERIOD_M, ANA_AUTOAGE); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1018 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1019 | EXPORT_SYMBOL(ocelot_set_ageing_time); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1020 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1021 | static struct ocelot_multicast *ocelot_multicast_get(struct ocelot *ocelot, |
| 1022 | const unsigned char *addr, |
| 1023 | u16 vid) |
| 1024 | { |
| 1025 | struct ocelot_multicast *mc; |
| 1026 | |
| 1027 | list_for_each_entry(mc, &ocelot->multicast, list) { |
| 1028 | if (ether_addr_equal(mc->addr, addr) && mc->vid == vid) |
| 1029 | return mc; |
| 1030 | } |
| 1031 | |
| 1032 | return NULL; |
| 1033 | } |
| 1034 | |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1035 | static enum macaccess_entry_type ocelot_classify_mdb(const unsigned char *addr) |
| 1036 | { |
| 1037 | if (addr[0] == 0x01 && addr[1] == 0x00 && addr[2] == 0x5e) |
| 1038 | return ENTRYTYPE_MACv4; |
| 1039 | if (addr[0] == 0x33 && addr[1] == 0x33) |
| 1040 | return ENTRYTYPE_MACv6; |
Vladimir Oltean | 7c31314 | 2020-10-29 04:27:34 +0200 | [diff] [blame] | 1041 | return ENTRYTYPE_LOCKED; |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1042 | } |
| 1043 | |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1044 | static struct ocelot_pgid *ocelot_pgid_alloc(struct ocelot *ocelot, int index, |
| 1045 | unsigned long ports) |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1046 | { |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1047 | struct ocelot_pgid *pgid; |
| 1048 | |
| 1049 | pgid = kzalloc(sizeof(*pgid), GFP_KERNEL); |
| 1050 | if (!pgid) |
| 1051 | return ERR_PTR(-ENOMEM); |
| 1052 | |
| 1053 | pgid->ports = ports; |
| 1054 | pgid->index = index; |
| 1055 | refcount_set(&pgid->refcount, 1); |
| 1056 | list_add_tail(&pgid->list, &ocelot->pgids); |
| 1057 | |
| 1058 | return pgid; |
| 1059 | } |
| 1060 | |
| 1061 | static void ocelot_pgid_free(struct ocelot *ocelot, struct ocelot_pgid *pgid) |
| 1062 | { |
| 1063 | if (!refcount_dec_and_test(&pgid->refcount)) |
| 1064 | return; |
| 1065 | |
| 1066 | list_del(&pgid->list); |
| 1067 | kfree(pgid); |
| 1068 | } |
| 1069 | |
| 1070 | static struct ocelot_pgid *ocelot_mdb_get_pgid(struct ocelot *ocelot, |
| 1071 | const struct ocelot_multicast *mc) |
| 1072 | { |
| 1073 | struct ocelot_pgid *pgid; |
| 1074 | int index; |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1075 | |
| 1076 | /* According to VSC7514 datasheet 3.9.1.5 IPv4 Multicast Entries and |
| 1077 | * 3.9.1.6 IPv6 Multicast Entries, "Instead of a lookup in the |
| 1078 | * destination mask table (PGID), the destination set is programmed as |
| 1079 | * part of the entry MAC address.", and the DEST_IDX is set to 0. |
| 1080 | */ |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1081 | if (mc->entry_type == ENTRYTYPE_MACv4 || |
| 1082 | mc->entry_type == ENTRYTYPE_MACv6) |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1083 | return ocelot_pgid_alloc(ocelot, 0, mc->ports); |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1084 | |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1085 | list_for_each_entry(pgid, &ocelot->pgids, list) { |
| 1086 | /* When searching for a nonreserved multicast PGID, ignore the |
| 1087 | * dummy PGID of zero that we have for MACv4/MACv6 entries |
| 1088 | */ |
| 1089 | if (pgid->index && pgid->ports == mc->ports) { |
| 1090 | refcount_inc(&pgid->refcount); |
| 1091 | return pgid; |
| 1092 | } |
| 1093 | } |
| 1094 | |
| 1095 | /* Search for a free index in the nonreserved multicast PGID area */ |
| 1096 | for_each_nonreserved_multicast_dest_pgid(ocelot, index) { |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1097 | bool used = false; |
| 1098 | |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1099 | list_for_each_entry(pgid, &ocelot->pgids, list) { |
| 1100 | if (pgid->index == index) { |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1101 | used = true; |
| 1102 | break; |
| 1103 | } |
| 1104 | } |
| 1105 | |
| 1106 | if (!used) |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1107 | return ocelot_pgid_alloc(ocelot, index, mc->ports); |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1108 | } |
| 1109 | |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1110 | return ERR_PTR(-ENOSPC); |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1111 | } |
| 1112 | |
| 1113 | static void ocelot_encode_ports_to_mdb(unsigned char *addr, |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1114 | struct ocelot_multicast *mc) |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1115 | { |
Vladimir Oltean | ebbd860 | 2020-10-29 04:27:35 +0200 | [diff] [blame] | 1116 | ether_addr_copy(addr, mc->addr); |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1117 | |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1118 | if (mc->entry_type == ENTRYTYPE_MACv4) { |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1119 | addr[0] = 0; |
| 1120 | addr[1] = mc->ports >> 8; |
| 1121 | addr[2] = mc->ports & 0xff; |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1122 | } else if (mc->entry_type == ENTRYTYPE_MACv6) { |
Vladimir Oltean | 9403c15 | 2020-06-21 14:46:03 +0300 | [diff] [blame] | 1123 | addr[0] = mc->ports >> 8; |
| 1124 | addr[1] = mc->ports & 0xff; |
| 1125 | } |
| 1126 | } |
| 1127 | |
Vladimir Oltean | 209edf9 | 2020-06-21 14:46:01 +0300 | [diff] [blame] | 1128 | int ocelot_port_mdb_add(struct ocelot *ocelot, int port, |
| 1129 | const struct switchdev_obj_port_mdb *mdb) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1130 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1131 | unsigned char addr[ETH_ALEN]; |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 1132 | struct ocelot_multicast *mc; |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1133 | struct ocelot_pgid *pgid; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1134 | u16 vid = mdb->vid; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1135 | |
Vladimir Oltean | 471beb1 | 2020-06-21 14:46:00 +0300 | [diff] [blame] | 1136 | if (port == ocelot->npi) |
| 1137 | port = ocelot->num_phys_ports; |
| 1138 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1139 | mc = ocelot_multicast_get(ocelot, mdb->addr, vid); |
| 1140 | if (!mc) { |
Vladimir Oltean | 728e69a | 2020-10-29 04:27:36 +0200 | [diff] [blame] | 1141 | /* New entry */ |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1142 | mc = devm_kzalloc(ocelot->dev, sizeof(*mc), GFP_KERNEL); |
| 1143 | if (!mc) |
| 1144 | return -ENOMEM; |
| 1145 | |
| 1146 | mc->entry_type = ocelot_classify_mdb(mdb->addr); |
| 1147 | ether_addr_copy(mc->addr, mdb->addr); |
| 1148 | mc->vid = vid; |
| 1149 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1150 | list_add_tail(&mc->list, &ocelot->multicast); |
Vladimir Oltean | 728e69a | 2020-10-29 04:27:36 +0200 | [diff] [blame] | 1151 | } else { |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1152 | /* Existing entry. Clean up the current port mask from |
| 1153 | * hardware now, because we'll be modifying it. |
| 1154 | */ |
| 1155 | ocelot_pgid_free(ocelot, mc->pgid); |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1156 | ocelot_encode_ports_to_mdb(addr, mc); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1157 | ocelot_mact_forget(ocelot, addr, vid); |
| 1158 | } |
| 1159 | |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 1160 | mc->ports |= BIT(port); |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1161 | |
| 1162 | pgid = ocelot_mdb_get_pgid(ocelot, mc); |
| 1163 | if (IS_ERR(pgid)) { |
| 1164 | dev_err(ocelot->dev, |
| 1165 | "Cannot allocate PGID for mdb %pM vid %d\n", |
| 1166 | mc->addr, mc->vid); |
| 1167 | devm_kfree(ocelot->dev, mc); |
| 1168 | return PTR_ERR(pgid); |
| 1169 | } |
| 1170 | mc->pgid = pgid; |
| 1171 | |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1172 | ocelot_encode_ports_to_mdb(addr, mc); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1173 | |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1174 | if (mc->entry_type != ENTRYTYPE_MACv4 && |
| 1175 | mc->entry_type != ENTRYTYPE_MACv6) |
| 1176 | ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID, |
| 1177 | pgid->index); |
| 1178 | |
| 1179 | return ocelot_mact_learn(ocelot, pgid->index, addr, vid, |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1180 | mc->entry_type); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1181 | } |
Vladimir Oltean | 209edf9 | 2020-06-21 14:46:01 +0300 | [diff] [blame] | 1182 | EXPORT_SYMBOL(ocelot_port_mdb_add); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1183 | |
Vladimir Oltean | 209edf9 | 2020-06-21 14:46:01 +0300 | [diff] [blame] | 1184 | int ocelot_port_mdb_del(struct ocelot *ocelot, int port, |
| 1185 | const struct switchdev_obj_port_mdb *mdb) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1186 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1187 | unsigned char addr[ETH_ALEN]; |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 1188 | struct ocelot_multicast *mc; |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1189 | struct ocelot_pgid *pgid; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1190 | u16 vid = mdb->vid; |
| 1191 | |
Vladimir Oltean | 471beb1 | 2020-06-21 14:46:00 +0300 | [diff] [blame] | 1192 | if (port == ocelot->npi) |
| 1193 | port = ocelot->num_phys_ports; |
| 1194 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1195 | mc = ocelot_multicast_get(ocelot, mdb->addr, vid); |
| 1196 | if (!mc) |
| 1197 | return -ENOENT; |
| 1198 | |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1199 | ocelot_encode_ports_to_mdb(addr, mc); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1200 | ocelot_mact_forget(ocelot, addr, vid); |
| 1201 | |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1202 | ocelot_pgid_free(ocelot, mc->pgid); |
Vladimir Oltean | 004d44f | 2019-11-09 15:02:53 +0200 | [diff] [blame] | 1203 | mc->ports &= ~BIT(port); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1204 | if (!mc->ports) { |
| 1205 | list_del(&mc->list); |
| 1206 | devm_kfree(ocelot->dev, mc); |
| 1207 | return 0; |
| 1208 | } |
| 1209 | |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1210 | /* We have a PGID with fewer ports now */ |
| 1211 | pgid = ocelot_mdb_get_pgid(ocelot, mc); |
| 1212 | if (IS_ERR(pgid)) |
| 1213 | return PTR_ERR(pgid); |
| 1214 | mc->pgid = pgid; |
| 1215 | |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1216 | ocelot_encode_ports_to_mdb(addr, mc); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1217 | |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1218 | if (mc->entry_type != ENTRYTYPE_MACv4 && |
| 1219 | mc->entry_type != ENTRYTYPE_MACv6) |
| 1220 | ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID, |
| 1221 | pgid->index); |
| 1222 | |
| 1223 | return ocelot_mact_learn(ocelot, pgid->index, addr, vid, |
Vladimir Oltean | bb8d53f | 2020-10-29 04:27:37 +0200 | [diff] [blame] | 1224 | mc->entry_type); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1225 | } |
Vladimir Oltean | 209edf9 | 2020-06-21 14:46:01 +0300 | [diff] [blame] | 1226 | EXPORT_SYMBOL(ocelot_port_mdb_del); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1227 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1228 | int ocelot_port_bridge_join(struct ocelot *ocelot, int port, |
| 1229 | struct net_device *bridge) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1230 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1231 | if (!ocelot->bridge_mask) { |
| 1232 | ocelot->hw_bridge_dev = bridge; |
| 1233 | } else { |
| 1234 | if (ocelot->hw_bridge_dev != bridge) |
| 1235 | /* This is adding the port to a second bridge, this is |
| 1236 | * unsupported */ |
| 1237 | return -ENODEV; |
| 1238 | } |
| 1239 | |
Vladimir Oltean | f270dbf | 2019-11-09 15:02:52 +0200 | [diff] [blame] | 1240 | ocelot->bridge_mask |= BIT(port); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1241 | |
| 1242 | return 0; |
| 1243 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1244 | EXPORT_SYMBOL(ocelot_port_bridge_join); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1245 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1246 | int ocelot_port_bridge_leave(struct ocelot *ocelot, int port, |
| 1247 | struct net_device *bridge) |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1248 | { |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 1249 | struct ocelot_vlan pvid = {0}, native_vlan = {0}; |
Vladimir Oltean | 2e554a7 | 2020-10-03 01:06:46 +0300 | [diff] [blame] | 1250 | int ret; |
| 1251 | |
Vladimir Oltean | 97bb69e | 2019-11-09 15:02:47 +0200 | [diff] [blame] | 1252 | ocelot->bridge_mask &= ~BIT(port); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1253 | |
| 1254 | if (!ocelot->bridge_mask) |
| 1255 | ocelot->hw_bridge_dev = NULL; |
Antoine Tenart | 7142529 | 2018-06-26 14:28:49 +0200 | [diff] [blame] | 1256 | |
Vladimir Oltean | bae33f2 | 2021-01-09 02:01:50 +0200 | [diff] [blame] | 1257 | ret = ocelot_port_vlan_filtering(ocelot, port, false); |
Vladimir Oltean | 2e554a7 | 2020-10-03 01:06:46 +0300 | [diff] [blame] | 1258 | if (ret) |
| 1259 | return ret; |
| 1260 | |
Vladimir Oltean | c3e58a75 | 2020-10-31 12:29:12 +0200 | [diff] [blame] | 1261 | ocelot_port_set_pvid(ocelot, port, pvid); |
Vladimir Oltean | 2f0402f | 2020-10-31 12:29:15 +0200 | [diff] [blame] | 1262 | ocelot_port_set_native_vlan(ocelot, port, native_vlan); |
| 1263 | |
| 1264 | return 0; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1265 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1266 | EXPORT_SYMBOL(ocelot_port_bridge_leave); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1267 | |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1268 | static void ocelot_set_aggr_pgids(struct ocelot *ocelot) |
| 1269 | { |
Vladimir Oltean | 528d3f1 | 2021-02-06 00:02:17 +0200 | [diff] [blame] | 1270 | unsigned long visited = GENMASK(ocelot->num_phys_ports - 1, 0); |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1271 | int i, port, lag; |
| 1272 | |
| 1273 | /* Reset destination and aggregation PGIDS */ |
Vladimir Oltean | 96b029b | 2020-06-21 14:46:02 +0300 | [diff] [blame] | 1274 | for_each_unicast_dest_pgid(ocelot, port) |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1275 | ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port); |
| 1276 | |
Vladimir Oltean | 96b029b | 2020-06-21 14:46:02 +0300 | [diff] [blame] | 1277 | for_each_aggr_pgid(ocelot, i) |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1278 | ocelot_write_rix(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0), |
| 1279 | ANA_PGID_PGID, i); |
| 1280 | |
Vladimir Oltean | 528d3f1 | 2021-02-06 00:02:17 +0200 | [diff] [blame] | 1281 | /* The visited ports bitmask holds the list of ports offloading any |
| 1282 | * bonding interface. Initially we mark all these ports as unvisited, |
| 1283 | * then every time we visit a port in this bitmask, we know that it is |
| 1284 | * the lowest numbered port, i.e. the one whose logical ID == physical |
| 1285 | * port ID == LAG ID. So we mark as visited all further ports in the |
| 1286 | * bitmask that are offloading the same bonding interface. This way, |
| 1287 | * we set up the aggregation PGIDs only once per bonding interface. |
| 1288 | */ |
| 1289 | for (port = 0; port < ocelot->num_phys_ports; port++) { |
| 1290 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 1291 | |
| 1292 | if (!ocelot_port || !ocelot_port->bond) |
| 1293 | continue; |
| 1294 | |
| 1295 | visited &= ~BIT(port); |
| 1296 | } |
| 1297 | |
| 1298 | /* Now, set PGIDs for each active LAG */ |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1299 | for (lag = 0; lag < ocelot->num_phys_ports; lag++) { |
Vladimir Oltean | 528d3f1 | 2021-02-06 00:02:17 +0200 | [diff] [blame] | 1300 | struct net_device *bond = ocelot->ports[lag]->bond; |
Vladimir Oltean | 21357b6 | 2021-02-06 00:02:18 +0200 | [diff] [blame^] | 1301 | int num_ports_in_lag = 0; |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1302 | unsigned long bond_mask; |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1303 | u8 aggr_idx[16]; |
| 1304 | |
Vladimir Oltean | 528d3f1 | 2021-02-06 00:02:17 +0200 | [diff] [blame] | 1305 | if (!bond || (visited & BIT(lag))) |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1306 | continue; |
| 1307 | |
Vladimir Oltean | 528d3f1 | 2021-02-06 00:02:17 +0200 | [diff] [blame] | 1308 | bond_mask = ocelot_get_bond_mask(ocelot, bond); |
| 1309 | |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1310 | for_each_set_bit(port, &bond_mask, ocelot->num_phys_ports) { |
| 1311 | // Destination mask |
| 1312 | ocelot_write_rix(ocelot, bond_mask, |
| 1313 | ANA_PGID_PGID, port); |
Vladimir Oltean | 21357b6 | 2021-02-06 00:02:18 +0200 | [diff] [blame^] | 1314 | aggr_idx[num_ports_in_lag++] = port; |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1315 | } |
| 1316 | |
Vladimir Oltean | 96b029b | 2020-06-21 14:46:02 +0300 | [diff] [blame] | 1317 | for_each_aggr_pgid(ocelot, i) { |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1318 | u32 ac; |
| 1319 | |
| 1320 | ac = ocelot_read_rix(ocelot, ANA_PGID_PGID, i); |
| 1321 | ac &= ~bond_mask; |
Vladimir Oltean | 21357b6 | 2021-02-06 00:02:18 +0200 | [diff] [blame^] | 1322 | ac |= BIT(aggr_idx[i % num_ports_in_lag]); |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1323 | ocelot_write_rix(ocelot, ac, ANA_PGID_PGID, i); |
| 1324 | } |
Vladimir Oltean | 528d3f1 | 2021-02-06 00:02:17 +0200 | [diff] [blame] | 1325 | |
| 1326 | /* Mark all ports in the same LAG as visited to avoid applying |
| 1327 | * the same config again. |
| 1328 | */ |
| 1329 | for (port = lag; port < ocelot->num_phys_ports; port++) { |
| 1330 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 1331 | |
| 1332 | if (!ocelot_port) |
| 1333 | continue; |
| 1334 | |
| 1335 | if (ocelot_port->bond == bond) |
| 1336 | visited |= BIT(port); |
| 1337 | } |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1338 | } |
| 1339 | } |
| 1340 | |
Vladimir Oltean | 2527f2e | 2021-02-06 00:02:16 +0200 | [diff] [blame] | 1341 | /* When offloading a bonding interface, the switch ports configured under the |
| 1342 | * same bond must have the same logical port ID, equal to the physical port ID |
| 1343 | * of the lowest numbered physical port in that bond. Otherwise, in standalone/ |
| 1344 | * bridged mode, each port has a logical port ID equal to its physical port ID. |
| 1345 | */ |
| 1346 | static void ocelot_setup_logical_port_ids(struct ocelot *ocelot) |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1347 | { |
Vladimir Oltean | 2527f2e | 2021-02-06 00:02:16 +0200 | [diff] [blame] | 1348 | int port; |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1349 | |
Vladimir Oltean | 2527f2e | 2021-02-06 00:02:16 +0200 | [diff] [blame] | 1350 | for (port = 0; port < ocelot->num_phys_ports; port++) { |
| 1351 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 1352 | struct net_device *bond; |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1353 | |
Vladimir Oltean | 2527f2e | 2021-02-06 00:02:16 +0200 | [diff] [blame] | 1354 | if (!ocelot_port) |
| 1355 | continue; |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1356 | |
Vladimir Oltean | 2527f2e | 2021-02-06 00:02:16 +0200 | [diff] [blame] | 1357 | bond = ocelot_port->bond; |
| 1358 | if (bond) { |
| 1359 | int lag = __ffs(ocelot_get_bond_mask(ocelot, bond)); |
| 1360 | |
| 1361 | ocelot_rmw_gix(ocelot, |
| 1362 | ANA_PORT_PORT_CFG_PORTID_VAL(lag), |
| 1363 | ANA_PORT_PORT_CFG_PORTID_VAL_M, |
| 1364 | ANA_PORT_PORT_CFG, port); |
| 1365 | } else { |
| 1366 | ocelot_rmw_gix(ocelot, |
| 1367 | ANA_PORT_PORT_CFG_PORTID_VAL(port), |
| 1368 | ANA_PORT_PORT_CFG_PORTID_VAL_M, |
| 1369 | ANA_PORT_PORT_CFG, port); |
| 1370 | } |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1371 | } |
| 1372 | } |
| 1373 | |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 1374 | int ocelot_port_lag_join(struct ocelot *ocelot, int port, |
Vladimir Oltean | 583cbbe | 2021-02-06 00:02:12 +0200 | [diff] [blame] | 1375 | struct net_device *bond, |
| 1376 | struct netdev_lag_upper_info *info) |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1377 | { |
Vladimir Oltean | 583cbbe | 2021-02-06 00:02:12 +0200 | [diff] [blame] | 1378 | if (info->tx_type != NETDEV_LAG_TX_TYPE_HASH) |
| 1379 | return -EOPNOTSUPP; |
| 1380 | |
Vladimir Oltean | b80af65 | 2021-02-06 00:02:14 +0200 | [diff] [blame] | 1381 | ocelot->ports[port]->bond = bond; |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1382 | |
Vladimir Oltean | 2527f2e | 2021-02-06 00:02:16 +0200 | [diff] [blame] | 1383 | ocelot_setup_logical_port_ids(ocelot); |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 1384 | ocelot_apply_bridge_fwd_mask(ocelot); |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1385 | ocelot_set_aggr_pgids(ocelot); |
| 1386 | |
| 1387 | return 0; |
| 1388 | } |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 1389 | EXPORT_SYMBOL(ocelot_port_lag_join); |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1390 | |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 1391 | void ocelot_port_lag_leave(struct ocelot *ocelot, int port, |
| 1392 | struct net_device *bond) |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1393 | { |
Vladimir Oltean | b80af65 | 2021-02-06 00:02:14 +0200 | [diff] [blame] | 1394 | ocelot->ports[port]->bond = NULL; |
| 1395 | |
Vladimir Oltean | 2527f2e | 2021-02-06 00:02:16 +0200 | [diff] [blame] | 1396 | ocelot_setup_logical_port_ids(ocelot); |
Vladimir Oltean | 9b52125 | 2021-01-29 03:00:02 +0200 | [diff] [blame] | 1397 | ocelot_apply_bridge_fwd_mask(ocelot); |
Alexandre Belloni | dc96ee3 | 2018-06-26 14:28:48 +0200 | [diff] [blame] | 1398 | ocelot_set_aggr_pgids(ocelot); |
| 1399 | } |
Vladimir Oltean | 9c90eea | 2020-06-20 18:43:44 +0300 | [diff] [blame] | 1400 | EXPORT_SYMBOL(ocelot_port_lag_leave); |
Petr Machata | 0e332c8 | 2018-11-22 23:30:11 +0000 | [diff] [blame] | 1401 | |
Vladimir Oltean | a8015de | 2020-03-10 03:28:18 +0200 | [diff] [blame] | 1402 | /* Configure the maximum SDU (L2 payload) on RX to the value specified in @sdu. |
| 1403 | * The length of VLAN tags is accounted for automatically via DEV_MAC_TAGS_CFG. |
Vladimir Oltean | 0b912fc | 2020-03-27 21:55:47 +0200 | [diff] [blame] | 1404 | * In the special case that it's the NPI port that we're configuring, the |
| 1405 | * length of the tag and optional prefix needs to be accounted for privately, |
| 1406 | * in order to be able to sustain communication at the requested @sdu. |
Vladimir Oltean | a8015de | 2020-03-10 03:28:18 +0200 | [diff] [blame] | 1407 | */ |
Vladimir Oltean | 0b912fc | 2020-03-27 21:55:47 +0200 | [diff] [blame] | 1408 | void ocelot_port_set_maxlen(struct ocelot *ocelot, int port, size_t sdu) |
Vladimir Oltean | 31350d7 | 2019-11-09 15:02:56 +0200 | [diff] [blame] | 1409 | { |
| 1410 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
Vladimir Oltean | a8015de | 2020-03-10 03:28:18 +0200 | [diff] [blame] | 1411 | int maxlen = sdu + ETH_HLEN + ETH_FCS_LEN; |
Vladimir Oltean | e8e6e73 | 2020-07-13 19:57:05 +0300 | [diff] [blame] | 1412 | int pause_start, pause_stop; |
Vladimir Oltean | 601e984 | 2020-10-05 12:09:11 +0300 | [diff] [blame] | 1413 | int atop, atop_tot; |
Vladimir Oltean | 31350d7 | 2019-11-09 15:02:56 +0200 | [diff] [blame] | 1414 | |
Vladimir Oltean | 0b912fc | 2020-03-27 21:55:47 +0200 | [diff] [blame] | 1415 | if (port == ocelot->npi) { |
| 1416 | maxlen += OCELOT_TAG_LEN; |
| 1417 | |
Vladimir Oltean | cacea62 | 2021-01-29 03:00:03 +0200 | [diff] [blame] | 1418 | if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT) |
Vladimir Oltean | 0b912fc | 2020-03-27 21:55:47 +0200 | [diff] [blame] | 1419 | maxlen += OCELOT_SHORT_PREFIX_LEN; |
Vladimir Oltean | cacea62 | 2021-01-29 03:00:03 +0200 | [diff] [blame] | 1420 | else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG) |
Vladimir Oltean | 0b912fc | 2020-03-27 21:55:47 +0200 | [diff] [blame] | 1421 | maxlen += OCELOT_LONG_PREFIX_LEN; |
| 1422 | } |
| 1423 | |
Vladimir Oltean | a8015de | 2020-03-10 03:28:18 +0200 | [diff] [blame] | 1424 | ocelot_port_writel(ocelot_port, maxlen, DEV_MAC_MAXLEN_CFG); |
Vladimir Oltean | fa914e9 | 2019-11-14 17:03:23 +0200 | [diff] [blame] | 1425 | |
Vladimir Oltean | e8e6e73 | 2020-07-13 19:57:05 +0300 | [diff] [blame] | 1426 | /* Set Pause watermark hysteresis */ |
| 1427 | pause_start = 6 * maxlen / OCELOT_BUFFER_CELL_SZ; |
| 1428 | pause_stop = 4 * maxlen / OCELOT_BUFFER_CELL_SZ; |
Maxim Kochetkov | 541132f | 2020-07-13 19:57:07 +0300 | [diff] [blame] | 1429 | ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_START, |
| 1430 | pause_start); |
| 1431 | ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_STOP, |
| 1432 | pause_stop); |
Vladimir Oltean | fa914e9 | 2019-11-14 17:03:23 +0200 | [diff] [blame] | 1433 | |
Vladimir Oltean | 601e984 | 2020-10-05 12:09:11 +0300 | [diff] [blame] | 1434 | /* Tail dropping watermarks */ |
Vladimir Oltean | f6fe01d | 2021-01-15 04:11:11 +0200 | [diff] [blame] | 1435 | atop_tot = (ocelot->packet_buffer_size - 9 * maxlen) / |
Vladimir Oltean | a8015de | 2020-03-10 03:28:18 +0200 | [diff] [blame] | 1436 | OCELOT_BUFFER_CELL_SZ; |
Vladimir Oltean | 601e984 | 2020-10-05 12:09:11 +0300 | [diff] [blame] | 1437 | atop = (9 * maxlen) / OCELOT_BUFFER_CELL_SZ; |
| 1438 | ocelot_write_rix(ocelot, ocelot->ops->wm_enc(atop), SYS_ATOP, port); |
| 1439 | ocelot_write(ocelot, ocelot->ops->wm_enc(atop_tot), SYS_ATOP_TOT_CFG); |
Vladimir Oltean | fa914e9 | 2019-11-14 17:03:23 +0200 | [diff] [blame] | 1440 | } |
Vladimir Oltean | 0b912fc | 2020-03-27 21:55:47 +0200 | [diff] [blame] | 1441 | EXPORT_SYMBOL(ocelot_port_set_maxlen); |
| 1442 | |
| 1443 | int ocelot_get_max_mtu(struct ocelot *ocelot, int port) |
| 1444 | { |
| 1445 | int max_mtu = 65535 - ETH_HLEN - ETH_FCS_LEN; |
| 1446 | |
| 1447 | if (port == ocelot->npi) { |
| 1448 | max_mtu -= OCELOT_TAG_LEN; |
| 1449 | |
Vladimir Oltean | cacea62 | 2021-01-29 03:00:03 +0200 | [diff] [blame] | 1450 | if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT) |
Vladimir Oltean | 0b912fc | 2020-03-27 21:55:47 +0200 | [diff] [blame] | 1451 | max_mtu -= OCELOT_SHORT_PREFIX_LEN; |
Vladimir Oltean | cacea62 | 2021-01-29 03:00:03 +0200 | [diff] [blame] | 1452 | else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG) |
Vladimir Oltean | 0b912fc | 2020-03-27 21:55:47 +0200 | [diff] [blame] | 1453 | max_mtu -= OCELOT_LONG_PREFIX_LEN; |
| 1454 | } |
| 1455 | |
| 1456 | return max_mtu; |
| 1457 | } |
| 1458 | EXPORT_SYMBOL(ocelot_get_max_mtu); |
Vladimir Oltean | fa914e9 | 2019-11-14 17:03:23 +0200 | [diff] [blame] | 1459 | |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1460 | void ocelot_init_port(struct ocelot *ocelot, int port) |
Vladimir Oltean | fa914e9 | 2019-11-14 17:03:23 +0200 | [diff] [blame] | 1461 | { |
| 1462 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 1463 | |
Yangbo Lu | b049da1 | 2019-11-27 15:27:57 +0800 | [diff] [blame] | 1464 | skb_queue_head_init(&ocelot_port->tx_skbs); |
Vladimir Oltean | 6565243 | 2020-09-18 04:07:24 +0300 | [diff] [blame] | 1465 | spin_lock_init(&ocelot_port->ts_id_lock); |
Vladimir Oltean | 31350d7 | 2019-11-09 15:02:56 +0200 | [diff] [blame] | 1466 | |
| 1467 | /* Basic L2 initialization */ |
| 1468 | |
Vladimir Oltean | 5bc9d2e | 2019-11-14 17:03:22 +0200 | [diff] [blame] | 1469 | /* Set MAC IFG Gaps |
| 1470 | * FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 0 |
| 1471 | * !FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 5 |
| 1472 | */ |
| 1473 | ocelot_port_writel(ocelot_port, DEV_MAC_IFG_CFG_TX_IFG(5), |
| 1474 | DEV_MAC_IFG_CFG); |
| 1475 | |
| 1476 | /* Load seed (0) and set MAC HDX late collision */ |
| 1477 | ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67) | |
| 1478 | DEV_MAC_HDX_CFG_SEED_LOAD, |
| 1479 | DEV_MAC_HDX_CFG); |
| 1480 | mdelay(1); |
| 1481 | ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67), |
| 1482 | DEV_MAC_HDX_CFG); |
| 1483 | |
| 1484 | /* Set Max Length and maximum tags allowed */ |
Vladimir Oltean | a8015de | 2020-03-10 03:28:18 +0200 | [diff] [blame] | 1485 | ocelot_port_set_maxlen(ocelot, port, ETH_DATA_LEN); |
Vladimir Oltean | 5bc9d2e | 2019-11-14 17:03:22 +0200 | [diff] [blame] | 1486 | ocelot_port_writel(ocelot_port, DEV_MAC_TAGS_CFG_TAG_ID(ETH_P_8021AD) | |
| 1487 | DEV_MAC_TAGS_CFG_VLAN_AWR_ENA | |
Vladimir Oltean | a8015de | 2020-03-10 03:28:18 +0200 | [diff] [blame] | 1488 | DEV_MAC_TAGS_CFG_VLAN_DBL_AWR_ENA | |
Vladimir Oltean | 5bc9d2e | 2019-11-14 17:03:22 +0200 | [diff] [blame] | 1489 | DEV_MAC_TAGS_CFG_VLAN_LEN_AWR_ENA, |
| 1490 | DEV_MAC_TAGS_CFG); |
| 1491 | |
| 1492 | /* Set SMAC of Pause frame (00:00:00:00:00:00) */ |
| 1493 | ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_HIGH_CFG); |
| 1494 | ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_LOW_CFG); |
| 1495 | |
Vladimir Oltean | e8e6e73 | 2020-07-13 19:57:05 +0300 | [diff] [blame] | 1496 | /* Enable transmission of pause frames */ |
Maxim Kochetkov | 541132f | 2020-07-13 19:57:07 +0300 | [diff] [blame] | 1497 | ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 1); |
Vladimir Oltean | e8e6e73 | 2020-07-13 19:57:05 +0300 | [diff] [blame] | 1498 | |
Vladimir Oltean | 31350d7 | 2019-11-09 15:02:56 +0200 | [diff] [blame] | 1499 | /* Drop frames with multicast source address */ |
| 1500 | ocelot_rmw_gix(ocelot, ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA, |
| 1501 | ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA, |
| 1502 | ANA_PORT_DROP_CFG, port); |
| 1503 | |
| 1504 | /* Set default VLAN and tag type to 8021Q. */ |
| 1505 | ocelot_rmw_gix(ocelot, REW_PORT_VLAN_CFG_PORT_TPID(ETH_P_8021Q), |
| 1506 | REW_PORT_VLAN_CFG_PORT_TPID_M, |
| 1507 | REW_PORT_VLAN_CFG, port); |
| 1508 | |
| 1509 | /* Enable vcap lookups */ |
| 1510 | ocelot_vcap_enable(ocelot, port); |
| 1511 | } |
Vladimir Oltean | 5e25636 | 2019-11-14 17:03:27 +0200 | [diff] [blame] | 1512 | EXPORT_SYMBOL(ocelot_init_port); |
Vladimir Oltean | 31350d7 | 2019-11-09 15:02:56 +0200 | [diff] [blame] | 1513 | |
Vladimir Oltean | 2d44b09 | 2020-09-26 22:32:01 +0300 | [diff] [blame] | 1514 | /* Configure and enable the CPU port module, which is a set of queues |
| 1515 | * accessible through register MMIO, frame DMA or Ethernet (in case |
| 1516 | * NPI mode is used). |
Vladimir Oltean | 69df578 | 2020-02-29 16:50:02 +0200 | [diff] [blame] | 1517 | */ |
Vladimir Oltean | 2d44b09 | 2020-09-26 22:32:01 +0300 | [diff] [blame] | 1518 | static void ocelot_cpu_port_init(struct ocelot *ocelot) |
Vladimir Oltean | 2146819 | 2019-11-09 15:03:00 +0200 | [diff] [blame] | 1519 | { |
Vladimir Oltean | 69df578 | 2020-02-29 16:50:02 +0200 | [diff] [blame] | 1520 | int cpu = ocelot->num_phys_ports; |
| 1521 | |
| 1522 | /* The unicast destination PGID for the CPU port module is unused */ |
Vladimir Oltean | 2146819 | 2019-11-09 15:03:00 +0200 | [diff] [blame] | 1523 | ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, cpu); |
Vladimir Oltean | 69df578 | 2020-02-29 16:50:02 +0200 | [diff] [blame] | 1524 | /* Instead set up a multicast destination PGID for traffic copied to |
| 1525 | * the CPU. Whitelisted MAC addresses like the port netdevice MAC |
| 1526 | * addresses will be copied to the CPU via this PGID. |
| 1527 | */ |
Vladimir Oltean | 2146819 | 2019-11-09 15:03:00 +0200 | [diff] [blame] | 1528 | ocelot_write_rix(ocelot, BIT(cpu), ANA_PGID_PGID, PGID_CPU); |
| 1529 | ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_RECV_ENA | |
| 1530 | ANA_PORT_PORT_CFG_PORTID_VAL(cpu), |
| 1531 | ANA_PORT_PORT_CFG, cpu); |
| 1532 | |
Vladimir Oltean | 69df578 | 2020-02-29 16:50:02 +0200 | [diff] [blame] | 1533 | /* Enable CPU port module */ |
Vladimir Oltean | 886e138 | 2020-07-13 19:57:03 +0300 | [diff] [blame] | 1534 | ocelot_fields_write(ocelot, cpu, QSYS_SWITCH_PORT_MODE_PORT_ENA, 1); |
Vladimir Oltean | 69df578 | 2020-02-29 16:50:02 +0200 | [diff] [blame] | 1535 | /* CPU port Injection/Extraction configuration */ |
Vladimir Oltean | 886e138 | 2020-07-13 19:57:03 +0300 | [diff] [blame] | 1536 | ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_XTR_HDR, |
Vladimir Oltean | cacea62 | 2021-01-29 03:00:03 +0200 | [diff] [blame] | 1537 | OCELOT_TAG_PREFIX_NONE); |
Vladimir Oltean | 886e138 | 2020-07-13 19:57:03 +0300 | [diff] [blame] | 1538 | ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_INJ_HDR, |
Vladimir Oltean | cacea62 | 2021-01-29 03:00:03 +0200 | [diff] [blame] | 1539 | OCELOT_TAG_PREFIX_NONE); |
Vladimir Oltean | 2146819 | 2019-11-09 15:03:00 +0200 | [diff] [blame] | 1540 | |
| 1541 | /* Configure the CPU port to be VLAN aware */ |
| 1542 | ocelot_write_gix(ocelot, ANA_PORT_VLAN_CFG_VLAN_VID(0) | |
| 1543 | ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA | |
| 1544 | ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1), |
| 1545 | ANA_PORT_VLAN_CFG, cpu); |
Vladimir Oltean | 2146819 | 2019-11-09 15:03:00 +0200 | [diff] [blame] | 1546 | } |
Vladimir Oltean | 2146819 | 2019-11-09 15:03:00 +0200 | [diff] [blame] | 1547 | |
Vladimir Oltean | f6fe01d | 2021-01-15 04:11:11 +0200 | [diff] [blame] | 1548 | static void ocelot_detect_features(struct ocelot *ocelot) |
| 1549 | { |
| 1550 | int mmgt, eq_ctrl; |
| 1551 | |
| 1552 | /* For Ocelot, Felix, Seville, Serval etc, SYS:MMGT:MMGT:FREECNT holds |
| 1553 | * the number of 240-byte free memory words (aka 4-cell chunks) and not |
| 1554 | * 192 bytes as the documentation incorrectly says. |
| 1555 | */ |
| 1556 | mmgt = ocelot_read(ocelot, SYS_MMGT); |
| 1557 | ocelot->packet_buffer_size = 240 * SYS_MMGT_FREECNT(mmgt); |
| 1558 | |
| 1559 | eq_ctrl = ocelot_read(ocelot, QSYS_EQ_CTRL); |
| 1560 | ocelot->num_frame_refs = QSYS_MMGT_EQ_CTRL_FP_FREE_CNT(eq_ctrl); |
Vladimir Oltean | f6fe01d | 2021-01-15 04:11:11 +0200 | [diff] [blame] | 1561 | } |
| 1562 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1563 | int ocelot_init(struct ocelot *ocelot) |
| 1564 | { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1565 | char queue_name[32]; |
Vladimir Oltean | 2146819 | 2019-11-09 15:03:00 +0200 | [diff] [blame] | 1566 | int i, ret; |
| 1567 | u32 port; |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1568 | |
Vladimir Oltean | 3a77b59 | 2019-11-14 17:03:26 +0200 | [diff] [blame] | 1569 | if (ocelot->ops->reset) { |
| 1570 | ret = ocelot->ops->reset(ocelot); |
| 1571 | if (ret) { |
| 1572 | dev_err(ocelot->dev, "Switch reset failed\n"); |
| 1573 | return ret; |
| 1574 | } |
| 1575 | } |
| 1576 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1577 | ocelot->stats = devm_kcalloc(ocelot->dev, |
| 1578 | ocelot->num_phys_ports * ocelot->num_stats, |
| 1579 | sizeof(u64), GFP_KERNEL); |
| 1580 | if (!ocelot->stats) |
| 1581 | return -ENOMEM; |
| 1582 | |
| 1583 | mutex_init(&ocelot->stats_lock); |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 1584 | mutex_init(&ocelot->ptp_lock); |
| 1585 | spin_lock_init(&ocelot->ptp_clock_lock); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1586 | snprintf(queue_name, sizeof(queue_name), "%s-stats", |
| 1587 | dev_name(ocelot->dev)); |
| 1588 | ocelot->stats_queue = create_singlethread_workqueue(queue_name); |
| 1589 | if (!ocelot->stats_queue) |
| 1590 | return -ENOMEM; |
| 1591 | |
Vladimir Oltean | ca0b272 | 2020-12-12 21:16:12 +0200 | [diff] [blame] | 1592 | ocelot->owq = alloc_ordered_workqueue("ocelot-owq", 0); |
| 1593 | if (!ocelot->owq) { |
| 1594 | destroy_workqueue(ocelot->stats_queue); |
| 1595 | return -ENOMEM; |
| 1596 | } |
| 1597 | |
Claudiu Manoil | 2b120dd | 2019-11-09 15:02:58 +0200 | [diff] [blame] | 1598 | INIT_LIST_HEAD(&ocelot->multicast); |
Vladimir Oltean | e5d1f89 | 2020-10-29 04:27:38 +0200 | [diff] [blame] | 1599 | INIT_LIST_HEAD(&ocelot->pgids); |
Vladimir Oltean | f6fe01d | 2021-01-15 04:11:11 +0200 | [diff] [blame] | 1600 | ocelot_detect_features(ocelot); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1601 | ocelot_mact_init(ocelot); |
| 1602 | ocelot_vlan_init(ocelot); |
Vladimir Oltean | aae4e50 | 2020-06-20 18:43:46 +0300 | [diff] [blame] | 1603 | ocelot_vcap_init(ocelot); |
Vladimir Oltean | 2d44b09 | 2020-09-26 22:32:01 +0300 | [diff] [blame] | 1604 | ocelot_cpu_port_init(ocelot); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1605 | |
| 1606 | for (port = 0; port < ocelot->num_phys_ports; port++) { |
| 1607 | /* Clear all counters (5 groups) */ |
| 1608 | ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port) | |
| 1609 | SYS_STAT_CFG_STAT_CLEAR_SHOT(0x7f), |
| 1610 | SYS_STAT_CFG); |
| 1611 | } |
| 1612 | |
| 1613 | /* Only use S-Tag */ |
| 1614 | ocelot_write(ocelot, ETH_P_8021AD, SYS_VLAN_ETYPE_CFG); |
| 1615 | |
| 1616 | /* Aggregation mode */ |
| 1617 | ocelot_write(ocelot, ANA_AGGR_CFG_AC_SMAC_ENA | |
| 1618 | ANA_AGGR_CFG_AC_DMAC_ENA | |
| 1619 | ANA_AGGR_CFG_AC_IP4_SIPDIP_ENA | |
Vladimir Oltean | f79c20c | 2021-02-06 00:02:13 +0200 | [diff] [blame] | 1620 | ANA_AGGR_CFG_AC_IP4_TCPUDP_ENA | |
| 1621 | ANA_AGGR_CFG_AC_IP6_FLOW_LBL_ENA | |
| 1622 | ANA_AGGR_CFG_AC_IP6_TCPUDP_ENA, |
| 1623 | ANA_AGGR_CFG); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1624 | |
| 1625 | /* Set MAC age time to default value. The entry is aged after |
| 1626 | * 2*AGE_PERIOD |
| 1627 | */ |
| 1628 | ocelot_write(ocelot, |
| 1629 | ANA_AUTOAGE_AGE_PERIOD(BR_DEFAULT_AGEING_TIME / 2 / HZ), |
| 1630 | ANA_AUTOAGE); |
| 1631 | |
| 1632 | /* Disable learning for frames discarded by VLAN ingress filtering */ |
| 1633 | regmap_field_write(ocelot->regfields[ANA_ADVLEARN_VLAN_CHK], 1); |
| 1634 | |
| 1635 | /* Setup frame ageing - fixed value "2 sec" - in 6.5 us units */ |
| 1636 | ocelot_write(ocelot, SYS_FRM_AGING_AGE_TX_ENA | |
| 1637 | SYS_FRM_AGING_MAX_AGE(307692), SYS_FRM_AGING); |
| 1638 | |
| 1639 | /* Setup flooding PGIDs */ |
Vladimir Oltean | edd2410 | 2020-12-04 19:54:16 +0200 | [diff] [blame] | 1640 | for (i = 0; i < ocelot->num_flooding_pgids; i++) |
| 1641 | ocelot_write_rix(ocelot, ANA_FLOODING_FLD_MULTICAST(PGID_MC) | |
| 1642 | ANA_FLOODING_FLD_BROADCAST(PGID_MC) | |
| 1643 | ANA_FLOODING_FLD_UNICAST(PGID_UC), |
| 1644 | ANA_FLOODING, i); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1645 | ocelot_write(ocelot, ANA_FLOODING_IPMC_FLD_MC6_DATA(PGID_MCIPV6) | |
| 1646 | ANA_FLOODING_IPMC_FLD_MC6_CTRL(PGID_MC) | |
| 1647 | ANA_FLOODING_IPMC_FLD_MC4_DATA(PGID_MCIPV4) | |
| 1648 | ANA_FLOODING_IPMC_FLD_MC4_CTRL(PGID_MC), |
| 1649 | ANA_FLOODING_IPMC); |
| 1650 | |
| 1651 | for (port = 0; port < ocelot->num_phys_ports; port++) { |
| 1652 | /* Transmit the frame to the local port. */ |
| 1653 | ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port); |
| 1654 | /* Do not forward BPDU frames to the front ports. */ |
| 1655 | ocelot_write_gix(ocelot, |
| 1656 | ANA_PORT_CPU_FWD_BPDU_CFG_BPDU_REDIR_ENA(0xffff), |
| 1657 | ANA_PORT_CPU_FWD_BPDU_CFG, |
| 1658 | port); |
| 1659 | /* Ensure bridging is disabled */ |
| 1660 | ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_SRC + port); |
| 1661 | } |
| 1662 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1663 | /* Allow broadcast MAC frames. */ |
Vladimir Oltean | 96b029b | 2020-06-21 14:46:02 +0300 | [diff] [blame] | 1664 | for_each_nonreserved_multicast_dest_pgid(ocelot, i) { |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1665 | u32 val = ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports - 1, 0)); |
| 1666 | |
| 1667 | ocelot_write_rix(ocelot, val, ANA_PGID_PGID, i); |
| 1668 | } |
| 1669 | ocelot_write_rix(ocelot, |
| 1670 | ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports, 0)), |
| 1671 | ANA_PGID_PGID, PGID_MC); |
| 1672 | ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV4); |
| 1673 | ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV6); |
| 1674 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1675 | /* Allow manual injection via DEVCPU_QS registers, and byte swap these |
| 1676 | * registers endianness. |
| 1677 | */ |
| 1678 | ocelot_write_rix(ocelot, QS_INJ_GRP_CFG_BYTE_SWAP | |
| 1679 | QS_INJ_GRP_CFG_MODE(1), QS_INJ_GRP_CFG, 0); |
| 1680 | ocelot_write_rix(ocelot, QS_XTR_GRP_CFG_BYTE_SWAP | |
| 1681 | QS_XTR_GRP_CFG_MODE(1), QS_XTR_GRP_CFG, 0); |
| 1682 | ocelot_write(ocelot, ANA_CPUQ_CFG_CPUQ_MIRROR(2) | |
| 1683 | ANA_CPUQ_CFG_CPUQ_LRN(2) | |
| 1684 | ANA_CPUQ_CFG_CPUQ_MAC_COPY(2) | |
| 1685 | ANA_CPUQ_CFG_CPUQ_SRC_COPY(2) | |
| 1686 | ANA_CPUQ_CFG_CPUQ_LOCKED_PORTMOVE(2) | |
| 1687 | ANA_CPUQ_CFG_CPUQ_ALLBRIDGE(6) | |
| 1688 | ANA_CPUQ_CFG_CPUQ_IPMC_CTRL(6) | |
| 1689 | ANA_CPUQ_CFG_CPUQ_IGMP(6) | |
| 1690 | ANA_CPUQ_CFG_CPUQ_MLD(6), ANA_CPUQ_CFG); |
| 1691 | for (i = 0; i < 16; i++) |
| 1692 | ocelot_write_rix(ocelot, ANA_CPUQ_8021_CFG_CPUQ_GARP_VAL(6) | |
| 1693 | ANA_CPUQ_8021_CFG_CPUQ_BPDU_VAL(6), |
| 1694 | ANA_CPUQ_8021_CFG, i); |
| 1695 | |
Claudiu Manoil | 1e1caa9 | 2019-04-16 17:51:59 +0300 | [diff] [blame] | 1696 | INIT_DELAYED_WORK(&ocelot->stats_work, ocelot_check_stats_work); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1697 | queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work, |
| 1698 | OCELOT_STATS_CHECK_DELAY); |
Antoine Tenart | 4e3b046 | 2019-08-12 16:45:37 +0200 | [diff] [blame] | 1699 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1700 | return 0; |
| 1701 | } |
| 1702 | EXPORT_SYMBOL(ocelot_init); |
| 1703 | |
| 1704 | void ocelot_deinit(struct ocelot *ocelot) |
| 1705 | { |
Claudiu Manoil | c5d1396 | 2019-07-25 16:33:18 +0300 | [diff] [blame] | 1706 | cancel_delayed_work(&ocelot->stats_work); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1707 | destroy_workqueue(ocelot->stats_queue); |
Vladimir Oltean | ca0b272 | 2020-12-12 21:16:12 +0200 | [diff] [blame] | 1708 | destroy_workqueue(ocelot->owq); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1709 | mutex_destroy(&ocelot->stats_lock); |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1710 | } |
| 1711 | EXPORT_SYMBOL(ocelot_deinit); |
| 1712 | |
Vladimir Oltean | e5fb512 | 2020-09-18 04:07:30 +0300 | [diff] [blame] | 1713 | void ocelot_deinit_port(struct ocelot *ocelot, int port) |
| 1714 | { |
| 1715 | struct ocelot_port *ocelot_port = ocelot->ports[port]; |
| 1716 | |
| 1717 | skb_queue_purge(&ocelot_port->tx_skbs); |
| 1718 | } |
| 1719 | EXPORT_SYMBOL(ocelot_deinit_port); |
| 1720 | |
Alexandre Belloni | a556c76 | 2018-05-14 22:04:57 +0200 | [diff] [blame] | 1721 | MODULE_LICENSE("Dual MIT/GPL"); |