Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * net/dsa/mv88e6060.c - Driver for Marvell 88e6060 switch chips
3 * Copyright (c) 2008-2009 Marvell Semiconductor
4 *
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
11#include <linux/delay.h>
12#include <linux/jiffies.h>
13#include <linux/list.h>
14#include <linux/module.h>
15#include <linux/netdevice.h>
16#include <linux/phy.h>
17#include <net/dsa.h>
18
19#define REG_PORT(p) (8 + (p))
20#define REG_GLOBAL 0x0f
21
22static int reg_read(struct dsa_switch *ds, int addr, int reg)
23{
24 struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev);
25
26 if (bus == NULL)
27 return -EINVAL;
28
29 return mdiobus_read(bus, ds->pd->sw_addr + addr, reg);
30}
31
32#define REG_READ(addr, reg) \
33 ({ \
34 int __ret; \
35 \
36 __ret = reg_read(ds, addr, reg); \
37 if (__ret < 0) \
38 return __ret; \
39 __ret; \
40 })
41
42
43static int reg_write(struct dsa_switch *ds, int addr, int reg, u16 val)
44{
45 struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev);
46
47 if (bus == NULL)
48 return -EINVAL;
49
50 return mdiobus_write(bus, ds->pd->sw_addr + addr, reg, val);
51}
52
53#define REG_WRITE(addr, reg, val) \
54 ({ \
55 int __ret; \
56 \
57 __ret = reg_write(ds, addr, reg, val); \
58 if (__ret < 0) \
59 return __ret; \
60 })
61
62static char *mv88e6060_probe(struct device *host_dev, int sw_addr)
63{
64 struct mii_bus *bus = dsa_host_dev_to_mii_bus(host_dev);
65 int ret;
66
67 if (bus == NULL)
68 return NULL;
69
70 ret = mdiobus_read(bus, sw_addr + REG_PORT(0), 0x03);
71 if (ret >= 0) {
72 ret &= 0xfff0;
73 if (ret == 0x0600)
74 return "Marvell 88E6060";
75 }
76
77 return NULL;
78}
79
80static int mv88e6060_switch_reset(struct dsa_switch *ds)
81{
82 int i;
83 int ret;
84 unsigned long timeout;
85
86 /* Set all ports to the disabled state. */
87 for (i = 0; i < 6; i++) {
88 ret = REG_READ(REG_PORT(i), 0x04);
89 REG_WRITE(REG_PORT(i), 0x04, ret & 0xfffc);
90 }
91
92 /* Wait for transmit queues to drain. */
93 usleep_range(2000, 4000);
94
95 /* Reset the switch. */
96 REG_WRITE(REG_GLOBAL, 0x0a, 0xa130);
97
98 /* Wait up to one second for reset to complete. */
99 timeout = jiffies + 1 * HZ;
100 while (time_before(jiffies, timeout)) {
101 ret = REG_READ(REG_GLOBAL, 0x00);
102 if ((ret & 0x8000) == 0x0000)
103 break;
104
105 usleep_range(1000, 2000);
106 }
107 if (time_after(jiffies, timeout))
108 return -ETIMEDOUT;
109
110 return 0;
111}
112
113static int mv88e6060_setup_global(struct dsa_switch *ds)
114{
115 /* Disable discarding of frames with excessive collisions,
116 * set the maximum frame size to 1536 bytes, and mask all
117 * interrupt sources.
118 */
119 REG_WRITE(REG_GLOBAL, 0x04, 0x0800);
120
121 /* Enable automatic address learning, set the address
122 * database size to 1024 entries, and set the default aging
123 * time to 5 minutes.
124 */
125 REG_WRITE(REG_GLOBAL, 0x0a, 0x2130);
126
127 return 0;
128}
129
130static int mv88e6060_setup_port(struct dsa_switch *ds, int p)
131{
132 int addr = REG_PORT(p);
133
134 /* Do not force flow control, disable Ingress and Egress
135 * Header tagging, disable VLAN tunneling, and set the port
136 * state to Forwarding. Additionally, if this is the CPU
137 * port, enable Ingress and Egress Trailer tagging mode.
138 */
139 REG_WRITE(addr, 0x04, dsa_is_cpu_port(ds, p) ? 0x4103 : 0x0003);
140
141 /* Port based VLAN map: give each port its own address
142 * database, allow the CPU port to talk to each of the 'real'
143 * ports, and allow each of the 'real' ports to only talk to
144 * the CPU port.
145 */
146 REG_WRITE(addr, 0x06,
147 ((p & 0xf) << 12) |
148 (dsa_is_cpu_port(ds, p) ?
149 ds->phys_port_mask :
150 (1 << ds->dst->cpu_port)));
151
152 /* Port Association Vector: when learning source addresses
153 * of packets, add the address to the address database using
154 * a port bitmap that has only the bit for this port set and
155 * the other bits clear.
156 */
157 REG_WRITE(addr, 0x0b, 1 << p);
158
159 return 0;
160}
161
162static int mv88e6060_setup(struct dsa_switch *ds)
163{
164 int i;
165 int ret;
166
167 ret = mv88e6060_switch_reset(ds);
168 if (ret < 0)
169 return ret;
170
171 /* @@@ initialise atu */
172
173 ret = mv88e6060_setup_global(ds);
174 if (ret < 0)
175 return ret;
176
177 for (i = 0; i < 6; i++) {
178 ret = mv88e6060_setup_port(ds, i);
179 if (ret < 0)
180 return ret;
181 }
182
183 return 0;
184}
185
186static int mv88e6060_set_addr(struct dsa_switch *ds, u8 *addr)
187{
188 REG_WRITE(REG_GLOBAL, 0x01, (addr[0] << 8) | addr[1]);
189 REG_WRITE(REG_GLOBAL, 0x02, (addr[2] << 8) | addr[3]);
190 REG_WRITE(REG_GLOBAL, 0x03, (addr[4] << 8) | addr[5]);
191
192 return 0;
193}
194
195static int mv88e6060_port_to_phy_addr(int port)
196{
197 if (port >= 0 && port <= 5)
198 return port;
199 return -1;
200}
201
202static int mv88e6060_phy_read(struct dsa_switch *ds, int port, int regnum)
203{
204 int addr;
205
206 addr = mv88e6060_port_to_phy_addr(port);
207 if (addr == -1)
208 return 0xffff;
209
210 return reg_read(ds, addr, regnum);
211}
212
213static int
214mv88e6060_phy_write(struct dsa_switch *ds, int port, int regnum, u16 val)
215{
216 int addr;
217
218 addr = mv88e6060_port_to_phy_addr(port);
219 if (addr == -1)
220 return 0xffff;
221
222 return reg_write(ds, addr, regnum, val);
223}
224
225static void mv88e6060_poll_link(struct dsa_switch *ds)
226{
227 int i;
228
229 for (i = 0; i < DSA_MAX_PORTS; i++) {
230 struct net_device *dev;
231 int uninitialized_var(port_status);
232 int link;
233 int speed;
234 int duplex;
235 int fc;
236
237 dev = ds->ports[i];
238 if (dev == NULL)
239 continue;
240
241 link = 0;
242 if (dev->flags & IFF_UP) {
243 port_status = reg_read(ds, REG_PORT(i), 0x00);
244 if (port_status < 0)
245 continue;
246
247 link = !!(port_status & 0x1000);
248 }
249
250 if (!link) {
251 if (netif_carrier_ok(dev)) {
252 netdev_info(dev, "link down\n");
253 netif_carrier_off(dev);
254 }
255 continue;
256 }
257
258 speed = (port_status & 0x0100) ? 100 : 10;
259 duplex = (port_status & 0x0200) ? 1 : 0;
260 fc = ((port_status & 0xc000) == 0xc000) ? 1 : 0;
261
262 if (!netif_carrier_ok(dev)) {
263 netdev_info(dev,
264 "link up, %d Mb/s, %s duplex, flow control %sabled\n",
265 speed,
266 duplex ? "full" : "half",
267 fc ? "en" : "dis");
268 netif_carrier_on(dev);
269 }
270 }
271}
272
273static struct dsa_switch_driver mv88e6060_switch_driver = {
274 .tag_protocol = DSA_TAG_PROTO_TRAILER,
275 .probe = mv88e6060_probe,
276 .setup = mv88e6060_setup,
277 .set_addr = mv88e6060_set_addr,
278 .phy_read = mv88e6060_phy_read,
279 .phy_write = mv88e6060_phy_write,
280 .poll_link = mv88e6060_poll_link,
281};
282
283static int __init mv88e6060_init(void)
284{
285 register_switch_driver(&mv88e6060_switch_driver);
286 return 0;
287}
288module_init(mv88e6060_init);
289
290static void __exit mv88e6060_cleanup(void)
291{
292 unregister_switch_driver(&mv88e6060_switch_driver);
293}
294module_exit(mv88e6060_cleanup);
295
296MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>");
297MODULE_DESCRIPTION("Driver for Marvell 88E6060 ethernet switch chip");
298MODULE_LICENSE("GPL");
299MODULE_ALIAS("platform:mv88e6060");