blob: 765de63f59bdca50ec734d1caec140c7c6874e4e [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
Alexander Duyckb4d23942014-09-15 13:00:27 -040020static char *mv88e6131_probe(struct device *host_dev, int sw_addr)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000021{
Alexander Duyckb4d23942014-09-15 13:00:27 -040022 struct mii_bus *bus = dsa_host_dev_to_mii_bus(host_dev);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000023 int ret;
24
Alexander Duyckb4d23942014-09-15 13:00:27 -040025 if (bus == NULL)
26 return NULL;
27
Andrew Lunncca8b132015-04-02 04:06:39 +020028 ret = __mv88e6xxx_reg_read(bus, sw_addr, REG_PORT(0), PORT_SWITCH_ID);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000029 if (ret >= 0) {
Guenter Roecka93e4642014-10-29 10:44:55 -070030 int ret_masked = ret & 0xfff0;
31
Andrew Lunncca8b132015-04-02 04:06:39 +020032 if (ret_masked == PORT_SWITCH_ID_6085)
Peter Korsgaardec80bfc2011-04-05 03:03:56 +000033 return "Marvell 88E6085";
Andrew Lunncca8b132015-04-02 04:06:39 +020034 if (ret_masked == PORT_SWITCH_ID_6095)
Lennert Buytenhek076d3e12009-03-20 09:50:39 +000035 return "Marvell 88E6095/88E6095F";
Andrew Lunncca8b132015-04-02 04:06:39 +020036 if (ret == PORT_SWITCH_ID_6131_B2)
Guenter Roecka93e4642014-10-29 10:44:55 -070037 return "Marvell 88E6131 (B2)";
Andrew Lunncca8b132015-04-02 04:06:39 +020038 if (ret_masked == PORT_SWITCH_ID_6131)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000039 return "Marvell 88E6131";
40 }
41
42 return NULL;
43}
44
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000045static int mv88e6131_setup_global(struct dsa_switch *ds)
46{
Andrew Lunn15966a22015-05-06 01:09:49 +020047 u32 upstream_port = dsa_upstream_port(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000048 int ret;
Andrew Lunn15966a22015-05-06 01:09:49 +020049 u32 reg;
Andrew Lunn54d792f2015-05-06 01:09:47 +020050
51 ret = mv88e6xxx_setup_global(ds);
52 if (ret)
53 return ret;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000054
Barry Grussling3675c8d2013-01-08 16:05:53 +000055 /* Enable the PHY polling unit, don't discard packets with
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000056 * excessive collisions, use a weighted fair queueing scheme
57 * to arbitrate between packet queues, set the maximum frame
58 * size to 1632, and mask all interrupt sources.
59 */
Andrew Lunn15966a22015-05-06 01:09:49 +020060 REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL,
61 GLOBAL_CONTROL_PPU_ENABLE | GLOBAL_CONTROL_MAX_FRAME_1632);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000062
Barry Grussling3675c8d2013-01-08 16:05:53 +000063 /* Set the VLAN ethertype to 0x8100. */
Andrew Lunn15966a22015-05-06 01:09:49 +020064 REG_WRITE(REG_GLOBAL, GLOBAL_CORE_TAG_TYPE, 0x8100);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000065
Barry Grussling3675c8d2013-01-08 16:05:53 +000066 /* Disable ARP mirroring, and configure the upstream port as
Lennert Buytenheke84665c2009-03-20 09:52:09 +000067 * the port to which ingress and egress monitor frames are to
68 * be sent.
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000069 */
Andrew Lunn15966a22015-05-06 01:09:49 +020070 reg = upstream_port << GLOBAL_MONITOR_CONTROL_INGRESS_SHIFT |
71 upstream_port << GLOBAL_MONITOR_CONTROL_EGRESS_SHIFT |
72 GLOBAL_MONITOR_CONTROL_ARP_DISABLED;
73 REG_WRITE(REG_GLOBAL, GLOBAL_MONITOR_CONTROL, reg);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000074
Barry Grussling3675c8d2013-01-08 16:05:53 +000075 /* Disable cascade port functionality unless this device
Barry Grussling81399ec2011-06-24 19:53:51 +000076 * is used in a cascade configuration, and set the switch's
Lennert Buytenheke84665c2009-03-20 09:52:09 +000077 * DSA device number.
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000078 */
Barry Grussling81399ec2011-06-24 19:53:51 +000079 if (ds->dst->pd->nr_chips > 1)
Andrew Lunn15966a22015-05-06 01:09:49 +020080 REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL_2,
81 GLOBAL_CONTROL_2_MULTIPLE_CASCADE |
82 (ds->index & 0x1f));
Barry Grussling81399ec2011-06-24 19:53:51 +000083 else
Andrew Lunn15966a22015-05-06 01:09:49 +020084 REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL_2,
85 GLOBAL_CONTROL_2_NO_CASCADE |
86 (ds->index & 0x1f));
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000087
Barry Grussling3675c8d2013-01-08 16:05:53 +000088 /* Force the priority of IGMP/MLD snoop frames and ARP frames
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000089 * to the highest setting.
90 */
Andrew Lunn15966a22015-05-06 01:09:49 +020091 REG_WRITE(REG_GLOBAL2, GLOBAL2_PRIO_OVERRIDE,
92 GLOBAL2_PRIO_OVERRIDE_FORCE_SNOOP |
93 7 << GLOBAL2_PRIO_OVERRIDE_SNOOP_SHIFT |
94 GLOBAL2_PRIO_OVERRIDE_FORCE_ARP |
95 7 << GLOBAL2_PRIO_OVERRIDE_ARP_SHIFT);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000096
97 return 0;
98}
99
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000100static int mv88e6131_setup(struct dsa_switch *ds)
101{
Guenter Roeckd1988932015-04-02 04:06:31 +0200102 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000103 int ret;
104
Guenter Roeck0d65da42015-04-02 04:06:29 +0200105 ret = mv88e6xxx_setup_common(ds);
106 if (ret < 0)
107 return ret;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000108
Guenter Roeck0d65da42015-04-02 04:06:29 +0200109 mv88e6xxx_ppu_state_init(ds);
Peter Korsgaardec80bfc2011-04-05 03:03:56 +0000110
Guenter Roeckd1988932015-04-02 04:06:31 +0200111 switch (ps->id) {
Andrew Lunncca8b132015-04-02 04:06:39 +0200112 case PORT_SWITCH_ID_6085:
Guenter Roeckd1988932015-04-02 04:06:31 +0200113 ps->num_ports = 10;
114 break;
Andrew Lunncca8b132015-04-02 04:06:39 +0200115 case PORT_SWITCH_ID_6095:
Guenter Roeckd1988932015-04-02 04:06:31 +0200116 ps->num_ports = 11;
117 break;
Andrew Lunncca8b132015-04-02 04:06:39 +0200118 case PORT_SWITCH_ID_6131:
119 case PORT_SWITCH_ID_6131_B2:
Guenter Roeckd1988932015-04-02 04:06:31 +0200120 ps->num_ports = 8;
121 break;
122 default:
123 return -ENODEV;
124 }
125
Andrew Lunn143a8302015-04-02 04:06:34 +0200126 ret = mv88e6xxx_switch_reset(ds, false);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000127 if (ret < 0)
128 return ret;
129
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000130 ret = mv88e6131_setup_global(ds);
131 if (ret < 0)
132 return ret;
133
Andrew Lunndbde9e62015-05-06 01:09:48 +0200134 return mv88e6xxx_setup_ports(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000135}
136
Guenter Roeckd1988932015-04-02 04:06:31 +0200137static int mv88e6131_port_to_phy_addr(struct dsa_switch *ds, int port)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000138{
Guenter Roeckd1988932015-04-02 04:06:31 +0200139 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
140
141 if (port >= 0 && port < ps->num_ports)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000142 return port;
Guenter Roeckd1988932015-04-02 04:06:31 +0200143
144 return -EINVAL;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000145}
146
147static int
148mv88e6131_phy_read(struct dsa_switch *ds, int port, int regnum)
149{
Guenter Roeckd1988932015-04-02 04:06:31 +0200150 int addr = mv88e6131_port_to_phy_addr(ds, port);
151
152 if (addr < 0)
153 return addr;
154
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000155 return mv88e6xxx_phy_read_ppu(ds, addr, regnum);
156}
157
158static int
159mv88e6131_phy_write(struct dsa_switch *ds,
160 int port, int regnum, u16 val)
161{
Guenter Roeckd1988932015-04-02 04:06:31 +0200162 int addr = mv88e6131_port_to_phy_addr(ds, port);
163
164 if (addr < 0)
165 return addr;
166
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000167 return mv88e6xxx_phy_write_ppu(ds, addr, regnum, val);
168}
169
Ben Hutchings98e67302011-11-25 14:36:19 +0000170struct dsa_switch_driver mv88e6131_switch_driver = {
Florian Fainelliac7a04c2014-09-11 21:18:09 -0700171 .tag_protocol = DSA_TAG_PROTO_DSA,
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000172 .priv_size = sizeof(struct mv88e6xxx_priv_state),
173 .probe = mv88e6131_probe,
174 .setup = mv88e6131_setup,
175 .set_addr = mv88e6xxx_set_addr_direct,
176 .phy_read = mv88e6131_phy_read,
177 .phy_write = mv88e6131_phy_write,
178 .poll_link = mv88e6xxx_poll_link,
Andrew Lunne413e7e2015-04-02 04:06:38 +0200179 .get_strings = mv88e6xxx_get_strings,
180 .get_ethtool_stats = mv88e6xxx_get_ethtool_stats,
181 .get_sset_count = mv88e6xxx_get_sset_count,
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000182};
Ben Hutchings3d825ed2011-11-25 14:37:16 +0000183
184MODULE_ALIAS("platform:mv88e6085");
185MODULE_ALIAS("platform:mv88e6095");
186MODULE_ALIAS("platform:mv88e6095f");
187MODULE_ALIAS("platform:mv88e6131");