mv88e6060.c 7.0 KB
Newer Older
1 2
/*
 * net/dsa/mv88e6060.c - Driver for Marvell 88e6060 switch chips
3
 * Copyright (c) 2008-2009 Marvell Semiconductor
4 5 6 7 8 9 10
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

11 12
#include <linux/delay.h>
#include <linux/jiffies.h>
13
#include <linux/list.h>
14
#include <linux/module.h>
15 16
#include <linux/netdevice.h>
#include <linux/phy.h>
17
#include <net/dsa.h>
18
#include "mv88e6060.h"
19 20 21

static int reg_read(struct dsa_switch *ds, int addr, int reg)
{
V
Vivien Didelot 已提交
22
	struct mv88e6060_priv *priv = ds->priv;
23

24
	return mdiobus_read_nested(priv->bus, priv->sw_addr + addr, reg);
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
}

#define REG_READ(addr, reg)					\
	({							\
		int __ret;					\
								\
		__ret = reg_read(ds, addr, reg);		\
		if (__ret < 0)					\
			return __ret;				\
		__ret;						\
	})


static int reg_write(struct dsa_switch *ds, int addr, int reg, u16 val)
{
V
Vivien Didelot 已提交
40
	struct mv88e6060_priv *priv = ds->priv;
41

42
	return mdiobus_write_nested(priv->bus, priv->sw_addr + addr, reg, val);
43 44 45 46 47 48 49 50 51 52 53
}

#define REG_WRITE(addr, reg, val)				\
	({							\
		int __ret;					\
								\
		__ret = reg_write(ds, addr, reg, val);		\
		if (__ret < 0)					\
			return __ret;				\
	})

V
Vivien Didelot 已提交
54
static const char *mv88e6060_get_name(struct mii_bus *bus, int sw_addr)
55 56 57
{
	int ret;

58
	ret = mdiobus_read(bus, sw_addr + REG_PORT(0), PORT_SWITCH_ID);
59
	if (ret >= 0) {
60
		if (ret == PORT_SWITCH_ID_6060)
61
			return "Marvell 88E6060 (A0)";
62 63
		if (ret == PORT_SWITCH_ID_6060_R1 ||
		    ret == PORT_SWITCH_ID_6060_R2)
64
			return "Marvell 88E6060 (B0)";
65
		if ((ret & PORT_SWITCH_ID_6060_MASK) == PORT_SWITCH_ID_6060)
66 67 68 69 70 71
			return "Marvell 88E6060";
	}

	return NULL;
}

72 73 74 75 76
static enum dsa_tag_protocol mv88e6060_get_tag_protocol(struct dsa_switch *ds)
{
	return DSA_TAG_PROTO_TRAILER;
}

V
Vivien Didelot 已提交
77 78 79
static const char *mv88e6060_drv_probe(struct device *dsa_dev,
				       struct device *host_dev, int sw_addr,
				       void **_priv)
80 81 82
{
	struct mii_bus *bus = dsa_host_dev_to_mii_bus(host_dev);
	struct mv88e6060_priv *priv;
V
Vivien Didelot 已提交
83
	const char *name;
84 85 86 87 88 89 90 91 92 93 94 95 96 97

	name = mv88e6060_get_name(bus, sw_addr);
	if (name) {
		priv = devm_kzalloc(dsa_dev, sizeof(*priv), GFP_KERNEL);
		if (!priv)
			return NULL;
		*_priv = priv;
		priv->bus = bus;
		priv->sw_addr = sw_addr;
	}

	return name;
}

98 99 100 101
static int mv88e6060_switch_reset(struct dsa_switch *ds)
{
	int i;
	int ret;
102
	unsigned long timeout;
103

104
	/* Set all ports to the disabled state. */
105 106 107 108
	for (i = 0; i < MV88E6060_PORTS; i++) {
		ret = REG_READ(REG_PORT(i), PORT_CONTROL);
		REG_WRITE(REG_PORT(i), PORT_CONTROL,
			  ret & ~PORT_CONTROL_STATE_MASK);
109 110
	}

111
	/* Wait for transmit queues to drain. */
112
	usleep_range(2000, 4000);
113

114
	/* Reset the switch. */
115 116 117 118
	REG_WRITE(REG_GLOBAL, GLOBAL_ATU_CONTROL,
		  GLOBAL_ATU_CONTROL_SWRESET |
		  GLOBAL_ATU_CONTROL_ATUSIZE_1024 |
		  GLOBAL_ATU_CONTROL_ATE_AGE_5MIN);
119

120
	/* Wait up to one second for reset to complete. */
121 122
	timeout = jiffies + 1 * HZ;
	while (time_before(jiffies, timeout)) {
123 124
		ret = REG_READ(REG_GLOBAL, GLOBAL_STATUS);
		if (ret & GLOBAL_STATUS_INIT_READY)
125 126
			break;

127
		usleep_range(1000, 2000);
128
	}
129
	if (time_after(jiffies, timeout))
130 131 132 133 134 135 136
		return -ETIMEDOUT;

	return 0;
}

static int mv88e6060_setup_global(struct dsa_switch *ds)
{
137
	/* Disable discarding of frames with excessive collisions,
138 139 140
	 * set the maximum frame size to 1536 bytes, and mask all
	 * interrupt sources.
	 */
141
	REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL, GLOBAL_CONTROL_MAX_FRAME_1536);
142

143
	/* Enable automatic address learning, set the address
144 145 146
	 * database size to 1024 entries, and set the default aging
	 * time to 5 minutes.
	 */
147 148 149
	REG_WRITE(REG_GLOBAL, GLOBAL_ATU_CONTROL,
		  GLOBAL_ATU_CONTROL_ATUSIZE_1024 |
		  GLOBAL_ATU_CONTROL_ATE_AGE_5MIN);
150 151 152 153 154 155 156 157

	return 0;
}

static int mv88e6060_setup_port(struct dsa_switch *ds, int p)
{
	int addr = REG_PORT(p);

158
	/* Do not force flow control, disable Ingress and Egress
159 160 161 162
	 * Header tagging, disable VLAN tunneling, and set the port
	 * state to Forwarding.  Additionally, if this is the CPU
	 * port, enable Ingress and Egress Trailer tagging mode.
	 */
163 164 165 166 167 168
	REG_WRITE(addr, PORT_CONTROL,
		  dsa_is_cpu_port(ds, p) ?
			PORT_CONTROL_TRAILER |
			PORT_CONTROL_INGRESS_MODE |
			PORT_CONTROL_STATE_FORWARDING :
			PORT_CONTROL_STATE_FORWARDING);
169

170
	/* Port based VLAN map: give each port its own address
171 172 173 174
	 * database, allow the CPU port to talk to each of the 'real'
	 * ports, and allow each of the 'real' ports to only talk to
	 * the CPU port.
	 */
175 176 177
	REG_WRITE(addr, PORT_VLAN_MAP,
		  ((p & 0xf) << PORT_VLAN_MAP_DBNUM_SHIFT) |
		   (dsa_is_cpu_port(ds, p) ?
178
			ds->enabled_port_mask :
179
			BIT(ds->ports[p].cpu_dp->index)));
180

181
	/* Port Association Vector: when learning source addresses
182 183 184 185
	 * of packets, add the address to the address database using
	 * a port bitmap that has only the bit for this port set and
	 * the other bits clear.
	 */
186
	REG_WRITE(addr, PORT_ASSOC_VECTOR, BIT(p));
187 188 189 190 191 192 193

	return 0;
}

static int mv88e6060_setup(struct dsa_switch *ds)
{
	int ret;
194
	int i;
195 196 197 198 199 200 201 202 203 204 205

	ret = mv88e6060_switch_reset(ds);
	if (ret < 0)
		return ret;

	/* @@@ initialise atu */

	ret = mv88e6060_setup_global(ds);
	if (ret < 0)
		return ret;

206
	for (i = 0; i < MV88E6060_PORTS; i++) {
207 208 209 210 211 212 213 214 215 216
		ret = mv88e6060_setup_port(ds, i);
		if (ret < 0)
			return ret;
	}

	return 0;
}

static int mv88e6060_set_addr(struct dsa_switch *ds, u8 *addr)
{
217 218 219 220 221 222 223 224
	u16 val = addr[0] << 8 | addr[1];

	/* The multicast bit is always transmitted as a zero, so the switch uses
	 * bit 8 for "DiffAddr", where 0 means all ports transmit the same SA.
	 */
	val &= 0xfeff;

	REG_WRITE(REG_GLOBAL, GLOBAL_MAC_01, val);
225 226
	REG_WRITE(REG_GLOBAL, GLOBAL_MAC_23, (addr[2] << 8) | addr[3]);
	REG_WRITE(REG_GLOBAL, GLOBAL_MAC_45, (addr[4] << 8) | addr[5]);
227 228 229 230 231 232

	return 0;
}

static int mv88e6060_port_to_phy_addr(int port)
{
233
	if (port >= 0 && port < MV88E6060_PORTS)
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
		return port;
	return -1;
}

static int mv88e6060_phy_read(struct dsa_switch *ds, int port, int regnum)
{
	int addr;

	addr = mv88e6060_port_to_phy_addr(port);
	if (addr == -1)
		return 0xffff;

	return reg_read(ds, addr, regnum);
}

static int
mv88e6060_phy_write(struct dsa_switch *ds, int port, int regnum, u16 val)
{
	int addr;

	addr = mv88e6060_port_to_phy_addr(port);
	if (addr == -1)
		return 0xffff;

	return reg_write(ds, addr, regnum, val);
}

261
static const struct dsa_switch_ops mv88e6060_switch_ops = {
262
	.get_tag_protocol = mv88e6060_get_tag_protocol,
263
	.probe		= mv88e6060_drv_probe,
264 265 266 267 268 269
	.setup		= mv88e6060_setup,
	.set_addr	= mv88e6060_set_addr,
	.phy_read	= mv88e6060_phy_read,
	.phy_write	= mv88e6060_phy_write,
};

270 271 272 273
static struct dsa_switch_driver mv88e6060_switch_drv = {
	.ops		= &mv88e6060_switch_ops,
};

R
Roel Kluin 已提交
274
static int __init mv88e6060_init(void)
275
{
276
	register_switch_driver(&mv88e6060_switch_drv);
277 278 279 280
	return 0;
}
module_init(mv88e6060_init);

R
Roel Kluin 已提交
281
static void __exit mv88e6060_cleanup(void)
282
{
283
	unregister_switch_driver(&mv88e6060_switch_drv);
284 285
}
module_exit(mv88e6060_cleanup);
286 287 288 289 290

MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>");
MODULE_DESCRIPTION("Driver for Marvell 88E6060 ethernet switch chip");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:mv88e6060");