blob: 8a8a5d976f977056cb90615e1ee75c298e47e0b8 [file] [log] [blame]
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001/*
2 * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips
Lennert Buytenheke84665c2009-03-20 09:52:09 +00003 * Copyright (c) 2008-2009 Marvell Semiconductor
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
10
11#ifndef __LINUX_NET_DSA_H
12#define __LINUX_NET_DSA_H
13
Axel Linea1f51b2011-11-30 22:07:18 +000014#include <linux/if_ether.h>
Ben Hutchingsc8f0b862011-11-27 17:06:08 +000015#include <linux/list.h>
Ben Hutchingscf50dcc2011-11-25 14:32:52 +000016#include <linux/timer.h>
17#include <linux/workqueue.h>
Florian Fainellifa981d92014-08-27 17:04:49 -070018#include <linux/of.h>
Florian Fainelliec9436b2014-08-27 17:04:53 -070019#include <linux/phy.h>
Florian Fainellice31b312014-08-27 17:04:54 -070020#include <linux/phy_fixed.h>
Ben Hutchingscf50dcc2011-11-25 14:32:52 +000021
Florian Fainelliac7a04c2014-09-11 21:18:09 -070022enum dsa_tag_protocol {
23 DSA_TAG_PROTO_NONE = 0,
24 DSA_TAG_PROTO_DSA,
25 DSA_TAG_PROTO_TRAILER,
26 DSA_TAG_PROTO_EDSA,
27 DSA_TAG_PROTO_BRCM,
28};
Florian Fainelli5037d532014-08-27 17:04:55 -070029
Lennert Buytenheke84665c2009-03-20 09:52:09 +000030#define DSA_MAX_SWITCHES 4
31#define DSA_MAX_PORTS 12
32
33struct dsa_chip_data {
34 /*
35 * How to access the switch configuration registers.
36 */
37 struct device *mii_bus;
38 int sw_addr;
39
Florian Fainellifa981d92014-08-27 17:04:49 -070040 /* Device tree node pointer for this specific switch chip
41 * used during switch setup in case additional properties
42 * and resources needs to be used
43 */
44 struct device_node *of_node;
45
Lennert Buytenheke84665c2009-03-20 09:52:09 +000046 /*
47 * The names of the switch's ports. Use "cpu" to
48 * designate the switch port that the cpu is connected to,
49 * "dsa" to indicate that this port is a DSA link to
50 * another switch, NULL to indicate the port is unused,
51 * or any other string to indicate this is a physical port.
52 */
53 char *port_names[DSA_MAX_PORTS];
Florian Fainellibd474972014-08-27 17:04:50 -070054 struct device_node *port_dn[DSA_MAX_PORTS];
Lennert Buytenheke84665c2009-03-20 09:52:09 +000055
56 /*
57 * An array (with nr_chips elements) of which element [a]
58 * indicates which port on this switch should be used to
59 * send packets to that are destined for switch a. Can be
60 * NULL if there is only one switch chip.
61 */
62 s8 *rtable;
63};
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000064
65struct dsa_platform_data {
66 /*
67 * Reference to a Linux network interface that connects
Lennert Buytenheke84665c2009-03-20 09:52:09 +000068 * to the root switch chip of the tree.
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000069 */
70 struct device *netdev;
71
72 /*
Lennert Buytenheke84665c2009-03-20 09:52:09 +000073 * Info structs describing each of the switch chips
74 * connected via this network interface.
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000075 */
Lennert Buytenheke84665c2009-03-20 09:52:09 +000076 int nr_chips;
77 struct dsa_chip_data *chip;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000078};
79
Florian Fainelli3e8a72d2014-08-27 17:04:46 -070080struct dsa_device_ops;
81
Ben Hutchingscf50dcc2011-11-25 14:32:52 +000082struct dsa_switch_tree {
83 /*
84 * Configuration data for the platform device that owns
85 * this dsa switch tree instance.
86 */
87 struct dsa_platform_data *pd;
Lennert Buytenhekcf85d082008-10-07 13:45:02 +000088
Ben Hutchingscf50dcc2011-11-25 14:32:52 +000089 /*
90 * Reference to network device to use, and which tagging
91 * protocol to use.
92 */
93 struct net_device *master_netdev;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -070094 const struct dsa_device_ops *ops;
Florian Fainelliac7a04c2014-09-11 21:18:09 -070095 enum dsa_tag_protocol tag_protocol;
Ben Hutchingscf50dcc2011-11-25 14:32:52 +000096
97 /*
98 * The switch and port to which the CPU is attached.
99 */
100 s8 cpu_switch;
101 s8 cpu_port;
102
103 /*
104 * Link state polling.
105 */
106 int link_poll_needed;
107 struct work_struct link_poll_work;
108 struct timer_list link_poll_timer;
109
110 /*
111 * Data for the individual switch chips.
112 */
113 struct dsa_switch *ds[DSA_MAX_SWITCHES];
114};
115
Ben Hutchingsc8f0b862011-11-27 17:06:08 +0000116struct dsa_switch {
117 /*
118 * Parent switch tree, and switch index.
119 */
120 struct dsa_switch_tree *dst;
121 int index;
122
123 /*
124 * Configuration data for this switch.
125 */
126 struct dsa_chip_data *pd;
127
128 /*
129 * The used switch driver.
130 */
131 struct dsa_switch_driver *drv;
132
133 /*
134 * Reference to mii bus to use.
135 */
136 struct mii_bus *master_mii_bus;
137
138 /*
139 * Slave mii_bus and devices for the individual ports.
140 */
141 u32 dsa_port_mask;
142 u32 phys_port_mask;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700143 u32 phys_mii_mask;
Ben Hutchingsc8f0b862011-11-27 17:06:08 +0000144 struct mii_bus *slave_mii_bus;
145 struct net_device *ports[DSA_MAX_PORTS];
146};
147
148static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
149{
150 return !!(ds->index == ds->dst->cpu_switch && p == ds->dst->cpu_port);
151}
152
153static inline u8 dsa_upstream_port(struct dsa_switch *ds)
154{
155 struct dsa_switch_tree *dst = ds->dst;
156
157 /*
158 * If this is the root switch (i.e. the switch that connects
159 * to the CPU), return the cpu port number on this switch.
160 * Else return the (DSA) port number that connects to the
161 * switch that is one hop closer to the cpu.
162 */
163 if (dst->cpu_switch == ds->index)
164 return dst->cpu_port;
165 else
166 return ds->pd->rtable[dst->cpu_switch];
167}
168
169struct dsa_switch_driver {
170 struct list_head list;
171
Florian Fainelliac7a04c2014-09-11 21:18:09 -0700172 enum dsa_tag_protocol tag_protocol;
Ben Hutchingsc8f0b862011-11-27 17:06:08 +0000173 int priv_size;
174
175 /*
176 * Probing and setup.
177 */
178 char *(*probe)(struct mii_bus *bus, int sw_addr);
179 int (*setup)(struct dsa_switch *ds);
180 int (*set_addr)(struct dsa_switch *ds, u8 *addr);
181
182 /*
183 * Access to the switch's PHY registers.
184 */
185 int (*phy_read)(struct dsa_switch *ds, int port, int regnum);
186 int (*phy_write)(struct dsa_switch *ds, int port,
187 int regnum, u16 val);
188
189 /*
190 * Link state polling and IRQ handling.
191 */
192 void (*poll_link)(struct dsa_switch *ds);
193
194 /*
Florian Fainelliec9436b2014-08-27 17:04:53 -0700195 * Link state adjustment (called from libphy)
196 */
197 void (*adjust_link)(struct dsa_switch *ds, int port,
198 struct phy_device *phydev);
Florian Fainellice31b312014-08-27 17:04:54 -0700199 void (*fixed_link_update)(struct dsa_switch *ds, int port,
200 struct fixed_phy_status *st);
Florian Fainelliec9436b2014-08-27 17:04:53 -0700201
202 /*
Ben Hutchingsc8f0b862011-11-27 17:06:08 +0000203 * ethtool hardware statistics.
204 */
205 void (*get_strings)(struct dsa_switch *ds, int port, uint8_t *data);
206 void (*get_ethtool_stats)(struct dsa_switch *ds,
207 int port, uint64_t *data);
208 int (*get_sset_count)(struct dsa_switch *ds);
209};
210
211void register_switch_driver(struct dsa_switch_driver *type);
212void unregister_switch_driver(struct dsa_switch_driver *type);
213
Florian Fainelli7fa857e2014-04-28 11:14:27 -0700214static inline void *ds_to_priv(struct dsa_switch *ds)
215{
216 return (void *)(ds + 1);
217}
218
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700219static inline bool dsa_uses_tagged_protocol(struct dsa_switch_tree *dst)
220{
Florian Fainelliac7a04c2014-09-11 21:18:09 -0700221 return dst->tag_protocol != DSA_TAG_PROTO_NONE;
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700222}
223
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000224#endif