net: dsa: Move phy page access functions into shared code
[deliverable/linux.git] / drivers / net / dsa / mv88e6352.c
CommitLineData
3ad50cca
GR
1/*
2 * net/dsa/mv88e6352.c - Marvell 88e6352 switch chip support
3 *
4 * Copyright (c) 2014 Guenter Roeck
5 *
6 * Derived from mv88e6123_61_65.c
7 * Copyright (c) 2008-2009 Marvell Semiconductor
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
14
15#include <linux/delay.h>
16#include <linux/jiffies.h>
17#include <linux/list.h>
18#include <linux/module.h>
19#include <linux/netdevice.h>
20#include <linux/platform_device.h>
21#include <linux/phy.h>
22#include <net/dsa.h>
23#include "mv88e6xxx.h"
24
3ad50cca
GR
25static char *mv88e6352_probe(struct device *host_dev, int sw_addr)
26{
27 struct mii_bus *bus = dsa_host_dev_to_mii_bus(host_dev);
28 int ret;
29
30 if (bus == NULL)
31 return NULL;
32
33 ret = __mv88e6xxx_reg_read(bus, sw_addr, REG_PORT(0), 0x03);
34 if (ret >= 0) {
2716777b
GR
35 if ((ret & 0xfff0) == 0x1760)
36 return "Marvell 88E6176";
3ad50cca
GR
37 if (ret == 0x3521)
38 return "Marvell 88E6352 (A0)";
39 if (ret == 0x3522)
40 return "Marvell 88E6352 (A1)";
41 if ((ret & 0xfff0) == 0x3520)
42 return "Marvell 88E6352";
43 }
44
45 return NULL;
46}
47
3ad50cca
GR
48static int mv88e6352_setup_global(struct dsa_switch *ds)
49{
44e50ddb 50 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
3ad50cca
GR
51 int ret;
52 int i;
53
54 /* Discard packets with excessive collisions,
55 * mask all interrupt sources, enable PPU (bit 14, undocumented).
56 */
57 REG_WRITE(REG_GLOBAL, 0x04, 0x6000);
58
59 /* Set the default address aging time to 5 minutes, and
60 * enable address learn messages to be sent to all message
61 * ports.
62 */
63 REG_WRITE(REG_GLOBAL, 0x0a, 0x0148);
64
65 /* Configure the priority mapping registers. */
66 ret = mv88e6xxx_config_prio(ds);
67 if (ret < 0)
68 return ret;
69
70 /* Configure the upstream port, and configure the upstream
71 * port as the port to which ingress and egress monitor frames
72 * are to be sent.
73 */
74 REG_WRITE(REG_GLOBAL, 0x1a, (dsa_upstream_port(ds) * 0x1110));
75
76 /* Disable remote management for now, and set the switch's
77 * DSA device number.
78 */
79 REG_WRITE(REG_GLOBAL, 0x1c, ds->index & 0x1f);
80
81 /* Send all frames with destination addresses matching
82 * 01:80:c2:00:00:2x to the CPU port.
83 */
84 REG_WRITE(REG_GLOBAL2, 0x02, 0xffff);
85
86 /* Send all frames with destination addresses matching
87 * 01:80:c2:00:00:0x to the CPU port.
88 */
89 REG_WRITE(REG_GLOBAL2, 0x03, 0xffff);
90
91 /* Disable the loopback filter, disable flow control
92 * messages, disable flood broadcast override, disable
93 * removing of provider tags, disable ATU age violation
94 * interrupts, disable tag flow control, force flow
95 * control priority to the highest, and send all special
96 * multicast frames to the CPU at the highest priority.
97 */
98 REG_WRITE(REG_GLOBAL2, 0x05, 0x00ff);
99
100 /* Program the DSA routing table. */
101 for (i = 0; i < 32; i++) {
102 int nexthop = 0x1f;
103
104 if (i != ds->index && i < ds->dst->pd->nr_chips)
105 nexthop = ds->pd->rtable[i] & 0x1f;
106
107 REG_WRITE(REG_GLOBAL2, 0x06, 0x8000 | (i << 8) | nexthop);
108 }
109
110 /* Clear all trunk masks. */
111 for (i = 0; i < 8; i++)
112 REG_WRITE(REG_GLOBAL2, 0x07, 0x8000 | (i << 12) | 0x7f);
113
114 /* Clear all trunk mappings. */
115 for (i = 0; i < 16; i++)
116 REG_WRITE(REG_GLOBAL2, 0x08, 0x8000 | (i << 11));
117
118 /* Disable ingress rate limiting by resetting all ingress
119 * rate limit registers to their initial state.
120 */
44e50ddb 121 for (i = 0; i < ps->num_ports; i++)
3ad50cca
GR
122 REG_WRITE(REG_GLOBAL2, 0x09, 0x9000 | (i << 8));
123
124 /* Initialise cross-chip port VLAN table to reset defaults. */
125 REG_WRITE(REG_GLOBAL2, 0x0b, 0x9000);
126
127 /* Clear the priority override table. */
128 for (i = 0; i < 16; i++)
129 REG_WRITE(REG_GLOBAL2, 0x0f, 0x8000 | (i << 8));
130
131 /* @@@ initialise AVB (22/23) watchdog (27) sdet (29) registers */
132
133 return 0;
134}
135
136static int mv88e6352_setup_port(struct dsa_switch *ds, int p)
137{
138 int addr = REG_PORT(p);
139 u16 val;
140
141 /* MAC Forcing register: don't force link, speed, duplex
142 * or flow control state to any particular values on physical
143 * ports, but force the CPU port and all DSA ports to 1000 Mb/s
144 * full duplex.
145 */
146 if (dsa_is_cpu_port(ds, p) || ds->dsa_port_mask & (1 << p))
147 REG_WRITE(addr, 0x01, 0x003e);
148 else
149 REG_WRITE(addr, 0x01, 0x0003);
150
151 /* Do not limit the period of time that this port can be
152 * paused for by the remote end or the period of time that
153 * this port can pause the remote end.
154 */
155 REG_WRITE(addr, 0x02, 0x0000);
156
157 /* Port Control: disable Drop-on-Unlock, disable Drop-on-Lock,
158 * disable Header mode, enable IGMP/MLD snooping, disable VLAN
159 * tunneling, determine priority by looking at 802.1p and IP
160 * priority fields (IP prio has precedence), and set STP state
161 * to Forwarding.
162 *
163 * If this is the CPU link, use DSA or EDSA tagging depending
164 * on which tagging mode was configured.
165 *
166 * If this is a link to another switch, use DSA tagging mode.
167 *
168 * If this is the upstream port for this switch, enable
169 * forwarding of unknown unicasts and multicasts.
170 */
171 val = 0x0433;
172 if (dsa_is_cpu_port(ds, p)) {
173 if (ds->dst->tag_protocol == DSA_TAG_PROTO_EDSA)
174 val |= 0x3300;
175 else
176 val |= 0x0100;
177 }
178 if (ds->dsa_port_mask & (1 << p))
179 val |= 0x0100;
180 if (p == dsa_upstream_port(ds))
181 val |= 0x000c;
182 REG_WRITE(addr, 0x04, val);
183
3ad50cca
GR
184 /* Port Control 2: don't force a good FCS, set the maximum
185 * frame size to 10240 bytes, don't let the switch add or
186 * strip 802.1q tags, don't discard tagged or untagged frames
187 * on this port, do a destination address lookup on all
188 * received packets as usual, disable ARP mirroring and don't
189 * send a copy of all transmitted/received frames on this port
190 * to the CPU.
191 */
192 REG_WRITE(addr, 0x08, 0x2080);
193
194 /* Egress rate control: disable egress rate control. */
195 REG_WRITE(addr, 0x09, 0x0001);
196
197 /* Egress rate control 2: disable egress rate control. */
198 REG_WRITE(addr, 0x0a, 0x0000);
199
200 /* Port Association Vector: when learning source addresses
201 * of packets, add the address to the address database using
202 * a port bitmap that has only the bit for this port set and
203 * the other bits clear.
204 */
205 REG_WRITE(addr, 0x0b, 1 << p);
206
207 /* Port ATU control: disable limiting the number of address
208 * database entries that this port is allowed to use.
209 */
210 REG_WRITE(addr, 0x0c, 0x0000);
211
212 /* Priority Override: disable DA, SA and VTU priority override. */
213 REG_WRITE(addr, 0x0d, 0x0000);
214
215 /* Port Ethertype: use the Ethertype DSA Ethertype value. */
216 REG_WRITE(addr, 0x0f, ETH_P_EDSA);
217
218 /* Tag Remap: use an identity 802.1p prio -> switch prio
219 * mapping.
220 */
221 REG_WRITE(addr, 0x18, 0x3210);
222
223 /* Tag Remap 2: use an identity 802.1p prio -> switch prio
224 * mapping.
225 */
226 REG_WRITE(addr, 0x19, 0x7654);
227
2089052f 228 return mv88e6xxx_setup_port_common(ds, p);
3ad50cca
GR
229}
230
276db3b1
GR
231#ifdef CONFIG_NET_DSA_HWMON
232
276db3b1
GR
233static int mv88e6352_get_temp(struct dsa_switch *ds, int *temp)
234{
235 int ret;
236
237 *temp = 0;
238
49143585 239 ret = mv88e6xxx_phy_page_read(ds, 0, 6, 27);
276db3b1
GR
240 if (ret < 0)
241 return ret;
242
243 *temp = (ret & 0xff) - 25;
244
245 return 0;
246}
247
248static int mv88e6352_get_temp_limit(struct dsa_switch *ds, int *temp)
249{
250 int ret;
251
252 *temp = 0;
253
49143585 254 ret = mv88e6xxx_phy_page_read(ds, 0, 6, 26);
276db3b1
GR
255 if (ret < 0)
256 return ret;
257
258 *temp = (((ret >> 8) & 0x1f) * 5) - 25;
259
260 return 0;
261}
262
263static int mv88e6352_set_temp_limit(struct dsa_switch *ds, int temp)
264{
265 int ret;
266
49143585 267 ret = mv88e6xxx_phy_page_read(ds, 0, 6, 26);
276db3b1
GR
268 if (ret < 0)
269 return ret;
270 temp = clamp_val(DIV_ROUND_CLOSEST(temp, 5) + 5, 0, 0x1f);
49143585 271 return mv88e6xxx_phy_page_write(ds, 0, 6, 26,
276db3b1
GR
272 (ret & 0xe0ff) | (temp << 8));
273}
274
275static int mv88e6352_get_temp_alarm(struct dsa_switch *ds, bool *alarm)
276{
277 int ret;
278
279 *alarm = false;
280
49143585 281 ret = mv88e6xxx_phy_page_read(ds, 0, 6, 26);
276db3b1
GR
282 if (ret < 0)
283 return ret;
284
285 *alarm = !!(ret & 0x40);
286
287 return 0;
288}
289#endif /* CONFIG_NET_DSA_HWMON */
290
3ad50cca
GR
291static int mv88e6352_setup(struct dsa_switch *ds)
292{
293 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
294 int ret;
295 int i;
296
acdaffcc
GR
297 ret = mv88e6xxx_setup_common(ds);
298 if (ret < 0)
299 return ret;
300
44e50ddb
AL
301 ps->num_ports = 7;
302
33b43df4 303 mutex_init(&ps->eeprom_mutex);
3ad50cca 304
143a8307 305 ret = mv88e6xxx_switch_reset(ds, true);
3ad50cca
GR
306 if (ret < 0)
307 return ret;
308
309 /* @@@ initialise vtu and atu */
310
311 ret = mv88e6352_setup_global(ds);
312 if (ret < 0)
313 return ret;
314
44e50ddb 315 for (i = 0; i < ps->num_ports; i++) {
3ad50cca
GR
316 ret = mv88e6352_setup_port(ds, i);
317 if (ret < 0)
318 return ret;
319 }
320
321 return 0;
322}
323
324static int mv88e6352_port_to_phy_addr(int port)
325{
326 if (port >= 0 && port <= 4)
327 return port;
328 return -EINVAL;
329}
330
331static int
332mv88e6352_phy_read(struct dsa_switch *ds, int port, int regnum)
333{
334 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
335 int addr = mv88e6352_port_to_phy_addr(port);
336 int ret;
337
338 if (addr < 0)
339 return addr;
340
341 mutex_lock(&ps->phy_mutex);
f3044683 342 ret = mv88e6xxx_phy_read_indirect(ds, addr, regnum);
3ad50cca
GR
343 mutex_unlock(&ps->phy_mutex);
344
345 return ret;
346}
347
348static int
349mv88e6352_phy_write(struct dsa_switch *ds, int port, int regnum, u16 val)
350{
351 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
352 int addr = mv88e6352_port_to_phy_addr(port);
353 int ret;
354
355 if (addr < 0)
356 return addr;
357
358 mutex_lock(&ps->phy_mutex);
f3044683 359 ret = mv88e6xxx_phy_write_indirect(ds, addr, regnum, val);
3ad50cca
GR
360 mutex_unlock(&ps->phy_mutex);
361
362 return ret;
363}
364
365static struct mv88e6xxx_hw_stat mv88e6352_hw_stats[] = {
366 { "in_good_octets", 8, 0x00, },
367 { "in_bad_octets", 4, 0x02, },
368 { "in_unicast", 4, 0x04, },
369 { "in_broadcasts", 4, 0x06, },
370 { "in_multicasts", 4, 0x07, },
371 { "in_pause", 4, 0x16, },
372 { "in_undersize", 4, 0x18, },
373 { "in_fragments", 4, 0x19, },
374 { "in_oversize", 4, 0x1a, },
375 { "in_jabber", 4, 0x1b, },
376 { "in_rx_error", 4, 0x1c, },
377 { "in_fcs_error", 4, 0x1d, },
378 { "out_octets", 8, 0x0e, },
379 { "out_unicast", 4, 0x10, },
380 { "out_broadcasts", 4, 0x13, },
381 { "out_multicasts", 4, 0x12, },
382 { "out_pause", 4, 0x15, },
383 { "excessive", 4, 0x11, },
384 { "collisions", 4, 0x1e, },
385 { "deferred", 4, 0x05, },
386 { "single", 4, 0x14, },
387 { "multiple", 4, 0x17, },
388 { "out_fcs_error", 4, 0x03, },
389 { "late", 4, 0x1f, },
390 { "hist_64bytes", 4, 0x08, },
391 { "hist_65_127bytes", 4, 0x09, },
392 { "hist_128_255bytes", 4, 0x0a, },
393 { "hist_256_511bytes", 4, 0x0b, },
394 { "hist_512_1023bytes", 4, 0x0c, },
395 { "hist_1024_max_bytes", 4, 0x0d, },
17ee3e04
GR
396 { "sw_in_discards", 4, 0x110, },
397 { "sw_in_filtered", 2, 0x112, },
398 { "sw_out_filtered", 2, 0x113, },
3ad50cca
GR
399};
400
33b43df4
GR
401static int mv88e6352_read_eeprom_word(struct dsa_switch *ds, int addr)
402{
403 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
404 int ret;
405
406 mutex_lock(&ps->eeprom_mutex);
407
408 ret = mv88e6xxx_reg_write(ds, REG_GLOBAL2, 0x14,
409 0xc000 | (addr & 0xff));
410 if (ret < 0)
411 goto error;
412
f3044683 413 ret = mv88e6xxx_eeprom_busy_wait(ds);
33b43df4
GR
414 if (ret < 0)
415 goto error;
416
417 ret = mv88e6xxx_reg_read(ds, REG_GLOBAL2, 0x15);
418error:
419 mutex_unlock(&ps->eeprom_mutex);
420 return ret;
421}
422
423static int mv88e6352_get_eeprom(struct dsa_switch *ds,
424 struct ethtool_eeprom *eeprom, u8 *data)
425{
426 int offset;
427 int len;
428 int ret;
429
430 offset = eeprom->offset;
431 len = eeprom->len;
432 eeprom->len = 0;
433
434 eeprom->magic = 0xc3ec4951;
435
f3044683 436 ret = mv88e6xxx_eeprom_load_wait(ds);
33b43df4
GR
437 if (ret < 0)
438 return ret;
439
440 if (offset & 1) {
441 int word;
442
443 word = mv88e6352_read_eeprom_word(ds, offset >> 1);
444 if (word < 0)
445 return word;
446
447 *data++ = (word >> 8) & 0xff;
448
449 offset++;
450 len--;
451 eeprom->len++;
452 }
453
454 while (len >= 2) {
455 int word;
456
457 word = mv88e6352_read_eeprom_word(ds, offset >> 1);
458 if (word < 0)
459 return word;
460
461 *data++ = word & 0xff;
462 *data++ = (word >> 8) & 0xff;
463
464 offset += 2;
465 len -= 2;
466 eeprom->len += 2;
467 }
468
469 if (len) {
470 int word;
471
472 word = mv88e6352_read_eeprom_word(ds, offset >> 1);
473 if (word < 0)
474 return word;
475
476 *data++ = word & 0xff;
477
478 offset++;
479 len--;
480 eeprom->len++;
481 }
482
483 return 0;
484}
485
486static int mv88e6352_eeprom_is_readonly(struct dsa_switch *ds)
487{
488 int ret;
489
490 ret = mv88e6xxx_reg_read(ds, REG_GLOBAL2, 0x14);
491 if (ret < 0)
492 return ret;
493
494 if (!(ret & 0x0400))
495 return -EROFS;
496
497 return 0;
498}
499
500static int mv88e6352_write_eeprom_word(struct dsa_switch *ds, int addr,
501 u16 data)
502{
503 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
504 int ret;
505
506 mutex_lock(&ps->eeprom_mutex);
507
508 ret = mv88e6xxx_reg_write(ds, REG_GLOBAL2, 0x15, data);
509 if (ret < 0)
510 goto error;
511
512 ret = mv88e6xxx_reg_write(ds, REG_GLOBAL2, 0x14,
513 0xb000 | (addr & 0xff));
514 if (ret < 0)
515 goto error;
516
f3044683 517 ret = mv88e6xxx_eeprom_busy_wait(ds);
33b43df4
GR
518error:
519 mutex_unlock(&ps->eeprom_mutex);
520 return ret;
521}
522
523static int mv88e6352_set_eeprom(struct dsa_switch *ds,
524 struct ethtool_eeprom *eeprom, u8 *data)
525{
526 int offset;
527 int ret;
528 int len;
529
530 if (eeprom->magic != 0xc3ec4951)
531 return -EINVAL;
532
533 ret = mv88e6352_eeprom_is_readonly(ds);
534 if (ret)
535 return ret;
536
537 offset = eeprom->offset;
538 len = eeprom->len;
539 eeprom->len = 0;
540
f3044683 541 ret = mv88e6xxx_eeprom_load_wait(ds);
33b43df4
GR
542 if (ret < 0)
543 return ret;
544
545 if (offset & 1) {
546 int word;
547
548 word = mv88e6352_read_eeprom_word(ds, offset >> 1);
549 if (word < 0)
550 return word;
551
552 word = (*data++ << 8) | (word & 0xff);
553
554 ret = mv88e6352_write_eeprom_word(ds, offset >> 1, word);
555 if (ret < 0)
556 return ret;
557
558 offset++;
559 len--;
560 eeprom->len++;
561 }
562
563 while (len >= 2) {
564 int word;
565
566 word = *data++;
567 word |= *data++ << 8;
568
569 ret = mv88e6352_write_eeprom_word(ds, offset >> 1, word);
570 if (ret < 0)
571 return ret;
572
573 offset += 2;
574 len -= 2;
575 eeprom->len += 2;
576 }
577
578 if (len) {
579 int word;
580
581 word = mv88e6352_read_eeprom_word(ds, offset >> 1);
582 if (word < 0)
583 return word;
584
585 word = (word & 0xff00) | *data++;
586
587 ret = mv88e6352_write_eeprom_word(ds, offset >> 1, word);
588 if (ret < 0)
589 return ret;
590
591 offset++;
592 len--;
593 eeprom->len++;
594 }
595
596 return 0;
597}
598
3ad50cca
GR
599static void
600mv88e6352_get_strings(struct dsa_switch *ds, int port, uint8_t *data)
601{
602 mv88e6xxx_get_strings(ds, ARRAY_SIZE(mv88e6352_hw_stats),
603 mv88e6352_hw_stats, port, data);
604}
605
606static void
607mv88e6352_get_ethtool_stats(struct dsa_switch *ds, int port, uint64_t *data)
608{
609 mv88e6xxx_get_ethtool_stats(ds, ARRAY_SIZE(mv88e6352_hw_stats),
610 mv88e6352_hw_stats, port, data);
611}
612
613static int mv88e6352_get_sset_count(struct dsa_switch *ds)
614{
615 return ARRAY_SIZE(mv88e6352_hw_stats);
616}
617
618struct dsa_switch_driver mv88e6352_switch_driver = {
619 .tag_protocol = DSA_TAG_PROTO_EDSA,
620 .priv_size = sizeof(struct mv88e6xxx_priv_state),
621 .probe = mv88e6352_probe,
622 .setup = mv88e6352_setup,
623 .set_addr = mv88e6xxx_set_addr_indirect,
624 .phy_read = mv88e6352_phy_read,
625 .phy_write = mv88e6352_phy_write,
626 .poll_link = mv88e6xxx_poll_link,
627 .get_strings = mv88e6352_get_strings,
628 .get_ethtool_stats = mv88e6352_get_ethtool_stats,
629 .get_sset_count = mv88e6352_get_sset_count,
04b0a80b
GR
630 .set_eee = mv88e6xxx_set_eee,
631 .get_eee = mv88e6xxx_get_eee,
276db3b1
GR
632#ifdef CONFIG_NET_DSA_HWMON
633 .get_temp = mv88e6352_get_temp,
634 .get_temp_limit = mv88e6352_get_temp_limit,
635 .set_temp_limit = mv88e6352_set_temp_limit,
636 .get_temp_alarm = mv88e6352_get_temp_alarm,
637#endif
33b43df4
GR
638 .get_eeprom = mv88e6352_get_eeprom,
639 .set_eeprom = mv88e6352_set_eeprom,
95d08b5a
GR
640 .get_regs_len = mv88e6xxx_get_regs_len,
641 .get_regs = mv88e6xxx_get_regs,
3f244abb
GR
642 .port_join_bridge = mv88e6xxx_join_bridge,
643 .port_leave_bridge = mv88e6xxx_leave_bridge,
644 .port_stp_update = mv88e6xxx_port_stp_update,
4f431e56
GR
645 .fdb_add = mv88e6xxx_port_fdb_add,
646 .fdb_del = mv88e6xxx_port_fdb_del,
647 .fdb_getnext = mv88e6xxx_port_fdb_getnext,
3ad50cca
GR
648};
649
650MODULE_ALIAS("platform:mv88e6352");
This page took 0.076127 seconds and 5 git commands to generate.