blob: a92ca651c3990c1353922fadb242e57d8f7e0af9 [file] [log] [blame]
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +00001/*
Lennert Buytenhek076d3e12009-03-20 09:50:39 +00002 * net/dsa/mv88e6131.c - Marvell 88e6095/6095f/6131 switch chip support
3 * Copyright (c) 2008-2009 Marvell Semiconductor
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
10
Barry Grussling19b2f972013-01-08 16:05:54 +000011#include <linux/delay.h>
12#include <linux/jiffies.h>
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000013#include <linux/list.h>
Paul Gortmaker2bbba272012-01-24 10:41:40 +000014#include <linux/module.h>
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000015#include <linux/netdevice.h>
16#include <linux/phy.h>
Ben Hutchingsc8f0b862011-11-27 17:06:08 +000017#include <net/dsa.h>
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000018#include "mv88e6xxx.h"
19
Vivien Didelotb9b37712015-10-30 19:39:48 -040020static const struct mv88e6xxx_switch_id mv88e6131_table[] = {
21 { PORT_SWITCH_ID_6085, "Marvell 88E6085" },
22 { PORT_SWITCH_ID_6095, "Marvell 88E6095/88E6095F" },
23 { PORT_SWITCH_ID_6131, "Marvell 88E6131" },
24 { PORT_SWITCH_ID_6131_B2, "Marvell 88E6131 (B2)" },
25 { PORT_SWITCH_ID_6185, "Marvell 88E6185" },
26};
27
Alexander Duyckb4d23942014-09-15 13:00:27 -040028static char *mv88e6131_probe(struct device *host_dev, int sw_addr)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000029{
Vivien Didelotb9b37712015-10-30 19:39:48 -040030 return mv88e6xxx_lookup_name(host_dev, sw_addr, mv88e6131_table,
31 ARRAY_SIZE(mv88e6131_table));
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000032}
33
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000034static int mv88e6131_setup_global(struct dsa_switch *ds)
35{
Andrew Lunn15966a22015-05-06 01:09:49 +020036 u32 upstream_port = dsa_upstream_port(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000037 int ret;
Andrew Lunn15966a22015-05-06 01:09:49 +020038 u32 reg;
Andrew Lunn54d792f2015-05-06 01:09:47 +020039
40 ret = mv88e6xxx_setup_global(ds);
41 if (ret)
42 return ret;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000043
Barry Grussling3675c8d2013-01-08 16:05:53 +000044 /* Enable the PHY polling unit, don't discard packets with
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000045 * excessive collisions, use a weighted fair queueing scheme
46 * to arbitrate between packet queues, set the maximum frame
47 * size to 1632, and mask all interrupt sources.
48 */
Andrew Lunn15966a22015-05-06 01:09:49 +020049 REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL,
50 GLOBAL_CONTROL_PPU_ENABLE | GLOBAL_CONTROL_MAX_FRAME_1632);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000051
Barry Grussling3675c8d2013-01-08 16:05:53 +000052 /* Set the VLAN ethertype to 0x8100. */
Andrew Lunn15966a22015-05-06 01:09:49 +020053 REG_WRITE(REG_GLOBAL, GLOBAL_CORE_TAG_TYPE, 0x8100);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000054
Barry Grussling3675c8d2013-01-08 16:05:53 +000055 /* Disable ARP mirroring, and configure the upstream port as
Lennert Buytenheke84665c2009-03-20 09:52:09 +000056 * the port to which ingress and egress monitor frames are to
57 * be sent.
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000058 */
Andrew Lunn15966a22015-05-06 01:09:49 +020059 reg = upstream_port << GLOBAL_MONITOR_CONTROL_INGRESS_SHIFT |
60 upstream_port << GLOBAL_MONITOR_CONTROL_EGRESS_SHIFT |
61 GLOBAL_MONITOR_CONTROL_ARP_DISABLED;
62 REG_WRITE(REG_GLOBAL, GLOBAL_MONITOR_CONTROL, reg);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000063
Barry Grussling3675c8d2013-01-08 16:05:53 +000064 /* Disable cascade port functionality unless this device
Barry Grussling81399ec2011-06-24 19:53:51 +000065 * is used in a cascade configuration, and set the switch's
Lennert Buytenheke84665c2009-03-20 09:52:09 +000066 * DSA device number.
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000067 */
Barry Grussling81399ec2011-06-24 19:53:51 +000068 if (ds->dst->pd->nr_chips > 1)
Andrew Lunn15966a22015-05-06 01:09:49 +020069 REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL_2,
70 GLOBAL_CONTROL_2_MULTIPLE_CASCADE |
71 (ds->index & 0x1f));
Barry Grussling81399ec2011-06-24 19:53:51 +000072 else
Andrew Lunn15966a22015-05-06 01:09:49 +020073 REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL_2,
74 GLOBAL_CONTROL_2_NO_CASCADE |
75 (ds->index & 0x1f));
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000076
Barry Grussling3675c8d2013-01-08 16:05:53 +000077 /* Force the priority of IGMP/MLD snoop frames and ARP frames
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000078 * to the highest setting.
79 */
Andrew Lunn15966a22015-05-06 01:09:49 +020080 REG_WRITE(REG_GLOBAL2, GLOBAL2_PRIO_OVERRIDE,
81 GLOBAL2_PRIO_OVERRIDE_FORCE_SNOOP |
82 7 << GLOBAL2_PRIO_OVERRIDE_SNOOP_SHIFT |
83 GLOBAL2_PRIO_OVERRIDE_FORCE_ARP |
84 7 << GLOBAL2_PRIO_OVERRIDE_ARP_SHIFT);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000085
86 return 0;
87}
88
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000089static int mv88e6131_setup(struct dsa_switch *ds)
90{
Guenter Roeckd1988932015-04-02 04:06:31 +020091 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000092 int ret;
93
Guenter Roeck0d65da42015-04-02 04:06:29 +020094 ret = mv88e6xxx_setup_common(ds);
95 if (ret < 0)
96 return ret;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000097
Guenter Roeck0d65da42015-04-02 04:06:29 +020098 mv88e6xxx_ppu_state_init(ds);
Peter Korsgaardec80bfc2011-04-05 03:03:56 +000099
Guenter Roeckd1988932015-04-02 04:06:31 +0200100 switch (ps->id) {
Andrew Lunncca8b132015-04-02 04:06:39 +0200101 case PORT_SWITCH_ID_6085:
Andrew Lunn1441f4e2015-05-06 01:09:52 +0200102 case PORT_SWITCH_ID_6185:
Guenter Roeckd1988932015-04-02 04:06:31 +0200103 ps->num_ports = 10;
104 break;
Andrew Lunncca8b132015-04-02 04:06:39 +0200105 case PORT_SWITCH_ID_6095:
Guenter Roeckd1988932015-04-02 04:06:31 +0200106 ps->num_ports = 11;
107 break;
Andrew Lunncca8b132015-04-02 04:06:39 +0200108 case PORT_SWITCH_ID_6131:
109 case PORT_SWITCH_ID_6131_B2:
Guenter Roeckd1988932015-04-02 04:06:31 +0200110 ps->num_ports = 8;
111 break;
112 default:
113 return -ENODEV;
114 }
115
Andrew Lunn143a8302015-04-02 04:06:34 +0200116 ret = mv88e6xxx_switch_reset(ds, false);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000117 if (ret < 0)
118 return ret;
119
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000120 ret = mv88e6131_setup_global(ds);
121 if (ret < 0)
122 return ret;
123
Andrew Lunndbde9e62015-05-06 01:09:48 +0200124 return mv88e6xxx_setup_ports(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000125}
126
Guenter Roeckd1988932015-04-02 04:06:31 +0200127static int mv88e6131_port_to_phy_addr(struct dsa_switch *ds, int port)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000128{
Guenter Roeckd1988932015-04-02 04:06:31 +0200129 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
130
131 if (port >= 0 && port < ps->num_ports)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000132 return port;
Guenter Roeckd1988932015-04-02 04:06:31 +0200133
134 return -EINVAL;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000135}
136
137static int
138mv88e6131_phy_read(struct dsa_switch *ds, int port, int regnum)
139{
Guenter Roeckd1988932015-04-02 04:06:31 +0200140 int addr = mv88e6131_port_to_phy_addr(ds, port);
141
142 if (addr < 0)
143 return addr;
144
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000145 return mv88e6xxx_phy_read_ppu(ds, addr, regnum);
146}
147
148static int
149mv88e6131_phy_write(struct dsa_switch *ds,
150 int port, int regnum, u16 val)
151{
Guenter Roeckd1988932015-04-02 04:06:31 +0200152 int addr = mv88e6131_port_to_phy_addr(ds, port);
153
154 if (addr < 0)
155 return addr;
156
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000157 return mv88e6xxx_phy_write_ppu(ds, addr, regnum, val);
158}
159
Ben Hutchings98e67302011-11-25 14:36:19 +0000160struct dsa_switch_driver mv88e6131_switch_driver = {
Florian Fainelliac7a04c2014-09-11 21:18:09 -0700161 .tag_protocol = DSA_TAG_PROTO_DSA,
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000162 .priv_size = sizeof(struct mv88e6xxx_priv_state),
163 .probe = mv88e6131_probe,
164 .setup = mv88e6131_setup,
165 .set_addr = mv88e6xxx_set_addr_direct,
166 .phy_read = mv88e6131_phy_read,
167 .phy_write = mv88e6131_phy_write,
Andrew Lunne413e7e2015-04-02 04:06:38 +0200168 .get_strings = mv88e6xxx_get_strings,
169 .get_ethtool_stats = mv88e6xxx_get_ethtool_stats,
170 .get_sset_count = mv88e6xxx_get_sset_count,
Andrew Lunndea87022015-08-31 15:56:47 +0200171 .adjust_link = mv88e6xxx_adjust_link,
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000172};
Ben Hutchings3d825ed2011-11-25 14:37:16 +0000173
174MODULE_ALIAS("platform:mv88e6085");
175MODULE_ALIAS("platform:mv88e6095");
176MODULE_ALIAS("platform:mv88e6095f");
177MODULE_ALIAS("platform:mv88e6131");