blob: d1a9cdbf7a3e2f951d03aa10bad023460cffe17f [file] [log] [blame]
Alexandre Bellonia556c762018-05-14 22:04:57 +02001// SPDX-License-Identifier: (GPL-2.0 OR MIT)
2/*
3 * Microsemi Ocelot Switch driver
4 *
5 * Copyright (c) 2017 Microsemi Corporation
6 */
Alexandre Bellonia556c762018-05-14 22:04:57 +02007#include <linux/if_bridge.h>
Vladimir Oltean20968052020-09-30 01:27:26 +03008#include <soc/mscc/ocelot_vcap.h>
Alexandre Bellonia556c762018-05-14 22:04:57 +02009#include "ocelot.h"
Vladimir Oltean3c836542020-06-20 18:43:45 +030010#include "ocelot_vcap.h"
Alexandre Bellonia556c762018-05-14 22:04:57 +020011
Steen Hegelund639c1b22018-12-20 14:16:31 +010012#define TABLE_UPDATE_SLEEP_US 10
13#define TABLE_UPDATE_TIMEOUT_US 100000
14
Alexandre Bellonia556c762018-05-14 22:04:57 +020015struct ocelot_mact_entry {
16 u8 mac[ETH_ALEN];
17 u16 vid;
18 enum macaccess_entry_type type;
19};
20
Steen Hegelund639c1b22018-12-20 14:16:31 +010021static inline u32 ocelot_mact_read_macaccess(struct ocelot *ocelot)
22{
23 return ocelot_read(ocelot, ANA_TABLES_MACACCESS);
24}
25
Alexandre Bellonia556c762018-05-14 22:04:57 +020026static inline int ocelot_mact_wait_for_completion(struct ocelot *ocelot)
27{
Steen Hegelund639c1b22018-12-20 14:16:31 +010028 u32 val;
Alexandre Bellonia556c762018-05-14 22:04:57 +020029
Steen Hegelund639c1b22018-12-20 14:16:31 +010030 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 Bellonia556c762018-05-14 22:04:57 +020035}
36
37static 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 Oltean9c90eea2020-06-20 18:43:44 +030059int 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 Bellonia556c762018-05-14 22:04:57 +020062{
Alban Bedel584b7cf2021-01-19 15:06:38 +010063 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 Bellonia556c762018-05-14 22:04:57 +020080 ocelot_mact_select(ocelot, mac, vid);
81
82 /* Issue a write command */
Alban Bedel584b7cf2021-01-19 15:06:38 +010083 ocelot_write(ocelot, cmd, ANA_TABLES_MACACCESS);
Alexandre Bellonia556c762018-05-14 22:04:57 +020084
85 return ocelot_mact_wait_for_completion(ocelot);
86}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +030087EXPORT_SYMBOL(ocelot_mact_learn);
Alexandre Bellonia556c762018-05-14 22:04:57 +020088
Vladimir Oltean9c90eea2020-06-20 18:43:44 +030089int ocelot_mact_forget(struct ocelot *ocelot,
90 const unsigned char mac[ETH_ALEN], unsigned int vid)
Alexandre Bellonia556c762018-05-14 22:04:57 +020091{
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 Oltean9c90eea2020-06-20 18:43:44 +0300101EXPORT_SYMBOL(ocelot_mact_forget);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200102
103static 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 Olteanf270dbf2019-11-09 15:02:52 +0200119static void ocelot_vcap_enable(struct ocelot *ocelot, int port)
Horatiu Vulturb5962292019-05-31 09:16:56 +0200120{
121 ocelot_write_gix(ocelot, ANA_PORT_VCAP_S2_CFG_S2_ENA |
122 ANA_PORT_VCAP_S2_CFG_S2_IP6_CFG(0xa),
Vladimir Olteanf270dbf2019-11-09 15:02:52 +0200123 ANA_PORT_VCAP_S2_CFG, port);
Xiaoliang Yang75944fd2020-10-02 15:02:23 +0300124
125 ocelot_write_gix(ocelot, ANA_PORT_VCAP_CFG_S1_ENA,
126 ANA_PORT_VCAP_CFG, port);
Xiaoliang Yang2f17c052020-10-02 15:02:24 +0300127
128 ocelot_rmw_gix(ocelot, REW_PORT_CFG_ES0_EN,
129 REW_PORT_CFG_ES0_EN,
130 REW_PORT_CFG, port);
Horatiu Vulturb5962292019-05-31 09:16:56 +0200131}
132
Steen Hegelund639c1b22018-12-20 14:16:31 +0100133static inline u32 ocelot_vlant_read_vlanaccess(struct ocelot *ocelot)
134{
135 return ocelot_read(ocelot, ANA_TABLES_VLANACCESS);
136}
137
Alexandre Bellonia556c762018-05-14 22:04:57 +0200138static inline int ocelot_vlant_wait_for_completion(struct ocelot *ocelot)
139{
Steen Hegelund639c1b22018-12-20 14:16:31 +0100140 u32 val;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200141
Steen Hegelund639c1b22018-12-20 14:16:31 +0100142 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 Bellonia556c762018-05-14 22:04:57 +0200148}
149
Antoine Tenart71425292018-06-26 14:28:49 +0200150static 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 Oltean2f0402f2020-10-31 12:29:15 +0200163static void ocelot_port_set_native_vlan(struct ocelot *ocelot, int port,
164 struct ocelot_vlan native_vlan)
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200165{
166 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300167 u32 val = 0;
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200168
Vladimir Olteane2b2e832020-10-31 12:29:13 +0200169 ocelot_port->native_vlan = native_vlan;
170
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200171 ocelot_rmw_gix(ocelot, REW_PORT_VLAN_CFG_PORT_VID(native_vlan.vid),
Antoine Tenart71425292018-06-26 14:28:49 +0200172 REW_PORT_VLAN_CFG_PORT_VID_M,
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200173 REW_PORT_VLAN_CFG, port);
174
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300175 if (ocelot_port->vlan_aware) {
Vladimir Olteane2b2e832020-10-31 12:29:13 +0200176 if (native_vlan.valid)
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300177 /* 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 Oltean97bb69e2019-11-09 15:02:47 +0200189}
190
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200191/* Default vlan to clasify for untagged frames (may be zero) */
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200192static void ocelot_port_set_pvid(struct ocelot *ocelot, int port,
193 struct ocelot_vlan pvid_vlan)
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200194{
195 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteanbe0576f2020-10-31 12:29:14 +0200196 u32 val = 0;
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200197
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200198 ocelot_port->pvid_vlan = pvid_vlan;
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200199
200 if (!ocelot_port->vlan_aware)
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200201 pvid_vlan.vid = 0;
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200202
203 ocelot_rmw_gix(ocelot,
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200204 ANA_PORT_VLAN_CFG_VLAN_VID(pvid_vlan.vid),
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200205 ANA_PORT_VLAN_CFG_VLAN_VID_M,
206 ANA_PORT_VLAN_CFG, port);
Vladimir Olteanbe0576f2020-10-31 12:29:14 +0200207
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 Oltean75e5a552020-10-31 12:29:10 +0200221}
222
Vladimir Oltean2e554a72020-10-03 01:06:46 +0300223int ocelot_port_vlan_filtering(struct ocelot *ocelot, int port,
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200224 bool vlan_aware)
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300225{
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200226 struct ocelot_vcap_block *block = &ocelot->block[VCAP_IS1];
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300227 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200228 struct ocelot_vcap_filter *filter;
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300229 u32 val;
230
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200231 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 Oltean70edfae2020-10-08 14:56:58 +0300237 }
Vladimir Oltean70edfae2020-10-08 14:56:58 +0300238 }
Vladimir Oltean2e554a72020-10-03 01:06:46 +0300239
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300240 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 Olteanc3e58a752020-10-31 12:29:12 +0200252 ocelot_port_set_pvid(ocelot, port, ocelot_port->pvid_vlan);
253 ocelot_port_set_native_vlan(ocelot, port, ocelot_port->native_vlan);
Vladimir Oltean2e554a72020-10-03 01:06:46 +0300254
255 return 0;
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300256}
257EXPORT_SYMBOL(ocelot_port_vlan_filtering);
258
Vladimir Oltean2f0402f2020-10-31 12:29:15 +0200259int 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}
275EXPORT_SYMBOL(ocelot_vlan_prepare);
276
Vladimir Oltean5e256362019-11-14 17:03:27 +0200277int ocelot_vlan_add(struct ocelot *ocelot, int port, u16 vid, bool pvid,
278 bool untagged)
Antoine Tenart71425292018-06-26 14:28:49 +0200279{
Antoine Tenart71425292018-06-26 14:28:49 +0200280 int ret;
281
Antoine Tenart71425292018-06-26 14:28:49 +0200282 /* Make the port a member of the VLAN */
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200283 ocelot->vlan_mask[vid] |= BIT(port);
Antoine Tenart71425292018-06-26 14:28:49 +0200284 ret = ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]);
285 if (ret)
286 return ret;
287
288 /* Default ingress vlan classification */
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200289 if (pvid) {
290 struct ocelot_vlan pvid_vlan;
291
292 pvid_vlan.vid = vid;
Vladimir Olteane2b2e832020-10-31 12:29:13 +0200293 pvid_vlan.valid = true;
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200294 ocelot_port_set_pvid(ocelot, port, pvid_vlan);
295 }
Antoine Tenart71425292018-06-26 14:28:49 +0200296
297 /* Untagged egress vlan clasification */
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200298 if (untagged) {
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200299 struct ocelot_vlan native_vlan;
300
301 native_vlan.vid = vid;
Vladimir Olteane2b2e832020-10-31 12:29:13 +0200302 native_vlan.valid = true;
Vladimir Oltean2f0402f2020-10-31 12:29:15 +0200303 ocelot_port_set_native_vlan(ocelot, port, native_vlan);
Vladimir Olteanb9cd75e2019-10-26 21:04:27 +0300304 }
Antoine Tenart71425292018-06-26 14:28:49 +0200305
Antoine Tenart71425292018-06-26 14:28:49 +0200306 return 0;
307}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200308EXPORT_SYMBOL(ocelot_vlan_add);
Antoine Tenart71425292018-06-26 14:28:49 +0200309
Vladimir Oltean5e256362019-11-14 17:03:27 +0200310int ocelot_vlan_del(struct ocelot *ocelot, int port, u16 vid)
Vladimir Oltean98559342019-11-09 15:02:48 +0200311{
312 struct ocelot_port *ocelot_port = ocelot->ports[port];
313 int ret;
Antoine Tenart71425292018-06-26 14:28:49 +0200314
315 /* Stop the port from being a member of the vlan */
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200316 ocelot->vlan_mask[vid] &= ~BIT(port);
Antoine Tenart71425292018-06-26 14:28:49 +0200317 ret = ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]);
318 if (ret)
319 return ret;
320
Vladimir Olteanbe0576f2020-10-31 12:29:14 +0200321 /* 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 Tenart71425292018-06-26 14:28:49 +0200328 /* Egress */
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200329 if (ocelot_port->native_vlan.vid == vid) {
Vladimir Olteane2b2e832020-10-31 12:29:13 +0200330 struct ocelot_vlan native_vlan = {0};
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200331
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200332 ocelot_port_set_native_vlan(ocelot, port, native_vlan);
333 }
Antoine Tenart71425292018-06-26 14:28:49 +0200334
335 return 0;
336}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200337EXPORT_SYMBOL(ocelot_vlan_del);
Antoine Tenart71425292018-06-26 14:28:49 +0200338
Alexandre Bellonia556c762018-05-14 22:04:57 +0200339static void ocelot_vlan_init(struct ocelot *ocelot)
340{
Antoine Tenart71425292018-06-26 14:28:49 +0200341 u16 port, vid;
342
Alexandre Bellonia556c762018-05-14 22:04:57 +0200343 /* 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 Tenart71425292018-06-26 14:28:49 +0200347
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 Tenart71425292018-06-26 14:28:49 +0200361 /* Set vlan ingress filter mask to all ports but the CPU port by
362 * default.
363 */
Vladimir Oltean714d0ff2019-11-09 15:02:55 +0200364 ocelot_write(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0),
365 ANA_VLANMASK);
Antoine Tenart71425292018-06-26 14:28:49 +0200366
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 Bellonia556c762018-05-14 22:04:57 +0200371}
372
Vladimir Olteaneb4733d2021-02-08 19:36:27 +0200373static u32 ocelot_read_eq_avail(struct ocelot *ocelot, int port)
374{
375 return ocelot_read_rix(ocelot, QSYS_SW_STATUS, port);
376}
377
378int ocelot_port_flush(struct ocelot *ocelot, int port)
379{
380 int err, val;
381
382 /* Disable dequeuing from the egress queues */
383 ocelot_rmw_rix(ocelot, QSYS_PORT_MODE_DEQUEUE_DIS,
384 QSYS_PORT_MODE_DEQUEUE_DIS,
385 QSYS_PORT_MODE, port);
386
387 /* Disable flow control */
388 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 0);
389
390 /* Disable priority flow control */
391 ocelot_fields_write(ocelot, port,
392 QSYS_SWITCH_PORT_MODE_TX_PFC_ENA, 0);
393
394 /* Wait at least the time it takes to receive a frame of maximum length
395 * at the port.
396 * Worst-case delays for 10 kilobyte jumbo frames are:
397 * 8 ms on a 10M port
398 * 800 μs on a 100M port
399 * 80 μs on a 1G port
400 * 32 μs on a 2.5G port
401 */
402 usleep_range(8000, 10000);
403
404 /* Disable half duplex backpressure. */
405 ocelot_rmw_rix(ocelot, 0, SYS_FRONT_PORT_MODE_HDX_MODE,
406 SYS_FRONT_PORT_MODE, port);
407
408 /* Flush the queues associated with the port. */
409 ocelot_rmw_gix(ocelot, REW_PORT_CFG_FLUSH_ENA, REW_PORT_CFG_FLUSH_ENA,
410 REW_PORT_CFG, port);
411
412 /* Enable dequeuing from the egress queues. */
413 ocelot_rmw_rix(ocelot, 0, QSYS_PORT_MODE_DEQUEUE_DIS, QSYS_PORT_MODE,
414 port);
415
416 /* Wait until flushing is complete. */
417 err = read_poll_timeout(ocelot_read_eq_avail, val, !val,
418 100, 2000000, false, ocelot, port);
419
420 /* Clear flushing again. */
421 ocelot_rmw_gix(ocelot, 0, REW_PORT_CFG_FLUSH_ENA, REW_PORT_CFG, port);
422
423 return err;
424}
425EXPORT_SYMBOL(ocelot_port_flush);
426
Vladimir Oltean5e256362019-11-14 17:03:27 +0200427void ocelot_adjust_link(struct ocelot *ocelot, int port,
428 struct phy_device *phydev)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200429{
Vladimir Oltean26f4dba2019-11-09 15:02:59 +0200430 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Oltean5bc9d2e2019-11-14 17:03:22 +0200431 int speed, mode = 0;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200432
Vladimir Oltean26f4dba2019-11-09 15:02:59 +0200433 switch (phydev->speed) {
Alexandre Bellonia556c762018-05-14 22:04:57 +0200434 case SPEED_10:
435 speed = OCELOT_SPEED_10;
436 break;
437 case SPEED_100:
438 speed = OCELOT_SPEED_100;
439 break;
440 case SPEED_1000:
441 speed = OCELOT_SPEED_1000;
442 mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
443 break;
444 case SPEED_2500:
445 speed = OCELOT_SPEED_2500;
446 mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
447 break;
448 default:
Vladimir Oltean26f4dba2019-11-09 15:02:59 +0200449 dev_err(ocelot->dev, "Unsupported PHY speed on port %d: %d\n",
450 port, phydev->speed);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200451 return;
452 }
453
Vladimir Oltean26f4dba2019-11-09 15:02:59 +0200454 phy_print_status(phydev);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200455
Vladimir Oltean26f4dba2019-11-09 15:02:59 +0200456 if (!phydev->link)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200457 return;
458
459 /* Only full duplex supported for now */
Vladimir Oltean004d44f2019-11-09 15:02:53 +0200460 ocelot_port_writel(ocelot_port, DEV_MAC_MODE_CFG_FDX_ENA |
Alexandre Bellonia556c762018-05-14 22:04:57 +0200461 mode, DEV_MAC_MODE_CFG);
462
Vladimir Oltean1ba8f652020-02-29 16:31:11 +0200463 /* Disable HDX fast control */
464 ocelot_port_writel(ocelot_port, DEV_PORT_MISC_HDX_FAST_DIS,
465 DEV_PORT_MISC);
466
467 /* SGMII only for now */
468 ocelot_port_writel(ocelot_port, PCS1G_MODE_CFG_SGMII_MODE_ENA,
469 PCS1G_MODE_CFG);
470 ocelot_port_writel(ocelot_port, PCS1G_SD_CFG_SD_SEL, PCS1G_SD_CFG);
471
472 /* Enable PCS */
473 ocelot_port_writel(ocelot_port, PCS1G_CFG_PCS_ENA, PCS1G_CFG);
474
475 /* No aneg on SGMII */
476 ocelot_port_writel(ocelot_port, 0, PCS1G_ANEG_CFG);
477
478 /* No loopback */
479 ocelot_port_writel(ocelot_port, 0, PCS1G_LB_CFG);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200480
Alexandre Bellonia556c762018-05-14 22:04:57 +0200481 /* Enable MAC module */
Vladimir Oltean004d44f2019-11-09 15:02:53 +0200482 ocelot_port_writel(ocelot_port, DEV_MAC_ENA_CFG_RX_ENA |
Alexandre Bellonia556c762018-05-14 22:04:57 +0200483 DEV_MAC_ENA_CFG_TX_ENA, DEV_MAC_ENA_CFG);
484
485 /* Take MAC, Port, Phy (intern) and PCS (SGMII/Serdes) clock out of
486 * reset */
Vladimir Oltean004d44f2019-11-09 15:02:53 +0200487 ocelot_port_writel(ocelot_port, DEV_CLOCK_CFG_LINK_SPEED(speed),
Alexandre Bellonia556c762018-05-14 22:04:57 +0200488 DEV_CLOCK_CFG);
489
Alexandre Bellonia556c762018-05-14 22:04:57 +0200490 /* No PFC */
491 ocelot_write_gix(ocelot, ANA_PFC_PFC_CFG_FC_LINK_SPEED(speed),
Vladimir Oltean004d44f2019-11-09 15:02:53 +0200492 ANA_PFC_PFC_CFG, port);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200493
Alexandre Bellonia556c762018-05-14 22:04:57 +0200494 /* Core: Enable port for frame transfer */
Vladimir Oltean886e1382020-07-13 19:57:03 +0300495 ocelot_fields_write(ocelot, port,
496 QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200497
498 /* Flow control */
499 ocelot_write_rix(ocelot, SYS_MAC_FC_CFG_PAUSE_VAL_CFG(0xffff) |
500 SYS_MAC_FC_CFG_RX_FC_ENA | SYS_MAC_FC_CFG_TX_FC_ENA |
501 SYS_MAC_FC_CFG_ZERO_PAUSE_ENA |
502 SYS_MAC_FC_CFG_FC_LATENCY_CFG(0x7) |
503 SYS_MAC_FC_CFG_FC_LINK_SPEED(speed),
Vladimir Oltean004d44f2019-11-09 15:02:53 +0200504 SYS_MAC_FC_CFG, port);
505 ocelot_write_rix(ocelot, 0, ANA_POL_FLOWC, port);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200506}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200507EXPORT_SYMBOL(ocelot_adjust_link);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200508
Vladimir Oltean5e256362019-11-14 17:03:27 +0200509void ocelot_port_enable(struct ocelot *ocelot, int port,
510 struct phy_device *phy)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200511{
Alexandre Bellonia556c762018-05-14 22:04:57 +0200512 /* Enable receiving frames on the port, and activate auto-learning of
513 * MAC addresses.
514 */
515 ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_LEARNAUTO |
516 ANA_PORT_PORT_CFG_RECV_ENA |
Vladimir Oltean004d44f2019-11-09 15:02:53 +0200517 ANA_PORT_PORT_CFG_PORTID_VAL(port),
518 ANA_PORT_PORT_CFG, port);
Vladimir Oltean889b8952019-11-09 15:02:57 +0200519}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200520EXPORT_SYMBOL(ocelot_port_enable);
Vladimir Oltean889b8952019-11-09 15:02:57 +0200521
Vladimir Oltean5e256362019-11-14 17:03:27 +0200522void ocelot_port_disable(struct ocelot *ocelot, int port)
Vladimir Oltean889b8952019-11-09 15:02:57 +0200523{
524 struct ocelot_port *ocelot_port = ocelot->ports[port];
525
526 ocelot_port_writel(ocelot_port, 0, DEV_MAC_ENA_CFG);
Vladimir Oltean886e1382020-07-13 19:57:03 +0300527 ocelot_fields_write(ocelot, port, QSYS_SWITCH_PORT_MODE_PORT_ENA, 0);
Vladimir Oltean889b8952019-11-09 15:02:57 +0200528}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200529EXPORT_SYMBOL(ocelot_port_disable);
Vladimir Oltean889b8952019-11-09 15:02:57 +0200530
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300531void ocelot_port_add_txtstamp_skb(struct ocelot *ocelot, int port,
532 struct sk_buff *clone)
Yangbo Lu400928b2019-11-20 16:23:16 +0800533{
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300534 struct ocelot_port *ocelot_port = ocelot->ports[port];
Yangbo Lu400928b2019-11-20 16:23:16 +0800535
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300536 spin_lock(&ocelot_port->ts_id_lock);
Vladimir Oltean65652432020-09-18 04:07:24 +0300537
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300538 skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS;
539 /* Store timestamp ID in cb[0] of sk_buff */
540 clone->cb[0] = ocelot_port->ts_id;
541 ocelot_port->ts_id = (ocelot_port->ts_id + 1) % 4;
542 skb_queue_tail(&ocelot_port->tx_skbs, clone);
Vladimir Oltean65652432020-09-18 04:07:24 +0300543
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300544 spin_unlock(&ocelot_port->ts_id_lock);
Yangbo Lu400928b2019-11-20 16:23:16 +0800545}
546EXPORT_SYMBOL(ocelot_port_add_txtstamp_skb);
547
Yangbo Lue23a7b32019-11-20 16:23:15 +0800548static void ocelot_get_hwtimestamp(struct ocelot *ocelot,
549 struct timespec64 *ts)
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200550{
551 unsigned long flags;
552 u32 val;
553
554 spin_lock_irqsave(&ocelot->ptp_clock_lock, flags);
555
556 /* Read current PTP time to get seconds */
557 val = ocelot_read_rix(ocelot, PTP_PIN_CFG, TOD_ACC_PIN);
558
559 val &= ~(PTP_PIN_CFG_SYNC | PTP_PIN_CFG_ACTION_MASK | PTP_PIN_CFG_DOM);
560 val |= PTP_PIN_CFG_ACTION(PTP_PIN_ACTION_SAVE);
561 ocelot_write_rix(ocelot, val, PTP_PIN_CFG, TOD_ACC_PIN);
562 ts->tv_sec = ocelot_read_rix(ocelot, PTP_PIN_TOD_SEC_LSB, TOD_ACC_PIN);
563
564 /* Read packet HW timestamp from FIFO */
565 val = ocelot_read(ocelot, SYS_PTP_TXSTAMP);
566 ts->tv_nsec = SYS_PTP_TXSTAMP_PTP_TXSTAMP(val);
567
568 /* Sec has incremented since the ts was registered */
569 if ((ts->tv_sec & 0x1) != !!(val & SYS_PTP_TXSTAMP_PTP_TXSTAMP_SEC))
570 ts->tv_sec--;
571
572 spin_unlock_irqrestore(&ocelot->ptp_clock_lock, flags);
573}
Yangbo Lue23a7b32019-11-20 16:23:15 +0800574
575void ocelot_get_txtstamp(struct ocelot *ocelot)
576{
577 int budget = OCELOT_PTP_QUEUE_SZ;
578
579 while (budget--) {
Yangbo Lub049da12019-11-27 15:27:57 +0800580 struct sk_buff *skb, *skb_tmp, *skb_match = NULL;
Yangbo Lue23a7b32019-11-20 16:23:15 +0800581 struct skb_shared_hwtstamps shhwtstamps;
Yangbo Lue23a7b32019-11-20 16:23:15 +0800582 struct ocelot_port *port;
583 struct timespec64 ts;
Yangbo Lub049da12019-11-27 15:27:57 +0800584 unsigned long flags;
Yangbo Lue23a7b32019-11-20 16:23:15 +0800585 u32 val, id, txport;
586
587 val = ocelot_read(ocelot, SYS_PTP_STATUS);
588
589 /* Check if a timestamp can be retrieved */
590 if (!(val & SYS_PTP_STATUS_PTP_MESS_VLD))
591 break;
592
593 WARN_ON(val & SYS_PTP_STATUS_PTP_OVFL);
594
595 /* Retrieve the ts ID and Tx port */
596 id = SYS_PTP_STATUS_PTP_MESS_ID_X(val);
597 txport = SYS_PTP_STATUS_PTP_MESS_TXPORT_X(val);
598
599 /* Retrieve its associated skb */
600 port = ocelot->ports[txport];
601
Yangbo Lub049da12019-11-27 15:27:57 +0800602 spin_lock_irqsave(&port->tx_skbs.lock, flags);
603
604 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) {
605 if (skb->cb[0] != id)
Yangbo Lue23a7b32019-11-20 16:23:15 +0800606 continue;
Yangbo Lub049da12019-11-27 15:27:57 +0800607 __skb_unlink(skb, &port->tx_skbs);
608 skb_match = skb;
Yangbo Lufc62c092019-11-27 15:27:56 +0800609 break;
Yangbo Lue23a7b32019-11-20 16:23:15 +0800610 }
611
Yangbo Lub049da12019-11-27 15:27:57 +0800612 spin_unlock_irqrestore(&port->tx_skbs.lock, flags);
613
laurent brando5fd82202020-07-27 18:26:14 +0800614 /* Get the h/w timestamp */
615 ocelot_get_hwtimestamp(ocelot, &ts);
Yangbo Lue23a7b32019-11-20 16:23:15 +0800616
Yangbo Lub049da12019-11-27 15:27:57 +0800617 if (unlikely(!skb_match))
Yangbo Lue23a7b32019-11-20 16:23:15 +0800618 continue;
619
Yangbo Lue23a7b32019-11-20 16:23:15 +0800620 /* Set the timestamp into the skb */
621 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
622 shhwtstamps.hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec);
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300623 skb_complete_tx_timestamp(skb_match, &shhwtstamps);
laurent brando5fd82202020-07-27 18:26:14 +0800624
625 /* Next ts */
626 ocelot_write(ocelot, SYS_PTP_NXT_PTP_NXT, SYS_PTP_NXT);
Yangbo Lue23a7b32019-11-20 16:23:15 +0800627 }
628}
629EXPORT_SYMBOL(ocelot_get_txtstamp);
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200630
Vladimir Oltean5e256362019-11-14 17:03:27 +0200631int ocelot_fdb_add(struct ocelot *ocelot, int port,
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300632 const unsigned char *addr, u16 vid)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200633{
Vladimir Oltean471beb12020-06-21 14:46:00 +0300634 int pgid = port;
635
636 if (port == ocelot->npi)
637 pgid = PGID_CPU;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200638
Vladimir Oltean471beb12020-06-21 14:46:00 +0300639 return ocelot_mact_learn(ocelot, pgid, addr, vid, ENTRYTYPE_LOCKED);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200640}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200641EXPORT_SYMBOL(ocelot_fdb_add);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200642
Vladimir Oltean5e256362019-11-14 17:03:27 +0200643int ocelot_fdb_del(struct ocelot *ocelot, int port,
644 const unsigned char *addr, u16 vid)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200645{
Alexandre Bellonia556c762018-05-14 22:04:57 +0200646 return ocelot_mact_forget(ocelot, addr, vid);
647}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200648EXPORT_SYMBOL(ocelot_fdb_del);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200649
Vladimir Oltean9c90eea2020-06-20 18:43:44 +0300650int ocelot_port_fdb_do_dump(const unsigned char *addr, u16 vid,
651 bool is_static, void *data)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200652{
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200653 struct ocelot_dump_ctx *dump = data;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200654 u32 portid = NETLINK_CB(dump->cb->skb).portid;
655 u32 seq = dump->cb->nlh->nlmsg_seq;
656 struct nlmsghdr *nlh;
657 struct ndmsg *ndm;
658
659 if (dump->idx < dump->cb->args[2])
660 goto skip;
661
662 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
663 sizeof(*ndm), NLM_F_MULTI);
664 if (!nlh)
665 return -EMSGSIZE;
666
667 ndm = nlmsg_data(nlh);
668 ndm->ndm_family = AF_BRIDGE;
669 ndm->ndm_pad1 = 0;
670 ndm->ndm_pad2 = 0;
671 ndm->ndm_flags = NTF_SELF;
672 ndm->ndm_type = 0;
673 ndm->ndm_ifindex = dump->dev->ifindex;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200674 ndm->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200675
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200676 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
Alexandre Bellonia556c762018-05-14 22:04:57 +0200677 goto nla_put_failure;
678
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200679 if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
Alexandre Bellonia556c762018-05-14 22:04:57 +0200680 goto nla_put_failure;
681
682 nlmsg_end(dump->skb, nlh);
683
684skip:
685 dump->idx++;
686 return 0;
687
688nla_put_failure:
689 nlmsg_cancel(dump->skb, nlh);
690 return -EMSGSIZE;
691}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +0300692EXPORT_SYMBOL(ocelot_port_fdb_do_dump);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200693
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200694static int ocelot_mact_read(struct ocelot *ocelot, int port, int row, int col,
695 struct ocelot_mact_entry *entry)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200696{
Alexandre Bellonia556c762018-05-14 22:04:57 +0200697 u32 val, dst, macl, mach;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200698 char mac[ETH_ALEN];
Alexandre Bellonia556c762018-05-14 22:04:57 +0200699
700 /* Set row and column to read from */
701 ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_M_INDEX, row);
702 ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_BUCKET, col);
703
704 /* Issue a read command */
705 ocelot_write(ocelot,
706 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_READ),
707 ANA_TABLES_MACACCESS);
708
709 if (ocelot_mact_wait_for_completion(ocelot))
710 return -ETIMEDOUT;
711
712 /* Read the entry flags */
713 val = ocelot_read(ocelot, ANA_TABLES_MACACCESS);
714 if (!(val & ANA_TABLES_MACACCESS_VALID))
715 return -EINVAL;
716
717 /* If the entry read has another port configured as its destination,
718 * do not report it.
719 */
720 dst = (val & ANA_TABLES_MACACCESS_DEST_IDX_M) >> 3;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200721 if (dst != port)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200722 return -EINVAL;
723
724 /* Get the entry's MAC address and VLAN id */
725 macl = ocelot_read(ocelot, ANA_TABLES_MACLDATA);
726 mach = ocelot_read(ocelot, ANA_TABLES_MACHDATA);
727
728 mac[0] = (mach >> 8) & 0xff;
729 mac[1] = (mach >> 0) & 0xff;
730 mac[2] = (macl >> 24) & 0xff;
731 mac[3] = (macl >> 16) & 0xff;
732 mac[4] = (macl >> 8) & 0xff;
733 mac[5] = (macl >> 0) & 0xff;
734
735 entry->vid = (mach >> 16) & 0xfff;
736 ether_addr_copy(entry->mac, mac);
737
738 return 0;
739}
740
Vladimir Oltean5e256362019-11-14 17:03:27 +0200741int ocelot_fdb_dump(struct ocelot *ocelot, int port,
742 dsa_fdb_dump_cb_t *cb, void *data)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200743{
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200744 int i, j;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200745
Vladimir Oltean21ce7f32020-05-04 01:20:26 +0300746 /* Loop through all the mac tables entries. */
747 for (i = 0; i < ocelot->num_mact_rows; i++) {
Alexandre Bellonia556c762018-05-14 22:04:57 +0200748 for (j = 0; j < 4; j++) {
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200749 struct ocelot_mact_entry entry;
750 bool is_static;
751 int ret;
752
753 ret = ocelot_mact_read(ocelot, port, i, j, &entry);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200754 /* If the entry is invalid (wrong port, invalid...),
755 * skip it.
756 */
757 if (ret == -EINVAL)
758 continue;
759 else if (ret)
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200760 return ret;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200761
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200762 is_static = (entry.type == ENTRYTYPE_LOCKED);
763
764 ret = cb(entry.mac, entry.vid, is_static, data);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200765 if (ret)
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200766 return ret;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200767 }
768 }
769
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200770 return 0;
771}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200772EXPORT_SYMBOL(ocelot_fdb_dump);
Vladimir Oltean531ee1a2019-11-09 15:02:49 +0200773
Yangbo Luf1459222019-11-20 16:23:14 +0800774int ocelot_hwstamp_get(struct ocelot *ocelot, int port, struct ifreq *ifr)
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200775{
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200776 return copy_to_user(ifr->ifr_data, &ocelot->hwtstamp_config,
777 sizeof(ocelot->hwtstamp_config)) ? -EFAULT : 0;
778}
Yangbo Luf1459222019-11-20 16:23:14 +0800779EXPORT_SYMBOL(ocelot_hwstamp_get);
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200780
Yangbo Luf1459222019-11-20 16:23:14 +0800781int ocelot_hwstamp_set(struct ocelot *ocelot, int port, struct ifreq *ifr)
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200782{
Vladimir Oltean306fd442019-11-09 15:02:50 +0200783 struct ocelot_port *ocelot_port = ocelot->ports[port];
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200784 struct hwtstamp_config cfg;
785
786 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
787 return -EFAULT;
788
789 /* reserved for future extensions */
790 if (cfg.flags)
791 return -EINVAL;
792
793 /* Tx type sanity check */
794 switch (cfg.tx_type) {
795 case HWTSTAMP_TX_ON:
Vladimir Oltean306fd442019-11-09 15:02:50 +0200796 ocelot_port->ptp_cmd = IFH_REW_OP_TWO_STEP_PTP;
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200797 break;
798 case HWTSTAMP_TX_ONESTEP_SYNC:
799 /* IFH_REW_OP_ONE_STEP_PTP updates the correctional field, we
800 * need to update the origin time.
801 */
Vladimir Oltean306fd442019-11-09 15:02:50 +0200802 ocelot_port->ptp_cmd = IFH_REW_OP_ORIGIN_PTP;
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200803 break;
804 case HWTSTAMP_TX_OFF:
Vladimir Oltean306fd442019-11-09 15:02:50 +0200805 ocelot_port->ptp_cmd = 0;
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200806 break;
807 default:
808 return -ERANGE;
809 }
810
811 mutex_lock(&ocelot->ptp_lock);
812
813 switch (cfg.rx_filter) {
814 case HWTSTAMP_FILTER_NONE:
815 break;
816 case HWTSTAMP_FILTER_ALL:
817 case HWTSTAMP_FILTER_SOME:
818 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
819 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
820 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
821 case HWTSTAMP_FILTER_NTP_ALL:
822 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
823 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
824 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
825 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
826 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
827 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
828 case HWTSTAMP_FILTER_PTP_V2_EVENT:
829 case HWTSTAMP_FILTER_PTP_V2_SYNC:
830 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
831 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
832 break;
833 default:
834 mutex_unlock(&ocelot->ptp_lock);
835 return -ERANGE;
836 }
837
838 /* Commit back the result & save it */
839 memcpy(&ocelot->hwtstamp_config, &cfg, sizeof(cfg));
840 mutex_unlock(&ocelot->ptp_lock);
841
842 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
843}
Yangbo Luf1459222019-11-20 16:23:14 +0800844EXPORT_SYMBOL(ocelot_hwstamp_set);
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200845
Vladimir Oltean5e256362019-11-14 17:03:27 +0200846void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200847{
Alexandre Bellonia556c762018-05-14 22:04:57 +0200848 int i;
849
850 if (sset != ETH_SS_STATS)
851 return;
852
853 for (i = 0; i < ocelot->num_stats; i++)
854 memcpy(data + i * ETH_GSTRING_LEN, ocelot->stats_layout[i].name,
855 ETH_GSTRING_LEN);
856}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200857EXPORT_SYMBOL(ocelot_get_strings);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200858
Claudiu Manoil1e1caa92019-04-16 17:51:59 +0300859static void ocelot_update_stats(struct ocelot *ocelot)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200860{
Alexandre Bellonia556c762018-05-14 22:04:57 +0200861 int i, j;
862
863 mutex_lock(&ocelot->stats_lock);
864
865 for (i = 0; i < ocelot->num_phys_ports; i++) {
866 /* Configure the port to read the stats from */
867 ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(i), SYS_STAT_CFG);
868
869 for (j = 0; j < ocelot->num_stats; j++) {
870 u32 val;
871 unsigned int idx = i * ocelot->num_stats + j;
872
873 val = ocelot_read_rix(ocelot, SYS_COUNT_RX_OCTETS,
874 ocelot->stats_layout[j].offset);
875
876 if (val < (ocelot->stats[idx] & U32_MAX))
877 ocelot->stats[idx] += (u64)1 << 32;
878
879 ocelot->stats[idx] = (ocelot->stats[idx] &
880 ~(u64)U32_MAX) + val;
881 }
882 }
883
Claudiu Manoil1e1caa92019-04-16 17:51:59 +0300884 mutex_unlock(&ocelot->stats_lock);
885}
886
887static void ocelot_check_stats_work(struct work_struct *work)
888{
889 struct delayed_work *del_work = to_delayed_work(work);
890 struct ocelot *ocelot = container_of(del_work, struct ocelot,
891 stats_work);
892
893 ocelot_update_stats(ocelot);
894
Alexandre Bellonia556c762018-05-14 22:04:57 +0200895 queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
896 OCELOT_STATS_CHECK_DELAY);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200897}
898
Vladimir Oltean5e256362019-11-14 17:03:27 +0200899void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200900{
Alexandre Bellonia556c762018-05-14 22:04:57 +0200901 int i;
902
903 /* check and update now */
Claudiu Manoil1e1caa92019-04-16 17:51:59 +0300904 ocelot_update_stats(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200905
906 /* Copy all counters */
907 for (i = 0; i < ocelot->num_stats; i++)
Vladimir Oltean004d44f2019-11-09 15:02:53 +0200908 *data++ = ocelot->stats[port * ocelot->num_stats + i];
Alexandre Bellonia556c762018-05-14 22:04:57 +0200909}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200910EXPORT_SYMBOL(ocelot_get_ethtool_stats);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200911
Vladimir Oltean5e256362019-11-14 17:03:27 +0200912int ocelot_get_sset_count(struct ocelot *ocelot, int port, int sset)
Vladimir Olteanc7282d32019-11-09 15:02:54 +0200913{
Alexandre Bellonia556c762018-05-14 22:04:57 +0200914 if (sset != ETH_SS_STATS)
915 return -EOPNOTSUPP;
Vladimir Olteanc7282d32019-11-09 15:02:54 +0200916
Alexandre Bellonia556c762018-05-14 22:04:57 +0200917 return ocelot->num_stats;
918}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200919EXPORT_SYMBOL(ocelot_get_sset_count);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200920
Vladimir Oltean5e256362019-11-14 17:03:27 +0200921int ocelot_get_ts_info(struct ocelot *ocelot, int port,
922 struct ethtool_ts_info *info)
Vladimir Olteanc7282d32019-11-09 15:02:54 +0200923{
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200924 info->phc_index = ocelot->ptp_clock ?
925 ptp_clock_index(ocelot->ptp_clock) : -1;
Yangbo Lud2b09a82020-04-20 10:46:46 +0800926 if (info->phc_index == -1) {
927 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
928 SOF_TIMESTAMPING_RX_SOFTWARE |
929 SOF_TIMESTAMPING_SOFTWARE;
930 return 0;
931 }
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200932 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
933 SOF_TIMESTAMPING_RX_SOFTWARE |
934 SOF_TIMESTAMPING_SOFTWARE |
935 SOF_TIMESTAMPING_TX_HARDWARE |
936 SOF_TIMESTAMPING_RX_HARDWARE |
937 SOF_TIMESTAMPING_RAW_HARDWARE;
938 info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON) |
939 BIT(HWTSTAMP_TX_ONESTEP_SYNC);
940 info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | BIT(HWTSTAMP_FILTER_ALL);
941
942 return 0;
943}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200944EXPORT_SYMBOL(ocelot_get_ts_info);
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200945
Vladimir Oltean23ca3b72021-02-06 00:02:19 +0200946static u32 ocelot_get_bond_mask(struct ocelot *ocelot, struct net_device *bond,
947 bool only_active_ports)
Vladimir Olteanb80af652021-02-06 00:02:14 +0200948{
949 u32 mask = 0;
950 int port;
951
952 for (port = 0; port < ocelot->num_phys_ports; port++) {
953 struct ocelot_port *ocelot_port = ocelot->ports[port];
954
955 if (!ocelot_port)
956 continue;
957
Vladimir Oltean23ca3b72021-02-06 00:02:19 +0200958 if (ocelot_port->bond == bond) {
959 if (only_active_ports && !ocelot_port->lag_tx_active)
960 continue;
961
Vladimir Olteanb80af652021-02-06 00:02:14 +0200962 mask |= BIT(port);
Vladimir Oltean23ca3b72021-02-06 00:02:19 +0200963 }
Vladimir Olteanb80af652021-02-06 00:02:14 +0200964 }
965
966 return mask;
967}
968
Vladimir Olteane21268e2021-01-29 03:00:09 +0200969static u32 ocelot_get_dsa_8021q_cpu_mask(struct ocelot *ocelot)
Vladimir Oltean9b521252021-01-29 03:00:02 +0200970{
Vladimir Olteane21268e2021-01-29 03:00:09 +0200971 u32 mask = 0;
Vladimir Oltean9b521252021-01-29 03:00:02 +0200972 int port;
973
Vladimir Olteane21268e2021-01-29 03:00:09 +0200974 for (port = 0; port < ocelot->num_phys_ports; port++) {
975 struct ocelot_port *ocelot_port = ocelot->ports[port];
976
977 if (!ocelot_port)
978 continue;
979
980 if (ocelot_port->is_dsa_8021q_cpu)
981 mask |= BIT(port);
982 }
983
984 return mask;
985}
986
987void ocelot_apply_bridge_fwd_mask(struct ocelot *ocelot)
988{
989 unsigned long cpu_fwd_mask;
990 int port;
991
992 /* If a DSA tag_8021q CPU exists, it needs to be included in the
993 * regular forwarding path of the front ports regardless of whether
994 * those are bridged or standalone.
995 * If DSA tag_8021q is not used, this returns 0, which is fine because
996 * the hardware-based CPU port module can be a destination for packets
997 * even if it isn't part of PGID_SRC.
998 */
999 cpu_fwd_mask = ocelot_get_dsa_8021q_cpu_mask(ocelot);
1000
Vladimir Oltean9b521252021-01-29 03:00:02 +02001001 /* Apply FWD mask. The loop is needed to add/remove the current port as
1002 * a source for the other ports.
1003 */
1004 for (port = 0; port < ocelot->num_phys_ports; port++) {
Vladimir Olteane21268e2021-01-29 03:00:09 +02001005 struct ocelot_port *ocelot_port = ocelot->ports[port];
1006 unsigned long mask;
1007
1008 if (!ocelot_port) {
1009 /* Unused ports can't send anywhere */
1010 mask = 0;
1011 } else if (ocelot_port->is_dsa_8021q_cpu) {
1012 /* The DSA tag_8021q CPU ports need to be able to
1013 * forward packets to all other ports except for
1014 * themselves
1015 */
1016 mask = GENMASK(ocelot->num_phys_ports - 1, 0);
1017 mask &= ~cpu_fwd_mask;
1018 } else if (ocelot->bridge_fwd_mask & BIT(port)) {
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001019 struct net_device *bond = ocelot_port->bond;
Vladimir Oltean9b521252021-01-29 03:00:02 +02001020
Vladimir Olteane21268e2021-01-29 03:00:09 +02001021 mask = ocelot->bridge_fwd_mask & ~BIT(port);
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001022 if (bond) {
1023 mask &= ~ocelot_get_bond_mask(ocelot, bond,
1024 false);
1025 }
Vladimir Oltean9b521252021-01-29 03:00:02 +02001026 } else {
Vladimir Olteane21268e2021-01-29 03:00:09 +02001027 /* Standalone ports forward only to DSA tag_8021q CPU
1028 * ports (if those exist), or to the hardware CPU port
1029 * module otherwise.
1030 */
1031 mask = cpu_fwd_mask;
Vladimir Oltean9b521252021-01-29 03:00:02 +02001032 }
Vladimir Olteane21268e2021-01-29 03:00:09 +02001033
1034 ocelot_write_rix(ocelot, mask, ANA_PGID_PGID, PGID_SRC + port);
Vladimir Oltean9b521252021-01-29 03:00:02 +02001035 }
1036}
Vladimir Olteane21268e2021-01-29 03:00:09 +02001037EXPORT_SYMBOL(ocelot_apply_bridge_fwd_mask);
Vladimir Oltean9b521252021-01-29 03:00:02 +02001038
Vladimir Oltean5e256362019-11-14 17:03:27 +02001039void ocelot_bridge_stp_state_set(struct ocelot *ocelot, int port, u8 state)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001040{
Vladimir Oltean421741e2021-02-12 17:15:59 +02001041 struct ocelot_port *ocelot_port = ocelot->ports[port];
Alexandre Bellonia556c762018-05-14 22:04:57 +02001042 u32 port_cfg;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001043
Vladimir Oltean4bda1412019-11-09 15:02:51 +02001044 if (!(BIT(port) & ocelot->bridge_mask))
1045 return;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001046
Vladimir Oltean4bda1412019-11-09 15:02:51 +02001047 port_cfg = ocelot_read_gix(ocelot, ANA_PORT_PORT_CFG, port);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001048
1049 switch (state) {
1050 case BR_STATE_FORWARDING:
Vladimir Oltean4bda1412019-11-09 15:02:51 +02001051 ocelot->bridge_fwd_mask |= BIT(port);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001052 fallthrough;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001053 case BR_STATE_LEARNING:
Vladimir Oltean421741e2021-02-12 17:15:59 +02001054 if (ocelot_port->learn_ena)
1055 port_cfg |= ANA_PORT_PORT_CFG_LEARN_ENA;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001056 break;
1057
1058 default:
1059 port_cfg &= ~ANA_PORT_PORT_CFG_LEARN_ENA;
Vladimir Oltean4bda1412019-11-09 15:02:51 +02001060 ocelot->bridge_fwd_mask &= ~BIT(port);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001061 break;
1062 }
1063
Vladimir Oltean4bda1412019-11-09 15:02:51 +02001064 ocelot_write_gix(ocelot, port_cfg, ANA_PORT_PORT_CFG, port);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001065
Vladimir Oltean9b521252021-01-29 03:00:02 +02001066 ocelot_apply_bridge_fwd_mask(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001067}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001068EXPORT_SYMBOL(ocelot_bridge_stp_state_set);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001069
Vladimir Oltean5e256362019-11-14 17:03:27 +02001070void ocelot_set_ageing_time(struct ocelot *ocelot, unsigned int msecs)
Vladimir Oltean4bda1412019-11-09 15:02:51 +02001071{
Vladimir Olteanc0d7ecc2020-05-04 01:20:27 +03001072 unsigned int age_period = ANA_AUTOAGE_AGE_PERIOD(msecs / 2000);
1073
1074 /* Setting AGE_PERIOD to zero effectively disables automatic aging,
1075 * which is clearly not what our intention is. So avoid that.
1076 */
1077 if (!age_period)
1078 age_period = 1;
1079
1080 ocelot_rmw(ocelot, age_period, ANA_AUTOAGE_AGE_PERIOD_M, ANA_AUTOAGE);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001081}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001082EXPORT_SYMBOL(ocelot_set_ageing_time);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001083
Alexandre Bellonia556c762018-05-14 22:04:57 +02001084static struct ocelot_multicast *ocelot_multicast_get(struct ocelot *ocelot,
1085 const unsigned char *addr,
1086 u16 vid)
1087{
1088 struct ocelot_multicast *mc;
1089
1090 list_for_each_entry(mc, &ocelot->multicast, list) {
1091 if (ether_addr_equal(mc->addr, addr) && mc->vid == vid)
1092 return mc;
1093 }
1094
1095 return NULL;
1096}
1097
Vladimir Oltean9403c152020-06-21 14:46:03 +03001098static enum macaccess_entry_type ocelot_classify_mdb(const unsigned char *addr)
1099{
1100 if (addr[0] == 0x01 && addr[1] == 0x00 && addr[2] == 0x5e)
1101 return ENTRYTYPE_MACv4;
1102 if (addr[0] == 0x33 && addr[1] == 0x33)
1103 return ENTRYTYPE_MACv6;
Vladimir Oltean7c313142020-10-29 04:27:34 +02001104 return ENTRYTYPE_LOCKED;
Vladimir Oltean9403c152020-06-21 14:46:03 +03001105}
1106
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001107static struct ocelot_pgid *ocelot_pgid_alloc(struct ocelot *ocelot, int index,
1108 unsigned long ports)
Vladimir Oltean9403c152020-06-21 14:46:03 +03001109{
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001110 struct ocelot_pgid *pgid;
1111
1112 pgid = kzalloc(sizeof(*pgid), GFP_KERNEL);
1113 if (!pgid)
1114 return ERR_PTR(-ENOMEM);
1115
1116 pgid->ports = ports;
1117 pgid->index = index;
1118 refcount_set(&pgid->refcount, 1);
1119 list_add_tail(&pgid->list, &ocelot->pgids);
1120
1121 return pgid;
1122}
1123
1124static void ocelot_pgid_free(struct ocelot *ocelot, struct ocelot_pgid *pgid)
1125{
1126 if (!refcount_dec_and_test(&pgid->refcount))
1127 return;
1128
1129 list_del(&pgid->list);
1130 kfree(pgid);
1131}
1132
1133static struct ocelot_pgid *ocelot_mdb_get_pgid(struct ocelot *ocelot,
1134 const struct ocelot_multicast *mc)
1135{
1136 struct ocelot_pgid *pgid;
1137 int index;
Vladimir Oltean9403c152020-06-21 14:46:03 +03001138
1139 /* According to VSC7514 datasheet 3.9.1.5 IPv4 Multicast Entries and
1140 * 3.9.1.6 IPv6 Multicast Entries, "Instead of a lookup in the
1141 * destination mask table (PGID), the destination set is programmed as
1142 * part of the entry MAC address.", and the DEST_IDX is set to 0.
1143 */
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001144 if (mc->entry_type == ENTRYTYPE_MACv4 ||
1145 mc->entry_type == ENTRYTYPE_MACv6)
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001146 return ocelot_pgid_alloc(ocelot, 0, mc->ports);
Vladimir Oltean9403c152020-06-21 14:46:03 +03001147
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001148 list_for_each_entry(pgid, &ocelot->pgids, list) {
1149 /* When searching for a nonreserved multicast PGID, ignore the
1150 * dummy PGID of zero that we have for MACv4/MACv6 entries
1151 */
1152 if (pgid->index && pgid->ports == mc->ports) {
1153 refcount_inc(&pgid->refcount);
1154 return pgid;
1155 }
1156 }
1157
1158 /* Search for a free index in the nonreserved multicast PGID area */
1159 for_each_nonreserved_multicast_dest_pgid(ocelot, index) {
Vladimir Oltean9403c152020-06-21 14:46:03 +03001160 bool used = false;
1161
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001162 list_for_each_entry(pgid, &ocelot->pgids, list) {
1163 if (pgid->index == index) {
Vladimir Oltean9403c152020-06-21 14:46:03 +03001164 used = true;
1165 break;
1166 }
1167 }
1168
1169 if (!used)
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001170 return ocelot_pgid_alloc(ocelot, index, mc->ports);
Vladimir Oltean9403c152020-06-21 14:46:03 +03001171 }
1172
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001173 return ERR_PTR(-ENOSPC);
Vladimir Oltean9403c152020-06-21 14:46:03 +03001174}
1175
1176static void ocelot_encode_ports_to_mdb(unsigned char *addr,
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001177 struct ocelot_multicast *mc)
Vladimir Oltean9403c152020-06-21 14:46:03 +03001178{
Vladimir Olteanebbd8602020-10-29 04:27:35 +02001179 ether_addr_copy(addr, mc->addr);
Vladimir Oltean9403c152020-06-21 14:46:03 +03001180
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001181 if (mc->entry_type == ENTRYTYPE_MACv4) {
Vladimir Oltean9403c152020-06-21 14:46:03 +03001182 addr[0] = 0;
1183 addr[1] = mc->ports >> 8;
1184 addr[2] = mc->ports & 0xff;
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001185 } else if (mc->entry_type == ENTRYTYPE_MACv6) {
Vladimir Oltean9403c152020-06-21 14:46:03 +03001186 addr[0] = mc->ports >> 8;
1187 addr[1] = mc->ports & 0xff;
1188 }
1189}
1190
Vladimir Oltean209edf92020-06-21 14:46:01 +03001191int ocelot_port_mdb_add(struct ocelot *ocelot, int port,
1192 const struct switchdev_obj_port_mdb *mdb)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001193{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001194 unsigned char addr[ETH_ALEN];
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001195 struct ocelot_multicast *mc;
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001196 struct ocelot_pgid *pgid;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001197 u16 vid = mdb->vid;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001198
Vladimir Oltean471beb12020-06-21 14:46:00 +03001199 if (port == ocelot->npi)
1200 port = ocelot->num_phys_ports;
1201
Alexandre Bellonia556c762018-05-14 22:04:57 +02001202 mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
1203 if (!mc) {
Vladimir Oltean728e69a2020-10-29 04:27:36 +02001204 /* New entry */
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001205 mc = devm_kzalloc(ocelot->dev, sizeof(*mc), GFP_KERNEL);
1206 if (!mc)
1207 return -ENOMEM;
1208
1209 mc->entry_type = ocelot_classify_mdb(mdb->addr);
1210 ether_addr_copy(mc->addr, mdb->addr);
1211 mc->vid = vid;
1212
Alexandre Bellonia556c762018-05-14 22:04:57 +02001213 list_add_tail(&mc->list, &ocelot->multicast);
Vladimir Oltean728e69a2020-10-29 04:27:36 +02001214 } else {
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001215 /* Existing entry. Clean up the current port mask from
1216 * hardware now, because we'll be modifying it.
1217 */
1218 ocelot_pgid_free(ocelot, mc->pgid);
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001219 ocelot_encode_ports_to_mdb(addr, mc);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001220 ocelot_mact_forget(ocelot, addr, vid);
1221 }
1222
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001223 mc->ports |= BIT(port);
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001224
1225 pgid = ocelot_mdb_get_pgid(ocelot, mc);
1226 if (IS_ERR(pgid)) {
1227 dev_err(ocelot->dev,
1228 "Cannot allocate PGID for mdb %pM vid %d\n",
1229 mc->addr, mc->vid);
1230 devm_kfree(ocelot->dev, mc);
1231 return PTR_ERR(pgid);
1232 }
1233 mc->pgid = pgid;
1234
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001235 ocelot_encode_ports_to_mdb(addr, mc);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001236
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001237 if (mc->entry_type != ENTRYTYPE_MACv4 &&
1238 mc->entry_type != ENTRYTYPE_MACv6)
1239 ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID,
1240 pgid->index);
1241
1242 return ocelot_mact_learn(ocelot, pgid->index, addr, vid,
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001243 mc->entry_type);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001244}
Vladimir Oltean209edf92020-06-21 14:46:01 +03001245EXPORT_SYMBOL(ocelot_port_mdb_add);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001246
Vladimir Oltean209edf92020-06-21 14:46:01 +03001247int ocelot_port_mdb_del(struct ocelot *ocelot, int port,
1248 const struct switchdev_obj_port_mdb *mdb)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001249{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001250 unsigned char addr[ETH_ALEN];
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001251 struct ocelot_multicast *mc;
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001252 struct ocelot_pgid *pgid;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001253 u16 vid = mdb->vid;
1254
Vladimir Oltean471beb12020-06-21 14:46:00 +03001255 if (port == ocelot->npi)
1256 port = ocelot->num_phys_ports;
1257
Alexandre Bellonia556c762018-05-14 22:04:57 +02001258 mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
1259 if (!mc)
1260 return -ENOENT;
1261
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001262 ocelot_encode_ports_to_mdb(addr, mc);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001263 ocelot_mact_forget(ocelot, addr, vid);
1264
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001265 ocelot_pgid_free(ocelot, mc->pgid);
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001266 mc->ports &= ~BIT(port);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001267 if (!mc->ports) {
1268 list_del(&mc->list);
1269 devm_kfree(ocelot->dev, mc);
1270 return 0;
1271 }
1272
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001273 /* We have a PGID with fewer ports now */
1274 pgid = ocelot_mdb_get_pgid(ocelot, mc);
1275 if (IS_ERR(pgid))
1276 return PTR_ERR(pgid);
1277 mc->pgid = pgid;
1278
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001279 ocelot_encode_ports_to_mdb(addr, mc);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001280
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001281 if (mc->entry_type != ENTRYTYPE_MACv4 &&
1282 mc->entry_type != ENTRYTYPE_MACv6)
1283 ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID,
1284 pgid->index);
1285
1286 return ocelot_mact_learn(ocelot, pgid->index, addr, vid,
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001287 mc->entry_type);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001288}
Vladimir Oltean209edf92020-06-21 14:46:01 +03001289EXPORT_SYMBOL(ocelot_port_mdb_del);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001290
Vladimir Oltean5e256362019-11-14 17:03:27 +02001291int ocelot_port_bridge_join(struct ocelot *ocelot, int port,
1292 struct net_device *bridge)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001293{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001294 if (!ocelot->bridge_mask) {
1295 ocelot->hw_bridge_dev = bridge;
1296 } else {
1297 if (ocelot->hw_bridge_dev != bridge)
1298 /* This is adding the port to a second bridge, this is
1299 * unsupported */
1300 return -ENODEV;
1301 }
1302
Vladimir Olteanf270dbf2019-11-09 15:02:52 +02001303 ocelot->bridge_mask |= BIT(port);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001304
1305 return 0;
1306}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001307EXPORT_SYMBOL(ocelot_port_bridge_join);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001308
Vladimir Oltean5e256362019-11-14 17:03:27 +02001309int ocelot_port_bridge_leave(struct ocelot *ocelot, int port,
1310 struct net_device *bridge)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001311{
Vladimir Olteanc3e58a752020-10-31 12:29:12 +02001312 struct ocelot_vlan pvid = {0}, native_vlan = {0};
Vladimir Oltean2e554a72020-10-03 01:06:46 +03001313 int ret;
1314
Vladimir Oltean97bb69e2019-11-09 15:02:47 +02001315 ocelot->bridge_mask &= ~BIT(port);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001316
1317 if (!ocelot->bridge_mask)
1318 ocelot->hw_bridge_dev = NULL;
Antoine Tenart71425292018-06-26 14:28:49 +02001319
Vladimir Olteanbae33f22021-01-09 02:01:50 +02001320 ret = ocelot_port_vlan_filtering(ocelot, port, false);
Vladimir Oltean2e554a72020-10-03 01:06:46 +03001321 if (ret)
1322 return ret;
1323
Vladimir Olteanc3e58a752020-10-31 12:29:12 +02001324 ocelot_port_set_pvid(ocelot, port, pvid);
Vladimir Oltean2f0402f2020-10-31 12:29:15 +02001325 ocelot_port_set_native_vlan(ocelot, port, native_vlan);
1326
1327 return 0;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001328}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001329EXPORT_SYMBOL(ocelot_port_bridge_leave);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001330
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001331static void ocelot_set_aggr_pgids(struct ocelot *ocelot)
1332{
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001333 unsigned long visited = GENMASK(ocelot->num_phys_ports - 1, 0);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001334 int i, port, lag;
1335
1336 /* Reset destination and aggregation PGIDS */
Vladimir Oltean96b029b2020-06-21 14:46:02 +03001337 for_each_unicast_dest_pgid(ocelot, port)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001338 ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
1339
Vladimir Oltean96b029b2020-06-21 14:46:02 +03001340 for_each_aggr_pgid(ocelot, i)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001341 ocelot_write_rix(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0),
1342 ANA_PGID_PGID, i);
1343
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001344 /* The visited ports bitmask holds the list of ports offloading any
1345 * bonding interface. Initially we mark all these ports as unvisited,
1346 * then every time we visit a port in this bitmask, we know that it is
1347 * the lowest numbered port, i.e. the one whose logical ID == physical
1348 * port ID == LAG ID. So we mark as visited all further ports in the
1349 * bitmask that are offloading the same bonding interface. This way,
1350 * we set up the aggregation PGIDs only once per bonding interface.
1351 */
1352 for (port = 0; port < ocelot->num_phys_ports; port++) {
1353 struct ocelot_port *ocelot_port = ocelot->ports[port];
1354
1355 if (!ocelot_port || !ocelot_port->bond)
1356 continue;
1357
1358 visited &= ~BIT(port);
1359 }
1360
1361 /* Now, set PGIDs for each active LAG */
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001362 for (lag = 0; lag < ocelot->num_phys_ports; lag++) {
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001363 struct net_device *bond = ocelot->ports[lag]->bond;
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001364 int num_active_ports = 0;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001365 unsigned long bond_mask;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001366 u8 aggr_idx[16];
1367
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001368 if (!bond || (visited & BIT(lag)))
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001369 continue;
1370
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001371 bond_mask = ocelot_get_bond_mask(ocelot, bond, true);
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001372
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001373 for_each_set_bit(port, &bond_mask, ocelot->num_phys_ports) {
1374 // Destination mask
1375 ocelot_write_rix(ocelot, bond_mask,
1376 ANA_PGID_PGID, port);
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001377 aggr_idx[num_active_ports++] = port;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001378 }
1379
Vladimir Oltean96b029b2020-06-21 14:46:02 +03001380 for_each_aggr_pgid(ocelot, i) {
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001381 u32 ac;
1382
1383 ac = ocelot_read_rix(ocelot, ANA_PGID_PGID, i);
1384 ac &= ~bond_mask;
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001385 /* Don't do division by zero if there was no active
1386 * port. Just make all aggregation codes zero.
1387 */
1388 if (num_active_ports)
1389 ac |= BIT(aggr_idx[i % num_active_ports]);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001390 ocelot_write_rix(ocelot, ac, ANA_PGID_PGID, i);
1391 }
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001392
1393 /* Mark all ports in the same LAG as visited to avoid applying
1394 * the same config again.
1395 */
1396 for (port = lag; port < ocelot->num_phys_ports; port++) {
1397 struct ocelot_port *ocelot_port = ocelot->ports[port];
1398
1399 if (!ocelot_port)
1400 continue;
1401
1402 if (ocelot_port->bond == bond)
1403 visited |= BIT(port);
1404 }
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001405 }
1406}
1407
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001408/* When offloading a bonding interface, the switch ports configured under the
1409 * same bond must have the same logical port ID, equal to the physical port ID
1410 * of the lowest numbered physical port in that bond. Otherwise, in standalone/
1411 * bridged mode, each port has a logical port ID equal to its physical port ID.
1412 */
1413static void ocelot_setup_logical_port_ids(struct ocelot *ocelot)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001414{
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001415 int port;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001416
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001417 for (port = 0; port < ocelot->num_phys_ports; port++) {
1418 struct ocelot_port *ocelot_port = ocelot->ports[port];
1419 struct net_device *bond;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001420
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001421 if (!ocelot_port)
1422 continue;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001423
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001424 bond = ocelot_port->bond;
1425 if (bond) {
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001426 int lag = __ffs(ocelot_get_bond_mask(ocelot, bond,
1427 false));
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001428
1429 ocelot_rmw_gix(ocelot,
1430 ANA_PORT_PORT_CFG_PORTID_VAL(lag),
1431 ANA_PORT_PORT_CFG_PORTID_VAL_M,
1432 ANA_PORT_PORT_CFG, port);
1433 } else {
1434 ocelot_rmw_gix(ocelot,
1435 ANA_PORT_PORT_CFG_PORTID_VAL(port),
1436 ANA_PORT_PORT_CFG_PORTID_VAL_M,
1437 ANA_PORT_PORT_CFG, port);
1438 }
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001439 }
1440}
1441
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03001442int ocelot_port_lag_join(struct ocelot *ocelot, int port,
Vladimir Oltean583cbbe2021-02-06 00:02:12 +02001443 struct net_device *bond,
1444 struct netdev_lag_upper_info *info)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001445{
Vladimir Oltean583cbbe2021-02-06 00:02:12 +02001446 if (info->tx_type != NETDEV_LAG_TX_TYPE_HASH)
1447 return -EOPNOTSUPP;
1448
Vladimir Olteanb80af652021-02-06 00:02:14 +02001449 ocelot->ports[port]->bond = bond;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001450
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001451 ocelot_setup_logical_port_ids(ocelot);
Vladimir Oltean9b521252021-01-29 03:00:02 +02001452 ocelot_apply_bridge_fwd_mask(ocelot);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001453 ocelot_set_aggr_pgids(ocelot);
1454
1455 return 0;
1456}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03001457EXPORT_SYMBOL(ocelot_port_lag_join);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001458
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03001459void ocelot_port_lag_leave(struct ocelot *ocelot, int port,
1460 struct net_device *bond)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001461{
Vladimir Olteanb80af652021-02-06 00:02:14 +02001462 ocelot->ports[port]->bond = NULL;
1463
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001464 ocelot_setup_logical_port_ids(ocelot);
Vladimir Oltean9b521252021-01-29 03:00:02 +02001465 ocelot_apply_bridge_fwd_mask(ocelot);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001466 ocelot_set_aggr_pgids(ocelot);
1467}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03001468EXPORT_SYMBOL(ocelot_port_lag_leave);
Petr Machata0e332c82018-11-22 23:30:11 +00001469
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001470void ocelot_port_lag_change(struct ocelot *ocelot, int port, bool lag_tx_active)
1471{
1472 struct ocelot_port *ocelot_port = ocelot->ports[port];
1473
1474 ocelot_port->lag_tx_active = lag_tx_active;
1475
1476 /* Rebalance the LAGs */
1477 ocelot_set_aggr_pgids(ocelot);
1478}
1479EXPORT_SYMBOL(ocelot_port_lag_change);
1480
Vladimir Olteana8015de2020-03-10 03:28:18 +02001481/* Configure the maximum SDU (L2 payload) on RX to the value specified in @sdu.
1482 * The length of VLAN tags is accounted for automatically via DEV_MAC_TAGS_CFG.
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02001483 * In the special case that it's the NPI port that we're configuring, the
1484 * length of the tag and optional prefix needs to be accounted for privately,
1485 * in order to be able to sustain communication at the requested @sdu.
Vladimir Olteana8015de2020-03-10 03:28:18 +02001486 */
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02001487void ocelot_port_set_maxlen(struct ocelot *ocelot, int port, size_t sdu)
Vladimir Oltean31350d72019-11-09 15:02:56 +02001488{
1489 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteana8015de2020-03-10 03:28:18 +02001490 int maxlen = sdu + ETH_HLEN + ETH_FCS_LEN;
Vladimir Olteane8e6e732020-07-13 19:57:05 +03001491 int pause_start, pause_stop;
Vladimir Oltean601e9842020-10-05 12:09:11 +03001492 int atop, atop_tot;
Vladimir Oltean31350d72019-11-09 15:02:56 +02001493
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02001494 if (port == ocelot->npi) {
1495 maxlen += OCELOT_TAG_LEN;
1496
Vladimir Olteancacea622021-01-29 03:00:03 +02001497 if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT)
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02001498 maxlen += OCELOT_SHORT_PREFIX_LEN;
Vladimir Olteancacea622021-01-29 03:00:03 +02001499 else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG)
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02001500 maxlen += OCELOT_LONG_PREFIX_LEN;
1501 }
1502
Vladimir Olteana8015de2020-03-10 03:28:18 +02001503 ocelot_port_writel(ocelot_port, maxlen, DEV_MAC_MAXLEN_CFG);
Vladimir Olteanfa914e92019-11-14 17:03:23 +02001504
Vladimir Olteane8e6e732020-07-13 19:57:05 +03001505 /* Set Pause watermark hysteresis */
1506 pause_start = 6 * maxlen / OCELOT_BUFFER_CELL_SZ;
1507 pause_stop = 4 * maxlen / OCELOT_BUFFER_CELL_SZ;
Maxim Kochetkov541132f2020-07-13 19:57:07 +03001508 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_START,
1509 pause_start);
1510 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_STOP,
1511 pause_stop);
Vladimir Olteanfa914e92019-11-14 17:03:23 +02001512
Vladimir Oltean601e9842020-10-05 12:09:11 +03001513 /* Tail dropping watermarks */
Vladimir Olteanf6fe01d2021-01-15 04:11:11 +02001514 atop_tot = (ocelot->packet_buffer_size - 9 * maxlen) /
Vladimir Olteana8015de2020-03-10 03:28:18 +02001515 OCELOT_BUFFER_CELL_SZ;
Vladimir Oltean601e9842020-10-05 12:09:11 +03001516 atop = (9 * maxlen) / OCELOT_BUFFER_CELL_SZ;
1517 ocelot_write_rix(ocelot, ocelot->ops->wm_enc(atop), SYS_ATOP, port);
1518 ocelot_write(ocelot, ocelot->ops->wm_enc(atop_tot), SYS_ATOP_TOT_CFG);
Vladimir Olteanfa914e92019-11-14 17:03:23 +02001519}
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02001520EXPORT_SYMBOL(ocelot_port_set_maxlen);
1521
1522int ocelot_get_max_mtu(struct ocelot *ocelot, int port)
1523{
1524 int max_mtu = 65535 - ETH_HLEN - ETH_FCS_LEN;
1525
1526 if (port == ocelot->npi) {
1527 max_mtu -= OCELOT_TAG_LEN;
1528
Vladimir Olteancacea622021-01-29 03:00:03 +02001529 if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT)
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02001530 max_mtu -= OCELOT_SHORT_PREFIX_LEN;
Vladimir Olteancacea622021-01-29 03:00:03 +02001531 else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG)
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02001532 max_mtu -= OCELOT_LONG_PREFIX_LEN;
1533 }
1534
1535 return max_mtu;
1536}
1537EXPORT_SYMBOL(ocelot_get_max_mtu);
Vladimir Olteanfa914e92019-11-14 17:03:23 +02001538
Vladimir Oltean421741e2021-02-12 17:15:59 +02001539static void ocelot_port_set_learning(struct ocelot *ocelot, int port,
1540 bool enabled)
1541{
1542 struct ocelot_port *ocelot_port = ocelot->ports[port];
1543 u32 val = 0;
1544
1545 if (enabled)
1546 val = ANA_PORT_PORT_CFG_LEARN_ENA;
1547
1548 ocelot_rmw_gix(ocelot, val, ANA_PORT_PORT_CFG_LEARN_ENA,
1549 ANA_PORT_PORT_CFG, port);
1550
1551 ocelot_port->learn_ena = enabled;
1552}
1553
1554static void ocelot_port_set_ucast_flood(struct ocelot *ocelot, int port,
1555 bool enabled)
1556{
1557 u32 val = 0;
1558
1559 if (enabled)
1560 val = BIT(port);
1561
1562 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_UC);
1563}
1564
1565static void ocelot_port_set_mcast_flood(struct ocelot *ocelot, int port,
1566 bool enabled)
1567{
1568 u32 val = 0;
1569
1570 if (enabled)
1571 val = BIT(port);
1572
1573 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_MC);
1574}
1575
1576static void ocelot_port_set_bcast_flood(struct ocelot *ocelot, int port,
1577 bool enabled)
1578{
1579 u32 val = 0;
1580
1581 if (enabled)
1582 val = BIT(port);
1583
1584 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_BC);
1585}
1586
1587int ocelot_port_pre_bridge_flags(struct ocelot *ocelot, int port,
1588 struct switchdev_brport_flags flags)
1589{
1590 if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
1591 BR_BCAST_FLOOD))
1592 return -EINVAL;
1593
1594 return 0;
1595}
1596EXPORT_SYMBOL(ocelot_port_pre_bridge_flags);
1597
1598void ocelot_port_bridge_flags(struct ocelot *ocelot, int port,
1599 struct switchdev_brport_flags flags)
1600{
1601 if (flags.mask & BR_LEARNING)
1602 ocelot_port_set_learning(ocelot, port,
1603 !!(flags.val & BR_LEARNING));
1604
1605 if (flags.mask & BR_FLOOD)
1606 ocelot_port_set_ucast_flood(ocelot, port,
1607 !!(flags.val & BR_FLOOD));
1608
1609 if (flags.mask & BR_MCAST_FLOOD)
1610 ocelot_port_set_mcast_flood(ocelot, port,
1611 !!(flags.val & BR_MCAST_FLOOD));
1612
1613 if (flags.mask & BR_BCAST_FLOOD)
1614 ocelot_port_set_bcast_flood(ocelot, port,
1615 !!(flags.val & BR_BCAST_FLOOD));
1616}
1617EXPORT_SYMBOL(ocelot_port_bridge_flags);
1618
Vladimir Oltean5e256362019-11-14 17:03:27 +02001619void ocelot_init_port(struct ocelot *ocelot, int port)
Vladimir Olteanfa914e92019-11-14 17:03:23 +02001620{
1621 struct ocelot_port *ocelot_port = ocelot->ports[port];
1622
Yangbo Lub049da12019-11-27 15:27:57 +08001623 skb_queue_head_init(&ocelot_port->tx_skbs);
Vladimir Oltean65652432020-09-18 04:07:24 +03001624 spin_lock_init(&ocelot_port->ts_id_lock);
Vladimir Oltean31350d72019-11-09 15:02:56 +02001625
1626 /* Basic L2 initialization */
1627
Vladimir Oltean5bc9d2e2019-11-14 17:03:22 +02001628 /* Set MAC IFG Gaps
1629 * FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 0
1630 * !FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 5
1631 */
1632 ocelot_port_writel(ocelot_port, DEV_MAC_IFG_CFG_TX_IFG(5),
1633 DEV_MAC_IFG_CFG);
1634
1635 /* Load seed (0) and set MAC HDX late collision */
1636 ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67) |
1637 DEV_MAC_HDX_CFG_SEED_LOAD,
1638 DEV_MAC_HDX_CFG);
1639 mdelay(1);
1640 ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67),
1641 DEV_MAC_HDX_CFG);
1642
1643 /* Set Max Length and maximum tags allowed */
Vladimir Olteana8015de2020-03-10 03:28:18 +02001644 ocelot_port_set_maxlen(ocelot, port, ETH_DATA_LEN);
Vladimir Oltean5bc9d2e2019-11-14 17:03:22 +02001645 ocelot_port_writel(ocelot_port, DEV_MAC_TAGS_CFG_TAG_ID(ETH_P_8021AD) |
1646 DEV_MAC_TAGS_CFG_VLAN_AWR_ENA |
Vladimir Olteana8015de2020-03-10 03:28:18 +02001647 DEV_MAC_TAGS_CFG_VLAN_DBL_AWR_ENA |
Vladimir Oltean5bc9d2e2019-11-14 17:03:22 +02001648 DEV_MAC_TAGS_CFG_VLAN_LEN_AWR_ENA,
1649 DEV_MAC_TAGS_CFG);
1650
1651 /* Set SMAC of Pause frame (00:00:00:00:00:00) */
1652 ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_HIGH_CFG);
1653 ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_LOW_CFG);
1654
Vladimir Olteane8e6e732020-07-13 19:57:05 +03001655 /* Enable transmission of pause frames */
Maxim Kochetkov541132f2020-07-13 19:57:07 +03001656 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 1);
Vladimir Olteane8e6e732020-07-13 19:57:05 +03001657
Vladimir Oltean31350d72019-11-09 15:02:56 +02001658 /* Drop frames with multicast source address */
1659 ocelot_rmw_gix(ocelot, ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA,
1660 ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA,
1661 ANA_PORT_DROP_CFG, port);
1662
1663 /* Set default VLAN and tag type to 8021Q. */
1664 ocelot_rmw_gix(ocelot, REW_PORT_VLAN_CFG_PORT_TPID(ETH_P_8021Q),
1665 REW_PORT_VLAN_CFG_PORT_TPID_M,
1666 REW_PORT_VLAN_CFG, port);
1667
Vladimir Oltean421741e2021-02-12 17:15:59 +02001668 /* Disable source address learning for standalone mode */
1669 ocelot_port_set_learning(ocelot, port, false);
1670
Vladimir Oltean31350d72019-11-09 15:02:56 +02001671 /* Enable vcap lookups */
1672 ocelot_vcap_enable(ocelot, port);
1673}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001674EXPORT_SYMBOL(ocelot_init_port);
Vladimir Oltean31350d72019-11-09 15:02:56 +02001675
Vladimir Oltean2d44b092020-09-26 22:32:01 +03001676/* Configure and enable the CPU port module, which is a set of queues
1677 * accessible through register MMIO, frame DMA or Ethernet (in case
1678 * NPI mode is used).
Vladimir Oltean69df5782020-02-29 16:50:02 +02001679 */
Vladimir Oltean2d44b092020-09-26 22:32:01 +03001680static void ocelot_cpu_port_init(struct ocelot *ocelot)
Vladimir Oltean21468192019-11-09 15:03:00 +02001681{
Vladimir Oltean69df5782020-02-29 16:50:02 +02001682 int cpu = ocelot->num_phys_ports;
1683
1684 /* The unicast destination PGID for the CPU port module is unused */
Vladimir Oltean21468192019-11-09 15:03:00 +02001685 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, cpu);
Vladimir Oltean69df5782020-02-29 16:50:02 +02001686 /* Instead set up a multicast destination PGID for traffic copied to
1687 * the CPU. Whitelisted MAC addresses like the port netdevice MAC
1688 * addresses will be copied to the CPU via this PGID.
1689 */
Vladimir Oltean21468192019-11-09 15:03:00 +02001690 ocelot_write_rix(ocelot, BIT(cpu), ANA_PGID_PGID, PGID_CPU);
1691 ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_RECV_ENA |
1692 ANA_PORT_PORT_CFG_PORTID_VAL(cpu),
1693 ANA_PORT_PORT_CFG, cpu);
1694
Vladimir Oltean69df5782020-02-29 16:50:02 +02001695 /* Enable CPU port module */
Vladimir Oltean886e1382020-07-13 19:57:03 +03001696 ocelot_fields_write(ocelot, cpu, QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);
Vladimir Oltean69df5782020-02-29 16:50:02 +02001697 /* CPU port Injection/Extraction configuration */
Vladimir Oltean886e1382020-07-13 19:57:03 +03001698 ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_XTR_HDR,
Vladimir Olteancacea622021-01-29 03:00:03 +02001699 OCELOT_TAG_PREFIX_NONE);
Vladimir Oltean886e1382020-07-13 19:57:03 +03001700 ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_INJ_HDR,
Vladimir Olteancacea622021-01-29 03:00:03 +02001701 OCELOT_TAG_PREFIX_NONE);
Vladimir Oltean21468192019-11-09 15:03:00 +02001702
1703 /* Configure the CPU port to be VLAN aware */
1704 ocelot_write_gix(ocelot, ANA_PORT_VLAN_CFG_VLAN_VID(0) |
1705 ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
1706 ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1),
1707 ANA_PORT_VLAN_CFG, cpu);
Vladimir Oltean21468192019-11-09 15:03:00 +02001708}
Vladimir Oltean21468192019-11-09 15:03:00 +02001709
Vladimir Olteanf6fe01d2021-01-15 04:11:11 +02001710static void ocelot_detect_features(struct ocelot *ocelot)
1711{
1712 int mmgt, eq_ctrl;
1713
1714 /* For Ocelot, Felix, Seville, Serval etc, SYS:MMGT:MMGT:FREECNT holds
1715 * the number of 240-byte free memory words (aka 4-cell chunks) and not
1716 * 192 bytes as the documentation incorrectly says.
1717 */
1718 mmgt = ocelot_read(ocelot, SYS_MMGT);
1719 ocelot->packet_buffer_size = 240 * SYS_MMGT_FREECNT(mmgt);
1720
1721 eq_ctrl = ocelot_read(ocelot, QSYS_EQ_CTRL);
1722 ocelot->num_frame_refs = QSYS_MMGT_EQ_CTRL_FP_FREE_CNT(eq_ctrl);
Vladimir Olteanf6fe01d2021-01-15 04:11:11 +02001723}
1724
Alexandre Bellonia556c762018-05-14 22:04:57 +02001725int ocelot_init(struct ocelot *ocelot)
1726{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001727 char queue_name[32];
Vladimir Oltean21468192019-11-09 15:03:00 +02001728 int i, ret;
1729 u32 port;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001730
Vladimir Oltean3a77b592019-11-14 17:03:26 +02001731 if (ocelot->ops->reset) {
1732 ret = ocelot->ops->reset(ocelot);
1733 if (ret) {
1734 dev_err(ocelot->dev, "Switch reset failed\n");
1735 return ret;
1736 }
1737 }
1738
Alexandre Bellonia556c762018-05-14 22:04:57 +02001739 ocelot->stats = devm_kcalloc(ocelot->dev,
1740 ocelot->num_phys_ports * ocelot->num_stats,
1741 sizeof(u64), GFP_KERNEL);
1742 if (!ocelot->stats)
1743 return -ENOMEM;
1744
1745 mutex_init(&ocelot->stats_lock);
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001746 mutex_init(&ocelot->ptp_lock);
1747 spin_lock_init(&ocelot->ptp_clock_lock);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001748 snprintf(queue_name, sizeof(queue_name), "%s-stats",
1749 dev_name(ocelot->dev));
1750 ocelot->stats_queue = create_singlethread_workqueue(queue_name);
1751 if (!ocelot->stats_queue)
1752 return -ENOMEM;
1753
Vladimir Olteanca0b2722020-12-12 21:16:12 +02001754 ocelot->owq = alloc_ordered_workqueue("ocelot-owq", 0);
1755 if (!ocelot->owq) {
1756 destroy_workqueue(ocelot->stats_queue);
1757 return -ENOMEM;
1758 }
1759
Claudiu Manoil2b120dd2019-11-09 15:02:58 +02001760 INIT_LIST_HEAD(&ocelot->multicast);
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001761 INIT_LIST_HEAD(&ocelot->pgids);
Vladimir Olteanf6fe01d2021-01-15 04:11:11 +02001762 ocelot_detect_features(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001763 ocelot_mact_init(ocelot);
1764 ocelot_vlan_init(ocelot);
Vladimir Olteanaae4e502020-06-20 18:43:46 +03001765 ocelot_vcap_init(ocelot);
Vladimir Oltean2d44b092020-09-26 22:32:01 +03001766 ocelot_cpu_port_init(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001767
1768 for (port = 0; port < ocelot->num_phys_ports; port++) {
1769 /* Clear all counters (5 groups) */
1770 ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port) |
1771 SYS_STAT_CFG_STAT_CLEAR_SHOT(0x7f),
1772 SYS_STAT_CFG);
1773 }
1774
1775 /* Only use S-Tag */
1776 ocelot_write(ocelot, ETH_P_8021AD, SYS_VLAN_ETYPE_CFG);
1777
1778 /* Aggregation mode */
1779 ocelot_write(ocelot, ANA_AGGR_CFG_AC_SMAC_ENA |
1780 ANA_AGGR_CFG_AC_DMAC_ENA |
1781 ANA_AGGR_CFG_AC_IP4_SIPDIP_ENA |
Vladimir Olteanf79c20c2021-02-06 00:02:13 +02001782 ANA_AGGR_CFG_AC_IP4_TCPUDP_ENA |
1783 ANA_AGGR_CFG_AC_IP6_FLOW_LBL_ENA |
1784 ANA_AGGR_CFG_AC_IP6_TCPUDP_ENA,
1785 ANA_AGGR_CFG);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001786
1787 /* Set MAC age time to default value. The entry is aged after
1788 * 2*AGE_PERIOD
1789 */
1790 ocelot_write(ocelot,
1791 ANA_AUTOAGE_AGE_PERIOD(BR_DEFAULT_AGEING_TIME / 2 / HZ),
1792 ANA_AUTOAGE);
1793
1794 /* Disable learning for frames discarded by VLAN ingress filtering */
1795 regmap_field_write(ocelot->regfields[ANA_ADVLEARN_VLAN_CHK], 1);
1796
1797 /* Setup frame ageing - fixed value "2 sec" - in 6.5 us units */
1798 ocelot_write(ocelot, SYS_FRM_AGING_AGE_TX_ENA |
1799 SYS_FRM_AGING_MAX_AGE(307692), SYS_FRM_AGING);
1800
1801 /* Setup flooding PGIDs */
Vladimir Olteanedd24102020-12-04 19:54:16 +02001802 for (i = 0; i < ocelot->num_flooding_pgids; i++)
1803 ocelot_write_rix(ocelot, ANA_FLOODING_FLD_MULTICAST(PGID_MC) |
Vladimir Olteanb360d942021-02-12 17:15:58 +02001804 ANA_FLOODING_FLD_BROADCAST(PGID_BC) |
Vladimir Olteanedd24102020-12-04 19:54:16 +02001805 ANA_FLOODING_FLD_UNICAST(PGID_UC),
1806 ANA_FLOODING, i);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001807 ocelot_write(ocelot, ANA_FLOODING_IPMC_FLD_MC6_DATA(PGID_MCIPV6) |
1808 ANA_FLOODING_IPMC_FLD_MC6_CTRL(PGID_MC) |
1809 ANA_FLOODING_IPMC_FLD_MC4_DATA(PGID_MCIPV4) |
1810 ANA_FLOODING_IPMC_FLD_MC4_CTRL(PGID_MC),
1811 ANA_FLOODING_IPMC);
1812
1813 for (port = 0; port < ocelot->num_phys_ports; port++) {
1814 /* Transmit the frame to the local port. */
1815 ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
1816 /* Do not forward BPDU frames to the front ports. */
1817 ocelot_write_gix(ocelot,
1818 ANA_PORT_CPU_FWD_BPDU_CFG_BPDU_REDIR_ENA(0xffff),
1819 ANA_PORT_CPU_FWD_BPDU_CFG,
1820 port);
1821 /* Ensure bridging is disabled */
1822 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_SRC + port);
1823 }
1824
Vladimir Oltean96b029b2020-06-21 14:46:02 +03001825 for_each_nonreserved_multicast_dest_pgid(ocelot, i) {
Alexandre Bellonia556c762018-05-14 22:04:57 +02001826 u32 val = ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports - 1, 0));
1827
1828 ocelot_write_rix(ocelot, val, ANA_PGID_PGID, i);
1829 }
Vladimir Olteanb360d942021-02-12 17:15:58 +02001830 /* Allow broadcast and unknown L2 multicast to the CPU. */
1831 ocelot_rmw_rix(ocelot, ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
1832 ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
1833 ANA_PGID_PGID, PGID_MC);
1834 ocelot_rmw_rix(ocelot, ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
1835 ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
1836 ANA_PGID_PGID, PGID_BC);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001837 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV4);
1838 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV6);
1839
Alexandre Bellonia556c762018-05-14 22:04:57 +02001840 /* Allow manual injection via DEVCPU_QS registers, and byte swap these
1841 * registers endianness.
1842 */
1843 ocelot_write_rix(ocelot, QS_INJ_GRP_CFG_BYTE_SWAP |
1844 QS_INJ_GRP_CFG_MODE(1), QS_INJ_GRP_CFG, 0);
1845 ocelot_write_rix(ocelot, QS_XTR_GRP_CFG_BYTE_SWAP |
1846 QS_XTR_GRP_CFG_MODE(1), QS_XTR_GRP_CFG, 0);
1847 ocelot_write(ocelot, ANA_CPUQ_CFG_CPUQ_MIRROR(2) |
1848 ANA_CPUQ_CFG_CPUQ_LRN(2) |
1849 ANA_CPUQ_CFG_CPUQ_MAC_COPY(2) |
1850 ANA_CPUQ_CFG_CPUQ_SRC_COPY(2) |
1851 ANA_CPUQ_CFG_CPUQ_LOCKED_PORTMOVE(2) |
1852 ANA_CPUQ_CFG_CPUQ_ALLBRIDGE(6) |
1853 ANA_CPUQ_CFG_CPUQ_IPMC_CTRL(6) |
1854 ANA_CPUQ_CFG_CPUQ_IGMP(6) |
1855 ANA_CPUQ_CFG_CPUQ_MLD(6), ANA_CPUQ_CFG);
1856 for (i = 0; i < 16; i++)
1857 ocelot_write_rix(ocelot, ANA_CPUQ_8021_CFG_CPUQ_GARP_VAL(6) |
1858 ANA_CPUQ_8021_CFG_CPUQ_BPDU_VAL(6),
1859 ANA_CPUQ_8021_CFG, i);
1860
Claudiu Manoil1e1caa92019-04-16 17:51:59 +03001861 INIT_DELAYED_WORK(&ocelot->stats_work, ocelot_check_stats_work);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001862 queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
1863 OCELOT_STATS_CHECK_DELAY);
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001864
Alexandre Bellonia556c762018-05-14 22:04:57 +02001865 return 0;
1866}
1867EXPORT_SYMBOL(ocelot_init);
1868
1869void ocelot_deinit(struct ocelot *ocelot)
1870{
Claudiu Manoilc5d13962019-07-25 16:33:18 +03001871 cancel_delayed_work(&ocelot->stats_work);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001872 destroy_workqueue(ocelot->stats_queue);
Vladimir Olteanca0b2722020-12-12 21:16:12 +02001873 destroy_workqueue(ocelot->owq);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001874 mutex_destroy(&ocelot->stats_lock);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001875}
1876EXPORT_SYMBOL(ocelot_deinit);
1877
Vladimir Olteane5fb5122020-09-18 04:07:30 +03001878void ocelot_deinit_port(struct ocelot *ocelot, int port)
1879{
1880 struct ocelot_port *ocelot_port = ocelot->ports[port];
1881
1882 skb_queue_purge(&ocelot_port->tx_skbs);
1883}
1884EXPORT_SYMBOL(ocelot_deinit_port);
1885
Alexandre Bellonia556c762018-05-14 22:04:57 +02001886MODULE_LICENSE("Dual MIT/GPL");