2019-05-27 14:55:01 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
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
|
|
|
/*
|
2017-06-03 05:06:15 +08:00
|
|
|
* Marvell 88E6xxx Ethernet switch single-chip definition
|
2016-06-22 00:28:19 +08:00
|
|
|
*
|
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
|
|
|
|
*/
|
|
|
|
|
2017-06-03 05:06:15 +08:00
|
|
|
#ifndef _MV88E6XXX_CHIP_H
|
|
|
|
#define _MV88E6XXX_CHIP_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
|
|
|
|
2015-08-10 21:09:47 +08:00
|
|
|
#include <linux/if_vlan.h>
|
2016-10-17 01:56:49 +08:00
|
|
|
#include <linux/irq.h>
|
2016-05-11 05:27:22 +08:00
|
|
|
#include <linux/gpio/consumer.h>
|
2018-02-23 05:58:32 +08:00
|
|
|
#include <linux/kthread.h>
|
2017-02-08 07:03:05 +08:00
|
|
|
#include <linux/phy.h>
|
2018-02-14 08:07:45 +08:00
|
|
|
#include <linux/ptp_clock_kernel.h>
|
|
|
|
#include <linux/timecounter.h>
|
2017-03-29 05:45:06 +08:00
|
|
|
#include <net/dsa.h>
|
2015-08-10 21:09:47 +08:00
|
|
|
|
2016-02-27 02:16:03 +08:00
|
|
|
#define MV88E6XXX_N_FID 4096
|
|
|
|
|
2017-03-31 05:37:09 +08:00
|
|
|
/* PVT limits for 4-bit port and 5-bit switch */
|
|
|
|
#define MV88E6XXX_MAX_PVT_SWITCHES 32
|
|
|
|
#define MV88E6XXX_MAX_PVT_PORTS 16
|
|
|
|
|
2018-02-14 08:07:46 +08:00
|
|
|
#define MV88E6XXX_MAX_GPIO 16
|
|
|
|
|
2017-06-09 06:34:09 +08:00
|
|
|
enum mv88e6xxx_egress_mode {
|
|
|
|
MV88E6XXX_EGRESS_MODE_UNMODIFIED,
|
|
|
|
MV88E6XXX_EGRESS_MODE_UNTAGGED,
|
|
|
|
MV88E6XXX_EGRESS_MODE_TAGGED,
|
|
|
|
MV88E6XXX_EGRESS_MODE_ETHERTYPE,
|
|
|
|
};
|
|
|
|
|
2016-12-03 11:35:19 +08:00
|
|
|
enum mv88e6xxx_frame_mode {
|
|
|
|
MV88E6XXX_FRAME_MODE_NORMAL,
|
|
|
|
MV88E6XXX_FRAME_MODE_DSA,
|
|
|
|
MV88E6XXX_FRAME_MODE_PROVIDER,
|
|
|
|
MV88E6XXX_FRAME_MODE_ETHERTYPE,
|
|
|
|
};
|
|
|
|
|
2016-05-10 01:22:58 +08:00
|
|
|
/* List of supported models */
|
|
|
|
enum mv88e6xxx_model {
|
|
|
|
MV88E6085,
|
|
|
|
MV88E6095,
|
2016-11-23 00:47:21 +08:00
|
|
|
MV88E6097,
|
2016-05-10 01:22:58 +08:00
|
|
|
MV88E6123,
|
|
|
|
MV88E6131,
|
2017-01-31 03:29:35 +08:00
|
|
|
MV88E6141,
|
2016-05-10 01:22:58 +08:00
|
|
|
MV88E6161,
|
|
|
|
MV88E6165,
|
|
|
|
MV88E6171,
|
|
|
|
MV88E6172,
|
|
|
|
MV88E6175,
|
|
|
|
MV88E6176,
|
|
|
|
MV88E6185,
|
2016-11-22 06:26:57 +08:00
|
|
|
MV88E6190,
|
|
|
|
MV88E6190X,
|
|
|
|
MV88E6191,
|
2019-07-31 16:23:46 +08:00
|
|
|
MV88E6220,
|
2016-05-10 01:22:58 +08:00
|
|
|
MV88E6240,
|
net: dsa: mv88e6xxx: add support for mv88e6250
This adds support for the Marvell 88E6250. I've checked that each
member in the ops-structure makes sense, and basic switchdev
functionality works fine.
It uses the new dual_chip option, and since its port registers start
at SMI address 0x08 or 0x18 (i.e., always sw_addr + 0x08), we need to
introduce a new compatible string in order for the auto-identification
in mv88e6xxx_detect() to work.
The chip has four per port 16-bits statistics registers, two of which
correspond to the existing "sw_in_filtered" and "sw_out_filtered" (but
at offsets 0x13 and 0x10 rather than 0x12 and 0x13, because why should
this be easy...). Wiring up those four statistics seems to require
introducing a STATS_TYPE_PORT_6250 bit or similar, which seems a tad
ugly, so for now this just allows access to the STATS_TYPE_BANK0 ones.
The chip does have ptp support, and the existing
mv88e6352_{gpio,avb,ptp}_ops at first glance seem like they would work
out-of-the-box, but for simplicity (and lack of testing) I'm eliding
this.
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-06-04 15:34:32 +08:00
|
|
|
MV88E6250,
|
2016-11-22 06:26:57 +08:00
|
|
|
MV88E6290,
|
2016-05-10 01:22:58 +08:00
|
|
|
MV88E6320,
|
|
|
|
MV88E6321,
|
2017-01-31 03:29:34 +08:00
|
|
|
MV88E6341,
|
2016-05-10 01:22:58 +08:00
|
|
|
MV88E6350,
|
|
|
|
MV88E6351,
|
|
|
|
MV88E6352,
|
2016-11-22 06:26:57 +08:00
|
|
|
MV88E6390,
|
|
|
|
MV88E6390X,
|
2016-05-10 01:22:58 +08:00
|
|
|
};
|
|
|
|
|
2016-04-18 01:24:00 +08:00
|
|
|
enum mv88e6xxx_family {
|
|
|
|
MV88E6XXX_FAMILY_NONE,
|
|
|
|
MV88E6XXX_FAMILY_6065, /* 6031 6035 6061 6065 */
|
|
|
|
MV88E6XXX_FAMILY_6095, /* 6092 6095 */
|
|
|
|
MV88E6XXX_FAMILY_6097, /* 6046 6085 6096 6097 */
|
|
|
|
MV88E6XXX_FAMILY_6165, /* 6123 6161 6165 */
|
|
|
|
MV88E6XXX_FAMILY_6185, /* 6108 6121 6122 6131 6152 6155 6182 6185 */
|
2019-07-31 16:23:46 +08:00
|
|
|
MV88E6XXX_FAMILY_6250, /* 6220 6250 */
|
2016-04-18 01:24:00 +08:00
|
|
|
MV88E6XXX_FAMILY_6320, /* 6320 6321 */
|
2017-01-31 03:29:34 +08:00
|
|
|
MV88E6XXX_FAMILY_6341, /* 6141 6341 */
|
2016-04-18 01:24:00 +08:00
|
|
|
MV88E6XXX_FAMILY_6351, /* 6171 6175 6350 6351 */
|
|
|
|
MV88E6XXX_FAMILY_6352, /* 6172 6176 6240 6352 */
|
2016-11-22 06:26:57 +08:00
|
|
|
MV88E6XXX_FAMILY_6390, /* 6190 6190X 6191 6290 6390 6390X */
|
2016-04-18 01:24:00 +08:00
|
|
|
};
|
|
|
|
|
2017-02-09 07:00:43 +08:00
|
|
|
struct mv88e6xxx_ops;
|
|
|
|
|
2016-04-18 01:23:59 +08:00
|
|
|
struct mv88e6xxx_info {
|
2016-04-18 01:24:00 +08:00
|
|
|
enum mv88e6xxx_family family;
|
2016-04-18 01:23:59 +08:00
|
|
|
u16 prod_num;
|
|
|
|
const char *name;
|
2016-04-18 01:24:02 +08:00
|
|
|
unsigned int num_databases;
|
2016-04-18 01:24:01 +08:00
|
|
|
unsigned int num_ports;
|
2018-03-18 03:32:04 +08:00
|
|
|
unsigned int num_internal_phys;
|
2018-02-14 08:07:46 +08:00
|
|
|
unsigned int num_gpio;
|
2017-05-02 02:05:10 +08:00
|
|
|
unsigned int max_vid;
|
2016-06-21 01:14:10 +08:00
|
|
|
unsigned int port_base_addr;
|
2018-05-06 02:58:22 +08:00
|
|
|
unsigned int phy_base_addr;
|
2016-09-30 00:21:53 +08:00
|
|
|
unsigned int global1_addr;
|
2017-07-18 01:03:44 +08:00
|
|
|
unsigned int global2_addr;
|
2016-07-19 08:45:39 +08:00
|
|
|
unsigned int age_time_coeff;
|
2016-10-17 01:56:49 +08:00
|
|
|
unsigned int g1_irqs;
|
2017-07-18 01:03:40 +08:00
|
|
|
unsigned int g2_irqs;
|
2017-03-31 05:37:07 +08:00
|
|
|
bool pvt;
|
2017-07-18 01:03:46 +08:00
|
|
|
|
2019-07-31 16:23:48 +08:00
|
|
|
/* Mark certain ports as invalid. This is required for example for the
|
|
|
|
* MV88E6220 (which is in general a MV88E6250 with 7 ports) but the
|
|
|
|
* ports 2-4 are not routet to pins.
|
|
|
|
*/
|
|
|
|
unsigned int invalid_port_mask;
|
2017-07-18 01:03:46 +08:00
|
|
|
/* Multi-chip Addressing Mode.
|
|
|
|
* Some chips respond to only 2 registers of its own SMI device address
|
|
|
|
* when it is non-zero, and use indirect access to internal registers.
|
|
|
|
*/
|
|
|
|
bool multi_chip;
|
2019-06-04 15:34:24 +08:00
|
|
|
/* Dual-chip Addressing Mode
|
|
|
|
* Some chips respond to only half of the 32 SMI addresses,
|
|
|
|
* allowing two to coexist on the same SMI interface.
|
|
|
|
*/
|
|
|
|
bool dual_chip;
|
|
|
|
|
2016-12-03 11:35:18 +08:00
|
|
|
enum dsa_tag_protocol tag_protocol;
|
2017-03-12 05:12:55 +08:00
|
|
|
|
|
|
|
/* Mask for FromPort and ToPort value of PortVec used in ATU Move
|
|
|
|
* operation. 0 means that the ATU Move operation is not supported.
|
|
|
|
*/
|
|
|
|
u8 atu_move_port_mask;
|
2016-09-30 00:22:00 +08:00
|
|
|
const struct mv88e6xxx_ops *ops;
|
2018-02-14 08:07:45 +08:00
|
|
|
|
|
|
|
/* Supports PTP */
|
|
|
|
bool ptp_support;
|
2015-10-31 07:39:48 +08:00
|
|
|
};
|
|
|
|
|
2015-08-10 21:09:50 +08:00
|
|
|
struct mv88e6xxx_atu_entry {
|
|
|
|
u8 state;
|
|
|
|
bool trunk;
|
2017-03-12 05:12:57 +08:00
|
|
|
u16 portvec;
|
2015-08-10 21:09:50 +08:00
|
|
|
u8 mac[ETH_ALEN];
|
|
|
|
};
|
|
|
|
|
2016-09-30 00:21:58 +08:00
|
|
|
struct mv88e6xxx_vtu_entry {
|
2015-08-14 00:52:19 +08:00
|
|
|
u16 vid;
|
|
|
|
u16 fid;
|
|
|
|
u8 sid;
|
|
|
|
bool valid;
|
2017-05-02 02:05:11 +08:00
|
|
|
u8 member[DSA_MAX_PORTS];
|
|
|
|
u8 state[DSA_MAX_PORTS];
|
2015-08-14 00:52:19 +08:00
|
|
|
};
|
|
|
|
|
2016-09-30 00:21:59 +08:00
|
|
|
struct mv88e6xxx_bus_ops;
|
2017-02-09 07:03:42 +08:00
|
|
|
struct mv88e6xxx_irq_ops;
|
2018-02-14 08:07:46 +08:00
|
|
|
struct mv88e6xxx_gpio_ops;
|
2018-02-14 08:07:44 +08:00
|
|
|
struct mv88e6xxx_avb_ops;
|
2018-07-19 04:38:20 +08:00
|
|
|
struct mv88e6xxx_ptp_ops;
|
2016-06-21 01:14:11 +08:00
|
|
|
|
2016-10-17 01:56:49 +08:00
|
|
|
struct mv88e6xxx_irq {
|
|
|
|
u16 masked;
|
|
|
|
struct irq_chip chip;
|
|
|
|
struct irq_domain *domain;
|
|
|
|
unsigned int nirqs;
|
|
|
|
};
|
|
|
|
|
2018-02-14 08:07:50 +08:00
|
|
|
/* state flags for mv88e6xxx_port_hwtstamp::state */
|
|
|
|
enum {
|
|
|
|
MV88E6XXX_HWTSTAMP_ENABLED,
|
|
|
|
MV88E6XXX_HWTSTAMP_TX_IN_PROGRESS,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mv88e6xxx_port_hwtstamp {
|
|
|
|
/* Port index */
|
|
|
|
int port_id;
|
|
|
|
|
|
|
|
/* Timestamping state */
|
|
|
|
unsigned long state;
|
|
|
|
|
|
|
|
/* Resources for receive timestamping */
|
|
|
|
struct sk_buff_head rx_queue;
|
|
|
|
struct sk_buff_head rx_queue2;
|
|
|
|
|
|
|
|
/* Resources for transmit timestamping */
|
|
|
|
unsigned long tx_tstamp_start;
|
|
|
|
struct sk_buff *tx_skb;
|
|
|
|
u16 tx_seq_id;
|
|
|
|
|
|
|
|
/* Current timestamp configuration */
|
|
|
|
struct hwtstamp_config tstamp_config;
|
|
|
|
};
|
|
|
|
|
2018-03-01 09:02:31 +08:00
|
|
|
struct mv88e6xxx_port {
|
2018-08-09 21:38:47 +08:00
|
|
|
struct mv88e6xxx_chip *chip;
|
|
|
|
int port;
|
2018-03-01 09:02:31 +08:00
|
|
|
u64 serdes_stats[2];
|
2018-03-29 05:50:28 +08:00
|
|
|
u64 atu_member_violation;
|
|
|
|
u64 atu_miss_violation;
|
|
|
|
u64 atu_full_violation;
|
|
|
|
u64 vtu_member_violation;
|
|
|
|
u64 vtu_miss_violation;
|
2018-08-09 21:38:45 +08:00
|
|
|
u8 cmode;
|
2018-08-09 21:38:48 +08:00
|
|
|
int serdes_irq;
|
2018-03-01 09:02:31 +08:00
|
|
|
};
|
|
|
|
|
2016-06-22 00:28:20 +08:00
|
|
|
struct mv88e6xxx_chip {
|
2016-04-18 01:23:59 +08:00
|
|
|
const struct mv88e6xxx_info *info;
|
|
|
|
|
2016-04-13 08:40:40 +08:00
|
|
|
/* The dsa_switch this private structure is related to */
|
|
|
|
struct dsa_switch *ds;
|
|
|
|
|
2016-04-29 09:24:06 +08:00
|
|
|
/* The device this structure is associated to */
|
|
|
|
struct device *dev;
|
|
|
|
|
2016-06-21 01:14:05 +08:00
|
|
|
/* This mutex protects the access to the switch registers */
|
|
|
|
struct mutex reg_lock;
|
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-04-13 08:40:42 +08:00
|
|
|
/* The MII bus and the address on the bus that is used to
|
|
|
|
* communication with the switch
|
|
|
|
*/
|
2016-09-30 00:21:59 +08:00
|
|
|
const struct mv88e6xxx_bus_ops *smi_ops;
|
2016-04-13 08:40:42 +08:00
|
|
|
struct mii_bus *bus;
|
|
|
|
int sw_addr;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* Handles automatic disabling and re-enabling of the PHY
|
2008-10-07 21:45:18 +08:00
|
|
|
* polling unit.
|
|
|
|
*/
|
2016-09-30 00:21:59 +08:00
|
|
|
const struct mv88e6xxx_bus_ops *phy_ops;
|
2008-10-07 21:45:18 +08:00
|
|
|
struct mutex ppu_mutex;
|
|
|
|
int ppu_disabled;
|
|
|
|
struct work_struct ppu_work;
|
|
|
|
struct timer_list ppu_timer;
|
|
|
|
|
2013-01-09 00:05:53 +08:00
|
|
|
/* This mutex serialises access to the statistics unit.
|
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
|
|
|
* Hold this mutex over snapshot + dump sequences.
|
|
|
|
*/
|
|
|
|
struct mutex stats_mutex;
|
2014-10-30 01:44:56 +08:00
|
|
|
|
2016-05-11 05:27:22 +08:00
|
|
|
/* A switch may have a GPIO line tied to its reset pin. Parse
|
|
|
|
* this from the device tree, and use it before performing
|
|
|
|
* switch soft reset.
|
|
|
|
*/
|
|
|
|
struct gpio_desc *reset;
|
2016-05-11 05:27:25 +08:00
|
|
|
|
|
|
|
/* set to size of eeprom if supported by the switch */
|
2018-05-20 04:31:35 +08:00
|
|
|
u32 eeprom_len;
|
2016-06-05 03:17:06 +08:00
|
|
|
|
2017-01-24 21:53:50 +08:00
|
|
|
/* List of mdio busses */
|
|
|
|
struct list_head mdios;
|
2016-10-17 01:56:49 +08:00
|
|
|
|
|
|
|
/* There can be two interrupt controllers, which are chained
|
|
|
|
* off a GPIO as interrupt source
|
|
|
|
*/
|
|
|
|
struct mv88e6xxx_irq g1_irq;
|
|
|
|
struct mv88e6xxx_irq g2_irq;
|
|
|
|
int irq;
|
2016-11-21 03:14:18 +08:00
|
|
|
int device_irq;
|
2017-02-09 07:03:42 +08:00
|
|
|
int watchdog_irq;
|
2018-03-01 09:02:31 +08:00
|
|
|
|
2018-01-14 09:32:44 +08:00
|
|
|
int atu_prob_irq;
|
2018-01-14 09:32:45 +08:00
|
|
|
int vtu_prob_irq;
|
2018-02-23 05:58:32 +08:00
|
|
|
struct kthread_worker *kworker;
|
|
|
|
struct kthread_delayed_work irq_poll_work;
|
2018-02-14 08:07:45 +08:00
|
|
|
|
2018-02-14 08:07:46 +08:00
|
|
|
/* GPIO resources */
|
|
|
|
u8 gpio_data[2];
|
|
|
|
|
2018-02-14 08:07:45 +08:00
|
|
|
/* This cyclecounter abstracts the switch PTP time.
|
|
|
|
* reg_lock must be held for any operation that read()s.
|
|
|
|
*/
|
|
|
|
struct cyclecounter tstamp_cc;
|
|
|
|
struct timecounter tstamp_tc;
|
|
|
|
struct delayed_work overflow_work;
|
|
|
|
|
|
|
|
struct ptp_clock *ptp_clock;
|
|
|
|
struct ptp_clock_info ptp_clock_info;
|
2018-02-14 08:07:47 +08:00
|
|
|
struct delayed_work tai_event_work;
|
|
|
|
struct ptp_pin_desc pin_config[MV88E6XXX_MAX_GPIO];
|
|
|
|
u16 trig_config;
|
|
|
|
u16 evcap_config;
|
2018-07-19 04:38:25 +08:00
|
|
|
u16 enable_count;
|
2018-02-14 08:07:50 +08:00
|
|
|
|
|
|
|
/* Per-port timestamping resources. */
|
|
|
|
struct mv88e6xxx_port_hwtstamp port_hwtstamp[DSA_MAX_PORTS];
|
2018-03-01 09:02:31 +08:00
|
|
|
|
|
|
|
/* Array of port structures. */
|
|
|
|
struct mv88e6xxx_port ports[DSA_MAX_PORTS];
|
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-09-30 00:21:59 +08:00
|
|
|
struct mv88e6xxx_bus_ops {
|
2016-06-22 00:28:20 +08:00
|
|
|
int (*read)(struct mv88e6xxx_chip *chip, int addr, int reg, u16 *val);
|
|
|
|
int (*write)(struct mv88e6xxx_chip *chip, int addr, int reg, u16 val);
|
2016-06-21 01:14:11 +08:00
|
|
|
};
|
|
|
|
|
2017-01-24 21:53:49 +08:00
|
|
|
struct mv88e6xxx_mdio_bus {
|
2017-01-24 21:53:50 +08:00
|
|
|
struct mii_bus *bus;
|
2017-01-24 21:53:49 +08:00
|
|
|
struct mv88e6xxx_chip *chip;
|
2017-01-24 21:53:50 +08:00
|
|
|
struct list_head list;
|
|
|
|
bool external;
|
2017-01-24 21:53:49 +08:00
|
|
|
};
|
|
|
|
|
2016-09-30 00:22:00 +08:00
|
|
|
struct mv88e6xxx_ops {
|
2019-01-09 07:24:03 +08:00
|
|
|
/* Switch Setup Errata, called early in the switch setup to
|
|
|
|
* allow any errata actions to be performed
|
|
|
|
*/
|
|
|
|
int (*setup_errata)(struct mv88e6xxx_chip *chip);
|
|
|
|
|
2018-05-12 05:16:35 +08:00
|
|
|
int (*ieee_pri_map)(struct mv88e6xxx_chip *chip);
|
|
|
|
int (*ip_pri_map)(struct mv88e6xxx_chip *chip);
|
|
|
|
|
2017-06-19 22:55:36 +08:00
|
|
|
/* Ingress Rate Limit unit (IRL) operations */
|
|
|
|
int (*irl_init_all)(struct mv88e6xxx_chip *chip, int port);
|
|
|
|
|
2016-09-30 00:22:02 +08:00
|
|
|
int (*get_eeprom)(struct mv88e6xxx_chip *chip,
|
|
|
|
struct ethtool_eeprom *eeprom, u8 *data);
|
|
|
|
int (*set_eeprom)(struct mv88e6xxx_chip *chip,
|
|
|
|
struct ethtool_eeprom *eeprom, u8 *data);
|
|
|
|
|
2016-09-30 00:22:01 +08:00
|
|
|
int (*set_switch_mac)(struct mv88e6xxx_chip *chip, u8 *addr);
|
|
|
|
|
2017-01-24 21:53:48 +08:00
|
|
|
int (*phy_read)(struct mv88e6xxx_chip *chip,
|
|
|
|
struct mii_bus *bus,
|
|
|
|
int addr, int reg, u16 *val);
|
|
|
|
int (*phy_write)(struct mv88e6xxx_chip *chip,
|
|
|
|
struct mii_bus *bus,
|
|
|
|
int addr, int reg, u16 val);
|
2016-11-04 10:23:32 +08:00
|
|
|
|
2017-07-18 01:03:43 +08:00
|
|
|
/* Priority Override Table operations */
|
|
|
|
int (*pot_clear)(struct mv88e6xxx_chip *chip);
|
|
|
|
|
2016-12-06 06:30:28 +08:00
|
|
|
/* PHY Polling Unit (PPU) operations */
|
|
|
|
int (*ppu_enable)(struct mv88e6xxx_chip *chip);
|
|
|
|
int (*ppu_disable)(struct mv88e6xxx_chip *chip);
|
|
|
|
|
2016-12-06 06:30:27 +08:00
|
|
|
/* Switch Software Reset */
|
|
|
|
int (*reset)(struct mv88e6xxx_chip *chip);
|
|
|
|
|
2016-11-04 10:23:34 +08:00
|
|
|
/* RGMII Receive/Transmit Timing Control
|
|
|
|
* Add delay on PHY_INTERFACE_MODE_RGMII_*ID, no delay otherwise.
|
|
|
|
*/
|
|
|
|
int (*port_set_rgmii_delay)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
phy_interface_t mode);
|
|
|
|
|
2016-11-04 10:23:32 +08:00
|
|
|
#define LINK_FORCED_DOWN 0
|
|
|
|
#define LINK_FORCED_UP 1
|
|
|
|
#define LINK_UNFORCED -2
|
|
|
|
|
|
|
|
/* Port's MAC link state
|
|
|
|
* Use LINK_FORCED_UP or LINK_FORCED_DOWN to force link up or down,
|
|
|
|
* or LINK_UNFORCED for normal link detection.
|
|
|
|
*/
|
|
|
|
int (*port_set_link)(struct mv88e6xxx_chip *chip, int port, int link);
|
2016-11-04 10:23:33 +08:00
|
|
|
|
|
|
|
#define DUPLEX_UNFORCED -2
|
|
|
|
|
|
|
|
/* Port's MAC duplex mode
|
|
|
|
*
|
|
|
|
* Use DUPLEX_HALF or DUPLEX_FULL to force half or full duplex,
|
|
|
|
* or DUPLEX_UNFORCED for normal duplex detection.
|
|
|
|
*/
|
|
|
|
int (*port_set_duplex)(struct mv88e6xxx_chip *chip, int port, int dup);
|
2016-11-04 10:23:35 +08:00
|
|
|
|
2018-08-09 21:38:37 +08:00
|
|
|
#define PAUSE_ON 1
|
|
|
|
#define PAUSE_OFF 0
|
|
|
|
|
|
|
|
/* Enable/disable sending Pause */
|
|
|
|
int (*port_set_pause)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
int pause);
|
|
|
|
|
2016-11-04 10:23:35 +08:00
|
|
|
#define SPEED_MAX INT_MAX
|
|
|
|
#define SPEED_UNFORCED -2
|
|
|
|
|
|
|
|
/* Port's MAC speed (in Mbps)
|
|
|
|
*
|
|
|
|
* Depending on the chip, 10, 100, 200, 1000, 2500, 10000 are valid.
|
|
|
|
* Use SPEED_UNFORCED for normal detection, SPEED_MAX for max value.
|
|
|
|
*/
|
|
|
|
int (*port_set_speed)(struct mv88e6xxx_chip *chip, int port, int speed);
|
2016-11-22 06:26:58 +08:00
|
|
|
|
2019-03-08 08:21:27 +08:00
|
|
|
/* What interface mode should be used for maximum speed? */
|
|
|
|
phy_interface_t (*port_max_speed_mode)(int port);
|
|
|
|
|
2016-12-03 11:35:16 +08:00
|
|
|
int (*port_tag_remap)(struct mv88e6xxx_chip *chip, int port);
|
|
|
|
|
2016-12-03 11:35:19 +08:00
|
|
|
int (*port_set_frame_mode)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
enum mv88e6xxx_frame_mode mode);
|
2017-03-12 05:13:00 +08:00
|
|
|
int (*port_set_egress_floods)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
bool unicast, bool multicast);
|
2016-12-03 11:35:19 +08:00
|
|
|
int (*port_set_ether_type)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
u16 etype);
|
2017-06-09 06:34:13 +08:00
|
|
|
int (*port_set_jumbo_size)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
size_t size);
|
2016-12-03 11:35:19 +08:00
|
|
|
|
2016-12-03 11:45:18 +08:00
|
|
|
int (*port_egress_rate_limiting)(struct mv88e6xxx_chip *chip, int port);
|
2017-06-09 06:34:12 +08:00
|
|
|
int (*port_pause_limit)(struct mv88e6xxx_chip *chip, int port, u8 in,
|
|
|
|
u8 out);
|
2017-03-12 05:13:01 +08:00
|
|
|
int (*port_disable_learn_limit)(struct mv88e6xxx_chip *chip, int port);
|
2017-03-12 05:13:02 +08:00
|
|
|
int (*port_disable_pri_override)(struct mv88e6xxx_chip *chip, int port);
|
2019-07-31 16:23:49 +08:00
|
|
|
int (*port_setup_message_port)(struct mv88e6xxx_chip *chip, int port);
|
2016-12-03 11:45:18 +08:00
|
|
|
|
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
|
|
|
/* CMODE control what PHY mode the MAC will use, eg. SGMII, RGMII, etc.
|
|
|
|
* Some chips allow this to be configured on specific ports.
|
|
|
|
*/
|
|
|
|
int (*port_set_cmode)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
phy_interface_t mode);
|
2018-08-09 21:38:45 +08:00
|
|
|
int (*port_get_cmode)(struct mv88e6xxx_chip *chip, int port, u8 *cmode);
|
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
|
|
|
|
2017-02-05 03:15:28 +08:00
|
|
|
/* Some devices have a per port register indicating what is
|
|
|
|
* the upstream port this port should forward to.
|
|
|
|
*/
|
|
|
|
int (*port_set_upstream_port)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
int upstream_port);
|
2018-08-09 21:38:39 +08:00
|
|
|
/* Return the port link state, as required by phylink */
|
|
|
|
int (*port_link_state)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
struct phylink_link_state *state);
|
2017-02-05 03:15:28 +08:00
|
|
|
|
2016-11-22 06:26:58 +08:00
|
|
|
/* Snapshot the statistics for a port. The statistics can then
|
|
|
|
* be read back a leisure but still with a consistent view.
|
|
|
|
*/
|
|
|
|
int (*stats_snapshot)(struct mv88e6xxx_chip *chip, int port);
|
2016-11-22 06:27:01 +08:00
|
|
|
|
|
|
|
/* Set the histogram mode for statistics, when the control registers
|
|
|
|
* are separated out of the STATS_OP register.
|
|
|
|
*/
|
|
|
|
int (*stats_set_histogram)(struct mv88e6xxx_chip *chip);
|
2016-09-30 00:22:00 +08:00
|
|
|
|
2016-11-22 06:27:02 +08:00
|
|
|
/* Return the number of strings describing statistics */
|
|
|
|
int (*stats_get_sset_count)(struct mv88e6xxx_chip *chip);
|
2018-03-01 09:02:29 +08:00
|
|
|
int (*stats_get_strings)(struct mv88e6xxx_chip *chip, uint8_t *data);
|
|
|
|
int (*stats_get_stats)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
uint64_t *data);
|
2017-06-09 06:34:11 +08:00
|
|
|
int (*set_cpu_port)(struct mv88e6xxx_chip *chip, int port);
|
|
|
|
int (*set_egress_port)(struct mv88e6xxx_chip *chip, int port);
|
2018-05-09 23:38:49 +08:00
|
|
|
|
|
|
|
#define MV88E6XXX_CASCADE_PORT_NONE 0xe
|
|
|
|
#define MV88E6XXX_CASCADE_PORT_MULTIPLE 0xf
|
|
|
|
|
|
|
|
int (*set_cascade_port)(struct mv88e6xxx_chip *chip, int port);
|
|
|
|
|
2017-02-09 07:03:42 +08:00
|
|
|
const struct mv88e6xxx_irq_ops *watchdog_ops;
|
2016-12-03 11:45:16 +08:00
|
|
|
|
|
|
|
int (*mgmt_rsvd2cpu)(struct mv88e6xxx_chip *chip);
|
2017-05-02 02:05:22 +08:00
|
|
|
|
2017-05-26 07:03:21 +08:00
|
|
|
/* Power on/off a SERDES interface */
|
|
|
|
int (*serdes_power)(struct mv88e6xxx_chip *chip, int port, bool on);
|
|
|
|
|
2018-08-09 21:38:48 +08:00
|
|
|
/* SERDES interrupt handling */
|
|
|
|
int (*serdes_irq_setup)(struct mv88e6xxx_chip *chip, int port);
|
|
|
|
void (*serdes_irq_free)(struct mv88e6xxx_chip *chip, int port);
|
|
|
|
|
2018-03-01 09:02:29 +08:00
|
|
|
/* Statistics from the SERDES interface */
|
|
|
|
int (*serdes_get_sset_count)(struct mv88e6xxx_chip *chip, int port);
|
2018-03-29 05:50:28 +08:00
|
|
|
int (*serdes_get_strings)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
uint8_t *data);
|
|
|
|
int (*serdes_get_stats)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
uint64_t *data);
|
2018-03-01 09:02:29 +08:00
|
|
|
|
2017-05-02 02:05:22 +08:00
|
|
|
/* VLAN Translation Unit operations */
|
|
|
|
int (*vtu_getnext)(struct mv88e6xxx_chip *chip,
|
|
|
|
struct mv88e6xxx_vtu_entry *entry);
|
2017-05-02 02:05:23 +08:00
|
|
|
int (*vtu_loadpurge)(struct mv88e6xxx_chip *chip,
|
|
|
|
struct mv88e6xxx_vtu_entry *entry);
|
2018-02-14 08:07:44 +08:00
|
|
|
|
2018-02-14 08:07:46 +08:00
|
|
|
/* GPIO operations */
|
|
|
|
const struct mv88e6xxx_gpio_ops *gpio_ops;
|
|
|
|
|
2018-02-14 08:07:44 +08:00
|
|
|
/* Interface to the AVB/PTP registers */
|
|
|
|
const struct mv88e6xxx_avb_ops *avb_ops;
|
2018-05-09 23:38:51 +08:00
|
|
|
|
|
|
|
/* Remote Management Unit operations */
|
|
|
|
int (*rmu_disable)(struct mv88e6xxx_chip *chip);
|
2018-07-19 04:38:20 +08:00
|
|
|
|
|
|
|
/* Precision Time Protocol operations */
|
|
|
|
const struct mv88e6xxx_ptp_ops *ptp_ops;
|
2018-08-09 21:38:39 +08:00
|
|
|
|
|
|
|
/* Phylink */
|
|
|
|
void (*phylink_validate)(struct mv88e6xxx_chip *chip, int port,
|
|
|
|
unsigned long *mask,
|
|
|
|
struct phylink_link_state *state);
|
2015-12-23 20:23:17 +08:00
|
|
|
};
|
|
|
|
|
2017-02-09 07:03:42 +08:00
|
|
|
struct mv88e6xxx_irq_ops {
|
|
|
|
/* Action to be performed when the interrupt happens */
|
|
|
|
int (*irq_action)(struct mv88e6xxx_chip *chip, int irq);
|
|
|
|
/* Setup the hardware to generate the interrupt */
|
|
|
|
int (*irq_setup)(struct mv88e6xxx_chip *chip);
|
|
|
|
/* Reset the hardware to stop generating the interrupt */
|
|
|
|
void (*irq_free)(struct mv88e6xxx_chip *chip);
|
|
|
|
};
|
|
|
|
|
2018-02-14 08:07:46 +08:00
|
|
|
struct mv88e6xxx_gpio_ops {
|
|
|
|
/* Get/set data on GPIO pin */
|
|
|
|
int (*get_data)(struct mv88e6xxx_chip *chip, unsigned int pin);
|
|
|
|
int (*set_data)(struct mv88e6xxx_chip *chip, unsigned int pin,
|
|
|
|
int value);
|
|
|
|
|
|
|
|
/* get/set GPIO direction */
|
|
|
|
int (*get_dir)(struct mv88e6xxx_chip *chip, unsigned int pin);
|
|
|
|
int (*set_dir)(struct mv88e6xxx_chip *chip, unsigned int pin,
|
|
|
|
bool input);
|
|
|
|
|
|
|
|
/* get/set GPIO pin control */
|
|
|
|
int (*get_pctl)(struct mv88e6xxx_chip *chip, unsigned int pin,
|
|
|
|
int *func);
|
|
|
|
int (*set_pctl)(struct mv88e6xxx_chip *chip, unsigned int pin,
|
|
|
|
int func);
|
|
|
|
};
|
|
|
|
|
2018-02-14 08:07:44 +08:00
|
|
|
struct mv88e6xxx_avb_ops {
|
|
|
|
/* Access port-scoped Precision Time Protocol registers */
|
|
|
|
int (*port_ptp_read)(struct mv88e6xxx_chip *chip, int port, int addr,
|
|
|
|
u16 *data, int len);
|
|
|
|
int (*port_ptp_write)(struct mv88e6xxx_chip *chip, int port, int addr,
|
|
|
|
u16 data);
|
|
|
|
|
|
|
|
/* Access global Precision Time Protocol registers */
|
|
|
|
int (*ptp_read)(struct mv88e6xxx_chip *chip, int addr, u16 *data,
|
|
|
|
int len);
|
|
|
|
int (*ptp_write)(struct mv88e6xxx_chip *chip, int addr, u16 data);
|
|
|
|
|
|
|
|
/* Access global Time Application Interface registers */
|
|
|
|
int (*tai_read)(struct mv88e6xxx_chip *chip, int addr, u16 *data,
|
|
|
|
int len);
|
|
|
|
int (*tai_write)(struct mv88e6xxx_chip *chip, int addr, u16 data);
|
|
|
|
};
|
|
|
|
|
2018-07-19 04:38:20 +08:00
|
|
|
struct mv88e6xxx_ptp_ops {
|
|
|
|
u64 (*clock_read)(const struct cyclecounter *cc);
|
|
|
|
int (*ptp_enable)(struct ptp_clock_info *ptp,
|
|
|
|
struct ptp_clock_request *rq, int on);
|
|
|
|
int (*ptp_verify)(struct ptp_clock_info *ptp, unsigned int pin,
|
|
|
|
enum ptp_pin_function func, unsigned int chan);
|
|
|
|
void (*event_work)(struct work_struct *ugly);
|
2018-07-19 04:38:23 +08:00
|
|
|
int (*port_enable)(struct mv88e6xxx_chip *chip, int port);
|
|
|
|
int (*port_disable)(struct mv88e6xxx_chip *chip, int port);
|
2018-07-19 04:38:25 +08:00
|
|
|
int (*global_enable)(struct mv88e6xxx_chip *chip);
|
|
|
|
int (*global_disable)(struct mv88e6xxx_chip *chip);
|
2018-07-19 04:38:20 +08:00
|
|
|
int n_ext_ts;
|
2018-07-19 04:38:23 +08:00
|
|
|
int arr0_sts_reg;
|
|
|
|
int arr1_sts_reg;
|
|
|
|
int dep_sts_reg;
|
2018-07-19 04:38:24 +08:00
|
|
|
u32 rx_filters;
|
2019-07-31 16:23:51 +08:00
|
|
|
u32 cc_shift;
|
|
|
|
u32 cc_mult;
|
|
|
|
u32 cc_mult_num;
|
|
|
|
u32 cc_mult_dem;
|
2018-07-19 04:38:20 +08:00
|
|
|
};
|
|
|
|
|
2016-11-22 06:27:02 +08:00
|
|
|
#define STATS_TYPE_PORT BIT(0)
|
|
|
|
#define STATS_TYPE_BANK0 BIT(1)
|
|
|
|
#define STATS_TYPE_BANK1 BIT(2)
|
|
|
|
|
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
|
|
|
struct mv88e6xxx_hw_stat {
|
|
|
|
char string[ETH_GSTRING_LEN];
|
2018-03-01 09:02:31 +08:00
|
|
|
size_t size;
|
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 reg;
|
2016-11-22 06:27:02 +08:00
|
|
|
int type;
|
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
|
|
|
};
|
|
|
|
|
2017-03-31 05:37:07 +08:00
|
|
|
static inline bool mv88e6xxx_has_pvt(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
return chip->info->pvt;
|
|
|
|
}
|
|
|
|
|
2016-09-30 00:21:56 +08:00
|
|
|
static inline unsigned int mv88e6xxx_num_databases(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
return chip->info->num_databases;
|
|
|
|
}
|
|
|
|
|
2016-09-30 00:21:57 +08:00
|
|
|
static inline unsigned int mv88e6xxx_num_ports(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
return chip->info->num_ports;
|
|
|
|
}
|
|
|
|
|
2017-03-12 05:12:47 +08:00
|
|
|
static inline u16 mv88e6xxx_port_mask(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
return GENMASK(mv88e6xxx_num_ports(chip) - 1, 0);
|
|
|
|
}
|
|
|
|
|
2018-02-14 08:07:46 +08:00
|
|
|
static inline unsigned int mv88e6xxx_num_gpio(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
return chip->info->num_gpio;
|
|
|
|
}
|
|
|
|
|
2019-07-31 16:23:48 +08:00
|
|
|
static inline bool mv88e6xxx_is_invalid_port(struct mv88e6xxx_chip *chip, int port)
|
|
|
|
{
|
|
|
|
return (chip->info->invalid_port_mask & BIT(port)) != 0;
|
|
|
|
}
|
|
|
|
|
2016-09-03 02:45:33 +08:00
|
|
|
int mv88e6xxx_read(struct mv88e6xxx_chip *chip, int addr, int reg, u16 *val);
|
|
|
|
int mv88e6xxx_write(struct mv88e6xxx_chip *chip, int addr, int reg, u16 val);
|
|
|
|
int mv88e6xxx_update(struct mv88e6xxx_chip *chip, int addr, int reg,
|
|
|
|
u16 update);
|
|
|
|
int mv88e6xxx_wait(struct mv88e6xxx_chip *chip, int addr, int reg, u16 mask);
|
2019-03-02 03:41:00 +08:00
|
|
|
int mv88e6xxx_port_setup_mac(struct mv88e6xxx_chip *chip, int port, int link,
|
|
|
|
int speed, int duplex, int pause,
|
|
|
|
phy_interface_t mode);
|
2017-05-26 07:03:20 +08:00
|
|
|
struct mii_bus *mv88e6xxx_default_mdio_bus(struct mv88e6xxx_chip *chip);
|
2017-06-03 05:06:15 +08:00
|
|
|
|
2019-06-20 21:50:42 +08:00
|
|
|
static inline void mv88e6xxx_reg_lock(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
mutex_lock(&chip->reg_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mv88e6xxx_reg_unlock(struct mv88e6xxx_chip *chip)
|
|
|
|
{
|
|
|
|
mutex_unlock(&chip->reg_lock);
|
|
|
|
}
|
|
|
|
|
2017-06-03 05:06:15 +08:00
|
|
|
#endif /* _MV88E6XXX_CHIP_H */
|