blob: 8e1090ba3df3bfe289fa47add382f6cc1a32ffad [file] [log] [blame]
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001/*
2 * net/dsa/mv88e6xxx.c - Marvell 88e6xxx switch chip support
3 * Copyright (c) 2008 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
Barry Grussling19b2f972013-01-08 16:05:54 +000011#include <linux/delay.h>
12#include <linux/jiffies.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000013#include <linux/list.h>
Paul Gortmaker2bbba272012-01-24 10:41:40 +000014#include <linux/module.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000015#include <linux/netdevice.h>
16#include <linux/phy.h>
Ben Hutchingsc8f0b862011-11-27 17:06:08 +000017#include <net/dsa.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000018#include "mv88e6xxx.h"
19
Barry Grussling3675c8d2013-01-08 16:05:53 +000020/* If the switch's ADDR[4:0] strap pins are strapped to zero, it will
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000021 * use all 32 SMI bus addresses on its SMI bus, and all switch registers
22 * will be directly accessible on some {device address,register address}
23 * pair. If the ADDR[4:0] pins are not strapped to zero, the switch
24 * will only respond to SMI transactions to that specific address, and
25 * an indirect addressing mechanism needs to be used to access its
26 * registers.
27 */
28static int mv88e6xxx_reg_wait_ready(struct mii_bus *bus, int sw_addr)
29{
30 int ret;
31 int i;
32
33 for (i = 0; i < 16; i++) {
34 ret = mdiobus_read(bus, sw_addr, 0);
35 if (ret < 0)
36 return ret;
37
38 if ((ret & 0x8000) == 0)
39 return 0;
40 }
41
42 return -ETIMEDOUT;
43}
44
45int __mv88e6xxx_reg_read(struct mii_bus *bus, int sw_addr, int addr, int reg)
46{
47 int ret;
48
49 if (sw_addr == 0)
50 return mdiobus_read(bus, addr, reg);
51
Barry Grussling3675c8d2013-01-08 16:05:53 +000052 /* Wait for the bus to become free. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000053 ret = mv88e6xxx_reg_wait_ready(bus, sw_addr);
54 if (ret < 0)
55 return ret;
56
Barry Grussling3675c8d2013-01-08 16:05:53 +000057 /* Transmit the read command. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000058 ret = mdiobus_write(bus, sw_addr, 0, 0x9800 | (addr << 5) | reg);
59 if (ret < 0)
60 return ret;
61
Barry Grussling3675c8d2013-01-08 16:05:53 +000062 /* Wait for the read command to complete. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000063 ret = mv88e6xxx_reg_wait_ready(bus, sw_addr);
64 if (ret < 0)
65 return ret;
66
Barry Grussling3675c8d2013-01-08 16:05:53 +000067 /* Read the data. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000068 ret = mdiobus_read(bus, sw_addr, 1);
69 if (ret < 0)
70 return ret;
71
72 return ret & 0xffff;
73}
74
75int mv88e6xxx_reg_read(struct dsa_switch *ds, int addr, int reg)
76{
Florian Fainellia22adce2014-04-28 11:14:28 -070077 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Guenter Roeckb184e492014-10-17 12:30:58 -070078 struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000079 int ret;
80
Guenter Roeckb184e492014-10-17 12:30:58 -070081 if (bus == NULL)
82 return -EINVAL;
83
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000084 mutex_lock(&ps->smi_mutex);
Guenter Roeckb184e492014-10-17 12:30:58 -070085 ret = __mv88e6xxx_reg_read(bus, ds->pd->sw_addr, addr, reg);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000086 mutex_unlock(&ps->smi_mutex);
87
88 return ret;
89}
90
91int __mv88e6xxx_reg_write(struct mii_bus *bus, int sw_addr, int addr,
92 int reg, u16 val)
93{
94 int ret;
95
96 if (sw_addr == 0)
97 return mdiobus_write(bus, addr, reg, val);
98
Barry Grussling3675c8d2013-01-08 16:05:53 +000099 /* Wait for the bus to become free. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000100 ret = mv88e6xxx_reg_wait_ready(bus, sw_addr);
101 if (ret < 0)
102 return ret;
103
Barry Grussling3675c8d2013-01-08 16:05:53 +0000104 /* Transmit the data to write. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000105 ret = mdiobus_write(bus, sw_addr, 1, val);
106 if (ret < 0)
107 return ret;
108
Barry Grussling3675c8d2013-01-08 16:05:53 +0000109 /* Transmit the write command. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000110 ret = mdiobus_write(bus, sw_addr, 0, 0x9400 | (addr << 5) | reg);
111 if (ret < 0)
112 return ret;
113
Barry Grussling3675c8d2013-01-08 16:05:53 +0000114 /* Wait for the write command to complete. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000115 ret = mv88e6xxx_reg_wait_ready(bus, sw_addr);
116 if (ret < 0)
117 return ret;
118
119 return 0;
120}
121
122int mv88e6xxx_reg_write(struct dsa_switch *ds, int addr, int reg, u16 val)
123{
Florian Fainellia22adce2014-04-28 11:14:28 -0700124 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Guenter Roeckb184e492014-10-17 12:30:58 -0700125 struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000126 int ret;
127
Guenter Roeckb184e492014-10-17 12:30:58 -0700128 if (bus == NULL)
129 return -EINVAL;
130
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000131 mutex_lock(&ps->smi_mutex);
Guenter Roeckb184e492014-10-17 12:30:58 -0700132 ret = __mv88e6xxx_reg_write(bus, ds->pd->sw_addr, addr, reg, val);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000133 mutex_unlock(&ps->smi_mutex);
134
135 return ret;
136}
137
138int mv88e6xxx_config_prio(struct dsa_switch *ds)
139{
Barry Grussling3675c8d2013-01-08 16:05:53 +0000140 /* Configure the IP ToS mapping registers. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000141 REG_WRITE(REG_GLOBAL, 0x10, 0x0000);
142 REG_WRITE(REG_GLOBAL, 0x11, 0x0000);
143 REG_WRITE(REG_GLOBAL, 0x12, 0x5555);
144 REG_WRITE(REG_GLOBAL, 0x13, 0x5555);
145 REG_WRITE(REG_GLOBAL, 0x14, 0xaaaa);
146 REG_WRITE(REG_GLOBAL, 0x15, 0xaaaa);
147 REG_WRITE(REG_GLOBAL, 0x16, 0xffff);
148 REG_WRITE(REG_GLOBAL, 0x17, 0xffff);
149
Barry Grussling3675c8d2013-01-08 16:05:53 +0000150 /* Configure the IEEE 802.1p priority mapping register. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000151 REG_WRITE(REG_GLOBAL, 0x18, 0xfa41);
152
153 return 0;
154}
155
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000156int mv88e6xxx_set_addr_direct(struct dsa_switch *ds, u8 *addr)
157{
158 REG_WRITE(REG_GLOBAL, 0x01, (addr[0] << 8) | addr[1]);
159 REG_WRITE(REG_GLOBAL, 0x02, (addr[2] << 8) | addr[3]);
160 REG_WRITE(REG_GLOBAL, 0x03, (addr[4] << 8) | addr[5]);
161
162 return 0;
163}
164
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000165int mv88e6xxx_set_addr_indirect(struct dsa_switch *ds, u8 *addr)
166{
167 int i;
168 int ret;
169
170 for (i = 0; i < 6; i++) {
171 int j;
172
Barry Grussling3675c8d2013-01-08 16:05:53 +0000173 /* Write the MAC address byte. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000174 REG_WRITE(REG_GLOBAL2, 0x0d, 0x8000 | (i << 8) | addr[i]);
175
Barry Grussling3675c8d2013-01-08 16:05:53 +0000176 /* Wait for the write to complete. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000177 for (j = 0; j < 16; j++) {
178 ret = REG_READ(REG_GLOBAL2, 0x0d);
179 if ((ret & 0x8000) == 0)
180 break;
181 }
182 if (j == 16)
183 return -ETIMEDOUT;
184 }
185
186 return 0;
187}
188
189int mv88e6xxx_phy_read(struct dsa_switch *ds, int addr, int regnum)
190{
191 if (addr >= 0)
192 return mv88e6xxx_reg_read(ds, addr, regnum);
193 return 0xffff;
194}
195
196int mv88e6xxx_phy_write(struct dsa_switch *ds, int addr, int regnum, u16 val)
197{
198 if (addr >= 0)
199 return mv88e6xxx_reg_write(ds, addr, regnum, val);
200 return 0;
201}
202
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000203#ifdef CONFIG_NET_DSA_MV88E6XXX_NEED_PPU
204static int mv88e6xxx_ppu_disable(struct dsa_switch *ds)
205{
206 int ret;
Barry Grussling19b2f972013-01-08 16:05:54 +0000207 unsigned long timeout;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000208
209 ret = REG_READ(REG_GLOBAL, 0x04);
210 REG_WRITE(REG_GLOBAL, 0x04, ret & ~0x4000);
211
Barry Grussling19b2f972013-01-08 16:05:54 +0000212 timeout = jiffies + 1 * HZ;
213 while (time_before(jiffies, timeout)) {
Barry Grussling85686582013-01-08 16:05:56 +0000214 ret = REG_READ(REG_GLOBAL, 0x00);
Barry Grussling19b2f972013-01-08 16:05:54 +0000215 usleep_range(1000, 2000);
Barry Grussling85686582013-01-08 16:05:56 +0000216 if ((ret & 0xc000) != 0xc000)
217 return 0;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000218 }
219
220 return -ETIMEDOUT;
221}
222
223static int mv88e6xxx_ppu_enable(struct dsa_switch *ds)
224{
225 int ret;
Barry Grussling19b2f972013-01-08 16:05:54 +0000226 unsigned long timeout;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000227
228 ret = REG_READ(REG_GLOBAL, 0x04);
229 REG_WRITE(REG_GLOBAL, 0x04, ret | 0x4000);
230
Barry Grussling19b2f972013-01-08 16:05:54 +0000231 timeout = jiffies + 1 * HZ;
232 while (time_before(jiffies, timeout)) {
Barry Grussling85686582013-01-08 16:05:56 +0000233 ret = REG_READ(REG_GLOBAL, 0x00);
Barry Grussling19b2f972013-01-08 16:05:54 +0000234 usleep_range(1000, 2000);
Barry Grussling85686582013-01-08 16:05:56 +0000235 if ((ret & 0xc000) == 0xc000)
236 return 0;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000237 }
238
239 return -ETIMEDOUT;
240}
241
242static void mv88e6xxx_ppu_reenable_work(struct work_struct *ugly)
243{
244 struct mv88e6xxx_priv_state *ps;
245
246 ps = container_of(ugly, struct mv88e6xxx_priv_state, ppu_work);
247 if (mutex_trylock(&ps->ppu_mutex)) {
Barry Grussling85686582013-01-08 16:05:56 +0000248 struct dsa_switch *ds = ((struct dsa_switch *)ps) - 1;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000249
Barry Grussling85686582013-01-08 16:05:56 +0000250 if (mv88e6xxx_ppu_enable(ds) == 0)
251 ps->ppu_disabled = 0;
252 mutex_unlock(&ps->ppu_mutex);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000253 }
254}
255
256static void mv88e6xxx_ppu_reenable_timer(unsigned long _ps)
257{
258 struct mv88e6xxx_priv_state *ps = (void *)_ps;
259
260 schedule_work(&ps->ppu_work);
261}
262
263static int mv88e6xxx_ppu_access_get(struct dsa_switch *ds)
264{
Florian Fainellia22adce2014-04-28 11:14:28 -0700265 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000266 int ret;
267
268 mutex_lock(&ps->ppu_mutex);
269
Barry Grussling3675c8d2013-01-08 16:05:53 +0000270 /* If the PHY polling unit is enabled, disable it so that
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000271 * we can access the PHY registers. If it was already
272 * disabled, cancel the timer that is going to re-enable
273 * it.
274 */
275 if (!ps->ppu_disabled) {
Barry Grussling85686582013-01-08 16:05:56 +0000276 ret = mv88e6xxx_ppu_disable(ds);
277 if (ret < 0) {
278 mutex_unlock(&ps->ppu_mutex);
279 return ret;
280 }
281 ps->ppu_disabled = 1;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000282 } else {
Barry Grussling85686582013-01-08 16:05:56 +0000283 del_timer(&ps->ppu_timer);
284 ret = 0;
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000285 }
286
287 return ret;
288}
289
290static void mv88e6xxx_ppu_access_put(struct dsa_switch *ds)
291{
Florian Fainellia22adce2014-04-28 11:14:28 -0700292 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000293
Barry Grussling3675c8d2013-01-08 16:05:53 +0000294 /* Schedule a timer to re-enable the PHY polling unit. */
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000295 mod_timer(&ps->ppu_timer, jiffies + msecs_to_jiffies(10));
296 mutex_unlock(&ps->ppu_mutex);
297}
298
299void mv88e6xxx_ppu_state_init(struct dsa_switch *ds)
300{
Florian Fainellia22adce2014-04-28 11:14:28 -0700301 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000302
303 mutex_init(&ps->ppu_mutex);
304 INIT_WORK(&ps->ppu_work, mv88e6xxx_ppu_reenable_work);
305 init_timer(&ps->ppu_timer);
306 ps->ppu_timer.data = (unsigned long)ps;
307 ps->ppu_timer.function = mv88e6xxx_ppu_reenable_timer;
308}
309
310int mv88e6xxx_phy_read_ppu(struct dsa_switch *ds, int addr, int regnum)
311{
312 int ret;
313
314 ret = mv88e6xxx_ppu_access_get(ds);
315 if (ret >= 0) {
Barry Grussling85686582013-01-08 16:05:56 +0000316 ret = mv88e6xxx_reg_read(ds, addr, regnum);
317 mv88e6xxx_ppu_access_put(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000318 }
319
320 return ret;
321}
322
323int mv88e6xxx_phy_write_ppu(struct dsa_switch *ds, int addr,
324 int regnum, u16 val)
325{
326 int ret;
327
328 ret = mv88e6xxx_ppu_access_get(ds);
329 if (ret >= 0) {
Barry Grussling85686582013-01-08 16:05:56 +0000330 ret = mv88e6xxx_reg_write(ds, addr, regnum, val);
331 mv88e6xxx_ppu_access_put(ds);
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +0000332 }
333
334 return ret;
335}
336#endif
337
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000338void mv88e6xxx_poll_link(struct dsa_switch *ds)
339{
340 int i;
341
342 for (i = 0; i < DSA_MAX_PORTS; i++) {
343 struct net_device *dev;
Ingo Molnar2a9e7972008-11-25 16:50:49 -0800344 int uninitialized_var(port_status);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000345 int link;
346 int speed;
347 int duplex;
348 int fc;
349
350 dev = ds->ports[i];
351 if (dev == NULL)
352 continue;
353
354 link = 0;
355 if (dev->flags & IFF_UP) {
356 port_status = mv88e6xxx_reg_read(ds, REG_PORT(i), 0x00);
357 if (port_status < 0)
358 continue;
359
360 link = !!(port_status & 0x0800);
361 }
362
363 if (!link) {
364 if (netif_carrier_ok(dev)) {
Barry Grusslingab381a92013-01-08 16:05:55 +0000365 netdev_info(dev, "link down\n");
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000366 netif_carrier_off(dev);
367 }
368 continue;
369 }
370
371 switch (port_status & 0x0300) {
372 case 0x0000:
373 speed = 10;
374 break;
375 case 0x0100:
376 speed = 100;
377 break;
378 case 0x0200:
379 speed = 1000;
380 break;
381 default:
382 speed = -1;
383 break;
384 }
385 duplex = (port_status & 0x0400) ? 1 : 0;
386 fc = (port_status & 0x8000) ? 1 : 0;
387
388 if (!netif_carrier_ok(dev)) {
Barry Grusslingab381a92013-01-08 16:05:55 +0000389 netdev_info(dev,
390 "link up, %d Mb/s, %s duplex, flow control %sabled\n",
391 speed,
392 duplex ? "full" : "half",
393 fc ? "en" : "dis");
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000394 netif_carrier_on(dev);
395 }
396 }
397}
398
399static int mv88e6xxx_stats_wait(struct dsa_switch *ds)
400{
401 int ret;
402 int i;
403
404 for (i = 0; i < 10; i++) {
Stephane Contri1ded3f52009-07-02 23:26:48 +0000405 ret = REG_READ(REG_GLOBAL, 0x1d);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000406 if ((ret & 0x8000) == 0)
407 return 0;
408 }
409
410 return -ETIMEDOUT;
411}
412
413static int mv88e6xxx_stats_snapshot(struct dsa_switch *ds, int port)
414{
415 int ret;
416
Barry Grussling3675c8d2013-01-08 16:05:53 +0000417 /* Snapshot the hardware statistics counters for this port. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000418 REG_WRITE(REG_GLOBAL, 0x1d, 0xdc00 | port);
419
Barry Grussling3675c8d2013-01-08 16:05:53 +0000420 /* Wait for the snapshotting to complete. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000421 ret = mv88e6xxx_stats_wait(ds);
422 if (ret < 0)
423 return ret;
424
425 return 0;
426}
427
428static void mv88e6xxx_stats_read(struct dsa_switch *ds, int stat, u32 *val)
429{
430 u32 _val;
431 int ret;
432
433 *val = 0;
434
435 ret = mv88e6xxx_reg_write(ds, REG_GLOBAL, 0x1d, 0xcc00 | stat);
436 if (ret < 0)
437 return;
438
439 ret = mv88e6xxx_stats_wait(ds);
440 if (ret < 0)
441 return;
442
443 ret = mv88e6xxx_reg_read(ds, REG_GLOBAL, 0x1e);
444 if (ret < 0)
445 return;
446
447 _val = ret << 16;
448
449 ret = mv88e6xxx_reg_read(ds, REG_GLOBAL, 0x1f);
450 if (ret < 0)
451 return;
452
453 *val = _val | ret;
454}
455
456void mv88e6xxx_get_strings(struct dsa_switch *ds,
457 int nr_stats, struct mv88e6xxx_hw_stat *stats,
458 int port, uint8_t *data)
459{
460 int i;
461
462 for (i = 0; i < nr_stats; i++) {
463 memcpy(data + i * ETH_GSTRING_LEN,
464 stats[i].string, ETH_GSTRING_LEN);
465 }
466}
467
468void mv88e6xxx_get_ethtool_stats(struct dsa_switch *ds,
469 int nr_stats, struct mv88e6xxx_hw_stat *stats,
470 int port, uint64_t *data)
471{
Florian Fainellia22adce2014-04-28 11:14:28 -0700472 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000473 int ret;
474 int i;
475
476 mutex_lock(&ps->stats_mutex);
477
478 ret = mv88e6xxx_stats_snapshot(ds, port);
479 if (ret < 0) {
480 mutex_unlock(&ps->stats_mutex);
481 return;
482 }
483
Barry Grussling3675c8d2013-01-08 16:05:53 +0000484 /* Read each of the counters. */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000485 for (i = 0; i < nr_stats; i++) {
486 struct mv88e6xxx_hw_stat *s = stats + i;
487 u32 low;
488 u32 high;
489
490 mv88e6xxx_stats_read(ds, s->reg, &low);
491 if (s->sizeof_stat == 8)
492 mv88e6xxx_stats_read(ds, s->reg + 1, &high);
493 else
494 high = 0;
495
496 data[i] = (((u64)high) << 32) | low;
497 }
498
499 mutex_unlock(&ps->stats_mutex);
500}
Ben Hutchings98e67302011-11-25 14:36:19 +0000501
502static int __init mv88e6xxx_init(void)
503{
504#if IS_ENABLED(CONFIG_NET_DSA_MV88E6131)
505 register_switch_driver(&mv88e6131_switch_driver);
506#endif
507#if IS_ENABLED(CONFIG_NET_DSA_MV88E6123_61_65)
508 register_switch_driver(&mv88e6123_61_65_switch_driver);
509#endif
Guenter Roeck3ad50cc2014-10-29 10:44:56 -0700510#if IS_ENABLED(CONFIG_NET_DSA_MV88E6352)
511 register_switch_driver(&mv88e6352_switch_driver);
512#endif
Andrew Lunn42f27252014-09-12 23:58:44 +0200513#if IS_ENABLED(CONFIG_NET_DSA_MV88E6171)
514 register_switch_driver(&mv88e6171_switch_driver);
515#endif
Ben Hutchings98e67302011-11-25 14:36:19 +0000516 return 0;
517}
518module_init(mv88e6xxx_init);
519
520static void __exit mv88e6xxx_cleanup(void)
521{
Andrew Lunn42f27252014-09-12 23:58:44 +0200522#if IS_ENABLED(CONFIG_NET_DSA_MV88E6171)
523 unregister_switch_driver(&mv88e6171_switch_driver);
524#endif
Ben Hutchings98e67302011-11-25 14:36:19 +0000525#if IS_ENABLED(CONFIG_NET_DSA_MV88E6123_61_65)
526 unregister_switch_driver(&mv88e6123_61_65_switch_driver);
527#endif
528#if IS_ENABLED(CONFIG_NET_DSA_MV88E6131)
529 unregister_switch_driver(&mv88e6131_switch_driver);
530#endif
531}
532module_exit(mv88e6xxx_cleanup);
Ben Hutchings3d825ed2011-11-25 14:37:16 +0000533
534MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>");
535MODULE_DESCRIPTION("Driver for Marvell 88E6XXX ethernet switch chips");
536MODULE_LICENSE("GPL");