blob: 95920668feb05786998a1e1d8538e7fc4a2503fb [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 */
Vladimir Oltean40d3f292021-02-14 00:37:56 +02007#include <linux/dsa/ocelot.h>
Alexandre Bellonia556c762018-05-14 22:04:57 +02008#include <linux/if_bridge.h>
Yangbo Lu39e53082021-04-27 12:22:03 +08009#include <linux/ptp_classify.h>
Vladimir Oltean20968052020-09-30 01:27:26 +030010#include <soc/mscc/ocelot_vcap.h>
Alexandre Bellonia556c762018-05-14 22:04:57 +020011#include "ocelot.h"
Vladimir Oltean3c836542020-06-20 18:43:45 +030012#include "ocelot_vcap.h"
Alexandre Bellonia556c762018-05-14 22:04:57 +020013
Steen Hegelund639c1b22018-12-20 14:16:31 +010014#define TABLE_UPDATE_SLEEP_US 10
15#define TABLE_UPDATE_TIMEOUT_US 100000
16
Alexandre Bellonia556c762018-05-14 22:04:57 +020017struct ocelot_mact_entry {
18 u8 mac[ETH_ALEN];
19 u16 vid;
20 enum macaccess_entry_type type;
21};
22
Vladimir Oltean24683462021-10-24 20:17:51 +030023/* Caller must hold &ocelot->mact_lock */
Steen Hegelund639c1b22018-12-20 14:16:31 +010024static inline u32 ocelot_mact_read_macaccess(struct ocelot *ocelot)
25{
26 return ocelot_read(ocelot, ANA_TABLES_MACACCESS);
27}
28
Vladimir Oltean24683462021-10-24 20:17:51 +030029/* Caller must hold &ocelot->mact_lock */
Alexandre Bellonia556c762018-05-14 22:04:57 +020030static inline int ocelot_mact_wait_for_completion(struct ocelot *ocelot)
31{
Steen Hegelund639c1b22018-12-20 14:16:31 +010032 u32 val;
Alexandre Bellonia556c762018-05-14 22:04:57 +020033
Steen Hegelund639c1b22018-12-20 14:16:31 +010034 return readx_poll_timeout(ocelot_mact_read_macaccess,
35 ocelot, val,
36 (val & ANA_TABLES_MACACCESS_MAC_TABLE_CMD_M) ==
37 MACACCESS_CMD_IDLE,
38 TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
Alexandre Bellonia556c762018-05-14 22:04:57 +020039}
40
Vladimir Oltean24683462021-10-24 20:17:51 +030041/* Caller must hold &ocelot->mact_lock */
Alexandre Bellonia556c762018-05-14 22:04:57 +020042static void ocelot_mact_select(struct ocelot *ocelot,
43 const unsigned char mac[ETH_ALEN],
44 unsigned int vid)
45{
46 u32 macl = 0, mach = 0;
47
48 /* Set the MAC address to handle and the vlan associated in a format
49 * understood by the hardware.
50 */
51 mach |= vid << 16;
52 mach |= mac[0] << 8;
53 mach |= mac[1] << 0;
54 macl |= mac[2] << 24;
55 macl |= mac[3] << 16;
56 macl |= mac[4] << 8;
57 macl |= mac[5] << 0;
58
59 ocelot_write(ocelot, macl, ANA_TABLES_MACLDATA);
60 ocelot_write(ocelot, mach, ANA_TABLES_MACHDATA);
61
62}
63
Xiaoliang Yang0568c3b2021-11-18 18:11:57 +080064static int __ocelot_mact_learn(struct ocelot *ocelot, int port,
65 const unsigned char mac[ETH_ALEN],
66 unsigned int vid, enum macaccess_entry_type type)
Alexandre Bellonia556c762018-05-14 22:04:57 +020067{
Alban Bedel584b7cf2021-01-19 15:06:38 +010068 u32 cmd = ANA_TABLES_MACACCESS_VALID |
69 ANA_TABLES_MACACCESS_DEST_IDX(port) |
70 ANA_TABLES_MACACCESS_ENTRYTYPE(type) |
71 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_LEARN);
72 unsigned int mc_ports;
Vladimir Oltean24683462021-10-24 20:17:51 +030073 int err;
Alban Bedel584b7cf2021-01-19 15:06:38 +010074
75 /* Set MAC_CPU_COPY if the CPU port is used by a multicast entry */
76 if (type == ENTRYTYPE_MACv4)
77 mc_ports = (mac[1] << 8) | mac[2];
78 else if (type == ENTRYTYPE_MACv6)
79 mc_ports = (mac[0] << 8) | mac[1];
80 else
81 mc_ports = 0;
82
83 if (mc_ports & BIT(ocelot->num_phys_ports))
84 cmd |= ANA_TABLES_MACACCESS_MAC_CPU_COPY;
85
Alexandre Bellonia556c762018-05-14 22:04:57 +020086 ocelot_mact_select(ocelot, mac, vid);
87
88 /* Issue a write command */
Alban Bedel584b7cf2021-01-19 15:06:38 +010089 ocelot_write(ocelot, cmd, ANA_TABLES_MACACCESS);
Alexandre Bellonia556c762018-05-14 22:04:57 +020090
Vladimir Oltean24683462021-10-24 20:17:51 +030091 err = ocelot_mact_wait_for_completion(ocelot);
92
Xiaoliang Yang0568c3b2021-11-18 18:11:57 +080093 return err;
94}
95
96int ocelot_mact_learn(struct ocelot *ocelot, int port,
97 const unsigned char mac[ETH_ALEN],
98 unsigned int vid, enum macaccess_entry_type type)
99{
100 int ret;
101
102 mutex_lock(&ocelot->mact_lock);
103 ret = __ocelot_mact_learn(ocelot, port, mac, vid, type);
Vladimir Oltean24683462021-10-24 20:17:51 +0300104 mutex_unlock(&ocelot->mact_lock);
105
Xiaoliang Yang0568c3b2021-11-18 18:11:57 +0800106 return ret;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200107}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +0300108EXPORT_SYMBOL(ocelot_mact_learn);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200109
Vladimir Oltean9c90eea2020-06-20 18:43:44 +0300110int ocelot_mact_forget(struct ocelot *ocelot,
111 const unsigned char mac[ETH_ALEN], unsigned int vid)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200112{
Vladimir Oltean24683462021-10-24 20:17:51 +0300113 int err;
114
115 mutex_lock(&ocelot->mact_lock);
116
Alexandre Bellonia556c762018-05-14 22:04:57 +0200117 ocelot_mact_select(ocelot, mac, vid);
118
119 /* Issue a forget command */
120 ocelot_write(ocelot,
121 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_FORGET),
122 ANA_TABLES_MACACCESS);
123
Vladimir Oltean24683462021-10-24 20:17:51 +0300124 err = ocelot_mact_wait_for_completion(ocelot);
125
126 mutex_unlock(&ocelot->mact_lock);
127
128 return err;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200129}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +0300130EXPORT_SYMBOL(ocelot_mact_forget);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200131
Xiaoliang Yang0568c3b2021-11-18 18:11:57 +0800132int ocelot_mact_lookup(struct ocelot *ocelot, int *dst_idx,
133 const unsigned char mac[ETH_ALEN],
134 unsigned int vid, enum macaccess_entry_type *type)
135{
136 int val;
137
138 mutex_lock(&ocelot->mact_lock);
139
140 ocelot_mact_select(ocelot, mac, vid);
141
142 /* Issue a read command with MACACCESS_VALID=1. */
143 ocelot_write(ocelot, ANA_TABLES_MACACCESS_VALID |
144 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_READ),
145 ANA_TABLES_MACACCESS);
146
147 if (ocelot_mact_wait_for_completion(ocelot)) {
148 mutex_unlock(&ocelot->mact_lock);
149 return -ETIMEDOUT;
150 }
151
152 /* Read back the entry flags */
153 val = ocelot_read(ocelot, ANA_TABLES_MACACCESS);
154
155 mutex_unlock(&ocelot->mact_lock);
156
157 if (!(val & ANA_TABLES_MACACCESS_VALID))
158 return -ENOENT;
159
160 *dst_idx = ANA_TABLES_MACACCESS_DEST_IDX_X(val);
161 *type = ANA_TABLES_MACACCESS_ENTRYTYPE_X(val);
162
163 return 0;
164}
165EXPORT_SYMBOL(ocelot_mact_lookup);
166
167int ocelot_mact_learn_streamdata(struct ocelot *ocelot, int dst_idx,
168 const unsigned char mac[ETH_ALEN],
169 unsigned int vid,
170 enum macaccess_entry_type type,
171 int sfid, int ssid)
172{
173 int ret;
174
175 mutex_lock(&ocelot->mact_lock);
176
177 ocelot_write(ocelot,
178 (sfid < 0 ? 0 : ANA_TABLES_STREAMDATA_SFID_VALID) |
179 ANA_TABLES_STREAMDATA_SFID(sfid) |
180 (ssid < 0 ? 0 : ANA_TABLES_STREAMDATA_SSID_VALID) |
181 ANA_TABLES_STREAMDATA_SSID(ssid),
182 ANA_TABLES_STREAMDATA);
183
184 ret = __ocelot_mact_learn(ocelot, dst_idx, mac, vid, type);
185
186 mutex_unlock(&ocelot->mact_lock);
187
188 return ret;
189}
190EXPORT_SYMBOL(ocelot_mact_learn_streamdata);
191
Alexandre Bellonia556c762018-05-14 22:04:57 +0200192static void ocelot_mact_init(struct ocelot *ocelot)
193{
194 /* Configure the learning mode entries attributes:
195 * - Do not copy the frame to the CPU extraction queues.
196 * - Use the vlan and mac_cpoy for dmac lookup.
197 */
198 ocelot_rmw(ocelot, 0,
199 ANA_AGENCTRL_LEARN_CPU_COPY | ANA_AGENCTRL_IGNORE_DMAC_FLAGS
200 | ANA_AGENCTRL_LEARN_FWD_KILL
201 | ANA_AGENCTRL_LEARN_IGNORE_VLAN,
202 ANA_AGENCTRL);
203
Vladimir Oltean24683462021-10-24 20:17:51 +0300204 /* Clear the MAC table. We are not concurrent with anyone, so
205 * holding &ocelot->mact_lock is pointless.
206 */
Alexandre Bellonia556c762018-05-14 22:04:57 +0200207 ocelot_write(ocelot, MACACCESS_CMD_INIT, ANA_TABLES_MACACCESS);
208}
209
Vladimir Olteanf270dbf2019-11-09 15:02:52 +0200210static void ocelot_vcap_enable(struct ocelot *ocelot, int port)
Horatiu Vulturb5962292019-05-31 09:16:56 +0200211{
212 ocelot_write_gix(ocelot, ANA_PORT_VCAP_S2_CFG_S2_ENA |
213 ANA_PORT_VCAP_S2_CFG_S2_IP6_CFG(0xa),
Vladimir Olteanf270dbf2019-11-09 15:02:52 +0200214 ANA_PORT_VCAP_S2_CFG, port);
Xiaoliang Yang75944fd2020-10-02 15:02:23 +0300215
216 ocelot_write_gix(ocelot, ANA_PORT_VCAP_CFG_S1_ENA,
217 ANA_PORT_VCAP_CFG, port);
Xiaoliang Yang2f17c052020-10-02 15:02:24 +0300218
219 ocelot_rmw_gix(ocelot, REW_PORT_CFG_ES0_EN,
220 REW_PORT_CFG_ES0_EN,
221 REW_PORT_CFG, port);
Horatiu Vulturb5962292019-05-31 09:16:56 +0200222}
223
Steen Hegelund639c1b22018-12-20 14:16:31 +0100224static inline u32 ocelot_vlant_read_vlanaccess(struct ocelot *ocelot)
225{
226 return ocelot_read(ocelot, ANA_TABLES_VLANACCESS);
227}
228
Alexandre Bellonia556c762018-05-14 22:04:57 +0200229static inline int ocelot_vlant_wait_for_completion(struct ocelot *ocelot)
230{
Steen Hegelund639c1b22018-12-20 14:16:31 +0100231 u32 val;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200232
Steen Hegelund639c1b22018-12-20 14:16:31 +0100233 return readx_poll_timeout(ocelot_vlant_read_vlanaccess,
234 ocelot,
235 val,
236 (val & ANA_TABLES_VLANACCESS_VLAN_TBL_CMD_M) ==
237 ANA_TABLES_VLANACCESS_CMD_IDLE,
238 TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200239}
240
Antoine Tenart71425292018-06-26 14:28:49 +0200241static int ocelot_vlant_set_mask(struct ocelot *ocelot, u16 vid, u32 mask)
242{
243 /* Select the VID to configure */
244 ocelot_write(ocelot, ANA_TABLES_VLANTIDX_V_INDEX(vid),
245 ANA_TABLES_VLANTIDX);
246 /* Set the vlan port members mask and issue a write command */
247 ocelot_write(ocelot, ANA_TABLES_VLANACCESS_VLAN_PORT_MASK(mask) |
248 ANA_TABLES_VLANACCESS_CMD_WRITE,
249 ANA_TABLES_VLANACCESS);
250
251 return ocelot_vlant_wait_for_completion(ocelot);
252}
253
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300254static int ocelot_port_num_untagged_vlans(struct ocelot *ocelot, int port)
255{
256 struct ocelot_bridge_vlan *vlan;
257 int num_untagged = 0;
258
259 list_for_each_entry(vlan, &ocelot->vlans, list) {
260 if (!(vlan->portmask & BIT(port)))
261 continue;
262
263 if (vlan->untagged & BIT(port))
264 num_untagged++;
265 }
266
267 return num_untagged;
268}
269
270static int ocelot_port_num_tagged_vlans(struct ocelot *ocelot, int port)
271{
272 struct ocelot_bridge_vlan *vlan;
273 int num_tagged = 0;
274
275 list_for_each_entry(vlan, &ocelot->vlans, list) {
276 if (!(vlan->portmask & BIT(port)))
277 continue;
278
279 if (!(vlan->untagged & BIT(port)))
280 num_tagged++;
281 }
282
283 return num_tagged;
284}
285
286/* We use native VLAN when we have to mix egress-tagged VLANs with exactly
287 * _one_ egress-untagged VLAN (_the_ native VLAN)
288 */
289static bool ocelot_port_uses_native_vlan(struct ocelot *ocelot, int port)
290{
291 return ocelot_port_num_tagged_vlans(ocelot, port) &&
292 ocelot_port_num_untagged_vlans(ocelot, port) == 1;
293}
294
295static struct ocelot_bridge_vlan *
296ocelot_port_find_native_vlan(struct ocelot *ocelot, int port)
297{
298 struct ocelot_bridge_vlan *vlan;
299
300 list_for_each_entry(vlan, &ocelot->vlans, list)
301 if (vlan->portmask & BIT(port) && vlan->untagged & BIT(port))
302 return vlan;
303
304 return NULL;
305}
306
307/* Keep in sync REW_TAG_CFG_TAG_CFG and, if applicable,
308 * REW_PORT_VLAN_CFG_PORT_VID, with the bridge VLAN table and VLAN awareness
309 * state of the port.
310 */
311static void ocelot_port_manage_port_tag(struct ocelot *ocelot, int port)
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200312{
313 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Oltean62a22bc2021-10-20 20:58:48 +0300314 enum ocelot_port_tag_config tag_cfg;
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300315 bool uses_native_vlan = false;
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200316
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300317 if (ocelot_port->vlan_aware) {
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300318 uses_native_vlan = ocelot_port_uses_native_vlan(ocelot, port);
319
320 if (uses_native_vlan)
Vladimir Oltean62a22bc2021-10-20 20:58:48 +0300321 tag_cfg = OCELOT_PORT_TAG_NATIVE;
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300322 else if (ocelot_port_num_untagged_vlans(ocelot, port))
323 tag_cfg = OCELOT_PORT_TAG_DISABLED;
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300324 else
Vladimir Oltean62a22bc2021-10-20 20:58:48 +0300325 tag_cfg = OCELOT_PORT_TAG_TRUNK;
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300326 } else {
Vladimir Oltean62a22bc2021-10-20 20:58:48 +0300327 tag_cfg = OCELOT_PORT_TAG_DISABLED;
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300328 }
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300329
Vladimir Oltean62a22bc2021-10-20 20:58:48 +0300330 ocelot_rmw_gix(ocelot, REW_TAG_CFG_TAG_CFG(tag_cfg),
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300331 REW_TAG_CFG_TAG_CFG_M,
332 REW_TAG_CFG, port);
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300333
334 if (uses_native_vlan) {
335 struct ocelot_bridge_vlan *native_vlan;
336
337 /* Not having a native VLAN is impossible, because
338 * ocelot_port_num_untagged_vlans has returned 1.
339 * So there is no use in checking for NULL here.
340 */
341 native_vlan = ocelot_port_find_native_vlan(ocelot, port);
342
343 ocelot_rmw_gix(ocelot,
344 REW_PORT_VLAN_CFG_PORT_VID(native_vlan->vid),
345 REW_PORT_VLAN_CFG_PORT_VID_M,
346 REW_PORT_VLAN_CFG, port);
347 }
Vladimir Oltean97bb69e2019-11-09 15:02:47 +0200348}
349
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200350/* Default vlan to clasify for untagged frames (may be zero) */
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200351static void ocelot_port_set_pvid(struct ocelot *ocelot, int port,
Vladimir Olteand4004422021-10-20 20:58:52 +0300352 const struct ocelot_bridge_vlan *pvid_vlan)
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200353{
354 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteand4004422021-10-20 20:58:52 +0300355 u16 pvid = OCELOT_VLAN_UNAWARE_PVID;
Vladimir Olteanbe0576f2020-10-31 12:29:14 +0200356 u32 val = 0;
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200357
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200358 ocelot_port->pvid_vlan = pvid_vlan;
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200359
Vladimir Olteand4004422021-10-20 20:58:52 +0300360 if (ocelot_port->vlan_aware && pvid_vlan)
361 pvid = pvid_vlan->vid;
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200362
363 ocelot_rmw_gix(ocelot,
Vladimir Olteand4004422021-10-20 20:58:52 +0300364 ANA_PORT_VLAN_CFG_VLAN_VID(pvid),
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200365 ANA_PORT_VLAN_CFG_VLAN_VID_M,
366 ANA_PORT_VLAN_CFG, port);
Vladimir Olteanbe0576f2020-10-31 12:29:14 +0200367
368 /* If there's no pvid, we should drop not only untagged traffic (which
369 * happens automatically), but also 802.1p traffic which gets
370 * classified to VLAN 0, but that is always in our RX filter, so it
371 * would get accepted were it not for this setting.
372 */
Vladimir Olteand4004422021-10-20 20:58:52 +0300373 if (!pvid_vlan && ocelot_port->vlan_aware)
Vladimir Olteanbe0576f2020-10-31 12:29:14 +0200374 val = ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA |
375 ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA;
376
377 ocelot_rmw_gix(ocelot, val,
378 ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA |
379 ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA,
380 ANA_PORT_DROP_CFG, port);
Vladimir Oltean75e5a552020-10-31 12:29:10 +0200381}
382
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300383static struct ocelot_bridge_vlan *ocelot_bridge_vlan_find(struct ocelot *ocelot,
384 u16 vid)
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300385{
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300386 struct ocelot_bridge_vlan *vlan;
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300387
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300388 list_for_each_entry(vlan, &ocelot->vlans, list)
389 if (vlan->vid == vid)
390 return vlan;
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300391
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300392 return NULL;
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300393}
394
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300395static int ocelot_vlan_member_add(struct ocelot *ocelot, int port, u16 vid,
396 bool untagged)
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300397{
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300398 struct ocelot_bridge_vlan *vlan = ocelot_bridge_vlan_find(ocelot, vid);
399 unsigned long portmask;
400 int err;
401
402 if (vlan) {
403 portmask = vlan->portmask | BIT(port);
404
405 err = ocelot_vlant_set_mask(ocelot, vid, portmask);
406 if (err)
407 return err;
408
409 vlan->portmask = portmask;
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300410 /* Bridge VLANs can be overwritten with a different
411 * egress-tagging setting, so make sure to override an untagged
412 * with a tagged VID if that's going on.
413 */
414 if (untagged)
415 vlan->untagged |= BIT(port);
416 else
417 vlan->untagged &= ~BIT(port);
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300418
419 return 0;
420 }
421
422 vlan = kzalloc(sizeof(*vlan), GFP_KERNEL);
423 if (!vlan)
424 return -ENOMEM;
425
426 portmask = BIT(port);
427
428 err = ocelot_vlant_set_mask(ocelot, vid, portmask);
429 if (err) {
430 kfree(vlan);
431 return err;
432 }
433
434 vlan->vid = vid;
435 vlan->portmask = portmask;
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300436 if (untagged)
437 vlan->untagged = BIT(port);
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300438 INIT_LIST_HEAD(&vlan->list);
439 list_add_tail(&vlan->list, &ocelot->vlans);
440
441 return 0;
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300442}
443
444static int ocelot_vlan_member_del(struct ocelot *ocelot, int port, u16 vid)
445{
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300446 struct ocelot_bridge_vlan *vlan = ocelot_bridge_vlan_find(ocelot, vid);
447 unsigned long portmask;
448 int err;
449
450 if (!vlan)
451 return 0;
452
453 portmask = vlan->portmask & ~BIT(port);
454
455 err = ocelot_vlant_set_mask(ocelot, vid, portmask);
456 if (err)
457 return err;
458
459 vlan->portmask = portmask;
460 if (vlan->portmask)
461 return 0;
462
463 list_del(&vlan->list);
464 kfree(vlan);
465
466 return 0;
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300467}
468
Vladimir Oltean2e554a72020-10-03 01:06:46 +0300469int ocelot_port_vlan_filtering(struct ocelot *ocelot, int port,
Vladimir Oltean3b95d1b2021-08-19 20:40:07 +0300470 bool vlan_aware, struct netlink_ext_ack *extack)
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300471{
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200472 struct ocelot_vcap_block *block = &ocelot->block[VCAP_IS1];
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300473 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200474 struct ocelot_vcap_filter *filter;
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300475 u32 val;
476
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200477 list_for_each_entry(filter, &block->rules, list) {
478 if (filter->ingress_port_mask & BIT(port) &&
479 filter->action.vid_replace_ena) {
Vladimir Oltean3b95d1b2021-08-19 20:40:07 +0300480 NL_SET_ERR_MSG_MOD(extack,
481 "Cannot change VLAN state with vlan modify rules active");
Vladimir Olteanbae33f22021-01-09 02:01:50 +0200482 return -EBUSY;
Vladimir Oltean70edfae2020-10-08 14:56:58 +0300483 }
Vladimir Oltean70edfae2020-10-08 14:56:58 +0300484 }
Vladimir Oltean2e554a72020-10-03 01:06:46 +0300485
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300486 ocelot_port->vlan_aware = vlan_aware;
487
488 if (vlan_aware)
489 val = ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
490 ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1);
491 else
492 val = 0;
493 ocelot_rmw_gix(ocelot, val,
494 ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
495 ANA_PORT_VLAN_CFG_VLAN_POP_CNT_M,
496 ANA_PORT_VLAN_CFG, port);
497
Vladimir Olteanc3e58a752020-10-31 12:29:12 +0200498 ocelot_port_set_pvid(ocelot, port, ocelot_port->pvid_vlan);
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300499 ocelot_port_manage_port_tag(ocelot, port);
Vladimir Oltean2e554a72020-10-03 01:06:46 +0300500
501 return 0;
Vladimir Oltean87b0f982020-04-14 22:36:15 +0300502}
503EXPORT_SYMBOL(ocelot_port_vlan_filtering);
504
Vladimir Oltean2f0402f2020-10-31 12:29:15 +0200505int ocelot_vlan_prepare(struct ocelot *ocelot, int port, u16 vid, bool pvid,
Vladimir Oltean01af9402021-08-19 20:40:06 +0300506 bool untagged, struct netlink_ext_ack *extack)
Vladimir Oltean2f0402f2020-10-31 12:29:15 +0200507{
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300508 if (untagged) {
509 /* We are adding an egress-tagged VLAN */
510 if (ocelot_port_uses_native_vlan(ocelot, port)) {
511 NL_SET_ERR_MSG_MOD(extack,
512 "Port with egress-tagged VLANs cannot have more than one egress-untagged (native) VLAN");
513 return -EBUSY;
514 }
515 } else {
516 /* We are adding an egress-tagged VLAN */
517 if (ocelot_port_num_untagged_vlans(ocelot, port) > 1) {
518 NL_SET_ERR_MSG_MOD(extack,
519 "Port with more than one egress-untagged VLAN cannot have egress-tagged VLANs");
520 return -EBUSY;
521 }
Vladimir Oltean2f0402f2020-10-31 12:29:15 +0200522 }
523
524 return 0;
525}
526EXPORT_SYMBOL(ocelot_vlan_prepare);
527
Vladimir Oltean5e256362019-11-14 17:03:27 +0200528int ocelot_vlan_add(struct ocelot *ocelot, int port, u16 vid, bool pvid,
529 bool untagged)
Antoine Tenart71425292018-06-26 14:28:49 +0200530{
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300531 int err;
Antoine Tenart71425292018-06-26 14:28:49 +0200532
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300533 err = ocelot_vlan_member_add(ocelot, port, vid, untagged);
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300534 if (err)
535 return err;
Antoine Tenart71425292018-06-26 14:28:49 +0200536
537 /* Default ingress vlan classification */
Vladimir Olteand4004422021-10-20 20:58:52 +0300538 if (pvid)
539 ocelot_port_set_pvid(ocelot, port,
540 ocelot_bridge_vlan_find(ocelot, vid));
Antoine Tenart71425292018-06-26 14:28:49 +0200541
542 /* Untagged egress vlan clasification */
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300543 ocelot_port_manage_port_tag(ocelot, port);
Antoine Tenart71425292018-06-26 14:28:49 +0200544
Antoine Tenart71425292018-06-26 14:28:49 +0200545 return 0;
546}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200547EXPORT_SYMBOL(ocelot_vlan_add);
Antoine Tenart71425292018-06-26 14:28:49 +0200548
Vladimir Oltean5e256362019-11-14 17:03:27 +0200549int ocelot_vlan_del(struct ocelot *ocelot, int port, u16 vid)
Vladimir Oltean98559342019-11-09 15:02:48 +0200550{
551 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300552 int err;
Antoine Tenart71425292018-06-26 14:28:49 +0200553
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300554 err = ocelot_vlan_member_del(ocelot, port, vid);
555 if (err)
556 return err;
Antoine Tenart71425292018-06-26 14:28:49 +0200557
Vladimir Olteanbe0576f2020-10-31 12:29:14 +0200558 /* Ingress */
Vladimir Olteand4004422021-10-20 20:58:52 +0300559 if (ocelot_port->pvid_vlan && ocelot_port->pvid_vlan->vid == vid)
560 ocelot_port_set_pvid(ocelot, port, NULL);
Vladimir Olteanbe0576f2020-10-31 12:29:14 +0200561
Antoine Tenart71425292018-06-26 14:28:49 +0200562 /* Egress */
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +0300563 ocelot_port_manage_port_tag(ocelot, port);
Antoine Tenart71425292018-06-26 14:28:49 +0200564
565 return 0;
566}
Vladimir Oltean5e256362019-11-14 17:03:27 +0200567EXPORT_SYMBOL(ocelot_vlan_del);
Antoine Tenart71425292018-06-26 14:28:49 +0200568
Alexandre Bellonia556c762018-05-14 22:04:57 +0200569static void ocelot_vlan_init(struct ocelot *ocelot)
570{
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300571 unsigned long all_ports = GENMASK(ocelot->num_phys_ports - 1, 0);
Antoine Tenart71425292018-06-26 14:28:49 +0200572 u16 port, vid;
573
Alexandre Bellonia556c762018-05-14 22:04:57 +0200574 /* Clear VLAN table, by default all ports are members of all VLANs */
575 ocelot_write(ocelot, ANA_TABLES_VLANACCESS_CMD_INIT,
576 ANA_TABLES_VLANACCESS);
577 ocelot_vlant_wait_for_completion(ocelot);
Antoine Tenart71425292018-06-26 14:28:49 +0200578
579 /* Configure the port VLAN memberships */
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300580 for (vid = 1; vid < VLAN_N_VID; vid++)
Vladimir Oltean90e0aa82021-10-20 20:58:49 +0300581 ocelot_vlant_set_mask(ocelot, vid, 0);
Antoine Tenart71425292018-06-26 14:28:49 +0200582
583 /* Because VLAN filtering is enabled, we need VID 0 to get untagged
584 * traffic. It is added automatically if 8021q module is loaded, but
585 * we can't rely on it since module may be not loaded.
586 */
Vladimir Olteanbfbab312021-10-20 20:58:51 +0300587 ocelot_vlant_set_mask(ocelot, OCELOT_VLAN_UNAWARE_PVID, all_ports);
Antoine Tenart71425292018-06-26 14:28:49 +0200588
Antoine Tenart71425292018-06-26 14:28:49 +0200589 /* Set vlan ingress filter mask to all ports but the CPU port by
590 * default.
591 */
Vladimir Olteanbbf6a2d2021-08-19 20:40:08 +0300592 ocelot_write(ocelot, all_ports, ANA_VLANMASK);
Antoine Tenart71425292018-06-26 14:28:49 +0200593
594 for (port = 0; port < ocelot->num_phys_ports; port++) {
595 ocelot_write_gix(ocelot, 0, REW_PORT_VLAN_CFG, port);
596 ocelot_write_gix(ocelot, 0, REW_TAG_CFG, port);
597 }
Alexandre Bellonia556c762018-05-14 22:04:57 +0200598}
599
Vladimir Olteaneb4733d2021-02-08 19:36:27 +0200600static u32 ocelot_read_eq_avail(struct ocelot *ocelot, int port)
601{
602 return ocelot_read_rix(ocelot, QSYS_SW_STATUS, port);
603}
604
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300605static int ocelot_port_flush(struct ocelot *ocelot, int port)
Vladimir Olteaneb4733d2021-02-08 19:36:27 +0200606{
Vladimir Oltean1650bdb2021-06-08 14:15:35 +0300607 unsigned int pause_ena;
Vladimir Olteaneb4733d2021-02-08 19:36:27 +0200608 int err, val;
609
610 /* Disable dequeuing from the egress queues */
611 ocelot_rmw_rix(ocelot, QSYS_PORT_MODE_DEQUEUE_DIS,
612 QSYS_PORT_MODE_DEQUEUE_DIS,
613 QSYS_PORT_MODE, port);
614
615 /* Disable flow control */
Vladimir Oltean1650bdb2021-06-08 14:15:35 +0300616 ocelot_fields_read(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, &pause_ena);
Vladimir Olteaneb4733d2021-02-08 19:36:27 +0200617 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 0);
618
619 /* Disable priority flow control */
620 ocelot_fields_write(ocelot, port,
621 QSYS_SWITCH_PORT_MODE_TX_PFC_ENA, 0);
622
623 /* Wait at least the time it takes to receive a frame of maximum length
624 * at the port.
625 * Worst-case delays for 10 kilobyte jumbo frames are:
626 * 8 ms on a 10M port
627 * 800 μs on a 100M port
628 * 80 μs on a 1G port
629 * 32 μs on a 2.5G port
630 */
631 usleep_range(8000, 10000);
632
633 /* Disable half duplex backpressure. */
634 ocelot_rmw_rix(ocelot, 0, SYS_FRONT_PORT_MODE_HDX_MODE,
635 SYS_FRONT_PORT_MODE, port);
636
637 /* Flush the queues associated with the port. */
638 ocelot_rmw_gix(ocelot, REW_PORT_CFG_FLUSH_ENA, REW_PORT_CFG_FLUSH_ENA,
639 REW_PORT_CFG, port);
640
641 /* Enable dequeuing from the egress queues. */
642 ocelot_rmw_rix(ocelot, 0, QSYS_PORT_MODE_DEQUEUE_DIS, QSYS_PORT_MODE,
643 port);
644
645 /* Wait until flushing is complete. */
646 err = read_poll_timeout(ocelot_read_eq_avail, val, !val,
647 100, 2000000, false, ocelot, port);
648
649 /* Clear flushing again. */
650 ocelot_rmw_gix(ocelot, 0, REW_PORT_CFG_FLUSH_ENA, REW_PORT_CFG, port);
651
Vladimir Oltean1650bdb2021-06-08 14:15:35 +0300652 /* Re-enable flow control */
653 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, pause_ena);
654
Vladimir Olteaneb4733d2021-02-08 19:36:27 +0200655 return err;
656}
Vladimir Olteaneb4733d2021-02-08 19:36:27 +0200657
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300658void ocelot_phylink_mac_link_down(struct ocelot *ocelot, int port,
659 unsigned int link_an_mode,
660 phy_interface_t interface,
661 unsigned long quirks)
Alexandre Bellonia556c762018-05-14 22:04:57 +0200662{
Vladimir Oltean26f4dba2019-11-09 15:02:59 +0200663 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300664 int err;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200665
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300666 ocelot_port_rmwl(ocelot_port, 0, DEV_MAC_ENA_CFG_RX_ENA,
667 DEV_MAC_ENA_CFG);
668
669 ocelot_fields_write(ocelot, port, QSYS_SWITCH_PORT_MODE_PORT_ENA, 0);
670
671 err = ocelot_port_flush(ocelot, port);
672 if (err)
673 dev_err(ocelot->dev, "failed to flush port %d: %d\n",
674 port, err);
675
676 /* Put the port in reset. */
677 if (interface != PHY_INTERFACE_MODE_QSGMII ||
678 !(quirks & OCELOT_QUIRK_QSGMII_PORTS_MUST_BE_UP))
679 ocelot_port_rmwl(ocelot_port,
680 DEV_CLOCK_CFG_MAC_TX_RST |
Wan Jiabing74a3bc42021-10-11 10:27:41 +0800681 DEV_CLOCK_CFG_MAC_RX_RST,
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300682 DEV_CLOCK_CFG_MAC_TX_RST |
Wan Jiabing74a3bc42021-10-11 10:27:41 +0800683 DEV_CLOCK_CFG_MAC_RX_RST,
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300684 DEV_CLOCK_CFG);
685}
686EXPORT_SYMBOL_GPL(ocelot_phylink_mac_link_down);
687
688void ocelot_phylink_mac_link_up(struct ocelot *ocelot, int port,
689 struct phy_device *phydev,
690 unsigned int link_an_mode,
691 phy_interface_t interface,
692 int speed, int duplex,
693 bool tx_pause, bool rx_pause,
694 unsigned long quirks)
695{
696 struct ocelot_port *ocelot_port = ocelot->ports[port];
697 int mac_speed, mode = 0;
698 u32 mac_fc_cfg;
699
700 /* The MAC might be integrated in systems where the MAC speed is fixed
701 * and it's the PCS who is performing the rate adaptation, so we have
702 * to write "1000Mbps" into the LINK_SPEED field of DEV_CLOCK_CFG
703 * (which is also its default value).
704 */
705 if ((quirks & OCELOT_QUIRK_PCS_PERFORMS_RATE_ADAPTATION) ||
706 speed == SPEED_1000) {
707 mac_speed = OCELOT_SPEED_1000;
708 mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
709 } else if (speed == SPEED_2500) {
710 mac_speed = OCELOT_SPEED_2500;
711 mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
712 } else if (speed == SPEED_100) {
713 mac_speed = OCELOT_SPEED_100;
714 } else {
715 mac_speed = OCELOT_SPEED_10;
716 }
717
718 if (duplex == DUPLEX_FULL)
719 mode |= DEV_MAC_MODE_CFG_FDX_ENA;
720
721 ocelot_port_writel(ocelot_port, mode, DEV_MAC_MODE_CFG);
722
723 /* Take port out of reset by clearing the MAC_TX_RST, MAC_RX_RST and
724 * PORT_RST bits in DEV_CLOCK_CFG.
725 */
726 ocelot_port_writel(ocelot_port, DEV_CLOCK_CFG_LINK_SPEED(mac_speed),
727 DEV_CLOCK_CFG);
728
729 switch (speed) {
Alexandre Bellonia556c762018-05-14 22:04:57 +0200730 case SPEED_10:
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300731 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(OCELOT_SPEED_10);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200732 break;
733 case SPEED_100:
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300734 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(OCELOT_SPEED_100);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200735 break;
736 case SPEED_1000:
Alexandre Bellonia556c762018-05-14 22:04:57 +0200737 case SPEED_2500:
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300738 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(OCELOT_SPEED_1000);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200739 break;
740 default:
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300741 dev_err(ocelot->dev, "Unsupported speed on port %d: %d\n",
742 port, speed);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200743 return;
744 }
745
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300746 /* Handle RX pause in all cases, with 2500base-X this is used for rate
747 * adaptation.
748 */
749 mac_fc_cfg |= SYS_MAC_FC_CFG_RX_FC_ENA;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200750
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300751 if (tx_pause)
752 mac_fc_cfg |= SYS_MAC_FC_CFG_TX_FC_ENA |
753 SYS_MAC_FC_CFG_PAUSE_VAL_CFG(0xffff) |
754 SYS_MAC_FC_CFG_FC_LATENCY_CFG(0x7) |
755 SYS_MAC_FC_CFG_ZERO_PAUSE_ENA;
Alexandre Bellonia556c762018-05-14 22:04:57 +0200756
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300757 /* Flow control. Link speed is only used here to evaluate the time
758 * specification in incoming pause frames.
759 */
760 ocelot_write_rix(ocelot, mac_fc_cfg, SYS_MAC_FC_CFG, port);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200761
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300762 ocelot_write_rix(ocelot, 0, ANA_POL_FLOWC, port);
Vladimir Oltean1ba8f652020-02-29 16:31:11 +0200763
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300764 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, tx_pause);
Vladimir Oltean1ba8f652020-02-29 16:31:11 +0200765
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300766 /* Undo the effects of ocelot_phylink_mac_link_down:
767 * enable MAC module
768 */
Vladimir Oltean004d44f2019-11-09 15:02:53 +0200769 ocelot_port_writel(ocelot_port, DEV_MAC_ENA_CFG_RX_ENA |
Alexandre Bellonia556c762018-05-14 22:04:57 +0200770 DEV_MAC_ENA_CFG_TX_ENA, DEV_MAC_ENA_CFG);
771
Alexandre Bellonia556c762018-05-14 22:04:57 +0200772 /* Core: Enable port for frame transfer */
Vladimir Oltean886e1382020-07-13 19:57:03 +0300773 ocelot_fields_write(ocelot, port,
774 QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);
Alexandre Bellonia556c762018-05-14 22:04:57 +0200775}
Vladimir Olteane6e12df2021-08-15 04:47:48 +0300776EXPORT_SYMBOL_GPL(ocelot_phylink_mac_link_up);
Vladimir Oltean889b8952019-11-09 15:02:57 +0200777
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300778static int ocelot_port_add_txtstamp_skb(struct ocelot *ocelot, int port,
779 struct sk_buff *clone)
Yangbo Lu400928b2019-11-20 16:23:16 +0800780{
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300781 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300782 unsigned long flags;
Yangbo Lu400928b2019-11-20 16:23:16 +0800783
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300784 spin_lock_irqsave(&ocelot->ts_id_lock, flags);
785
786 if (ocelot_port->ptp_skbs_in_flight == OCELOT_MAX_PTP_ID ||
787 ocelot->ptp_skbs_in_flight == OCELOT_PTP_FIFO_SIZE) {
788 spin_unlock_irqrestore(&ocelot->ts_id_lock, flags);
789 return -EBUSY;
790 }
Vladimir Oltean65652432020-09-18 04:07:24 +0300791
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300792 skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS;
Yangbo Luc4b364c2021-04-27 12:22:00 +0800793 /* Store timestamp ID in OCELOT_SKB_CB(clone)->ts_id */
794 OCELOT_SKB_CB(clone)->ts_id = ocelot_port->ts_id;
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300795
Vladimir Olteanc57fe002021-10-12 14:40:35 +0300796 ocelot_port->ts_id++;
797 if (ocelot_port->ts_id == OCELOT_MAX_PTP_ID)
798 ocelot_port->ts_id = 0;
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300799
800 ocelot_port->ptp_skbs_in_flight++;
801 ocelot->ptp_skbs_in_flight++;
802
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300803 skb_queue_tail(&ocelot_port->tx_skbs, clone);
Vladimir Oltean65652432020-09-18 04:07:24 +0300804
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300805 spin_unlock_irqrestore(&ocelot->ts_id_lock, flags);
806
807 return 0;
Yangbo Lu400928b2019-11-20 16:23:16 +0800808}
Yangbo Lu682eaad2021-04-27 12:22:02 +0800809
Vladimir Olteanfba01282021-10-12 14:40:38 +0300810static bool ocelot_ptp_is_onestep_sync(struct sk_buff *skb,
811 unsigned int ptp_class)
Yangbo Lu39e53082021-04-27 12:22:03 +0800812{
813 struct ptp_header *hdr;
Yangbo Lu39e53082021-04-27 12:22:03 +0800814 u8 msgtype, twostep;
815
Yangbo Lu39e53082021-04-27 12:22:03 +0800816 hdr = ptp_parse_header(skb, ptp_class);
817 if (!hdr)
818 return false;
819
820 msgtype = ptp_get_msgtype(hdr, ptp_class);
821 twostep = hdr->flag_field[0] & 0x2;
822
823 if (msgtype == PTP_MSGTYPE_SYNC && twostep == 0)
824 return true;
825
826 return false;
827}
828
Yangbo Lu682eaad2021-04-27 12:22:02 +0800829int ocelot_port_txtstamp_request(struct ocelot *ocelot, int port,
830 struct sk_buff *skb,
831 struct sk_buff **clone)
832{
833 struct ocelot_port *ocelot_port = ocelot->ports[port];
834 u8 ptp_cmd = ocelot_port->ptp_cmd;
Vladimir Olteanfba01282021-10-12 14:40:38 +0300835 unsigned int ptp_class;
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300836 int err;
Yangbo Lu682eaad2021-04-27 12:22:02 +0800837
Vladimir Olteanfba01282021-10-12 14:40:38 +0300838 /* Don't do anything if PTP timestamping not enabled */
839 if (!ptp_cmd)
840 return 0;
841
842 ptp_class = ptp_classify_raw(skb);
843 if (ptp_class == PTP_CLASS_NONE)
844 return -EINVAL;
Yangbo Lu682eaad2021-04-27 12:22:02 +0800845
Yangbo Lu39e53082021-04-27 12:22:03 +0800846 /* Store ptp_cmd in OCELOT_SKB_CB(skb)->ptp_cmd */
847 if (ptp_cmd == IFH_REW_OP_ORIGIN_PTP) {
Vladimir Olteanfba01282021-10-12 14:40:38 +0300848 if (ocelot_ptp_is_onestep_sync(skb, ptp_class)) {
Yangbo Lu39e53082021-04-27 12:22:03 +0800849 OCELOT_SKB_CB(skb)->ptp_cmd = ptp_cmd;
850 return 0;
851 }
852
853 /* Fall back to two-step timestamping */
854 ptp_cmd = IFH_REW_OP_TWO_STEP_PTP;
855 }
856
Yangbo Lu682eaad2021-04-27 12:22:02 +0800857 if (ptp_cmd == IFH_REW_OP_TWO_STEP_PTP) {
858 *clone = skb_clone_sk(skb);
859 if (!(*clone))
860 return -ENOMEM;
861
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300862 err = ocelot_port_add_txtstamp_skb(ocelot, port, *clone);
863 if (err)
864 return err;
865
Yangbo Lu39e53082021-04-27 12:22:03 +0800866 OCELOT_SKB_CB(skb)->ptp_cmd = ptp_cmd;
Vladimir Olteanebb4c6a2021-10-12 14:40:39 +0300867 OCELOT_SKB_CB(*clone)->ptp_class = ptp_class;
Yangbo Lu682eaad2021-04-27 12:22:02 +0800868 }
869
870 return 0;
871}
872EXPORT_SYMBOL(ocelot_port_txtstamp_request);
Yangbo Lu400928b2019-11-20 16:23:16 +0800873
Yangbo Lue23a7b32019-11-20 16:23:15 +0800874static void ocelot_get_hwtimestamp(struct ocelot *ocelot,
875 struct timespec64 *ts)
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200876{
877 unsigned long flags;
878 u32 val;
879
880 spin_lock_irqsave(&ocelot->ptp_clock_lock, flags);
881
882 /* Read current PTP time to get seconds */
883 val = ocelot_read_rix(ocelot, PTP_PIN_CFG, TOD_ACC_PIN);
884
885 val &= ~(PTP_PIN_CFG_SYNC | PTP_PIN_CFG_ACTION_MASK | PTP_PIN_CFG_DOM);
886 val |= PTP_PIN_CFG_ACTION(PTP_PIN_ACTION_SAVE);
887 ocelot_write_rix(ocelot, val, PTP_PIN_CFG, TOD_ACC_PIN);
888 ts->tv_sec = ocelot_read_rix(ocelot, PTP_PIN_TOD_SEC_LSB, TOD_ACC_PIN);
889
890 /* Read packet HW timestamp from FIFO */
891 val = ocelot_read(ocelot, SYS_PTP_TXSTAMP);
892 ts->tv_nsec = SYS_PTP_TXSTAMP_PTP_TXSTAMP(val);
893
894 /* Sec has incremented since the ts was registered */
895 if ((ts->tv_sec & 0x1) != !!(val & SYS_PTP_TXSTAMP_PTP_TXSTAMP_SEC))
896 ts->tv_sec--;
897
898 spin_unlock_irqrestore(&ocelot->ptp_clock_lock, flags);
899}
Yangbo Lue23a7b32019-11-20 16:23:15 +0800900
Vladimir Olteanebb4c6a2021-10-12 14:40:39 +0300901static bool ocelot_validate_ptp_skb(struct sk_buff *clone, u16 seqid)
902{
903 struct ptp_header *hdr;
904
905 hdr = ptp_parse_header(clone, OCELOT_SKB_CB(clone)->ptp_class);
906 if (WARN_ON(!hdr))
907 return false;
908
909 return seqid == ntohs(hdr->sequence_id);
910}
911
Yangbo Lue23a7b32019-11-20 16:23:15 +0800912void ocelot_get_txtstamp(struct ocelot *ocelot)
913{
914 int budget = OCELOT_PTP_QUEUE_SZ;
915
916 while (budget--) {
Yangbo Lub049da12019-11-27 15:27:57 +0800917 struct sk_buff *skb, *skb_tmp, *skb_match = NULL;
Yangbo Lue23a7b32019-11-20 16:23:15 +0800918 struct skb_shared_hwtstamps shhwtstamps;
Vladimir Olteanebb4c6a2021-10-12 14:40:39 +0300919 u32 val, id, seqid, txport;
Yangbo Lue23a7b32019-11-20 16:23:15 +0800920 struct ocelot_port *port;
921 struct timespec64 ts;
Yangbo Lub049da12019-11-27 15:27:57 +0800922 unsigned long flags;
Yangbo Lue23a7b32019-11-20 16:23:15 +0800923
924 val = ocelot_read(ocelot, SYS_PTP_STATUS);
925
926 /* Check if a timestamp can be retrieved */
927 if (!(val & SYS_PTP_STATUS_PTP_MESS_VLD))
928 break;
929
930 WARN_ON(val & SYS_PTP_STATUS_PTP_OVFL);
931
932 /* Retrieve the ts ID and Tx port */
933 id = SYS_PTP_STATUS_PTP_MESS_ID_X(val);
934 txport = SYS_PTP_STATUS_PTP_MESS_TXPORT_X(val);
Vladimir Olteanebb4c6a2021-10-12 14:40:39 +0300935 seqid = SYS_PTP_STATUS_PTP_MESS_SEQ_ID(val);
Yangbo Lue23a7b32019-11-20 16:23:15 +0800936
Yangbo Lue23a7b32019-11-20 16:23:15 +0800937 port = ocelot->ports[txport];
938
Vladimir Oltean52849bc2021-10-12 14:40:36 +0300939 spin_lock(&ocelot->ts_id_lock);
940 port->ptp_skbs_in_flight--;
941 ocelot->ptp_skbs_in_flight--;
942 spin_unlock(&ocelot->ts_id_lock);
943
944 /* Retrieve its associated skb */
Vladimir Olteanebb4c6a2021-10-12 14:40:39 +0300945try_again:
Yangbo Lub049da12019-11-27 15:27:57 +0800946 spin_lock_irqsave(&port->tx_skbs.lock, flags);
947
948 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) {
Yangbo Luc4b364c2021-04-27 12:22:00 +0800949 if (OCELOT_SKB_CB(skb)->ts_id != id)
Yangbo Lue23a7b32019-11-20 16:23:15 +0800950 continue;
Yangbo Lub049da12019-11-27 15:27:57 +0800951 __skb_unlink(skb, &port->tx_skbs);
952 skb_match = skb;
Yangbo Lufc62c092019-11-27 15:27:56 +0800953 break;
Yangbo Lue23a7b32019-11-20 16:23:15 +0800954 }
955
Yangbo Lub049da12019-11-27 15:27:57 +0800956 spin_unlock_irqrestore(&port->tx_skbs.lock, flags);
957
Vladimir Oltean9fde5062021-10-12 14:40:37 +0300958 if (WARN_ON(!skb_match))
959 continue;
960
Vladimir Olteanebb4c6a2021-10-12 14:40:39 +0300961 if (!ocelot_validate_ptp_skb(skb_match, seqid)) {
962 dev_err_ratelimited(ocelot->dev,
963 "port %d received stale TX timestamp for seqid %d, discarding\n",
964 txport, seqid);
965 dev_kfree_skb_any(skb);
966 goto try_again;
967 }
968
laurent brando5fd82202020-07-27 18:26:14 +0800969 /* Get the h/w timestamp */
970 ocelot_get_hwtimestamp(ocelot, &ts);
Yangbo Lue23a7b32019-11-20 16:23:15 +0800971
Yangbo Lue23a7b32019-11-20 16:23:15 +0800972 /* Set the timestamp into the skb */
973 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
974 shhwtstamps.hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec);
Vladimir Olteane2f9a8f2020-09-23 14:24:20 +0300975 skb_complete_tx_timestamp(skb_match, &shhwtstamps);
laurent brando5fd82202020-07-27 18:26:14 +0800976
977 /* Next ts */
978 ocelot_write(ocelot, SYS_PTP_NXT_PTP_NXT, SYS_PTP_NXT);
Yangbo Lue23a7b32019-11-20 16:23:15 +0800979 }
980}
981EXPORT_SYMBOL(ocelot_get_txtstamp);
Antoine Tenart4e3b0462019-08-12 16:45:37 +0200982
Vladimir Oltean924ee312021-02-14 00:37:59 +0200983static int ocelot_rx_frame_word(struct ocelot *ocelot, u8 grp, bool ifh,
984 u32 *rval)
985{
986 u32 bytes_valid, val;
987
988 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
989 if (val == XTR_NOT_READY) {
990 if (ifh)
991 return -EIO;
992
993 do {
994 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
995 } while (val == XTR_NOT_READY);
996 }
997
998 switch (val) {
999 case XTR_ABORT:
1000 return -EIO;
1001 case XTR_EOF_0:
1002 case XTR_EOF_1:
1003 case XTR_EOF_2:
1004 case XTR_EOF_3:
1005 case XTR_PRUNED:
1006 bytes_valid = XTR_VALID_BYTES(val);
1007 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1008 if (val == XTR_ESCAPE)
1009 *rval = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1010 else
1011 *rval = val;
1012
1013 return bytes_valid;
1014 case XTR_ESCAPE:
1015 *rval = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1016
1017 return 4;
1018 default:
1019 *rval = val;
1020
1021 return 4;
1022 }
1023}
1024
1025static int ocelot_xtr_poll_xfh(struct ocelot *ocelot, int grp, u32 *xfh)
1026{
1027 int i, err = 0;
1028
1029 for (i = 0; i < OCELOT_TAG_LEN / 4; i++) {
1030 err = ocelot_rx_frame_word(ocelot, grp, true, &xfh[i]);
1031 if (err != 4)
1032 return (err < 0) ? err : -EIO;
1033 }
1034
1035 return 0;
1036}
1037
1038int ocelot_xtr_poll_frame(struct ocelot *ocelot, int grp, struct sk_buff **nskb)
1039{
1040 struct skb_shared_hwtstamps *shhwtstamps;
Horatiu Vultur2ed2c5f2021-03-16 21:10:19 +01001041 u64 tod_in_ns, full_ts_in_ns;
Vladimir Oltean924ee312021-02-14 00:37:59 +02001042 u64 timestamp, src_port, len;
1043 u32 xfh[OCELOT_TAG_LEN / 4];
1044 struct net_device *dev;
1045 struct timespec64 ts;
1046 struct sk_buff *skb;
1047 int sz, buf_len;
1048 u32 val, *buf;
1049 int err;
1050
1051 err = ocelot_xtr_poll_xfh(ocelot, grp, xfh);
1052 if (err)
1053 return err;
1054
1055 ocelot_xfh_get_src_port(xfh, &src_port);
1056 ocelot_xfh_get_len(xfh, &len);
1057 ocelot_xfh_get_rew_val(xfh, &timestamp);
1058
1059 if (WARN_ON(src_port >= ocelot->num_phys_ports))
1060 return -EINVAL;
1061
1062 dev = ocelot->ops->port_to_netdev(ocelot, src_port);
1063 if (!dev)
1064 return -EINVAL;
1065
1066 skb = netdev_alloc_skb(dev, len);
1067 if (unlikely(!skb)) {
1068 netdev_err(dev, "Unable to allocate sk_buff\n");
1069 return -ENOMEM;
1070 }
1071
1072 buf_len = len - ETH_FCS_LEN;
1073 buf = (u32 *)skb_put(skb, buf_len);
1074
1075 len = 0;
1076 do {
1077 sz = ocelot_rx_frame_word(ocelot, grp, false, &val);
1078 if (sz < 0) {
1079 err = sz;
1080 goto out_free_skb;
1081 }
1082 *buf++ = val;
1083 len += sz;
1084 } while (len < buf_len);
1085
1086 /* Read the FCS */
1087 sz = ocelot_rx_frame_word(ocelot, grp, false, &val);
1088 if (sz < 0) {
1089 err = sz;
1090 goto out_free_skb;
1091 }
1092
1093 /* Update the statistics if part of the FCS was read before */
1094 len -= ETH_FCS_LEN - sz;
1095
1096 if (unlikely(dev->features & NETIF_F_RXFCS)) {
1097 buf = (u32 *)skb_put(skb, ETH_FCS_LEN);
1098 *buf = val;
1099 }
1100
1101 if (ocelot->ptp) {
1102 ocelot_ptp_gettime64(&ocelot->ptp_info, &ts);
1103
1104 tod_in_ns = ktime_set(ts.tv_sec, ts.tv_nsec);
1105 if ((tod_in_ns & 0xffffffff) < timestamp)
1106 full_ts_in_ns = (((tod_in_ns >> 32) - 1) << 32) |
1107 timestamp;
1108 else
1109 full_ts_in_ns = (tod_in_ns & GENMASK_ULL(63, 32)) |
1110 timestamp;
1111
1112 shhwtstamps = skb_hwtstamps(skb);
1113 memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps));
1114 shhwtstamps->hwtstamp = full_ts_in_ns;
1115 }
1116
1117 /* Everything we see on an interface that is in the HW bridge
1118 * has already been forwarded.
1119 */
Vladimir Olteandf291e52021-03-19 01:36:36 +02001120 if (ocelot->ports[src_port]->bridge)
Vladimir Oltean924ee312021-02-14 00:37:59 +02001121 skb->offload_fwd_mark = 1;
1122
1123 skb->protocol = eth_type_trans(skb, dev);
Horatiu Vulturd8ea7ff2021-02-16 22:42:03 +01001124
Vladimir Oltean924ee312021-02-14 00:37:59 +02001125 *nskb = skb;
1126
1127 return 0;
1128
1129out_free_skb:
1130 kfree_skb(skb);
1131 return err;
1132}
1133EXPORT_SYMBOL(ocelot_xtr_poll_frame);
1134
Vladimir Oltean137ffbc2021-02-14 00:37:54 +02001135bool ocelot_can_inject(struct ocelot *ocelot, int grp)
1136{
1137 u32 val = ocelot_read(ocelot, QS_INJ_STATUS);
1138
1139 if (!(val & QS_INJ_STATUS_FIFO_RDY(BIT(grp))))
1140 return false;
1141 if (val & QS_INJ_STATUS_WMARK_REACHED(BIT(grp)))
1142 return false;
1143
1144 return true;
1145}
1146EXPORT_SYMBOL(ocelot_can_inject);
1147
1148void ocelot_port_inject_frame(struct ocelot *ocelot, int port, int grp,
1149 u32 rew_op, struct sk_buff *skb)
1150{
Vladimir Oltean40d3f292021-02-14 00:37:56 +02001151 u32 ifh[OCELOT_TAG_LEN / 4] = {0};
Vladimir Oltean137ffbc2021-02-14 00:37:54 +02001152 unsigned int i, count, last;
1153
1154 ocelot_write_rix(ocelot, QS_INJ_CTRL_GAP_SIZE(1) |
1155 QS_INJ_CTRL_SOF, QS_INJ_CTRL, grp);
1156
Vladimir Oltean40d3f292021-02-14 00:37:56 +02001157 ocelot_ifh_set_bypass(ifh, 1);
Vladimir Oltean1f778d52021-02-15 15:31:43 +02001158 ocelot_ifh_set_dest(ifh, BIT_ULL(port));
Vladimir Oltean40d3f292021-02-14 00:37:56 +02001159 ocelot_ifh_set_tag_type(ifh, IFH_TAG_TYPE_C);
Vladimir Olteane8c07222021-10-01 18:15:27 +03001160 ocelot_ifh_set_vlan_tci(ifh, skb_vlan_tag_get(skb));
Vladimir Oltean40d3f292021-02-14 00:37:56 +02001161 ocelot_ifh_set_rew_op(ifh, rew_op);
Vladimir Oltean137ffbc2021-02-14 00:37:54 +02001162
1163 for (i = 0; i < OCELOT_TAG_LEN / 4; i++)
Vladimir Oltean40d3f292021-02-14 00:37:56 +02001164 ocelot_write_rix(ocelot, ifh[i], QS_INJ_WR, grp);
Vladimir Oltean137ffbc2021-02-14 00:37:54 +02001165
1166 count = DIV_ROUND_UP(skb->len, 4);
1167 last = skb->len % 4;
1168 for (i = 0; i < count; i++)
1169 ocelot_write_rix(ocelot, ((u32 *)skb->data)[i], QS_INJ_WR, grp);
1170
1171 /* Add padding */
1172 while (i < (OCELOT_BUFFER_CELL_SZ / 4)) {
1173 ocelot_write_rix(ocelot, 0, QS_INJ_WR, grp);
1174 i++;
1175 }
1176
1177 /* Indicate EOF and valid bytes in last word */
1178 ocelot_write_rix(ocelot, QS_INJ_CTRL_GAP_SIZE(1) |
1179 QS_INJ_CTRL_VLD_BYTES(skb->len < OCELOT_BUFFER_CELL_SZ ? 0 : last) |
1180 QS_INJ_CTRL_EOF,
1181 QS_INJ_CTRL, grp);
1182
1183 /* Add dummy CRC */
1184 ocelot_write_rix(ocelot, 0, QS_INJ_WR, grp);
1185 skb_tx_timestamp(skb);
1186
1187 skb->dev->stats.tx_packets++;
1188 skb->dev->stats.tx_bytes += skb->len;
1189}
1190EXPORT_SYMBOL(ocelot_port_inject_frame);
1191
Vladimir Oltean0a6f17c2021-02-14 00:38:01 +02001192void ocelot_drain_cpu_queue(struct ocelot *ocelot, int grp)
1193{
1194 while (ocelot_read(ocelot, QS_XTR_DATA_PRESENT) & BIT(grp))
1195 ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1196}
1197EXPORT_SYMBOL(ocelot_drain_cpu_queue);
1198
Vladimir Oltean5e256362019-11-14 17:03:27 +02001199int ocelot_fdb_add(struct ocelot *ocelot, int port,
Vladimir Oltean87b0f982020-04-14 22:36:15 +03001200 const unsigned char *addr, u16 vid)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001201{
Vladimir Oltean471beb12020-06-21 14:46:00 +03001202 int pgid = port;
1203
1204 if (port == ocelot->npi)
1205 pgid = PGID_CPU;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001206
Vladimir Oltean471beb12020-06-21 14:46:00 +03001207 return ocelot_mact_learn(ocelot, pgid, addr, vid, ENTRYTYPE_LOCKED);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001208}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001209EXPORT_SYMBOL(ocelot_fdb_add);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001210
Vladimir Oltean5e256362019-11-14 17:03:27 +02001211int ocelot_fdb_del(struct ocelot *ocelot, int port,
1212 const unsigned char *addr, u16 vid)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001213{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001214 return ocelot_mact_forget(ocelot, addr, vid);
1215}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001216EXPORT_SYMBOL(ocelot_fdb_del);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001217
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03001218int ocelot_port_fdb_do_dump(const unsigned char *addr, u16 vid,
1219 bool is_static, void *data)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001220{
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001221 struct ocelot_dump_ctx *dump = data;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001222 u32 portid = NETLINK_CB(dump->cb->skb).portid;
1223 u32 seq = dump->cb->nlh->nlmsg_seq;
1224 struct nlmsghdr *nlh;
1225 struct ndmsg *ndm;
1226
1227 if (dump->idx < dump->cb->args[2])
1228 goto skip;
1229
1230 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
1231 sizeof(*ndm), NLM_F_MULTI);
1232 if (!nlh)
1233 return -EMSGSIZE;
1234
1235 ndm = nlmsg_data(nlh);
1236 ndm->ndm_family = AF_BRIDGE;
1237 ndm->ndm_pad1 = 0;
1238 ndm->ndm_pad2 = 0;
1239 ndm->ndm_flags = NTF_SELF;
1240 ndm->ndm_type = 0;
1241 ndm->ndm_ifindex = dump->dev->ifindex;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001242 ndm->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001243
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001244 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
Alexandre Bellonia556c762018-05-14 22:04:57 +02001245 goto nla_put_failure;
1246
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001247 if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
Alexandre Bellonia556c762018-05-14 22:04:57 +02001248 goto nla_put_failure;
1249
1250 nlmsg_end(dump->skb, nlh);
1251
1252skip:
1253 dump->idx++;
1254 return 0;
1255
1256nla_put_failure:
1257 nlmsg_cancel(dump->skb, nlh);
1258 return -EMSGSIZE;
1259}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03001260EXPORT_SYMBOL(ocelot_port_fdb_do_dump);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001261
Vladimir Oltean24683462021-10-24 20:17:51 +03001262/* Caller must hold &ocelot->mact_lock */
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001263static int ocelot_mact_read(struct ocelot *ocelot, int port, int row, int col,
1264 struct ocelot_mact_entry *entry)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001265{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001266 u32 val, dst, macl, mach;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001267 char mac[ETH_ALEN];
Alexandre Bellonia556c762018-05-14 22:04:57 +02001268
1269 /* Set row and column to read from */
1270 ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_M_INDEX, row);
1271 ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_BUCKET, col);
1272
1273 /* Issue a read command */
1274 ocelot_write(ocelot,
1275 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_READ),
1276 ANA_TABLES_MACACCESS);
1277
1278 if (ocelot_mact_wait_for_completion(ocelot))
1279 return -ETIMEDOUT;
1280
1281 /* Read the entry flags */
1282 val = ocelot_read(ocelot, ANA_TABLES_MACACCESS);
1283 if (!(val & ANA_TABLES_MACACCESS_VALID))
1284 return -EINVAL;
1285
1286 /* If the entry read has another port configured as its destination,
1287 * do not report it.
1288 */
1289 dst = (val & ANA_TABLES_MACACCESS_DEST_IDX_M) >> 3;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001290 if (dst != port)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001291 return -EINVAL;
1292
1293 /* Get the entry's MAC address and VLAN id */
1294 macl = ocelot_read(ocelot, ANA_TABLES_MACLDATA);
1295 mach = ocelot_read(ocelot, ANA_TABLES_MACHDATA);
1296
1297 mac[0] = (mach >> 8) & 0xff;
1298 mac[1] = (mach >> 0) & 0xff;
1299 mac[2] = (macl >> 24) & 0xff;
1300 mac[3] = (macl >> 16) & 0xff;
1301 mac[4] = (macl >> 8) & 0xff;
1302 mac[5] = (macl >> 0) & 0xff;
1303
1304 entry->vid = (mach >> 16) & 0xfff;
1305 ether_addr_copy(entry->mac, mac);
1306
1307 return 0;
1308}
1309
Vladimir Oltean5e256362019-11-14 17:03:27 +02001310int ocelot_fdb_dump(struct ocelot *ocelot, int port,
1311 dsa_fdb_dump_cb_t *cb, void *data)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001312{
Vladimir Oltean24683462021-10-24 20:17:51 +03001313 int err = 0;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001314 int i, j;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001315
Vladimir Oltean24683462021-10-24 20:17:51 +03001316 /* We could take the lock just around ocelot_mact_read, but doing so
1317 * thousands of times in a row seems rather pointless and inefficient.
1318 */
1319 mutex_lock(&ocelot->mact_lock);
1320
Vladimir Oltean21ce7f32020-05-04 01:20:26 +03001321 /* Loop through all the mac tables entries. */
1322 for (i = 0; i < ocelot->num_mact_rows; i++) {
Alexandre Bellonia556c762018-05-14 22:04:57 +02001323 for (j = 0; j < 4; j++) {
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001324 struct ocelot_mact_entry entry;
1325 bool is_static;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001326
Vladimir Oltean24683462021-10-24 20:17:51 +03001327 err = ocelot_mact_read(ocelot, port, i, j, &entry);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001328 /* If the entry is invalid (wrong port, invalid...),
1329 * skip it.
1330 */
Vladimir Oltean24683462021-10-24 20:17:51 +03001331 if (err == -EINVAL)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001332 continue;
Vladimir Oltean24683462021-10-24 20:17:51 +03001333 else if (err)
1334 break;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001335
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001336 is_static = (entry.type == ENTRYTYPE_LOCKED);
1337
Vladimir Oltean24683462021-10-24 20:17:51 +03001338 err = cb(entry.mac, entry.vid, is_static, data);
1339 if (err)
1340 break;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001341 }
1342 }
1343
Vladimir Oltean24683462021-10-24 20:17:51 +03001344 mutex_unlock(&ocelot->mact_lock);
1345
1346 return err;
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001347}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001348EXPORT_SYMBOL(ocelot_fdb_dump);
Vladimir Oltean531ee1a2019-11-09 15:02:49 +02001349
Yangbo Luf1459222019-11-20 16:23:14 +08001350int ocelot_hwstamp_get(struct ocelot *ocelot, int port, struct ifreq *ifr)
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001351{
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001352 return copy_to_user(ifr->ifr_data, &ocelot->hwtstamp_config,
1353 sizeof(ocelot->hwtstamp_config)) ? -EFAULT : 0;
1354}
Yangbo Luf1459222019-11-20 16:23:14 +08001355EXPORT_SYMBOL(ocelot_hwstamp_get);
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001356
Yangbo Luf1459222019-11-20 16:23:14 +08001357int ocelot_hwstamp_set(struct ocelot *ocelot, int port, struct ifreq *ifr)
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001358{
Vladimir Oltean306fd442019-11-09 15:02:50 +02001359 struct ocelot_port *ocelot_port = ocelot->ports[port];
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001360 struct hwtstamp_config cfg;
1361
1362 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1363 return -EFAULT;
1364
1365 /* reserved for future extensions */
1366 if (cfg.flags)
1367 return -EINVAL;
1368
1369 /* Tx type sanity check */
1370 switch (cfg.tx_type) {
1371 case HWTSTAMP_TX_ON:
Vladimir Oltean306fd442019-11-09 15:02:50 +02001372 ocelot_port->ptp_cmd = IFH_REW_OP_TWO_STEP_PTP;
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001373 break;
1374 case HWTSTAMP_TX_ONESTEP_SYNC:
1375 /* IFH_REW_OP_ONE_STEP_PTP updates the correctional field, we
1376 * need to update the origin time.
1377 */
Vladimir Oltean306fd442019-11-09 15:02:50 +02001378 ocelot_port->ptp_cmd = IFH_REW_OP_ORIGIN_PTP;
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001379 break;
1380 case HWTSTAMP_TX_OFF:
Vladimir Oltean306fd442019-11-09 15:02:50 +02001381 ocelot_port->ptp_cmd = 0;
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001382 break;
1383 default:
1384 return -ERANGE;
1385 }
1386
1387 mutex_lock(&ocelot->ptp_lock);
1388
1389 switch (cfg.rx_filter) {
1390 case HWTSTAMP_FILTER_NONE:
1391 break;
1392 case HWTSTAMP_FILTER_ALL:
1393 case HWTSTAMP_FILTER_SOME:
1394 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1395 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1396 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1397 case HWTSTAMP_FILTER_NTP_ALL:
1398 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1399 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1400 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1401 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1402 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1403 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1404 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1405 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1406 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1407 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1408 break;
1409 default:
1410 mutex_unlock(&ocelot->ptp_lock);
1411 return -ERANGE;
1412 }
1413
1414 /* Commit back the result & save it */
1415 memcpy(&ocelot->hwtstamp_config, &cfg, sizeof(cfg));
1416 mutex_unlock(&ocelot->ptp_lock);
1417
1418 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1419}
Yangbo Luf1459222019-11-20 16:23:14 +08001420EXPORT_SYMBOL(ocelot_hwstamp_set);
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001421
Vladimir Oltean5e256362019-11-14 17:03:27 +02001422void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001423{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001424 int i;
1425
1426 if (sset != ETH_SS_STATS)
1427 return;
1428
1429 for (i = 0; i < ocelot->num_stats; i++)
1430 memcpy(data + i * ETH_GSTRING_LEN, ocelot->stats_layout[i].name,
1431 ETH_GSTRING_LEN);
1432}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001433EXPORT_SYMBOL(ocelot_get_strings);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001434
Claudiu Manoil1e1caa92019-04-16 17:51:59 +03001435static void ocelot_update_stats(struct ocelot *ocelot)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001436{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001437 int i, j;
1438
1439 mutex_lock(&ocelot->stats_lock);
1440
1441 for (i = 0; i < ocelot->num_phys_ports; i++) {
1442 /* Configure the port to read the stats from */
1443 ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(i), SYS_STAT_CFG);
1444
1445 for (j = 0; j < ocelot->num_stats; j++) {
1446 u32 val;
1447 unsigned int idx = i * ocelot->num_stats + j;
1448
1449 val = ocelot_read_rix(ocelot, SYS_COUNT_RX_OCTETS,
1450 ocelot->stats_layout[j].offset);
1451
1452 if (val < (ocelot->stats[idx] & U32_MAX))
1453 ocelot->stats[idx] += (u64)1 << 32;
1454
1455 ocelot->stats[idx] = (ocelot->stats[idx] &
1456 ~(u64)U32_MAX) + val;
1457 }
1458 }
1459
Claudiu Manoil1e1caa92019-04-16 17:51:59 +03001460 mutex_unlock(&ocelot->stats_lock);
1461}
1462
1463static void ocelot_check_stats_work(struct work_struct *work)
1464{
1465 struct delayed_work *del_work = to_delayed_work(work);
1466 struct ocelot *ocelot = container_of(del_work, struct ocelot,
1467 stats_work);
1468
1469 ocelot_update_stats(ocelot);
1470
Alexandre Bellonia556c762018-05-14 22:04:57 +02001471 queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
1472 OCELOT_STATS_CHECK_DELAY);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001473}
1474
Vladimir Oltean5e256362019-11-14 17:03:27 +02001475void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001476{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001477 int i;
1478
1479 /* check and update now */
Claudiu Manoil1e1caa92019-04-16 17:51:59 +03001480 ocelot_update_stats(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001481
1482 /* Copy all counters */
1483 for (i = 0; i < ocelot->num_stats; i++)
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001484 *data++ = ocelot->stats[port * ocelot->num_stats + i];
Alexandre Bellonia556c762018-05-14 22:04:57 +02001485}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001486EXPORT_SYMBOL(ocelot_get_ethtool_stats);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001487
Vladimir Oltean5e256362019-11-14 17:03:27 +02001488int ocelot_get_sset_count(struct ocelot *ocelot, int port, int sset)
Vladimir Olteanc7282d32019-11-09 15:02:54 +02001489{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001490 if (sset != ETH_SS_STATS)
1491 return -EOPNOTSUPP;
Vladimir Olteanc7282d32019-11-09 15:02:54 +02001492
Alexandre Bellonia556c762018-05-14 22:04:57 +02001493 return ocelot->num_stats;
1494}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001495EXPORT_SYMBOL(ocelot_get_sset_count);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001496
Vladimir Oltean5e256362019-11-14 17:03:27 +02001497int ocelot_get_ts_info(struct ocelot *ocelot, int port,
1498 struct ethtool_ts_info *info)
Vladimir Olteanc7282d32019-11-09 15:02:54 +02001499{
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001500 info->phc_index = ocelot->ptp_clock ?
1501 ptp_clock_index(ocelot->ptp_clock) : -1;
Yangbo Lud2b09a82020-04-20 10:46:46 +08001502 if (info->phc_index == -1) {
1503 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
1504 SOF_TIMESTAMPING_RX_SOFTWARE |
1505 SOF_TIMESTAMPING_SOFTWARE;
1506 return 0;
1507 }
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001508 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
1509 SOF_TIMESTAMPING_RX_SOFTWARE |
1510 SOF_TIMESTAMPING_SOFTWARE |
1511 SOF_TIMESTAMPING_TX_HARDWARE |
1512 SOF_TIMESTAMPING_RX_HARDWARE |
1513 SOF_TIMESTAMPING_RAW_HARDWARE;
1514 info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON) |
1515 BIT(HWTSTAMP_TX_ONESTEP_SYNC);
1516 info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | BIT(HWTSTAMP_FILTER_ALL);
1517
1518 return 0;
1519}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001520EXPORT_SYMBOL(ocelot_get_ts_info);
Antoine Tenart4e3b0462019-08-12 16:45:37 +02001521
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001522static u32 ocelot_get_bond_mask(struct ocelot *ocelot, struct net_device *bond,
1523 bool only_active_ports)
Vladimir Olteanb80af652021-02-06 00:02:14 +02001524{
1525 u32 mask = 0;
1526 int port;
1527
1528 for (port = 0; port < ocelot->num_phys_ports; port++) {
1529 struct ocelot_port *ocelot_port = ocelot->ports[port];
1530
1531 if (!ocelot_port)
1532 continue;
1533
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001534 if (ocelot_port->bond == bond) {
1535 if (only_active_ports && !ocelot_port->lag_tx_active)
1536 continue;
1537
Vladimir Olteanb80af652021-02-06 00:02:14 +02001538 mask |= BIT(port);
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001539 }
Vladimir Olteanb80af652021-02-06 00:02:14 +02001540 }
1541
1542 return mask;
1543}
1544
Vladimir Olteanacc64f52021-09-22 19:03:38 -07001545static u32 ocelot_get_bridge_fwd_mask(struct ocelot *ocelot, int src_port,
Vladimir Olteandf291e52021-03-19 01:36:36 +02001546 struct net_device *bridge)
1547{
Vladimir Olteanacc64f52021-09-22 19:03:38 -07001548 struct ocelot_port *ocelot_port = ocelot->ports[src_port];
Vladimir Olteandf291e52021-03-19 01:36:36 +02001549 u32 mask = 0;
1550 int port;
1551
Vladimir Olteanacc64f52021-09-22 19:03:38 -07001552 if (!ocelot_port || ocelot_port->bridge != bridge ||
1553 ocelot_port->stp_state != BR_STATE_FORWARDING)
1554 return 0;
1555
Vladimir Olteandf291e52021-03-19 01:36:36 +02001556 for (port = 0; port < ocelot->num_phys_ports; port++) {
Vladimir Olteanacc64f52021-09-22 19:03:38 -07001557 ocelot_port = ocelot->ports[port];
Vladimir Olteandf291e52021-03-19 01:36:36 +02001558
1559 if (!ocelot_port)
1560 continue;
1561
1562 if (ocelot_port->stp_state == BR_STATE_FORWARDING &&
1563 ocelot_port->bridge == bridge)
1564 mask |= BIT(port);
1565 }
1566
1567 return mask;
1568}
1569
Vladimir Olteane21268e2021-01-29 03:00:09 +02001570static u32 ocelot_get_dsa_8021q_cpu_mask(struct ocelot *ocelot)
Vladimir Oltean9b521252021-01-29 03:00:02 +02001571{
Vladimir Olteane21268e2021-01-29 03:00:09 +02001572 u32 mask = 0;
Vladimir Oltean9b521252021-01-29 03:00:02 +02001573 int port;
1574
Vladimir Olteane21268e2021-01-29 03:00:09 +02001575 for (port = 0; port < ocelot->num_phys_ports; port++) {
1576 struct ocelot_port *ocelot_port = ocelot->ports[port];
1577
1578 if (!ocelot_port)
1579 continue;
1580
1581 if (ocelot_port->is_dsa_8021q_cpu)
1582 mask |= BIT(port);
1583 }
1584
1585 return mask;
1586}
1587
1588void ocelot_apply_bridge_fwd_mask(struct ocelot *ocelot)
1589{
1590 unsigned long cpu_fwd_mask;
1591 int port;
1592
1593 /* If a DSA tag_8021q CPU exists, it needs to be included in the
1594 * regular forwarding path of the front ports regardless of whether
1595 * those are bridged or standalone.
1596 * If DSA tag_8021q is not used, this returns 0, which is fine because
1597 * the hardware-based CPU port module can be a destination for packets
1598 * even if it isn't part of PGID_SRC.
1599 */
1600 cpu_fwd_mask = ocelot_get_dsa_8021q_cpu_mask(ocelot);
1601
Vladimir Oltean9b521252021-01-29 03:00:02 +02001602 /* Apply FWD mask. The loop is needed to add/remove the current port as
1603 * a source for the other ports.
1604 */
1605 for (port = 0; port < ocelot->num_phys_ports; port++) {
Vladimir Olteane21268e2021-01-29 03:00:09 +02001606 struct ocelot_port *ocelot_port = ocelot->ports[port];
1607 unsigned long mask;
1608
1609 if (!ocelot_port) {
1610 /* Unused ports can't send anywhere */
1611 mask = 0;
1612 } else if (ocelot_port->is_dsa_8021q_cpu) {
1613 /* The DSA tag_8021q CPU ports need to be able to
1614 * forward packets to all other ports except for
1615 * themselves
1616 */
1617 mask = GENMASK(ocelot->num_phys_ports - 1, 0);
1618 mask &= ~cpu_fwd_mask;
Vladimir Olteandf291e52021-03-19 01:36:36 +02001619 } else if (ocelot_port->bridge) {
1620 struct net_device *bridge = ocelot_port->bridge;
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001621 struct net_device *bond = ocelot_port->bond;
Vladimir Oltean9b521252021-01-29 03:00:02 +02001622
Vladimir Olteanacc64f52021-09-22 19:03:38 -07001623 mask = ocelot_get_bridge_fwd_mask(ocelot, port, bridge);
Vladimir Olteanc1930142021-08-17 19:04:25 +03001624 mask |= cpu_fwd_mask;
Vladimir Olteandf291e52021-03-19 01:36:36 +02001625 mask &= ~BIT(port);
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001626 if (bond) {
1627 mask &= ~ocelot_get_bond_mask(ocelot, bond,
1628 false);
1629 }
Vladimir Oltean9b521252021-01-29 03:00:02 +02001630 } else {
Vladimir Olteane21268e2021-01-29 03:00:09 +02001631 /* Standalone ports forward only to DSA tag_8021q CPU
1632 * ports (if those exist), or to the hardware CPU port
1633 * module otherwise.
1634 */
1635 mask = cpu_fwd_mask;
Vladimir Oltean9b521252021-01-29 03:00:02 +02001636 }
Vladimir Olteane21268e2021-01-29 03:00:09 +02001637
1638 ocelot_write_rix(ocelot, mask, ANA_PGID_PGID, PGID_SRC + port);
Vladimir Oltean9b521252021-01-29 03:00:02 +02001639 }
1640}
Vladimir Olteane21268e2021-01-29 03:00:09 +02001641EXPORT_SYMBOL(ocelot_apply_bridge_fwd_mask);
Vladimir Oltean9b521252021-01-29 03:00:02 +02001642
Vladimir Oltean5e256362019-11-14 17:03:27 +02001643void ocelot_bridge_stp_state_set(struct ocelot *ocelot, int port, u8 state)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001644{
Vladimir Oltean421741e2021-02-12 17:15:59 +02001645 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteandf291e52021-03-19 01:36:36 +02001646 u32 learn_ena = 0;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001647
Vladimir Olteandf291e52021-03-19 01:36:36 +02001648 ocelot_port->stp_state = state;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001649
Vladimir Olteandf291e52021-03-19 01:36:36 +02001650 if ((state == BR_STATE_LEARNING || state == BR_STATE_FORWARDING) &&
1651 ocelot_port->learn_ena)
1652 learn_ena = ANA_PORT_PORT_CFG_LEARN_ENA;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001653
Vladimir Olteandf291e52021-03-19 01:36:36 +02001654 ocelot_rmw_gix(ocelot, learn_ena, ANA_PORT_PORT_CFG_LEARN_ENA,
1655 ANA_PORT_PORT_CFG, port);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001656
Vladimir Oltean9b521252021-01-29 03:00:02 +02001657 ocelot_apply_bridge_fwd_mask(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001658}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001659EXPORT_SYMBOL(ocelot_bridge_stp_state_set);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001660
Vladimir Oltean5e256362019-11-14 17:03:27 +02001661void ocelot_set_ageing_time(struct ocelot *ocelot, unsigned int msecs)
Vladimir Oltean4bda1412019-11-09 15:02:51 +02001662{
Vladimir Olteanc0d7ecc2020-05-04 01:20:27 +03001663 unsigned int age_period = ANA_AUTOAGE_AGE_PERIOD(msecs / 2000);
1664
1665 /* Setting AGE_PERIOD to zero effectively disables automatic aging,
1666 * which is clearly not what our intention is. So avoid that.
1667 */
1668 if (!age_period)
1669 age_period = 1;
1670
1671 ocelot_rmw(ocelot, age_period, ANA_AUTOAGE_AGE_PERIOD_M, ANA_AUTOAGE);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001672}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001673EXPORT_SYMBOL(ocelot_set_ageing_time);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001674
Alexandre Bellonia556c762018-05-14 22:04:57 +02001675static struct ocelot_multicast *ocelot_multicast_get(struct ocelot *ocelot,
1676 const unsigned char *addr,
1677 u16 vid)
1678{
1679 struct ocelot_multicast *mc;
1680
1681 list_for_each_entry(mc, &ocelot->multicast, list) {
1682 if (ether_addr_equal(mc->addr, addr) && mc->vid == vid)
1683 return mc;
1684 }
1685
1686 return NULL;
1687}
1688
Vladimir Oltean9403c152020-06-21 14:46:03 +03001689static enum macaccess_entry_type ocelot_classify_mdb(const unsigned char *addr)
1690{
1691 if (addr[0] == 0x01 && addr[1] == 0x00 && addr[2] == 0x5e)
1692 return ENTRYTYPE_MACv4;
1693 if (addr[0] == 0x33 && addr[1] == 0x33)
1694 return ENTRYTYPE_MACv6;
Vladimir Oltean7c313142020-10-29 04:27:34 +02001695 return ENTRYTYPE_LOCKED;
Vladimir Oltean9403c152020-06-21 14:46:03 +03001696}
1697
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001698static struct ocelot_pgid *ocelot_pgid_alloc(struct ocelot *ocelot, int index,
1699 unsigned long ports)
Vladimir Oltean9403c152020-06-21 14:46:03 +03001700{
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001701 struct ocelot_pgid *pgid;
1702
1703 pgid = kzalloc(sizeof(*pgid), GFP_KERNEL);
1704 if (!pgid)
1705 return ERR_PTR(-ENOMEM);
1706
1707 pgid->ports = ports;
1708 pgid->index = index;
1709 refcount_set(&pgid->refcount, 1);
1710 list_add_tail(&pgid->list, &ocelot->pgids);
1711
1712 return pgid;
1713}
1714
1715static void ocelot_pgid_free(struct ocelot *ocelot, struct ocelot_pgid *pgid)
1716{
1717 if (!refcount_dec_and_test(&pgid->refcount))
1718 return;
1719
1720 list_del(&pgid->list);
1721 kfree(pgid);
1722}
1723
1724static struct ocelot_pgid *ocelot_mdb_get_pgid(struct ocelot *ocelot,
1725 const struct ocelot_multicast *mc)
1726{
1727 struct ocelot_pgid *pgid;
1728 int index;
Vladimir Oltean9403c152020-06-21 14:46:03 +03001729
1730 /* According to VSC7514 datasheet 3.9.1.5 IPv4 Multicast Entries and
1731 * 3.9.1.6 IPv6 Multicast Entries, "Instead of a lookup in the
1732 * destination mask table (PGID), the destination set is programmed as
1733 * part of the entry MAC address.", and the DEST_IDX is set to 0.
1734 */
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001735 if (mc->entry_type == ENTRYTYPE_MACv4 ||
1736 mc->entry_type == ENTRYTYPE_MACv6)
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001737 return ocelot_pgid_alloc(ocelot, 0, mc->ports);
Vladimir Oltean9403c152020-06-21 14:46:03 +03001738
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001739 list_for_each_entry(pgid, &ocelot->pgids, list) {
1740 /* When searching for a nonreserved multicast PGID, ignore the
1741 * dummy PGID of zero that we have for MACv4/MACv6 entries
1742 */
1743 if (pgid->index && pgid->ports == mc->ports) {
1744 refcount_inc(&pgid->refcount);
1745 return pgid;
1746 }
1747 }
1748
1749 /* Search for a free index in the nonreserved multicast PGID area */
1750 for_each_nonreserved_multicast_dest_pgid(ocelot, index) {
Vladimir Oltean9403c152020-06-21 14:46:03 +03001751 bool used = false;
1752
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001753 list_for_each_entry(pgid, &ocelot->pgids, list) {
1754 if (pgid->index == index) {
Vladimir Oltean9403c152020-06-21 14:46:03 +03001755 used = true;
1756 break;
1757 }
1758 }
1759
1760 if (!used)
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001761 return ocelot_pgid_alloc(ocelot, index, mc->ports);
Vladimir Oltean9403c152020-06-21 14:46:03 +03001762 }
1763
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001764 return ERR_PTR(-ENOSPC);
Vladimir Oltean9403c152020-06-21 14:46:03 +03001765}
1766
1767static void ocelot_encode_ports_to_mdb(unsigned char *addr,
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001768 struct ocelot_multicast *mc)
Vladimir Oltean9403c152020-06-21 14:46:03 +03001769{
Vladimir Olteanebbd8602020-10-29 04:27:35 +02001770 ether_addr_copy(addr, mc->addr);
Vladimir Oltean9403c152020-06-21 14:46:03 +03001771
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001772 if (mc->entry_type == ENTRYTYPE_MACv4) {
Vladimir Oltean9403c152020-06-21 14:46:03 +03001773 addr[0] = 0;
1774 addr[1] = mc->ports >> 8;
1775 addr[2] = mc->ports & 0xff;
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001776 } else if (mc->entry_type == ENTRYTYPE_MACv6) {
Vladimir Oltean9403c152020-06-21 14:46:03 +03001777 addr[0] = mc->ports >> 8;
1778 addr[1] = mc->ports & 0xff;
1779 }
1780}
1781
Vladimir Oltean209edf92020-06-21 14:46:01 +03001782int ocelot_port_mdb_add(struct ocelot *ocelot, int port,
1783 const struct switchdev_obj_port_mdb *mdb)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001784{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001785 unsigned char addr[ETH_ALEN];
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001786 struct ocelot_multicast *mc;
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001787 struct ocelot_pgid *pgid;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001788 u16 vid = mdb->vid;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001789
Vladimir Oltean471beb12020-06-21 14:46:00 +03001790 if (port == ocelot->npi)
1791 port = ocelot->num_phys_ports;
1792
Alexandre Bellonia556c762018-05-14 22:04:57 +02001793 mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
1794 if (!mc) {
Vladimir Oltean728e69a2020-10-29 04:27:36 +02001795 /* New entry */
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001796 mc = devm_kzalloc(ocelot->dev, sizeof(*mc), GFP_KERNEL);
1797 if (!mc)
1798 return -ENOMEM;
1799
1800 mc->entry_type = ocelot_classify_mdb(mdb->addr);
1801 ether_addr_copy(mc->addr, mdb->addr);
1802 mc->vid = vid;
1803
Alexandre Bellonia556c762018-05-14 22:04:57 +02001804 list_add_tail(&mc->list, &ocelot->multicast);
Vladimir Oltean728e69a2020-10-29 04:27:36 +02001805 } else {
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001806 /* Existing entry. Clean up the current port mask from
1807 * hardware now, because we'll be modifying it.
1808 */
1809 ocelot_pgid_free(ocelot, mc->pgid);
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001810 ocelot_encode_ports_to_mdb(addr, mc);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001811 ocelot_mact_forget(ocelot, addr, vid);
1812 }
1813
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001814 mc->ports |= BIT(port);
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001815
1816 pgid = ocelot_mdb_get_pgid(ocelot, mc);
1817 if (IS_ERR(pgid)) {
1818 dev_err(ocelot->dev,
1819 "Cannot allocate PGID for mdb %pM vid %d\n",
1820 mc->addr, mc->vid);
1821 devm_kfree(ocelot->dev, mc);
1822 return PTR_ERR(pgid);
1823 }
1824 mc->pgid = pgid;
1825
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001826 ocelot_encode_ports_to_mdb(addr, mc);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001827
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001828 if (mc->entry_type != ENTRYTYPE_MACv4 &&
1829 mc->entry_type != ENTRYTYPE_MACv6)
1830 ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID,
1831 pgid->index);
1832
1833 return ocelot_mact_learn(ocelot, pgid->index, addr, vid,
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001834 mc->entry_type);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001835}
Vladimir Oltean209edf92020-06-21 14:46:01 +03001836EXPORT_SYMBOL(ocelot_port_mdb_add);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001837
Vladimir Oltean209edf92020-06-21 14:46:01 +03001838int ocelot_port_mdb_del(struct ocelot *ocelot, int port,
1839 const struct switchdev_obj_port_mdb *mdb)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001840{
Alexandre Bellonia556c762018-05-14 22:04:57 +02001841 unsigned char addr[ETH_ALEN];
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001842 struct ocelot_multicast *mc;
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001843 struct ocelot_pgid *pgid;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001844 u16 vid = mdb->vid;
1845
Vladimir Oltean471beb12020-06-21 14:46:00 +03001846 if (port == ocelot->npi)
1847 port = ocelot->num_phys_ports;
1848
Alexandre Bellonia556c762018-05-14 22:04:57 +02001849 mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
1850 if (!mc)
1851 return -ENOENT;
1852
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001853 ocelot_encode_ports_to_mdb(addr, mc);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001854 ocelot_mact_forget(ocelot, addr, vid);
1855
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001856 ocelot_pgid_free(ocelot, mc->pgid);
Vladimir Oltean004d44f2019-11-09 15:02:53 +02001857 mc->ports &= ~BIT(port);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001858 if (!mc->ports) {
1859 list_del(&mc->list);
1860 devm_kfree(ocelot->dev, mc);
1861 return 0;
1862 }
1863
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001864 /* We have a PGID with fewer ports now */
1865 pgid = ocelot_mdb_get_pgid(ocelot, mc);
1866 if (IS_ERR(pgid))
1867 return PTR_ERR(pgid);
1868 mc->pgid = pgid;
1869
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001870 ocelot_encode_ports_to_mdb(addr, mc);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001871
Vladimir Olteane5d1f892020-10-29 04:27:38 +02001872 if (mc->entry_type != ENTRYTYPE_MACv4 &&
1873 mc->entry_type != ENTRYTYPE_MACv6)
1874 ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID,
1875 pgid->index);
1876
1877 return ocelot_mact_learn(ocelot, pgid->index, addr, vid,
Vladimir Olteanbb8d53f2020-10-29 04:27:37 +02001878 mc->entry_type);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001879}
Vladimir Oltean209edf92020-06-21 14:46:01 +03001880EXPORT_SYMBOL(ocelot_port_mdb_del);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001881
Vladimir Olteane4bd44e2021-03-23 01:51:52 +02001882void ocelot_port_bridge_join(struct ocelot *ocelot, int port,
1883 struct net_device *bridge)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001884{
Vladimir Olteandf291e52021-03-19 01:36:36 +02001885 struct ocelot_port *ocelot_port = ocelot->ports[port];
Alexandre Bellonia556c762018-05-14 22:04:57 +02001886
Vladimir Olteandf291e52021-03-19 01:36:36 +02001887 ocelot_port->bridge = bridge;
Alexandre Bellonia556c762018-05-14 22:04:57 +02001888
Vladimir Olteane4bd44e2021-03-23 01:51:52 +02001889 ocelot_apply_bridge_fwd_mask(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001890}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001891EXPORT_SYMBOL(ocelot_port_bridge_join);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001892
Vladimir Olteane4bd44e2021-03-23 01:51:52 +02001893void ocelot_port_bridge_leave(struct ocelot *ocelot, int port,
1894 struct net_device *bridge)
Alexandre Bellonia556c762018-05-14 22:04:57 +02001895{
Vladimir Olteandf291e52021-03-19 01:36:36 +02001896 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Oltean2e554a72020-10-03 01:06:46 +03001897
Vladimir Olteandf291e52021-03-19 01:36:36 +02001898 ocelot_port->bridge = NULL;
Antoine Tenart71425292018-06-26 14:28:49 +02001899
Vladimir Olteand4004422021-10-20 20:58:52 +03001900 ocelot_port_set_pvid(ocelot, port, NULL);
Vladimir Oltean0da1a1c2021-10-20 20:58:50 +03001901 ocelot_port_manage_port_tag(ocelot, port);
Vladimir Olteane4bd44e2021-03-23 01:51:52 +02001902 ocelot_apply_bridge_fwd_mask(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001903}
Vladimir Oltean5e256362019-11-14 17:03:27 +02001904EXPORT_SYMBOL(ocelot_port_bridge_leave);
Alexandre Bellonia556c762018-05-14 22:04:57 +02001905
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001906static void ocelot_set_aggr_pgids(struct ocelot *ocelot)
1907{
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001908 unsigned long visited = GENMASK(ocelot->num_phys_ports - 1, 0);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001909 int i, port, lag;
1910
1911 /* Reset destination and aggregation PGIDS */
Vladimir Oltean96b029b2020-06-21 14:46:02 +03001912 for_each_unicast_dest_pgid(ocelot, port)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001913 ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
1914
Vladimir Oltean96b029b2020-06-21 14:46:02 +03001915 for_each_aggr_pgid(ocelot, i)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001916 ocelot_write_rix(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0),
1917 ANA_PGID_PGID, i);
1918
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001919 /* The visited ports bitmask holds the list of ports offloading any
1920 * bonding interface. Initially we mark all these ports as unvisited,
1921 * then every time we visit a port in this bitmask, we know that it is
1922 * the lowest numbered port, i.e. the one whose logical ID == physical
1923 * port ID == LAG ID. So we mark as visited all further ports in the
1924 * bitmask that are offloading the same bonding interface. This way,
1925 * we set up the aggregation PGIDs only once per bonding interface.
1926 */
1927 for (port = 0; port < ocelot->num_phys_ports; port++) {
1928 struct ocelot_port *ocelot_port = ocelot->ports[port];
1929
1930 if (!ocelot_port || !ocelot_port->bond)
1931 continue;
1932
1933 visited &= ~BIT(port);
1934 }
1935
1936 /* Now, set PGIDs for each active LAG */
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001937 for (lag = 0; lag < ocelot->num_phys_ports; lag++) {
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001938 struct net_device *bond = ocelot->ports[lag]->bond;
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001939 int num_active_ports = 0;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001940 unsigned long bond_mask;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001941 u8 aggr_idx[16];
1942
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001943 if (!bond || (visited & BIT(lag)))
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001944 continue;
1945
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001946 bond_mask = ocelot_get_bond_mask(ocelot, bond, true);
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001947
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001948 for_each_set_bit(port, &bond_mask, ocelot->num_phys_ports) {
1949 // Destination mask
1950 ocelot_write_rix(ocelot, bond_mask,
1951 ANA_PGID_PGID, port);
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001952 aggr_idx[num_active_ports++] = port;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001953 }
1954
Vladimir Oltean96b029b2020-06-21 14:46:02 +03001955 for_each_aggr_pgid(ocelot, i) {
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001956 u32 ac;
1957
1958 ac = ocelot_read_rix(ocelot, ANA_PGID_PGID, i);
1959 ac &= ~bond_mask;
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02001960 /* Don't do division by zero if there was no active
1961 * port. Just make all aggregation codes zero.
1962 */
1963 if (num_active_ports)
1964 ac |= BIT(aggr_idx[i % num_active_ports]);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001965 ocelot_write_rix(ocelot, ac, ANA_PGID_PGID, i);
1966 }
Vladimir Oltean528d3f12021-02-06 00:02:17 +02001967
1968 /* Mark all ports in the same LAG as visited to avoid applying
1969 * the same config again.
1970 */
1971 for (port = lag; port < ocelot->num_phys_ports; port++) {
1972 struct ocelot_port *ocelot_port = ocelot->ports[port];
1973
1974 if (!ocelot_port)
1975 continue;
1976
1977 if (ocelot_port->bond == bond)
1978 visited |= BIT(port);
1979 }
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001980 }
1981}
1982
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001983/* When offloading a bonding interface, the switch ports configured under the
1984 * same bond must have the same logical port ID, equal to the physical port ID
1985 * of the lowest numbered physical port in that bond. Otherwise, in standalone/
1986 * bridged mode, each port has a logical port ID equal to its physical port ID.
1987 */
1988static void ocelot_setup_logical_port_ids(struct ocelot *ocelot)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001989{
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001990 int port;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001991
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001992 for (port = 0; port < ocelot->num_phys_ports; port++) {
1993 struct ocelot_port *ocelot_port = ocelot->ports[port];
1994 struct net_device *bond;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001995
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001996 if (!ocelot_port)
1997 continue;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02001998
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02001999 bond = ocelot_port->bond;
2000 if (bond) {
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02002001 int lag = __ffs(ocelot_get_bond_mask(ocelot, bond,
2002 false));
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02002003
2004 ocelot_rmw_gix(ocelot,
2005 ANA_PORT_PORT_CFG_PORTID_VAL(lag),
2006 ANA_PORT_PORT_CFG_PORTID_VAL_M,
2007 ANA_PORT_PORT_CFG, port);
2008 } else {
2009 ocelot_rmw_gix(ocelot,
2010 ANA_PORT_PORT_CFG_PORTID_VAL(port),
2011 ANA_PORT_PORT_CFG_PORTID_VAL_M,
2012 ANA_PORT_PORT_CFG, port);
2013 }
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02002014 }
2015}
2016
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03002017int ocelot_port_lag_join(struct ocelot *ocelot, int port,
Vladimir Oltean583cbbe2021-02-06 00:02:12 +02002018 struct net_device *bond,
2019 struct netdev_lag_upper_info *info)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02002020{
Vladimir Oltean583cbbe2021-02-06 00:02:12 +02002021 if (info->tx_type != NETDEV_LAG_TX_TYPE_HASH)
2022 return -EOPNOTSUPP;
2023
Vladimir Olteanb80af652021-02-06 00:02:14 +02002024 ocelot->ports[port]->bond = bond;
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02002025
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02002026 ocelot_setup_logical_port_ids(ocelot);
Vladimir Oltean9b521252021-01-29 03:00:02 +02002027 ocelot_apply_bridge_fwd_mask(ocelot);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02002028 ocelot_set_aggr_pgids(ocelot);
2029
2030 return 0;
2031}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03002032EXPORT_SYMBOL(ocelot_port_lag_join);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02002033
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03002034void ocelot_port_lag_leave(struct ocelot *ocelot, int port,
2035 struct net_device *bond)
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02002036{
Vladimir Olteanb80af652021-02-06 00:02:14 +02002037 ocelot->ports[port]->bond = NULL;
2038
Vladimir Oltean2527f2e2021-02-06 00:02:16 +02002039 ocelot_setup_logical_port_ids(ocelot);
Vladimir Oltean9b521252021-01-29 03:00:02 +02002040 ocelot_apply_bridge_fwd_mask(ocelot);
Alexandre Bellonidc96ee32018-06-26 14:28:48 +02002041 ocelot_set_aggr_pgids(ocelot);
2042}
Vladimir Oltean9c90eea2020-06-20 18:43:44 +03002043EXPORT_SYMBOL(ocelot_port_lag_leave);
Petr Machata0e332c82018-11-22 23:30:11 +00002044
Vladimir Oltean23ca3b72021-02-06 00:02:19 +02002045void ocelot_port_lag_change(struct ocelot *ocelot, int port, bool lag_tx_active)
2046{
2047 struct ocelot_port *ocelot_port = ocelot->ports[port];
2048
2049 ocelot_port->lag_tx_active = lag_tx_active;
2050
2051 /* Rebalance the LAGs */
2052 ocelot_set_aggr_pgids(ocelot);
2053}
2054EXPORT_SYMBOL(ocelot_port_lag_change);
2055
Vladimir Olteana8015de2020-03-10 03:28:18 +02002056/* Configure the maximum SDU (L2 payload) on RX to the value specified in @sdu.
2057 * The length of VLAN tags is accounted for automatically via DEV_MAC_TAGS_CFG.
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02002058 * In the special case that it's the NPI port that we're configuring, the
2059 * length of the tag and optional prefix needs to be accounted for privately,
2060 * in order to be able to sustain communication at the requested @sdu.
Vladimir Olteana8015de2020-03-10 03:28:18 +02002061 */
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02002062void ocelot_port_set_maxlen(struct ocelot *ocelot, int port, size_t sdu)
Vladimir Oltean31350d72019-11-09 15:02:56 +02002063{
2064 struct ocelot_port *ocelot_port = ocelot->ports[port];
Vladimir Olteana8015de2020-03-10 03:28:18 +02002065 int maxlen = sdu + ETH_HLEN + ETH_FCS_LEN;
Vladimir Olteane8e6e732020-07-13 19:57:05 +03002066 int pause_start, pause_stop;
Vladimir Oltean601e9842020-10-05 12:09:11 +03002067 int atop, atop_tot;
Vladimir Oltean31350d72019-11-09 15:02:56 +02002068
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02002069 if (port == ocelot->npi) {
2070 maxlen += OCELOT_TAG_LEN;
2071
Vladimir Olteancacea622021-01-29 03:00:03 +02002072 if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT)
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02002073 maxlen += OCELOT_SHORT_PREFIX_LEN;
Vladimir Olteancacea622021-01-29 03:00:03 +02002074 else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG)
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02002075 maxlen += OCELOT_LONG_PREFIX_LEN;
2076 }
2077
Vladimir Olteana8015de2020-03-10 03:28:18 +02002078 ocelot_port_writel(ocelot_port, maxlen, DEV_MAC_MAXLEN_CFG);
Vladimir Olteanfa914e92019-11-14 17:03:23 +02002079
Vladimir Olteane8e6e732020-07-13 19:57:05 +03002080 /* Set Pause watermark hysteresis */
2081 pause_start = 6 * maxlen / OCELOT_BUFFER_CELL_SZ;
2082 pause_stop = 4 * maxlen / OCELOT_BUFFER_CELL_SZ;
Maxim Kochetkov541132f2020-07-13 19:57:07 +03002083 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_START,
2084 pause_start);
2085 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_STOP,
2086 pause_stop);
Vladimir Olteanfa914e92019-11-14 17:03:23 +02002087
Vladimir Oltean601e9842020-10-05 12:09:11 +03002088 /* Tail dropping watermarks */
Vladimir Olteanf6fe01d2021-01-15 04:11:11 +02002089 atop_tot = (ocelot->packet_buffer_size - 9 * maxlen) /
Vladimir Olteana8015de2020-03-10 03:28:18 +02002090 OCELOT_BUFFER_CELL_SZ;
Vladimir Oltean601e9842020-10-05 12:09:11 +03002091 atop = (9 * maxlen) / OCELOT_BUFFER_CELL_SZ;
2092 ocelot_write_rix(ocelot, ocelot->ops->wm_enc(atop), SYS_ATOP, port);
2093 ocelot_write(ocelot, ocelot->ops->wm_enc(atop_tot), SYS_ATOP_TOT_CFG);
Vladimir Olteanfa914e92019-11-14 17:03:23 +02002094}
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02002095EXPORT_SYMBOL(ocelot_port_set_maxlen);
2096
2097int ocelot_get_max_mtu(struct ocelot *ocelot, int port)
2098{
2099 int max_mtu = 65535 - ETH_HLEN - ETH_FCS_LEN;
2100
2101 if (port == ocelot->npi) {
2102 max_mtu -= OCELOT_TAG_LEN;
2103
Vladimir Olteancacea622021-01-29 03:00:03 +02002104 if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT)
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02002105 max_mtu -= OCELOT_SHORT_PREFIX_LEN;
Vladimir Olteancacea622021-01-29 03:00:03 +02002106 else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG)
Vladimir Oltean0b912fc2020-03-27 21:55:47 +02002107 max_mtu -= OCELOT_LONG_PREFIX_LEN;
2108 }
2109
2110 return max_mtu;
2111}
2112EXPORT_SYMBOL(ocelot_get_max_mtu);
Vladimir Olteanfa914e92019-11-14 17:03:23 +02002113
Vladimir Oltean421741e2021-02-12 17:15:59 +02002114static void ocelot_port_set_learning(struct ocelot *ocelot, int port,
2115 bool enabled)
2116{
2117 struct ocelot_port *ocelot_port = ocelot->ports[port];
2118 u32 val = 0;
2119
2120 if (enabled)
2121 val = ANA_PORT_PORT_CFG_LEARN_ENA;
2122
2123 ocelot_rmw_gix(ocelot, val, ANA_PORT_PORT_CFG_LEARN_ENA,
2124 ANA_PORT_PORT_CFG, port);
2125
2126 ocelot_port->learn_ena = enabled;
2127}
2128
2129static void ocelot_port_set_ucast_flood(struct ocelot *ocelot, int port,
2130 bool enabled)
2131{
2132 u32 val = 0;
2133
2134 if (enabled)
2135 val = BIT(port);
2136
2137 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_UC);
2138}
2139
2140static void ocelot_port_set_mcast_flood(struct ocelot *ocelot, int port,
2141 bool enabled)
2142{
2143 u32 val = 0;
2144
2145 if (enabled)
2146 val = BIT(port);
2147
2148 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_MC);
2149}
2150
2151static void ocelot_port_set_bcast_flood(struct ocelot *ocelot, int port,
2152 bool enabled)
2153{
2154 u32 val = 0;
2155
2156 if (enabled)
2157 val = BIT(port);
2158
2159 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_BC);
2160}
2161
2162int ocelot_port_pre_bridge_flags(struct ocelot *ocelot, int port,
2163 struct switchdev_brport_flags flags)
2164{
2165 if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
2166 BR_BCAST_FLOOD))
2167 return -EINVAL;
2168
2169 return 0;
2170}
2171EXPORT_SYMBOL(ocelot_port_pre_bridge_flags);
2172
2173void ocelot_port_bridge_flags(struct ocelot *ocelot, int port,
2174 struct switchdev_brport_flags flags)
2175{
2176 if (flags.mask & BR_LEARNING)
2177 ocelot_port_set_learning(ocelot, port,
2178 !!(flags.val & BR_LEARNING));
2179
2180 if (flags.mask & BR_FLOOD)
2181 ocelot_port_set_ucast_flood(ocelot, port,
2182 !!(flags.val & BR_FLOOD));
2183
2184 if (flags.mask & BR_MCAST_FLOOD)
2185 ocelot_port_set_mcast_flood(ocelot, port,
2186 !!(flags.val & BR_MCAST_FLOOD));
2187
2188 if (flags.mask & BR_BCAST_FLOOD)
2189 ocelot_port_set_bcast_flood(ocelot, port,
2190 !!(flags.val & BR_BCAST_FLOOD));
2191}
2192EXPORT_SYMBOL(ocelot_port_bridge_flags);
2193
Vladimir Oltean5e256362019-11-14 17:03:27 +02002194void ocelot_init_port(struct ocelot *ocelot, int port)
Vladimir Olteanfa914e92019-11-14 17:03:23 +02002195{
2196 struct ocelot_port *ocelot_port = ocelot->ports[port];
2197
Yangbo Lub049da12019-11-27 15:27:57 +08002198 skb_queue_head_init(&ocelot_port->tx_skbs);
Vladimir Oltean31350d72019-11-09 15:02:56 +02002199
2200 /* Basic L2 initialization */
2201
Vladimir Oltean5bc9d2e2019-11-14 17:03:22 +02002202 /* Set MAC IFG Gaps
2203 * FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 0
2204 * !FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 5
2205 */
2206 ocelot_port_writel(ocelot_port, DEV_MAC_IFG_CFG_TX_IFG(5),
2207 DEV_MAC_IFG_CFG);
2208
2209 /* Load seed (0) and set MAC HDX late collision */
2210 ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67) |
2211 DEV_MAC_HDX_CFG_SEED_LOAD,
2212 DEV_MAC_HDX_CFG);
2213 mdelay(1);
2214 ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67),
2215 DEV_MAC_HDX_CFG);
2216
2217 /* Set Max Length and maximum tags allowed */
Vladimir Olteana8015de2020-03-10 03:28:18 +02002218 ocelot_port_set_maxlen(ocelot, port, ETH_DATA_LEN);
Vladimir Oltean5bc9d2e2019-11-14 17:03:22 +02002219 ocelot_port_writel(ocelot_port, DEV_MAC_TAGS_CFG_TAG_ID(ETH_P_8021AD) |
2220 DEV_MAC_TAGS_CFG_VLAN_AWR_ENA |
Vladimir Olteana8015de2020-03-10 03:28:18 +02002221 DEV_MAC_TAGS_CFG_VLAN_DBL_AWR_ENA |
Vladimir Oltean5bc9d2e2019-11-14 17:03:22 +02002222 DEV_MAC_TAGS_CFG_VLAN_LEN_AWR_ENA,
2223 DEV_MAC_TAGS_CFG);
2224
2225 /* Set SMAC of Pause frame (00:00:00:00:00:00) */
2226 ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_HIGH_CFG);
2227 ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_LOW_CFG);
2228
Vladimir Olteane8e6e732020-07-13 19:57:05 +03002229 /* Enable transmission of pause frames */
Maxim Kochetkov541132f2020-07-13 19:57:07 +03002230 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 1);
Vladimir Olteane8e6e732020-07-13 19:57:05 +03002231
Vladimir Oltean31350d72019-11-09 15:02:56 +02002232 /* Drop frames with multicast source address */
2233 ocelot_rmw_gix(ocelot, ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA,
2234 ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA,
2235 ANA_PORT_DROP_CFG, port);
2236
2237 /* Set default VLAN and tag type to 8021Q. */
2238 ocelot_rmw_gix(ocelot, REW_PORT_VLAN_CFG_PORT_TPID(ETH_P_8021Q),
2239 REW_PORT_VLAN_CFG_PORT_TPID_M,
2240 REW_PORT_VLAN_CFG, port);
2241
Vladimir Oltean421741e2021-02-12 17:15:59 +02002242 /* Disable source address learning for standalone mode */
2243 ocelot_port_set_learning(ocelot, port, false);
2244
Vladimir Oltean46efe4e2021-08-15 04:47:47 +03002245 /* Set the port's initial logical port ID value, enable receiving
2246 * frames on it, and configure the MAC address learning type to
2247 * automatic.
2248 */
2249 ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_LEARNAUTO |
2250 ANA_PORT_PORT_CFG_RECV_ENA |
2251 ANA_PORT_PORT_CFG_PORTID_VAL(port),
2252 ANA_PORT_PORT_CFG, port);
2253
Vladimir Oltean31350d72019-11-09 15:02:56 +02002254 /* Enable vcap lookups */
2255 ocelot_vcap_enable(ocelot, port);
2256}
Vladimir Oltean5e256362019-11-14 17:03:27 +02002257EXPORT_SYMBOL(ocelot_init_port);
Vladimir Oltean31350d72019-11-09 15:02:56 +02002258
Vladimir Oltean2d44b092020-09-26 22:32:01 +03002259/* Configure and enable the CPU port module, which is a set of queues
2260 * accessible through register MMIO, frame DMA or Ethernet (in case
2261 * NPI mode is used).
Vladimir Oltean69df5782020-02-29 16:50:02 +02002262 */
Vladimir Oltean2d44b092020-09-26 22:32:01 +03002263static void ocelot_cpu_port_init(struct ocelot *ocelot)
Vladimir Oltean21468192019-11-09 15:03:00 +02002264{
Vladimir Oltean69df5782020-02-29 16:50:02 +02002265 int cpu = ocelot->num_phys_ports;
2266
2267 /* The unicast destination PGID for the CPU port module is unused */
Vladimir Oltean21468192019-11-09 15:03:00 +02002268 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, cpu);
Vladimir Oltean69df5782020-02-29 16:50:02 +02002269 /* Instead set up a multicast destination PGID for traffic copied to
2270 * the CPU. Whitelisted MAC addresses like the port netdevice MAC
2271 * addresses will be copied to the CPU via this PGID.
2272 */
Vladimir Oltean21468192019-11-09 15:03:00 +02002273 ocelot_write_rix(ocelot, BIT(cpu), ANA_PGID_PGID, PGID_CPU);
2274 ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_RECV_ENA |
2275 ANA_PORT_PORT_CFG_PORTID_VAL(cpu),
2276 ANA_PORT_PORT_CFG, cpu);
2277
Vladimir Oltean69df5782020-02-29 16:50:02 +02002278 /* Enable CPU port module */
Vladimir Oltean886e1382020-07-13 19:57:03 +03002279 ocelot_fields_write(ocelot, cpu, QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);
Vladimir Oltean69df5782020-02-29 16:50:02 +02002280 /* CPU port Injection/Extraction configuration */
Vladimir Oltean886e1382020-07-13 19:57:03 +03002281 ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_XTR_HDR,
Vladimir Olteancacea622021-01-29 03:00:03 +02002282 OCELOT_TAG_PREFIX_NONE);
Vladimir Oltean886e1382020-07-13 19:57:03 +03002283 ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_INJ_HDR,
Vladimir Olteancacea622021-01-29 03:00:03 +02002284 OCELOT_TAG_PREFIX_NONE);
Vladimir Oltean21468192019-11-09 15:03:00 +02002285
2286 /* Configure the CPU port to be VLAN aware */
Vladimir Olteanbfbab312021-10-20 20:58:51 +03002287 ocelot_write_gix(ocelot,
2288 ANA_PORT_VLAN_CFG_VLAN_VID(OCELOT_VLAN_UNAWARE_PVID) |
2289 ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
2290 ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1),
Vladimir Oltean21468192019-11-09 15:03:00 +02002291 ANA_PORT_VLAN_CFG, cpu);
Vladimir Oltean21468192019-11-09 15:03:00 +02002292}
Vladimir Oltean21468192019-11-09 15:03:00 +02002293
Vladimir Olteanf6fe01d2021-01-15 04:11:11 +02002294static void ocelot_detect_features(struct ocelot *ocelot)
2295{
2296 int mmgt, eq_ctrl;
2297
2298 /* For Ocelot, Felix, Seville, Serval etc, SYS:MMGT:MMGT:FREECNT holds
2299 * the number of 240-byte free memory words (aka 4-cell chunks) and not
2300 * 192 bytes as the documentation incorrectly says.
2301 */
2302 mmgt = ocelot_read(ocelot, SYS_MMGT);
2303 ocelot->packet_buffer_size = 240 * SYS_MMGT_FREECNT(mmgt);
2304
2305 eq_ctrl = ocelot_read(ocelot, QSYS_EQ_CTRL);
2306 ocelot->num_frame_refs = QSYS_MMGT_EQ_CTRL_FP_FREE_CNT(eq_ctrl);
Vladimir Olteanf6fe01d2021-01-15 04:11:11 +02002307}
2308
Alexandre Bellonia556c762018-05-14 22:04:57 +02002309int ocelot_init(struct ocelot *ocelot)
2310{
Alexandre Bellonia556c762018-05-14 22:04:57 +02002311 char queue_name[32];
Vladimir Oltean21468192019-11-09 15:03:00 +02002312 int i, ret;
2313 u32 port;
Alexandre Bellonia556c762018-05-14 22:04:57 +02002314
Vladimir Oltean3a77b592019-11-14 17:03:26 +02002315 if (ocelot->ops->reset) {
2316 ret = ocelot->ops->reset(ocelot);
2317 if (ret) {
2318 dev_err(ocelot->dev, "Switch reset failed\n");
2319 return ret;
2320 }
2321 }
2322
Alexandre Bellonia556c762018-05-14 22:04:57 +02002323 ocelot->stats = devm_kcalloc(ocelot->dev,
2324 ocelot->num_phys_ports * ocelot->num_stats,
2325 sizeof(u64), GFP_KERNEL);
2326 if (!ocelot->stats)
2327 return -ENOMEM;
2328
2329 mutex_init(&ocelot->stats_lock);
Antoine Tenart4e3b0462019-08-12 16:45:37 +02002330 mutex_init(&ocelot->ptp_lock);
Vladimir Oltean24683462021-10-24 20:17:51 +03002331 mutex_init(&ocelot->mact_lock);
Antoine Tenart4e3b0462019-08-12 16:45:37 +02002332 spin_lock_init(&ocelot->ptp_clock_lock);
Vladimir Oltean52849bc2021-10-12 14:40:36 +03002333 spin_lock_init(&ocelot->ts_id_lock);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002334 snprintf(queue_name, sizeof(queue_name), "%s-stats",
2335 dev_name(ocelot->dev));
2336 ocelot->stats_queue = create_singlethread_workqueue(queue_name);
2337 if (!ocelot->stats_queue)
2338 return -ENOMEM;
2339
Vladimir Olteanca0b2722020-12-12 21:16:12 +02002340 ocelot->owq = alloc_ordered_workqueue("ocelot-owq", 0);
2341 if (!ocelot->owq) {
2342 destroy_workqueue(ocelot->stats_queue);
2343 return -ENOMEM;
2344 }
2345
Claudiu Manoil2b120dd2019-11-09 15:02:58 +02002346 INIT_LIST_HEAD(&ocelot->multicast);
Vladimir Olteane5d1f892020-10-29 04:27:38 +02002347 INIT_LIST_HEAD(&ocelot->pgids);
Vladimir Oltean90e0aa82021-10-20 20:58:49 +03002348 INIT_LIST_HEAD(&ocelot->vlans);
Vladimir Olteanf6fe01d2021-01-15 04:11:11 +02002349 ocelot_detect_features(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002350 ocelot_mact_init(ocelot);
2351 ocelot_vlan_init(ocelot);
Vladimir Olteanaae4e502020-06-20 18:43:46 +03002352 ocelot_vcap_init(ocelot);
Vladimir Oltean2d44b092020-09-26 22:32:01 +03002353 ocelot_cpu_port_init(ocelot);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002354
Xiaoliang Yang23e2c502021-11-18 18:11:59 +08002355 if (ocelot->ops->psfp_init)
2356 ocelot->ops->psfp_init(ocelot);
2357
Alexandre Bellonia556c762018-05-14 22:04:57 +02002358 for (port = 0; port < ocelot->num_phys_ports; port++) {
2359 /* Clear all counters (5 groups) */
2360 ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port) |
2361 SYS_STAT_CFG_STAT_CLEAR_SHOT(0x7f),
2362 SYS_STAT_CFG);
2363 }
2364
2365 /* Only use S-Tag */
2366 ocelot_write(ocelot, ETH_P_8021AD, SYS_VLAN_ETYPE_CFG);
2367
2368 /* Aggregation mode */
2369 ocelot_write(ocelot, ANA_AGGR_CFG_AC_SMAC_ENA |
2370 ANA_AGGR_CFG_AC_DMAC_ENA |
2371 ANA_AGGR_CFG_AC_IP4_SIPDIP_ENA |
Vladimir Olteanf79c20c2021-02-06 00:02:13 +02002372 ANA_AGGR_CFG_AC_IP4_TCPUDP_ENA |
2373 ANA_AGGR_CFG_AC_IP6_FLOW_LBL_ENA |
2374 ANA_AGGR_CFG_AC_IP6_TCPUDP_ENA,
2375 ANA_AGGR_CFG);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002376
2377 /* Set MAC age time to default value. The entry is aged after
2378 * 2*AGE_PERIOD
2379 */
2380 ocelot_write(ocelot,
2381 ANA_AUTOAGE_AGE_PERIOD(BR_DEFAULT_AGEING_TIME / 2 / HZ),
2382 ANA_AUTOAGE);
2383
2384 /* Disable learning for frames discarded by VLAN ingress filtering */
2385 regmap_field_write(ocelot->regfields[ANA_ADVLEARN_VLAN_CHK], 1);
2386
2387 /* Setup frame ageing - fixed value "2 sec" - in 6.5 us units */
2388 ocelot_write(ocelot, SYS_FRM_AGING_AGE_TX_ENA |
2389 SYS_FRM_AGING_MAX_AGE(307692), SYS_FRM_AGING);
2390
2391 /* Setup flooding PGIDs */
Vladimir Olteanedd24102020-12-04 19:54:16 +02002392 for (i = 0; i < ocelot->num_flooding_pgids; i++)
2393 ocelot_write_rix(ocelot, ANA_FLOODING_FLD_MULTICAST(PGID_MC) |
Vladimir Olteanb360d942021-02-12 17:15:58 +02002394 ANA_FLOODING_FLD_BROADCAST(PGID_BC) |
Vladimir Olteanedd24102020-12-04 19:54:16 +02002395 ANA_FLOODING_FLD_UNICAST(PGID_UC),
2396 ANA_FLOODING, i);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002397 ocelot_write(ocelot, ANA_FLOODING_IPMC_FLD_MC6_DATA(PGID_MCIPV6) |
2398 ANA_FLOODING_IPMC_FLD_MC6_CTRL(PGID_MC) |
2399 ANA_FLOODING_IPMC_FLD_MC4_DATA(PGID_MCIPV4) |
2400 ANA_FLOODING_IPMC_FLD_MC4_CTRL(PGID_MC),
2401 ANA_FLOODING_IPMC);
2402
2403 for (port = 0; port < ocelot->num_phys_ports; port++) {
2404 /* Transmit the frame to the local port. */
2405 ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
2406 /* Do not forward BPDU frames to the front ports. */
2407 ocelot_write_gix(ocelot,
2408 ANA_PORT_CPU_FWD_BPDU_CFG_BPDU_REDIR_ENA(0xffff),
2409 ANA_PORT_CPU_FWD_BPDU_CFG,
2410 port);
2411 /* Ensure bridging is disabled */
2412 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_SRC + port);
2413 }
2414
Vladimir Oltean96b029b2020-06-21 14:46:02 +03002415 for_each_nonreserved_multicast_dest_pgid(ocelot, i) {
Alexandre Bellonia556c762018-05-14 22:04:57 +02002416 u32 val = ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports - 1, 0));
2417
2418 ocelot_write_rix(ocelot, val, ANA_PGID_PGID, i);
2419 }
Horatiu Vulturebb1bb42021-03-16 21:10:17 +01002420
2421 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_BLACKHOLE);
2422
Vladimir Olteanb360d942021-02-12 17:15:58 +02002423 /* Allow broadcast and unknown L2 multicast to the CPU. */
2424 ocelot_rmw_rix(ocelot, ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2425 ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2426 ANA_PGID_PGID, PGID_MC);
2427 ocelot_rmw_rix(ocelot, ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2428 ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2429 ANA_PGID_PGID, PGID_BC);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002430 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV4);
2431 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV6);
2432
Alexandre Bellonia556c762018-05-14 22:04:57 +02002433 /* Allow manual injection via DEVCPU_QS registers, and byte swap these
2434 * registers endianness.
2435 */
2436 ocelot_write_rix(ocelot, QS_INJ_GRP_CFG_BYTE_SWAP |
2437 QS_INJ_GRP_CFG_MODE(1), QS_INJ_GRP_CFG, 0);
2438 ocelot_write_rix(ocelot, QS_XTR_GRP_CFG_BYTE_SWAP |
2439 QS_XTR_GRP_CFG_MODE(1), QS_XTR_GRP_CFG, 0);
2440 ocelot_write(ocelot, ANA_CPUQ_CFG_CPUQ_MIRROR(2) |
2441 ANA_CPUQ_CFG_CPUQ_LRN(2) |
2442 ANA_CPUQ_CFG_CPUQ_MAC_COPY(2) |
2443 ANA_CPUQ_CFG_CPUQ_SRC_COPY(2) |
2444 ANA_CPUQ_CFG_CPUQ_LOCKED_PORTMOVE(2) |
2445 ANA_CPUQ_CFG_CPUQ_ALLBRIDGE(6) |
2446 ANA_CPUQ_CFG_CPUQ_IPMC_CTRL(6) |
2447 ANA_CPUQ_CFG_CPUQ_IGMP(6) |
2448 ANA_CPUQ_CFG_CPUQ_MLD(6), ANA_CPUQ_CFG);
2449 for (i = 0; i < 16; i++)
2450 ocelot_write_rix(ocelot, ANA_CPUQ_8021_CFG_CPUQ_GARP_VAL(6) |
2451 ANA_CPUQ_8021_CFG_CPUQ_BPDU_VAL(6),
2452 ANA_CPUQ_8021_CFG, i);
2453
Claudiu Manoil1e1caa92019-04-16 17:51:59 +03002454 INIT_DELAYED_WORK(&ocelot->stats_work, ocelot_check_stats_work);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002455 queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
2456 OCELOT_STATS_CHECK_DELAY);
Antoine Tenart4e3b0462019-08-12 16:45:37 +02002457
Alexandre Bellonia556c762018-05-14 22:04:57 +02002458 return 0;
2459}
2460EXPORT_SYMBOL(ocelot_init);
2461
2462void ocelot_deinit(struct ocelot *ocelot)
2463{
Claudiu Manoilc5d13962019-07-25 16:33:18 +03002464 cancel_delayed_work(&ocelot->stats_work);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002465 destroy_workqueue(ocelot->stats_queue);
Vladimir Olteanca0b2722020-12-12 21:16:12 +02002466 destroy_workqueue(ocelot->owq);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002467 mutex_destroy(&ocelot->stats_lock);
Alexandre Bellonia556c762018-05-14 22:04:57 +02002468}
2469EXPORT_SYMBOL(ocelot_deinit);
2470
Vladimir Olteane5fb5122020-09-18 04:07:30 +03002471void ocelot_deinit_port(struct ocelot *ocelot, int port)
2472{
2473 struct ocelot_port *ocelot_port = ocelot->ports[port];
2474
2475 skb_queue_purge(&ocelot_port->tx_skbs);
2476}
2477EXPORT_SYMBOL(ocelot_deinit_port);
2478
Alexandre Bellonia556c762018-05-14 22:04:57 +02002479MODULE_LICENSE("Dual MIT/GPL");