net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
/*
|
2016-06-22 00:28:19 +08:00
|
|
|
* Marvell 88e6xxx Ethernet switch single-chip support
|
|
|
|
*
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
* Copyright (c) 2008 Marvell Semiconductor
|
|
|
|
*
|
2016-05-11 05:27:21 +08:00
|
|
|
* Copyright (c) 2016 Andrew Lunn <andrew@lunn.ch>
|
|
|
|
*
|
2017-03-29 03:10:36 +08:00
|
|
|
* Copyright (c) 2016-2017 Savoir-faire Linux Inc.
|
|
|
|
* Vivien Didelot <vivien.didelot@savoirfairelinux.com>
|
|
|
|
*
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-01-09 00:05:54 +08:00
|
|
|
#include <linux/delay.h>
|
2015-03-27 09:36:38 +08:00
|
|
|
#include <linux/etherdevice.h>
|
2015-08-31 21:56:47 +08:00
|
|
|
#include <linux/ethtool.h>
|
2015-03-27 09:36:35 +08:00
|
|
|
#include <linux/if_bridge.h>
|
2016-10-17 01:56:49 +08:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/irqdomain.h>
|
2013-01-09 00:05:54 +08:00
|
|
|
#include <linux/jiffies.h>
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
#include <linux/list.h>
|
2016-05-11 05:27:21 +08:00
|
|
|
#include <linux/mdio.h>
|
2012-01-24 18:41:40 +08:00
|
|
|
#include <linux/module.h>
|
2016-06-21 01:14:09 +08:00
|
|
|
#include <linux/of_device.h>
|
2016-10-17 01:56:49 +08:00
|
|
|
#include <linux/of_irq.h>
|
2016-06-05 03:17:06 +08:00
|
|
|
#include <linux/of_mdio.h>
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
#include <linux/netdevice.h>
|
2015-11-20 10:56:24 +08:00
|
|
|
#include <linux/gpio/consumer.h>
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
#include <linux/phy.h>
|
2011-11-28 01:06:08 +08:00
|
|
|
#include <net/dsa.h>
|
2016-09-03 02:45:33 +08:00
|
|
|
|
2017-06-03 05:06:15 +08:00
|
|
|
#include "chip.h"
|
2016-09-30 00:21:53 +08:00
|
|
|
#include "global1.h"
|
2016-09-03 02:45:33 +08:00
|
|
|
#include "global2.h"
|
2017-05-26 07:03:20 +08:00
|
|
|
#include "phy.h"
|
2016-11-04 10:23:26 +08:00
|
|
|
#include "port.h"
|
2017-05-26 07:03:21 +08:00
|
|
|
#include "serdes.h"
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static void assert_reg_lock(struct mv88e6xxx_chip *chip)
|
2015-10-31 06:56:45 +08:00
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
if (unlikely(!mutex_is_locked(&chip->reg_lock))) {
|
|
|
|
dev_err(chip->dev, "Switch registers lock not held!\n");
|
2015-10-31 06:56:45 +08:00
|
|
|
dump_stack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-21 01:14:11 +08:00
|
|
|
/* The switch ADDR[4:1] configuration pins define the chip SMI device address
|
|
|
|
* (ADDR[0] is always zero, thus only even SMI addresses can be strapped).
|
|
|
|
*
|
|
|
|
* When ADDR is all zero, the chip uses Single-chip Addressing Mode, assuming it
|
|
|
|
* is the only device connected to the SMI master. In this mode it responds to
|
|
|
|
* all 32 possible SMI addresses, and thus maps directly the internal devices.
|
|
|
|
*
|
|
|
|
* When ADDR is non-zero, the chip uses Multi-chip Addressing Mode, allowing
|
|
|
|
* multiple devices to share the SMI interface. In this mode it responds to only
|
|
|
|
* 2 registers, used to indirectly access the internal SMI devices.
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
*/
|
2016-06-21 01:14:11 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_smi_read(struct mv88e6xxx_chip *chip,
|
2016-06-21 01:14:11 +08:00
|
|
|
int addr, int reg, u16 *val)
|
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
if (!chip->smi_ops)
|
2016-06-21 01:14:11 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
return chip->smi_ops->read(chip, addr, reg, val);
|
2016-06-21 01:14:11 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_smi_write(struct mv88e6xxx_chip *chip,
|
2016-06-21 01:14:11 +08:00
|
|
|
int addr, int reg, u16 val)
|
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
if (!chip->smi_ops)
|
2016-06-21 01:14:11 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
return chip->smi_ops->write(chip, addr, reg, val);
|
2016-06-21 01:14:11 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_smi_single_chip_read(struct mv88e6xxx_chip *chip,
|
2016-06-21 01:14:11 +08:00
|
|
|
int addr, int reg, u16 *val)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mdiobus_read_nested(chip->bus, addr, reg);
|
2016-06-21 01:14:11 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
*val = ret & 0xffff;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_smi_single_chip_write(struct mv88e6xxx_chip *chip,
|
2016-06-21 01:14:11 +08:00
|
|
|
int addr, int reg, u16 val)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mdiobus_write_nested(chip->bus, addr, reg, val);
|
2016-06-21 01:14:11 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-30 00:21:59 +08:00
|
|
|
static const struct mv88e6xxx_bus_ops mv88e6xxx_smi_single_chip_ops = {
|
2016-06-21 01:14:11 +08:00
|
|
|
.read = mv88e6xxx_smi_single_chip_read,
|
|
|
|
.write = mv88e6xxx_smi_single_chip_write,
|
|
|
|
};
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_smi_multi_chip_wait(struct mv88e6xxx_chip *chip)
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i++) {
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mdiobus_read_nested(chip->bus, chip->sw_addr, SMI_CMD);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2015-04-02 10:06:39 +08:00
|
|
|
if ((ret & SMI_CMD_BUSY) == 0)
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_smi_multi_chip_read(struct mv88e6xxx_chip *chip,
|
2016-06-21 01:14:11 +08:00
|
|
|
int addr, int reg, u16 *val)
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Wait for the bus to become free. */
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mv88e6xxx_smi_multi_chip_wait(chip);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Transmit the read command. */
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mdiobus_write_nested(chip->bus, chip->sw_addr, SMI_CMD,
|
2015-10-22 16:37:53 +08:00
|
|
|
SMI_CMD_OP_22_READ | (addr << 5) | reg);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Wait for the read command to complete. */
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mv88e6xxx_smi_multi_chip_wait(chip);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Read the data. */
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mdiobus_read_nested(chip->bus, chip->sw_addr, SMI_DATA);
|
2015-01-24 05:10:36 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2016-06-21 01:14:11 +08:00
|
|
|
*val = ret & 0xffff;
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
|
2016-06-21 01:14:11 +08:00
|
|
|
return 0;
|
2015-03-27 09:36:31 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_smi_multi_chip_write(struct mv88e6xxx_chip *chip,
|
2016-06-21 01:14:11 +08:00
|
|
|
int addr, int reg, u16 val)
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Wait for the bus to become free. */
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mv88e6xxx_smi_multi_chip_wait(chip);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Transmit the data to write. */
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mdiobus_write_nested(chip->bus, chip->sw_addr, SMI_DATA, val);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Transmit the write command. */
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mdiobus_write_nested(chip->bus, chip->sw_addr, SMI_CMD,
|
2015-10-22 16:37:53 +08:00
|
|
|
SMI_CMD_OP_22_WRITE | (addr << 5) | reg);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Wait for the write command to complete. */
|
2016-06-22 00:28:20 +08:00
|
|
|
ret = mv88e6xxx_smi_multi_chip_wait(chip);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-30 00:21:59 +08:00
|
|
|
static const struct mv88e6xxx_bus_ops mv88e6xxx_smi_multi_chip_ops = {
|
2016-06-21 01:14:11 +08:00
|
|
|
.read = mv88e6xxx_smi_multi_chip_read,
|
|
|
|
.write = mv88e6xxx_smi_multi_chip_write,
|
|
|
|
};
|
|
|
|
|
2016-09-03 02:45:33 +08:00
|
|
|
int mv88e6xxx_read(struct mv88e6xxx_chip *chip, int addr, int reg, u16 *val)
|
2016-06-21 01:14:11 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
assert_reg_lock(chip);
|
2016-06-21 01:14:11 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
err = mv88e6xxx_smi_read(chip, addr, reg, val);
|
2016-06-21 01:14:11 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
dev_dbg(chip->dev, "<- addr: 0x%.2x reg: 0x%.2x val: 0x%.4x\n",
|
2016-06-21 01:14:11 +08:00
|
|
|
addr, reg, *val);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-03 02:45:33 +08:00
|
|
|
int mv88e6xxx_write(struct mv88e6xxx_chip *chip, int addr, int reg, u16 val)
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
{
|
2016-06-21 01:14:11 +08:00
|
|
|
int err;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
assert_reg_lock(chip);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
err = mv88e6xxx_smi_write(chip, addr, reg, val);
|
2016-06-21 01:14:11 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
dev_dbg(chip->dev, "-> addr: 0x%.2x reg: 0x%.2x val: 0x%.4x\n",
|
2015-01-24 05:10:36 +08:00
|
|
|
addr, reg, val);
|
|
|
|
|
2016-06-21 01:14:11 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-26 07:03:20 +08:00
|
|
|
struct mii_bus *mv88e6xxx_default_mdio_bus(struct mv88e6xxx_chip *chip)
|
2017-01-24 21:53:50 +08:00
|
|
|
{
|
|
|
|
struct mv88e6xxx_mdio_bus *mdio_bus;
|
|
|
|
|
|
|
|
mdio_bus = list_first_entry(&chip->mdios, struct mv88e6xxx_mdio_bus,
|
|
|
|
list);
|
|
|
|
if (!mdio_bus)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return mdio_bus->bus;
|
|
|
|
}
|
|
|
|
|
2016-10-17 01:56:49 +08:00
|
|
|
static void mv88e6xxx_g1_irq_mask(struct irq_data *d)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = irq_data_get_irq_chip_data(d);
|
|
|
|
unsigned int n = d->hwirq;
|
|
|
|
|
|
|
|
chip->g1_irq.masked |= (1 << n);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6xxx_g1_irq_unmask(struct irq_data *d)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = irq_data_get_irq_chip_data(d);
|
|
|
|
unsigned int n = d->hwirq;
|
|
|
|
|
|
|
|
chip->g1_irq.masked &= ~(1 << n);
|
|
|
|
}
|
|
|
|
|
|
|
|
static irqreturn_t mv88e6xxx_g1_irq_thread_fn(int irq, void *dev_id)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = dev_id;
|
|
|
|
unsigned int nhandled = 0;
|
|
|
|
unsigned int sub_irq;
|
|
|
|
unsigned int n;
|
|
|
|
u16 reg;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_g1_read(chip, GLOBAL_STATUS, ®);
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
for (n = 0; n < chip->g1_irq.nirqs; ++n) {
|
|
|
|
if (reg & (1 << n)) {
|
|
|
|
sub_irq = irq_find_mapping(chip->g1_irq.domain, n);
|
|
|
|
handle_nested_irq(sub_irq);
|
|
|
|
++nhandled;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
return (nhandled > 0 ? IRQ_HANDLED : IRQ_NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6xxx_g1_irq_bus_lock(struct irq_data *d)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = irq_data_get_irq_chip_data(d);
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6xxx_g1_irq_bus_sync_unlock(struct irq_data *d)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = irq_data_get_irq_chip_data(d);
|
|
|
|
u16 mask = GENMASK(chip->g1_irq.nirqs, 0);
|
|
|
|
u16 reg;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, ®);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
reg &= ~mask;
|
|
|
|
reg |= (~chip->g1_irq.masked & mask);
|
|
|
|
|
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, reg);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
out:
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct irq_chip mv88e6xxx_g1_irq_chip = {
|
|
|
|
.name = "mv88e6xxx-g1",
|
|
|
|
.irq_mask = mv88e6xxx_g1_irq_mask,
|
|
|
|
.irq_unmask = mv88e6xxx_g1_irq_unmask,
|
|
|
|
.irq_bus_lock = mv88e6xxx_g1_irq_bus_lock,
|
|
|
|
.irq_bus_sync_unlock = mv88e6xxx_g1_irq_bus_sync_unlock,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int mv88e6xxx_g1_irq_domain_map(struct irq_domain *d,
|
|
|
|
unsigned int irq,
|
|
|
|
irq_hw_number_t hwirq)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = d->host_data;
|
|
|
|
|
|
|
|
irq_set_chip_data(irq, d->host_data);
|
|
|
|
irq_set_chip_and_handler(irq, &chip->g1_irq.chip, handle_level_irq);
|
|
|
|
irq_set_noprobe(irq);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct irq_domain_ops mv88e6xxx_g1_irq_domain_ops = {
|
|
|
|
.map = mv88e6xxx_g1_irq_domain_map,
|
|
|
|
.xlate = irq_domain_xlate_twocell,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void mv88e6xxx_g1_irq_free(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
int irq, virq;
|
2016-11-21 03:14:16 +08:00
|
|
|
u16 mask;
|
|
|
|
|
|
|
|
mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &mask);
|
|
|
|
mask |= GENMASK(chip->g1_irq.nirqs, 0);
|
|
|
|
mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, mask);
|
|
|
|
|
|
|
|
free_irq(chip->irq, chip);
|
2016-10-17 01:56:49 +08:00
|
|
|
|
2016-11-28 06:26:28 +08:00
|
|
|
for (irq = 0; irq < chip->g1_irq.nirqs; irq++) {
|
2016-11-21 03:14:14 +08:00
|
|
|
virq = irq_find_mapping(chip->g1_irq.domain, irq);
|
2016-10-17 01:56:49 +08:00
|
|
|
irq_dispose_mapping(virq);
|
|
|
|
}
|
|
|
|
|
2016-11-21 03:14:14 +08:00
|
|
|
irq_domain_remove(chip->g1_irq.domain);
|
2016-10-17 01:56:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_g1_irq_setup(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
2016-11-21 03:14:17 +08:00
|
|
|
int err, irq, virq;
|
|
|
|
u16 reg, mask;
|
2016-10-17 01:56:49 +08:00
|
|
|
|
|
|
|
chip->g1_irq.nirqs = chip->info->g1_irqs;
|
|
|
|
chip->g1_irq.domain = irq_domain_add_simple(
|
|
|
|
NULL, chip->g1_irq.nirqs, 0,
|
|
|
|
&mv88e6xxx_g1_irq_domain_ops, chip);
|
|
|
|
if (!chip->g1_irq.domain)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
for (irq = 0; irq < chip->g1_irq.nirqs; irq++)
|
|
|
|
irq_create_mapping(chip->g1_irq.domain, irq);
|
|
|
|
|
|
|
|
chip->g1_irq.chip = mv88e6xxx_g1_irq_chip;
|
|
|
|
chip->g1_irq.masked = ~0;
|
|
|
|
|
2016-11-21 03:14:17 +08:00
|
|
|
err = mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &mask);
|
2016-10-17 01:56:49 +08:00
|
|
|
if (err)
|
2016-11-21 03:14:17 +08:00
|
|
|
goto out_mapping;
|
2016-10-17 01:56:49 +08:00
|
|
|
|
2016-11-21 03:14:17 +08:00
|
|
|
mask &= ~GENMASK(chip->g1_irq.nirqs, 0);
|
2016-10-17 01:56:49 +08:00
|
|
|
|
2016-11-21 03:14:17 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, mask);
|
2016-10-17 01:56:49 +08:00
|
|
|
if (err)
|
2016-11-21 03:14:17 +08:00
|
|
|
goto out_disable;
|
2016-10-17 01:56:49 +08:00
|
|
|
|
|
|
|
/* Reading the interrupt status clears (most of) them */
|
|
|
|
err = mv88e6xxx_g1_read(chip, GLOBAL_STATUS, ®);
|
|
|
|
if (err)
|
2016-11-21 03:14:17 +08:00
|
|
|
goto out_disable;
|
2016-10-17 01:56:49 +08:00
|
|
|
|
|
|
|
err = request_threaded_irq(chip->irq, NULL,
|
|
|
|
mv88e6xxx_g1_irq_thread_fn,
|
|
|
|
IRQF_ONESHOT | IRQF_TRIGGER_FALLING,
|
|
|
|
dev_name(chip->dev), chip);
|
|
|
|
if (err)
|
2016-11-21 03:14:17 +08:00
|
|
|
goto out_disable;
|
2016-10-17 01:56:49 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2016-11-21 03:14:17 +08:00
|
|
|
out_disable:
|
|
|
|
mask |= GENMASK(chip->g1_irq.nirqs, 0);
|
|
|
|
mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, mask);
|
|
|
|
|
|
|
|
out_mapping:
|
|
|
|
for (irq = 0; irq < 16; irq++) {
|
|
|
|
virq = irq_find_mapping(chip->g1_irq.domain, irq);
|
|
|
|
irq_dispose_mapping(virq);
|
|
|
|
}
|
|
|
|
|
|
|
|
irq_domain_remove(chip->g1_irq.domain);
|
2016-10-17 01:56:49 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-09-03 02:45:33 +08:00
|
|
|
int mv88e6xxx_wait(struct mv88e6xxx_chip *chip, int addr, int reg, u16 mask)
|
2016-08-16 05:18:57 +08:00
|
|
|
{
|
2016-08-19 06:01:55 +08:00
|
|
|
int i;
|
2016-08-16 05:18:57 +08:00
|
|
|
|
2016-08-19 06:01:55 +08:00
|
|
|
for (i = 0; i < 16; i++) {
|
2016-08-16 05:18:57 +08:00
|
|
|
u16 val;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = mv88e6xxx_read(chip, addr, reg, &val);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (!(val & mask))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
usleep_range(1000, 2000);
|
|
|
|
}
|
|
|
|
|
2016-08-19 06:01:57 +08:00
|
|
|
dev_err(chip->dev, "Timeout while waiting for switch\n");
|
2016-08-16 05:18:57 +08:00
|
|
|
return -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
|
2016-07-19 08:45:31 +08:00
|
|
|
/* Indirect write to single pointer-data register with an Update bit */
|
2016-09-03 02:45:33 +08:00
|
|
|
int mv88e6xxx_update(struct mv88e6xxx_chip *chip, int addr, int reg, u16 update)
|
2016-07-19 08:45:31 +08:00
|
|
|
{
|
|
|
|
u16 val;
|
2016-08-19 06:01:56 +08:00
|
|
|
int err;
|
2016-07-19 08:45:31 +08:00
|
|
|
|
|
|
|
/* Wait until the previous operation is completed */
|
2016-08-19 06:01:56 +08:00
|
|
|
err = mv88e6xxx_wait(chip, addr, reg, BIT(15));
|
|
|
|
if (err)
|
|
|
|
return err;
|
2016-07-19 08:45:31 +08:00
|
|
|
|
|
|
|
/* Set the Update bit to trigger a write operation */
|
|
|
|
val = BIT(15) | update;
|
|
|
|
|
|
|
|
return mv88e6xxx_write(chip, addr, reg, val);
|
|
|
|
}
|
|
|
|
|
2016-11-04 10:23:36 +08:00
|
|
|
static int mv88e6xxx_port_setup_mac(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
int link, int speed, int duplex,
|
|
|
|
phy_interface_t mode)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!chip->info->ops->port_set_link)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Port's MAC control must not be changed unless the link is down */
|
|
|
|
err = chip->info->ops->port_set_link(chip, port, 0);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (chip->info->ops->port_set_speed) {
|
|
|
|
err = chip->info->ops->port_set_speed(chip, port, speed);
|
|
|
|
if (err && err != -EOPNOTSUPP)
|
|
|
|
goto restore_link;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chip->info->ops->port_set_duplex) {
|
|
|
|
err = chip->info->ops->port_set_duplex(chip, port, duplex);
|
|
|
|
if (err && err != -EOPNOTSUPP)
|
|
|
|
goto restore_link;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chip->info->ops->port_set_rgmii_delay) {
|
|
|
|
err = chip->info->ops->port_set_rgmii_delay(chip, port, mode);
|
|
|
|
if (err && err != -EOPNOTSUPP)
|
|
|
|
goto restore_link;
|
|
|
|
}
|
|
|
|
|
net: dsa: mv88e6xxx: Set the CMODE for mv88e6390 ports 9 & 10
Unlike most ports, ports 9 and 10 of the 6390X family have configurable
PHY modes. Set the mode as part of adjust_link().
Ordering is important, because the SERDES interfaces connected to
ports 9 and 10 can be split and assigned to other ports. The CMODE has
to be correctly set before the SERDES interface on another port can be
configured. Such configuration is likely to be performed in
port_enable() and port_disabled(), called on slave_open() and
slave_close().
The simple case is port 9 and 10 are used for 'CPU' or 'DSA'. In this
case, the CMODE is set via a phy-mode in dsa_cpu_dsa_setup(), which is
called early in the switch setup.
When ports 9 or 10 are used as user ports, and have a fixed-phy, when
the fixed fixed-phy is attached, dsa_slave_adjust_link() is called,
which results in the adjust_link function being called, setting the
cmode. The port_enable() will for other ports will be called much
later.
When ports 9 or 10 are used as user ports and have a real phy attached
which does not use all the available SERDES interface, e.g. a 1Gbps
SGMII, there is currently no mechanism in place to set the CMODE of
the port from software. It must be hoped the stripping resistors are
correct.
At the same time, add a function to get the cmode. This will be needed
when configuring the SERDES interfaces.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-05 03:02:50 +08:00
|
|
|
if (chip->info->ops->port_set_cmode) {
|
|
|
|
err = chip->info->ops->port_set_cmode(chip, port, mode);
|
|
|
|
if (err && err != -EOPNOTSUPP)
|
|
|
|
goto restore_link;
|
|
|
|
}
|
|
|
|
|
2016-11-04 10:23:36 +08:00
|
|
|
err = 0;
|
|
|
|
restore_link:
|
|
|
|
if (chip->info->ops->port_set_link(chip, port, link))
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(chip->dev, "p%d: failed to restore MAC's link\n", port);
|
2016-11-04 10:23:36 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-08-31 21:56:47 +08:00
|
|
|
/* We expect the switch to perform auto negotiation if there is a real
|
|
|
|
* phy. However, in the case of a fixed link phy, we force the port
|
|
|
|
* settings from the fixed link settings.
|
|
|
|
*/
|
2016-05-10 01:22:58 +08:00
|
|
|
static void mv88e6xxx_adjust_link(struct dsa_switch *ds, int port,
|
|
|
|
struct phy_device *phydev)
|
2015-08-31 21:56:47 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-09-21 07:40:31 +08:00
|
|
|
int err;
|
2015-08-31 21:56:47 +08:00
|
|
|
|
|
|
|
if (!phy_is_pseudo_fixed_link(phydev))
|
|
|
|
return;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-11-04 10:23:36 +08:00
|
|
|
err = mv88e6xxx_port_setup_mac(chip, port, phydev->link, phydev->speed,
|
|
|
|
phydev->duplex, phydev->interface);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-11-04 10:23:36 +08:00
|
|
|
|
|
|
|
if (err && err != -EOPNOTSUPP)
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(ds->dev, "p%d: failed to configure MAC\n", port);
|
2015-08-31 21:56:47 +08:00
|
|
|
}
|
|
|
|
|
2016-11-22 06:26:58 +08:00
|
|
|
static int mv88e6xxx_stats_snapshot(struct mv88e6xxx_chip *chip, int port)
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
{
|
2016-11-22 06:26:58 +08:00
|
|
|
if (!chip->info->ops->stats_snapshot)
|
|
|
|
return -EOPNOTSUPP;
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
|
2016-11-22 06:26:58 +08:00
|
|
|
return chip->info->ops->stats_snapshot(chip, port);
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
}
|
|
|
|
|
2015-04-02 10:06:38 +08:00
|
|
|
static struct mv88e6xxx_hw_stat mv88e6xxx_hw_stats[] = {
|
2016-11-22 06:27:02 +08:00
|
|
|
{ "in_good_octets", 8, 0x00, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_bad_octets", 4, 0x02, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_unicast", 4, 0x04, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_broadcasts", 4, 0x06, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_multicasts", 4, 0x07, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_pause", 4, 0x16, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_undersize", 4, 0x18, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_fragments", 4, 0x19, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_oversize", 4, 0x1a, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_jabber", 4, 0x1b, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_rx_error", 4, 0x1c, STATS_TYPE_BANK0, },
|
|
|
|
{ "in_fcs_error", 4, 0x1d, STATS_TYPE_BANK0, },
|
|
|
|
{ "out_octets", 8, 0x0e, STATS_TYPE_BANK0, },
|
|
|
|
{ "out_unicast", 4, 0x10, STATS_TYPE_BANK0, },
|
|
|
|
{ "out_broadcasts", 4, 0x13, STATS_TYPE_BANK0, },
|
|
|
|
{ "out_multicasts", 4, 0x12, STATS_TYPE_BANK0, },
|
|
|
|
{ "out_pause", 4, 0x15, STATS_TYPE_BANK0, },
|
|
|
|
{ "excessive", 4, 0x11, STATS_TYPE_BANK0, },
|
|
|
|
{ "collisions", 4, 0x1e, STATS_TYPE_BANK0, },
|
|
|
|
{ "deferred", 4, 0x05, STATS_TYPE_BANK0, },
|
|
|
|
{ "single", 4, 0x14, STATS_TYPE_BANK0, },
|
|
|
|
{ "multiple", 4, 0x17, STATS_TYPE_BANK0, },
|
|
|
|
{ "out_fcs_error", 4, 0x03, STATS_TYPE_BANK0, },
|
|
|
|
{ "late", 4, 0x1f, STATS_TYPE_BANK0, },
|
|
|
|
{ "hist_64bytes", 4, 0x08, STATS_TYPE_BANK0, },
|
|
|
|
{ "hist_65_127bytes", 4, 0x09, STATS_TYPE_BANK0, },
|
|
|
|
{ "hist_128_255bytes", 4, 0x0a, STATS_TYPE_BANK0, },
|
|
|
|
{ "hist_256_511bytes", 4, 0x0b, STATS_TYPE_BANK0, },
|
|
|
|
{ "hist_512_1023bytes", 4, 0x0c, STATS_TYPE_BANK0, },
|
|
|
|
{ "hist_1024_max_bytes", 4, 0x0d, STATS_TYPE_BANK0, },
|
|
|
|
{ "sw_in_discards", 4, 0x10, STATS_TYPE_PORT, },
|
|
|
|
{ "sw_in_filtered", 2, 0x12, STATS_TYPE_PORT, },
|
|
|
|
{ "sw_out_filtered", 2, 0x13, STATS_TYPE_PORT, },
|
|
|
|
{ "in_discards", 4, 0x00, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_filtered", 4, 0x01, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_accepted", 4, 0x02, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_bad_accepted", 4, 0x03, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_good_avb_class_a", 4, 0x04, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_good_avb_class_b", 4, 0x05, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_bad_avb_class_a", 4, 0x06, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_bad_avb_class_b", 4, 0x07, STATS_TYPE_BANK1, },
|
|
|
|
{ "tcam_counter_0", 4, 0x08, STATS_TYPE_BANK1, },
|
|
|
|
{ "tcam_counter_1", 4, 0x09, STATS_TYPE_BANK1, },
|
|
|
|
{ "tcam_counter_2", 4, 0x0a, STATS_TYPE_BANK1, },
|
|
|
|
{ "tcam_counter_3", 4, 0x0b, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_da_unknown", 4, 0x0e, STATS_TYPE_BANK1, },
|
|
|
|
{ "in_management", 4, 0x0f, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_queue_0", 4, 0x10, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_queue_1", 4, 0x11, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_queue_2", 4, 0x12, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_queue_3", 4, 0x13, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_queue_4", 4, 0x14, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_queue_5", 4, 0x15, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_queue_6", 4, 0x16, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_queue_7", 4, 0x17, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_cut_through", 4, 0x18, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_octets_a", 4, 0x1a, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_octets_b", 4, 0x1b, STATS_TYPE_BANK1, },
|
|
|
|
{ "out_management", 4, 0x1f, STATS_TYPE_BANK1, },
|
2015-04-02 10:06:38 +08:00
|
|
|
};
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static uint64_t _mv88e6xxx_get_ethtool_stat(struct mv88e6xxx_chip *chip,
|
2015-12-23 20:23:17 +08:00
|
|
|
struct mv88e6xxx_hw_stat *s,
|
2016-11-22 06:27:04 +08:00
|
|
|
int port, u16 bank1_select,
|
|
|
|
u16 histogram)
|
2015-06-21 00:42:30 +08:00
|
|
|
{
|
|
|
|
u32 low;
|
|
|
|
u32 high = 0;
|
2016-11-22 06:27:02 +08:00
|
|
|
u16 reg = 0;
|
2016-09-21 07:40:31 +08:00
|
|
|
int err;
|
2015-06-21 00:42:30 +08:00
|
|
|
u64 value;
|
|
|
|
|
2015-12-23 20:23:17 +08:00
|
|
|
switch (s->type) {
|
2016-11-22 06:27:02 +08:00
|
|
|
case STATS_TYPE_PORT:
|
2016-09-21 07:40:31 +08:00
|
|
|
err = mv88e6xxx_port_read(chip, port, s->reg, ®);
|
|
|
|
if (err)
|
2015-06-21 00:42:30 +08:00
|
|
|
return UINT64_MAX;
|
|
|
|
|
2016-09-21 07:40:31 +08:00
|
|
|
low = reg;
|
2015-06-21 00:42:30 +08:00
|
|
|
if (s->sizeof_stat == 4) {
|
2016-09-21 07:40:31 +08:00
|
|
|
err = mv88e6xxx_port_read(chip, port, s->reg + 1, ®);
|
|
|
|
if (err)
|
2015-06-21 00:42:30 +08:00
|
|
|
return UINT64_MAX;
|
2016-09-21 07:40:31 +08:00
|
|
|
high = reg;
|
2015-06-21 00:42:30 +08:00
|
|
|
}
|
2015-12-23 20:23:17 +08:00
|
|
|
break;
|
2016-11-22 06:27:02 +08:00
|
|
|
case STATS_TYPE_BANK1:
|
2016-11-22 06:27:04 +08:00
|
|
|
reg = bank1_select;
|
2016-11-22 06:27:02 +08:00
|
|
|
/* fall through */
|
|
|
|
case STATS_TYPE_BANK0:
|
2016-11-22 06:27:04 +08:00
|
|
|
reg |= s->reg | histogram;
|
2016-11-22 06:27:05 +08:00
|
|
|
mv88e6xxx_g1_stats_read(chip, reg, &low);
|
2015-06-21 00:42:30 +08:00
|
|
|
if (s->sizeof_stat == 8)
|
2016-11-22 06:27:05 +08:00
|
|
|
mv88e6xxx_g1_stats_read(chip, reg + 1, &high);
|
2017-05-12 11:11:29 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return UINT64_MAX;
|
2015-06-21 00:42:30 +08:00
|
|
|
}
|
|
|
|
value = (((u64)high) << 16) | low;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2016-11-22 06:27:02 +08:00
|
|
|
static void mv88e6xxx_stats_get_strings(struct mv88e6xxx_chip *chip,
|
|
|
|
uint8_t *data, int types)
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
{
|
2015-12-23 20:23:17 +08:00
|
|
|
struct mv88e6xxx_hw_stat *stat;
|
|
|
|
int i, j;
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
|
2015-12-23 20:23:17 +08:00
|
|
|
for (i = 0, j = 0; i < ARRAY_SIZE(mv88e6xxx_hw_stats); i++) {
|
|
|
|
stat = &mv88e6xxx_hw_stats[i];
|
2016-11-22 06:27:02 +08:00
|
|
|
if (stat->type & types) {
|
2015-12-23 20:23:17 +08:00
|
|
|
memcpy(data + j * ETH_GSTRING_LEN, stat->string,
|
|
|
|
ETH_GSTRING_LEN);
|
|
|
|
j++;
|
|
|
|
}
|
net: Distributed Switch Architecture protocol support
Distributed Switch Architecture is a protocol for managing hardware
switch chips. It consists of a set of MII management registers and
commands to configure the switch, and an ethernet header format to
signal which of the ports of the switch a packet was received from
or is intended to be sent to.
The switches that this driver supports are typically embedded in
access points and routers, and a typical setup with a DSA switch
looks something like this:
+-----------+ +-----------+
| | RGMII | |
| +-------+ +------ 1000baseT MDI ("WAN")
| | | 6-port +------ 1000baseT MDI ("LAN1")
| CPU | | ethernet +------ 1000baseT MDI ("LAN2")
| |MIImgmt| switch +------ 1000baseT MDI ("LAN3")
| +-------+ w/5 PHYs +------ 1000baseT MDI ("LAN4")
| | | |
+-----------+ +-----------+
The switch driver presents each port on the switch as a separate
network interface to Linux, polls the switch to maintain software
link state of those ports, forwards MII management interface
accesses to those network interfaces (e.g. as done by ethtool) to
the switch, and exposes the switch's hardware statistics counters
via the appropriate Linux kernel interfaces.
This initial patch supports the MII management interface register
layout of the Marvell 88E6123, 88E6161 and 88E6165 switch chips, and
supports the "Ethertype DSA" packet tagging format.
(There is no officially registered ethertype for the Ethertype DSA
packet format, so we just grab a random one. The ethertype to use
is programmed into the switch, and the switch driver uses the value
of ETH_P_EDSA for this, so this define can be changed at any time in
the future if the one we chose is allocated to another protocol or
if Ethertype DSA gets its own officially registered ethertype, and
everything will continue to work.)
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Tested-by: Nicolas Pitre <nico@marvell.com>
Tested-by: Byron Bradley <byron.bbradley@gmail.com>
Tested-by: Tim Ellis <tim.ellis@mac.com>
Tested-by: Peter van Valderen <linux@ddcrew.com>
Tested-by: Dirk Teurlings <dirk@upexia.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-10-07 21:44:02 +08:00
|
|
|
}
|
2015-04-02 10:06:38 +08:00
|
|
|
}
|
|
|
|
|
2016-11-22 06:27:02 +08:00
|
|
|
static void mv88e6095_stats_get_strings(struct mv88e6xxx_chip *chip,
|
|
|
|
uint8_t *data)
|
|
|
|
{
|
|
|
|
mv88e6xxx_stats_get_strings(chip, data,
|
|
|
|
STATS_TYPE_BANK0 | STATS_TYPE_PORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6320_stats_get_strings(struct mv88e6xxx_chip *chip,
|
|
|
|
uint8_t *data)
|
|
|
|
{
|
|
|
|
mv88e6xxx_stats_get_strings(chip, data,
|
|
|
|
STATS_TYPE_BANK0 | STATS_TYPE_BANK1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6xxx_get_strings(struct dsa_switch *ds, int port,
|
|
|
|
uint8_t *data)
|
2015-04-02 10:06:38 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-11-22 06:27:02 +08:00
|
|
|
|
|
|
|
if (chip->info->ops->stats_get_strings)
|
|
|
|
chip->info->ops->stats_get_strings(chip, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_stats_get_sset_count(struct mv88e6xxx_chip *chip,
|
|
|
|
int types)
|
|
|
|
{
|
2015-12-23 20:23:17 +08:00
|
|
|
struct mv88e6xxx_hw_stat *stat;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0, j = 0; i < ARRAY_SIZE(mv88e6xxx_hw_stats); i++) {
|
|
|
|
stat = &mv88e6xxx_hw_stats[i];
|
2016-11-22 06:27:02 +08:00
|
|
|
if (stat->type & types)
|
2015-12-23 20:23:17 +08:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
return j;
|
2015-04-02 10:06:38 +08:00
|
|
|
}
|
|
|
|
|
2016-11-22 06:27:02 +08:00
|
|
|
static int mv88e6095_stats_get_sset_count(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
return mv88e6xxx_stats_get_sset_count(chip, STATS_TYPE_BANK0 |
|
|
|
|
STATS_TYPE_PORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6320_stats_get_sset_count(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
return mv88e6xxx_stats_get_sset_count(chip, STATS_TYPE_BANK0 |
|
|
|
|
STATS_TYPE_BANK1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_get_sset_count(struct dsa_switch *ds)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
|
|
|
|
|
|
|
if (chip->info->ops->stats_get_sset_count)
|
|
|
|
return chip->info->ops->stats_get_sset_count(chip);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-22 06:27:03 +08:00
|
|
|
static void mv88e6xxx_stats_get_stats(struct mv88e6xxx_chip *chip, int port,
|
2016-11-22 06:27:04 +08:00
|
|
|
uint64_t *data, int types,
|
|
|
|
u16 bank1_select, u16 histogram)
|
2016-11-22 06:27:03 +08:00
|
|
|
{
|
|
|
|
struct mv88e6xxx_hw_stat *stat;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0, j = 0; i < ARRAY_SIZE(mv88e6xxx_hw_stats); i++) {
|
|
|
|
stat = &mv88e6xxx_hw_stats[i];
|
|
|
|
if (stat->type & types) {
|
2016-11-22 06:27:04 +08:00
|
|
|
data[j] = _mv88e6xxx_get_ethtool_stat(chip, stat, port,
|
|
|
|
bank1_select,
|
|
|
|
histogram);
|
2016-11-22 06:27:03 +08:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6095_stats_get_stats(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
uint64_t *data)
|
|
|
|
{
|
|
|
|
return mv88e6xxx_stats_get_stats(chip, port, data,
|
2016-11-22 06:27:04 +08:00
|
|
|
STATS_TYPE_BANK0 | STATS_TYPE_PORT,
|
|
|
|
0, GLOBAL_STATS_OP_HIST_RX_TX);
|
2016-11-22 06:27:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6320_stats_get_stats(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
uint64_t *data)
|
|
|
|
{
|
|
|
|
return mv88e6xxx_stats_get_stats(chip, port, data,
|
2016-11-22 06:27:04 +08:00
|
|
|
STATS_TYPE_BANK0 | STATS_TYPE_BANK1,
|
|
|
|
GLOBAL_STATS_OP_BANK_1_BIT_9,
|
|
|
|
GLOBAL_STATS_OP_HIST_RX_TX);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6390_stats_get_stats(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
uint64_t *data)
|
|
|
|
{
|
|
|
|
return mv88e6xxx_stats_get_stats(chip, port, data,
|
|
|
|
STATS_TYPE_BANK0 | STATS_TYPE_BANK1,
|
|
|
|
GLOBAL_STATS_OP_BANK_1_BIT_10, 0);
|
2016-11-22 06:27:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6xxx_get_stats(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
uint64_t *data)
|
|
|
|
{
|
|
|
|
if (chip->info->ops->stats_get_stats)
|
|
|
|
chip->info->ops->stats_get_stats(chip, port, data);
|
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static void mv88e6xxx_get_ethtool_stats(struct dsa_switch *ds, int port,
|
|
|
|
uint64_t *data)
|
2015-04-02 10:06:38 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2015-12-23 20:23:17 +08:00
|
|
|
int ret;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2015-12-23 20:23:17 +08:00
|
|
|
|
2016-11-22 06:26:58 +08:00
|
|
|
ret = mv88e6xxx_stats_snapshot(chip, port);
|
2015-12-23 20:23:17 +08:00
|
|
|
if (ret < 0) {
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-12-23 20:23:17 +08:00
|
|
|
return;
|
|
|
|
}
|
2016-11-22 06:27:03 +08:00
|
|
|
|
|
|
|
mv88e6xxx_get_stats(chip, port, data);
|
2015-12-23 20:23:17 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-04-02 10:06:38 +08:00
|
|
|
}
|
|
|
|
|
2016-11-22 06:27:01 +08:00
|
|
|
static int mv88e6xxx_stats_set_histogram(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
if (chip->info->ops->stats_set_histogram)
|
|
|
|
return chip->info->ops->stats_set_histogram(chip);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_get_regs_len(struct dsa_switch *ds, int port)
|
2014-10-30 01:45:05 +08:00
|
|
|
{
|
|
|
|
return 32 * sizeof(u16);
|
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static void mv88e6xxx_get_regs(struct dsa_switch *ds, int port,
|
|
|
|
struct ethtool_regs *regs, void *_p)
|
2014-10-30 01:45:05 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-09-21 07:40:31 +08:00
|
|
|
int err;
|
|
|
|
u16 reg;
|
2014-10-30 01:45:05 +08:00
|
|
|
u16 *p = _p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
regs->version = 0;
|
|
|
|
|
|
|
|
memset(p, 0xff, 32 * sizeof(u16));
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-05-10 01:22:45 +08:00
|
|
|
|
2014-10-30 01:45:05 +08:00
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
|
2016-09-21 07:40:31 +08:00
|
|
|
err = mv88e6xxx_port_read(chip, port, i, ®);
|
|
|
|
if (!err)
|
|
|
|
p[i] = reg;
|
2014-10-30 01:45:05 +08:00
|
|
|
}
|
2016-05-10 01:22:45 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2014-10-30 01:45:05 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_get_eee(struct dsa_switch *ds, int port,
|
|
|
|
struct ethtool_eee *e)
|
2015-03-07 14:23:51 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-08-16 05:19:02 +08:00
|
|
|
u16 reg;
|
|
|
|
int err;
|
2015-03-07 14:23:51 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_EEE))
|
2016-05-10 01:22:44 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2015-04-02 10:06:37 +08:00
|
|
|
|
2016-08-16 05:19:02 +08:00
|
|
|
err = mv88e6xxx_phy_read(chip, port, 16, ®);
|
|
|
|
if (err)
|
2015-04-02 10:06:37 +08:00
|
|
|
goto out;
|
2015-03-07 14:23:51 +08:00
|
|
|
|
|
|
|
e->eee_enabled = !!(reg & 0x0200);
|
|
|
|
e->tx_lpi_enabled = !!(reg & 0x0100);
|
|
|
|
|
2016-09-21 07:40:31 +08:00
|
|
|
err = mv88e6xxx_port_read(chip, port, PORT_STATUS, ®);
|
2016-08-16 05:19:02 +08:00
|
|
|
if (err)
|
2015-04-02 10:06:37 +08:00
|
|
|
goto out;
|
2015-03-07 14:23:51 +08:00
|
|
|
|
2015-04-02 10:06:39 +08:00
|
|
|
e->eee_active = !!(reg & PORT_STATUS_EEE);
|
2015-04-02 10:06:37 +08:00
|
|
|
out:
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-08-16 05:19:02 +08:00
|
|
|
|
|
|
|
return err;
|
2015-03-07 14:23:51 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_set_eee(struct dsa_switch *ds, int port,
|
|
|
|
struct phy_device *phydev, struct ethtool_eee *e)
|
2015-03-07 14:23:51 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-08-16 05:19:02 +08:00
|
|
|
u16 reg;
|
|
|
|
int err;
|
2015-03-07 14:23:51 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_EEE))
|
2016-05-10 01:22:44 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2015-03-07 14:23:51 +08:00
|
|
|
|
2016-08-16 05:19:02 +08:00
|
|
|
err = mv88e6xxx_phy_read(chip, port, 16, ®);
|
|
|
|
if (err)
|
2015-04-02 10:06:37 +08:00
|
|
|
goto out;
|
|
|
|
|
2016-08-16 05:19:02 +08:00
|
|
|
reg &= ~0x0300;
|
2015-04-02 10:06:37 +08:00
|
|
|
if (e->eee_enabled)
|
|
|
|
reg |= 0x0200;
|
|
|
|
if (e->tx_lpi_enabled)
|
|
|
|
reg |= 0x0100;
|
|
|
|
|
2016-08-16 05:19:02 +08:00
|
|
|
err = mv88e6xxx_phy_write(chip, port, 16, reg);
|
2015-04-02 10:06:37 +08:00
|
|
|
out:
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-04-02 10:06:37 +08:00
|
|
|
|
2016-08-16 05:19:02 +08:00
|
|
|
return err;
|
2015-03-07 14:23:51 +08:00
|
|
|
}
|
|
|
|
|
2017-03-31 05:37:11 +08:00
|
|
|
static u16 mv88e6xxx_port_vlan(struct mv88e6xxx_chip *chip, int dev, int port)
|
2015-03-27 09:36:35 +08:00
|
|
|
{
|
2017-03-31 05:37:11 +08:00
|
|
|
struct dsa_switch *ds = NULL;
|
|
|
|
struct net_device *br;
|
|
|
|
u16 pvlan;
|
2016-02-27 02:16:06 +08:00
|
|
|
int i;
|
|
|
|
|
2017-03-31 05:37:11 +08:00
|
|
|
if (dev < DSA_MAX_SWITCHES)
|
|
|
|
ds = chip->ds->dst->ds[dev];
|
|
|
|
|
|
|
|
/* Prevent frames from unknown switch or port */
|
|
|
|
if (!ds || port >= ds->num_ports)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Frames from DSA links and CPU ports can egress any local port */
|
|
|
|
if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
|
|
|
|
return mv88e6xxx_port_mask(chip);
|
|
|
|
|
|
|
|
br = ds->ports[port].bridge_dev;
|
|
|
|
pvlan = 0;
|
|
|
|
|
|
|
|
/* Frames from user ports can egress any local DSA links and CPU ports,
|
|
|
|
* as well as any local member of their bridge group.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < mv88e6xxx_num_ports(chip); ++i)
|
|
|
|
if (dsa_is_cpu_port(chip->ds, i) ||
|
|
|
|
dsa_is_dsa_port(chip->ds, i) ||
|
|
|
|
(br && chip->ds->ports[i].bridge_dev == br))
|
|
|
|
pvlan |= BIT(i);
|
|
|
|
|
|
|
|
return pvlan;
|
|
|
|
}
|
|
|
|
|
2017-03-31 05:37:12 +08:00
|
|
|
static int mv88e6xxx_port_vlan_map(struct mv88e6xxx_chip *chip, int port)
|
2017-03-31 05:37:11 +08:00
|
|
|
{
|
|
|
|
u16 output_ports = mv88e6xxx_port_vlan(chip, chip->ds->index, port);
|
2016-02-27 02:16:06 +08:00
|
|
|
|
|
|
|
/* prevent frames from going back out of the port they came in on */
|
|
|
|
output_ports &= ~BIT(port);
|
2015-03-27 09:36:35 +08:00
|
|
|
|
2016-11-04 10:23:28 +08:00
|
|
|
return mv88e6xxx_port_set_vlan_map(chip, port, output_ports);
|
2015-03-27 09:36:35 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static void mv88e6xxx_port_stp_state_set(struct dsa_switch *ds, int port,
|
|
|
|
u8 state)
|
2015-03-27 09:36:35 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-05-14 08:38:23 +08:00
|
|
|
int err;
|
2015-03-27 09:36:35 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2017-06-09 06:34:10 +08:00
|
|
|
err = mv88e6xxx_port_set_state(chip, port, state);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-05-14 08:38:23 +08:00
|
|
|
|
|
|
|
if (err)
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(ds->dev, "p%d: failed to update state\n", port);
|
2015-03-27 09:36:35 +08:00
|
|
|
}
|
|
|
|
|
2017-03-12 05:12:49 +08:00
|
|
|
static int mv88e6xxx_atu_setup(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
2017-03-12 05:12:51 +08:00
|
|
|
int err;
|
|
|
|
|
2017-03-12 05:12:54 +08:00
|
|
|
err = mv88e6xxx_g1_atu_flush(chip, 0, true);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-03-12 05:12:51 +08:00
|
|
|
err = mv88e6xxx_g1_atu_set_learn2all(chip, true);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-03-12 05:12:49 +08:00
|
|
|
return mv88e6xxx_g1_atu_set_age_time(chip, 300000);
|
|
|
|
}
|
|
|
|
|
2017-03-31 05:37:09 +08:00
|
|
|
static int mv88e6xxx_pvt_map(struct mv88e6xxx_chip *chip, int dev, int port)
|
|
|
|
{
|
|
|
|
u16 pvlan = 0;
|
|
|
|
|
|
|
|
if (!mv88e6xxx_has_pvt(chip))
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
/* Skip the local source device, which uses in-chip port VLAN */
|
|
|
|
if (dev != chip->ds->index)
|
2017-03-31 05:37:15 +08:00
|
|
|
pvlan = mv88e6xxx_port_vlan(chip, dev, port);
|
2017-03-31 05:37:09 +08:00
|
|
|
|
|
|
|
return mv88e6xxx_g2_pvt_write(chip, dev, port, pvlan);
|
|
|
|
}
|
|
|
|
|
2017-03-31 05:37:08 +08:00
|
|
|
static int mv88e6xxx_pvt_setup(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
2017-03-31 05:37:09 +08:00
|
|
|
int dev, port;
|
|
|
|
int err;
|
|
|
|
|
2017-03-31 05:37:08 +08:00
|
|
|
if (!mv88e6xxx_has_pvt(chip))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Clear 5 Bit Port for usage with Marvell Link Street devices:
|
|
|
|
* use 4 bits for the Src_Port/Src_Trunk and 5 bits for the Src_Dev.
|
|
|
|
*/
|
2017-03-31 05:37:09 +08:00
|
|
|
err = mv88e6xxx_g2_misc_4_bit_port(chip);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
for (dev = 0; dev < MV88E6XXX_MAX_PVT_SWITCHES; ++dev) {
|
|
|
|
for (port = 0; port < MV88E6XXX_MAX_PVT_PORTS; ++port) {
|
|
|
|
err = mv88e6xxx_pvt_map(chip, dev, port);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2017-03-31 05:37:08 +08:00
|
|
|
}
|
|
|
|
|
2016-09-23 04:49:24 +08:00
|
|
|
static void mv88e6xxx_port_fast_age(struct dsa_switch *ds, int port)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
2017-03-12 05:12:55 +08:00
|
|
|
err = mv88e6xxx_g1_atu_remove(chip, 0, port, false);
|
2016-09-23 04:49:24 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
if (err)
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(ds->dev, "p%d: failed to flush ATU\n", port);
|
2016-09-23 04:49:24 +08:00
|
|
|
}
|
|
|
|
|
2017-05-02 02:05:13 +08:00
|
|
|
static int mv88e6xxx_vtu_setup(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
if (!chip->info->max_vid)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return mv88e6xxx_g1_vtu_flush(chip);
|
|
|
|
}
|
|
|
|
|
2017-05-02 02:05:22 +08:00
|
|
|
static int mv88e6xxx_vtu_getnext(struct mv88e6xxx_chip *chip,
|
|
|
|
struct mv88e6xxx_vtu_entry *entry)
|
|
|
|
{
|
|
|
|
if (!chip->info->ops->vtu_getnext)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
return chip->info->ops->vtu_getnext(chip, entry);
|
|
|
|
}
|
|
|
|
|
2017-05-02 02:05:23 +08:00
|
|
|
static int mv88e6xxx_vtu_loadpurge(struct mv88e6xxx_chip *chip,
|
|
|
|
struct mv88e6xxx_vtu_entry *entry)
|
|
|
|
{
|
|
|
|
if (!chip->info->ops->vtu_loadpurge)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
return chip->info->ops->vtu_loadpurge(chip, entry);
|
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_port_vlan_dump(struct dsa_switch *ds, int port,
|
|
|
|
struct switchdev_obj_port_vlan *vlan,
|
2017-05-18 03:46:05 +08:00
|
|
|
switchdev_obj_dump_cb_t *cb)
|
2016-02-24 01:13:55 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2017-05-02 02:05:16 +08:00
|
|
|
struct mv88e6xxx_vtu_entry next = {
|
|
|
|
.vid = chip->info->max_vid,
|
|
|
|
};
|
2016-02-24 01:13:55 +08:00
|
|
|
u16 pvid;
|
|
|
|
int err;
|
|
|
|
|
2017-05-02 02:05:10 +08:00
|
|
|
if (!chip->info->max_vid)
|
2016-05-10 01:22:47 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-02-24 01:13:55 +08:00
|
|
|
|
2016-11-04 10:23:30 +08:00
|
|
|
err = mv88e6xxx_port_get_pvid(chip, port, &pvid);
|
2016-02-24 01:13:55 +08:00
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
|
|
|
do {
|
2017-05-02 02:05:22 +08:00
|
|
|
err = mv88e6xxx_vtu_getnext(chip, &next);
|
2016-02-24 01:13:55 +08:00
|
|
|
if (err)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (!next.valid)
|
|
|
|
break;
|
|
|
|
|
2017-05-02 02:05:11 +08:00
|
|
|
if (next.member[port] == GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER)
|
2016-02-24 01:13:55 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* reinit and dump this VLAN obj */
|
2016-06-21 01:13:58 +08:00
|
|
|
vlan->vid_begin = next.vid;
|
|
|
|
vlan->vid_end = next.vid;
|
2016-02-24 01:13:55 +08:00
|
|
|
vlan->flags = 0;
|
|
|
|
|
2017-05-02 02:05:11 +08:00
|
|
|
if (next.member[port] == GLOBAL_VTU_DATA_MEMBER_TAG_UNTAGGED)
|
2016-02-24 01:13:55 +08:00
|
|
|
vlan->flags |= BRIDGE_VLAN_INFO_UNTAGGED;
|
|
|
|
|
|
|
|
if (next.vid == pvid)
|
|
|
|
vlan->flags |= BRIDGE_VLAN_INFO_PVID;
|
|
|
|
|
|
|
|
err = cb(&vlan->obj);
|
|
|
|
if (err)
|
|
|
|
break;
|
2017-05-02 02:05:10 +08:00
|
|
|
} while (next.vid < chip->info->max_vid);
|
2016-02-24 01:13:55 +08:00
|
|
|
|
|
|
|
unlock:
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-02-24 01:13:55 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-12 05:12:56 +08:00
|
|
|
static int mv88e6xxx_atu_new(struct mv88e6xxx_chip *chip, u16 *fid)
|
2016-02-27 02:16:03 +08:00
|
|
|
{
|
|
|
|
DECLARE_BITMAP(fid_bitmap, MV88E6XXX_N_FID);
|
2017-05-02 02:05:16 +08:00
|
|
|
struct mv88e6xxx_vtu_entry vlan = {
|
|
|
|
.vid = chip->info->max_vid,
|
|
|
|
};
|
2016-02-27 02:16:04 +08:00
|
|
|
int i, err;
|
2016-02-27 02:16:03 +08:00
|
|
|
|
|
|
|
bitmap_zero(fid_bitmap, MV88E6XXX_N_FID);
|
|
|
|
|
2016-02-27 02:16:04 +08:00
|
|
|
/* Set every FID bit used by the (un)bridged ports */
|
2016-09-30 00:21:57 +08:00
|
|
|
for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
|
2016-11-04 10:23:29 +08:00
|
|
|
err = mv88e6xxx_port_get_fid(chip, i, fid);
|
2016-02-27 02:16:04 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
set_bit(*fid, fid_bitmap);
|
|
|
|
}
|
|
|
|
|
2016-02-27 02:16:03 +08:00
|
|
|
/* Set every FID bit used by the VLAN entries */
|
|
|
|
do {
|
2017-05-02 02:05:22 +08:00
|
|
|
err = mv88e6xxx_vtu_getnext(chip, &vlan);
|
2016-02-27 02:16:03 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (!vlan.valid)
|
|
|
|
break;
|
|
|
|
|
|
|
|
set_bit(vlan.fid, fid_bitmap);
|
2017-05-02 02:05:10 +08:00
|
|
|
} while (vlan.vid < chip->info->max_vid);
|
2016-02-27 02:16:03 +08:00
|
|
|
|
|
|
|
/* The reset value 0x000 is used to indicate that multiple address
|
|
|
|
* databases are not needed. Return the next positive available.
|
|
|
|
*/
|
|
|
|
*fid = find_next_zero_bit(fid_bitmap, MV88E6XXX_N_FID, 1);
|
2016-06-22 00:28:20 +08:00
|
|
|
if (unlikely(*fid >= mv88e6xxx_num_databases(chip)))
|
2016-02-27 02:16:03 +08:00
|
|
|
return -ENOSPC;
|
|
|
|
|
|
|
|
/* Clear the database */
|
2017-03-12 05:12:54 +08:00
|
|
|
return mv88e6xxx_g1_atu_flush(chip, *fid, true);
|
2016-02-27 02:16:03 +08:00
|
|
|
}
|
|
|
|
|
2017-05-02 02:05:25 +08:00
|
|
|
static int mv88e6xxx_vtu_get(struct mv88e6xxx_chip *chip, u16 vid,
|
|
|
|
struct mv88e6xxx_vtu_entry *entry, bool new)
|
2016-02-27 02:16:01 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!vid)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2017-05-02 02:05:16 +08:00
|
|
|
entry->vid = vid - 1;
|
|
|
|
entry->valid = false;
|
2016-02-27 02:16:01 +08:00
|
|
|
|
2017-05-02 02:05:22 +08:00
|
|
|
err = mv88e6xxx_vtu_getnext(chip, entry);
|
2016-02-27 02:16:01 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-05-02 02:05:25 +08:00
|
|
|
if (entry->vid == vid && entry->valid)
|
|
|
|
return 0;
|
2016-02-27 02:16:01 +08:00
|
|
|
|
2017-05-02 02:05:25 +08:00
|
|
|
if (new) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Initialize a fresh VLAN entry */
|
|
|
|
memset(entry, 0, sizeof(*entry));
|
|
|
|
entry->valid = true;
|
|
|
|
entry->vid = vid;
|
|
|
|
|
2017-06-08 06:12:16 +08:00
|
|
|
/* Exclude all ports */
|
2017-05-02 02:05:25 +08:00
|
|
|
for (i = 0; i < mv88e6xxx_num_ports(chip); ++i)
|
2017-06-08 06:12:16 +08:00
|
|
|
entry->member[i] =
|
|
|
|
GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER;
|
2017-05-02 02:05:25 +08:00
|
|
|
|
|
|
|
return mv88e6xxx_atu_new(chip, &entry->fid);
|
2016-02-27 02:16:01 +08:00
|
|
|
}
|
|
|
|
|
2017-05-02 02:05:25 +08:00
|
|
|
/* switchdev expects -EOPNOTSUPP to honor software VLANs */
|
|
|
|
return -EOPNOTSUPP;
|
2016-02-27 02:16:01 +08:00
|
|
|
}
|
|
|
|
|
2016-02-13 01:09:40 +08:00
|
|
|
static int mv88e6xxx_port_check_hw_vlan(struct dsa_switch *ds, int port,
|
|
|
|
u16 vid_begin, u16 vid_end)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2017-05-02 02:05:16 +08:00
|
|
|
struct mv88e6xxx_vtu_entry vlan = {
|
|
|
|
.vid = vid_begin - 1,
|
|
|
|
};
|
2016-02-13 01:09:40 +08:00
|
|
|
int i, err;
|
|
|
|
|
|
|
|
if (!vid_begin)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-02-13 01:09:40 +08:00
|
|
|
|
|
|
|
do {
|
2017-05-02 02:05:22 +08:00
|
|
|
err = mv88e6xxx_vtu_getnext(chip, &vlan);
|
2016-02-13 01:09:40 +08:00
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
|
|
|
if (!vlan.valid)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (vlan.vid > vid_end)
|
|
|
|
break;
|
|
|
|
|
2016-09-30 00:21:57 +08:00
|
|
|
for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
|
2016-02-13 01:09:40 +08:00
|
|
|
if (dsa_is_dsa_port(ds, i) || dsa_is_cpu_port(ds, i))
|
|
|
|
continue;
|
|
|
|
|
2016-12-12 04:07:19 +08:00
|
|
|
if (!ds->ports[port].netdev)
|
|
|
|
continue;
|
|
|
|
|
2017-05-02 02:05:11 +08:00
|
|
|
if (vlan.member[i] ==
|
2016-02-13 01:09:40 +08:00
|
|
|
GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER)
|
|
|
|
continue;
|
|
|
|
|
2017-01-28 04:29:42 +08:00
|
|
|
if (ds->ports[i].bridge_dev ==
|
|
|
|
ds->ports[port].bridge_dev)
|
2016-02-13 01:09:40 +08:00
|
|
|
break; /* same bridge, check next VLAN */
|
|
|
|
|
2017-01-28 04:29:42 +08:00
|
|
|
if (!ds->ports[i].bridge_dev)
|
2016-12-12 04:07:19 +08:00
|
|
|
continue;
|
|
|
|
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(ds->dev, "p%d: hw VLAN %d already used by %s\n",
|
|
|
|
port, vlan.vid,
|
|
|
|
netdev_name(ds->ports[i].bridge_dev));
|
2016-02-13 01:09:40 +08:00
|
|
|
err = -EOPNOTSUPP;
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
} while (vlan.vid < vid_end);
|
|
|
|
|
|
|
|
unlock:
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-02-13 01:09:40 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_port_vlan_filtering(struct dsa_switch *ds, int port,
|
|
|
|
bool vlan_filtering)
|
2016-02-27 02:16:08 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-11-04 10:23:31 +08:00
|
|
|
u16 mode = vlan_filtering ? PORT_CONTROL_2_8021Q_SECURE :
|
2016-02-27 02:16:08 +08:00
|
|
|
PORT_CONTROL_2_8021Q_DISABLED;
|
2016-09-21 07:40:31 +08:00
|
|
|
int err;
|
2016-02-27 02:16:08 +08:00
|
|
|
|
2017-05-02 02:05:10 +08:00
|
|
|
if (!chip->info->max_vid)
|
2016-05-10 01:22:47 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-11-04 10:23:31 +08:00
|
|
|
err = mv88e6xxx_port_set_8021q_mode(chip, port, mode);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-02-27 02:16:08 +08:00
|
|
|
|
2016-09-21 07:40:31 +08:00
|
|
|
return err;
|
2016-02-27 02:16:08 +08:00
|
|
|
}
|
|
|
|
|
2016-06-21 01:13:58 +08:00
|
|
|
static int
|
|
|
|
mv88e6xxx_port_vlan_prepare(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_vlan *vlan,
|
|
|
|
struct switchdev_trans *trans)
|
2015-11-02 01:33:55 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-02-13 01:09:40 +08:00
|
|
|
int err;
|
|
|
|
|
2017-05-02 02:05:10 +08:00
|
|
|
if (!chip->info->max_vid)
|
2016-05-10 01:22:47 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-02-13 01:09:40 +08:00
|
|
|
/* If the requested port doesn't belong to the same bridge as the VLAN
|
|
|
|
* members, do not support it (yet) and fallback to software VLAN.
|
|
|
|
*/
|
|
|
|
err = mv88e6xxx_port_check_hw_vlan(ds, port, vlan->vid_begin,
|
|
|
|
vlan->vid_end);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2015-11-02 01:33:55 +08:00
|
|
|
/* We don't need any dynamic resource from the kernel (yet),
|
|
|
|
* so skip the prepare phase.
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int _mv88e6xxx_port_vlan_add(struct mv88e6xxx_chip *chip, int port,
|
2017-06-08 06:12:13 +08:00
|
|
|
u16 vid, u8 member)
|
2015-08-14 00:52:22 +08:00
|
|
|
{
|
2016-09-30 00:21:58 +08:00
|
|
|
struct mv88e6xxx_vtu_entry vlan;
|
2015-08-14 00:52:22 +08:00
|
|
|
int err;
|
|
|
|
|
2017-05-02 02:05:25 +08:00
|
|
|
err = mv88e6xxx_vtu_get(chip, vid, &vlan, true);
|
2015-08-14 00:52:22 +08:00
|
|
|
if (err)
|
2015-11-02 01:33:55 +08:00
|
|
|
return err;
|
2015-08-14 00:52:22 +08:00
|
|
|
|
2017-06-08 06:12:13 +08:00
|
|
|
vlan.member[port] = member;
|
2015-08-14 00:52:22 +08:00
|
|
|
|
2017-05-02 02:05:23 +08:00
|
|
|
return mv88e6xxx_vtu_loadpurge(chip, &vlan);
|
2015-11-02 01:33:55 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static void mv88e6xxx_port_vlan_add(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_vlan *vlan,
|
|
|
|
struct switchdev_trans *trans)
|
2015-11-02 01:33:55 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2015-11-02 01:33:55 +08:00
|
|
|
bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
|
|
|
|
bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID;
|
2017-06-08 06:12:13 +08:00
|
|
|
u8 member;
|
2015-11-02 01:33:55 +08:00
|
|
|
u16 vid;
|
|
|
|
|
2017-05-02 02:05:10 +08:00
|
|
|
if (!chip->info->max_vid)
|
2016-05-10 01:22:47 +08:00
|
|
|
return;
|
|
|
|
|
2017-06-08 06:12:13 +08:00
|
|
|
if (dsa_is_dsa_port(ds, port) || dsa_is_cpu_port(ds, port))
|
|
|
|
member = GLOBAL_VTU_DATA_MEMBER_TAG_UNMODIFIED;
|
|
|
|
else if (untagged)
|
|
|
|
member = GLOBAL_VTU_DATA_MEMBER_TAG_UNTAGGED;
|
|
|
|
else
|
|
|
|
member = GLOBAL_VTU_DATA_MEMBER_TAG_TAGGED;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2015-11-02 01:33:55 +08:00
|
|
|
|
2016-04-06 23:55:05 +08:00
|
|
|
for (vid = vlan->vid_begin; vid <= vlan->vid_end; ++vid)
|
2017-06-08 06:12:13 +08:00
|
|
|
if (_mv88e6xxx_port_vlan_add(chip, port, vid, member))
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(ds->dev, "p%d: failed to add VLAN %d%c\n", port,
|
|
|
|
vid, untagged ? 'u' : 't');
|
2015-11-02 01:33:55 +08:00
|
|
|
|
2016-11-04 10:23:30 +08:00
|
|
|
if (pvid && mv88e6xxx_port_set_pvid(chip, port, vlan->vid_end))
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(ds->dev, "p%d: failed to set PVID %d\n", port,
|
|
|
|
vlan->vid_end);
|
2015-08-14 00:52:22 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-08-14 00:52:22 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int _mv88e6xxx_port_vlan_del(struct mv88e6xxx_chip *chip,
|
2016-04-29 09:24:06 +08:00
|
|
|
int port, u16 vid)
|
2015-08-14 00:52:21 +08:00
|
|
|
{
|
2016-09-30 00:21:58 +08:00
|
|
|
struct mv88e6xxx_vtu_entry vlan;
|
2015-08-14 00:52:21 +08:00
|
|
|
int i, err;
|
|
|
|
|
2017-05-02 02:05:25 +08:00
|
|
|
err = mv88e6xxx_vtu_get(chip, vid, &vlan, false);
|
2015-08-14 00:52:21 +08:00
|
|
|
if (err)
|
2015-11-02 01:33:55 +08:00
|
|
|
return err;
|
2015-08-14 00:52:21 +08:00
|
|
|
|
2016-02-27 02:16:01 +08:00
|
|
|
/* Tell switchdev if this VLAN is handled in software */
|
2017-05-02 02:05:11 +08:00
|
|
|
if (vlan.member[port] == GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER)
|
2016-02-06 03:04:39 +08:00
|
|
|
return -EOPNOTSUPP;
|
2015-08-14 00:52:21 +08:00
|
|
|
|
2017-05-02 02:05:11 +08:00
|
|
|
vlan.member[port] = GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER;
|
2015-08-14 00:52:21 +08:00
|
|
|
|
|
|
|
/* keep the VLAN unless all ports are excluded */
|
2015-10-12 06:08:36 +08:00
|
|
|
vlan.valid = false;
|
2016-09-30 00:21:57 +08:00
|
|
|
for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
|
2017-05-02 02:05:11 +08:00
|
|
|
if (vlan.member[i] != GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER) {
|
2015-10-12 06:08:36 +08:00
|
|
|
vlan.valid = true;
|
2015-08-14 00:52:21 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-02 02:05:23 +08:00
|
|
|
err = mv88e6xxx_vtu_loadpurge(chip, &vlan);
|
2015-11-02 01:33:55 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-03-12 05:12:55 +08:00
|
|
|
return mv88e6xxx_g1_atu_remove(chip, vlan.fid, port, false);
|
2015-11-02 01:33:55 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_port_vlan_del(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_vlan *vlan)
|
2015-11-02 01:33:55 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2015-11-02 01:33:55 +08:00
|
|
|
u16 pvid, vid;
|
|
|
|
int err = 0;
|
|
|
|
|
2017-05-02 02:05:10 +08:00
|
|
|
if (!chip->info->max_vid)
|
2016-05-10 01:22:47 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2015-11-02 01:33:55 +08:00
|
|
|
|
2016-11-04 10:23:30 +08:00
|
|
|
err = mv88e6xxx_port_get_pvid(chip, port, &pvid);
|
2015-08-14 00:52:21 +08:00
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
2015-11-02 01:33:55 +08:00
|
|
|
for (vid = vlan->vid_begin; vid <= vlan->vid_end; ++vid) {
|
2016-06-22 00:28:20 +08:00
|
|
|
err = _mv88e6xxx_port_vlan_del(chip, port, vid);
|
2015-11-02 01:33:55 +08:00
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
|
|
|
if (vid == pvid) {
|
2016-11-04 10:23:30 +08:00
|
|
|
err = mv88e6xxx_port_set_pvid(chip, port, 0);
|
2015-11-02 01:33:55 +08:00
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-14 00:52:21 +08:00
|
|
|
unlock:
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-08-14 00:52:21 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-08-31 23:50:04 +08:00
|
|
|
static int mv88e6xxx_port_db_load_purge(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
const unsigned char *addr, u16 vid,
|
|
|
|
u8 state)
|
2015-08-10 21:09:50 +08:00
|
|
|
{
|
2016-09-30 00:21:58 +08:00
|
|
|
struct mv88e6xxx_vtu_entry vlan;
|
2016-09-20 07:56:11 +08:00
|
|
|
struct mv88e6xxx_atu_entry entry;
|
2016-02-27 02:16:03 +08:00
|
|
|
int err;
|
|
|
|
|
2016-02-27 02:16:04 +08:00
|
|
|
/* Null VLAN ID corresponds to the port private database */
|
|
|
|
if (vid == 0)
|
2016-11-04 10:23:29 +08:00
|
|
|
err = mv88e6xxx_port_get_fid(chip, port, &vlan.fid);
|
2016-02-27 02:16:04 +08:00
|
|
|
else
|
2017-05-02 02:05:25 +08:00
|
|
|
err = mv88e6xxx_vtu_get(chip, vid, &vlan, false);
|
2016-02-27 02:16:03 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2015-08-10 21:09:50 +08:00
|
|
|
|
2017-03-12 05:12:53 +08:00
|
|
|
entry.state = GLOBAL_ATU_DATA_STATE_UNUSED;
|
|
|
|
ether_addr_copy(entry.mac, addr);
|
|
|
|
eth_addr_dec(entry.mac);
|
|
|
|
|
|
|
|
err = mv88e6xxx_g1_atu_getnext(chip, vlan.fid, &entry);
|
2016-09-20 07:56:11 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-03-12 05:12:53 +08:00
|
|
|
/* Initialize a fresh ATU entry if it isn't found */
|
|
|
|
if (entry.state == GLOBAL_ATU_DATA_STATE_UNUSED ||
|
|
|
|
!ether_addr_equal(entry.mac, addr)) {
|
|
|
|
memset(&entry, 0, sizeof(entry));
|
|
|
|
ether_addr_copy(entry.mac, addr);
|
|
|
|
}
|
|
|
|
|
2016-09-20 07:56:11 +08:00
|
|
|
/* Purge the ATU entry only if no port is using it anymore */
|
|
|
|
if (state == GLOBAL_ATU_DATA_STATE_UNUSED) {
|
2017-03-12 05:12:57 +08:00
|
|
|
entry.portvec &= ~BIT(port);
|
|
|
|
if (!entry.portvec)
|
2016-09-20 07:56:11 +08:00
|
|
|
entry.state = GLOBAL_ATU_DATA_STATE_UNUSED;
|
|
|
|
} else {
|
2017-03-12 05:12:57 +08:00
|
|
|
entry.portvec |= BIT(port);
|
2016-09-20 07:56:11 +08:00
|
|
|
entry.state = state;
|
2015-08-10 21:09:50 +08:00
|
|
|
}
|
|
|
|
|
2017-03-12 05:12:52 +08:00
|
|
|
return mv88e6xxx_g1_atu_loadpurge(chip, vlan.fid, &entry);
|
2015-08-06 13:44:08 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_port_fdb_prepare(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_fdb *fdb,
|
|
|
|
struct switchdev_trans *trans)
|
2015-10-08 23:35:12 +08:00
|
|
|
{
|
|
|
|
/* We don't need any dynamic resource from the kernel (yet),
|
|
|
|
* so skip the prepare phase.
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static void mv88e6xxx_port_fdb_add(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_fdb *fdb,
|
|
|
|
struct switchdev_trans *trans)
|
2015-08-06 13:44:08 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2015-08-06 13:44:08 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-08-31 23:50:04 +08:00
|
|
|
if (mv88e6xxx_port_db_load_purge(chip, port, fdb->addr, fdb->vid,
|
|
|
|
GLOBAL_ATU_DATA_STATE_UC_STATIC))
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(ds->dev, "p%d: failed to load unicast MAC address\n",
|
|
|
|
port);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-08-06 13:44:08 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_port_fdb_del(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_fdb *fdb)
|
2015-08-06 13:44:08 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-08-31 23:50:04 +08:00
|
|
|
int err;
|
2015-08-06 13:44:08 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-08-31 23:50:04 +08:00
|
|
|
err = mv88e6xxx_port_db_load_purge(chip, port, fdb->addr, fdb->vid,
|
|
|
|
GLOBAL_ATU_DATA_STATE_UNUSED);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-08-06 13:44:08 +08:00
|
|
|
|
2016-08-31 23:50:04 +08:00
|
|
|
return err;
|
2015-08-06 13:44:08 +08:00
|
|
|
}
|
|
|
|
|
2016-08-31 23:50:04 +08:00
|
|
|
static int mv88e6xxx_port_db_dump_fid(struct mv88e6xxx_chip *chip,
|
|
|
|
u16 fid, u16 vid, int port,
|
|
|
|
struct switchdev_obj *obj,
|
2017-05-18 03:46:05 +08:00
|
|
|
switchdev_obj_dump_cb_t *cb)
|
2016-02-27 02:16:02 +08:00
|
|
|
{
|
2017-03-12 05:12:53 +08:00
|
|
|
struct mv88e6xxx_atu_entry addr;
|
2016-02-27 02:16:02 +08:00
|
|
|
int err;
|
|
|
|
|
2017-03-12 05:12:53 +08:00
|
|
|
addr.state = GLOBAL_ATU_DATA_STATE_UNUSED;
|
|
|
|
eth_broadcast_addr(addr.mac);
|
2016-02-27 02:16:02 +08:00
|
|
|
|
|
|
|
do {
|
2017-03-12 05:12:53 +08:00
|
|
|
err = mv88e6xxx_g1_atu_getnext(chip, fid, &addr);
|
2016-02-27 02:16:02 +08:00
|
|
|
if (err)
|
2016-08-31 23:50:04 +08:00
|
|
|
return err;
|
2016-02-27 02:16:02 +08:00
|
|
|
|
|
|
|
if (addr.state == GLOBAL_ATU_DATA_STATE_UNUSED)
|
|
|
|
break;
|
|
|
|
|
2017-03-12 05:12:57 +08:00
|
|
|
if (addr.trunk || (addr.portvec & BIT(port)) == 0)
|
2016-08-31 23:50:04 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (obj->id == SWITCHDEV_OBJ_ID_PORT_FDB) {
|
|
|
|
struct switchdev_obj_port_fdb *fdb;
|
2016-02-27 02:16:02 +08:00
|
|
|
|
2016-08-31 23:50:04 +08:00
|
|
|
if (!is_unicast_ether_addr(addr.mac))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
fdb = SWITCHDEV_OBJ_PORT_FDB(obj);
|
2016-02-27 02:16:02 +08:00
|
|
|
fdb->vid = vid;
|
|
|
|
ether_addr_copy(fdb->addr, addr.mac);
|
2016-08-31 23:50:04 +08:00
|
|
|
if (addr.state == GLOBAL_ATU_DATA_STATE_UC_STATIC)
|
|
|
|
fdb->ndm_state = NUD_NOARP;
|
|
|
|
else
|
|
|
|
fdb->ndm_state = NUD_REACHABLE;
|
2016-08-31 23:50:05 +08:00
|
|
|
} else if (obj->id == SWITCHDEV_OBJ_ID_PORT_MDB) {
|
|
|
|
struct switchdev_obj_port_mdb *mdb;
|
|
|
|
|
|
|
|
if (!is_multicast_ether_addr(addr.mac))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
mdb = SWITCHDEV_OBJ_PORT_MDB(obj);
|
|
|
|
mdb->vid = vid;
|
|
|
|
ether_addr_copy(mdb->addr, addr.mac);
|
2016-08-31 23:50:04 +08:00
|
|
|
} else {
|
|
|
|
return -EOPNOTSUPP;
|
2016-02-27 02:16:02 +08:00
|
|
|
}
|
2016-08-31 23:50:04 +08:00
|
|
|
|
|
|
|
err = cb(obj);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2016-02-27 02:16:02 +08:00
|
|
|
} while (!is_broadcast_ether_addr(addr.mac));
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-08-31 23:50:04 +08:00
|
|
|
static int mv88e6xxx_port_db_dump(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
struct switchdev_obj *obj,
|
2017-05-18 03:46:05 +08:00
|
|
|
switchdev_obj_dump_cb_t *cb)
|
2015-10-22 21:34:41 +08:00
|
|
|
{
|
2016-09-30 00:21:58 +08:00
|
|
|
struct mv88e6xxx_vtu_entry vlan = {
|
2017-05-02 02:05:10 +08:00
|
|
|
.vid = chip->info->max_vid,
|
2015-10-22 21:34:41 +08:00
|
|
|
};
|
2016-02-27 02:16:04 +08:00
|
|
|
u16 fid;
|
2015-10-22 21:34:41 +08:00
|
|
|
int err;
|
|
|
|
|
2016-02-27 02:16:04 +08:00
|
|
|
/* Dump port's default Filtering Information Database (VLAN ID 0) */
|
2016-11-04 10:23:29 +08:00
|
|
|
err = mv88e6xxx_port_get_fid(chip, port, &fid);
|
2016-02-27 02:16:04 +08:00
|
|
|
if (err)
|
2016-08-31 23:50:04 +08:00
|
|
|
return err;
|
2016-02-27 02:16:04 +08:00
|
|
|
|
2016-08-31 23:50:04 +08:00
|
|
|
err = mv88e6xxx_port_db_dump_fid(chip, fid, 0, port, obj, cb);
|
2016-02-27 02:16:04 +08:00
|
|
|
if (err)
|
2016-08-31 23:50:04 +08:00
|
|
|
return err;
|
2016-02-27 02:16:04 +08:00
|
|
|
|
2016-02-27 02:16:02 +08:00
|
|
|
/* Dump VLANs' Filtering Information Databases */
|
2015-10-22 21:34:41 +08:00
|
|
|
do {
|
2017-05-02 02:05:22 +08:00
|
|
|
err = mv88e6xxx_vtu_getnext(chip, &vlan);
|
2015-10-22 21:34:41 +08:00
|
|
|
if (err)
|
2016-08-31 23:50:04 +08:00
|
|
|
return err;
|
2015-10-22 21:34:41 +08:00
|
|
|
|
|
|
|
if (!vlan.valid)
|
|
|
|
break;
|
|
|
|
|
2016-08-31 23:50:04 +08:00
|
|
|
err = mv88e6xxx_port_db_dump_fid(chip, vlan.fid, vlan.vid, port,
|
|
|
|
obj, cb);
|
2015-10-22 21:34:41 +08:00
|
|
|
if (err)
|
2016-08-31 23:50:04 +08:00
|
|
|
return err;
|
2017-05-02 02:05:10 +08:00
|
|
|
} while (vlan.vid < chip->info->max_vid);
|
2015-10-22 21:34:41 +08:00
|
|
|
|
2016-08-31 23:50:04 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_port_fdb_dump(struct dsa_switch *ds, int port,
|
|
|
|
struct switchdev_obj_port_fdb *fdb,
|
2017-05-18 03:46:05 +08:00
|
|
|
switchdev_obj_dump_cb_t *cb)
|
2016-08-31 23:50:04 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-08-31 23:50:04 +08:00
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_port_db_dump(chip, port, &fdb->obj, cb);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-10-22 21:34:41 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-31 05:37:12 +08:00
|
|
|
static int mv88e6xxx_bridge_map(struct mv88e6xxx_chip *chip,
|
|
|
|
struct net_device *br)
|
2015-11-05 06:23:40 +08:00
|
|
|
{
|
2017-03-31 05:37:13 +08:00
|
|
|
struct dsa_switch *ds;
|
2017-03-31 05:37:12 +08:00
|
|
|
int port;
|
2017-03-31 05:37:13 +08:00
|
|
|
int dev;
|
2017-03-31 05:37:12 +08:00
|
|
|
int err;
|
2016-02-27 02:16:05 +08:00
|
|
|
|
2017-03-31 05:37:12 +08:00
|
|
|
/* Remap the Port VLAN of each local bridge group member */
|
|
|
|
for (port = 0; port < mv88e6xxx_num_ports(chip); ++port) {
|
|
|
|
if (chip->ds->ports[port].bridge_dev == br) {
|
|
|
|
err = mv88e6xxx_port_vlan_map(chip, port);
|
2016-02-27 02:16:06 +08:00
|
|
|
if (err)
|
2017-03-31 05:37:12 +08:00
|
|
|
return err;
|
2016-02-27 02:16:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-31 05:37:13 +08:00
|
|
|
if (!mv88e6xxx_has_pvt(chip))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Remap the Port VLAN of each cross-chip bridge group member */
|
|
|
|
for (dev = 0; dev < DSA_MAX_SWITCHES; ++dev) {
|
|
|
|
ds = chip->ds->dst->ds[dev];
|
|
|
|
if (!ds)
|
|
|
|
break;
|
|
|
|
|
|
|
|
for (port = 0; port < ds->num_ports; ++port) {
|
|
|
|
if (ds->ports[port].bridge_dev == br) {
|
|
|
|
err = mv88e6xxx_pvt_map(chip, dev, port);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-31 05:37:12 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_port_bridge_join(struct dsa_switch *ds, int port,
|
|
|
|
struct net_device *br)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_bridge_map(chip, br);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-02-13 01:09:39 +08:00
|
|
|
|
2016-02-27 02:16:05 +08:00
|
|
|
return err;
|
2015-11-05 06:23:40 +08:00
|
|
|
}
|
|
|
|
|
2017-01-28 04:29:41 +08:00
|
|
|
static void mv88e6xxx_port_bridge_leave(struct dsa_switch *ds, int port,
|
|
|
|
struct net_device *br)
|
2016-02-06 03:07:14 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-02-27 02:16:05 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2017-03-31 05:37:12 +08:00
|
|
|
if (mv88e6xxx_bridge_map(chip, br) ||
|
|
|
|
mv88e6xxx_port_vlan_map(chip, port))
|
|
|
|
dev_err(ds->dev, "failed to remap in-chip Port VLAN\n");
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-02-06 03:07:14 +08:00
|
|
|
}
|
|
|
|
|
2017-03-31 05:37:15 +08:00
|
|
|
static int mv88e6xxx_crosschip_bridge_join(struct dsa_switch *ds, int dev,
|
|
|
|
int port, struct net_device *br)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!mv88e6xxx_has_pvt(chip))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_pvt_map(chip, dev, port);
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6xxx_crosschip_bridge_leave(struct dsa_switch *ds, int dev,
|
|
|
|
int port, struct net_device *br)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
|
|
|
|
|
|
|
if (!mv88e6xxx_has_pvt(chip))
|
|
|
|
return;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
if (mv88e6xxx_pvt_map(chip, dev, port))
|
|
|
|
dev_err(ds->dev, "failed to remap cross-chip Port VLAN\n");
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
}
|
|
|
|
|
2016-12-06 06:30:27 +08:00
|
|
|
static int mv88e6xxx_software_reset(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
if (chip->info->ops->reset)
|
|
|
|
return chip->info->ops->reset(chip);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-12-06 06:30:26 +08:00
|
|
|
static void mv88e6xxx_hardware_reset(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
struct gpio_desc *gpiod = chip->reset;
|
|
|
|
|
|
|
|
/* If there is a GPIO connected to the reset pin, toggle it */
|
|
|
|
if (gpiod) {
|
|
|
|
gpiod_set_value_cansleep(gpiod, 1);
|
|
|
|
usleep_range(10000, 20000);
|
|
|
|
gpiod_set_value_cansleep(gpiod, 0);
|
|
|
|
usleep_range(10000, 20000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 06:30:25 +08:00
|
|
|
static int mv88e6xxx_disable_ports(struct mv88e6xxx_chip *chip)
|
2016-05-10 01:22:49 +08:00
|
|
|
{
|
2016-12-06 06:30:25 +08:00
|
|
|
int i, err;
|
2016-05-10 01:22:49 +08:00
|
|
|
|
2016-12-06 06:30:25 +08:00
|
|
|
/* Set all ports to the Disabled state */
|
2016-09-30 00:21:57 +08:00
|
|
|
for (i = 0; i < mv88e6xxx_num_ports(chip); i++) {
|
2017-06-09 06:34:10 +08:00
|
|
|
err = mv88e6xxx_port_set_state(chip, i, BR_STATE_DISABLED);
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2016-05-10 01:22:49 +08:00
|
|
|
}
|
|
|
|
|
2016-12-06 06:30:25 +08:00
|
|
|
/* Wait for transmit queues to drain,
|
|
|
|
* i.e. 2ms for a maximum frame to be transmitted at 10 Mbps.
|
|
|
|
*/
|
2016-05-10 01:22:49 +08:00
|
|
|
usleep_range(2000, 4000);
|
|
|
|
|
2016-12-06 06:30:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_switch_reset(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = mv88e6xxx_disable_ports(chip);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2016-12-06 06:30:26 +08:00
|
|
|
mv88e6xxx_hardware_reset(chip);
|
2016-05-10 01:22:49 +08:00
|
|
|
|
2016-12-06 06:30:27 +08:00
|
|
|
return mv88e6xxx_software_reset(chip);
|
2016-05-10 01:22:49 +08:00
|
|
|
}
|
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
static int mv88e6xxx_set_port_mode(struct mv88e6xxx_chip *chip, int port,
|
2017-06-09 06:34:09 +08:00
|
|
|
enum mv88e6xxx_frame_mode frame,
|
|
|
|
enum mv88e6xxx_egress_mode egress, u16 etype)
|
2016-12-03 11:35:19 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
if (!chip->info->ops->port_set_frame_mode)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
err = mv88e6xxx_port_set_egress_mode(chip, port, egress);
|
2016-12-03 11:35:19 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
err = chip->info->ops->port_set_frame_mode(chip, port, frame);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (chip->info->ops->port_set_ether_type)
|
|
|
|
return chip->info->ops->port_set_ether_type(chip, port, etype);
|
|
|
|
|
|
|
|
return 0;
|
2016-12-03 11:35:19 +08:00
|
|
|
}
|
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
static int mv88e6xxx_set_port_mode_normal(struct mv88e6xxx_chip *chip, int port)
|
2016-12-03 11:35:19 +08:00
|
|
|
{
|
2017-03-12 05:12:59 +08:00
|
|
|
return mv88e6xxx_set_port_mode(chip, port, MV88E6XXX_FRAME_MODE_NORMAL,
|
2017-06-09 06:34:09 +08:00
|
|
|
MV88E6XXX_EGRESS_MODE_UNMODIFIED,
|
2017-03-12 05:12:59 +08:00
|
|
|
PORT_ETH_TYPE_DEFAULT);
|
|
|
|
}
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
static int mv88e6xxx_set_port_mode_dsa(struct mv88e6xxx_chip *chip, int port)
|
|
|
|
{
|
|
|
|
return mv88e6xxx_set_port_mode(chip, port, MV88E6XXX_FRAME_MODE_DSA,
|
2017-06-09 06:34:09 +08:00
|
|
|
MV88E6XXX_EGRESS_MODE_UNMODIFIED,
|
2017-03-12 05:12:59 +08:00
|
|
|
PORT_ETH_TYPE_DEFAULT);
|
|
|
|
}
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
static int mv88e6xxx_set_port_mode_edsa(struct mv88e6xxx_chip *chip, int port)
|
|
|
|
{
|
|
|
|
return mv88e6xxx_set_port_mode(chip, port,
|
|
|
|
MV88E6XXX_FRAME_MODE_ETHERTYPE,
|
2017-06-09 06:34:09 +08:00
|
|
|
MV88E6XXX_EGRESS_MODE_ETHERTYPE,
|
|
|
|
ETH_P_EDSA);
|
2017-03-12 05:12:59 +08:00
|
|
|
}
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
static int mv88e6xxx_setup_port_mode(struct mv88e6xxx_chip *chip, int port)
|
|
|
|
{
|
|
|
|
if (dsa_is_dsa_port(chip->ds, port))
|
|
|
|
return mv88e6xxx_set_port_mode_dsa(chip, port);
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
if (dsa_is_normal_port(chip->ds, port))
|
|
|
|
return mv88e6xxx_set_port_mode_normal(chip, port);
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
/* Setup CPU port mode depending on its supported tag format */
|
|
|
|
if (chip->info->tag_protocol == DSA_TAG_PROTO_DSA)
|
|
|
|
return mv88e6xxx_set_port_mode_dsa(chip, port);
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
if (chip->info->tag_protocol == DSA_TAG_PROTO_EDSA)
|
|
|
|
return mv88e6xxx_set_port_mode_edsa(chip, port);
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:12:59 +08:00
|
|
|
return -EINVAL;
|
2016-12-03 11:35:19 +08:00
|
|
|
}
|
|
|
|
|
2017-03-12 05:13:00 +08:00
|
|
|
static int mv88e6xxx_setup_message_port(struct mv88e6xxx_chip *chip, int port)
|
2016-12-03 11:35:19 +08:00
|
|
|
{
|
2017-03-12 05:13:00 +08:00
|
|
|
bool message = dsa_is_dsa_port(chip->ds, port);
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:13:00 +08:00
|
|
|
return mv88e6xxx_port_set_message_port(chip, port, message);
|
2017-03-12 05:12:59 +08:00
|
|
|
}
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:13:00 +08:00
|
|
|
static int mv88e6xxx_setup_egress_floods(struct mv88e6xxx_chip *chip, int port)
|
2017-03-12 05:12:59 +08:00
|
|
|
{
|
2017-03-12 05:13:00 +08:00
|
|
|
bool flood = port == dsa_upstream_port(chip->ds);
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2017-03-12 05:13:00 +08:00
|
|
|
/* Upstream ports flood frames with unknown unicast or multicast DA */
|
|
|
|
if (chip->info->ops->port_set_egress_floods)
|
|
|
|
return chip->info->ops->port_set_egress_floods(chip, port,
|
|
|
|
flood, flood);
|
2017-03-12 05:12:50 +08:00
|
|
|
|
2017-03-12 05:13:00 +08:00
|
|
|
return 0;
|
2017-03-12 05:12:50 +08:00
|
|
|
}
|
|
|
|
|
2017-05-26 07:03:21 +08:00
|
|
|
static int mv88e6xxx_serdes_power(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
bool on)
|
|
|
|
{
|
2017-05-27 06:02:42 +08:00
|
|
|
if (chip->info->ops->serdes_power)
|
|
|
|
return chip->info->ops->serdes_power(chip, port, on);
|
2017-05-26 07:03:24 +08:00
|
|
|
|
2017-05-27 06:02:42 +08:00
|
|
|
return 0;
|
2017-05-26 07:03:21 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_setup_port(struct mv88e6xxx_chip *chip, int port)
|
2015-03-27 09:36:29 +08:00
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
struct dsa_switch *ds = chip->ds;
|
2016-09-21 07:40:31 +08:00
|
|
|
int err;
|
2015-05-06 07:09:47 +08:00
|
|
|
u16 reg;
|
2015-03-27 09:36:29 +08:00
|
|
|
|
2016-11-04 10:23:36 +08:00
|
|
|
/* MAC Forcing register: don't force link, speed, duplex or flow control
|
|
|
|
* state to any particular values on physical ports, but force the CPU
|
|
|
|
* port and all DSA ports to their maximum bandwidth and full duplex.
|
|
|
|
*/
|
|
|
|
if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
|
|
|
|
err = mv88e6xxx_port_setup_mac(chip, port, LINK_FORCED_UP,
|
|
|
|
SPEED_MAX, DUPLEX_FULL,
|
|
|
|
PHY_INTERFACE_MODE_NA);
|
|
|
|
else
|
|
|
|
err = mv88e6xxx_port_setup_mac(chip, port, LINK_UNFORCED,
|
|
|
|
SPEED_UNFORCED, DUPLEX_UNFORCED,
|
|
|
|
PHY_INTERFACE_MODE_NA);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
|
|
|
|
/* Port Control: disable Drop-on-Unlock, disable Drop-on-Lock,
|
|
|
|
* disable Header mode, enable IGMP/MLD snooping, disable VLAN
|
|
|
|
* tunneling, determine priority by looking at 802.1p and IP
|
|
|
|
* priority fields (IP prio has precedence), and set STP state
|
|
|
|
* to Forwarding.
|
|
|
|
*
|
|
|
|
* If this is the CPU link, use DSA or EDSA tagging depending
|
|
|
|
* on which tagging mode was configured.
|
|
|
|
*
|
|
|
|
* If this is a link to another switch, use DSA tagging mode.
|
|
|
|
*
|
|
|
|
* If this is the upstream port for this switch, enable
|
|
|
|
* forwarding of unknown unicasts and multicasts.
|
|
|
|
*/
|
2016-12-03 11:35:19 +08:00
|
|
|
reg = PORT_CONTROL_IGMP_MLD_SNOOP |
|
2015-05-06 07:09:47 +08:00
|
|
|
PORT_CONTROL_USE_TAG | PORT_CONTROL_USE_IP |
|
|
|
|
PORT_CONTROL_STATE_FORWARDING;
|
2016-12-03 11:35:19 +08:00
|
|
|
err = mv88e6xxx_port_write(chip, port, PORT_CONTROL, reg);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2015-08-18 05:52:52 +08:00
|
|
|
|
2017-03-12 05:13:00 +08:00
|
|
|
err = mv88e6xxx_setup_port_mode(chip, port);
|
2016-12-03 11:35:19 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
|
2017-03-12 05:13:00 +08:00
|
|
|
err = mv88e6xxx_setup_egress_floods(chip, port);
|
2017-03-12 05:12:59 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-05-26 07:03:24 +08:00
|
|
|
/* Enable the SERDES interface for DSA and CPU ports. Normal
|
|
|
|
* ports SERDES are enabled when the port is enabled, thus
|
|
|
|
* saving a bit of power.
|
2016-03-30 09:39:41 +08:00
|
|
|
*/
|
2017-05-26 07:03:24 +08:00
|
|
|
if ((dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))) {
|
|
|
|
err = mv88e6xxx_serdes_power(chip, port, true);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
2016-03-30 09:39:41 +08:00
|
|
|
|
2015-08-14 00:52:23 +08:00
|
|
|
/* Port Control 2: don't force a good FCS, set the maximum frame size to
|
2016-02-27 02:16:07 +08:00
|
|
|
* 10240 bytes, disable 802.1q tags checking, don't discard tagged or
|
2015-08-14 00:52:23 +08:00
|
|
|
* untagged frames on this port, do a destination address lookup on all
|
|
|
|
* received packets as usual, disable ARP mirroring and don't send a
|
|
|
|
* copy of all transmitted/received frames on this port to the CPU.
|
2015-05-06 07:09:47 +08:00
|
|
|
*/
|
2017-02-05 03:15:28 +08:00
|
|
|
err = mv88e6xxx_port_set_map_da(chip, port);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2015-08-14 00:52:23 +08:00
|
|
|
|
2017-02-05 03:15:28 +08:00
|
|
|
reg = 0;
|
|
|
|
if (chip->info->ops->port_set_upstream_port) {
|
|
|
|
err = chip->info->ops->port_set_upstream_port(
|
|
|
|
chip, port, dsa_upstream_port(ds));
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
}
|
|
|
|
|
2017-02-05 03:15:28 +08:00
|
|
|
err = mv88e6xxx_port_set_8021q_mode(chip, port,
|
|
|
|
PORT_CONTROL_2_8021Q_DISABLED);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2016-12-03 11:45:17 +08:00
|
|
|
if (chip->info->ops->port_jumbo_config) {
|
|
|
|
err = chip->info->ops->port_jumbo_config(chip, port);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-05-06 07:09:47 +08:00
|
|
|
/* Port Association Vector: when learning source addresses
|
|
|
|
* 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.
|
|
|
|
*/
|
2015-11-03 23:52:36 +08:00
|
|
|
reg = 1 << port;
|
2016-04-15 02:42:08 +08:00
|
|
|
/* Disable learning for CPU port */
|
|
|
|
if (dsa_is_cpu_port(ds, port))
|
2016-04-15 02:42:07 +08:00
|
|
|
reg = 0;
|
2015-11-03 23:52:36 +08:00
|
|
|
|
2016-09-21 07:40:31 +08:00
|
|
|
err = mv88e6xxx_port_write(chip, port, PORT_ASSOC_VECTOR, reg);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
|
|
|
|
/* Egress rate control 2: disable egress rate control. */
|
2016-09-21 07:40:31 +08:00
|
|
|
err = mv88e6xxx_port_write(chip, port, PORT_RATE_CONTROL_2, 0x0000);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
|
2016-12-03 11:45:19 +08:00
|
|
|
if (chip->info->ops->port_pause_config) {
|
|
|
|
err = chip->info->ops->port_pause_config(chip, port);
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2016-12-03 11:45:19 +08:00
|
|
|
}
|
2015-05-06 07:09:47 +08:00
|
|
|
|
2017-03-12 05:13:01 +08:00
|
|
|
if (chip->info->ops->port_disable_learn_limit) {
|
|
|
|
err = chip->info->ops->port_disable_learn_limit(chip, port);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-12 05:13:02 +08:00
|
|
|
if (chip->info->ops->port_disable_pri_override) {
|
|
|
|
err = chip->info->ops->port_disable_pri_override(chip, port);
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2016-12-03 11:35:16 +08:00
|
|
|
}
|
2016-08-22 22:01:02 +08:00
|
|
|
|
2016-12-03 11:35:16 +08:00
|
|
|
if (chip->info->ops->port_tag_remap) {
|
|
|
|
err = chip->info->ops->port_tag_remap(chip, port);
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
}
|
|
|
|
|
2016-12-03 11:45:18 +08:00
|
|
|
if (chip->info->ops->port_egress_rate_limiting) {
|
|
|
|
err = chip->info->ops->port_egress_rate_limiting(chip, port);
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
}
|
|
|
|
|
2017-03-12 05:12:50 +08:00
|
|
|
err = mv88e6xxx_setup_message_port(chip, port);
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2015-03-27 09:36:29 +08:00
|
|
|
|
net: dsa: mv88e6xxx: share the same default FDB
For hardware cross-chip bridging to work, user ports *and* DSA ports
need to share a common address database, in order to switch a frame to
the correct interconnected device.
This is currently working for VLAN filtering aware systems, since Linux
will implement a bridge group as a 802.1Q VLAN, which has its own FDB,
including DSA and CPU links as members.
However when the system doesn't support VLAN filtering, Linux only
relies on the port-based VLAN to implement a bridge group.
To fix hardware cross-chip bridging for such systems, set the same
default address database 0 for user and DSA ports, instead of giving
them all a different default database.
Note that the bridging code prevents frames to egress between unbridged
ports, and flushes FDB entries of a port when changing its STP state.
Also note that the FID 0 is special and means "all" for ATU operations,
but it's OK since it is used as a default forwarding address database.
Fixes: 2db9ce1fd9a3 ("net: dsa: mv88e6xxx: assign default FDB to ports")
Fixes: 466dfa077022 ("net: dsa: mv88e6xxx: assign dynamic FDB to bridges")
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-04-15 02:42:09 +08:00
|
|
|
/* Port based VLAN map: give each port the same default address
|
2016-02-27 02:16:06 +08:00
|
|
|
* database, and allow bidirectional communication between the
|
|
|
|
* CPU and DSA port(s), and the other ports.
|
2015-03-27 09:36:29 +08:00
|
|
|
*/
|
2016-11-04 10:23:29 +08:00
|
|
|
err = mv88e6xxx_port_set_fid(chip, port, 0);
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2016-02-27 02:16:04 +08:00
|
|
|
|
2017-03-31 05:37:12 +08:00
|
|
|
err = mv88e6xxx_port_vlan_map(chip, port);
|
2016-09-21 07:40:31 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2015-03-27 09:36:29 +08:00
|
|
|
|
|
|
|
/* Default VLAN ID and priority: don't set a default VLAN
|
|
|
|
* ID, and set the default packet priority to zero.
|
|
|
|
*/
|
2016-09-21 07:40:31 +08:00
|
|
|
return mv88e6xxx_port_write(chip, port, PORT_DEFAULT_VLAN, 0x0000);
|
2015-05-06 07:09:48 +08:00
|
|
|
}
|
|
|
|
|
2017-05-26 07:03:24 +08:00
|
|
|
static int mv88e6xxx_port_enable(struct dsa_switch *ds, int port,
|
|
|
|
struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2017-05-27 06:02:42 +08:00
|
|
|
int err;
|
2017-05-26 07:03:24 +08:00
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
2017-05-27 06:02:42 +08:00
|
|
|
err = mv88e6xxx_serdes_power(chip, port, true);
|
2017-05-26 07:03:24 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6xxx_port_disable(struct dsa_switch *ds, int port,
|
|
|
|
struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
2017-05-27 06:02:42 +08:00
|
|
|
if (mv88e6xxx_serdes_power(chip, port, false))
|
|
|
|
dev_err(chip->dev, "failed to power off SERDES\n");
|
2017-05-26 07:03:24 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
}
|
|
|
|
|
2016-10-18 23:53:37 +08:00
|
|
|
static int mv88e6xxx_g1_set_switch_mac(struct mv88e6xxx_chip *chip, u8 *addr)
|
2016-07-19 08:45:34 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_01, (addr[0] << 8) | addr[1]);
|
2016-07-19 08:45:34 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_23, (addr[2] << 8) | addr[3]);
|
2016-07-19 08:45:34 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_45, (addr[4] << 8) | addr[5]);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
return 0;
|
2016-07-19 08:45:34 +08:00
|
|
|
}
|
|
|
|
|
2016-07-19 08:45:40 +08:00
|
|
|
static int mv88e6xxx_set_ageing_time(struct dsa_switch *ds,
|
|
|
|
unsigned int ageing_time)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-07-19 08:45:40 +08:00
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
2017-03-12 05:12:48 +08:00
|
|
|
err = mv88e6xxx_g1_atu_set_age_time(chip, ageing_time);
|
2016-07-19 08:45:40 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-07-19 08:45:30 +08:00
|
|
|
static int mv88e6xxx_g1_setup(struct mv88e6xxx_chip *chip)
|
2015-03-27 09:36:28 +08:00
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
struct dsa_switch *ds = chip->ds;
|
2016-05-10 01:22:53 +08:00
|
|
|
u32 upstream_port = dsa_upstream_port(ds);
|
2016-05-10 01:22:49 +08:00
|
|
|
int err;
|
2015-05-06 07:09:47 +08:00
|
|
|
|
2017-06-09 06:34:11 +08:00
|
|
|
if (chip->info->ops->set_cpu_port) {
|
|
|
|
err = chip->info->ops->set_cpu_port(chip, upstream_port);
|
2016-12-03 11:35:17 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-06-09 06:34:11 +08:00
|
|
|
if (chip->info->ops->set_egress_port) {
|
|
|
|
err = chip->info->ops->set_egress_port(chip, upstream_port);
|
2016-12-03 11:35:17 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
2016-05-10 01:22:53 +08:00
|
|
|
|
2016-05-10 01:22:54 +08:00
|
|
|
/* Disable remote management, and set the switch's DSA device number. */
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL_2,
|
|
|
|
GLOBAL_CONTROL_2_MULTIPLE_CASCADE |
|
|
|
|
(ds->index & 0x1f));
|
2016-05-10 01:22:54 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2015-05-06 07:09:47 +08:00
|
|
|
/* Configure the IP ToS mapping registers. */
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_0, 0x0000);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_1, 0x0000);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_2, 0x5555);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_3, 0x5555);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_4, 0xaaaa);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_5, 0xaaaa);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_6, 0xffff);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_7, 0xffff);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
|
|
|
|
/* Configure the IEEE 802.1p priority mapping register. */
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_IEEE_PRI, 0xfa41);
|
2016-04-15 05:47:12 +08:00
|
|
|
if (err)
|
2016-05-10 01:22:50 +08:00
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
|
2016-11-22 06:27:01 +08:00
|
|
|
/* Initialize the statistics unit */
|
|
|
|
err = mv88e6xxx_stats_set_histogram(chip);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2016-07-19 08:45:30 +08:00
|
|
|
/* Clear the statistics counters for all ports */
|
2016-09-30 00:21:53 +08:00
|
|
|
err = mv88e6xxx_g1_write(chip, GLOBAL_STATS_OP,
|
|
|
|
GLOBAL_STATS_OP_FLUSH_ALL);
|
2016-07-19 08:45:30 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
/* Wait for the flush to complete. */
|
2016-11-22 06:27:05 +08:00
|
|
|
err = mv88e6xxx_g1_stats_wait(chip);
|
2016-07-19 08:45:30 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static int mv88e6xxx_setup(struct dsa_switch *ds)
|
2016-05-10 01:22:50 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-05-10 01:22:50 +08:00
|
|
|
int err;
|
2016-05-10 01:22:56 +08:00
|
|
|
int i;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->ds = ds;
|
2017-01-24 21:53:50 +08:00
|
|
|
ds->slave_mii_bus = mv88e6xxx_default_mdio_bus(chip);
|
2016-05-10 01:22:50 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-05-10 01:22:50 +08:00
|
|
|
|
2016-07-19 08:45:30 +08:00
|
|
|
/* Setup Switch Port Registers */
|
2016-09-30 00:21:57 +08:00
|
|
|
for (i = 0; i < mv88e6xxx_num_ports(chip); i++) {
|
2016-07-19 08:45:30 +08:00
|
|
|
err = mv88e6xxx_setup_port(chip, i);
|
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup Switch Global 1 Registers */
|
|
|
|
err = mv88e6xxx_g1_setup(chip);
|
2016-05-10 01:22:56 +08:00
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
2016-07-19 08:45:30 +08:00
|
|
|
/* Setup Switch Global 2 Registers */
|
|
|
|
if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_GLOBAL2)) {
|
|
|
|
err = mv88e6xxx_g2_setup(chip);
|
2016-05-10 01:22:56 +08:00
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
}
|
2016-05-10 01:22:50 +08:00
|
|
|
|
2017-05-27 06:03:05 +08:00
|
|
|
err = mv88e6xxx_phy_setup(chip);
|
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
2017-05-02 02:05:13 +08:00
|
|
|
err = mv88e6xxx_vtu_setup(chip);
|
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
2017-03-31 05:37:08 +08:00
|
|
|
err = mv88e6xxx_pvt_setup(chip);
|
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
2017-03-12 05:12:49 +08:00
|
|
|
err = mv88e6xxx_atu_setup(chip);
|
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
|
2016-12-03 11:45:16 +08:00
|
|
|
/* Some generations have the configuration of sending reserved
|
|
|
|
* management frames to the CPU in global2, others in
|
|
|
|
* global1. Hence it does not fit the two setup functions
|
|
|
|
* above.
|
|
|
|
*/
|
|
|
|
if (chip->info->ops->mgmt_rsvd2cpu) {
|
|
|
|
err = chip->info->ops->mgmt_rsvd2cpu(chip);
|
|
|
|
if (err)
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
2015-08-14 00:52:18 +08:00
|
|
|
unlock:
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2015-06-21 03:31:29 +08:00
|
|
|
|
2016-04-15 05:47:12 +08:00
|
|
|
return err;
|
2015-05-06 07:09:47 +08:00
|
|
|
}
|
|
|
|
|
2016-07-19 08:45:34 +08:00
|
|
|
static int mv88e6xxx_set_addr(struct dsa_switch *ds, u8 *addr)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-07-19 08:45:34 +08:00
|
|
|
int err;
|
|
|
|
|
2016-09-30 00:22:01 +08:00
|
|
|
if (!chip->info->ops->set_switch_mac)
|
|
|
|
return -EOPNOTSUPP;
|
2016-07-19 08:45:34 +08:00
|
|
|
|
2016-09-30 00:22:01 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = chip->info->ops->set_switch_mac(chip, addr);
|
2016-07-19 08:45:34 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-08-16 05:19:00 +08:00
|
|
|
static int mv88e6xxx_mdio_read(struct mii_bus *bus, int phy, int reg)
|
2015-04-02 10:06:36 +08:00
|
|
|
{
|
2017-01-24 21:53:49 +08:00
|
|
|
struct mv88e6xxx_mdio_bus *mdio_bus = bus->priv;
|
|
|
|
struct mv88e6xxx_chip *chip = mdio_bus->chip;
|
2016-08-16 05:19:00 +08:00
|
|
|
u16 val;
|
|
|
|
int err;
|
2015-04-02 10:06:36 +08:00
|
|
|
|
2017-01-24 21:53:48 +08:00
|
|
|
if (!chip->info->ops->phy_read)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2017-01-24 21:53:48 +08:00
|
|
|
err = chip->info->ops->phy_read(chip, bus, phy, reg, &val);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-08-16 05:19:00 +08:00
|
|
|
|
2017-02-01 10:40:05 +08:00
|
|
|
if (reg == MII_PHYSID2) {
|
|
|
|
/* Some internal PHYS don't have a model number. Use
|
|
|
|
* the mv88e6390 family model number instead.
|
|
|
|
*/
|
|
|
|
if (!(val & 0x3f0))
|
|
|
|
val |= PORT_SWITCH_ID_PROD_NUM_6390;
|
|
|
|
}
|
|
|
|
|
2016-08-16 05:19:00 +08:00
|
|
|
return err ? err : val;
|
2015-04-02 10:06:36 +08:00
|
|
|
}
|
|
|
|
|
2016-08-16 05:19:00 +08:00
|
|
|
static int mv88e6xxx_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
|
2015-04-02 10:06:36 +08:00
|
|
|
{
|
2017-01-24 21:53:49 +08:00
|
|
|
struct mv88e6xxx_mdio_bus *mdio_bus = bus->priv;
|
|
|
|
struct mv88e6xxx_chip *chip = mdio_bus->chip;
|
2016-08-16 05:19:00 +08:00
|
|
|
int err;
|
2015-04-02 10:06:36 +08:00
|
|
|
|
2017-01-24 21:53:48 +08:00
|
|
|
if (!chip->info->ops->phy_write)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
2017-01-24 21:53:48 +08:00
|
|
|
err = chip->info->ops->phy_write(chip, bus, phy, reg, val);
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
2016-08-16 05:19:00 +08:00
|
|
|
|
|
|
|
return err;
|
2015-04-02 10:06:36 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_mdio_register(struct mv88e6xxx_chip *chip,
|
2017-01-24 21:53:50 +08:00
|
|
|
struct device_node *np,
|
|
|
|
bool external)
|
2016-06-05 03:17:06 +08:00
|
|
|
{
|
|
|
|
static int index;
|
2017-01-24 21:53:49 +08:00
|
|
|
struct mv88e6xxx_mdio_bus *mdio_bus;
|
2016-06-05 03:17:06 +08:00
|
|
|
struct mii_bus *bus;
|
|
|
|
int err;
|
|
|
|
|
2017-01-24 21:53:49 +08:00
|
|
|
bus = devm_mdiobus_alloc_size(chip->dev, sizeof(*mdio_bus));
|
2016-06-05 03:17:06 +08:00
|
|
|
if (!bus)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-01-24 21:53:49 +08:00
|
|
|
mdio_bus = bus->priv;
|
2017-01-24 21:53:50 +08:00
|
|
|
mdio_bus->bus = bus;
|
2017-01-24 21:53:49 +08:00
|
|
|
mdio_bus->chip = chip;
|
2017-01-24 21:53:50 +08:00
|
|
|
INIT_LIST_HEAD(&mdio_bus->list);
|
|
|
|
mdio_bus->external = external;
|
2017-01-24 21:53:49 +08:00
|
|
|
|
2016-06-05 03:17:06 +08:00
|
|
|
if (np) {
|
|
|
|
bus->name = np->full_name;
|
|
|
|
snprintf(bus->id, MII_BUS_ID_SIZE, "%s", np->full_name);
|
|
|
|
} else {
|
|
|
|
bus->name = "mv88e6xxx SMI";
|
|
|
|
snprintf(bus->id, MII_BUS_ID_SIZE, "mv88e6xxx-%d", index++);
|
|
|
|
}
|
|
|
|
|
|
|
|
bus->read = mv88e6xxx_mdio_read;
|
|
|
|
bus->write = mv88e6xxx_mdio_write;
|
2016-06-22 00:28:20 +08:00
|
|
|
bus->parent = chip->dev;
|
2016-06-05 03:17:06 +08:00
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
if (np)
|
|
|
|
err = of_mdiobus_register(bus, np);
|
2016-06-05 03:17:06 +08:00
|
|
|
else
|
|
|
|
err = mdiobus_register(bus);
|
|
|
|
if (err) {
|
2016-06-22 00:28:20 +08:00
|
|
|
dev_err(chip->dev, "Cannot register MDIO bus (%d)\n", err);
|
2017-01-24 21:53:50 +08:00
|
|
|
return err;
|
2016-06-05 03:17:06 +08:00
|
|
|
}
|
2017-01-24 21:53:50 +08:00
|
|
|
|
|
|
|
if (external)
|
|
|
|
list_add_tail(&mdio_bus->list, &chip->mdios);
|
|
|
|
else
|
|
|
|
list_add(&mdio_bus->list, &chip->mdios);
|
2016-06-05 03:17:06 +08:00
|
|
|
|
|
|
|
return 0;
|
2017-01-24 21:53:50 +08:00
|
|
|
}
|
2016-06-05 03:17:06 +08:00
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
static const struct of_device_id mv88e6xxx_mdio_external_match[] = {
|
|
|
|
{ .compatible = "marvell,mv88e6xxx-mdio-external",
|
|
|
|
.data = (void *)true },
|
|
|
|
{ },
|
|
|
|
};
|
2016-06-05 03:17:06 +08:00
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
static int mv88e6xxx_mdios_register(struct mv88e6xxx_chip *chip,
|
|
|
|
struct device_node *np)
|
|
|
|
{
|
|
|
|
const struct of_device_id *match;
|
|
|
|
struct device_node *child;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/* Always register one mdio bus for the internal/default mdio
|
|
|
|
* bus. This maybe represented in the device tree, but is
|
|
|
|
* optional.
|
|
|
|
*/
|
|
|
|
child = of_get_child_by_name(np, "mdio");
|
|
|
|
err = mv88e6xxx_mdio_register(chip, child, false);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
/* Walk the device tree, and see if there are any other nodes
|
|
|
|
* which say they are compatible with the external mdio
|
|
|
|
* bus.
|
|
|
|
*/
|
|
|
|
for_each_available_child_of_node(np, child) {
|
|
|
|
match = of_match_node(mv88e6xxx_mdio_external_match, child);
|
|
|
|
if (match) {
|
|
|
|
err = mv88e6xxx_mdio_register(chip, child, true);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2016-06-05 03:17:06 +08:00
|
|
|
}
|
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
static void mv88e6xxx_mdios_unregister(struct mv88e6xxx_chip *chip)
|
2016-06-05 03:17:06 +08:00
|
|
|
|
|
|
|
{
|
2017-01-24 21:53:50 +08:00
|
|
|
struct mv88e6xxx_mdio_bus *mdio_bus;
|
|
|
|
struct mii_bus *bus;
|
2016-06-05 03:17:06 +08:00
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
list_for_each_entry(mdio_bus, &chip->mdios, list) {
|
|
|
|
bus = mdio_bus->bus;
|
2016-06-05 03:17:06 +08:00
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
mdiobus_unregister(bus);
|
|
|
|
}
|
2016-06-05 03:17:06 +08:00
|
|
|
}
|
|
|
|
|
2016-07-21 06:18:35 +08:00
|
|
|
static int mv88e6xxx_get_eeprom_len(struct dsa_switch *ds)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-07-21 06:18:35 +08:00
|
|
|
|
|
|
|
return chip->eeprom_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_get_eeprom(struct dsa_switch *ds,
|
|
|
|
struct ethtool_eeprom *eeprom, u8 *data)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-07-21 06:18:35 +08:00
|
|
|
int err;
|
|
|
|
|
2016-09-30 00:22:02 +08:00
|
|
|
if (!chip->info->ops->get_eeprom)
|
|
|
|
return -EOPNOTSUPP;
|
2016-07-21 06:18:35 +08:00
|
|
|
|
2016-09-30 00:22:02 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = chip->info->ops->get_eeprom(chip, eeprom, data);
|
2016-07-21 06:18:35 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
eeprom->magic = 0xc3ec4951;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_set_eeprom(struct dsa_switch *ds,
|
|
|
|
struct ethtool_eeprom *eeprom, u8 *data)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-07-21 06:18:35 +08:00
|
|
|
int err;
|
|
|
|
|
2016-09-30 00:22:02 +08:00
|
|
|
if (!chip->info->ops->set_eeprom)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2016-07-21 06:18:35 +08:00
|
|
|
if (eeprom->magic != 0xc3ec4951)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-09-30 00:22:02 +08:00
|
|
|
err = chip->info->ops->set_eeprom(chip, eeprom, data);
|
2016-07-21 06:18:35 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-09-30 00:22:00 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6085_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6097 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
|
2017-05-27 06:03:06 +08:00
|
|
|
.phy_read = mv88e6185_phy_ppu_read,
|
|
|
|
.phy_write = mv88e6185_phy_ppu_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:28 +08:00
|
|
|
.ppu_enable = mv88e6185_g1_ppu_enable,
|
|
|
|
.ppu_disable = mv88e6185_g1_ppu_disable,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6185_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6095_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6095 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
|
2017-05-27 06:03:06 +08:00
|
|
|
.phy_read = mv88e6185_phy_ppu_read,
|
|
|
|
.phy_write = mv88e6185_phy_ppu_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6085_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6185_port_set_egress_floods,
|
2017-02-05 03:15:28 +08:00
|
|
|
.port_set_upstream_port = mv88e6095_port_set_upstream_port,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:28 +08:00
|
|
|
.ppu_enable = mv88e6185_g1_ppu_enable,
|
|
|
|
.ppu_disable = mv88e6185_g1_ppu_disable,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6185_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6185_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6185_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
2016-11-23 00:47:21 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6097_ops = {
|
2016-11-25 16:41:30 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6097 */
|
2016-11-23 00:47:21 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6095_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-23 00:47:21 +08:00
|
|
|
.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
|
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-14 18:29:30 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-11-23 00:47:21 +08:00
|
|
|
};
|
|
|
|
|
2016-09-30 00:22:00 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6123_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6165 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2017-06-03 05:22:45 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6085_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2017-06-03 05:22:46 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6131_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6185 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
|
2017-05-27 06:03:06 +08:00
|
|
|
.phy_read = mv88e6185_phy_ppu_read,
|
|
|
|
.phy_write = mv88e6185_phy_ppu_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6185_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2017-02-05 03:15:28 +08:00
|
|
|
.port_set_upstream_port = mv88e6095_port_set_upstream_port,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:28 +08:00
|
|
|
.ppu_enable = mv88e6185_g1_ppu_enable,
|
|
|
|
.ppu_disable = mv88e6185_g1_ppu_disable,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6185_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6185_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6185_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
2017-03-29 01:50:32 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6141_ops = {
|
|
|
|
/* MV88E6XXX_FAMILY_6341 */
|
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom8,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom8,
|
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
|
|
|
|
.port_set_speed = mv88e6390_port_set_speed,
|
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
|
|
|
.stats_snapshot = mv88e6390_g1_stats_snapshot,
|
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
|
|
|
.stats_get_stats = mv88e6390_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6390_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6390_g1_set_egress_port,
|
2017-03-29 01:50:32 +08:00
|
|
|
.watchdog_ops = &mv88e6390_watchdog_ops,
|
|
|
|
.mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu,
|
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2017-03-29 01:50:32 +08:00
|
|
|
};
|
|
|
|
|
2016-09-30 00:22:00 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6161_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6165 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2017-06-03 05:22:45 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2017-06-03 05:22:46 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6165_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6165 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2017-01-24 21:53:47 +08:00
|
|
|
.phy_read = mv88e6165_phy_read,
|
|
|
|
.phy_write = mv88e6165_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6171_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6351 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-10 22:44:01 +08:00
|
|
|
.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6172_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6352 */
|
2016-09-30 00:22:02 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom16,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom16,
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:34 +08:00
|
|
|
.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6352_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2017-05-26 07:03:21 +08:00
|
|
|
.serdes_power = mv88e6352_serdes_power,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6175_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6351 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-10 22:44:01 +08:00
|
|
|
.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6176_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6352 */
|
2016-09-30 00:22:02 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom16,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom16,
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:34 +08:00
|
|
|
.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6352_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2017-05-26 07:03:21 +08:00
|
|
|
.serdes_power = mv88e6352_serdes_power,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6185_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6185 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
|
2017-05-27 06:03:06 +08:00
|
|
|
.phy_read = mv88e6185_phy_ppu_read,
|
|
|
|
.phy_write = mv88e6185_phy_ppu_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6085_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6185_port_set_egress_floods,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6095_port_egress_rate_limiting,
|
2017-02-05 03:15:28 +08:00
|
|
|
.port_set_upstream_port = mv88e6095_port_set_upstream_port,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:28 +08:00
|
|
|
.ppu_enable = mv88e6185_g1_ppu_enable,
|
|
|
|
.ppu_disable = mv88e6185_g1_ppu_disable,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6185_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6185_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6185_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
2016-11-22 06:26:57 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6190_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6390 */
|
2017-01-13 07:07:16 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom8,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom8,
|
2016-11-22 06:26:57 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
|
|
|
|
.port_set_speed = mv88e6390_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6390_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:20 +08:00
|
|
|
.port_pause_config = mv88e6390_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:27:00 +08:00
|
|
|
.stats_snapshot = mv88e6390_g1_stats_snapshot,
|
2016-11-22 06:27:01 +08:00
|
|
|
.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
2016-11-22 06:27:04 +08:00
|
|
|
.stats_get_stats = mv88e6390_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6390_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6390_g1_set_egress_port,
|
2017-02-09 07:03:43 +08:00
|
|
|
.watchdog_ops = &mv88e6390_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:27 +08:00
|
|
|
.vtu_getnext = mv88e6390_g1_vtu_getnext,
|
|
|
|
.vtu_loadpurge = mv88e6390_g1_vtu_loadpurge,
|
2017-05-26 07:03:23 +08:00
|
|
|
.serdes_power = mv88e6390_serdes_power,
|
2016-11-22 06:26:57 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6190x_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6390 */
|
2017-01-13 07:07:16 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom8,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom8,
|
2016-11-22 06:26:57 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
|
|
|
|
.port_set_speed = mv88e6390x_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6390_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:20 +08:00
|
|
|
.port_pause_config = mv88e6390_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:27:00 +08:00
|
|
|
.stats_snapshot = mv88e6390_g1_stats_snapshot,
|
2016-11-22 06:27:01 +08:00
|
|
|
.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
2016-11-22 06:27:04 +08:00
|
|
|
.stats_get_stats = mv88e6390_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6390_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6390_g1_set_egress_port,
|
2017-02-09 07:03:43 +08:00
|
|
|
.watchdog_ops = &mv88e6390_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:27 +08:00
|
|
|
.vtu_getnext = mv88e6390_g1_vtu_getnext,
|
|
|
|
.vtu_loadpurge = mv88e6390_g1_vtu_loadpurge,
|
2017-05-26 07:03:23 +08:00
|
|
|
.serdes_power = mv88e6390_serdes_power,
|
2016-11-22 06:26:57 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6191_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6390 */
|
2017-01-13 07:07:16 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom8,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom8,
|
2016-11-22 06:26:57 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
|
|
|
|
.port_set_speed = mv88e6390_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6390_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:20 +08:00
|
|
|
.port_pause_config = mv88e6390_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:27:00 +08:00
|
|
|
.stats_snapshot = mv88e6390_g1_stats_snapshot,
|
2016-11-22 06:27:01 +08:00
|
|
|
.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
2016-11-22 06:27:04 +08:00
|
|
|
.stats_get_stats = mv88e6390_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6390_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6390_g1_set_egress_port,
|
2017-02-09 07:03:43 +08:00
|
|
|
.watchdog_ops = &mv88e6390_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:27 +08:00
|
|
|
.vtu_getnext = mv88e6390_g1_vtu_getnext,
|
|
|
|
.vtu_loadpurge = mv88e6390_g1_vtu_loadpurge,
|
2017-05-26 07:03:23 +08:00
|
|
|
.serdes_power = mv88e6390_serdes_power,
|
2016-11-22 06:26:57 +08:00
|
|
|
};
|
|
|
|
|
2016-09-30 00:22:00 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6240_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6352 */
|
2016-09-30 00:22:02 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom16,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom16,
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:34 +08:00
|
|
|
.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6352_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2017-05-26 07:03:21 +08:00
|
|
|
.serdes_power = mv88e6352_serdes_power,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
2016-11-22 06:26:57 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6290_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6390 */
|
2017-01-13 07:07:16 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom8,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom8,
|
2016-11-22 06:26:57 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
|
|
|
|
.port_set_speed = mv88e6390_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6390_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:20 +08:00
|
|
|
.port_pause_config = mv88e6390_port_pause_config,
|
net: dsa: mv88e6xxx: Set the CMODE for mv88e6390 ports 9 & 10
Unlike most ports, ports 9 and 10 of the 6390X family have configurable
PHY modes. Set the mode as part of adjust_link().
Ordering is important, because the SERDES interfaces connected to
ports 9 and 10 can be split and assigned to other ports. The CMODE has
to be correctly set before the SERDES interface on another port can be
configured. Such configuration is likely to be performed in
port_enable() and port_disabled(), called on slave_open() and
slave_close().
The simple case is port 9 and 10 are used for 'CPU' or 'DSA'. In this
case, the CMODE is set via a phy-mode in dsa_cpu_dsa_setup(), which is
called early in the switch setup.
When ports 9 or 10 are used as user ports, and have a fixed-phy, when
the fixed fixed-phy is attached, dsa_slave_adjust_link() is called,
which results in the adjust_link function being called, setting the
cmode. The port_enable() will for other ports will be called much
later.
When ports 9 or 10 are used as user ports and have a real phy attached
which does not use all the available SERDES interface, e.g. a 1Gbps
SGMII, there is currently no mechanism in place to set the CMODE of
the port from software. It must be hoped the stripping resistors are
correct.
At the same time, add a function to get the cmode. This will be needed
when configuring the SERDES interfaces.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-05 03:02:50 +08:00
|
|
|
.port_set_cmode = mv88e6390x_port_set_cmode,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:27:00 +08:00
|
|
|
.stats_snapshot = mv88e6390_g1_stats_snapshot,
|
2016-11-22 06:27:01 +08:00
|
|
|
.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
2016-11-22 06:27:04 +08:00
|
|
|
.stats_get_stats = mv88e6390_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6390_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6390_g1_set_egress_port,
|
2017-02-09 07:03:43 +08:00
|
|
|
.watchdog_ops = &mv88e6390_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:27 +08:00
|
|
|
.vtu_getnext = mv88e6390_g1_vtu_getnext,
|
|
|
|
.vtu_loadpurge = mv88e6390_g1_vtu_loadpurge,
|
2017-05-26 07:03:23 +08:00
|
|
|
.serdes_power = mv88e6390_serdes_power,
|
2016-11-22 06:26:57 +08:00
|
|
|
};
|
|
|
|
|
2016-09-30 00:22:00 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6320_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6320 */
|
2016-09-30 00:22:02 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom16,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom16,
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6320_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6185_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6185_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6321_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6321 */
|
2016-09-30 00:22:02 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom16,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom16,
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6320_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6185_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6185_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
2017-03-29 01:50:33 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6341_ops = {
|
|
|
|
/* MV88E6XXX_FAMILY_6341 */
|
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom8,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom8,
|
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
|
|
|
|
.port_set_speed = mv88e6390_port_set_speed,
|
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
|
|
|
.stats_snapshot = mv88e6390_g1_stats_snapshot,
|
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
|
|
|
.stats_get_stats = mv88e6390_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6390_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6390_g1_set_egress_port,
|
2017-03-29 01:50:33 +08:00
|
|
|
.watchdog_ops = &mv88e6390_watchdog_ops,
|
|
|
|
.mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu,
|
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2017-03-29 01:50:33 +08:00
|
|
|
};
|
|
|
|
|
2016-09-30 00:22:00 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6350_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6351 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-10 22:44:01 +08:00
|
|
|
.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6351_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6351 */
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-10 22:44:01 +08:00
|
|
|
.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6185_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6352_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6352 */
|
2016-09-30 00:22:02 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom16,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom16,
|
2016-09-30 00:22:01 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
2016-09-30 00:22:00 +08:00
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
2016-11-04 10:23:32 +08:00
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
2016-11-04 10:23:33 +08:00
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
2016-11-04 10:23:34 +08:00
|
|
|
.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
|
2016-11-04 10:23:35 +08:00
|
|
|
.port_set_speed = mv88e6352_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6095_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:19 +08:00
|
|
|
.port_pause_config = mv88e6097_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:26:58 +08:00
|
|
|
.stats_snapshot = mv88e6320_g1_stats_snapshot,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6095_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6095_stats_get_strings,
|
2016-11-22 06:27:03 +08:00
|
|
|
.stats_get_stats = mv88e6095_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6095_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6095_g1_set_egress_port,
|
2017-02-09 07:03:42 +08:00
|
|
|
.watchdog_ops = &mv88e6097_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6095_g2_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:22 +08:00
|
|
|
.vtu_getnext = mv88e6352_g1_vtu_getnext,
|
2017-05-02 02:05:23 +08:00
|
|
|
.vtu_loadpurge = mv88e6352_g1_vtu_loadpurge,
|
2017-05-26 07:03:21 +08:00
|
|
|
.serdes_power = mv88e6352_serdes_power,
|
2016-09-30 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
2016-11-22 06:26:57 +08:00
|
|
|
static const struct mv88e6xxx_ops mv88e6390_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6390 */
|
2017-01-13 07:07:16 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom8,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom8,
|
2016-11-22 06:26:57 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
|
|
|
|
.port_set_speed = mv88e6390_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6390_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:20 +08:00
|
|
|
.port_pause_config = mv88e6390_port_pause_config,
|
net: dsa: mv88e6xxx: Set the CMODE for mv88e6390 ports 9 & 10
Unlike most ports, ports 9 and 10 of the 6390X family have configurable
PHY modes. Set the mode as part of adjust_link().
Ordering is important, because the SERDES interfaces connected to
ports 9 and 10 can be split and assigned to other ports. The CMODE has
to be correctly set before the SERDES interface on another port can be
configured. Such configuration is likely to be performed in
port_enable() and port_disabled(), called on slave_open() and
slave_close().
The simple case is port 9 and 10 are used for 'CPU' or 'DSA'. In this
case, the CMODE is set via a phy-mode in dsa_cpu_dsa_setup(), which is
called early in the switch setup.
When ports 9 or 10 are used as user ports, and have a fixed-phy, when
the fixed fixed-phy is attached, dsa_slave_adjust_link() is called,
which results in the adjust_link function being called, setting the
cmode. The port_enable() will for other ports will be called much
later.
When ports 9 or 10 are used as user ports and have a real phy attached
which does not use all the available SERDES interface, e.g. a 1Gbps
SGMII, there is currently no mechanism in place to set the CMODE of
the port from software. It must be hoped the stripping resistors are
correct.
At the same time, add a function to get the cmode. This will be needed
when configuring the SERDES interfaces.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-05 03:02:50 +08:00
|
|
|
.port_set_cmode = mv88e6390x_port_set_cmode,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:27:00 +08:00
|
|
|
.stats_snapshot = mv88e6390_g1_stats_snapshot,
|
2016-11-22 06:27:01 +08:00
|
|
|
.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
2016-11-22 06:27:04 +08:00
|
|
|
.stats_get_stats = mv88e6390_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6390_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6390_g1_set_egress_port,
|
2017-02-09 07:03:43 +08:00
|
|
|
.watchdog_ops = &mv88e6390_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:27 +08:00
|
|
|
.vtu_getnext = mv88e6390_g1_vtu_getnext,
|
|
|
|
.vtu_loadpurge = mv88e6390_g1_vtu_loadpurge,
|
2017-05-26 07:03:23 +08:00
|
|
|
.serdes_power = mv88e6390_serdes_power,
|
2016-11-22 06:26:57 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mv88e6xxx_ops mv88e6390x_ops = {
|
2016-11-22 06:26:59 +08:00
|
|
|
/* MV88E6XXX_FAMILY_6390 */
|
2017-01-13 07:07:16 +08:00
|
|
|
.get_eeprom = mv88e6xxx_g2_get_eeprom8,
|
|
|
|
.set_eeprom = mv88e6xxx_g2_set_eeprom8,
|
2016-11-22 06:26:57 +08:00
|
|
|
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
|
|
|
|
.phy_read = mv88e6xxx_g2_smi_phy_read,
|
|
|
|
.phy_write = mv88e6xxx_g2_smi_phy_write,
|
|
|
|
.port_set_link = mv88e6xxx_port_set_link,
|
|
|
|
.port_set_duplex = mv88e6xxx_port_set_duplex,
|
|
|
|
.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
|
|
|
|
.port_set_speed = mv88e6390x_port_set_speed,
|
2016-12-03 11:35:16 +08:00
|
|
|
.port_tag_remap = mv88e6390_port_tag_remap,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_frame_mode = mv88e6351_port_set_frame_mode,
|
2017-03-12 05:13:00 +08:00
|
|
|
.port_set_egress_floods = mv88e6352_port_set_egress_floods,
|
2016-12-03 11:35:19 +08:00
|
|
|
.port_set_ether_type = mv88e6351_port_set_ether_type,
|
2016-12-03 11:45:17 +08:00
|
|
|
.port_jumbo_config = mv88e6165_port_jumbo_config,
|
2016-12-03 11:45:18 +08:00
|
|
|
.port_egress_rate_limiting = mv88e6097_port_egress_rate_limiting,
|
2016-12-03 11:45:20 +08:00
|
|
|
.port_pause_config = mv88e6390_port_pause_config,
|
2017-03-12 05:13:01 +08:00
|
|
|
.port_disable_learn_limit = mv88e6xxx_port_disable_learn_limit,
|
2017-03-12 05:13:02 +08:00
|
|
|
.port_disable_pri_override = mv88e6xxx_port_disable_pri_override,
|
2016-11-22 06:27:00 +08:00
|
|
|
.stats_snapshot = mv88e6390_g1_stats_snapshot,
|
2016-11-22 06:27:01 +08:00
|
|
|
.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
|
2016-11-22 06:27:02 +08:00
|
|
|
.stats_get_sset_count = mv88e6320_stats_get_sset_count,
|
|
|
|
.stats_get_strings = mv88e6320_stats_get_strings,
|
2016-11-22 06:27:04 +08:00
|
|
|
.stats_get_stats = mv88e6390_stats_get_stats,
|
2017-06-09 06:34:11 +08:00
|
|
|
.set_cpu_port = mv88e6390_g1_set_cpu_port,
|
|
|
|
.set_egress_port = mv88e6390_g1_set_egress_port,
|
2017-02-09 07:03:43 +08:00
|
|
|
.watchdog_ops = &mv88e6390_watchdog_ops,
|
2016-12-03 11:45:16 +08:00
|
|
|
.mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu,
|
2016-12-06 06:30:27 +08:00
|
|
|
.reset = mv88e6352_g1_reset,
|
2017-05-02 02:05:27 +08:00
|
|
|
.vtu_getnext = mv88e6390_g1_vtu_getnext,
|
|
|
|
.vtu_loadpurge = mv88e6390_g1_vtu_loadpurge,
|
2017-05-26 07:03:23 +08:00
|
|
|
.serdes_power = mv88e6390_serdes_power,
|
2016-11-22 06:26:57 +08:00
|
|
|
};
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
static const struct mv88e6xxx_info mv88e6xxx_table[] = {
|
|
|
|
[MV88E6085] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6085,
|
|
|
|
.family = MV88E6XXX_FAMILY_6097,
|
|
|
|
.name = "Marvell 88E6085",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 10,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 8,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6097,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6085_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6095] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6095,
|
|
|
|
.family = MV88E6XXX_FAMILY_6095,
|
|
|
|
.name = "Marvell 88E6095/88E6095F",
|
|
|
|
.num_databases = 256,
|
|
|
|
.num_ports = 11,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 8,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6095,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6095_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
2016-11-23 00:47:21 +08:00
|
|
|
[MV88E6097] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6097,
|
|
|
|
.family = MV88E6XXX_FAMILY_6097,
|
|
|
|
.name = "Marvell 88E6097/88E6097F",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 11,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-11-23 00:47:21 +08:00
|
|
|
.port_base_addr = 0x10,
|
|
|
|
.global1_addr = 0x1b,
|
|
|
|
.age_time_coeff = 15000,
|
2016-11-25 16:41:29 +08:00
|
|
|
.g1_irqs = 8,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-05 21:12:42 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-11-23 00:47:21 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6097,
|
|
|
|
.ops = &mv88e6097_ops,
|
|
|
|
},
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
[MV88E6123] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6123,
|
|
|
|
.family = MV88E6XXX_FAMILY_6165,
|
|
|
|
.name = "Marvell 88E6123",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 3,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2017-06-07 21:06:19 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6165,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6123_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6131] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6131,
|
|
|
|
.family = MV88E6XXX_FAMILY_6185,
|
|
|
|
.name = "Marvell 88E6131",
|
|
|
|
.num_databases = 256,
|
|
|
|
.num_ports = 8,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6185,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6131_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
2017-03-29 01:50:32 +08:00
|
|
|
[MV88E6141] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6141,
|
|
|
|
.family = MV88E6XXX_FAMILY_6341,
|
|
|
|
.name = "Marvell 88E6341",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 6,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2017-03-29 01:50:32 +08:00
|
|
|
.port_base_addr = 0x10,
|
|
|
|
.global1_addr = 0x1b,
|
|
|
|
.age_time_coeff = 3750,
|
|
|
|
.atu_move_port_mask = 0x1f,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2017-03-29 01:50:32 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6341,
|
|
|
|
.ops = &mv88e6141_ops,
|
|
|
|
},
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
[MV88E6161] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6161,
|
|
|
|
.family = MV88E6XXX_FAMILY_6165,
|
|
|
|
.name = "Marvell 88E6161",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 6,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2017-06-07 21:06:19 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6165,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6161_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6165] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6165,
|
|
|
|
.family = MV88E6XXX_FAMILY_6165,
|
|
|
|
.name = "Marvell 88E6165",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 6,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6165,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6165_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6171] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6171,
|
|
|
|
.family = MV88E6XXX_FAMILY_6351,
|
|
|
|
.name = "Marvell 88E6171",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6351,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6171_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6172] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6172,
|
|
|
|
.family = MV88E6XXX_FAMILY_6352,
|
|
|
|
.name = "Marvell 88E6172",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6352,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6172_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6175] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6175,
|
|
|
|
.family = MV88E6XXX_FAMILY_6351,
|
|
|
|
.name = "Marvell 88E6175",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6351,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6175_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6176] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6176,
|
|
|
|
.family = MV88E6XXX_FAMILY_6352,
|
|
|
|
.name = "Marvell 88E6176",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6352,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6176_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6185] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6185,
|
|
|
|
.family = MV88E6XXX_FAMILY_6185,
|
|
|
|
.name = "Marvell 88E6185",
|
|
|
|
.num_databases = 256,
|
|
|
|
.num_ports = 10,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 8,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6185,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6185_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
2016-11-22 06:26:57 +08:00
|
|
|
[MV88E6190] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6190,
|
|
|
|
.family = MV88E6XXX_FAMILY_6390,
|
|
|
|
.name = "Marvell 88E6190",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 11, /* 10 + Z80 */
|
2017-05-02 02:05:27 +08:00
|
|
|
.max_vid = 8191,
|
2016-11-22 06:26:57 +08:00
|
|
|
.port_base_addr = 0x0,
|
|
|
|
.global1_addr = 0x1b,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2017-02-02 07:46:15 +08:00
|
|
|
.age_time_coeff = 3750,
|
2016-11-22 06:26:57 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0x1f,
|
2016-11-22 06:26:57 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6390,
|
|
|
|
.ops = &mv88e6190_ops,
|
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6190X] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6190X,
|
|
|
|
.family = MV88E6XXX_FAMILY_6390,
|
|
|
|
.name = "Marvell 88E6190X",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 11, /* 10 + Z80 */
|
2017-05-02 02:05:27 +08:00
|
|
|
.max_vid = 8191,
|
2016-11-22 06:26:57 +08:00
|
|
|
.port_base_addr = 0x0,
|
|
|
|
.global1_addr = 0x1b,
|
2017-02-02 07:46:15 +08:00
|
|
|
.age_time_coeff = 3750,
|
2016-11-22 06:26:57 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0x1f,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-11-22 06:26:57 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6390,
|
|
|
|
.ops = &mv88e6190x_ops,
|
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6191] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6191,
|
|
|
|
.family = MV88E6XXX_FAMILY_6390,
|
|
|
|
.name = "Marvell 88E6191",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 11, /* 10 + Z80 */
|
2017-05-02 02:05:27 +08:00
|
|
|
.max_vid = 8191,
|
2016-11-22 06:26:57 +08:00
|
|
|
.port_base_addr = 0x0,
|
|
|
|
.global1_addr = 0x1b,
|
2017-02-02 07:46:15 +08:00
|
|
|
.age_time_coeff = 3750,
|
2016-12-03 11:35:18 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0x1f,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-11-22 06:26:57 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6390,
|
2017-03-29 01:50:34 +08:00
|
|
|
.ops = &mv88e6191_ops,
|
2016-11-22 06:26:57 +08:00
|
|
|
},
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
[MV88E6240] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6240,
|
|
|
|
.family = MV88E6XXX_FAMILY_6352,
|
|
|
|
.name = "Marvell 88E6240",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6352,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6240_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
2016-11-22 06:26:57 +08:00
|
|
|
[MV88E6290] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6290,
|
|
|
|
.family = MV88E6XXX_FAMILY_6390,
|
|
|
|
.name = "Marvell 88E6290",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 11, /* 10 + Z80 */
|
2017-05-02 02:05:27 +08:00
|
|
|
.max_vid = 8191,
|
2016-11-22 06:26:57 +08:00
|
|
|
.port_base_addr = 0x0,
|
|
|
|
.global1_addr = 0x1b,
|
2017-02-02 07:46:15 +08:00
|
|
|
.age_time_coeff = 3750,
|
2016-11-22 06:26:57 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0x1f,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-11-22 06:26:57 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6390,
|
|
|
|
.ops = &mv88e6290_ops,
|
|
|
|
},
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
[MV88E6320] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6320,
|
|
|
|
.family = MV88E6XXX_FAMILY_6320,
|
|
|
|
.name = "Marvell 88E6320",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 8,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6320,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6320_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6321] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6321,
|
|
|
|
.family = MV88E6XXX_FAMILY_6320,
|
|
|
|
.name = "Marvell 88E6321",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 8,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6320,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6321_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
2017-01-31 03:29:34 +08:00
|
|
|
[MV88E6341] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6341,
|
|
|
|
.family = MV88E6XXX_FAMILY_6341,
|
|
|
|
.name = "Marvell 88E6341",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 6,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2017-01-31 03:29:34 +08:00
|
|
|
.port_base_addr = 0x10,
|
|
|
|
.global1_addr = 0x1b,
|
|
|
|
.age_time_coeff = 3750,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0x1f,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2017-01-31 03:29:34 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6341,
|
|
|
|
.ops = &mv88e6341_ops,
|
|
|
|
},
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
[MV88E6350] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6350,
|
|
|
|
.family = MV88E6XXX_FAMILY_6351,
|
|
|
|
.name = "Marvell 88E6350",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6351,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6350_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6351] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6351,
|
|
|
|
.family = MV88E6XXX_FAMILY_6351,
|
|
|
|
.name = "Marvell 88E6351",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6351,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6351_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[MV88E6352] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6352,
|
|
|
|
.family = MV88E6XXX_FAMILY_6352,
|
|
|
|
.name = "Marvell 88E6352",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 7,
|
2017-05-02 02:05:10 +08:00
|
|
|
.max_vid = 4095,
|
2016-06-21 01:14:10 +08:00
|
|
|
.port_base_addr = 0x10,
|
2016-09-30 00:21:53 +08:00
|
|
|
.global1_addr = 0x1b,
|
2016-07-19 08:45:39 +08:00
|
|
|
.age_time_coeff = 15000,
|
2016-10-17 01:56:49 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0xf,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_EDSA,
|
2016-05-10 01:22:58 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6352,
|
2016-09-30 00:22:00 +08:00
|
|
|
.ops = &mv88e6352_ops,
|
2016-05-10 01:22:58 +08:00
|
|
|
},
|
2016-11-22 06:26:57 +08:00
|
|
|
[MV88E6390] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6390,
|
|
|
|
.family = MV88E6XXX_FAMILY_6390,
|
|
|
|
.name = "Marvell 88E6390",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 11, /* 10 + Z80 */
|
2017-05-02 02:05:27 +08:00
|
|
|
.max_vid = 8191,
|
2016-11-22 06:26:57 +08:00
|
|
|
.port_base_addr = 0x0,
|
|
|
|
.global1_addr = 0x1b,
|
2017-02-02 07:46:15 +08:00
|
|
|
.age_time_coeff = 3750,
|
2016-11-22 06:26:57 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0x1f,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-11-22 06:26:57 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6390,
|
|
|
|
.ops = &mv88e6390_ops,
|
|
|
|
},
|
|
|
|
[MV88E6390X] = {
|
|
|
|
.prod_num = PORT_SWITCH_ID_PROD_NUM_6390X,
|
|
|
|
.family = MV88E6XXX_FAMILY_6390,
|
|
|
|
.name = "Marvell 88E6390X",
|
|
|
|
.num_databases = 4096,
|
|
|
|
.num_ports = 11, /* 10 + Z80 */
|
2017-05-02 02:05:27 +08:00
|
|
|
.max_vid = 8191,
|
2016-11-22 06:26:57 +08:00
|
|
|
.port_base_addr = 0x0,
|
|
|
|
.global1_addr = 0x1b,
|
2017-02-02 07:46:15 +08:00
|
|
|
.age_time_coeff = 3750,
|
2016-11-22 06:26:57 +08:00
|
|
|
.g1_irqs = 9,
|
2017-03-12 05:12:55 +08:00
|
|
|
.atu_move_port_mask = 0x1f,
|
2017-03-31 05:37:07 +08:00
|
|
|
.pvt = true,
|
2016-12-03 11:35:18 +08:00
|
|
|
.tag_protocol = DSA_TAG_PROTO_DSA,
|
2016-11-22 06:26:57 +08:00
|
|
|
.flags = MV88E6XXX_FLAGS_FAMILY_6390,
|
|
|
|
.ops = &mv88e6390x_ops,
|
|
|
|
},
|
2016-05-10 01:22:58 +08:00
|
|
|
};
|
|
|
|
|
2016-06-21 01:14:04 +08:00
|
|
|
static const struct mv88e6xxx_info *mv88e6xxx_lookup_info(unsigned int prod_num)
|
2015-10-31 07:39:48 +08:00
|
|
|
{
|
2016-04-18 01:23:58 +08:00
|
|
|
int i;
|
2015-10-31 07:39:48 +08:00
|
|
|
|
2016-06-21 01:14:04 +08:00
|
|
|
for (i = 0; i < ARRAY_SIZE(mv88e6xxx_table); ++i)
|
|
|
|
if (mv88e6xxx_table[i].prod_num == prod_num)
|
|
|
|
return &mv88e6xxx_table[i];
|
2015-10-31 07:39:48 +08:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_detect(struct mv88e6xxx_chip *chip)
|
2016-06-21 01:14:08 +08:00
|
|
|
{
|
|
|
|
const struct mv88e6xxx_info *info;
|
2016-07-21 06:18:36 +08:00
|
|
|
unsigned int prod_num, rev;
|
|
|
|
u16 id;
|
|
|
|
int err;
|
2016-06-21 01:14:08 +08:00
|
|
|
|
2016-07-21 06:18:36 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_port_read(chip, 0, PORT_SWITCH_ID, &id);
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2016-06-21 01:14:08 +08:00
|
|
|
|
|
|
|
prod_num = (id & 0xfff0) >> 4;
|
|
|
|
rev = id & 0x000f;
|
|
|
|
|
|
|
|
info = mv88e6xxx_lookup_info(prod_num);
|
|
|
|
if (!info)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2016-06-21 01:14:09 +08:00
|
|
|
/* Update the compatible info with the probed one */
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->info = info;
|
2016-06-21 01:14:08 +08:00
|
|
|
|
2016-09-03 02:45:34 +08:00
|
|
|
err = mv88e6xxx_g2_require(chip);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
dev_info(chip->dev, "switch 0x%x detected: %s, revision %u\n",
|
|
|
|
chip->info->prod_num, chip->info->name, rev);
|
2016-06-21 01:14:08 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static struct mv88e6xxx_chip *mv88e6xxx_alloc_chip(struct device *dev)
|
2016-06-21 01:14:06 +08:00
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
struct mv88e6xxx_chip *chip;
|
2016-06-21 01:14:06 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
|
|
|
|
if (!chip)
|
2016-06-21 01:14:06 +08:00
|
|
|
return NULL;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->dev = dev;
|
2016-06-21 01:14:06 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
mutex_init(&chip->reg_lock);
|
2017-01-24 21:53:50 +08:00
|
|
|
INIT_LIST_HEAD(&chip->mdios);
|
2016-06-21 01:14:06 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
return chip;
|
2016-06-21 01:14:06 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static int mv88e6xxx_smi_init(struct mv88e6xxx_chip *chip,
|
2016-06-21 01:14:07 +08:00
|
|
|
struct mii_bus *bus, int sw_addr)
|
|
|
|
{
|
2016-06-21 01:14:11 +08:00
|
|
|
if (sw_addr == 0)
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->smi_ops = &mv88e6xxx_smi_single_chip_ops;
|
2016-08-16 05:18:58 +08:00
|
|
|
else if (mv88e6xxx_has(chip, MV88E6XXX_FLAGS_MULTI_CHIP))
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->smi_ops = &mv88e6xxx_smi_multi_chip_ops;
|
2016-06-21 01:14:11 +08:00
|
|
|
else
|
|
|
|
return -EINVAL;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->bus = bus;
|
|
|
|
chip->sw_addr = sw_addr;
|
2016-06-21 01:14:07 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-22 22:01:01 +08:00
|
|
|
static enum dsa_tag_protocol mv88e6xxx_get_tag_protocol(struct dsa_switch *ds)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-08-22 22:01:02 +08:00
|
|
|
|
2016-12-03 11:35:18 +08:00
|
|
|
return chip->info->tag_protocol;
|
2016-08-22 22:01:01 +08:00
|
|
|
}
|
|
|
|
|
2016-05-11 05:27:20 +08:00
|
|
|
static const char *mv88e6xxx_drv_probe(struct device *dsa_dev,
|
|
|
|
struct device *host_dev, int sw_addr,
|
|
|
|
void **priv)
|
2016-04-13 08:40:42 +08:00
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
struct mv88e6xxx_chip *chip;
|
2016-04-18 01:23:58 +08:00
|
|
|
struct mii_bus *bus;
|
2016-06-05 03:17:06 +08:00
|
|
|
int err;
|
2016-04-13 08:40:42 +08:00
|
|
|
|
2016-04-18 01:23:58 +08:00
|
|
|
bus = dsa_host_dev_to_mii_bus(host_dev);
|
2016-04-13 08:40:45 +08:00
|
|
|
if (!bus)
|
|
|
|
return NULL;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
chip = mv88e6xxx_alloc_chip(dsa_dev);
|
|
|
|
if (!chip)
|
2016-06-21 01:14:06 +08:00
|
|
|
return NULL;
|
|
|
|
|
2016-06-21 01:14:09 +08:00
|
|
|
/* Legacy SMI probing will only support chips similar to 88E6085 */
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->info = &mv88e6xxx_table[MV88E6085];
|
2016-06-21 01:14:09 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
err = mv88e6xxx_smi_init(chip, bus, sw_addr);
|
2016-06-21 01:14:07 +08:00
|
|
|
if (err)
|
|
|
|
goto free;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
err = mv88e6xxx_detect(chip);
|
2016-06-21 01:14:08 +08:00
|
|
|
if (err)
|
2016-06-21 01:14:06 +08:00
|
|
|
goto free;
|
2016-04-18 01:23:58 +08:00
|
|
|
|
2016-10-17 01:56:49 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_switch_reset(chip);
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
if (err)
|
|
|
|
goto free;
|
|
|
|
|
2016-08-16 05:19:00 +08:00
|
|
|
mv88e6xxx_phy_init(chip);
|
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
err = mv88e6xxx_mdios_register(chip, NULL);
|
2016-06-05 03:17:06 +08:00
|
|
|
if (err)
|
2016-06-21 01:14:06 +08:00
|
|
|
goto free;
|
2016-06-05 03:17:06 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
*priv = chip;
|
2016-04-18 01:23:58 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
return chip->info->name;
|
2016-06-21 01:14:06 +08:00
|
|
|
free:
|
2016-06-22 00:28:20 +08:00
|
|
|
devm_kfree(dsa_dev, chip);
|
2016-06-21 01:14:06 +08:00
|
|
|
|
|
|
|
return NULL;
|
2016-04-13 08:40:42 +08:00
|
|
|
}
|
|
|
|
|
2016-08-31 23:50:05 +08:00
|
|
|
static int mv88e6xxx_port_mdb_prepare(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_mdb *mdb,
|
|
|
|
struct switchdev_trans *trans)
|
|
|
|
{
|
|
|
|
/* We don't need any dynamic resource from the kernel (yet),
|
|
|
|
* so skip the prepare phase.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mv88e6xxx_port_mdb_add(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_mdb *mdb,
|
|
|
|
struct switchdev_trans *trans)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-08-31 23:50:05 +08:00
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
if (mv88e6xxx_port_db_load_purge(chip, port, mdb->addr, mdb->vid,
|
|
|
|
GLOBAL_ATU_DATA_STATE_MC_STATIC))
|
2017-06-09 06:34:08 +08:00
|
|
|
dev_err(ds->dev, "p%d: failed to load multicast MAC address\n",
|
|
|
|
port);
|
2016-08-31 23:50:05 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_port_mdb_del(struct dsa_switch *ds, int port,
|
|
|
|
const struct switchdev_obj_port_mdb *mdb)
|
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-08-31 23:50:05 +08:00
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_port_db_load_purge(chip, port, mdb->addr, mdb->vid,
|
|
|
|
GLOBAL_ATU_DATA_STATE_UNUSED);
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mv88e6xxx_port_mdb_dump(struct dsa_switch *ds, int port,
|
|
|
|
struct switchdev_obj_port_mdb *mdb,
|
2017-05-18 03:46:05 +08:00
|
|
|
switchdev_obj_dump_cb_t *cb)
|
2016-08-31 23:50:05 +08:00
|
|
|
{
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-08-31 23:50:05 +08:00
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_port_db_dump(chip, port, &mdb->obj, cb);
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-01-09 06:52:08 +08:00
|
|
|
static const struct dsa_switch_ops mv88e6xxx_switch_ops = {
|
2016-05-11 05:27:20 +08:00
|
|
|
.probe = mv88e6xxx_drv_probe,
|
2016-08-22 22:01:01 +08:00
|
|
|
.get_tag_protocol = mv88e6xxx_get_tag_protocol,
|
2016-05-10 01:22:58 +08:00
|
|
|
.setup = mv88e6xxx_setup,
|
|
|
|
.set_addr = mv88e6xxx_set_addr,
|
|
|
|
.adjust_link = mv88e6xxx_adjust_link,
|
|
|
|
.get_strings = mv88e6xxx_get_strings,
|
|
|
|
.get_ethtool_stats = mv88e6xxx_get_ethtool_stats,
|
|
|
|
.get_sset_count = mv88e6xxx_get_sset_count,
|
2017-05-26 07:03:24 +08:00
|
|
|
.port_enable = mv88e6xxx_port_enable,
|
|
|
|
.port_disable = mv88e6xxx_port_disable,
|
2016-05-10 01:22:58 +08:00
|
|
|
.set_eee = mv88e6xxx_set_eee,
|
|
|
|
.get_eee = mv88e6xxx_get_eee,
|
2016-05-11 05:27:25 +08:00
|
|
|
.get_eeprom_len = mv88e6xxx_get_eeprom_len,
|
2016-05-10 01:22:58 +08:00
|
|
|
.get_eeprom = mv88e6xxx_get_eeprom,
|
|
|
|
.set_eeprom = mv88e6xxx_set_eeprom,
|
|
|
|
.get_regs_len = mv88e6xxx_get_regs_len,
|
|
|
|
.get_regs = mv88e6xxx_get_regs,
|
2016-07-19 08:45:40 +08:00
|
|
|
.set_ageing_time = mv88e6xxx_set_ageing_time,
|
2016-05-10 01:22:58 +08:00
|
|
|
.port_bridge_join = mv88e6xxx_port_bridge_join,
|
|
|
|
.port_bridge_leave = mv88e6xxx_port_bridge_leave,
|
|
|
|
.port_stp_state_set = mv88e6xxx_port_stp_state_set,
|
2016-09-23 04:49:24 +08:00
|
|
|
.port_fast_age = mv88e6xxx_port_fast_age,
|
2016-05-10 01:22:58 +08:00
|
|
|
.port_vlan_filtering = mv88e6xxx_port_vlan_filtering,
|
|
|
|
.port_vlan_prepare = mv88e6xxx_port_vlan_prepare,
|
|
|
|
.port_vlan_add = mv88e6xxx_port_vlan_add,
|
|
|
|
.port_vlan_del = mv88e6xxx_port_vlan_del,
|
|
|
|
.port_vlan_dump = mv88e6xxx_port_vlan_dump,
|
|
|
|
.port_fdb_prepare = mv88e6xxx_port_fdb_prepare,
|
|
|
|
.port_fdb_add = mv88e6xxx_port_fdb_add,
|
|
|
|
.port_fdb_del = mv88e6xxx_port_fdb_del,
|
|
|
|
.port_fdb_dump = mv88e6xxx_port_fdb_dump,
|
2016-08-31 23:50:05 +08:00
|
|
|
.port_mdb_prepare = mv88e6xxx_port_mdb_prepare,
|
|
|
|
.port_mdb_add = mv88e6xxx_port_mdb_add,
|
|
|
|
.port_mdb_del = mv88e6xxx_port_mdb_del,
|
|
|
|
.port_mdb_dump = mv88e6xxx_port_mdb_dump,
|
2017-03-31 05:37:15 +08:00
|
|
|
.crosschip_bridge_join = mv88e6xxx_crosschip_bridge_join,
|
|
|
|
.crosschip_bridge_leave = mv88e6xxx_crosschip_bridge_leave,
|
2016-05-10 01:22:58 +08:00
|
|
|
};
|
|
|
|
|
2017-01-09 06:52:07 +08:00
|
|
|
static struct dsa_switch_driver mv88e6xxx_switch_drv = {
|
|
|
|
.ops = &mv88e6xxx_switch_ops,
|
|
|
|
};
|
|
|
|
|
2017-01-27 02:45:51 +08:00
|
|
|
static int mv88e6xxx_register_switch(struct mv88e6xxx_chip *chip)
|
2016-06-21 01:14:02 +08:00
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
struct device *dev = chip->dev;
|
2016-06-21 01:14:02 +08:00
|
|
|
struct dsa_switch *ds;
|
|
|
|
|
2017-03-31 05:37:10 +08:00
|
|
|
ds = dsa_switch_alloc(dev, mv88e6xxx_num_ports(chip));
|
2016-06-21 01:14:02 +08:00
|
|
|
if (!ds)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
ds->priv = chip;
|
2016-08-24 00:38:56 +08:00
|
|
|
ds->ops = &mv88e6xxx_switch_ops;
|
2017-03-16 03:53:50 +08:00
|
|
|
ds->ageing_time_min = chip->info->age_time_coeff;
|
|
|
|
ds->ageing_time_max = chip->info->age_time_coeff * U8_MAX;
|
2016-06-21 01:14:02 +08:00
|
|
|
|
|
|
|
dev_set_drvdata(dev, ds);
|
|
|
|
|
2017-05-27 06:12:51 +08:00
|
|
|
return dsa_register_switch(ds);
|
2016-06-21 01:14:02 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
static void mv88e6xxx_unregister_switch(struct mv88e6xxx_chip *chip)
|
2016-06-21 01:14:02 +08:00
|
|
|
{
|
2016-06-22 00:28:20 +08:00
|
|
|
dsa_unregister_switch(chip->ds);
|
2016-06-21 01:14:02 +08:00
|
|
|
}
|
|
|
|
|
2016-06-21 01:13:58 +08:00
|
|
|
static int mv88e6xxx_probe(struct mdio_device *mdiodev)
|
2011-11-25 22:36:19 +08:00
|
|
|
{
|
2016-05-11 05:27:21 +08:00
|
|
|
struct device *dev = &mdiodev->dev;
|
2016-05-11 05:27:25 +08:00
|
|
|
struct device_node *np = dev->of_node;
|
2016-06-21 01:14:09 +08:00
|
|
|
const struct mv88e6xxx_info *compat_info;
|
2016-06-22 00:28:20 +08:00
|
|
|
struct mv88e6xxx_chip *chip;
|
2016-05-11 05:27:25 +08:00
|
|
|
u32 eeprom_len;
|
2016-05-11 05:27:22 +08:00
|
|
|
int err;
|
2016-05-11 05:27:21 +08:00
|
|
|
|
2016-06-21 01:14:09 +08:00
|
|
|
compat_info = of_device_get_match_data(dev);
|
|
|
|
if (!compat_info)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
chip = mv88e6xxx_alloc_chip(dev);
|
|
|
|
if (!chip)
|
2016-05-11 05:27:21 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->info = compat_info;
|
2016-06-21 01:14:09 +08:00
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
err = mv88e6xxx_smi_init(chip, mdiodev->bus, mdiodev->addr);
|
2016-06-21 01:14:07 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2016-05-11 05:27:21 +08:00
|
|
|
|
2016-11-22 06:26:55 +08:00
|
|
|
chip->reset = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_LOW);
|
|
|
|
if (IS_ERR(chip->reset))
|
|
|
|
return PTR_ERR(chip->reset);
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
err = mv88e6xxx_detect(chip);
|
2016-06-21 01:14:08 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
2016-05-11 05:27:21 +08:00
|
|
|
|
2016-08-16 05:19:00 +08:00
|
|
|
mv88e6xxx_phy_init(chip);
|
|
|
|
|
2016-09-30 00:22:02 +08:00
|
|
|
if (chip->info->ops->get_eeprom &&
|
2016-05-11 05:27:25 +08:00
|
|
|
!of_property_read_u32(np, "eeprom-length", &eeprom_len))
|
2016-06-22 00:28:20 +08:00
|
|
|
chip->eeprom_len = eeprom_len;
|
2016-05-11 05:27:25 +08:00
|
|
|
|
2016-10-17 01:56:49 +08:00
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_switch_reset(chip);
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
chip->irq = of_irq_get(np, 0);
|
|
|
|
if (chip->irq == -EPROBE_DEFER) {
|
|
|
|
err = chip->irq;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chip->irq > 0) {
|
|
|
|
/* Has to be performed before the MDIO bus is created,
|
|
|
|
* because the PHYs will link there interrupts to these
|
|
|
|
* interrupt controllers
|
|
|
|
*/
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
err = mv88e6xxx_g1_irq_setup(chip);
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G2_INT)) {
|
|
|
|
err = mv88e6xxx_g2_irq_setup(chip);
|
|
|
|
if (err)
|
|
|
|
goto out_g1_irq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
err = mv88e6xxx_mdios_register(chip, np);
|
2016-06-05 03:17:06 +08:00
|
|
|
if (err)
|
2016-10-17 01:56:49 +08:00
|
|
|
goto out_g2_irq;
|
2016-06-05 03:17:06 +08:00
|
|
|
|
2017-01-27 02:45:51 +08:00
|
|
|
err = mv88e6xxx_register_switch(chip);
|
2016-10-17 01:56:49 +08:00
|
|
|
if (err)
|
|
|
|
goto out_mdio;
|
2016-06-05 03:17:07 +08:00
|
|
|
|
2011-11-25 22:36:19 +08:00
|
|
|
return 0;
|
2016-10-17 01:56:49 +08:00
|
|
|
|
|
|
|
out_mdio:
|
2017-01-24 21:53:50 +08:00
|
|
|
mv88e6xxx_mdios_unregister(chip);
|
2016-10-17 01:56:49 +08:00
|
|
|
out_g2_irq:
|
2016-11-21 03:14:15 +08:00
|
|
|
if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G2_INT) && chip->irq > 0)
|
2016-10-17 01:56:49 +08:00
|
|
|
mv88e6xxx_g2_irq_free(chip);
|
|
|
|
out_g1_irq:
|
2016-11-21 03:14:19 +08:00
|
|
|
if (chip->irq > 0) {
|
|
|
|
mutex_lock(&chip->reg_lock);
|
2016-11-21 03:14:15 +08:00
|
|
|
mv88e6xxx_g1_irq_free(chip);
|
2016-11-21 03:14:19 +08:00
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
}
|
2016-10-17 01:56:49 +08:00
|
|
|
out:
|
|
|
|
return err;
|
2011-11-25 22:36:19 +08:00
|
|
|
}
|
2016-05-11 05:27:21 +08:00
|
|
|
|
|
|
|
static void mv88e6xxx_remove(struct mdio_device *mdiodev)
|
|
|
|
{
|
|
|
|
struct dsa_switch *ds = dev_get_drvdata(&mdiodev->dev);
|
2016-09-01 06:06:13 +08:00
|
|
|
struct mv88e6xxx_chip *chip = ds->priv;
|
2016-05-11 05:27:21 +08:00
|
|
|
|
2016-08-22 22:01:03 +08:00
|
|
|
mv88e6xxx_phy_destroy(chip);
|
2016-06-22 00:28:20 +08:00
|
|
|
mv88e6xxx_unregister_switch(chip);
|
2017-01-24 21:53:50 +08:00
|
|
|
mv88e6xxx_mdios_unregister(chip);
|
2016-10-17 01:56:49 +08:00
|
|
|
|
2016-11-21 03:14:15 +08:00
|
|
|
if (chip->irq > 0) {
|
|
|
|
if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G2_INT))
|
|
|
|
mv88e6xxx_g2_irq_free(chip);
|
|
|
|
mv88e6xxx_g1_irq_free(chip);
|
|
|
|
}
|
2016-05-11 05:27:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct of_device_id mv88e6xxx_of_match[] = {
|
2016-06-21 01:14:09 +08:00
|
|
|
{
|
|
|
|
.compatible = "marvell,mv88e6085",
|
|
|
|
.data = &mv88e6xxx_table[MV88E6085],
|
|
|
|
},
|
2016-11-22 06:26:57 +08:00
|
|
|
{
|
|
|
|
.compatible = "marvell,mv88e6190",
|
|
|
|
.data = &mv88e6xxx_table[MV88E6190],
|
|
|
|
},
|
2016-05-11 05:27:21 +08:00
|
|
|
{ /* sentinel */ },
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(of, mv88e6xxx_of_match);
|
|
|
|
|
|
|
|
static struct mdio_driver mv88e6xxx_driver = {
|
|
|
|
.probe = mv88e6xxx_probe,
|
|
|
|
.remove = mv88e6xxx_remove,
|
|
|
|
.mdiodrv.driver = {
|
|
|
|
.name = "mv88e6085",
|
|
|
|
.of_match_table = mv88e6xxx_of_match,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init mv88e6xxx_init(void)
|
|
|
|
{
|
2017-01-09 06:52:07 +08:00
|
|
|
register_switch_driver(&mv88e6xxx_switch_drv);
|
2016-05-11 05:27:21 +08:00
|
|
|
return mdio_driver_register(&mv88e6xxx_driver);
|
|
|
|
}
|
2011-11-25 22:36:19 +08:00
|
|
|
module_init(mv88e6xxx_init);
|
|
|
|
|
|
|
|
static void __exit mv88e6xxx_cleanup(void)
|
|
|
|
{
|
2016-05-11 05:27:21 +08:00
|
|
|
mdio_driver_unregister(&mv88e6xxx_driver);
|
2017-01-09 06:52:07 +08:00
|
|
|
unregister_switch_driver(&mv88e6xxx_switch_drv);
|
2011-11-25 22:36:19 +08:00
|
|
|
}
|
|
|
|
module_exit(mv88e6xxx_cleanup);
|
2011-11-25 22:37:16 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>");
|
|
|
|
MODULE_DESCRIPTION("Driver for Marvell 88E6XXX ethernet switch chips");
|
|
|
|
MODULE_LICENSE("GPL");
|