xref: /linux/drivers/net/dsa/qca/qca8k-8xxx.c (revision a1ff5a7d78a036d6c2178ee5acd6ba4946243800)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2009 Felix Fietkau <nbd@nbd.name>
4  * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
5  * Copyright (c) 2015, 2019, The Linux Foundation. All rights reserved.
6  * Copyright (c) 2016 John Crispin <john@phrozen.org>
7  */
8 
9 #include <linux/module.h>
10 #include <linux/phy.h>
11 #include <linux/netdevice.h>
12 #include <linux/bitfield.h>
13 #include <linux/regmap.h>
14 #include <net/dsa.h>
15 #include <linux/of_net.h>
16 #include <linux/of_mdio.h>
17 #include <linux/of_platform.h>
18 #include <linux/mdio.h>
19 #include <linux/phylink.h>
20 #include <linux/gpio/consumer.h>
21 #include <linux/etherdevice.h>
22 #include <linux/dsa/tag_qca.h>
23 
24 #include "qca8k.h"
25 #include "qca8k_leds.h"
26 
27 static void
qca8k_split_addr(u32 regaddr,u16 * r1,u16 * r2,u16 * page)28 qca8k_split_addr(u32 regaddr, u16 *r1, u16 *r2, u16 *page)
29 {
30 	regaddr >>= 1;
31 	*r1 = regaddr & 0x1e;
32 
33 	regaddr >>= 5;
34 	*r2 = regaddr & 0x7;
35 
36 	regaddr >>= 3;
37 	*page = regaddr & 0x3ff;
38 }
39 
40 static int
qca8k_mii_write_lo(struct mii_bus * bus,int phy_id,u32 regnum,u32 val)41 qca8k_mii_write_lo(struct mii_bus *bus, int phy_id, u32 regnum, u32 val)
42 {
43 	int ret;
44 	u16 lo;
45 
46 	lo = val & 0xffff;
47 	ret = bus->write(bus, phy_id, regnum, lo);
48 	if (ret < 0)
49 		dev_err_ratelimited(&bus->dev,
50 				    "failed to write qca8k 32bit lo register\n");
51 
52 	return ret;
53 }
54 
55 static int
qca8k_mii_write_hi(struct mii_bus * bus,int phy_id,u32 regnum,u32 val)56 qca8k_mii_write_hi(struct mii_bus *bus, int phy_id, u32 regnum, u32 val)
57 {
58 	int ret;
59 	u16 hi;
60 
61 	hi = (u16)(val >> 16);
62 	ret = bus->write(bus, phy_id, regnum, hi);
63 	if (ret < 0)
64 		dev_err_ratelimited(&bus->dev,
65 				    "failed to write qca8k 32bit hi register\n");
66 
67 	return ret;
68 }
69 
70 static int
qca8k_mii_read_lo(struct mii_bus * bus,int phy_id,u32 regnum,u32 * val)71 qca8k_mii_read_lo(struct mii_bus *bus, int phy_id, u32 regnum, u32 *val)
72 {
73 	int ret;
74 
75 	ret = bus->read(bus, phy_id, regnum);
76 	if (ret < 0)
77 		goto err;
78 
79 	*val = ret & 0xffff;
80 	return 0;
81 
82 err:
83 	dev_err_ratelimited(&bus->dev,
84 			    "failed to read qca8k 32bit lo register\n");
85 	*val = 0;
86 
87 	return ret;
88 }
89 
90 static int
qca8k_mii_read_hi(struct mii_bus * bus,int phy_id,u32 regnum,u32 * val)91 qca8k_mii_read_hi(struct mii_bus *bus, int phy_id, u32 regnum, u32 *val)
92 {
93 	int ret;
94 
95 	ret = bus->read(bus, phy_id, regnum);
96 	if (ret < 0)
97 		goto err;
98 
99 	*val = ret << 16;
100 	return 0;
101 
102 err:
103 	dev_err_ratelimited(&bus->dev,
104 			    "failed to read qca8k 32bit hi register\n");
105 	*val = 0;
106 
107 	return ret;
108 }
109 
110 static int
qca8k_mii_read32(struct mii_bus * bus,int phy_id,u32 regnum,u32 * val)111 qca8k_mii_read32(struct mii_bus *bus, int phy_id, u32 regnum, u32 *val)
112 {
113 	u32 hi, lo;
114 	int ret;
115 
116 	*val = 0;
117 
118 	ret = qca8k_mii_read_lo(bus, phy_id, regnum, &lo);
119 	if (ret < 0)
120 		goto err;
121 
122 	ret = qca8k_mii_read_hi(bus, phy_id, regnum + 1, &hi);
123 	if (ret < 0)
124 		goto err;
125 
126 	*val = lo | hi;
127 
128 err:
129 	return ret;
130 }
131 
132 static void
qca8k_mii_write32(struct mii_bus * bus,int phy_id,u32 regnum,u32 val)133 qca8k_mii_write32(struct mii_bus *bus, int phy_id, u32 regnum, u32 val)
134 {
135 	if (qca8k_mii_write_lo(bus, phy_id, regnum, val) < 0)
136 		return;
137 
138 	qca8k_mii_write_hi(bus, phy_id, regnum + 1, val);
139 }
140 
141 static int
qca8k_set_page(struct qca8k_priv * priv,u16 page)142 qca8k_set_page(struct qca8k_priv *priv, u16 page)
143 {
144 	u16 *cached_page = &priv->mdio_cache.page;
145 	struct mii_bus *bus = priv->bus;
146 	int ret;
147 
148 	if (page == *cached_page)
149 		return 0;
150 
151 	ret = bus->write(bus, 0x18, 0, page);
152 	if (ret < 0) {
153 		dev_err_ratelimited(&bus->dev,
154 				    "failed to set qca8k page\n");
155 		return ret;
156 	}
157 
158 	*cached_page = page;
159 	usleep_range(1000, 2000);
160 	return 0;
161 }
162 
qca8k_rw_reg_ack_handler(struct dsa_switch * ds,struct sk_buff * skb)163 static void qca8k_rw_reg_ack_handler(struct dsa_switch *ds, struct sk_buff *skb)
164 {
165 	struct qca8k_mgmt_eth_data *mgmt_eth_data;
166 	struct qca8k_priv *priv = ds->priv;
167 	struct qca_mgmt_ethhdr *mgmt_ethhdr;
168 	u32 command;
169 	u8 len, cmd;
170 	int i;
171 
172 	mgmt_ethhdr = (struct qca_mgmt_ethhdr *)skb_mac_header(skb);
173 	mgmt_eth_data = &priv->mgmt_eth_data;
174 
175 	command = get_unaligned_le32(&mgmt_ethhdr->command);
176 	cmd = FIELD_GET(QCA_HDR_MGMT_CMD, command);
177 
178 	len = FIELD_GET(QCA_HDR_MGMT_LENGTH, command);
179 	/* Special case for len of 15 as this is the max value for len and needs to
180 	 * be increased before converting it from word to dword.
181 	 */
182 	if (len == 15)
183 		len++;
184 
185 	/* We can ignore odd value, we always round up them in the alloc function. */
186 	len *= sizeof(u16);
187 
188 	/* Make sure the seq match the requested packet */
189 	if (get_unaligned_le32(&mgmt_ethhdr->seq) == mgmt_eth_data->seq)
190 		mgmt_eth_data->ack = true;
191 
192 	if (cmd == MDIO_READ) {
193 		u32 *val = mgmt_eth_data->data;
194 
195 		*val = get_unaligned_le32(&mgmt_ethhdr->mdio_data);
196 
197 		/* Get the rest of the 12 byte of data.
198 		 * The read/write function will extract the requested data.
199 		 */
200 		if (len > QCA_HDR_MGMT_DATA1_LEN) {
201 			__le32 *data2 = (__le32 *)skb->data;
202 			int data_len = min_t(int, QCA_HDR_MGMT_DATA2_LEN,
203 					     len - QCA_HDR_MGMT_DATA1_LEN);
204 
205 			val++;
206 
207 			for (i = sizeof(u32); i <= data_len; i += sizeof(u32)) {
208 				*val = get_unaligned_le32(data2);
209 				val++;
210 				data2++;
211 			}
212 		}
213 	}
214 
215 	complete(&mgmt_eth_data->rw_done);
216 }
217 
qca8k_alloc_mdio_header(enum mdio_cmd cmd,u32 reg,u32 * val,int priority,unsigned int len)218 static struct sk_buff *qca8k_alloc_mdio_header(enum mdio_cmd cmd, u32 reg, u32 *val,
219 					       int priority, unsigned int len)
220 {
221 	struct qca_mgmt_ethhdr *mgmt_ethhdr;
222 	unsigned int real_len;
223 	struct sk_buff *skb;
224 	__le32 *data2;
225 	u32 command;
226 	u16 hdr;
227 	int i;
228 
229 	skb = dev_alloc_skb(QCA_HDR_MGMT_PKT_LEN);
230 	if (!skb)
231 		return NULL;
232 
233 	/* Hdr mgmt length value is in step of word size.
234 	 * As an example to process 4 byte of data the correct length to set is 2.
235 	 * To process 8 byte 4, 12 byte 6, 16 byte 8...
236 	 *
237 	 * Odd values will always return the next size on the ack packet.
238 	 * (length of 3 (6 byte) will always return 8 bytes of data)
239 	 *
240 	 * This means that a value of 15 (0xf) actually means reading/writing 32 bytes
241 	 * of data.
242 	 *
243 	 * To correctly calculate the length we devide the requested len by word and
244 	 * round up.
245 	 * On the ack function we can skip the odd check as we already handle the
246 	 * case here.
247 	 */
248 	real_len = DIV_ROUND_UP(len, sizeof(u16));
249 
250 	/* We check if the result len is odd and we round up another time to
251 	 * the next size. (length of 3 will be increased to 4 as switch will always
252 	 * return 8 bytes)
253 	 */
254 	if (real_len % sizeof(u16) != 0)
255 		real_len++;
256 
257 	/* Max reg value is 0xf(15) but switch will always return the next size (32 byte) */
258 	if (real_len == 16)
259 		real_len--;
260 
261 	skb_reset_mac_header(skb);
262 	skb_set_network_header(skb, skb->len);
263 
264 	mgmt_ethhdr = skb_push(skb, QCA_HDR_MGMT_HEADER_LEN + QCA_HDR_LEN);
265 
266 	hdr = FIELD_PREP(QCA_HDR_XMIT_VERSION, QCA_HDR_VERSION);
267 	hdr |= FIELD_PREP(QCA_HDR_XMIT_PRIORITY, priority);
268 	hdr |= QCA_HDR_XMIT_FROM_CPU;
269 	hdr |= FIELD_PREP(QCA_HDR_XMIT_DP_BIT, BIT(0));
270 	hdr |= FIELD_PREP(QCA_HDR_XMIT_CONTROL, QCA_HDR_XMIT_TYPE_RW_REG);
271 
272 	command = FIELD_PREP(QCA_HDR_MGMT_ADDR, reg);
273 	command |= FIELD_PREP(QCA_HDR_MGMT_LENGTH, real_len);
274 	command |= FIELD_PREP(QCA_HDR_MGMT_CMD, cmd);
275 	command |= FIELD_PREP(QCA_HDR_MGMT_CHECK_CODE,
276 					   QCA_HDR_MGMT_CHECK_CODE_VAL);
277 
278 	put_unaligned_le32(command, &mgmt_ethhdr->command);
279 
280 	if (cmd == MDIO_WRITE)
281 		put_unaligned_le32(*val, &mgmt_ethhdr->mdio_data);
282 
283 	mgmt_ethhdr->hdr = htons(hdr);
284 
285 	data2 = skb_put_zero(skb, QCA_HDR_MGMT_DATA2_LEN + QCA_HDR_MGMT_PADDING_LEN);
286 	if (cmd == MDIO_WRITE && len > QCA_HDR_MGMT_DATA1_LEN) {
287 		int data_len = min_t(int, QCA_HDR_MGMT_DATA2_LEN,
288 				     len - QCA_HDR_MGMT_DATA1_LEN);
289 
290 		val++;
291 
292 		for (i = sizeof(u32); i <= data_len; i += sizeof(u32)) {
293 			put_unaligned_le32(*val, data2);
294 			data2++;
295 			val++;
296 		}
297 	}
298 
299 	return skb;
300 }
301 
qca8k_mdio_header_fill_seq_num(struct sk_buff * skb,u32 seq_num)302 static void qca8k_mdio_header_fill_seq_num(struct sk_buff *skb, u32 seq_num)
303 {
304 	struct qca_mgmt_ethhdr *mgmt_ethhdr;
305 	u32 seq;
306 
307 	seq = FIELD_PREP(QCA_HDR_MGMT_SEQ_NUM, seq_num);
308 	mgmt_ethhdr = (struct qca_mgmt_ethhdr *)skb->data;
309 	put_unaligned_le32(seq, &mgmt_ethhdr->seq);
310 }
311 
qca8k_read_eth(struct qca8k_priv * priv,u32 reg,u32 * val,int len)312 static int qca8k_read_eth(struct qca8k_priv *priv, u32 reg, u32 *val, int len)
313 {
314 	struct qca8k_mgmt_eth_data *mgmt_eth_data = &priv->mgmt_eth_data;
315 	struct sk_buff *skb;
316 	bool ack;
317 	int ret;
318 
319 	skb = qca8k_alloc_mdio_header(MDIO_READ, reg, NULL,
320 				      QCA8K_ETHERNET_MDIO_PRIORITY, len);
321 	if (!skb)
322 		return -ENOMEM;
323 
324 	mutex_lock(&mgmt_eth_data->mutex);
325 
326 	/* Check if the mgmt_conduit if is operational */
327 	if (!priv->mgmt_conduit) {
328 		kfree_skb(skb);
329 		mutex_unlock(&mgmt_eth_data->mutex);
330 		return -EINVAL;
331 	}
332 
333 	skb->dev = priv->mgmt_conduit;
334 
335 	reinit_completion(&mgmt_eth_data->rw_done);
336 
337 	/* Increment seq_num and set it in the mdio pkt */
338 	mgmt_eth_data->seq++;
339 	qca8k_mdio_header_fill_seq_num(skb, mgmt_eth_data->seq);
340 	mgmt_eth_data->ack = false;
341 
342 	dev_queue_xmit(skb);
343 
344 	ret = wait_for_completion_timeout(&mgmt_eth_data->rw_done,
345 					  msecs_to_jiffies(QCA8K_ETHERNET_TIMEOUT));
346 
347 	*val = mgmt_eth_data->data[0];
348 	if (len > QCA_HDR_MGMT_DATA1_LEN)
349 		memcpy(val + 1, mgmt_eth_data->data + 1, len - QCA_HDR_MGMT_DATA1_LEN);
350 
351 	ack = mgmt_eth_data->ack;
352 
353 	mutex_unlock(&mgmt_eth_data->mutex);
354 
355 	if (ret <= 0)
356 		return -ETIMEDOUT;
357 
358 	if (!ack)
359 		return -EINVAL;
360 
361 	return 0;
362 }
363 
qca8k_write_eth(struct qca8k_priv * priv,u32 reg,u32 * val,int len)364 static int qca8k_write_eth(struct qca8k_priv *priv, u32 reg, u32 *val, int len)
365 {
366 	struct qca8k_mgmt_eth_data *mgmt_eth_data = &priv->mgmt_eth_data;
367 	struct sk_buff *skb;
368 	bool ack;
369 	int ret;
370 
371 	skb = qca8k_alloc_mdio_header(MDIO_WRITE, reg, val,
372 				      QCA8K_ETHERNET_MDIO_PRIORITY, len);
373 	if (!skb)
374 		return -ENOMEM;
375 
376 	mutex_lock(&mgmt_eth_data->mutex);
377 
378 	/* Check if the mgmt_conduit if is operational */
379 	if (!priv->mgmt_conduit) {
380 		kfree_skb(skb);
381 		mutex_unlock(&mgmt_eth_data->mutex);
382 		return -EINVAL;
383 	}
384 
385 	skb->dev = priv->mgmt_conduit;
386 
387 	reinit_completion(&mgmt_eth_data->rw_done);
388 
389 	/* Increment seq_num and set it in the mdio pkt */
390 	mgmt_eth_data->seq++;
391 	qca8k_mdio_header_fill_seq_num(skb, mgmt_eth_data->seq);
392 	mgmt_eth_data->ack = false;
393 
394 	dev_queue_xmit(skb);
395 
396 	ret = wait_for_completion_timeout(&mgmt_eth_data->rw_done,
397 					  msecs_to_jiffies(QCA8K_ETHERNET_TIMEOUT));
398 
399 	ack = mgmt_eth_data->ack;
400 
401 	mutex_unlock(&mgmt_eth_data->mutex);
402 
403 	if (ret <= 0)
404 		return -ETIMEDOUT;
405 
406 	if (!ack)
407 		return -EINVAL;
408 
409 	return 0;
410 }
411 
412 static int
qca8k_regmap_update_bits_eth(struct qca8k_priv * priv,u32 reg,u32 mask,u32 write_val)413 qca8k_regmap_update_bits_eth(struct qca8k_priv *priv, u32 reg, u32 mask, u32 write_val)
414 {
415 	u32 val = 0;
416 	int ret;
417 
418 	ret = qca8k_read_eth(priv, reg, &val, sizeof(val));
419 	if (ret)
420 		return ret;
421 
422 	val &= ~mask;
423 	val |= write_val;
424 
425 	return qca8k_write_eth(priv, reg, &val, sizeof(val));
426 }
427 
428 static int
qca8k_read_mii(struct qca8k_priv * priv,uint32_t reg,uint32_t * val)429 qca8k_read_mii(struct qca8k_priv *priv, uint32_t reg, uint32_t *val)
430 {
431 	struct mii_bus *bus = priv->bus;
432 	u16 r1, r2, page;
433 	int ret;
434 
435 	qca8k_split_addr(reg, &r1, &r2, &page);
436 
437 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
438 
439 	ret = qca8k_set_page(priv, page);
440 	if (ret < 0)
441 		goto exit;
442 
443 	ret = qca8k_mii_read32(bus, 0x10 | r2, r1, val);
444 
445 exit:
446 	mutex_unlock(&bus->mdio_lock);
447 	return ret;
448 }
449 
450 static int
qca8k_write_mii(struct qca8k_priv * priv,uint32_t reg,uint32_t val)451 qca8k_write_mii(struct qca8k_priv *priv, uint32_t reg, uint32_t val)
452 {
453 	struct mii_bus *bus = priv->bus;
454 	u16 r1, r2, page;
455 	int ret;
456 
457 	qca8k_split_addr(reg, &r1, &r2, &page);
458 
459 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
460 
461 	ret = qca8k_set_page(priv, page);
462 	if (ret < 0)
463 		goto exit;
464 
465 	qca8k_mii_write32(bus, 0x10 | r2, r1, val);
466 
467 exit:
468 	mutex_unlock(&bus->mdio_lock);
469 	return ret;
470 }
471 
472 static int
qca8k_regmap_update_bits_mii(struct qca8k_priv * priv,uint32_t reg,uint32_t mask,uint32_t write_val)473 qca8k_regmap_update_bits_mii(struct qca8k_priv *priv, uint32_t reg,
474 			     uint32_t mask, uint32_t write_val)
475 {
476 	struct mii_bus *bus = priv->bus;
477 	u16 r1, r2, page;
478 	u32 val;
479 	int ret;
480 
481 	qca8k_split_addr(reg, &r1, &r2, &page);
482 
483 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
484 
485 	ret = qca8k_set_page(priv, page);
486 	if (ret < 0)
487 		goto exit;
488 
489 	ret = qca8k_mii_read32(bus, 0x10 | r2, r1, &val);
490 	if (ret < 0)
491 		goto exit;
492 
493 	val &= ~mask;
494 	val |= write_val;
495 	qca8k_mii_write32(bus, 0x10 | r2, r1, val);
496 
497 exit:
498 	mutex_unlock(&bus->mdio_lock);
499 
500 	return ret;
501 }
502 
503 static int
qca8k_bulk_read(void * ctx,const void * reg_buf,size_t reg_len,void * val_buf,size_t val_len)504 qca8k_bulk_read(void *ctx, const void *reg_buf, size_t reg_len,
505 		void *val_buf, size_t val_len)
506 {
507 	int i, count = val_len / sizeof(u32), ret;
508 	struct qca8k_priv *priv = ctx;
509 	u32 reg = *(u16 *)reg_buf;
510 
511 	if (priv->mgmt_conduit &&
512 	    !qca8k_read_eth(priv, reg, val_buf, val_len))
513 		return 0;
514 
515 	/* loop count times and increment reg of 4 */
516 	for (i = 0; i < count; i++, reg += sizeof(u32)) {
517 		ret = qca8k_read_mii(priv, reg, val_buf + i);
518 		if (ret < 0)
519 			return ret;
520 	}
521 
522 	return 0;
523 }
524 
525 static int
qca8k_bulk_gather_write(void * ctx,const void * reg_buf,size_t reg_len,const void * val_buf,size_t val_len)526 qca8k_bulk_gather_write(void *ctx, const void *reg_buf, size_t reg_len,
527 			const void *val_buf, size_t val_len)
528 {
529 	int i, count = val_len / sizeof(u32), ret;
530 	struct qca8k_priv *priv = ctx;
531 	u32 reg = *(u16 *)reg_buf;
532 	u32 *val = (u32 *)val_buf;
533 
534 	if (priv->mgmt_conduit &&
535 	    !qca8k_write_eth(priv, reg, val, val_len))
536 		return 0;
537 
538 	/* loop count times, increment reg of 4 and increment val ptr to
539 	 * the next value
540 	 */
541 	for (i = 0; i < count; i++, reg += sizeof(u32), val++) {
542 		ret = qca8k_write_mii(priv, reg, *val);
543 		if (ret < 0)
544 			return ret;
545 	}
546 
547 	return 0;
548 }
549 
550 static int
qca8k_bulk_write(void * ctx,const void * data,size_t bytes)551 qca8k_bulk_write(void *ctx, const void *data, size_t bytes)
552 {
553 	return qca8k_bulk_gather_write(ctx, data, sizeof(u16), data + sizeof(u16),
554 				       bytes - sizeof(u16));
555 }
556 
557 static int
qca8k_regmap_update_bits(void * ctx,uint32_t reg,uint32_t mask,uint32_t write_val)558 qca8k_regmap_update_bits(void *ctx, uint32_t reg, uint32_t mask, uint32_t write_val)
559 {
560 	struct qca8k_priv *priv = ctx;
561 
562 	if (!qca8k_regmap_update_bits_eth(priv, reg, mask, write_val))
563 		return 0;
564 
565 	return qca8k_regmap_update_bits_mii(priv, reg, mask, write_val);
566 }
567 
568 static const struct regmap_config qca8k_regmap_config = {
569 	.reg_bits = 16,
570 	.val_bits = 32,
571 	.reg_stride = 4,
572 	.max_register = 0x16ac, /* end MIB - Port6 range */
573 	.read = qca8k_bulk_read,
574 	.write = qca8k_bulk_write,
575 	.reg_update_bits = qca8k_regmap_update_bits,
576 	.rd_table = &qca8k_readable_table,
577 	.disable_locking = true, /* Locking is handled by qca8k read/write */
578 	.cache_type = REGCACHE_NONE, /* Explicitly disable CACHE */
579 	.max_raw_read = 32, /* mgmt eth can read up to 8 registers at time */
580 	/* ATU regs suffer from a bug where some data are not correctly
581 	 * written. Disable bulk write to correctly write ATU entry.
582 	 */
583 	.use_single_write = true,
584 };
585 
586 static int
qca8k_phy_eth_busy_wait(struct qca8k_mgmt_eth_data * mgmt_eth_data,struct sk_buff * read_skb,u32 * val)587 qca8k_phy_eth_busy_wait(struct qca8k_mgmt_eth_data *mgmt_eth_data,
588 			struct sk_buff *read_skb, u32 *val)
589 {
590 	struct sk_buff *skb = skb_copy(read_skb, GFP_KERNEL);
591 	bool ack;
592 	int ret;
593 
594 	if (!skb)
595 		return -ENOMEM;
596 
597 	reinit_completion(&mgmt_eth_data->rw_done);
598 
599 	/* Increment seq_num and set it in the copy pkt */
600 	mgmt_eth_data->seq++;
601 	qca8k_mdio_header_fill_seq_num(skb, mgmt_eth_data->seq);
602 	mgmt_eth_data->ack = false;
603 
604 	dev_queue_xmit(skb);
605 
606 	ret = wait_for_completion_timeout(&mgmt_eth_data->rw_done,
607 					  QCA8K_ETHERNET_TIMEOUT);
608 
609 	ack = mgmt_eth_data->ack;
610 
611 	if (ret <= 0)
612 		return -ETIMEDOUT;
613 
614 	if (!ack)
615 		return -EINVAL;
616 
617 	*val = mgmt_eth_data->data[0];
618 
619 	return 0;
620 }
621 
622 static int
qca8k_phy_eth_command(struct qca8k_priv * priv,bool read,int phy,int regnum,u16 data)623 qca8k_phy_eth_command(struct qca8k_priv *priv, bool read, int phy,
624 		      int regnum, u16 data)
625 {
626 	struct sk_buff *write_skb, *clear_skb, *read_skb;
627 	struct qca8k_mgmt_eth_data *mgmt_eth_data;
628 	u32 write_val, clear_val = 0, val;
629 	struct net_device *mgmt_conduit;
630 	int ret, ret1;
631 	bool ack;
632 
633 	if (regnum >= QCA8K_MDIO_MASTER_MAX_REG)
634 		return -EINVAL;
635 
636 	mgmt_eth_data = &priv->mgmt_eth_data;
637 
638 	write_val = QCA8K_MDIO_MASTER_BUSY | QCA8K_MDIO_MASTER_EN |
639 		    QCA8K_MDIO_MASTER_PHY_ADDR(phy) |
640 		    QCA8K_MDIO_MASTER_REG_ADDR(regnum);
641 
642 	if (read) {
643 		write_val |= QCA8K_MDIO_MASTER_READ;
644 	} else {
645 		write_val |= QCA8K_MDIO_MASTER_WRITE;
646 		write_val |= QCA8K_MDIO_MASTER_DATA(data);
647 	}
648 
649 	/* Prealloc all the needed skb before the lock */
650 	write_skb = qca8k_alloc_mdio_header(MDIO_WRITE, QCA8K_MDIO_MASTER_CTRL, &write_val,
651 					    QCA8K_ETHERNET_PHY_PRIORITY, sizeof(write_val));
652 	if (!write_skb)
653 		return -ENOMEM;
654 
655 	clear_skb = qca8k_alloc_mdio_header(MDIO_WRITE, QCA8K_MDIO_MASTER_CTRL, &clear_val,
656 					    QCA8K_ETHERNET_PHY_PRIORITY, sizeof(clear_val));
657 	if (!clear_skb) {
658 		ret = -ENOMEM;
659 		goto err_clear_skb;
660 	}
661 
662 	read_skb = qca8k_alloc_mdio_header(MDIO_READ, QCA8K_MDIO_MASTER_CTRL, &clear_val,
663 					   QCA8K_ETHERNET_PHY_PRIORITY, sizeof(clear_val));
664 	if (!read_skb) {
665 		ret = -ENOMEM;
666 		goto err_read_skb;
667 	}
668 
669 	/* It seems that accessing the switch's internal PHYs via management
670 	 * packets still uses the MDIO bus within the switch internally, and
671 	 * these accesses can conflict with external MDIO accesses to other
672 	 * devices on the MDIO bus.
673 	 * We therefore need to lock the MDIO bus onto which the switch is
674 	 * connected.
675 	 */
676 	mutex_lock(&priv->bus->mdio_lock);
677 
678 	/* Actually start the request:
679 	 * 1. Send mdio master packet
680 	 * 2. Busy Wait for mdio master command
681 	 * 3. Get the data if we are reading
682 	 * 4. Reset the mdio master (even with error)
683 	 */
684 	mutex_lock(&mgmt_eth_data->mutex);
685 
686 	/* Check if mgmt_conduit is operational */
687 	mgmt_conduit = priv->mgmt_conduit;
688 	if (!mgmt_conduit) {
689 		mutex_unlock(&mgmt_eth_data->mutex);
690 		mutex_unlock(&priv->bus->mdio_lock);
691 		ret = -EINVAL;
692 		goto err_mgmt_conduit;
693 	}
694 
695 	read_skb->dev = mgmt_conduit;
696 	clear_skb->dev = mgmt_conduit;
697 	write_skb->dev = mgmt_conduit;
698 
699 	reinit_completion(&mgmt_eth_data->rw_done);
700 
701 	/* Increment seq_num and set it in the write pkt */
702 	mgmt_eth_data->seq++;
703 	qca8k_mdio_header_fill_seq_num(write_skb, mgmt_eth_data->seq);
704 	mgmt_eth_data->ack = false;
705 
706 	dev_queue_xmit(write_skb);
707 
708 	ret = wait_for_completion_timeout(&mgmt_eth_data->rw_done,
709 					  QCA8K_ETHERNET_TIMEOUT);
710 
711 	ack = mgmt_eth_data->ack;
712 
713 	if (ret <= 0) {
714 		ret = -ETIMEDOUT;
715 		kfree_skb(read_skb);
716 		goto exit;
717 	}
718 
719 	if (!ack) {
720 		ret = -EINVAL;
721 		kfree_skb(read_skb);
722 		goto exit;
723 	}
724 
725 	ret = read_poll_timeout(qca8k_phy_eth_busy_wait, ret1,
726 				!(val & QCA8K_MDIO_MASTER_BUSY), 0,
727 				QCA8K_BUSY_WAIT_TIMEOUT * USEC_PER_MSEC, false,
728 				mgmt_eth_data, read_skb, &val);
729 
730 	if (ret < 0 && ret1 < 0) {
731 		ret = ret1;
732 		goto exit;
733 	}
734 
735 	if (read) {
736 		reinit_completion(&mgmt_eth_data->rw_done);
737 
738 		/* Increment seq_num and set it in the read pkt */
739 		mgmt_eth_data->seq++;
740 		qca8k_mdio_header_fill_seq_num(read_skb, mgmt_eth_data->seq);
741 		mgmt_eth_data->ack = false;
742 
743 		dev_queue_xmit(read_skb);
744 
745 		ret = wait_for_completion_timeout(&mgmt_eth_data->rw_done,
746 						  QCA8K_ETHERNET_TIMEOUT);
747 
748 		ack = mgmt_eth_data->ack;
749 
750 		if (ret <= 0) {
751 			ret = -ETIMEDOUT;
752 			goto exit;
753 		}
754 
755 		if (!ack) {
756 			ret = -EINVAL;
757 			goto exit;
758 		}
759 
760 		ret = mgmt_eth_data->data[0] & QCA8K_MDIO_MASTER_DATA_MASK;
761 	} else {
762 		kfree_skb(read_skb);
763 	}
764 exit:
765 	reinit_completion(&mgmt_eth_data->rw_done);
766 
767 	/* Increment seq_num and set it in the clear pkt */
768 	mgmt_eth_data->seq++;
769 	qca8k_mdio_header_fill_seq_num(clear_skb, mgmt_eth_data->seq);
770 	mgmt_eth_data->ack = false;
771 
772 	dev_queue_xmit(clear_skb);
773 
774 	wait_for_completion_timeout(&mgmt_eth_data->rw_done,
775 				    QCA8K_ETHERNET_TIMEOUT);
776 
777 	mutex_unlock(&mgmt_eth_data->mutex);
778 	mutex_unlock(&priv->bus->mdio_lock);
779 
780 	return ret;
781 
782 	/* Error handling before lock */
783 err_mgmt_conduit:
784 	kfree_skb(read_skb);
785 err_read_skb:
786 	kfree_skb(clear_skb);
787 err_clear_skb:
788 	kfree_skb(write_skb);
789 
790 	return ret;
791 }
792 
793 static int
qca8k_mdio_busy_wait(struct mii_bus * bus,u32 reg,u32 mask)794 qca8k_mdio_busy_wait(struct mii_bus *bus, u32 reg, u32 mask)
795 {
796 	u16 r1, r2, page;
797 	u32 val;
798 	int ret, ret1;
799 
800 	qca8k_split_addr(reg, &r1, &r2, &page);
801 
802 	ret = read_poll_timeout(qca8k_mii_read_hi, ret1, !(val & mask), 0,
803 				QCA8K_BUSY_WAIT_TIMEOUT * USEC_PER_MSEC, false,
804 				bus, 0x10 | r2, r1 + 1, &val);
805 
806 	/* Check if qca8k_read has failed for a different reason
807 	 * before returnting -ETIMEDOUT
808 	 */
809 	if (ret < 0 && ret1 < 0)
810 		return ret1;
811 
812 	return ret;
813 }
814 
815 static int
qca8k_mdio_write(struct qca8k_priv * priv,int phy,int regnum,u16 data)816 qca8k_mdio_write(struct qca8k_priv *priv, int phy, int regnum, u16 data)
817 {
818 	struct mii_bus *bus = priv->bus;
819 	u16 r1, r2, page;
820 	u32 val;
821 	int ret;
822 
823 	if (regnum >= QCA8K_MDIO_MASTER_MAX_REG)
824 		return -EINVAL;
825 
826 	val = QCA8K_MDIO_MASTER_BUSY | QCA8K_MDIO_MASTER_EN |
827 	      QCA8K_MDIO_MASTER_WRITE | QCA8K_MDIO_MASTER_PHY_ADDR(phy) |
828 	      QCA8K_MDIO_MASTER_REG_ADDR(regnum) |
829 	      QCA8K_MDIO_MASTER_DATA(data);
830 
831 	qca8k_split_addr(QCA8K_MDIO_MASTER_CTRL, &r1, &r2, &page);
832 
833 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
834 
835 	ret = qca8k_set_page(priv, page);
836 	if (ret)
837 		goto exit;
838 
839 	qca8k_mii_write32(bus, 0x10 | r2, r1, val);
840 
841 	ret = qca8k_mdio_busy_wait(bus, QCA8K_MDIO_MASTER_CTRL,
842 				   QCA8K_MDIO_MASTER_BUSY);
843 
844 exit:
845 	/* even if the busy_wait timeouts try to clear the MASTER_EN */
846 	qca8k_mii_write_hi(bus, 0x10 | r2, r1 + 1, 0);
847 
848 	mutex_unlock(&bus->mdio_lock);
849 
850 	return ret;
851 }
852 
853 static int
qca8k_mdio_read(struct qca8k_priv * priv,int phy,int regnum)854 qca8k_mdio_read(struct qca8k_priv *priv, int phy, int regnum)
855 {
856 	struct mii_bus *bus = priv->bus;
857 	u16 r1, r2, page;
858 	u32 val;
859 	int ret;
860 
861 	if (regnum >= QCA8K_MDIO_MASTER_MAX_REG)
862 		return -EINVAL;
863 
864 	val = QCA8K_MDIO_MASTER_BUSY | QCA8K_MDIO_MASTER_EN |
865 	      QCA8K_MDIO_MASTER_READ | QCA8K_MDIO_MASTER_PHY_ADDR(phy) |
866 	      QCA8K_MDIO_MASTER_REG_ADDR(regnum);
867 
868 	qca8k_split_addr(QCA8K_MDIO_MASTER_CTRL, &r1, &r2, &page);
869 
870 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
871 
872 	ret = qca8k_set_page(priv, page);
873 	if (ret)
874 		goto exit;
875 
876 	qca8k_mii_write_hi(bus, 0x10 | r2, r1 + 1, val);
877 
878 	ret = qca8k_mdio_busy_wait(bus, QCA8K_MDIO_MASTER_CTRL,
879 				   QCA8K_MDIO_MASTER_BUSY);
880 	if (ret)
881 		goto exit;
882 
883 	ret = qca8k_mii_read_lo(bus, 0x10 | r2, r1, &val);
884 
885 exit:
886 	/* even if the busy_wait timeouts try to clear the MASTER_EN */
887 	qca8k_mii_write_hi(bus, 0x10 | r2, r1 + 1, 0);
888 
889 	mutex_unlock(&bus->mdio_lock);
890 
891 	if (ret >= 0)
892 		ret = val & QCA8K_MDIO_MASTER_DATA_MASK;
893 
894 	return ret;
895 }
896 
897 static int
qca8k_internal_mdio_write(struct mii_bus * slave_bus,int phy,int regnum,u16 data)898 qca8k_internal_mdio_write(struct mii_bus *slave_bus, int phy, int regnum, u16 data)
899 {
900 	struct qca8k_priv *priv = slave_bus->priv;
901 	int ret;
902 
903 	/* Use mdio Ethernet when available, fallback to legacy one on error */
904 	ret = qca8k_phy_eth_command(priv, false, phy, regnum, data);
905 	if (!ret)
906 		return 0;
907 
908 	return qca8k_mdio_write(priv, phy, regnum, data);
909 }
910 
911 static int
qca8k_internal_mdio_read(struct mii_bus * slave_bus,int phy,int regnum)912 qca8k_internal_mdio_read(struct mii_bus *slave_bus, int phy, int regnum)
913 {
914 	struct qca8k_priv *priv = slave_bus->priv;
915 	int ret;
916 
917 	/* Use mdio Ethernet when available, fallback to legacy one on error */
918 	ret = qca8k_phy_eth_command(priv, true, phy, regnum, 0);
919 	if (ret >= 0)
920 		return ret;
921 
922 	ret = qca8k_mdio_read(priv, phy, regnum);
923 
924 	if (ret < 0)
925 		return 0xffff;
926 
927 	return ret;
928 }
929 
930 static int
qca8k_legacy_mdio_write(struct mii_bus * slave_bus,int port,int regnum,u16 data)931 qca8k_legacy_mdio_write(struct mii_bus *slave_bus, int port, int regnum, u16 data)
932 {
933 	port = qca8k_port_to_phy(port) % PHY_MAX_ADDR;
934 
935 	return qca8k_internal_mdio_write(slave_bus, port, regnum, data);
936 }
937 
938 static int
qca8k_legacy_mdio_read(struct mii_bus * slave_bus,int port,int regnum)939 qca8k_legacy_mdio_read(struct mii_bus *slave_bus, int port, int regnum)
940 {
941 	port = qca8k_port_to_phy(port) % PHY_MAX_ADDR;
942 
943 	return qca8k_internal_mdio_read(slave_bus, port, regnum);
944 }
945 
946 static int
qca8k_mdio_register(struct qca8k_priv * priv)947 qca8k_mdio_register(struct qca8k_priv *priv)
948 {
949 	struct dsa_switch *ds = priv->ds;
950 	struct device *dev = ds->dev;
951 	struct device_node *mdio;
952 	struct mii_bus *bus;
953 	int ret = 0;
954 
955 	mdio = of_get_child_by_name(dev->of_node, "mdio");
956 	if (mdio && !of_device_is_available(mdio))
957 		goto out_put_node;
958 
959 	bus = devm_mdiobus_alloc(dev);
960 	if (!bus) {
961 		ret = -ENOMEM;
962 		goto out_put_node;
963 	}
964 
965 	priv->internal_mdio_bus = bus;
966 	bus->priv = (void *)priv;
967 	snprintf(bus->id, MII_BUS_ID_SIZE, "qca8k-%d.%d",
968 		 ds->dst->index, ds->index);
969 	bus->parent = dev;
970 
971 	if (mdio) {
972 		/* Check if the device tree declares the port:phy mapping */
973 		bus->name = "qca8k user mii";
974 		bus->read = qca8k_internal_mdio_read;
975 		bus->write = qca8k_internal_mdio_write;
976 	} else {
977 		/* If a mapping can't be found, the legacy mapping is used,
978 		 * using qca8k_port_to_phy()
979 		 */
980 		ds->user_mii_bus = bus;
981 		bus->phy_mask = ~ds->phys_mii_mask;
982 		bus->name = "qca8k-legacy user mii";
983 		bus->read = qca8k_legacy_mdio_read;
984 		bus->write = qca8k_legacy_mdio_write;
985 	}
986 
987 	ret = devm_of_mdiobus_register(dev, bus, mdio);
988 
989 out_put_node:
990 	of_node_put(mdio);
991 	return ret;
992 }
993 
994 static int
qca8k_setup_mdio_bus(struct qca8k_priv * priv)995 qca8k_setup_mdio_bus(struct qca8k_priv *priv)
996 {
997 	u32 internal_mdio_mask = 0, external_mdio_mask = 0, reg;
998 	struct device_node *ports, *port;
999 	phy_interface_t mode;
1000 	int ret;
1001 
1002 	ports = of_get_child_by_name(priv->dev->of_node, "ports");
1003 	if (!ports)
1004 		ports = of_get_child_by_name(priv->dev->of_node, "ethernet-ports");
1005 
1006 	if (!ports)
1007 		return -EINVAL;
1008 
1009 	for_each_available_child_of_node(ports, port) {
1010 		ret = of_property_read_u32(port, "reg", &reg);
1011 		if (ret) {
1012 			of_node_put(port);
1013 			of_node_put(ports);
1014 			return ret;
1015 		}
1016 
1017 		if (!dsa_is_user_port(priv->ds, reg))
1018 			continue;
1019 
1020 		of_get_phy_mode(port, &mode);
1021 
1022 		if (of_property_read_bool(port, "phy-handle") &&
1023 		    mode != PHY_INTERFACE_MODE_INTERNAL)
1024 			external_mdio_mask |= BIT(reg);
1025 		else
1026 			internal_mdio_mask |= BIT(reg);
1027 	}
1028 
1029 	of_node_put(ports);
1030 	if (!external_mdio_mask && !internal_mdio_mask) {
1031 		dev_err(priv->dev, "no PHYs are defined.\n");
1032 		return -EINVAL;
1033 	}
1034 
1035 	/* The QCA8K_MDIO_MASTER_EN Bit, which grants access to PHYs through
1036 	 * the MDIO_MASTER register also _disconnects_ the external MDC
1037 	 * passthrough to the internal PHYs. It's not possible to use both
1038 	 * configurations at the same time!
1039 	 *
1040 	 * Because this came up during the review process:
1041 	 * If the external mdio-bus driver is capable magically disabling
1042 	 * the QCA8K_MDIO_MASTER_EN and mutex/spin-locking out the qca8k's
1043 	 * accessors for the time being, it would be possible to pull this
1044 	 * off.
1045 	 */
1046 	if (!!external_mdio_mask && !!internal_mdio_mask) {
1047 		dev_err(priv->dev, "either internal or external mdio bus configuration is supported.\n");
1048 		return -EINVAL;
1049 	}
1050 
1051 	if (external_mdio_mask) {
1052 		/* Make sure to disable the internal mdio bus in cases
1053 		 * a dt-overlay and driver reload changed the configuration
1054 		 */
1055 
1056 		return regmap_clear_bits(priv->regmap, QCA8K_MDIO_MASTER_CTRL,
1057 					 QCA8K_MDIO_MASTER_EN);
1058 	}
1059 
1060 	return qca8k_mdio_register(priv);
1061 }
1062 
1063 static int
qca8k_setup_mac_pwr_sel(struct qca8k_priv * priv)1064 qca8k_setup_mac_pwr_sel(struct qca8k_priv *priv)
1065 {
1066 	u32 mask = 0;
1067 	int ret = 0;
1068 
1069 	/* SoC specific settings for ipq8064.
1070 	 * If more device require this consider adding
1071 	 * a dedicated binding.
1072 	 */
1073 	if (of_machine_is_compatible("qcom,ipq8064"))
1074 		mask |= QCA8K_MAC_PWR_RGMII0_1_8V;
1075 
1076 	/* SoC specific settings for ipq8065 */
1077 	if (of_machine_is_compatible("qcom,ipq8065"))
1078 		mask |= QCA8K_MAC_PWR_RGMII1_1_8V;
1079 
1080 	if (mask) {
1081 		ret = qca8k_rmw(priv, QCA8K_REG_MAC_PWR_SEL,
1082 				QCA8K_MAC_PWR_RGMII0_1_8V |
1083 				QCA8K_MAC_PWR_RGMII1_1_8V,
1084 				mask);
1085 	}
1086 
1087 	return ret;
1088 }
1089 
qca8k_find_cpu_port(struct dsa_switch * ds)1090 static int qca8k_find_cpu_port(struct dsa_switch *ds)
1091 {
1092 	struct qca8k_priv *priv = ds->priv;
1093 
1094 	/* Find the connected cpu port. Valid port are 0 or 6 */
1095 	if (dsa_is_cpu_port(ds, 0))
1096 		return 0;
1097 
1098 	dev_dbg(priv->dev, "port 0 is not the CPU port. Checking port 6");
1099 
1100 	if (dsa_is_cpu_port(ds, 6))
1101 		return 6;
1102 
1103 	return -EINVAL;
1104 }
1105 
1106 static int
qca8k_setup_of_pws_reg(struct qca8k_priv * priv)1107 qca8k_setup_of_pws_reg(struct qca8k_priv *priv)
1108 {
1109 	const struct qca8k_match_data *data = priv->info;
1110 	struct device_node *node = priv->dev->of_node;
1111 	u32 val = 0;
1112 	int ret;
1113 
1114 	/* QCA8327 require to set to the correct mode.
1115 	 * His bigger brother QCA8328 have the 172 pin layout.
1116 	 * Should be applied by default but we set this just to make sure.
1117 	 */
1118 	if (priv->switch_id == QCA8K_ID_QCA8327) {
1119 		/* Set the correct package of 148 pin for QCA8327 */
1120 		if (data->reduced_package)
1121 			val |= QCA8327_PWS_PACKAGE148_EN;
1122 
1123 		ret = qca8k_rmw(priv, QCA8K_REG_PWS, QCA8327_PWS_PACKAGE148_EN,
1124 				val);
1125 		if (ret)
1126 			return ret;
1127 	}
1128 
1129 	if (of_property_read_bool(node, "qca,ignore-power-on-sel"))
1130 		val |= QCA8K_PWS_POWER_ON_SEL;
1131 
1132 	if (of_property_read_bool(node, "qca,led-open-drain")) {
1133 		if (!(val & QCA8K_PWS_POWER_ON_SEL)) {
1134 			dev_err(priv->dev, "qca,led-open-drain require qca,ignore-power-on-sel to be set.");
1135 			return -EINVAL;
1136 		}
1137 
1138 		val |= QCA8K_PWS_LED_OPEN_EN_CSR;
1139 	}
1140 
1141 	return qca8k_rmw(priv, QCA8K_REG_PWS,
1142 			QCA8K_PWS_LED_OPEN_EN_CSR | QCA8K_PWS_POWER_ON_SEL,
1143 			val);
1144 }
1145 
1146 static int
qca8k_parse_port_config(struct qca8k_priv * priv)1147 qca8k_parse_port_config(struct qca8k_priv *priv)
1148 {
1149 	int port, cpu_port_index = -1, ret;
1150 	struct device_node *port_dn;
1151 	phy_interface_t mode;
1152 	struct dsa_port *dp;
1153 	u32 delay;
1154 
1155 	/* We have 2 CPU port. Check them */
1156 	for (port = 0; port < QCA8K_NUM_PORTS; port++) {
1157 		/* Skip every other port */
1158 		if (port != 0 && port != 6)
1159 			continue;
1160 
1161 		dp = dsa_to_port(priv->ds, port);
1162 		port_dn = dp->dn;
1163 		cpu_port_index++;
1164 
1165 		if (!of_device_is_available(port_dn))
1166 			continue;
1167 
1168 		ret = of_get_phy_mode(port_dn, &mode);
1169 		if (ret)
1170 			continue;
1171 
1172 		switch (mode) {
1173 		case PHY_INTERFACE_MODE_RGMII:
1174 		case PHY_INTERFACE_MODE_RGMII_ID:
1175 		case PHY_INTERFACE_MODE_RGMII_TXID:
1176 		case PHY_INTERFACE_MODE_RGMII_RXID:
1177 		case PHY_INTERFACE_MODE_SGMII:
1178 			delay = 0;
1179 
1180 			if (!of_property_read_u32(port_dn, "tx-internal-delay-ps", &delay))
1181 				/* Switch regs accept value in ns, convert ps to ns */
1182 				delay = delay / 1000;
1183 			else if (mode == PHY_INTERFACE_MODE_RGMII_ID ||
1184 				 mode == PHY_INTERFACE_MODE_RGMII_TXID)
1185 				delay = 1;
1186 
1187 			if (!FIELD_FIT(QCA8K_PORT_PAD_RGMII_TX_DELAY_MASK, delay)) {
1188 				dev_err(priv->dev, "rgmii tx delay is limited to a max value of 3ns, setting to the max value");
1189 				delay = 3;
1190 			}
1191 
1192 			priv->ports_config.rgmii_tx_delay[cpu_port_index] = delay;
1193 
1194 			delay = 0;
1195 
1196 			if (!of_property_read_u32(port_dn, "rx-internal-delay-ps", &delay))
1197 				/* Switch regs accept value in ns, convert ps to ns */
1198 				delay = delay / 1000;
1199 			else if (mode == PHY_INTERFACE_MODE_RGMII_ID ||
1200 				 mode == PHY_INTERFACE_MODE_RGMII_RXID)
1201 				delay = 2;
1202 
1203 			if (!FIELD_FIT(QCA8K_PORT_PAD_RGMII_RX_DELAY_MASK, delay)) {
1204 				dev_err(priv->dev, "rgmii rx delay is limited to a max value of 3ns, setting to the max value");
1205 				delay = 3;
1206 			}
1207 
1208 			priv->ports_config.rgmii_rx_delay[cpu_port_index] = delay;
1209 
1210 			/* Skip sgmii parsing for rgmii* mode */
1211 			if (mode == PHY_INTERFACE_MODE_RGMII ||
1212 			    mode == PHY_INTERFACE_MODE_RGMII_ID ||
1213 			    mode == PHY_INTERFACE_MODE_RGMII_TXID ||
1214 			    mode == PHY_INTERFACE_MODE_RGMII_RXID)
1215 				break;
1216 
1217 			if (of_property_read_bool(port_dn, "qca,sgmii-txclk-falling-edge"))
1218 				priv->ports_config.sgmii_tx_clk_falling_edge = true;
1219 
1220 			if (of_property_read_bool(port_dn, "qca,sgmii-rxclk-falling-edge"))
1221 				priv->ports_config.sgmii_rx_clk_falling_edge = true;
1222 
1223 			if (of_property_read_bool(port_dn, "qca,sgmii-enable-pll")) {
1224 				priv->ports_config.sgmii_enable_pll = true;
1225 
1226 				if (priv->switch_id == QCA8K_ID_QCA8327) {
1227 					dev_err(priv->dev, "SGMII PLL should NOT be enabled for qca8327. Aborting enabling");
1228 					priv->ports_config.sgmii_enable_pll = false;
1229 				}
1230 
1231 				if (priv->switch_revision < 2)
1232 					dev_warn(priv->dev, "SGMII PLL should NOT be enabled for qca8337 with revision 2 or more.");
1233 			}
1234 
1235 			break;
1236 		default:
1237 			continue;
1238 		}
1239 	}
1240 
1241 	return 0;
1242 }
1243 
1244 static void
qca8k_mac_config_setup_internal_delay(struct qca8k_priv * priv,int cpu_port_index,u32 reg)1245 qca8k_mac_config_setup_internal_delay(struct qca8k_priv *priv, int cpu_port_index,
1246 				      u32 reg)
1247 {
1248 	u32 delay, val = 0;
1249 	int ret;
1250 
1251 	/* Delay can be declared in 3 different way.
1252 	 * Mode to rgmii and internal-delay standard binding defined
1253 	 * rgmii-id or rgmii-tx/rx phy mode set.
1254 	 * The parse logic set a delay different than 0 only when one
1255 	 * of the 3 different way is used. In all other case delay is
1256 	 * not enabled. With ID or TX/RXID delay is enabled and set
1257 	 * to the default and recommended value.
1258 	 */
1259 	if (priv->ports_config.rgmii_tx_delay[cpu_port_index]) {
1260 		delay = priv->ports_config.rgmii_tx_delay[cpu_port_index];
1261 
1262 		val |= QCA8K_PORT_PAD_RGMII_TX_DELAY(delay) |
1263 			QCA8K_PORT_PAD_RGMII_TX_DELAY_EN;
1264 	}
1265 
1266 	if (priv->ports_config.rgmii_rx_delay[cpu_port_index]) {
1267 		delay = priv->ports_config.rgmii_rx_delay[cpu_port_index];
1268 
1269 		val |= QCA8K_PORT_PAD_RGMII_RX_DELAY(delay) |
1270 			QCA8K_PORT_PAD_RGMII_RX_DELAY_EN;
1271 	}
1272 
1273 	/* Set RGMII delay based on the selected values */
1274 	ret = qca8k_rmw(priv, reg,
1275 			QCA8K_PORT_PAD_RGMII_TX_DELAY_MASK |
1276 			QCA8K_PORT_PAD_RGMII_RX_DELAY_MASK |
1277 			QCA8K_PORT_PAD_RGMII_TX_DELAY_EN |
1278 			QCA8K_PORT_PAD_RGMII_RX_DELAY_EN,
1279 			val);
1280 	if (ret)
1281 		dev_err(priv->dev, "Failed to set internal delay for CPU port%d",
1282 			cpu_port_index == QCA8K_CPU_PORT0 ? 0 : 6);
1283 }
1284 
1285 static struct phylink_pcs *
qca8k_phylink_mac_select_pcs(struct phylink_config * config,phy_interface_t interface)1286 qca8k_phylink_mac_select_pcs(struct phylink_config *config,
1287 			     phy_interface_t interface)
1288 {
1289 	struct dsa_port *dp = dsa_phylink_to_port(config);
1290 	struct qca8k_priv *priv = dp->ds->priv;
1291 	struct phylink_pcs *pcs = NULL;
1292 	int port = dp->index;
1293 
1294 	switch (interface) {
1295 	case PHY_INTERFACE_MODE_SGMII:
1296 	case PHY_INTERFACE_MODE_1000BASEX:
1297 		switch (port) {
1298 		case 0:
1299 			pcs = &priv->pcs_port_0.pcs;
1300 			break;
1301 
1302 		case 6:
1303 			pcs = &priv->pcs_port_6.pcs;
1304 			break;
1305 		}
1306 		break;
1307 
1308 	default:
1309 		break;
1310 	}
1311 
1312 	return pcs;
1313 }
1314 
1315 static void
qca8k_phylink_mac_config(struct phylink_config * config,unsigned int mode,const struct phylink_link_state * state)1316 qca8k_phylink_mac_config(struct phylink_config *config, unsigned int mode,
1317 			 const struct phylink_link_state *state)
1318 {
1319 	struct dsa_port *dp = dsa_phylink_to_port(config);
1320 	struct dsa_switch *ds = dp->ds;
1321 	struct qca8k_priv *priv;
1322 	int port = dp->index;
1323 	int cpu_port_index;
1324 	u32 reg;
1325 
1326 	priv = ds->priv;
1327 
1328 	switch (port) {
1329 	case 0: /* 1st CPU port */
1330 		if (state->interface != PHY_INTERFACE_MODE_RGMII &&
1331 		    state->interface != PHY_INTERFACE_MODE_RGMII_ID &&
1332 		    state->interface != PHY_INTERFACE_MODE_RGMII_TXID &&
1333 		    state->interface != PHY_INTERFACE_MODE_RGMII_RXID &&
1334 		    state->interface != PHY_INTERFACE_MODE_SGMII)
1335 			return;
1336 
1337 		reg = QCA8K_REG_PORT0_PAD_CTRL;
1338 		cpu_port_index = QCA8K_CPU_PORT0;
1339 		break;
1340 	case 1:
1341 	case 2:
1342 	case 3:
1343 	case 4:
1344 	case 5:
1345 		/* Internal PHY, nothing to do */
1346 		return;
1347 	case 6: /* 2nd CPU port / external PHY */
1348 		if (state->interface != PHY_INTERFACE_MODE_RGMII &&
1349 		    state->interface != PHY_INTERFACE_MODE_RGMII_ID &&
1350 		    state->interface != PHY_INTERFACE_MODE_RGMII_TXID &&
1351 		    state->interface != PHY_INTERFACE_MODE_RGMII_RXID &&
1352 		    state->interface != PHY_INTERFACE_MODE_SGMII &&
1353 		    state->interface != PHY_INTERFACE_MODE_1000BASEX)
1354 			return;
1355 
1356 		reg = QCA8K_REG_PORT6_PAD_CTRL;
1357 		cpu_port_index = QCA8K_CPU_PORT6;
1358 		break;
1359 	default:
1360 		dev_err(ds->dev, "%s: unsupported port: %i\n", __func__, port);
1361 		return;
1362 	}
1363 
1364 	if (port != 6 && phylink_autoneg_inband(mode)) {
1365 		dev_err(ds->dev, "%s: in-band negotiation unsupported\n",
1366 			__func__);
1367 		return;
1368 	}
1369 
1370 	switch (state->interface) {
1371 	case PHY_INTERFACE_MODE_RGMII:
1372 	case PHY_INTERFACE_MODE_RGMII_ID:
1373 	case PHY_INTERFACE_MODE_RGMII_TXID:
1374 	case PHY_INTERFACE_MODE_RGMII_RXID:
1375 		qca8k_write(priv, reg, QCA8K_PORT_PAD_RGMII_EN);
1376 
1377 		/* Configure rgmii delay */
1378 		qca8k_mac_config_setup_internal_delay(priv, cpu_port_index, reg);
1379 
1380 		/* QCA8337 requires to set rgmii rx delay for all ports.
1381 		 * This is enabled through PORT5_PAD_CTRL for all ports,
1382 		 * rather than individual port registers.
1383 		 */
1384 		if (priv->switch_id == QCA8K_ID_QCA8337)
1385 			qca8k_write(priv, QCA8K_REG_PORT5_PAD_CTRL,
1386 				    QCA8K_PORT_PAD_RGMII_RX_DELAY_EN);
1387 		break;
1388 	case PHY_INTERFACE_MODE_SGMII:
1389 	case PHY_INTERFACE_MODE_1000BASEX:
1390 		/* Enable SGMII on the port */
1391 		qca8k_write(priv, reg, QCA8K_PORT_PAD_SGMII_EN);
1392 		break;
1393 	default:
1394 		dev_err(ds->dev, "xMII mode %s not supported for port %d\n",
1395 			phy_modes(state->interface), port);
1396 		return;
1397 	}
1398 }
1399 
qca8k_phylink_get_caps(struct dsa_switch * ds,int port,struct phylink_config * config)1400 static void qca8k_phylink_get_caps(struct dsa_switch *ds, int port,
1401 				   struct phylink_config *config)
1402 {
1403 	switch (port) {
1404 	case 0: /* 1st CPU port */
1405 		phy_interface_set_rgmii(config->supported_interfaces);
1406 		__set_bit(PHY_INTERFACE_MODE_SGMII,
1407 			  config->supported_interfaces);
1408 		break;
1409 
1410 	case 1:
1411 	case 2:
1412 	case 3:
1413 	case 4:
1414 	case 5:
1415 		/* Internal PHY */
1416 		__set_bit(PHY_INTERFACE_MODE_GMII,
1417 			  config->supported_interfaces);
1418 		__set_bit(PHY_INTERFACE_MODE_INTERNAL,
1419 			  config->supported_interfaces);
1420 		break;
1421 
1422 	case 6: /* 2nd CPU port / external PHY */
1423 		phy_interface_set_rgmii(config->supported_interfaces);
1424 		__set_bit(PHY_INTERFACE_MODE_SGMII,
1425 			  config->supported_interfaces);
1426 		__set_bit(PHY_INTERFACE_MODE_1000BASEX,
1427 			  config->supported_interfaces);
1428 		break;
1429 	}
1430 
1431 	config->mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE |
1432 		MAC_10 | MAC_100 | MAC_1000FD;
1433 }
1434 
1435 static void
qca8k_phylink_mac_link_down(struct phylink_config * config,unsigned int mode,phy_interface_t interface)1436 qca8k_phylink_mac_link_down(struct phylink_config *config, unsigned int mode,
1437 			    phy_interface_t interface)
1438 {
1439 	struct dsa_port *dp = dsa_phylink_to_port(config);
1440 	struct qca8k_priv *priv = dp->ds->priv;
1441 
1442 	qca8k_port_set_status(priv, dp->index, 0);
1443 }
1444 
1445 static void
qca8k_phylink_mac_link_up(struct phylink_config * config,struct phy_device * phydev,unsigned int mode,phy_interface_t interface,int speed,int duplex,bool tx_pause,bool rx_pause)1446 qca8k_phylink_mac_link_up(struct phylink_config *config,
1447 			  struct phy_device *phydev, unsigned int mode,
1448 			  phy_interface_t interface, int speed, int duplex,
1449 			  bool tx_pause, bool rx_pause)
1450 {
1451 	struct dsa_port *dp = dsa_phylink_to_port(config);
1452 	struct qca8k_priv *priv = dp->ds->priv;
1453 	int port = dp->index;
1454 	u32 reg;
1455 
1456 	if (phylink_autoneg_inband(mode)) {
1457 		reg = QCA8K_PORT_STATUS_LINK_AUTO;
1458 	} else {
1459 		switch (speed) {
1460 		case SPEED_10:
1461 			reg = QCA8K_PORT_STATUS_SPEED_10;
1462 			break;
1463 		case SPEED_100:
1464 			reg = QCA8K_PORT_STATUS_SPEED_100;
1465 			break;
1466 		case SPEED_1000:
1467 			reg = QCA8K_PORT_STATUS_SPEED_1000;
1468 			break;
1469 		default:
1470 			reg = QCA8K_PORT_STATUS_LINK_AUTO;
1471 			break;
1472 		}
1473 
1474 		if (duplex == DUPLEX_FULL)
1475 			reg |= QCA8K_PORT_STATUS_DUPLEX;
1476 
1477 		if (rx_pause || dsa_port_is_cpu(dp))
1478 			reg |= QCA8K_PORT_STATUS_RXFLOW;
1479 
1480 		if (tx_pause || dsa_port_is_cpu(dp))
1481 			reg |= QCA8K_PORT_STATUS_TXFLOW;
1482 	}
1483 
1484 	reg |= QCA8K_PORT_STATUS_TXMAC | QCA8K_PORT_STATUS_RXMAC;
1485 
1486 	qca8k_write(priv, QCA8K_REG_PORT_STATUS(port), reg);
1487 }
1488 
pcs_to_qca8k_pcs(struct phylink_pcs * pcs)1489 static struct qca8k_pcs *pcs_to_qca8k_pcs(struct phylink_pcs *pcs)
1490 {
1491 	return container_of(pcs, struct qca8k_pcs, pcs);
1492 }
1493 
qca8k_pcs_get_state(struct phylink_pcs * pcs,struct phylink_link_state * state)1494 static void qca8k_pcs_get_state(struct phylink_pcs *pcs,
1495 				struct phylink_link_state *state)
1496 {
1497 	struct qca8k_priv *priv = pcs_to_qca8k_pcs(pcs)->priv;
1498 	int port = pcs_to_qca8k_pcs(pcs)->port;
1499 	u32 reg;
1500 	int ret;
1501 
1502 	ret = qca8k_read(priv, QCA8K_REG_PORT_STATUS(port), &reg);
1503 	if (ret < 0) {
1504 		state->link = false;
1505 		return;
1506 	}
1507 
1508 	state->link = !!(reg & QCA8K_PORT_STATUS_LINK_UP);
1509 	state->an_complete = state->link;
1510 	state->duplex = (reg & QCA8K_PORT_STATUS_DUPLEX) ? DUPLEX_FULL :
1511 							   DUPLEX_HALF;
1512 
1513 	switch (reg & QCA8K_PORT_STATUS_SPEED) {
1514 	case QCA8K_PORT_STATUS_SPEED_10:
1515 		state->speed = SPEED_10;
1516 		break;
1517 	case QCA8K_PORT_STATUS_SPEED_100:
1518 		state->speed = SPEED_100;
1519 		break;
1520 	case QCA8K_PORT_STATUS_SPEED_1000:
1521 		state->speed = SPEED_1000;
1522 		break;
1523 	default:
1524 		state->speed = SPEED_UNKNOWN;
1525 		break;
1526 	}
1527 
1528 	if (reg & QCA8K_PORT_STATUS_RXFLOW)
1529 		state->pause |= MLO_PAUSE_RX;
1530 	if (reg & QCA8K_PORT_STATUS_TXFLOW)
1531 		state->pause |= MLO_PAUSE_TX;
1532 }
1533 
qca8k_pcs_config(struct phylink_pcs * pcs,unsigned int neg_mode,phy_interface_t interface,const unsigned long * advertising,bool permit_pause_to_mac)1534 static int qca8k_pcs_config(struct phylink_pcs *pcs, unsigned int neg_mode,
1535 			    phy_interface_t interface,
1536 			    const unsigned long *advertising,
1537 			    bool permit_pause_to_mac)
1538 {
1539 	struct qca8k_priv *priv = pcs_to_qca8k_pcs(pcs)->priv;
1540 	int cpu_port_index, ret, port;
1541 	u32 reg, val;
1542 
1543 	port = pcs_to_qca8k_pcs(pcs)->port;
1544 	switch (port) {
1545 	case 0:
1546 		reg = QCA8K_REG_PORT0_PAD_CTRL;
1547 		cpu_port_index = QCA8K_CPU_PORT0;
1548 		break;
1549 
1550 	case 6:
1551 		reg = QCA8K_REG_PORT6_PAD_CTRL;
1552 		cpu_port_index = QCA8K_CPU_PORT6;
1553 		break;
1554 
1555 	default:
1556 		WARN_ON(1);
1557 		return -EINVAL;
1558 	}
1559 
1560 	/* Enable/disable SerDes auto-negotiation as necessary */
1561 	val = neg_mode == PHYLINK_PCS_NEG_INBAND_ENABLED ?
1562 		0 : QCA8K_PWS_SERDES_AEN_DIS;
1563 
1564 	ret = qca8k_rmw(priv, QCA8K_REG_PWS, QCA8K_PWS_SERDES_AEN_DIS, val);
1565 	if (ret)
1566 		return ret;
1567 
1568 	/* Configure the SGMII parameters */
1569 	ret = qca8k_read(priv, QCA8K_REG_SGMII_CTRL, &val);
1570 	if (ret)
1571 		return ret;
1572 
1573 	val |= QCA8K_SGMII_EN_SD;
1574 
1575 	if (priv->ports_config.sgmii_enable_pll)
1576 		val |= QCA8K_SGMII_EN_PLL | QCA8K_SGMII_EN_RX |
1577 		       QCA8K_SGMII_EN_TX;
1578 
1579 	if (dsa_is_cpu_port(priv->ds, port)) {
1580 		/* CPU port, we're talking to the CPU MAC, be a PHY */
1581 		val &= ~QCA8K_SGMII_MODE_CTRL_MASK;
1582 		val |= QCA8K_SGMII_MODE_CTRL_PHY;
1583 	} else if (interface == PHY_INTERFACE_MODE_SGMII) {
1584 		val &= ~QCA8K_SGMII_MODE_CTRL_MASK;
1585 		val |= QCA8K_SGMII_MODE_CTRL_MAC;
1586 	} else if (interface == PHY_INTERFACE_MODE_1000BASEX) {
1587 		val &= ~QCA8K_SGMII_MODE_CTRL_MASK;
1588 		val |= QCA8K_SGMII_MODE_CTRL_BASEX;
1589 	}
1590 
1591 	qca8k_write(priv, QCA8K_REG_SGMII_CTRL, val);
1592 
1593 	/* From original code is reported port instability as SGMII also
1594 	 * require delay set. Apply advised values here or take them from DT.
1595 	 */
1596 	if (interface == PHY_INTERFACE_MODE_SGMII)
1597 		qca8k_mac_config_setup_internal_delay(priv, cpu_port_index, reg);
1598 	/* For qca8327/qca8328/qca8334/qca8338 sgmii is unique and
1599 	 * falling edge is set writing in the PORT0 PAD reg
1600 	 */
1601 	if (priv->switch_id == QCA8K_ID_QCA8327 ||
1602 	    priv->switch_id == QCA8K_ID_QCA8337)
1603 		reg = QCA8K_REG_PORT0_PAD_CTRL;
1604 
1605 	val = 0;
1606 
1607 	/* SGMII Clock phase configuration */
1608 	if (priv->ports_config.sgmii_rx_clk_falling_edge)
1609 		val |= QCA8K_PORT0_PAD_SGMII_RXCLK_FALLING_EDGE;
1610 
1611 	if (priv->ports_config.sgmii_tx_clk_falling_edge)
1612 		val |= QCA8K_PORT0_PAD_SGMII_TXCLK_FALLING_EDGE;
1613 
1614 	if (val)
1615 		ret = qca8k_rmw(priv, reg,
1616 				QCA8K_PORT0_PAD_SGMII_RXCLK_FALLING_EDGE |
1617 				QCA8K_PORT0_PAD_SGMII_TXCLK_FALLING_EDGE,
1618 				val);
1619 
1620 	return 0;
1621 }
1622 
qca8k_pcs_an_restart(struct phylink_pcs * pcs)1623 static void qca8k_pcs_an_restart(struct phylink_pcs *pcs)
1624 {
1625 }
1626 
1627 static const struct phylink_pcs_ops qca8k_pcs_ops = {
1628 	.pcs_get_state = qca8k_pcs_get_state,
1629 	.pcs_config = qca8k_pcs_config,
1630 	.pcs_an_restart = qca8k_pcs_an_restart,
1631 };
1632 
qca8k_setup_pcs(struct qca8k_priv * priv,struct qca8k_pcs * qpcs,int port)1633 static void qca8k_setup_pcs(struct qca8k_priv *priv, struct qca8k_pcs *qpcs,
1634 			    int port)
1635 {
1636 	qpcs->pcs.ops = &qca8k_pcs_ops;
1637 	qpcs->pcs.neg_mode = true;
1638 
1639 	/* We don't have interrupts for link changes, so we need to poll */
1640 	qpcs->pcs.poll = true;
1641 	qpcs->priv = priv;
1642 	qpcs->port = port;
1643 }
1644 
qca8k_mib_autocast_handler(struct dsa_switch * ds,struct sk_buff * skb)1645 static void qca8k_mib_autocast_handler(struct dsa_switch *ds, struct sk_buff *skb)
1646 {
1647 	struct qca8k_mib_eth_data *mib_eth_data;
1648 	struct qca8k_priv *priv = ds->priv;
1649 	const struct qca8k_mib_desc *mib;
1650 	struct mib_ethhdr *mib_ethhdr;
1651 	__le32 *data2;
1652 	u8 port;
1653 	int i;
1654 
1655 	mib_ethhdr = (struct mib_ethhdr *)skb_mac_header(skb);
1656 	mib_eth_data = &priv->mib_eth_data;
1657 
1658 	/* The switch autocast every port. Ignore other packet and
1659 	 * parse only the requested one.
1660 	 */
1661 	port = FIELD_GET(QCA_HDR_RECV_SOURCE_PORT, ntohs(mib_ethhdr->hdr));
1662 	if (port != mib_eth_data->req_port)
1663 		goto exit;
1664 
1665 	data2 = (__le32 *)skb->data;
1666 
1667 	for (i = 0; i < priv->info->mib_count; i++) {
1668 		mib = &ar8327_mib[i];
1669 
1670 		/* First 3 mib are present in the skb head */
1671 		if (i < 3) {
1672 			mib_eth_data->data[i] = get_unaligned_le32(mib_ethhdr->data + i);
1673 			continue;
1674 		}
1675 
1676 		/* Some mib are 64 bit wide */
1677 		if (mib->size == 2)
1678 			mib_eth_data->data[i] = get_unaligned_le64((__le64 *)data2);
1679 		else
1680 			mib_eth_data->data[i] = get_unaligned_le32(data2);
1681 
1682 		data2 += mib->size;
1683 	}
1684 
1685 exit:
1686 	/* Complete on receiving all the mib packet */
1687 	if (refcount_dec_and_test(&mib_eth_data->port_parsed))
1688 		complete(&mib_eth_data->rw_done);
1689 }
1690 
1691 static int
qca8k_get_ethtool_stats_eth(struct dsa_switch * ds,int port,u64 * data)1692 qca8k_get_ethtool_stats_eth(struct dsa_switch *ds, int port, u64 *data)
1693 {
1694 	struct dsa_port *dp = dsa_to_port(ds, port);
1695 	struct qca8k_mib_eth_data *mib_eth_data;
1696 	struct qca8k_priv *priv = ds->priv;
1697 	int ret;
1698 
1699 	mib_eth_data = &priv->mib_eth_data;
1700 
1701 	mutex_lock(&mib_eth_data->mutex);
1702 
1703 	reinit_completion(&mib_eth_data->rw_done);
1704 
1705 	mib_eth_data->req_port = dp->index;
1706 	mib_eth_data->data = data;
1707 	refcount_set(&mib_eth_data->port_parsed, QCA8K_NUM_PORTS);
1708 
1709 	mutex_lock(&priv->reg_mutex);
1710 
1711 	/* Send mib autocast request */
1712 	ret = regmap_update_bits(priv->regmap, QCA8K_REG_MIB,
1713 				 QCA8K_MIB_FUNC | QCA8K_MIB_BUSY,
1714 				 FIELD_PREP(QCA8K_MIB_FUNC, QCA8K_MIB_CAST) |
1715 				 QCA8K_MIB_BUSY);
1716 
1717 	mutex_unlock(&priv->reg_mutex);
1718 
1719 	if (ret)
1720 		goto exit;
1721 
1722 	ret = wait_for_completion_timeout(&mib_eth_data->rw_done, QCA8K_ETHERNET_TIMEOUT);
1723 
1724 exit:
1725 	mutex_unlock(&mib_eth_data->mutex);
1726 
1727 	return ret;
1728 }
1729 
qca8k_get_phy_flags(struct dsa_switch * ds,int port)1730 static u32 qca8k_get_phy_flags(struct dsa_switch *ds, int port)
1731 {
1732 	struct qca8k_priv *priv = ds->priv;
1733 
1734 	/* Communicate to the phy internal driver the switch revision.
1735 	 * Based on the switch revision different values needs to be
1736 	 * set to the dbg and mmd reg on the phy.
1737 	 * The first 2 bit are used to communicate the switch revision
1738 	 * to the phy driver.
1739 	 */
1740 	if (port > 0 && port < 6)
1741 		return priv->switch_revision;
1742 
1743 	return 0;
1744 }
1745 
1746 static enum dsa_tag_protocol
qca8k_get_tag_protocol(struct dsa_switch * ds,int port,enum dsa_tag_protocol mp)1747 qca8k_get_tag_protocol(struct dsa_switch *ds, int port,
1748 		       enum dsa_tag_protocol mp)
1749 {
1750 	return DSA_TAG_PROTO_QCA;
1751 }
1752 
1753 static void
qca8k_conduit_change(struct dsa_switch * ds,const struct net_device * conduit,bool operational)1754 qca8k_conduit_change(struct dsa_switch *ds, const struct net_device *conduit,
1755 		     bool operational)
1756 {
1757 	struct dsa_port *dp = conduit->dsa_ptr;
1758 	struct qca8k_priv *priv = ds->priv;
1759 
1760 	/* Ethernet MIB/MDIO is only supported for CPU port 0 */
1761 	if (dp->index != 0)
1762 		return;
1763 
1764 	mutex_lock(&priv->mgmt_eth_data.mutex);
1765 	mutex_lock(&priv->mib_eth_data.mutex);
1766 
1767 	priv->mgmt_conduit = operational ? (struct net_device *)conduit : NULL;
1768 
1769 	mutex_unlock(&priv->mib_eth_data.mutex);
1770 	mutex_unlock(&priv->mgmt_eth_data.mutex);
1771 }
1772 
qca8k_connect_tag_protocol(struct dsa_switch * ds,enum dsa_tag_protocol proto)1773 static int qca8k_connect_tag_protocol(struct dsa_switch *ds,
1774 				      enum dsa_tag_protocol proto)
1775 {
1776 	struct qca_tagger_data *tagger_data;
1777 
1778 	switch (proto) {
1779 	case DSA_TAG_PROTO_QCA:
1780 		tagger_data = ds->tagger_data;
1781 
1782 		tagger_data->rw_reg_ack_handler = qca8k_rw_reg_ack_handler;
1783 		tagger_data->mib_autocast_handler = qca8k_mib_autocast_handler;
1784 
1785 		break;
1786 	default:
1787 		return -EOPNOTSUPP;
1788 	}
1789 
1790 	return 0;
1791 }
1792 
qca8k_setup_hol_fixup(struct qca8k_priv * priv,int port)1793 static void qca8k_setup_hol_fixup(struct qca8k_priv *priv, int port)
1794 {
1795 	u32 mask;
1796 
1797 	switch (port) {
1798 	/* The 2 CPU port and port 5 requires some different
1799 	 * priority than any other ports.
1800 	 */
1801 	case 0:
1802 	case 5:
1803 	case 6:
1804 		mask = QCA8K_PORT_HOL_CTRL0_EG_PRI0(0x3) |
1805 			QCA8K_PORT_HOL_CTRL0_EG_PRI1(0x4) |
1806 			QCA8K_PORT_HOL_CTRL0_EG_PRI2(0x4) |
1807 			QCA8K_PORT_HOL_CTRL0_EG_PRI3(0x4) |
1808 			QCA8K_PORT_HOL_CTRL0_EG_PRI4(0x6) |
1809 			QCA8K_PORT_HOL_CTRL0_EG_PRI5(0x8) |
1810 			QCA8K_PORT_HOL_CTRL0_EG_PORT(0x1e);
1811 		break;
1812 	default:
1813 		mask = QCA8K_PORT_HOL_CTRL0_EG_PRI0(0x3) |
1814 			QCA8K_PORT_HOL_CTRL0_EG_PRI1(0x4) |
1815 			QCA8K_PORT_HOL_CTRL0_EG_PRI2(0x6) |
1816 			QCA8K_PORT_HOL_CTRL0_EG_PRI3(0x8) |
1817 			QCA8K_PORT_HOL_CTRL0_EG_PORT(0x19);
1818 	}
1819 	regmap_write(priv->regmap, QCA8K_REG_PORT_HOL_CTRL0(port), mask);
1820 
1821 	mask = QCA8K_PORT_HOL_CTRL1_ING(0x6) |
1822 	       QCA8K_PORT_HOL_CTRL1_EG_PRI_BUF_EN |
1823 	       QCA8K_PORT_HOL_CTRL1_EG_PORT_BUF_EN |
1824 	       QCA8K_PORT_HOL_CTRL1_WRED_EN;
1825 	regmap_update_bits(priv->regmap, QCA8K_REG_PORT_HOL_CTRL1(port),
1826 			   QCA8K_PORT_HOL_CTRL1_ING_BUF_MASK |
1827 			   QCA8K_PORT_HOL_CTRL1_EG_PRI_BUF_EN |
1828 			   QCA8K_PORT_HOL_CTRL1_EG_PORT_BUF_EN |
1829 			   QCA8K_PORT_HOL_CTRL1_WRED_EN,
1830 			   mask);
1831 }
1832 
1833 static int
qca8k_setup(struct dsa_switch * ds)1834 qca8k_setup(struct dsa_switch *ds)
1835 {
1836 	struct qca8k_priv *priv = ds->priv;
1837 	struct dsa_port *dp;
1838 	int cpu_port, ret;
1839 	u32 mask;
1840 
1841 	cpu_port = qca8k_find_cpu_port(ds);
1842 	if (cpu_port < 0) {
1843 		dev_err(priv->dev, "No cpu port configured in both cpu port0 and port6");
1844 		return cpu_port;
1845 	}
1846 
1847 	/* Parse CPU port config to be later used in phy_link mac_config */
1848 	ret = qca8k_parse_port_config(priv);
1849 	if (ret)
1850 		return ret;
1851 
1852 	ret = qca8k_setup_mdio_bus(priv);
1853 	if (ret)
1854 		return ret;
1855 
1856 	ret = qca8k_setup_of_pws_reg(priv);
1857 	if (ret)
1858 		return ret;
1859 
1860 	ret = qca8k_setup_mac_pwr_sel(priv);
1861 	if (ret)
1862 		return ret;
1863 
1864 	ret = qca8k_setup_led_ctrl(priv);
1865 	if (ret)
1866 		return ret;
1867 
1868 	qca8k_setup_pcs(priv, &priv->pcs_port_0, 0);
1869 	qca8k_setup_pcs(priv, &priv->pcs_port_6, 6);
1870 
1871 	/* Make sure MAC06 is disabled */
1872 	ret = regmap_clear_bits(priv->regmap, QCA8K_REG_PORT0_PAD_CTRL,
1873 				QCA8K_PORT0_PAD_MAC06_EXCHANGE_EN);
1874 	if (ret) {
1875 		dev_err(priv->dev, "failed disabling MAC06 exchange");
1876 		return ret;
1877 	}
1878 
1879 	/* Enable CPU Port */
1880 	ret = regmap_set_bits(priv->regmap, QCA8K_REG_GLOBAL_FW_CTRL0,
1881 			      QCA8K_GLOBAL_FW_CTRL0_CPU_PORT_EN);
1882 	if (ret) {
1883 		dev_err(priv->dev, "failed enabling CPU port");
1884 		return ret;
1885 	}
1886 
1887 	/* Enable MIB counters */
1888 	ret = qca8k_mib_init(priv);
1889 	if (ret)
1890 		dev_warn(priv->dev, "mib init failed");
1891 
1892 	/* Initial setup of all ports */
1893 	dsa_switch_for_each_port(dp, ds) {
1894 		/* Disable forwarding by default on all ports */
1895 		ret = qca8k_rmw(priv, QCA8K_PORT_LOOKUP_CTRL(dp->index),
1896 				QCA8K_PORT_LOOKUP_MEMBER, 0);
1897 		if (ret)
1898 			return ret;
1899 	}
1900 
1901 	/* Disable MAC by default on all user ports */
1902 	dsa_switch_for_each_user_port(dp, ds)
1903 		qca8k_port_set_status(priv, dp->index, 0);
1904 
1905 	/* Enable QCA header mode on all cpu ports */
1906 	dsa_switch_for_each_cpu_port(dp, ds) {
1907 		ret = qca8k_write(priv, QCA8K_REG_PORT_HDR_CTRL(dp->index),
1908 				  FIELD_PREP(QCA8K_PORT_HDR_CTRL_TX_MASK, QCA8K_PORT_HDR_CTRL_ALL) |
1909 				  FIELD_PREP(QCA8K_PORT_HDR_CTRL_RX_MASK, QCA8K_PORT_HDR_CTRL_ALL));
1910 		if (ret) {
1911 			dev_err(priv->dev, "failed enabling QCA header mode on port %d", dp->index);
1912 			return ret;
1913 		}
1914 	}
1915 
1916 	/* Forward all unknown frames to CPU port for Linux processing
1917 	 * Notice that in multi-cpu config only one port should be set
1918 	 * for igmp, unknown, multicast and broadcast packet
1919 	 */
1920 	ret = qca8k_write(priv, QCA8K_REG_GLOBAL_FW_CTRL1,
1921 			  FIELD_PREP(QCA8K_GLOBAL_FW_CTRL1_IGMP_DP_MASK, BIT(cpu_port)) |
1922 			  FIELD_PREP(QCA8K_GLOBAL_FW_CTRL1_BC_DP_MASK, BIT(cpu_port)) |
1923 			  FIELD_PREP(QCA8K_GLOBAL_FW_CTRL1_MC_DP_MASK, BIT(cpu_port)) |
1924 			  FIELD_PREP(QCA8K_GLOBAL_FW_CTRL1_UC_DP_MASK, BIT(cpu_port)));
1925 	if (ret)
1926 		return ret;
1927 
1928 	/* CPU port gets connected to all user ports of the switch */
1929 	ret = qca8k_rmw(priv, QCA8K_PORT_LOOKUP_CTRL(cpu_port),
1930 			QCA8K_PORT_LOOKUP_MEMBER, dsa_user_ports(ds));
1931 	if (ret)
1932 		return ret;
1933 
1934 	/* Setup connection between CPU port & user ports
1935 	 * Individual user ports get connected to CPU port only
1936 	 */
1937 	dsa_switch_for_each_user_port(dp, ds) {
1938 		u8 port = dp->index;
1939 
1940 		ret = qca8k_rmw(priv, QCA8K_PORT_LOOKUP_CTRL(port),
1941 				QCA8K_PORT_LOOKUP_MEMBER,
1942 				BIT(cpu_port));
1943 		if (ret)
1944 			return ret;
1945 
1946 		ret = regmap_clear_bits(priv->regmap, QCA8K_PORT_LOOKUP_CTRL(port),
1947 					QCA8K_PORT_LOOKUP_LEARN);
1948 		if (ret)
1949 			return ret;
1950 
1951 		/* For port based vlans to work we need to set the
1952 		 * default egress vid
1953 		 */
1954 		ret = qca8k_rmw(priv, QCA8K_EGRESS_VLAN(port),
1955 				QCA8K_EGREES_VLAN_PORT_MASK(port),
1956 				QCA8K_EGREES_VLAN_PORT(port, QCA8K_PORT_VID_DEF));
1957 		if (ret)
1958 			return ret;
1959 
1960 		ret = qca8k_write(priv, QCA8K_REG_PORT_VLAN_CTRL0(port),
1961 				  QCA8K_PORT_VLAN_CVID(QCA8K_PORT_VID_DEF) |
1962 				  QCA8K_PORT_VLAN_SVID(QCA8K_PORT_VID_DEF));
1963 		if (ret)
1964 			return ret;
1965 	}
1966 
1967 	/* The port 5 of the qca8337 have some problem in flood condition. The
1968 	 * original legacy driver had some specific buffer and priority settings
1969 	 * for the different port suggested by the QCA switch team. Add this
1970 	 * missing settings to improve switch stability under load condition.
1971 	 * This problem is limited to qca8337 and other qca8k switch are not affected.
1972 	 */
1973 	if (priv->switch_id == QCA8K_ID_QCA8337)
1974 		dsa_switch_for_each_available_port(dp, ds)
1975 			qca8k_setup_hol_fixup(priv, dp->index);
1976 
1977 	/* Special GLOBAL_FC_THRESH value are needed for ar8327 switch */
1978 	if (priv->switch_id == QCA8K_ID_QCA8327) {
1979 		mask = QCA8K_GLOBAL_FC_GOL_XON_THRES(288) |
1980 		       QCA8K_GLOBAL_FC_GOL_XOFF_THRES(496);
1981 		qca8k_rmw(priv, QCA8K_REG_GLOBAL_FC_THRESH,
1982 			  QCA8K_GLOBAL_FC_GOL_XON_THRES_MASK |
1983 			  QCA8K_GLOBAL_FC_GOL_XOFF_THRES_MASK,
1984 			  mask);
1985 	}
1986 
1987 	/* Setup our port MTUs to match power on defaults */
1988 	ret = qca8k_write(priv, QCA8K_MAX_FRAME_SIZE, ETH_FRAME_LEN + ETH_FCS_LEN);
1989 	if (ret)
1990 		dev_warn(priv->dev, "failed setting MTU settings");
1991 
1992 	/* Flush the FDB table */
1993 	qca8k_fdb_flush(priv);
1994 
1995 	/* Set min a max ageing value supported */
1996 	ds->ageing_time_min = 7000;
1997 	ds->ageing_time_max = 458745000;
1998 
1999 	/* Set max number of LAGs supported */
2000 	ds->num_lag_ids = QCA8K_NUM_LAGS;
2001 
2002 	return 0;
2003 }
2004 
2005 static const struct phylink_mac_ops qca8k_phylink_mac_ops = {
2006 	.mac_select_pcs	= qca8k_phylink_mac_select_pcs,
2007 	.mac_config	= qca8k_phylink_mac_config,
2008 	.mac_link_down	= qca8k_phylink_mac_link_down,
2009 	.mac_link_up	= qca8k_phylink_mac_link_up,
2010 };
2011 
2012 static const struct dsa_switch_ops qca8k_switch_ops = {
2013 	.get_tag_protocol	= qca8k_get_tag_protocol,
2014 	.setup			= qca8k_setup,
2015 	.get_strings		= qca8k_get_strings,
2016 	.get_ethtool_stats	= qca8k_get_ethtool_stats,
2017 	.get_sset_count		= qca8k_get_sset_count,
2018 	.set_ageing_time	= qca8k_set_ageing_time,
2019 	.get_mac_eee		= qca8k_get_mac_eee,
2020 	.set_mac_eee		= qca8k_set_mac_eee,
2021 	.port_enable		= qca8k_port_enable,
2022 	.port_disable		= qca8k_port_disable,
2023 	.port_change_mtu	= qca8k_port_change_mtu,
2024 	.port_max_mtu		= qca8k_port_max_mtu,
2025 	.port_stp_state_set	= qca8k_port_stp_state_set,
2026 	.port_pre_bridge_flags	= qca8k_port_pre_bridge_flags,
2027 	.port_bridge_flags	= qca8k_port_bridge_flags,
2028 	.port_bridge_join	= qca8k_port_bridge_join,
2029 	.port_bridge_leave	= qca8k_port_bridge_leave,
2030 	.port_fast_age		= qca8k_port_fast_age,
2031 	.port_fdb_add		= qca8k_port_fdb_add,
2032 	.port_fdb_del		= qca8k_port_fdb_del,
2033 	.port_fdb_dump		= qca8k_port_fdb_dump,
2034 	.port_mdb_add		= qca8k_port_mdb_add,
2035 	.port_mdb_del		= qca8k_port_mdb_del,
2036 	.port_mirror_add	= qca8k_port_mirror_add,
2037 	.port_mirror_del	= qca8k_port_mirror_del,
2038 	.port_vlan_filtering	= qca8k_port_vlan_filtering,
2039 	.port_vlan_add		= qca8k_port_vlan_add,
2040 	.port_vlan_del		= qca8k_port_vlan_del,
2041 	.phylink_get_caps	= qca8k_phylink_get_caps,
2042 	.get_phy_flags		= qca8k_get_phy_flags,
2043 	.port_lag_join		= qca8k_port_lag_join,
2044 	.port_lag_leave		= qca8k_port_lag_leave,
2045 	.conduit_state_change	= qca8k_conduit_change,
2046 	.connect_tag_protocol	= qca8k_connect_tag_protocol,
2047 };
2048 
2049 static int
qca8k_sw_probe(struct mdio_device * mdiodev)2050 qca8k_sw_probe(struct mdio_device *mdiodev)
2051 {
2052 	struct qca8k_priv *priv;
2053 	int ret;
2054 
2055 	/* allocate the private data struct so that we can probe the switches
2056 	 * ID register
2057 	 */
2058 	priv = devm_kzalloc(&mdiodev->dev, sizeof(*priv), GFP_KERNEL);
2059 	if (!priv)
2060 		return -ENOMEM;
2061 
2062 	priv->bus = mdiodev->bus;
2063 	priv->dev = &mdiodev->dev;
2064 	priv->info = of_device_get_match_data(priv->dev);
2065 
2066 	priv->reset_gpio = devm_gpiod_get_optional(priv->dev, "reset",
2067 						   GPIOD_OUT_HIGH);
2068 	if (IS_ERR(priv->reset_gpio))
2069 		return PTR_ERR(priv->reset_gpio);
2070 
2071 	if (priv->reset_gpio) {
2072 		/* The active low duration must be greater than 10 ms
2073 		 * and checkpatch.pl wants 20 ms.
2074 		 */
2075 		msleep(20);
2076 		gpiod_set_value_cansleep(priv->reset_gpio, 0);
2077 	}
2078 
2079 	/* Start by setting up the register mapping */
2080 	priv->regmap = devm_regmap_init(&mdiodev->dev, NULL, priv,
2081 					&qca8k_regmap_config);
2082 	if (IS_ERR(priv->regmap)) {
2083 		dev_err(priv->dev, "regmap initialization failed");
2084 		return PTR_ERR(priv->regmap);
2085 	}
2086 
2087 	priv->mdio_cache.page = 0xffff;
2088 
2089 	/* Check the detected switch id */
2090 	ret = qca8k_read_switch_id(priv);
2091 	if (ret)
2092 		return ret;
2093 
2094 	priv->ds = devm_kzalloc(&mdiodev->dev, sizeof(*priv->ds), GFP_KERNEL);
2095 	if (!priv->ds)
2096 		return -ENOMEM;
2097 
2098 	mutex_init(&priv->mgmt_eth_data.mutex);
2099 	init_completion(&priv->mgmt_eth_data.rw_done);
2100 
2101 	mutex_init(&priv->mib_eth_data.mutex);
2102 	init_completion(&priv->mib_eth_data.rw_done);
2103 
2104 	priv->ds->dev = &mdiodev->dev;
2105 	priv->ds->num_ports = QCA8K_NUM_PORTS;
2106 	priv->ds->priv = priv;
2107 	priv->ds->ops = &qca8k_switch_ops;
2108 	priv->ds->phylink_mac_ops = &qca8k_phylink_mac_ops;
2109 	mutex_init(&priv->reg_mutex);
2110 	dev_set_drvdata(&mdiodev->dev, priv);
2111 
2112 	return dsa_register_switch(priv->ds);
2113 }
2114 
2115 static void
qca8k_sw_remove(struct mdio_device * mdiodev)2116 qca8k_sw_remove(struct mdio_device *mdiodev)
2117 {
2118 	struct qca8k_priv *priv = dev_get_drvdata(&mdiodev->dev);
2119 	int i;
2120 
2121 	if (!priv)
2122 		return;
2123 
2124 	for (i = 0; i < QCA8K_NUM_PORTS; i++)
2125 		qca8k_port_set_status(priv, i, 0);
2126 
2127 	dsa_unregister_switch(priv->ds);
2128 }
2129 
qca8k_sw_shutdown(struct mdio_device * mdiodev)2130 static void qca8k_sw_shutdown(struct mdio_device *mdiodev)
2131 {
2132 	struct qca8k_priv *priv = dev_get_drvdata(&mdiodev->dev);
2133 
2134 	if (!priv)
2135 		return;
2136 
2137 	dsa_switch_shutdown(priv->ds);
2138 
2139 	dev_set_drvdata(&mdiodev->dev, NULL);
2140 }
2141 
2142 #ifdef CONFIG_PM_SLEEP
2143 static void
qca8k_set_pm(struct qca8k_priv * priv,int enable)2144 qca8k_set_pm(struct qca8k_priv *priv, int enable)
2145 {
2146 	int port;
2147 
2148 	for (port = 0; port < QCA8K_NUM_PORTS; port++) {
2149 		/* Do not enable on resume if the port was
2150 		 * disabled before.
2151 		 */
2152 		if (!(priv->port_enabled_map & BIT(port)))
2153 			continue;
2154 
2155 		qca8k_port_set_status(priv, port, enable);
2156 	}
2157 }
2158 
qca8k_suspend(struct device * dev)2159 static int qca8k_suspend(struct device *dev)
2160 {
2161 	struct qca8k_priv *priv = dev_get_drvdata(dev);
2162 
2163 	qca8k_set_pm(priv, 0);
2164 
2165 	return dsa_switch_suspend(priv->ds);
2166 }
2167 
qca8k_resume(struct device * dev)2168 static int qca8k_resume(struct device *dev)
2169 {
2170 	struct qca8k_priv *priv = dev_get_drvdata(dev);
2171 
2172 	qca8k_set_pm(priv, 1);
2173 
2174 	return dsa_switch_resume(priv->ds);
2175 }
2176 #endif /* CONFIG_PM_SLEEP */
2177 
2178 static SIMPLE_DEV_PM_OPS(qca8k_pm_ops,
2179 			 qca8k_suspend, qca8k_resume);
2180 
2181 static const struct qca8k_info_ops qca8xxx_ops = {
2182 	.autocast_mib = qca8k_get_ethtool_stats_eth,
2183 };
2184 
2185 static const struct qca8k_match_data qca8327 = {
2186 	.id = QCA8K_ID_QCA8327,
2187 	.reduced_package = true,
2188 	.mib_count = QCA8K_QCA832X_MIB_COUNT,
2189 	.ops = &qca8xxx_ops,
2190 };
2191 
2192 static const struct qca8k_match_data qca8328 = {
2193 	.id = QCA8K_ID_QCA8327,
2194 	.mib_count = QCA8K_QCA832X_MIB_COUNT,
2195 	.ops = &qca8xxx_ops,
2196 };
2197 
2198 static const struct qca8k_match_data qca833x = {
2199 	.id = QCA8K_ID_QCA8337,
2200 	.mib_count = QCA8K_QCA833X_MIB_COUNT,
2201 	.ops = &qca8xxx_ops,
2202 };
2203 
2204 static const struct of_device_id qca8k_of_match[] = {
2205 	{ .compatible = "qca,qca8327", .data = &qca8327 },
2206 	{ .compatible = "qca,qca8328", .data = &qca8328 },
2207 	{ .compatible = "qca,qca8334", .data = &qca833x },
2208 	{ .compatible = "qca,qca8337", .data = &qca833x },
2209 	{ /* sentinel */ },
2210 };
2211 
2212 static struct mdio_driver qca8kmdio_driver = {
2213 	.probe  = qca8k_sw_probe,
2214 	.remove = qca8k_sw_remove,
2215 	.shutdown = qca8k_sw_shutdown,
2216 	.mdiodrv.driver = {
2217 		.name = "qca8k",
2218 		.of_match_table = qca8k_of_match,
2219 		.pm = &qca8k_pm_ops,
2220 	},
2221 };
2222 
2223 mdio_module_driver(qca8kmdio_driver);
2224 
2225 MODULE_AUTHOR("Mathieu Olivari, John Crispin <john@phrozen.org>");
2226 MODULE_DESCRIPTION("Driver for QCA8K ethernet switch family");
2227 MODULE_LICENSE("GPL v2");
2228 MODULE_ALIAS("platform:qca8k");
2229