2 * net/dsa/mv88e6063.c - Driver for Marvell 88e6063 switch chips
3 * Copyright (c) 2009 Gabor Juhos <juhosg@openwrt.org>
5 * This driver was base on: net/dsa/mv88e6060.c
6 * net/dsa/mv88e6063.c - Driver for Marvell 88e6060 switch chips
7 * Copyright (c) 2008-2009 Marvell Semiconductor
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.
15 #include <linux/list.h>
16 #include <linux/netdevice.h>
17 #include <linux/phy.h>
21 #define REG_PHY(p) (REG_BASE + (p))
22 #define REG_PORT(p) (REG_BASE + 8 + (p))
23 #define REG_GLOBAL (REG_BASE + 0x0f)
26 static int reg_read(struct dsa_switch
*ds
, int addr
, int reg
)
28 return mdiobus_read(ds
->master_mii_bus
, addr
, reg
);
31 #define REG_READ(addr, reg) \
35 __ret = reg_read(ds, addr, reg); \
42 static int reg_write(struct dsa_switch
*ds
, int addr
, int reg
, u16 val
)
44 return mdiobus_write(ds
->master_mii_bus
, addr
, reg
, val
);
47 #define REG_WRITE(addr, reg, val) \
51 __ret = reg_write(ds, addr, reg, val); \
56 static char *mv88e6063_probe(struct mii_bus
*bus
, int sw_addr
)
60 ret
= mdiobus_read(bus
, REG_PORT(0), 0x03);
64 return "Marvell 88E6063";
70 static int mv88e6063_switch_reset(struct dsa_switch
*ds
)
76 * Set all ports to the disabled state.
78 for (i
= 0; i
< NUM_PORTS
; i
++) {
79 ret
= REG_READ(REG_PORT(i
), 0x04);
80 REG_WRITE(REG_PORT(i
), 0x04, ret
& 0xfffc);
84 * Wait for transmit queues to drain.
91 REG_WRITE(REG_GLOBAL
, 0x0a, 0xa130);
94 * Wait up to one second for reset to complete.
96 for (i
= 0; i
< 1000; i
++) {
97 ret
= REG_READ(REG_GLOBAL
, 0x00);
98 if ((ret
& 0x8000) == 0x0000)
109 static int mv88e6063_setup_global(struct dsa_switch
*ds
)
112 * Disable discarding of frames with excessive collisions,
113 * set the maximum frame size to 1536 bytes, and mask all
116 REG_WRITE(REG_GLOBAL
, 0x04, 0x0800);
119 * Enable automatic address learning, set the address
120 * database size to 1024 entries, and set the default aging
123 REG_WRITE(REG_GLOBAL
, 0x0a, 0x2130);
128 static int mv88e6063_setup_port(struct dsa_switch
*ds
, int p
)
130 int addr
= REG_PORT(p
);
133 * Do not force flow control, disable Ingress and Egress
134 * Header tagging, disable VLAN tunneling, and set the port
135 * state to Forwarding. Additionally, if this is the CPU
136 * port, enable Ingress and Egress Trailer tagging mode.
138 REG_WRITE(addr
, 0x04, dsa_is_cpu_port(ds
, p
) ? 0x4103 : 0x0003);
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
146 REG_WRITE(addr
, 0x06,
148 (dsa_is_cpu_port(ds
, p
) ?
150 (1 << ds
->dst
->cpu_port
)));
153 * Port Association Vector: when learning source addresses
154 * of packets, add the address to the address database using
155 * a port bitmap that has only the bit for this port set and
156 * the other bits clear.
158 REG_WRITE(addr
, 0x0b, 1 << p
);
163 static int mv88e6063_setup(struct dsa_switch
*ds
)
168 ret
= mv88e6063_switch_reset(ds
);
172 /* @@@ initialise atu */
174 ret
= mv88e6063_setup_global(ds
);
178 for (i
= 0; i
< NUM_PORTS
; i
++) {
179 ret
= mv88e6063_setup_port(ds
, i
);
187 static int mv88e6063_set_addr(struct dsa_switch
*ds
, u8
*addr
)
189 REG_WRITE(REG_GLOBAL
, 0x01, (addr
[0] << 8) | addr
[1]);
190 REG_WRITE(REG_GLOBAL
, 0x02, (addr
[2] << 8) | addr
[3]);
191 REG_WRITE(REG_GLOBAL
, 0x03, (addr
[4] << 8) | addr
[5]);
196 static int mv88e6063_port_to_phy_addr(int port
)
198 if (port
>= 0 && port
<= NUM_PORTS
)
199 return REG_PHY(port
);
203 static int mv88e6063_phy_read(struct dsa_switch
*ds
, int port
, int regnum
)
207 addr
= mv88e6063_port_to_phy_addr(port
);
211 return reg_read(ds
, addr
, regnum
);
215 mv88e6063_phy_write(struct dsa_switch
*ds
, int port
, int regnum
, u16 val
)
219 addr
= mv88e6063_port_to_phy_addr(port
);
223 return reg_write(ds
, addr
, regnum
, val
);
226 static void mv88e6063_poll_link(struct dsa_switch
*ds
)
230 for (i
= 0; i
< DSA_MAX_PORTS
; i
++) {
231 struct net_device
*dev
;
232 int uninitialized_var(port_status
);
243 if (dev
->flags
& IFF_UP
) {
244 port_status
= reg_read(ds
, REG_PORT(i
), 0x00);
248 link
= !!(port_status
& 0x1000);
252 if (netif_carrier_ok(dev
)) {
253 printk(KERN_INFO
"%s: link down\n", dev
->name
);
254 netif_carrier_off(dev
);
259 speed
= (port_status
& 0x0100) ? 100 : 10;
260 duplex
= (port_status
& 0x0200) ? 1 : 0;
261 fc
= ((port_status
& 0xc000) == 0xc000) ? 1 : 0;
263 if (!netif_carrier_ok(dev
)) {
264 printk(KERN_INFO
"%s: link up, %d Mb/s, %s duplex, "
265 "flow control %sabled\n", dev
->name
,
266 speed
, duplex
? "full" : "half",
268 netif_carrier_on(dev
);
273 static struct dsa_switch_driver mv88e6063_switch_driver
= {
274 .tag_protocol
= htons(ETH_P_TRAILER
),
275 .probe
= mv88e6063_probe
,
276 .setup
= mv88e6063_setup
,
277 .set_addr
= mv88e6063_set_addr
,
278 .phy_read
= mv88e6063_phy_read
,
279 .phy_write
= mv88e6063_phy_write
,
280 .poll_link
= mv88e6063_poll_link
,
283 static int __init
mv88e6063_init(void)
285 register_switch_driver(&mv88e6063_switch_driver
);
288 module_init(mv88e6063_init
);
290 static void __exit
mv88e6063_cleanup(void)
292 unregister_switch_driver(&mv88e6063_switch_driver
);
294 module_exit(mv88e6063_cleanup
);