xref: /openbmc/linux/drivers/net/dsa/hirschmann/hellcreek.c (revision d4a96be65423296e42091b0b79973b8d446e7798)
1 // SPDX-License-Identifier: (GPL-2.0 or MIT)
2 /*
3  * DSA driver for:
4  * Hirschmann Hellcreek TSN switch.
5  *
6  * Copyright (C) 2019-2021 Linutronix GmbH
7  * Author Kurt Kanzenbach <kurt@linutronix.de>
8  */
9 
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/device.h>
13 #include <linux/of.h>
14 #include <linux/of_device.h>
15 #include <linux/of_mdio.h>
16 #include <linux/platform_device.h>
17 #include <linux/bitops.h>
18 #include <linux/if_bridge.h>
19 #include <linux/if_vlan.h>
20 #include <linux/etherdevice.h>
21 #include <linux/random.h>
22 #include <linux/iopoll.h>
23 #include <linux/mutex.h>
24 #include <linux/delay.h>
25 #include <net/dsa.h>
26 
27 #include "hellcreek.h"
28 #include "hellcreek_ptp.h"
29 #include "hellcreek_hwtstamp.h"
30 
31 static const struct hellcreek_counter hellcreek_counter[] = {
32 	{ 0x00, "RxFiltered", },
33 	{ 0x01, "RxOctets1k", },
34 	{ 0x02, "RxVTAG", },
35 	{ 0x03, "RxL2BAD", },
36 	{ 0x04, "RxOverloadDrop", },
37 	{ 0x05, "RxUC", },
38 	{ 0x06, "RxMC", },
39 	{ 0x07, "RxBC", },
40 	{ 0x08, "RxRS<64", },
41 	{ 0x09, "RxRS64", },
42 	{ 0x0a, "RxRS65_127", },
43 	{ 0x0b, "RxRS128_255", },
44 	{ 0x0c, "RxRS256_511", },
45 	{ 0x0d, "RxRS512_1023", },
46 	{ 0x0e, "RxRS1024_1518", },
47 	{ 0x0f, "RxRS>1518", },
48 	{ 0x10, "TxTailDropQueue0", },
49 	{ 0x11, "TxTailDropQueue1", },
50 	{ 0x12, "TxTailDropQueue2", },
51 	{ 0x13, "TxTailDropQueue3", },
52 	{ 0x14, "TxTailDropQueue4", },
53 	{ 0x15, "TxTailDropQueue5", },
54 	{ 0x16, "TxTailDropQueue6", },
55 	{ 0x17, "TxTailDropQueue7", },
56 	{ 0x18, "RxTrafficClass0", },
57 	{ 0x19, "RxTrafficClass1", },
58 	{ 0x1a, "RxTrafficClass2", },
59 	{ 0x1b, "RxTrafficClass3", },
60 	{ 0x1c, "RxTrafficClass4", },
61 	{ 0x1d, "RxTrafficClass5", },
62 	{ 0x1e, "RxTrafficClass6", },
63 	{ 0x1f, "RxTrafficClass7", },
64 	{ 0x21, "TxOctets1k", },
65 	{ 0x22, "TxVTAG", },
66 	{ 0x23, "TxL2BAD", },
67 	{ 0x25, "TxUC", },
68 	{ 0x26, "TxMC", },
69 	{ 0x27, "TxBC", },
70 	{ 0x28, "TxTS<64", },
71 	{ 0x29, "TxTS64", },
72 	{ 0x2a, "TxTS65_127", },
73 	{ 0x2b, "TxTS128_255", },
74 	{ 0x2c, "TxTS256_511", },
75 	{ 0x2d, "TxTS512_1023", },
76 	{ 0x2e, "TxTS1024_1518", },
77 	{ 0x2f, "TxTS>1518", },
78 	{ 0x30, "TxTrafficClassOverrun0", },
79 	{ 0x31, "TxTrafficClassOverrun1", },
80 	{ 0x32, "TxTrafficClassOverrun2", },
81 	{ 0x33, "TxTrafficClassOverrun3", },
82 	{ 0x34, "TxTrafficClassOverrun4", },
83 	{ 0x35, "TxTrafficClassOverrun5", },
84 	{ 0x36, "TxTrafficClassOverrun6", },
85 	{ 0x37, "TxTrafficClassOverrun7", },
86 	{ 0x38, "TxTrafficClass0", },
87 	{ 0x39, "TxTrafficClass1", },
88 	{ 0x3a, "TxTrafficClass2", },
89 	{ 0x3b, "TxTrafficClass3", },
90 	{ 0x3c, "TxTrafficClass4", },
91 	{ 0x3d, "TxTrafficClass5", },
92 	{ 0x3e, "TxTrafficClass6", },
93 	{ 0x3f, "TxTrafficClass7", },
94 };
95 
96 static u16 hellcreek_read(struct hellcreek *hellcreek, unsigned int offset)
97 {
98 	return readw(hellcreek->base + offset);
99 }
100 
101 static u16 hellcreek_read_ctrl(struct hellcreek *hellcreek)
102 {
103 	return readw(hellcreek->base + HR_CTRL_C);
104 }
105 
106 static u16 hellcreek_read_stat(struct hellcreek *hellcreek)
107 {
108 	return readw(hellcreek->base + HR_SWSTAT);
109 }
110 
111 static void hellcreek_write(struct hellcreek *hellcreek, u16 data,
112 			    unsigned int offset)
113 {
114 	writew(data, hellcreek->base + offset);
115 }
116 
117 static void hellcreek_select_port(struct hellcreek *hellcreek, int port)
118 {
119 	u16 val = port << HR_PSEL_PTWSEL_SHIFT;
120 
121 	hellcreek_write(hellcreek, val, HR_PSEL);
122 }
123 
124 static void hellcreek_select_prio(struct hellcreek *hellcreek, int prio)
125 {
126 	u16 val = prio << HR_PSEL_PRTCWSEL_SHIFT;
127 
128 	hellcreek_write(hellcreek, val, HR_PSEL);
129 }
130 
131 static void hellcreek_select_counter(struct hellcreek *hellcreek, int counter)
132 {
133 	u16 val = counter << HR_CSEL_SHIFT;
134 
135 	hellcreek_write(hellcreek, val, HR_CSEL);
136 
137 	/* Data sheet states to wait at least 20 internal clock cycles */
138 	ndelay(200);
139 }
140 
141 static void hellcreek_select_vlan(struct hellcreek *hellcreek, int vid,
142 				  bool pvid)
143 {
144 	u16 val = 0;
145 
146 	/* Set pvid bit first */
147 	if (pvid)
148 		val |= HR_VIDCFG_PVID;
149 	hellcreek_write(hellcreek, val, HR_VIDCFG);
150 
151 	/* Set vlan */
152 	val |= vid << HR_VIDCFG_VID_SHIFT;
153 	hellcreek_write(hellcreek, val, HR_VIDCFG);
154 }
155 
156 static void hellcreek_select_tgd(struct hellcreek *hellcreek, int port)
157 {
158 	u16 val = port << TR_TGDSEL_TDGSEL_SHIFT;
159 
160 	hellcreek_write(hellcreek, val, TR_TGDSEL);
161 }
162 
163 static int hellcreek_wait_until_ready(struct hellcreek *hellcreek)
164 {
165 	u16 val;
166 
167 	/* Wait up to 1ms, although 3 us should be enough */
168 	return readx_poll_timeout(hellcreek_read_ctrl, hellcreek,
169 				  val, val & HR_CTRL_C_READY,
170 				  3, 1000);
171 }
172 
173 static int hellcreek_wait_until_transitioned(struct hellcreek *hellcreek)
174 {
175 	u16 val;
176 
177 	return readx_poll_timeout_atomic(hellcreek_read_ctrl, hellcreek,
178 					 val, !(val & HR_CTRL_C_TRANSITION),
179 					 1, 1000);
180 }
181 
182 static int hellcreek_wait_fdb_ready(struct hellcreek *hellcreek)
183 {
184 	u16 val;
185 
186 	return readx_poll_timeout_atomic(hellcreek_read_stat, hellcreek,
187 					 val, !(val & HR_SWSTAT_BUSY),
188 					 1, 1000);
189 }
190 
191 static int hellcreek_detect(struct hellcreek *hellcreek)
192 {
193 	u16 id, rel_low, rel_high, date_low, date_high, tgd_ver;
194 	u8 tgd_maj, tgd_min;
195 	u32 rel, date;
196 
197 	id	  = hellcreek_read(hellcreek, HR_MODID_C);
198 	rel_low	  = hellcreek_read(hellcreek, HR_REL_L_C);
199 	rel_high  = hellcreek_read(hellcreek, HR_REL_H_C);
200 	date_low  = hellcreek_read(hellcreek, HR_BLD_L_C);
201 	date_high = hellcreek_read(hellcreek, HR_BLD_H_C);
202 	tgd_ver   = hellcreek_read(hellcreek, TR_TGDVER);
203 
204 	if (id != hellcreek->pdata->module_id)
205 		return -ENODEV;
206 
207 	rel	= rel_low | (rel_high << 16);
208 	date	= date_low | (date_high << 16);
209 	tgd_maj = (tgd_ver & TR_TGDVER_REV_MAJ_MASK) >> TR_TGDVER_REV_MAJ_SHIFT;
210 	tgd_min = (tgd_ver & TR_TGDVER_REV_MIN_MASK) >> TR_TGDVER_REV_MIN_SHIFT;
211 
212 	dev_info(hellcreek->dev, "Module ID=%02x Release=%04x Date=%04x TGD Version=%02x.%02x\n",
213 		 id, rel, date, tgd_maj, tgd_min);
214 
215 	return 0;
216 }
217 
218 static void hellcreek_feature_detect(struct hellcreek *hellcreek)
219 {
220 	u16 features;
221 
222 	features = hellcreek_read(hellcreek, HR_FEABITS0);
223 
224 	/* Only detect the size of the FDB table. The size and current
225 	 * utilization can be queried via devlink.
226 	 */
227 	hellcreek->fdb_entries = ((features & HR_FEABITS0_FDBBINS_MASK) >>
228 			       HR_FEABITS0_FDBBINS_SHIFT) * 32;
229 }
230 
231 static enum dsa_tag_protocol hellcreek_get_tag_protocol(struct dsa_switch *ds,
232 							int port,
233 							enum dsa_tag_protocol mp)
234 {
235 	return DSA_TAG_PROTO_HELLCREEK;
236 }
237 
238 static int hellcreek_port_enable(struct dsa_switch *ds, int port,
239 				 struct phy_device *phy)
240 {
241 	struct hellcreek *hellcreek = ds->priv;
242 	struct hellcreek_port *hellcreek_port;
243 	u16 val;
244 
245 	hellcreek_port = &hellcreek->ports[port];
246 
247 	dev_dbg(hellcreek->dev, "Enable port %d\n", port);
248 
249 	mutex_lock(&hellcreek->reg_lock);
250 
251 	hellcreek_select_port(hellcreek, port);
252 	val = hellcreek_port->ptcfg;
253 	val |= HR_PTCFG_ADMIN_EN;
254 	hellcreek_write(hellcreek, val, HR_PTCFG);
255 	hellcreek_port->ptcfg = val;
256 
257 	mutex_unlock(&hellcreek->reg_lock);
258 
259 	return 0;
260 }
261 
262 static void hellcreek_port_disable(struct dsa_switch *ds, int port)
263 {
264 	struct hellcreek *hellcreek = ds->priv;
265 	struct hellcreek_port *hellcreek_port;
266 	u16 val;
267 
268 	hellcreek_port = &hellcreek->ports[port];
269 
270 	dev_dbg(hellcreek->dev, "Disable port %d\n", port);
271 
272 	mutex_lock(&hellcreek->reg_lock);
273 
274 	hellcreek_select_port(hellcreek, port);
275 	val = hellcreek_port->ptcfg;
276 	val &= ~HR_PTCFG_ADMIN_EN;
277 	hellcreek_write(hellcreek, val, HR_PTCFG);
278 	hellcreek_port->ptcfg = val;
279 
280 	mutex_unlock(&hellcreek->reg_lock);
281 }
282 
283 static void hellcreek_get_strings(struct dsa_switch *ds, int port,
284 				  u32 stringset, uint8_t *data)
285 {
286 	int i;
287 
288 	for (i = 0; i < ARRAY_SIZE(hellcreek_counter); ++i) {
289 		const struct hellcreek_counter *counter = &hellcreek_counter[i];
290 
291 		strlcpy(data + i * ETH_GSTRING_LEN,
292 			counter->name, ETH_GSTRING_LEN);
293 	}
294 }
295 
296 static int hellcreek_get_sset_count(struct dsa_switch *ds, int port, int sset)
297 {
298 	if (sset != ETH_SS_STATS)
299 		return 0;
300 
301 	return ARRAY_SIZE(hellcreek_counter);
302 }
303 
304 static void hellcreek_get_ethtool_stats(struct dsa_switch *ds, int port,
305 					uint64_t *data)
306 {
307 	struct hellcreek *hellcreek = ds->priv;
308 	struct hellcreek_port *hellcreek_port;
309 	int i;
310 
311 	hellcreek_port = &hellcreek->ports[port];
312 
313 	for (i = 0; i < ARRAY_SIZE(hellcreek_counter); ++i) {
314 		const struct hellcreek_counter *counter = &hellcreek_counter[i];
315 		u8 offset = counter->offset + port * 64;
316 		u16 high, low;
317 		u64 value;
318 
319 		mutex_lock(&hellcreek->reg_lock);
320 
321 		hellcreek_select_counter(hellcreek, offset);
322 
323 		/* The registers are locked internally by selecting the
324 		 * counter. So low and high can be read without reading high
325 		 * again.
326 		 */
327 		high  = hellcreek_read(hellcreek, HR_CRDH);
328 		low   = hellcreek_read(hellcreek, HR_CRDL);
329 		value = ((u64)high << 16) | low;
330 
331 		hellcreek_port->counter_values[i] += value;
332 		data[i] = hellcreek_port->counter_values[i];
333 
334 		mutex_unlock(&hellcreek->reg_lock);
335 	}
336 }
337 
338 static u16 hellcreek_private_vid(int port)
339 {
340 	return VLAN_N_VID - port + 1;
341 }
342 
343 static int hellcreek_vlan_prepare(struct dsa_switch *ds, int port,
344 				  const struct switchdev_obj_port_vlan *vlan,
345 				  struct netlink_ext_ack *extack)
346 {
347 	struct hellcreek *hellcreek = ds->priv;
348 	int i;
349 
350 	dev_dbg(hellcreek->dev, "VLAN prepare for port %d\n", port);
351 
352 	/* Restriction: Make sure that nobody uses the "private" VLANs. These
353 	 * VLANs are internally used by the driver to ensure port
354 	 * separation. Thus, they cannot be used by someone else.
355 	 */
356 	for (i = 0; i < hellcreek->pdata->num_ports; ++i) {
357 		const u16 restricted_vid = hellcreek_private_vid(i);
358 
359 		if (!dsa_is_user_port(ds, i))
360 			continue;
361 
362 		if (vlan->vid == restricted_vid) {
363 			NL_SET_ERR_MSG_MOD(extack, "VID restricted by driver");
364 			return -EBUSY;
365 		}
366 	}
367 
368 	return 0;
369 }
370 
371 static void hellcreek_select_vlan_params(struct hellcreek *hellcreek, int port,
372 					 int *shift, int *mask)
373 {
374 	switch (port) {
375 	case 0:
376 		*shift = HR_VIDMBRCFG_P0MBR_SHIFT;
377 		*mask  = HR_VIDMBRCFG_P0MBR_MASK;
378 		break;
379 	case 1:
380 		*shift = HR_VIDMBRCFG_P1MBR_SHIFT;
381 		*mask  = HR_VIDMBRCFG_P1MBR_MASK;
382 		break;
383 	case 2:
384 		*shift = HR_VIDMBRCFG_P2MBR_SHIFT;
385 		*mask  = HR_VIDMBRCFG_P2MBR_MASK;
386 		break;
387 	case 3:
388 		*shift = HR_VIDMBRCFG_P3MBR_SHIFT;
389 		*mask  = HR_VIDMBRCFG_P3MBR_MASK;
390 		break;
391 	default:
392 		*shift = *mask = 0;
393 		dev_err(hellcreek->dev, "Unknown port %d selected!\n", port);
394 	}
395 }
396 
397 static void hellcreek_apply_vlan(struct hellcreek *hellcreek, int port, u16 vid,
398 				 bool pvid, bool untagged)
399 {
400 	int shift, mask;
401 	u16 val;
402 
403 	dev_dbg(hellcreek->dev, "Apply VLAN: port=%d vid=%u pvid=%d untagged=%d",
404 		port, vid, pvid, untagged);
405 
406 	mutex_lock(&hellcreek->reg_lock);
407 
408 	hellcreek_select_port(hellcreek, port);
409 	hellcreek_select_vlan(hellcreek, vid, pvid);
410 
411 	/* Setup port vlan membership */
412 	hellcreek_select_vlan_params(hellcreek, port, &shift, &mask);
413 	val = hellcreek->vidmbrcfg[vid];
414 	val &= ~mask;
415 	if (untagged)
416 		val |= HELLCREEK_VLAN_UNTAGGED_MEMBER << shift;
417 	else
418 		val |= HELLCREEK_VLAN_TAGGED_MEMBER << shift;
419 
420 	hellcreek_write(hellcreek, val, HR_VIDMBRCFG);
421 	hellcreek->vidmbrcfg[vid] = val;
422 
423 	mutex_unlock(&hellcreek->reg_lock);
424 }
425 
426 static void hellcreek_unapply_vlan(struct hellcreek *hellcreek, int port,
427 				   u16 vid)
428 {
429 	int shift, mask;
430 	u16 val;
431 
432 	dev_dbg(hellcreek->dev, "Unapply VLAN: port=%d vid=%u\n", port, vid);
433 
434 	mutex_lock(&hellcreek->reg_lock);
435 
436 	hellcreek_select_vlan(hellcreek, vid, false);
437 
438 	/* Setup port vlan membership */
439 	hellcreek_select_vlan_params(hellcreek, port, &shift, &mask);
440 	val = hellcreek->vidmbrcfg[vid];
441 	val &= ~mask;
442 	val |= HELLCREEK_VLAN_NO_MEMBER << shift;
443 
444 	hellcreek_write(hellcreek, val, HR_VIDMBRCFG);
445 	hellcreek->vidmbrcfg[vid] = val;
446 
447 	mutex_unlock(&hellcreek->reg_lock);
448 }
449 
450 static int hellcreek_vlan_add(struct dsa_switch *ds, int port,
451 			      const struct switchdev_obj_port_vlan *vlan,
452 			      struct netlink_ext_ack *extack)
453 {
454 	bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
455 	bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID;
456 	struct hellcreek *hellcreek = ds->priv;
457 	int err;
458 
459 	err = hellcreek_vlan_prepare(ds, port, vlan, extack);
460 	if (err)
461 		return err;
462 
463 	dev_dbg(hellcreek->dev, "Add VLAN %d on port %d, %s, %s\n",
464 		vlan->vid, port, untagged ? "untagged" : "tagged",
465 		pvid ? "PVID" : "no PVID");
466 
467 	hellcreek_apply_vlan(hellcreek, port, vlan->vid, pvid, untagged);
468 
469 	return 0;
470 }
471 
472 static int hellcreek_vlan_del(struct dsa_switch *ds, int port,
473 			      const struct switchdev_obj_port_vlan *vlan)
474 {
475 	struct hellcreek *hellcreek = ds->priv;
476 
477 	dev_dbg(hellcreek->dev, "Remove VLAN %d on port %d\n", vlan->vid, port);
478 
479 	hellcreek_unapply_vlan(hellcreek, port, vlan->vid);
480 
481 	return 0;
482 }
483 
484 static void hellcreek_port_stp_state_set(struct dsa_switch *ds, int port,
485 					 u8 state)
486 {
487 	struct hellcreek *hellcreek = ds->priv;
488 	struct hellcreek_port *hellcreek_port;
489 	const char *new_state;
490 	u16 val;
491 
492 	mutex_lock(&hellcreek->reg_lock);
493 
494 	hellcreek_port = &hellcreek->ports[port];
495 	val = hellcreek_port->ptcfg;
496 
497 	switch (state) {
498 	case BR_STATE_DISABLED:
499 		new_state = "DISABLED";
500 		val |= HR_PTCFG_BLOCKED;
501 		val &= ~HR_PTCFG_LEARNING_EN;
502 		break;
503 	case BR_STATE_BLOCKING:
504 		new_state = "BLOCKING";
505 		val |= HR_PTCFG_BLOCKED;
506 		val &= ~HR_PTCFG_LEARNING_EN;
507 		break;
508 	case BR_STATE_LISTENING:
509 		new_state = "LISTENING";
510 		val |= HR_PTCFG_BLOCKED;
511 		val &= ~HR_PTCFG_LEARNING_EN;
512 		break;
513 	case BR_STATE_LEARNING:
514 		new_state = "LEARNING";
515 		val |= HR_PTCFG_BLOCKED;
516 		val |= HR_PTCFG_LEARNING_EN;
517 		break;
518 	case BR_STATE_FORWARDING:
519 		new_state = "FORWARDING";
520 		val &= ~HR_PTCFG_BLOCKED;
521 		val |= HR_PTCFG_LEARNING_EN;
522 		break;
523 	default:
524 		new_state = "UNKNOWN";
525 	}
526 
527 	hellcreek_select_port(hellcreek, port);
528 	hellcreek_write(hellcreek, val, HR_PTCFG);
529 	hellcreek_port->ptcfg = val;
530 
531 	mutex_unlock(&hellcreek->reg_lock);
532 
533 	dev_dbg(hellcreek->dev, "Configured STP state for port %d: %s\n",
534 		port, new_state);
535 }
536 
537 static void hellcreek_setup_ingressflt(struct hellcreek *hellcreek, int port,
538 				       bool enable)
539 {
540 	struct hellcreek_port *hellcreek_port = &hellcreek->ports[port];
541 	u16 ptcfg;
542 
543 	mutex_lock(&hellcreek->reg_lock);
544 
545 	ptcfg = hellcreek_port->ptcfg;
546 
547 	if (enable)
548 		ptcfg |= HR_PTCFG_INGRESSFLT;
549 	else
550 		ptcfg &= ~HR_PTCFG_INGRESSFLT;
551 
552 	hellcreek_select_port(hellcreek, port);
553 	hellcreek_write(hellcreek, ptcfg, HR_PTCFG);
554 	hellcreek_port->ptcfg = ptcfg;
555 
556 	mutex_unlock(&hellcreek->reg_lock);
557 }
558 
559 static void hellcreek_setup_vlan_awareness(struct hellcreek *hellcreek,
560 					   bool enable)
561 {
562 	u16 swcfg;
563 
564 	mutex_lock(&hellcreek->reg_lock);
565 
566 	swcfg = hellcreek->swcfg;
567 
568 	if (enable)
569 		swcfg |= HR_SWCFG_VLAN_UNAWARE;
570 	else
571 		swcfg &= ~HR_SWCFG_VLAN_UNAWARE;
572 
573 	hellcreek_write(hellcreek, swcfg, HR_SWCFG);
574 
575 	mutex_unlock(&hellcreek->reg_lock);
576 }
577 
578 /* Default setup for DSA: VLAN <X>: CPU and Port <X> egress untagged. */
579 static void hellcreek_setup_vlan_membership(struct dsa_switch *ds, int port,
580 					    bool enabled)
581 {
582 	const u16 vid = hellcreek_private_vid(port);
583 	int upstream = dsa_upstream_port(ds, port);
584 	struct hellcreek *hellcreek = ds->priv;
585 
586 	/* Apply vid to port as egress untagged and port vlan id */
587 	if (enabled)
588 		hellcreek_apply_vlan(hellcreek, port, vid, true, true);
589 	else
590 		hellcreek_unapply_vlan(hellcreek, port, vid);
591 
592 	/* Apply vid to cpu port as well */
593 	if (enabled)
594 		hellcreek_apply_vlan(hellcreek, upstream, vid, false, true);
595 	else
596 		hellcreek_unapply_vlan(hellcreek, upstream, vid);
597 }
598 
599 static void hellcreek_port_set_ucast_flood(struct hellcreek *hellcreek,
600 					   int port, bool enable)
601 {
602 	struct hellcreek_port *hellcreek_port;
603 	u16 val;
604 
605 	hellcreek_port = &hellcreek->ports[port];
606 
607 	dev_dbg(hellcreek->dev, "%s unicast flooding on port %d\n",
608 		enable ? "Enable" : "Disable", port);
609 
610 	mutex_lock(&hellcreek->reg_lock);
611 
612 	hellcreek_select_port(hellcreek, port);
613 	val = hellcreek_port->ptcfg;
614 	if (enable)
615 		val &= ~HR_PTCFG_UUC_FLT;
616 	else
617 		val |= HR_PTCFG_UUC_FLT;
618 	hellcreek_write(hellcreek, val, HR_PTCFG);
619 	hellcreek_port->ptcfg = val;
620 
621 	mutex_unlock(&hellcreek->reg_lock);
622 }
623 
624 static void hellcreek_port_set_mcast_flood(struct hellcreek *hellcreek,
625 					   int port, bool enable)
626 {
627 	struct hellcreek_port *hellcreek_port;
628 	u16 val;
629 
630 	hellcreek_port = &hellcreek->ports[port];
631 
632 	dev_dbg(hellcreek->dev, "%s multicast flooding on port %d\n",
633 		enable ? "Enable" : "Disable", port);
634 
635 	mutex_lock(&hellcreek->reg_lock);
636 
637 	hellcreek_select_port(hellcreek, port);
638 	val = hellcreek_port->ptcfg;
639 	if (enable)
640 		val &= ~HR_PTCFG_UMC_FLT;
641 	else
642 		val |= HR_PTCFG_UMC_FLT;
643 	hellcreek_write(hellcreek, val, HR_PTCFG);
644 	hellcreek_port->ptcfg = val;
645 
646 	mutex_unlock(&hellcreek->reg_lock);
647 }
648 
649 static int hellcreek_pre_bridge_flags(struct dsa_switch *ds, int port,
650 				      struct switchdev_brport_flags flags,
651 				      struct netlink_ext_ack *extack)
652 {
653 	if (flags.mask & ~(BR_FLOOD | BR_MCAST_FLOOD))
654 		return -EINVAL;
655 
656 	return 0;
657 }
658 
659 static int hellcreek_bridge_flags(struct dsa_switch *ds, int port,
660 				  struct switchdev_brport_flags flags,
661 				  struct netlink_ext_ack *extack)
662 {
663 	struct hellcreek *hellcreek = ds->priv;
664 
665 	if (flags.mask & BR_FLOOD)
666 		hellcreek_port_set_ucast_flood(hellcreek, port,
667 					       !!(flags.val & BR_FLOOD));
668 
669 	if (flags.mask & BR_MCAST_FLOOD)
670 		hellcreek_port_set_mcast_flood(hellcreek, port,
671 					       !!(flags.val & BR_MCAST_FLOOD));
672 
673 	return 0;
674 }
675 
676 static int hellcreek_port_bridge_join(struct dsa_switch *ds, int port,
677 				      struct net_device *br)
678 {
679 	struct hellcreek *hellcreek = ds->priv;
680 
681 	dev_dbg(hellcreek->dev, "Port %d joins a bridge\n", port);
682 
683 	/* When joining a vlan_filtering bridge, keep the switch VLAN aware */
684 	if (!ds->vlan_filtering)
685 		hellcreek_setup_vlan_awareness(hellcreek, false);
686 
687 	/* Drop private vlans */
688 	hellcreek_setup_vlan_membership(ds, port, false);
689 
690 	return 0;
691 }
692 
693 static void hellcreek_port_bridge_leave(struct dsa_switch *ds, int port,
694 					struct net_device *br)
695 {
696 	struct hellcreek *hellcreek = ds->priv;
697 
698 	dev_dbg(hellcreek->dev, "Port %d leaves a bridge\n", port);
699 
700 	/* Enable VLAN awareness */
701 	hellcreek_setup_vlan_awareness(hellcreek, true);
702 
703 	/* Enable private vlans */
704 	hellcreek_setup_vlan_membership(ds, port, true);
705 }
706 
707 static int __hellcreek_fdb_add(struct hellcreek *hellcreek,
708 			       const struct hellcreek_fdb_entry *entry)
709 {
710 	u16 meta = 0;
711 
712 	dev_dbg(hellcreek->dev, "Add static FDB entry: MAC=%pM, MASK=0x%02x, "
713 		"OBT=%d, REPRIO_EN=%d, PRIO=%d\n", entry->mac, entry->portmask,
714 		entry->is_obt, entry->reprio_en, entry->reprio_tc);
715 
716 	/* Add mac address */
717 	hellcreek_write(hellcreek, entry->mac[1] | (entry->mac[0] << 8), HR_FDBWDH);
718 	hellcreek_write(hellcreek, entry->mac[3] | (entry->mac[2] << 8), HR_FDBWDM);
719 	hellcreek_write(hellcreek, entry->mac[5] | (entry->mac[4] << 8), HR_FDBWDL);
720 
721 	/* Meta data */
722 	meta |= entry->portmask << HR_FDBWRM0_PORTMASK_SHIFT;
723 	if (entry->is_obt)
724 		meta |= HR_FDBWRM0_OBT;
725 	if (entry->reprio_en) {
726 		meta |= HR_FDBWRM0_REPRIO_EN;
727 		meta |= entry->reprio_tc << HR_FDBWRM0_REPRIO_TC_SHIFT;
728 	}
729 	hellcreek_write(hellcreek, meta, HR_FDBWRM0);
730 
731 	/* Commit */
732 	hellcreek_write(hellcreek, 0x00, HR_FDBWRCMD);
733 
734 	/* Wait until done */
735 	return hellcreek_wait_fdb_ready(hellcreek);
736 }
737 
738 static int __hellcreek_fdb_del(struct hellcreek *hellcreek,
739 			       const struct hellcreek_fdb_entry *entry)
740 {
741 	dev_dbg(hellcreek->dev, "Delete FDB entry: MAC=%pM!\n", entry->mac);
742 
743 	/* Delete by matching idx */
744 	hellcreek_write(hellcreek, entry->idx | HR_FDBWRCMD_FDBDEL, HR_FDBWRCMD);
745 
746 	/* Wait until done */
747 	return hellcreek_wait_fdb_ready(hellcreek);
748 }
749 
750 static void hellcreek_populate_fdb_entry(struct hellcreek *hellcreek,
751 					 struct hellcreek_fdb_entry *entry,
752 					 size_t idx)
753 {
754 	unsigned char addr[ETH_ALEN];
755 	u16 meta, mac;
756 
757 	/* Read values */
758 	meta	= hellcreek_read(hellcreek, HR_FDBMDRD);
759 	mac	= hellcreek_read(hellcreek, HR_FDBRDL);
760 	addr[5] = mac & 0xff;
761 	addr[4] = (mac & 0xff00) >> 8;
762 	mac	= hellcreek_read(hellcreek, HR_FDBRDM);
763 	addr[3] = mac & 0xff;
764 	addr[2] = (mac & 0xff00) >> 8;
765 	mac	= hellcreek_read(hellcreek, HR_FDBRDH);
766 	addr[1] = mac & 0xff;
767 	addr[0] = (mac & 0xff00) >> 8;
768 
769 	/* Populate @entry */
770 	memcpy(entry->mac, addr, sizeof(addr));
771 	entry->idx	    = idx;
772 	entry->portmask	    = (meta & HR_FDBMDRD_PORTMASK_MASK) >>
773 		HR_FDBMDRD_PORTMASK_SHIFT;
774 	entry->age	    = (meta & HR_FDBMDRD_AGE_MASK) >>
775 		HR_FDBMDRD_AGE_SHIFT;
776 	entry->is_obt	    = !!(meta & HR_FDBMDRD_OBT);
777 	entry->pass_blocked = !!(meta & HR_FDBMDRD_PASS_BLOCKED);
778 	entry->is_static    = !!(meta & HR_FDBMDRD_STATIC);
779 	entry->reprio_tc    = (meta & HR_FDBMDRD_REPRIO_TC_MASK) >>
780 		HR_FDBMDRD_REPRIO_TC_SHIFT;
781 	entry->reprio_en    = !!(meta & HR_FDBMDRD_REPRIO_EN);
782 }
783 
784 /* Retrieve the index of a FDB entry by mac address. Currently we search through
785  * the complete table in hardware. If that's too slow, we might have to cache
786  * the complete FDB table in software.
787  */
788 static int hellcreek_fdb_get(struct hellcreek *hellcreek,
789 			     const unsigned char *dest,
790 			     struct hellcreek_fdb_entry *entry)
791 {
792 	size_t i;
793 
794 	/* Set read pointer to zero: The read of HR_FDBMAX (read-only register)
795 	 * should reset the internal pointer. But, that doesn't work. The vendor
796 	 * suggested a subsequent write as workaround. Same for HR_FDBRDH below.
797 	 */
798 	hellcreek_read(hellcreek, HR_FDBMAX);
799 	hellcreek_write(hellcreek, 0x00, HR_FDBMAX);
800 
801 	/* We have to read the complete table, because the switch/driver might
802 	 * enter new entries anywhere.
803 	 */
804 	for (i = 0; i < hellcreek->fdb_entries; ++i) {
805 		struct hellcreek_fdb_entry tmp = { 0 };
806 
807 		/* Read entry */
808 		hellcreek_populate_fdb_entry(hellcreek, &tmp, i);
809 
810 		/* Force next entry */
811 		hellcreek_write(hellcreek, 0x00, HR_FDBRDH);
812 
813 		if (memcmp(tmp.mac, dest, ETH_ALEN))
814 			continue;
815 
816 		/* Match found */
817 		memcpy(entry, &tmp, sizeof(*entry));
818 
819 		return 0;
820 	}
821 
822 	return -ENOENT;
823 }
824 
825 static int hellcreek_fdb_add(struct dsa_switch *ds, int port,
826 			     const unsigned char *addr, u16 vid)
827 {
828 	struct hellcreek_fdb_entry entry = { 0 };
829 	struct hellcreek *hellcreek = ds->priv;
830 	int ret;
831 
832 	dev_dbg(hellcreek->dev, "Add FDB entry for MAC=%pM\n", addr);
833 
834 	mutex_lock(&hellcreek->reg_lock);
835 
836 	ret = hellcreek_fdb_get(hellcreek, addr, &entry);
837 	if (ret) {
838 		/* Not found */
839 		memcpy(entry.mac, addr, sizeof(entry.mac));
840 		entry.portmask = BIT(port);
841 
842 		ret = __hellcreek_fdb_add(hellcreek, &entry);
843 		if (ret) {
844 			dev_err(hellcreek->dev, "Failed to add FDB entry!\n");
845 			goto out;
846 		}
847 	} else {
848 		/* Found */
849 		ret = __hellcreek_fdb_del(hellcreek, &entry);
850 		if (ret) {
851 			dev_err(hellcreek->dev, "Failed to delete FDB entry!\n");
852 			goto out;
853 		}
854 
855 		entry.portmask |= BIT(port);
856 
857 		ret = __hellcreek_fdb_add(hellcreek, &entry);
858 		if (ret) {
859 			dev_err(hellcreek->dev, "Failed to add FDB entry!\n");
860 			goto out;
861 		}
862 	}
863 
864 out:
865 	mutex_unlock(&hellcreek->reg_lock);
866 
867 	return ret;
868 }
869 
870 static int hellcreek_fdb_del(struct dsa_switch *ds, int port,
871 			     const unsigned char *addr, u16 vid)
872 {
873 	struct hellcreek_fdb_entry entry = { 0 };
874 	struct hellcreek *hellcreek = ds->priv;
875 	int ret;
876 
877 	dev_dbg(hellcreek->dev, "Delete FDB entry for MAC=%pM\n", addr);
878 
879 	mutex_lock(&hellcreek->reg_lock);
880 
881 	ret = hellcreek_fdb_get(hellcreek, addr, &entry);
882 	if (ret) {
883 		/* Not found */
884 		dev_err(hellcreek->dev, "FDB entry for deletion not found!\n");
885 	} else {
886 		/* Found */
887 		ret = __hellcreek_fdb_del(hellcreek, &entry);
888 		if (ret) {
889 			dev_err(hellcreek->dev, "Failed to delete FDB entry!\n");
890 			goto out;
891 		}
892 
893 		entry.portmask &= ~BIT(port);
894 
895 		if (entry.portmask != 0x00) {
896 			ret = __hellcreek_fdb_add(hellcreek, &entry);
897 			if (ret) {
898 				dev_err(hellcreek->dev, "Failed to add FDB entry!\n");
899 				goto out;
900 			}
901 		}
902 	}
903 
904 out:
905 	mutex_unlock(&hellcreek->reg_lock);
906 
907 	return ret;
908 }
909 
910 static int hellcreek_fdb_dump(struct dsa_switch *ds, int port,
911 			      dsa_fdb_dump_cb_t *cb, void *data)
912 {
913 	struct hellcreek *hellcreek = ds->priv;
914 	u16 entries;
915 	size_t i;
916 
917 	mutex_lock(&hellcreek->reg_lock);
918 
919 	/* Set read pointer to zero: The read of HR_FDBMAX (read-only register)
920 	 * should reset the internal pointer. But, that doesn't work. The vendor
921 	 * suggested a subsequent write as workaround. Same for HR_FDBRDH below.
922 	 */
923 	entries = hellcreek_read(hellcreek, HR_FDBMAX);
924 	hellcreek_write(hellcreek, 0x00, HR_FDBMAX);
925 
926 	dev_dbg(hellcreek->dev, "FDB dump for port %d, entries=%d!\n", port, entries);
927 
928 	/* Read table */
929 	for (i = 0; i < hellcreek->fdb_entries; ++i) {
930 		unsigned char null_addr[ETH_ALEN] = { 0 };
931 		struct hellcreek_fdb_entry entry = { 0 };
932 
933 		/* Read entry */
934 		hellcreek_populate_fdb_entry(hellcreek, &entry, i);
935 
936 		/* Force next entry */
937 		hellcreek_write(hellcreek, 0x00, HR_FDBRDH);
938 
939 		/* Check valid */
940 		if (!memcmp(entry.mac, null_addr, ETH_ALEN))
941 			continue;
942 
943 		/* Check port mask */
944 		if (!(entry.portmask & BIT(port)))
945 			continue;
946 
947 		cb(entry.mac, 0, entry.is_static, data);
948 	}
949 
950 	mutex_unlock(&hellcreek->reg_lock);
951 
952 	return 0;
953 }
954 
955 static int hellcreek_vlan_filtering(struct dsa_switch *ds, int port,
956 				    bool vlan_filtering,
957 				    struct netlink_ext_ack *extack)
958 {
959 	struct hellcreek *hellcreek = ds->priv;
960 
961 	dev_dbg(hellcreek->dev, "%s VLAN filtering on port %d\n",
962 		vlan_filtering ? "Enable" : "Disable", port);
963 
964 	/* Configure port to drop packages with not known vids */
965 	hellcreek_setup_ingressflt(hellcreek, port, vlan_filtering);
966 
967 	/* Enable VLAN awareness on the switch. This save due to
968 	 * ds->vlan_filtering_is_global.
969 	 */
970 	hellcreek_setup_vlan_awareness(hellcreek, vlan_filtering);
971 
972 	return 0;
973 }
974 
975 static int hellcreek_enable_ip_core(struct hellcreek *hellcreek)
976 {
977 	int ret;
978 	u16 val;
979 
980 	mutex_lock(&hellcreek->reg_lock);
981 
982 	val = hellcreek_read(hellcreek, HR_CTRL_C);
983 	val |= HR_CTRL_C_ENABLE;
984 	hellcreek_write(hellcreek, val, HR_CTRL_C);
985 	ret = hellcreek_wait_until_transitioned(hellcreek);
986 
987 	mutex_unlock(&hellcreek->reg_lock);
988 
989 	return ret;
990 }
991 
992 static void hellcreek_setup_cpu_and_tunnel_port(struct hellcreek *hellcreek)
993 {
994 	struct hellcreek_port *tunnel_port = &hellcreek->ports[TUNNEL_PORT];
995 	struct hellcreek_port *cpu_port = &hellcreek->ports[CPU_PORT];
996 	u16 ptcfg = 0;
997 
998 	ptcfg |= HR_PTCFG_LEARNING_EN | HR_PTCFG_ADMIN_EN;
999 
1000 	mutex_lock(&hellcreek->reg_lock);
1001 
1002 	hellcreek_select_port(hellcreek, CPU_PORT);
1003 	hellcreek_write(hellcreek, ptcfg, HR_PTCFG);
1004 
1005 	hellcreek_select_port(hellcreek, TUNNEL_PORT);
1006 	hellcreek_write(hellcreek, ptcfg, HR_PTCFG);
1007 
1008 	cpu_port->ptcfg	   = ptcfg;
1009 	tunnel_port->ptcfg = ptcfg;
1010 
1011 	mutex_unlock(&hellcreek->reg_lock);
1012 }
1013 
1014 static void hellcreek_setup_tc_identity_mapping(struct hellcreek *hellcreek)
1015 {
1016 	int i;
1017 
1018 	/* The switch has multiple egress queues per port. The queue is selected
1019 	 * via the PCP field in the VLAN header. The switch internally deals
1020 	 * with traffic classes instead of PCP values and this mapping is
1021 	 * configurable.
1022 	 *
1023 	 * The default mapping is (PCP - TC):
1024 	 *  7 - 7
1025 	 *  6 - 6
1026 	 *  5 - 5
1027 	 *  4 - 4
1028 	 *  3 - 3
1029 	 *  2 - 1
1030 	 *  1 - 0
1031 	 *  0 - 2
1032 	 *
1033 	 * The default should be an identity mapping.
1034 	 */
1035 
1036 	for (i = 0; i < 8; ++i) {
1037 		mutex_lock(&hellcreek->reg_lock);
1038 
1039 		hellcreek_select_prio(hellcreek, i);
1040 		hellcreek_write(hellcreek,
1041 				i << HR_PRTCCFG_PCP_TC_MAP_SHIFT,
1042 				HR_PRTCCFG);
1043 
1044 		mutex_unlock(&hellcreek->reg_lock);
1045 	}
1046 }
1047 
1048 static int hellcreek_setup_fdb(struct hellcreek *hellcreek)
1049 {
1050 	static struct hellcreek_fdb_entry ptp = {
1051 		/* MAC: 01-1B-19-00-00-00 */
1052 		.mac	      = { 0x01, 0x1b, 0x19, 0x00, 0x00, 0x00 },
1053 		.portmask     = 0x03,	/* Management ports */
1054 		.age	      = 0,
1055 		.is_obt	      = 0,
1056 		.pass_blocked = 0,
1057 		.is_static    = 1,
1058 		.reprio_tc    = 6,	/* TC: 6 as per IEEE 802.1AS */
1059 		.reprio_en    = 1,
1060 	};
1061 	static struct hellcreek_fdb_entry p2p = {
1062 		/* MAC: 01-80-C2-00-00-0E */
1063 		.mac	      = { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x0e },
1064 		.portmask     = 0x03,	/* Management ports */
1065 		.age	      = 0,
1066 		.is_obt	      = 0,
1067 		.pass_blocked = 0,
1068 		.is_static    = 1,
1069 		.reprio_tc    = 6,	/* TC: 6 as per IEEE 802.1AS */
1070 		.reprio_en    = 1,
1071 	};
1072 	int ret;
1073 
1074 	mutex_lock(&hellcreek->reg_lock);
1075 	ret = __hellcreek_fdb_add(hellcreek, &ptp);
1076 	if (ret)
1077 		goto out;
1078 	ret = __hellcreek_fdb_add(hellcreek, &p2p);
1079 out:
1080 	mutex_unlock(&hellcreek->reg_lock);
1081 
1082 	return ret;
1083 }
1084 
1085 static u64 hellcreek_devlink_vlan_table_get(void *priv)
1086 {
1087 	struct hellcreek *hellcreek = priv;
1088 	u64 count = 0;
1089 	int i;
1090 
1091 	mutex_lock(&hellcreek->reg_lock);
1092 	for (i = 0; i < VLAN_N_VID; ++i)
1093 		if (hellcreek->vidmbrcfg[i])
1094 			count++;
1095 	mutex_unlock(&hellcreek->reg_lock);
1096 
1097 	return count;
1098 }
1099 
1100 static u64 hellcreek_devlink_fdb_table_get(void *priv)
1101 {
1102 	struct hellcreek *hellcreek = priv;
1103 	u64 count = 0;
1104 
1105 	/* Reading this register has side effects. Synchronize against the other
1106 	 * FDB operations.
1107 	 */
1108 	mutex_lock(&hellcreek->reg_lock);
1109 	count = hellcreek_read(hellcreek, HR_FDBMAX);
1110 	mutex_unlock(&hellcreek->reg_lock);
1111 
1112 	return count;
1113 }
1114 
1115 static int hellcreek_setup_devlink_resources(struct dsa_switch *ds)
1116 {
1117 	struct devlink_resource_size_params size_vlan_params;
1118 	struct devlink_resource_size_params size_fdb_params;
1119 	struct hellcreek *hellcreek = ds->priv;
1120 	int err;
1121 
1122 	devlink_resource_size_params_init(&size_vlan_params, VLAN_N_VID,
1123 					  VLAN_N_VID,
1124 					  1, DEVLINK_RESOURCE_UNIT_ENTRY);
1125 
1126 	devlink_resource_size_params_init(&size_fdb_params,
1127 					  hellcreek->fdb_entries,
1128 					  hellcreek->fdb_entries,
1129 					  1, DEVLINK_RESOURCE_UNIT_ENTRY);
1130 
1131 	err = dsa_devlink_resource_register(ds, "VLAN", VLAN_N_VID,
1132 					    HELLCREEK_DEVLINK_PARAM_ID_VLAN_TABLE,
1133 					    DEVLINK_RESOURCE_ID_PARENT_TOP,
1134 					    &size_vlan_params);
1135 	if (err)
1136 		goto out;
1137 
1138 	err = dsa_devlink_resource_register(ds, "FDB", hellcreek->fdb_entries,
1139 					    HELLCREEK_DEVLINK_PARAM_ID_FDB_TABLE,
1140 					    DEVLINK_RESOURCE_ID_PARENT_TOP,
1141 					    &size_fdb_params);
1142 	if (err)
1143 		goto out;
1144 
1145 	dsa_devlink_resource_occ_get_register(ds,
1146 					      HELLCREEK_DEVLINK_PARAM_ID_VLAN_TABLE,
1147 					      hellcreek_devlink_vlan_table_get,
1148 					      hellcreek);
1149 
1150 	dsa_devlink_resource_occ_get_register(ds,
1151 					      HELLCREEK_DEVLINK_PARAM_ID_FDB_TABLE,
1152 					      hellcreek_devlink_fdb_table_get,
1153 					      hellcreek);
1154 
1155 	return 0;
1156 
1157 out:
1158 	dsa_devlink_resources_unregister(ds);
1159 
1160 	return err;
1161 }
1162 
1163 static int hellcreek_devlink_region_vlan_snapshot(struct devlink *dl,
1164 						  const struct devlink_region_ops *ops,
1165 						  struct netlink_ext_ack *extack,
1166 						  u8 **data)
1167 {
1168 	struct hellcreek_devlink_vlan_entry *table, *entry;
1169 	struct dsa_switch *ds = dsa_devlink_to_ds(dl);
1170 	struct hellcreek *hellcreek = ds->priv;
1171 	int i;
1172 
1173 	table = kcalloc(VLAN_N_VID, sizeof(*entry), GFP_KERNEL);
1174 	if (!table)
1175 		return -ENOMEM;
1176 
1177 	entry = table;
1178 
1179 	mutex_lock(&hellcreek->reg_lock);
1180 	for (i = 0; i < VLAN_N_VID; ++i, ++entry) {
1181 		entry->member = hellcreek->vidmbrcfg[i];
1182 		entry->vid    = i;
1183 	}
1184 	mutex_unlock(&hellcreek->reg_lock);
1185 
1186 	*data = (u8 *)table;
1187 
1188 	return 0;
1189 }
1190 
1191 static int hellcreek_devlink_region_fdb_snapshot(struct devlink *dl,
1192 						 const struct devlink_region_ops *ops,
1193 						 struct netlink_ext_ack *extack,
1194 						 u8 **data)
1195 {
1196 	struct dsa_switch *ds = dsa_devlink_to_ds(dl);
1197 	struct hellcreek_fdb_entry *table, *entry;
1198 	struct hellcreek *hellcreek = ds->priv;
1199 	size_t i;
1200 
1201 	table = kcalloc(hellcreek->fdb_entries, sizeof(*entry), GFP_KERNEL);
1202 	if (!table)
1203 		return -ENOMEM;
1204 
1205 	entry = table;
1206 
1207 	mutex_lock(&hellcreek->reg_lock);
1208 
1209 	/* Start table read */
1210 	hellcreek_read(hellcreek, HR_FDBMAX);
1211 	hellcreek_write(hellcreek, 0x00, HR_FDBMAX);
1212 
1213 	for (i = 0; i < hellcreek->fdb_entries; ++i, ++entry) {
1214 		/* Read current entry */
1215 		hellcreek_populate_fdb_entry(hellcreek, entry, i);
1216 
1217 		/* Advance read pointer */
1218 		hellcreek_write(hellcreek, 0x00, HR_FDBRDH);
1219 	}
1220 
1221 	mutex_unlock(&hellcreek->reg_lock);
1222 
1223 	*data = (u8 *)table;
1224 
1225 	return 0;
1226 }
1227 
1228 static struct devlink_region_ops hellcreek_region_vlan_ops = {
1229 	.name	    = "vlan",
1230 	.snapshot   = hellcreek_devlink_region_vlan_snapshot,
1231 	.destructor = kfree,
1232 };
1233 
1234 static struct devlink_region_ops hellcreek_region_fdb_ops = {
1235 	.name	    = "fdb",
1236 	.snapshot   = hellcreek_devlink_region_fdb_snapshot,
1237 	.destructor = kfree,
1238 };
1239 
1240 static int hellcreek_setup_devlink_regions(struct dsa_switch *ds)
1241 {
1242 	struct hellcreek *hellcreek = ds->priv;
1243 	struct devlink_region_ops *ops;
1244 	struct devlink_region *region;
1245 	u64 size;
1246 	int ret;
1247 
1248 	/* VLAN table */
1249 	size = VLAN_N_VID * sizeof(struct hellcreek_devlink_vlan_entry);
1250 	ops  = &hellcreek_region_vlan_ops;
1251 
1252 	region = dsa_devlink_region_create(ds, ops, 1, size);
1253 	if (IS_ERR(region))
1254 		return PTR_ERR(region);
1255 
1256 	hellcreek->vlan_region = region;
1257 
1258 	/* FDB table */
1259 	size = hellcreek->fdb_entries * sizeof(struct hellcreek_fdb_entry);
1260 	ops  = &hellcreek_region_fdb_ops;
1261 
1262 	region = dsa_devlink_region_create(ds, ops, 1, size);
1263 	if (IS_ERR(region)) {
1264 		ret = PTR_ERR(region);
1265 		goto err_fdb;
1266 	}
1267 
1268 	hellcreek->fdb_region = region;
1269 
1270 	return 0;
1271 
1272 err_fdb:
1273 	dsa_devlink_region_destroy(hellcreek->vlan_region);
1274 
1275 	return ret;
1276 }
1277 
1278 static void hellcreek_teardown_devlink_regions(struct dsa_switch *ds)
1279 {
1280 	struct hellcreek *hellcreek = ds->priv;
1281 
1282 	dsa_devlink_region_destroy(hellcreek->fdb_region);
1283 	dsa_devlink_region_destroy(hellcreek->vlan_region);
1284 }
1285 
1286 static int hellcreek_setup(struct dsa_switch *ds)
1287 {
1288 	struct hellcreek *hellcreek = ds->priv;
1289 	u16 swcfg = 0;
1290 	int ret, i;
1291 
1292 	dev_dbg(hellcreek->dev, "Set up the switch\n");
1293 
1294 	/* Let's go */
1295 	ret = hellcreek_enable_ip_core(hellcreek);
1296 	if (ret) {
1297 		dev_err(hellcreek->dev, "Failed to enable IP core!\n");
1298 		return ret;
1299 	}
1300 
1301 	/* Enable CPU/Tunnel ports */
1302 	hellcreek_setup_cpu_and_tunnel_port(hellcreek);
1303 
1304 	/* Switch config: Keep defaults, enable FDB aging and learning and tag
1305 	 * each frame from/to cpu port for DSA tagging.  Also enable the length
1306 	 * aware shaping mode. This eliminates the need for Qbv guard bands.
1307 	 */
1308 	swcfg |= HR_SWCFG_FDBAGE_EN |
1309 		HR_SWCFG_FDBLRN_EN  |
1310 		HR_SWCFG_ALWAYS_OBT |
1311 		(HR_SWCFG_LAS_ON << HR_SWCFG_LAS_MODE_SHIFT);
1312 	hellcreek->swcfg = swcfg;
1313 	hellcreek_write(hellcreek, swcfg, HR_SWCFG);
1314 
1315 	/* Initial vlan membership to reflect port separation */
1316 	for (i = 0; i < ds->num_ports; ++i) {
1317 		if (!dsa_is_user_port(ds, i))
1318 			continue;
1319 
1320 		hellcreek_setup_vlan_membership(ds, i, true);
1321 	}
1322 
1323 	/* Configure PCP <-> TC mapping */
1324 	hellcreek_setup_tc_identity_mapping(hellcreek);
1325 
1326 	/* The VLAN awareness is a global switch setting. Therefore, mixed vlan
1327 	 * filtering setups are not supported.
1328 	 */
1329 	ds->vlan_filtering_is_global = true;
1330 
1331 	/* Intercept _all_ PTP multicast traffic */
1332 	ret = hellcreek_setup_fdb(hellcreek);
1333 	if (ret) {
1334 		dev_err(hellcreek->dev,
1335 			"Failed to insert static PTP FDB entries\n");
1336 		return ret;
1337 	}
1338 
1339 	/* Register devlink resources with DSA */
1340 	ret = hellcreek_setup_devlink_resources(ds);
1341 	if (ret) {
1342 		dev_err(hellcreek->dev,
1343 			"Failed to setup devlink resources!\n");
1344 		return ret;
1345 	}
1346 
1347 	ret = hellcreek_setup_devlink_regions(ds);
1348 	if (ret) {
1349 		dev_err(hellcreek->dev,
1350 			"Failed to setup devlink regions!\n");
1351 		goto err_regions;
1352 	}
1353 
1354 	return 0;
1355 
1356 err_regions:
1357 	dsa_devlink_resources_unregister(ds);
1358 
1359 	return ret;
1360 }
1361 
1362 static void hellcreek_teardown(struct dsa_switch *ds)
1363 {
1364 	hellcreek_teardown_devlink_regions(ds);
1365 	dsa_devlink_resources_unregister(ds);
1366 }
1367 
1368 static void hellcreek_phylink_validate(struct dsa_switch *ds, int port,
1369 				       unsigned long *supported,
1370 				       struct phylink_link_state *state)
1371 {
1372 	__ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
1373 	struct hellcreek *hellcreek = ds->priv;
1374 
1375 	dev_dbg(hellcreek->dev, "Phylink validate for port %d\n", port);
1376 
1377 	/* The MAC settings are a hardware configuration option and cannot be
1378 	 * changed at run time or by strapping. Therefore the attached PHYs
1379 	 * should be programmed to only advertise settings which are supported
1380 	 * by the hardware.
1381 	 */
1382 	if (hellcreek->pdata->is_100_mbits)
1383 		phylink_set(mask, 100baseT_Full);
1384 	else
1385 		phylink_set(mask, 1000baseT_Full);
1386 
1387 	bitmap_and(supported, supported, mask,
1388 		   __ETHTOOL_LINK_MODE_MASK_NBITS);
1389 	bitmap_and(state->advertising, state->advertising, mask,
1390 		   __ETHTOOL_LINK_MODE_MASK_NBITS);
1391 }
1392 
1393 static int
1394 hellcreek_port_prechangeupper(struct dsa_switch *ds, int port,
1395 			      struct netdev_notifier_changeupper_info *info)
1396 {
1397 	struct hellcreek *hellcreek = ds->priv;
1398 	bool used = true;
1399 	int ret = -EBUSY;
1400 	u16 vid;
1401 	int i;
1402 
1403 	dev_dbg(hellcreek->dev, "Pre change upper for port %d\n", port);
1404 
1405 	/*
1406 	 * Deny VLAN devices on top of lan ports with the same VLAN ids, because
1407 	 * it breaks the port separation due to the private VLANs. Example:
1408 	 *
1409 	 * lan0.100 *and* lan1.100 cannot be used in parallel. However, lan0.99
1410 	 * and lan1.100 works.
1411 	 */
1412 
1413 	if (!is_vlan_dev(info->upper_dev))
1414 		return 0;
1415 
1416 	vid = vlan_dev_vlan_id(info->upper_dev);
1417 
1418 	/* For all ports, check bitmaps */
1419 	mutex_lock(&hellcreek->vlan_lock);
1420 	for (i = 0; i < hellcreek->pdata->num_ports; ++i) {
1421 		if (!dsa_is_user_port(ds, i))
1422 			continue;
1423 
1424 		if (port == i)
1425 			continue;
1426 
1427 		used = used && test_bit(vid, hellcreek->ports[i].vlan_dev_bitmap);
1428 	}
1429 
1430 	if (used)
1431 		goto out;
1432 
1433 	/* Update bitmap */
1434 	set_bit(vid, hellcreek->ports[port].vlan_dev_bitmap);
1435 
1436 	ret = 0;
1437 
1438 out:
1439 	mutex_unlock(&hellcreek->vlan_lock);
1440 
1441 	return ret;
1442 }
1443 
1444 static void hellcreek_setup_gcl(struct hellcreek *hellcreek, int port,
1445 				const struct tc_taprio_qopt_offload *schedule)
1446 {
1447 	const struct tc_taprio_sched_entry *cur, *initial, *next;
1448 	size_t i;
1449 
1450 	cur = initial = &schedule->entries[0];
1451 	next = cur + 1;
1452 
1453 	for (i = 1; i <= schedule->num_entries; ++i) {
1454 		u16 data;
1455 		u8 gates;
1456 
1457 		cur++;
1458 		next++;
1459 
1460 		if (i == schedule->num_entries)
1461 			gates = initial->gate_mask ^
1462 				cur->gate_mask;
1463 		else
1464 			gates = next->gate_mask ^
1465 				cur->gate_mask;
1466 
1467 		data = gates;
1468 
1469 		if (i == schedule->num_entries)
1470 			data |= TR_GCLDAT_GCLWRLAST;
1471 
1472 		/* Gates states */
1473 		hellcreek_write(hellcreek, data, TR_GCLDAT);
1474 
1475 		/* Time interval */
1476 		hellcreek_write(hellcreek,
1477 				cur->interval & 0x0000ffff,
1478 				TR_GCLTIL);
1479 		hellcreek_write(hellcreek,
1480 				(cur->interval & 0xffff0000) >> 16,
1481 				TR_GCLTIH);
1482 
1483 		/* Commit entry */
1484 		data = ((i - 1) << TR_GCLCMD_GCLWRADR_SHIFT) |
1485 			(initial->gate_mask <<
1486 			 TR_GCLCMD_INIT_GATE_STATES_SHIFT);
1487 		hellcreek_write(hellcreek, data, TR_GCLCMD);
1488 	}
1489 }
1490 
1491 static void hellcreek_set_cycle_time(struct hellcreek *hellcreek,
1492 				     const struct tc_taprio_qopt_offload *schedule)
1493 {
1494 	u32 cycle_time = schedule->cycle_time;
1495 
1496 	hellcreek_write(hellcreek, cycle_time & 0x0000ffff, TR_CTWRL);
1497 	hellcreek_write(hellcreek, (cycle_time & 0xffff0000) >> 16, TR_CTWRH);
1498 }
1499 
1500 static void hellcreek_switch_schedule(struct hellcreek *hellcreek,
1501 				      ktime_t start_time)
1502 {
1503 	struct timespec64 ts = ktime_to_timespec64(start_time);
1504 
1505 	/* Start schedule at this point of time */
1506 	hellcreek_write(hellcreek, ts.tv_nsec & 0x0000ffff, TR_ESTWRL);
1507 	hellcreek_write(hellcreek, (ts.tv_nsec & 0xffff0000) >> 16, TR_ESTWRH);
1508 
1509 	/* Arm timer, set seconds and switch schedule */
1510 	hellcreek_write(hellcreek, TR_ESTCMD_ESTARM | TR_ESTCMD_ESTSWCFG |
1511 			((ts.tv_sec & TR_ESTCMD_ESTSEC_MASK) <<
1512 			 TR_ESTCMD_ESTSEC_SHIFT), TR_ESTCMD);
1513 }
1514 
1515 static bool hellcreek_schedule_startable(struct hellcreek *hellcreek, int port)
1516 {
1517 	struct hellcreek_port *hellcreek_port = &hellcreek->ports[port];
1518 	s64 base_time_ns, current_ns;
1519 
1520 	/* The switch allows a schedule to be started only eight seconds within
1521 	 * the future. Therefore, check the current PTP time if the schedule is
1522 	 * startable or not.
1523 	 */
1524 
1525 	/* Use the "cached" time. That should be alright, as it's updated quite
1526 	 * frequently in the PTP code.
1527 	 */
1528 	mutex_lock(&hellcreek->ptp_lock);
1529 	current_ns = hellcreek->seconds * NSEC_PER_SEC + hellcreek->last_ts;
1530 	mutex_unlock(&hellcreek->ptp_lock);
1531 
1532 	/* Calculate difference to admin base time */
1533 	base_time_ns = ktime_to_ns(hellcreek_port->current_schedule->base_time);
1534 
1535 	return base_time_ns - current_ns < (s64)8 * NSEC_PER_SEC;
1536 }
1537 
1538 static void hellcreek_start_schedule(struct hellcreek *hellcreek, int port)
1539 {
1540 	struct hellcreek_port *hellcreek_port = &hellcreek->ports[port];
1541 	ktime_t base_time, current_time;
1542 	s64 current_ns;
1543 	u32 cycle_time;
1544 
1545 	/* First select port */
1546 	hellcreek_select_tgd(hellcreek, port);
1547 
1548 	/* Forward base time into the future if needed */
1549 	mutex_lock(&hellcreek->ptp_lock);
1550 	current_ns = hellcreek->seconds * NSEC_PER_SEC + hellcreek->last_ts;
1551 	mutex_unlock(&hellcreek->ptp_lock);
1552 
1553 	current_time = ns_to_ktime(current_ns);
1554 	base_time    = hellcreek_port->current_schedule->base_time;
1555 	cycle_time   = hellcreek_port->current_schedule->cycle_time;
1556 
1557 	if (ktime_compare(current_time, base_time) > 0) {
1558 		s64 n;
1559 
1560 		n = div64_s64(ktime_sub_ns(current_time, base_time),
1561 			      cycle_time);
1562 		base_time = ktime_add_ns(base_time, (n + 1) * cycle_time);
1563 	}
1564 
1565 	/* Set admin base time and switch schedule */
1566 	hellcreek_switch_schedule(hellcreek, base_time);
1567 
1568 	taprio_offload_free(hellcreek_port->current_schedule);
1569 	hellcreek_port->current_schedule = NULL;
1570 
1571 	dev_dbg(hellcreek->dev, "Armed EST timer for port %d\n",
1572 		hellcreek_port->port);
1573 }
1574 
1575 static void hellcreek_check_schedule(struct work_struct *work)
1576 {
1577 	struct delayed_work *dw = to_delayed_work(work);
1578 	struct hellcreek_port *hellcreek_port;
1579 	struct hellcreek *hellcreek;
1580 	bool startable;
1581 
1582 	hellcreek_port = dw_to_hellcreek_port(dw);
1583 	hellcreek = hellcreek_port->hellcreek;
1584 
1585 	mutex_lock(&hellcreek->reg_lock);
1586 
1587 	/* Check starting time */
1588 	startable = hellcreek_schedule_startable(hellcreek,
1589 						 hellcreek_port->port);
1590 	if (startable) {
1591 		hellcreek_start_schedule(hellcreek, hellcreek_port->port);
1592 		mutex_unlock(&hellcreek->reg_lock);
1593 		return;
1594 	}
1595 
1596 	mutex_unlock(&hellcreek->reg_lock);
1597 
1598 	/* Reschedule */
1599 	schedule_delayed_work(&hellcreek_port->schedule_work,
1600 			      HELLCREEK_SCHEDULE_PERIOD);
1601 }
1602 
1603 static int hellcreek_port_set_schedule(struct dsa_switch *ds, int port,
1604 				       struct tc_taprio_qopt_offload *taprio)
1605 {
1606 	struct hellcreek *hellcreek = ds->priv;
1607 	struct hellcreek_port *hellcreek_port;
1608 	bool startable;
1609 	u16 ctrl;
1610 
1611 	hellcreek_port = &hellcreek->ports[port];
1612 
1613 	dev_dbg(hellcreek->dev, "Configure traffic schedule on port %d\n",
1614 		port);
1615 
1616 	/* First cancel delayed work */
1617 	cancel_delayed_work_sync(&hellcreek_port->schedule_work);
1618 
1619 	mutex_lock(&hellcreek->reg_lock);
1620 
1621 	if (hellcreek_port->current_schedule) {
1622 		taprio_offload_free(hellcreek_port->current_schedule);
1623 		hellcreek_port->current_schedule = NULL;
1624 	}
1625 	hellcreek_port->current_schedule = taprio_offload_get(taprio);
1626 
1627 	/* Then select port */
1628 	hellcreek_select_tgd(hellcreek, port);
1629 
1630 	/* Enable gating and keep defaults */
1631 	ctrl = (0xff << TR_TGDCTRL_ADMINGATESTATES_SHIFT) | TR_TGDCTRL_GATE_EN;
1632 	hellcreek_write(hellcreek, ctrl, TR_TGDCTRL);
1633 
1634 	/* Cancel pending schedule */
1635 	hellcreek_write(hellcreek, 0x00, TR_ESTCMD);
1636 
1637 	/* Setup a new schedule */
1638 	hellcreek_setup_gcl(hellcreek, port, hellcreek_port->current_schedule);
1639 
1640 	/* Configure cycle time */
1641 	hellcreek_set_cycle_time(hellcreek, hellcreek_port->current_schedule);
1642 
1643 	/* Check starting time */
1644 	startable = hellcreek_schedule_startable(hellcreek, port);
1645 	if (startable) {
1646 		hellcreek_start_schedule(hellcreek, port);
1647 		mutex_unlock(&hellcreek->reg_lock);
1648 		return 0;
1649 	}
1650 
1651 	mutex_unlock(&hellcreek->reg_lock);
1652 
1653 	/* Schedule periodic schedule check */
1654 	schedule_delayed_work(&hellcreek_port->schedule_work,
1655 			      HELLCREEK_SCHEDULE_PERIOD);
1656 
1657 	return 0;
1658 }
1659 
1660 static int hellcreek_port_del_schedule(struct dsa_switch *ds, int port)
1661 {
1662 	struct hellcreek *hellcreek = ds->priv;
1663 	struct hellcreek_port *hellcreek_port;
1664 
1665 	hellcreek_port = &hellcreek->ports[port];
1666 
1667 	dev_dbg(hellcreek->dev, "Remove traffic schedule on port %d\n", port);
1668 
1669 	/* First cancel delayed work */
1670 	cancel_delayed_work_sync(&hellcreek_port->schedule_work);
1671 
1672 	mutex_lock(&hellcreek->reg_lock);
1673 
1674 	if (hellcreek_port->current_schedule) {
1675 		taprio_offload_free(hellcreek_port->current_schedule);
1676 		hellcreek_port->current_schedule = NULL;
1677 	}
1678 
1679 	/* Then select port */
1680 	hellcreek_select_tgd(hellcreek, port);
1681 
1682 	/* Disable gating and return to regular switching flow */
1683 	hellcreek_write(hellcreek, 0xff << TR_TGDCTRL_ADMINGATESTATES_SHIFT,
1684 			TR_TGDCTRL);
1685 
1686 	mutex_unlock(&hellcreek->reg_lock);
1687 
1688 	return 0;
1689 }
1690 
1691 static bool hellcreek_validate_schedule(struct hellcreek *hellcreek,
1692 					struct tc_taprio_qopt_offload *schedule)
1693 {
1694 	size_t i;
1695 
1696 	/* Does this hellcreek version support Qbv in hardware? */
1697 	if (!hellcreek->pdata->qbv_support)
1698 		return false;
1699 
1700 	/* cycle time can only be 32bit */
1701 	if (schedule->cycle_time > (u32)-1)
1702 		return false;
1703 
1704 	/* cycle time extension is not supported */
1705 	if (schedule->cycle_time_extension)
1706 		return false;
1707 
1708 	/* Only set command is supported */
1709 	for (i = 0; i < schedule->num_entries; ++i)
1710 		if (schedule->entries[i].command != TC_TAPRIO_CMD_SET_GATES)
1711 			return false;
1712 
1713 	return true;
1714 }
1715 
1716 static int hellcreek_port_setup_tc(struct dsa_switch *ds, int port,
1717 				   enum tc_setup_type type, void *type_data)
1718 {
1719 	struct tc_taprio_qopt_offload *taprio = type_data;
1720 	struct hellcreek *hellcreek = ds->priv;
1721 
1722 	if (type != TC_SETUP_QDISC_TAPRIO)
1723 		return -EOPNOTSUPP;
1724 
1725 	if (!hellcreek_validate_schedule(hellcreek, taprio))
1726 		return -EOPNOTSUPP;
1727 
1728 	if (taprio->enable)
1729 		return hellcreek_port_set_schedule(ds, port, taprio);
1730 
1731 	return hellcreek_port_del_schedule(ds, port);
1732 }
1733 
1734 static const struct dsa_switch_ops hellcreek_ds_ops = {
1735 	.get_ethtool_stats     = hellcreek_get_ethtool_stats,
1736 	.get_sset_count	       = hellcreek_get_sset_count,
1737 	.get_strings	       = hellcreek_get_strings,
1738 	.get_tag_protocol      = hellcreek_get_tag_protocol,
1739 	.get_ts_info	       = hellcreek_get_ts_info,
1740 	.phylink_validate      = hellcreek_phylink_validate,
1741 	.port_bridge_flags     = hellcreek_bridge_flags,
1742 	.port_bridge_join      = hellcreek_port_bridge_join,
1743 	.port_bridge_leave     = hellcreek_port_bridge_leave,
1744 	.port_disable	       = hellcreek_port_disable,
1745 	.port_enable	       = hellcreek_port_enable,
1746 	.port_fdb_add	       = hellcreek_fdb_add,
1747 	.port_fdb_del	       = hellcreek_fdb_del,
1748 	.port_fdb_dump	       = hellcreek_fdb_dump,
1749 	.port_hwtstamp_set     = hellcreek_port_hwtstamp_set,
1750 	.port_hwtstamp_get     = hellcreek_port_hwtstamp_get,
1751 	.port_pre_bridge_flags = hellcreek_pre_bridge_flags,
1752 	.port_prechangeupper   = hellcreek_port_prechangeupper,
1753 	.port_rxtstamp	       = hellcreek_port_rxtstamp,
1754 	.port_setup_tc	       = hellcreek_port_setup_tc,
1755 	.port_stp_state_set    = hellcreek_port_stp_state_set,
1756 	.port_txtstamp	       = hellcreek_port_txtstamp,
1757 	.port_vlan_add	       = hellcreek_vlan_add,
1758 	.port_vlan_del	       = hellcreek_vlan_del,
1759 	.port_vlan_filtering   = hellcreek_vlan_filtering,
1760 	.setup		       = hellcreek_setup,
1761 	.teardown	       = hellcreek_teardown,
1762 };
1763 
1764 static int hellcreek_probe(struct platform_device *pdev)
1765 {
1766 	struct device *dev = &pdev->dev;
1767 	struct hellcreek *hellcreek;
1768 	struct resource *res;
1769 	int ret, i;
1770 
1771 	hellcreek = devm_kzalloc(dev, sizeof(*hellcreek), GFP_KERNEL);
1772 	if (!hellcreek)
1773 		return -ENOMEM;
1774 
1775 	hellcreek->vidmbrcfg = devm_kcalloc(dev, VLAN_N_VID,
1776 					    sizeof(*hellcreek->vidmbrcfg),
1777 					    GFP_KERNEL);
1778 	if (!hellcreek->vidmbrcfg)
1779 		return -ENOMEM;
1780 
1781 	hellcreek->pdata = of_device_get_match_data(dev);
1782 
1783 	hellcreek->ports = devm_kcalloc(dev, hellcreek->pdata->num_ports,
1784 					sizeof(*hellcreek->ports),
1785 					GFP_KERNEL);
1786 	if (!hellcreek->ports)
1787 		return -ENOMEM;
1788 
1789 	for (i = 0; i < hellcreek->pdata->num_ports; ++i) {
1790 		struct hellcreek_port *port = &hellcreek->ports[i];
1791 
1792 		port->counter_values =
1793 			devm_kcalloc(dev,
1794 				     ARRAY_SIZE(hellcreek_counter),
1795 				     sizeof(*port->counter_values),
1796 				     GFP_KERNEL);
1797 		if (!port->counter_values)
1798 			return -ENOMEM;
1799 
1800 		port->vlan_dev_bitmap =
1801 			devm_kcalloc(dev,
1802 				     BITS_TO_LONGS(VLAN_N_VID),
1803 				     sizeof(unsigned long),
1804 				     GFP_KERNEL);
1805 		if (!port->vlan_dev_bitmap)
1806 			return -ENOMEM;
1807 
1808 		port->hellcreek	= hellcreek;
1809 		port->port	= i;
1810 
1811 		INIT_DELAYED_WORK(&port->schedule_work,
1812 				  hellcreek_check_schedule);
1813 	}
1814 
1815 	mutex_init(&hellcreek->reg_lock);
1816 	mutex_init(&hellcreek->vlan_lock);
1817 	mutex_init(&hellcreek->ptp_lock);
1818 
1819 	hellcreek->dev = dev;
1820 
1821 	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "tsn");
1822 	if (!res) {
1823 		dev_err(dev, "No memory region provided!\n");
1824 		return -ENODEV;
1825 	}
1826 
1827 	hellcreek->base = devm_ioremap_resource(dev, res);
1828 	if (IS_ERR(hellcreek->base)) {
1829 		dev_err(dev, "No memory available!\n");
1830 		return PTR_ERR(hellcreek->base);
1831 	}
1832 
1833 	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ptp");
1834 	if (!res) {
1835 		dev_err(dev, "No PTP memory region provided!\n");
1836 		return -ENODEV;
1837 	}
1838 
1839 	hellcreek->ptp_base = devm_ioremap_resource(dev, res);
1840 	if (IS_ERR(hellcreek->ptp_base)) {
1841 		dev_err(dev, "No memory available!\n");
1842 		return PTR_ERR(hellcreek->ptp_base);
1843 	}
1844 
1845 	ret = hellcreek_detect(hellcreek);
1846 	if (ret) {
1847 		dev_err(dev, "No (known) chip found!\n");
1848 		return ret;
1849 	}
1850 
1851 	ret = hellcreek_wait_until_ready(hellcreek);
1852 	if (ret) {
1853 		dev_err(dev, "Switch didn't become ready!\n");
1854 		return ret;
1855 	}
1856 
1857 	hellcreek_feature_detect(hellcreek);
1858 
1859 	hellcreek->ds = devm_kzalloc(dev, sizeof(*hellcreek->ds), GFP_KERNEL);
1860 	if (!hellcreek->ds)
1861 		return -ENOMEM;
1862 
1863 	hellcreek->ds->dev	     = dev;
1864 	hellcreek->ds->priv	     = hellcreek;
1865 	hellcreek->ds->ops	     = &hellcreek_ds_ops;
1866 	hellcreek->ds->num_ports     = hellcreek->pdata->num_ports;
1867 	hellcreek->ds->num_tx_queues = HELLCREEK_NUM_EGRESS_QUEUES;
1868 
1869 	ret = dsa_register_switch(hellcreek->ds);
1870 	if (ret) {
1871 		dev_err_probe(dev, ret, "Unable to register switch\n");
1872 		return ret;
1873 	}
1874 
1875 	ret = hellcreek_ptp_setup(hellcreek);
1876 	if (ret) {
1877 		dev_err(dev, "Failed to setup PTP!\n");
1878 		goto err_ptp_setup;
1879 	}
1880 
1881 	ret = hellcreek_hwtstamp_setup(hellcreek);
1882 	if (ret) {
1883 		dev_err(dev, "Failed to setup hardware timestamping!\n");
1884 		goto err_tstamp_setup;
1885 	}
1886 
1887 	platform_set_drvdata(pdev, hellcreek);
1888 
1889 	return 0;
1890 
1891 err_tstamp_setup:
1892 	hellcreek_ptp_free(hellcreek);
1893 err_ptp_setup:
1894 	dsa_unregister_switch(hellcreek->ds);
1895 
1896 	return ret;
1897 }
1898 
1899 static int hellcreek_remove(struct platform_device *pdev)
1900 {
1901 	struct hellcreek *hellcreek = platform_get_drvdata(pdev);
1902 
1903 	hellcreek_hwtstamp_free(hellcreek);
1904 	hellcreek_ptp_free(hellcreek);
1905 	dsa_unregister_switch(hellcreek->ds);
1906 	platform_set_drvdata(pdev, NULL);
1907 
1908 	return 0;
1909 }
1910 
1911 static const struct hellcreek_platform_data de1soc_r1_pdata = {
1912 	.num_ports	 = 4,
1913 	.is_100_mbits	 = 1,
1914 	.qbv_support	 = 1,
1915 	.qbv_on_cpu_port = 1,
1916 	.qbu_support	 = 0,
1917 	.module_id	 = 0x4c30,
1918 };
1919 
1920 static const struct of_device_id hellcreek_of_match[] = {
1921 	{
1922 		.compatible = "hirschmann,hellcreek-de1soc-r1",
1923 		.data	    = &de1soc_r1_pdata,
1924 	},
1925 	{ /* sentinel */ },
1926 };
1927 MODULE_DEVICE_TABLE(of, hellcreek_of_match);
1928 
1929 static struct platform_driver hellcreek_driver = {
1930 	.probe	= hellcreek_probe,
1931 	.remove = hellcreek_remove,
1932 	.driver = {
1933 		.name = "hellcreek",
1934 		.of_match_table = hellcreek_of_match,
1935 	},
1936 };
1937 module_platform_driver(hellcreek_driver);
1938 
1939 MODULE_AUTHOR("Kurt Kanzenbach <kurt@linutronix.de>");
1940 MODULE_DESCRIPTION("Hirschmann Hellcreek driver");
1941 MODULE_LICENSE("Dual MIT/GPL");
1942