Lennert Buytenhek | 91da11f | 2008-10-07 13:44:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 3 | * Copyright (c) 2008-2009 Marvell Semiconductor |
Lennert Buytenhek | 91da11f | 2008-10-07 13:44:02 +0000 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | */ |
| 10 | |
| 11 | #ifndef __LINUX_NET_DSA_H |
| 12 | #define __LINUX_NET_DSA_H |
| 13 | |
Axel Lin | ea1f51b | 2011-11-30 22:07:18 +0000 | [diff] [blame] | 14 | #include <linux/if_ether.h> |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 15 | #include <linux/list.h> |
Ben Hutchings | cf50dcc | 2011-11-25 14:32:52 +0000 | [diff] [blame] | 16 | #include <linux/timer.h> |
| 17 | #include <linux/workqueue.h> |
Florian Fainelli | fa981d9 | 2014-08-27 17:04:49 -0700 | [diff] [blame] | 18 | #include <linux/of.h> |
Florian Fainelli | ec9436b | 2014-08-27 17:04:53 -0700 | [diff] [blame] | 19 | #include <linux/phy.h> |
Florian Fainelli | ce31b31 | 2014-08-27 17:04:54 -0700 | [diff] [blame] | 20 | #include <linux/phy_fixed.h> |
Florian Fainelli | a282054 | 2014-10-17 16:02:13 -0700 | [diff] [blame] | 21 | #include <linux/ethtool.h> |
Ben Hutchings | cf50dcc | 2011-11-25 14:32:52 +0000 | [diff] [blame] | 22 | |
Florian Fainelli | ac7a04c | 2014-09-11 21:18:09 -0700 | [diff] [blame] | 23 | enum dsa_tag_protocol { |
| 24 | DSA_TAG_PROTO_NONE = 0, |
| 25 | DSA_TAG_PROTO_DSA, |
| 26 | DSA_TAG_PROTO_TRAILER, |
| 27 | DSA_TAG_PROTO_EDSA, |
| 28 | DSA_TAG_PROTO_BRCM, |
| 29 | }; |
Florian Fainelli | 5037d53 | 2014-08-27 17:04:55 -0700 | [diff] [blame] | 30 | |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 31 | #define DSA_MAX_SWITCHES 4 |
| 32 | #define DSA_MAX_PORTS 12 |
| 33 | |
| 34 | struct dsa_chip_data { |
| 35 | /* |
| 36 | * How to access the switch configuration registers. |
| 37 | */ |
Alexander Duyck | b4d2394 | 2014-09-15 13:00:27 -0400 | [diff] [blame] | 38 | struct device *host_dev; |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 39 | int sw_addr; |
| 40 | |
Florian Fainelli | fa981d9 | 2014-08-27 17:04:49 -0700 | [diff] [blame] | 41 | /* Device tree node pointer for this specific switch chip |
| 42 | * used during switch setup in case additional properties |
| 43 | * and resources needs to be used |
| 44 | */ |
| 45 | struct device_node *of_node; |
| 46 | |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 47 | /* |
| 48 | * The names of the switch's ports. Use "cpu" to |
| 49 | * designate the switch port that the cpu is connected to, |
| 50 | * "dsa" to indicate that this port is a DSA link to |
| 51 | * another switch, NULL to indicate the port is unused, |
| 52 | * or any other string to indicate this is a physical port. |
| 53 | */ |
| 54 | char *port_names[DSA_MAX_PORTS]; |
Florian Fainelli | bd47497 | 2014-08-27 17:04:50 -0700 | [diff] [blame] | 55 | struct device_node *port_dn[DSA_MAX_PORTS]; |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 56 | |
| 57 | /* |
| 58 | * An array (with nr_chips elements) of which element [a] |
| 59 | * indicates which port on this switch should be used to |
| 60 | * send packets to that are destined for switch a. Can be |
| 61 | * NULL if there is only one switch chip. |
| 62 | */ |
| 63 | s8 *rtable; |
| 64 | }; |
Lennert Buytenhek | 91da11f | 2008-10-07 13:44:02 +0000 | [diff] [blame] | 65 | |
| 66 | struct dsa_platform_data { |
| 67 | /* |
| 68 | * Reference to a Linux network interface that connects |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 69 | * to the root switch chip of the tree. |
Lennert Buytenhek | 91da11f | 2008-10-07 13:44:02 +0000 | [diff] [blame] | 70 | */ |
| 71 | struct device *netdev; |
| 72 | |
| 73 | /* |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 74 | * Info structs describing each of the switch chips |
| 75 | * connected via this network interface. |
Lennert Buytenhek | 91da11f | 2008-10-07 13:44:02 +0000 | [diff] [blame] | 76 | */ |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 77 | int nr_chips; |
| 78 | struct dsa_chip_data *chip; |
Lennert Buytenhek | 91da11f | 2008-10-07 13:44:02 +0000 | [diff] [blame] | 79 | }; |
| 80 | |
Alexander Duyck | 5075314 | 2014-09-15 13:00:19 -0400 | [diff] [blame] | 81 | struct packet_type; |
Florian Fainelli | 3e8a72d | 2014-08-27 17:04:46 -0700 | [diff] [blame] | 82 | |
Ben Hutchings | cf50dcc | 2011-11-25 14:32:52 +0000 | [diff] [blame] | 83 | struct dsa_switch_tree { |
| 84 | /* |
| 85 | * Configuration data for the platform device that owns |
| 86 | * this dsa switch tree instance. |
| 87 | */ |
| 88 | struct dsa_platform_data *pd; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 89 | |
Ben Hutchings | cf50dcc | 2011-11-25 14:32:52 +0000 | [diff] [blame] | 90 | /* |
| 91 | * Reference to network device to use, and which tagging |
| 92 | * protocol to use. |
| 93 | */ |
| 94 | struct net_device *master_netdev; |
Alexander Duyck | 5075314 | 2014-09-15 13:00:19 -0400 | [diff] [blame] | 95 | int (*rcv)(struct sk_buff *skb, |
| 96 | struct net_device *dev, |
| 97 | struct packet_type *pt, |
| 98 | struct net_device *orig_dev); |
Florian Fainelli | ac7a04c | 2014-09-11 21:18:09 -0700 | [diff] [blame] | 99 | enum dsa_tag_protocol tag_protocol; |
Ben Hutchings | cf50dcc | 2011-11-25 14:32:52 +0000 | [diff] [blame] | 100 | |
| 101 | /* |
| 102 | * The switch and port to which the CPU is attached. |
| 103 | */ |
| 104 | s8 cpu_switch; |
| 105 | s8 cpu_port; |
| 106 | |
| 107 | /* |
| 108 | * Link state polling. |
| 109 | */ |
| 110 | int link_poll_needed; |
| 111 | struct work_struct link_poll_work; |
| 112 | struct timer_list link_poll_timer; |
| 113 | |
| 114 | /* |
| 115 | * Data for the individual switch chips. |
| 116 | */ |
| 117 | struct dsa_switch *ds[DSA_MAX_SWITCHES]; |
| 118 | }; |
| 119 | |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 120 | struct dsa_switch { |
| 121 | /* |
| 122 | * Parent switch tree, and switch index. |
| 123 | */ |
| 124 | struct dsa_switch_tree *dst; |
| 125 | int index; |
| 126 | |
| 127 | /* |
| 128 | * Configuration data for this switch. |
| 129 | */ |
| 130 | struct dsa_chip_data *pd; |
| 131 | |
| 132 | /* |
| 133 | * The used switch driver. |
| 134 | */ |
| 135 | struct dsa_switch_driver *drv; |
| 136 | |
| 137 | /* |
Alexander Duyck | b4d2394 | 2014-09-15 13:00:27 -0400 | [diff] [blame] | 138 | * Reference to host device to use. |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 139 | */ |
Alexander Duyck | b4d2394 | 2014-09-15 13:00:27 -0400 | [diff] [blame] | 140 | struct device *master_dev; |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 141 | |
Guenter Roeck | 51579c3 | 2014-10-29 10:44:58 -0700 | [diff] [blame^] | 142 | #ifdef CONFIG_NET_DSA_HWMON |
| 143 | /* |
| 144 | * Hardware monitoring information |
| 145 | */ |
| 146 | char hwmon_name[IFNAMSIZ + 8]; |
| 147 | struct device *hwmon_dev; |
| 148 | #endif |
| 149 | |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 150 | /* |
| 151 | * Slave mii_bus and devices for the individual ports. |
| 152 | */ |
| 153 | u32 dsa_port_mask; |
| 154 | u32 phys_port_mask; |
Florian Fainelli | 0d8bcdd | 2014-08-27 17:04:51 -0700 | [diff] [blame] | 155 | u32 phys_mii_mask; |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 156 | struct mii_bus *slave_mii_bus; |
| 157 | struct net_device *ports[DSA_MAX_PORTS]; |
| 158 | }; |
| 159 | |
| 160 | static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p) |
| 161 | { |
| 162 | return !!(ds->index == ds->dst->cpu_switch && p == ds->dst->cpu_port); |
| 163 | } |
| 164 | |
| 165 | static inline u8 dsa_upstream_port(struct dsa_switch *ds) |
| 166 | { |
| 167 | struct dsa_switch_tree *dst = ds->dst; |
| 168 | |
| 169 | /* |
| 170 | * If this is the root switch (i.e. the switch that connects |
| 171 | * to the CPU), return the cpu port number on this switch. |
| 172 | * Else return the (DSA) port number that connects to the |
| 173 | * switch that is one hop closer to the cpu. |
| 174 | */ |
| 175 | if (dst->cpu_switch == ds->index) |
| 176 | return dst->cpu_port; |
| 177 | else |
| 178 | return ds->pd->rtable[dst->cpu_switch]; |
| 179 | } |
| 180 | |
| 181 | struct dsa_switch_driver { |
| 182 | struct list_head list; |
| 183 | |
Florian Fainelli | ac7a04c | 2014-09-11 21:18:09 -0700 | [diff] [blame] | 184 | enum dsa_tag_protocol tag_protocol; |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 185 | int priv_size; |
| 186 | |
| 187 | /* |
| 188 | * Probing and setup. |
| 189 | */ |
Alexander Duyck | b4d2394 | 2014-09-15 13:00:27 -0400 | [diff] [blame] | 190 | char *(*probe)(struct device *host_dev, int sw_addr); |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 191 | int (*setup)(struct dsa_switch *ds); |
| 192 | int (*set_addr)(struct dsa_switch *ds, u8 *addr); |
Florian Fainelli | 6819563 | 2014-09-19 13:07:54 -0700 | [diff] [blame] | 193 | u32 (*get_phy_flags)(struct dsa_switch *ds, int port); |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 194 | |
| 195 | /* |
| 196 | * Access to the switch's PHY registers. |
| 197 | */ |
| 198 | int (*phy_read)(struct dsa_switch *ds, int port, int regnum); |
| 199 | int (*phy_write)(struct dsa_switch *ds, int port, |
| 200 | int regnum, u16 val); |
| 201 | |
| 202 | /* |
| 203 | * Link state polling and IRQ handling. |
| 204 | */ |
| 205 | void (*poll_link)(struct dsa_switch *ds); |
| 206 | |
| 207 | /* |
Florian Fainelli | ec9436b | 2014-08-27 17:04:53 -0700 | [diff] [blame] | 208 | * Link state adjustment (called from libphy) |
| 209 | */ |
| 210 | void (*adjust_link)(struct dsa_switch *ds, int port, |
| 211 | struct phy_device *phydev); |
Florian Fainelli | ce31b31 | 2014-08-27 17:04:54 -0700 | [diff] [blame] | 212 | void (*fixed_link_update)(struct dsa_switch *ds, int port, |
| 213 | struct fixed_phy_status *st); |
Florian Fainelli | ec9436b | 2014-08-27 17:04:53 -0700 | [diff] [blame] | 214 | |
| 215 | /* |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 216 | * ethtool hardware statistics. |
| 217 | */ |
| 218 | void (*get_strings)(struct dsa_switch *ds, int port, uint8_t *data); |
| 219 | void (*get_ethtool_stats)(struct dsa_switch *ds, |
| 220 | int port, uint64_t *data); |
| 221 | int (*get_sset_count)(struct dsa_switch *ds); |
Florian Fainelli | 2446254 | 2014-09-18 17:31:22 -0700 | [diff] [blame] | 222 | |
| 223 | /* |
Florian Fainelli | 19e57c4 | 2014-09-18 17:31:24 -0700 | [diff] [blame] | 224 | * ethtool Wake-on-LAN |
| 225 | */ |
| 226 | void (*get_wol)(struct dsa_switch *ds, int port, |
| 227 | struct ethtool_wolinfo *w); |
| 228 | int (*set_wol)(struct dsa_switch *ds, int port, |
| 229 | struct ethtool_wolinfo *w); |
| 230 | |
| 231 | /* |
Florian Fainelli | 2446254 | 2014-09-18 17:31:22 -0700 | [diff] [blame] | 232 | * Suspend and resume |
| 233 | */ |
| 234 | int (*suspend)(struct dsa_switch *ds); |
| 235 | int (*resume)(struct dsa_switch *ds); |
Florian Fainelli | b2f2af2 | 2014-09-24 17:05:18 -0700 | [diff] [blame] | 236 | |
| 237 | /* |
| 238 | * Port enable/disable |
| 239 | */ |
| 240 | int (*port_enable)(struct dsa_switch *ds, int port, |
| 241 | struct phy_device *phy); |
| 242 | void (*port_disable)(struct dsa_switch *ds, int port, |
| 243 | struct phy_device *phy); |
Florian Fainelli | 7905288 | 2014-09-24 17:05:21 -0700 | [diff] [blame] | 244 | |
| 245 | /* |
| 246 | * EEE setttings |
| 247 | */ |
| 248 | int (*set_eee)(struct dsa_switch *ds, int port, |
| 249 | struct phy_device *phydev, |
| 250 | struct ethtool_eee *e); |
| 251 | int (*get_eee)(struct dsa_switch *ds, int port, |
| 252 | struct ethtool_eee *e); |
Guenter Roeck | 51579c3 | 2014-10-29 10:44:58 -0700 | [diff] [blame^] | 253 | |
| 254 | #ifdef CONFIG_NET_DSA_HWMON |
| 255 | /* Hardware monitoring */ |
| 256 | int (*get_temp)(struct dsa_switch *ds, int *temp); |
| 257 | int (*get_temp_limit)(struct dsa_switch *ds, int *temp); |
| 258 | int (*set_temp_limit)(struct dsa_switch *ds, int temp); |
| 259 | int (*get_temp_alarm)(struct dsa_switch *ds, bool *alarm); |
| 260 | #endif |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 261 | }; |
| 262 | |
| 263 | void register_switch_driver(struct dsa_switch_driver *type); |
| 264 | void unregister_switch_driver(struct dsa_switch_driver *type); |
Alexander Duyck | b4d2394 | 2014-09-15 13:00:27 -0400 | [diff] [blame] | 265 | struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev); |
Ben Hutchings | c8f0b86 | 2011-11-27 17:06:08 +0000 | [diff] [blame] | 266 | |
Florian Fainelli | 7fa857e | 2014-04-28 11:14:27 -0700 | [diff] [blame] | 267 | static inline void *ds_to_priv(struct dsa_switch *ds) |
| 268 | { |
| 269 | return (void *)(ds + 1); |
| 270 | } |
| 271 | |
Florian Fainelli | 5aed85c | 2014-08-27 17:04:52 -0700 | [diff] [blame] | 272 | static inline bool dsa_uses_tagged_protocol(struct dsa_switch_tree *dst) |
| 273 | { |
Alexander Duyck | 5075314 | 2014-09-15 13:00:19 -0400 | [diff] [blame] | 274 | return dst->rcv != NULL; |
Florian Fainelli | 5aed85c | 2014-08-27 17:04:52 -0700 | [diff] [blame] | 275 | } |
Lennert Buytenhek | 91da11f | 2008-10-07 13:44:02 +0000 | [diff] [blame] | 276 | #endif |