blob: 1a5a15bf16dfdcefdcdf3cea9dfa3cc7f41c94ef [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{
47 int ret;
Andrew Lunn54d792f2015-05-06 01:09:47 +020048
49 ret = mv88e6xxx_setup_global(ds);
50 if (ret)
51 return ret;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000052
Barry Grussling3675c8d2013-01-08 16:05:53 +000053 /* Enable the PHY polling unit, don't discard packets with
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000054 * excessive collisions, use a weighted fair queueing scheme
55 * to arbitrate between packet queues, set the maximum frame
56 * size to 1632, and mask all interrupt sources.
57 */
58 REG_WRITE(REG_GLOBAL, 0x04, 0x4400);
59
Barry Grussling3675c8d2013-01-08 16:05:53 +000060 /* Set the VLAN ethertype to 0x8100. */
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000061 REG_WRITE(REG_GLOBAL, 0x19, 0x8100);
62
Barry Grussling3675c8d2013-01-08 16:05:53 +000063 /* Disable ARP mirroring, and configure the upstream port as
Lennert Buytenheke84665c2009-03-20 09:52:09 +000064 * the port to which ingress and egress monitor frames are to
65 * be sent.
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000066 */
Lennert Buytenheke84665c2009-03-20 09:52:09 +000067 REG_WRITE(REG_GLOBAL, 0x1a, (dsa_upstream_port(ds) * 0x1100) | 0x00f0);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000068
Barry Grussling3675c8d2013-01-08 16:05:53 +000069 /* Disable cascade port functionality unless this device
Barry Grussling81399ec2011-06-24 19:53:51 +000070 * is used in a cascade configuration, and set the switch's
Lennert Buytenheke84665c2009-03-20 09:52:09 +000071 * DSA device number.
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000072 */
Barry Grussling81399ec2011-06-24 19:53:51 +000073 if (ds->dst->pd->nr_chips > 1)
74 REG_WRITE(REG_GLOBAL, 0x1c, 0xf000 | (ds->index & 0x1f));
75 else
76 REG_WRITE(REG_GLOBAL, 0x1c, 0xe000 | (ds->index & 0x1f));
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000077
Barry Grussling3675c8d2013-01-08 16:05:53 +000078 /* Force the priority of IGMP/MLD snoop frames and ARP frames
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000079 * to the highest setting.
80 */
81 REG_WRITE(REG_GLOBAL2, 0x0f, 0x00ff);
82
83 return 0;
84}
85
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000086static int mv88e6131_setup(struct dsa_switch *ds)
87{
Guenter Roeckd1988932015-04-02 04:06:31 +020088 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000089 int ret;
90
Guenter Roeck0d65da42015-04-02 04:06:29 +020091 ret = mv88e6xxx_setup_common(ds);
92 if (ret < 0)
93 return ret;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000094
Guenter Roeck0d65da42015-04-02 04:06:29 +020095 mv88e6xxx_ppu_state_init(ds);
Peter Korsgaardec80bfc2011-04-05 03:03:56 +000096
Guenter Roeckd1988932015-04-02 04:06:31 +020097 switch (ps->id) {
Andrew Lunncca8b132015-04-02 04:06:39 +020098 case PORT_SWITCH_ID_6085:
Guenter Roeckd1988932015-04-02 04:06:31 +020099 ps->num_ports = 10;
100 break;
Andrew Lunncca8b132015-04-02 04:06:39 +0200101 case PORT_SWITCH_ID_6095:
Guenter Roeckd1988932015-04-02 04:06:31 +0200102 ps->num_ports = 11;
103 break;
Andrew Lunncca8b132015-04-02 04:06:39 +0200104 case PORT_SWITCH_ID_6131:
105 case PORT_SWITCH_ID_6131_B2:
Guenter Roeckd1988932015-04-02 04:06:31 +0200106 ps->num_ports = 8;
107 break;
108 default:
109 return -ENODEV;
110 }
111
Andrew Lunn143a8302015-04-02 04:06:34 +0200112 ret = mv88e6xxx_switch_reset(ds, false);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000113 if (ret < 0)
114 return ret;
115
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000116 ret = mv88e6131_setup_global(ds);
117 if (ret < 0)
118 return ret;
119
Andrew Lunndbde9e62015-05-06 01:09:48 +0200120 return mv88e6xxx_setup_ports(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000121}
122
Guenter Roeckd1988932015-04-02 04:06:31 +0200123static int mv88e6131_port_to_phy_addr(struct dsa_switch *ds, int port)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000124{
Guenter Roeckd1988932015-04-02 04:06:31 +0200125 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
126
127 if (port >= 0 && port < ps->num_ports)
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000128 return port;
Guenter Roeckd1988932015-04-02 04:06:31 +0200129
130 return -EINVAL;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000131}
132
133static int
134mv88e6131_phy_read(struct dsa_switch *ds, int port, int regnum)
135{
Guenter Roeckd1988932015-04-02 04:06:31 +0200136 int addr = mv88e6131_port_to_phy_addr(ds, port);
137
138 if (addr < 0)
139 return addr;
140
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000141 return mv88e6xxx_phy_read_ppu(ds, addr, regnum);
142}
143
144static int
145mv88e6131_phy_write(struct dsa_switch *ds,
146 int port, int regnum, u16 val)
147{
Guenter Roeckd1988932015-04-02 04:06:31 +0200148 int addr = mv88e6131_port_to_phy_addr(ds, port);
149
150 if (addr < 0)
151 return addr;
152
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000153 return mv88e6xxx_phy_write_ppu(ds, addr, regnum, val);
154}
155
Ben Hutchings98e67302011-11-25 14:36:19 +0000156struct dsa_switch_driver mv88e6131_switch_driver = {
Florian Fainelliac7a04c2014-09-11 21:18:09 -0700157 .tag_protocol = DSA_TAG_PROTO_DSA,
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000158 .priv_size = sizeof(struct mv88e6xxx_priv_state),
159 .probe = mv88e6131_probe,
160 .setup = mv88e6131_setup,
161 .set_addr = mv88e6xxx_set_addr_direct,
162 .phy_read = mv88e6131_phy_read,
163 .phy_write = mv88e6131_phy_write,
164 .poll_link = mv88e6xxx_poll_link,
Andrew Lunne413e7e2015-04-02 04:06:38 +0200165 .get_strings = mv88e6xxx_get_strings,
166 .get_ethtool_stats = mv88e6xxx_get_ethtool_stats,
167 .get_sset_count = mv88e6xxx_get_sset_count,
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000168};
Ben Hutchings3d825ed2011-11-25 14:37:16 +0000169
170MODULE_ALIAS("platform:mv88e6085");
171MODULE_ALIAS("platform:mv88e6095");
172MODULE_ALIAS("platform:mv88e6095f");
173MODULE_ALIAS("platform:mv88e6131");