1
2
3
4
5
6
7
8
9
10
11#ifndef __LINUX_NET_DSA_H
12#define __LINUX_NET_DSA_H
13
14#include <linux/if.h>
15#include <linux/if_ether.h>
16#include <linux/list.h>
17#include <linux/notifier.h>
18#include <linux/timer.h>
19#include <linux/workqueue.h>
20#include <linux/of.h>
21#include <linux/ethtool.h>
22#include <linux/net_tstamp.h>
23#include <linux/phy.h>
24#include <linux/phylink.h>
25#include <net/devlink.h>
26#include <net/switchdev.h>
27
28struct tc_action;
29struct phy_device;
30struct fixed_phy_status;
31struct phylink_link_state;
32
33enum dsa_tag_protocol {
34 DSA_TAG_PROTO_NONE = 0,
35 DSA_TAG_PROTO_BRCM,
36 DSA_TAG_PROTO_BRCM_PREPEND,
37 DSA_TAG_PROTO_DSA,
38 DSA_TAG_PROTO_EDSA,
39 DSA_TAG_PROTO_KSZ,
40 DSA_TAG_PROTO_LAN9303,
41 DSA_TAG_PROTO_MTK,
42 DSA_TAG_PROTO_QCA,
43 DSA_TAG_PROTO_TRAILER,
44 DSA_TAG_LAST,
45};
46
47#define DSA_MAX_SWITCHES 4
48#define DSA_MAX_PORTS 12
49
50#define DSA_RTABLE_NONE -1
51
52struct dsa_chip_data {
53
54
55
56 struct device *host_dev;
57 int sw_addr;
58
59
60
61
62 struct device *netdev[DSA_MAX_PORTS];
63
64
65 int eeprom_len;
66
67
68
69
70
71 struct device_node *of_node;
72
73
74
75
76
77
78
79
80 char *port_names[DSA_MAX_PORTS];
81 struct device_node *port_dn[DSA_MAX_PORTS];
82
83
84
85
86
87
88 s8 rtable[DSA_MAX_SWITCHES];
89};
90
91struct dsa_platform_data {
92
93
94
95
96 struct device *netdev;
97 struct net_device *of_netdev;
98
99
100
101
102
103 int nr_chips;
104 struct dsa_chip_data *chip;
105};
106
107struct packet_type;
108struct dsa_switch;
109
110struct dsa_device_ops {
111 struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
112 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
113 struct packet_type *pt);
114 int (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
115 int *offset);
116};
117
118struct dsa_switch_tree {
119 struct list_head list;
120
121
122 struct raw_notifier_head nh;
123
124
125 unsigned int index;
126
127
128 struct kref refcount;
129
130
131 bool setup;
132
133
134
135
136
137 struct dsa_platform_data *pd;
138
139
140
141
142 struct dsa_port *cpu_dp;
143
144
145
146
147 struct dsa_switch *ds[DSA_MAX_SWITCHES];
148};
149
150
151enum dsa_port_mall_action_type {
152 DSA_PORT_MALL_MIRROR,
153};
154
155
156struct dsa_mall_mirror_tc_entry {
157 u8 to_local_port;
158 bool ingress;
159};
160
161
162struct dsa_mall_tc_entry {
163 struct list_head list;
164 unsigned long cookie;
165 enum dsa_port_mall_action_type type;
166 union {
167 struct dsa_mall_mirror_tc_entry mirror;
168 };
169};
170
171
172struct dsa_port {
173
174
175
176 union {
177 struct net_device *master;
178 struct net_device *slave;
179 };
180
181
182 const struct dsa_device_ops *tag_ops;
183
184
185 struct dsa_switch_tree *dst;
186 struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
187 struct packet_type *pt);
188
189 enum {
190 DSA_PORT_TYPE_UNUSED = 0,
191 DSA_PORT_TYPE_CPU,
192 DSA_PORT_TYPE_DSA,
193 DSA_PORT_TYPE_USER,
194 } type;
195
196 struct dsa_switch *ds;
197 unsigned int index;
198 const char *name;
199 const struct dsa_port *cpu_dp;
200 struct device_node *dn;
201 unsigned int ageing_time;
202 u8 stp_state;
203 struct net_device *bridge_dev;
204 struct devlink_port devlink_port;
205 struct phylink *pl;
206 struct phylink_config pl_config;
207
208
209
210
211 const struct ethtool_ops *orig_ethtool_ops;
212};
213
214struct dsa_switch {
215 struct device *dev;
216
217
218
219
220 struct dsa_switch_tree *dst;
221 unsigned int index;
222
223
224 struct notifier_block nb;
225
226
227
228
229
230 void *priv;
231
232
233
234
235 struct dsa_chip_data *cd;
236
237
238
239
240 const struct dsa_switch_ops *ops;
241
242
243
244
245
246
247 s8 rtable[DSA_MAX_SWITCHES];
248
249
250
251
252 u32 phys_mii_mask;
253 struct mii_bus *slave_mii_bus;
254
255
256 unsigned int ageing_time_min;
257 unsigned int ageing_time_max;
258
259
260 struct devlink *devlink;
261
262
263 unsigned int num_tx_queues;
264
265
266 size_t num_ports;
267 struct dsa_port ports[];
268};
269
270static inline const struct dsa_port *dsa_to_port(struct dsa_switch *ds, int p)
271{
272 return &ds->ports[p];
273}
274
275static inline bool dsa_is_unused_port(struct dsa_switch *ds, int p)
276{
277 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_UNUSED;
278}
279
280static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
281{
282 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_CPU;
283}
284
285static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
286{
287 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_DSA;
288}
289
290static inline bool dsa_is_user_port(struct dsa_switch *ds, int p)
291{
292 return dsa_to_port(ds, p)->type == DSA_PORT_TYPE_USER;
293}
294
295static inline u32 dsa_user_ports(struct dsa_switch *ds)
296{
297 u32 mask = 0;
298 int p;
299
300 for (p = 0; p < ds->num_ports; p++)
301 if (dsa_is_user_port(ds, p))
302 mask |= BIT(p);
303
304 return mask;
305}
306
307
308static inline unsigned int dsa_towards_port(struct dsa_switch *ds, int device,
309 int port)
310{
311 if (device == ds->index)
312 return port;
313 else
314 return ds->rtable[device];
315}
316
317
318static inline unsigned int dsa_upstream_port(struct dsa_switch *ds, int port)
319{
320 const struct dsa_port *dp = dsa_to_port(ds, port);
321 const struct dsa_port *cpu_dp = dp->cpu_dp;
322
323 if (!cpu_dp)
324 return port;
325
326 return dsa_towards_port(ds, cpu_dp->ds->index, cpu_dp->index);
327}
328
329typedef int dsa_fdb_dump_cb_t(const unsigned char *addr, u16 vid,
330 bool is_static, void *data);
331struct dsa_switch_ops {
332#if IS_ENABLED(CONFIG_NET_DSA_LEGACY)
333
334
335
336 const char *(*probe)(struct device *dsa_dev,
337 struct device *host_dev, int sw_addr,
338 void **priv);
339#endif
340
341 enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *ds,
342 int port);
343
344 int (*setup)(struct dsa_switch *ds);
345 u32 (*get_phy_flags)(struct dsa_switch *ds, int port);
346
347
348
349
350 int (*phy_read)(struct dsa_switch *ds, int port, int regnum);
351 int (*phy_write)(struct dsa_switch *ds, int port,
352 int regnum, u16 val);
353
354
355
356
357 void (*adjust_link)(struct dsa_switch *ds, int port,
358 struct phy_device *phydev);
359 void (*fixed_link_update)(struct dsa_switch *ds, int port,
360 struct fixed_phy_status *st);
361
362
363
364
365 void (*phylink_validate)(struct dsa_switch *ds, int port,
366 unsigned long *supported,
367 struct phylink_link_state *state);
368 int (*phylink_mac_link_state)(struct dsa_switch *ds, int port,
369 struct phylink_link_state *state);
370 void (*phylink_mac_config)(struct dsa_switch *ds, int port,
371 unsigned int mode,
372 const struct phylink_link_state *state);
373 void (*phylink_mac_an_restart)(struct dsa_switch *ds, int port);
374 void (*phylink_mac_link_down)(struct dsa_switch *ds, int port,
375 unsigned int mode,
376 phy_interface_t interface);
377 void (*phylink_mac_link_up)(struct dsa_switch *ds, int port,
378 unsigned int mode,
379 phy_interface_t interface,
380 struct phy_device *phydev);
381 void (*phylink_fixed_state)(struct dsa_switch *ds, int port,
382 struct phylink_link_state *state);
383
384
385
386 void (*get_strings)(struct dsa_switch *ds, int port,
387 u32 stringset, uint8_t *data);
388 void (*get_ethtool_stats)(struct dsa_switch *ds,
389 int port, uint64_t *data);
390 int (*get_sset_count)(struct dsa_switch *ds, int port, int sset);
391 void (*get_ethtool_phy_stats)(struct dsa_switch *ds,
392 int port, uint64_t *data);
393
394
395
396
397 void (*get_wol)(struct dsa_switch *ds, int port,
398 struct ethtool_wolinfo *w);
399 int (*set_wol)(struct dsa_switch *ds, int port,
400 struct ethtool_wolinfo *w);
401
402
403
404
405 int (*get_ts_info)(struct dsa_switch *ds, int port,
406 struct ethtool_ts_info *ts);
407
408
409
410
411 int (*suspend)(struct dsa_switch *ds);
412 int (*resume)(struct dsa_switch *ds);
413
414
415
416
417 int (*port_enable)(struct dsa_switch *ds, int port,
418 struct phy_device *phy);
419 void (*port_disable)(struct dsa_switch *ds, int port,
420 struct phy_device *phy);
421
422
423
424
425 int (*set_mac_eee)(struct dsa_switch *ds, int port,
426 struct ethtool_eee *e);
427 int (*get_mac_eee)(struct dsa_switch *ds, int port,
428 struct ethtool_eee *e);
429
430
431 int (*get_eeprom_len)(struct dsa_switch *ds);
432 int (*get_eeprom)(struct dsa_switch *ds,
433 struct ethtool_eeprom *eeprom, u8 *data);
434 int (*set_eeprom)(struct dsa_switch *ds,
435 struct ethtool_eeprom *eeprom, u8 *data);
436
437
438
439
440 int (*get_regs_len)(struct dsa_switch *ds, int port);
441 void (*get_regs)(struct dsa_switch *ds, int port,
442 struct ethtool_regs *regs, void *p);
443
444
445
446
447 int (*set_ageing_time)(struct dsa_switch *ds, unsigned int msecs);
448 int (*port_bridge_join)(struct dsa_switch *ds, int port,
449 struct net_device *bridge);
450 void (*port_bridge_leave)(struct dsa_switch *ds, int port,
451 struct net_device *bridge);
452 void (*port_stp_state_set)(struct dsa_switch *ds, int port,
453 u8 state);
454 void (*port_fast_age)(struct dsa_switch *ds, int port);
455
456
457
458
459 int (*port_vlan_filtering)(struct dsa_switch *ds, int port,
460 bool vlan_filtering);
461 int (*port_vlan_prepare)(struct dsa_switch *ds, int port,
462 const struct switchdev_obj_port_vlan *vlan);
463 void (*port_vlan_add)(struct dsa_switch *ds, int port,
464 const struct switchdev_obj_port_vlan *vlan);
465 int (*port_vlan_del)(struct dsa_switch *ds, int port,
466 const struct switchdev_obj_port_vlan *vlan);
467
468
469
470 int (*port_fdb_add)(struct dsa_switch *ds, int port,
471 const unsigned char *addr, u16 vid);
472 int (*port_fdb_del)(struct dsa_switch *ds, int port,
473 const unsigned char *addr, u16 vid);
474 int (*port_fdb_dump)(struct dsa_switch *ds, int port,
475 dsa_fdb_dump_cb_t *cb, void *data);
476
477
478
479
480 int (*port_mdb_prepare)(struct dsa_switch *ds, int port,
481 const struct switchdev_obj_port_mdb *mdb);
482 void (*port_mdb_add)(struct dsa_switch *ds, int port,
483 const struct switchdev_obj_port_mdb *mdb);
484 int (*port_mdb_del)(struct dsa_switch *ds, int port,
485 const struct switchdev_obj_port_mdb *mdb);
486
487
488
489 int (*get_rxnfc)(struct dsa_switch *ds, int port,
490 struct ethtool_rxnfc *nfc, u32 *rule_locs);
491 int (*set_rxnfc)(struct dsa_switch *ds, int port,
492 struct ethtool_rxnfc *nfc);
493
494
495
496
497 int (*port_mirror_add)(struct dsa_switch *ds, int port,
498 struct dsa_mall_mirror_tc_entry *mirror,
499 bool ingress);
500 void (*port_mirror_del)(struct dsa_switch *ds, int port,
501 struct dsa_mall_mirror_tc_entry *mirror);
502
503
504
505
506 int (*crosschip_bridge_join)(struct dsa_switch *ds, int sw_index,
507 int port, struct net_device *br);
508 void (*crosschip_bridge_leave)(struct dsa_switch *ds, int sw_index,
509 int port, struct net_device *br);
510
511
512
513
514 int (*port_hwtstamp_get)(struct dsa_switch *ds, int port,
515 struct ifreq *ifr);
516 int (*port_hwtstamp_set)(struct dsa_switch *ds, int port,
517 struct ifreq *ifr);
518 bool (*port_txtstamp)(struct dsa_switch *ds, int port,
519 struct sk_buff *clone, unsigned int type);
520 bool (*port_rxtstamp)(struct dsa_switch *ds, int port,
521 struct sk_buff *skb, unsigned int type);
522};
523
524struct dsa_switch_driver {
525 struct list_head list;
526 const struct dsa_switch_ops *ops;
527};
528
529#if IS_ENABLED(CONFIG_NET_DSA_LEGACY)
530
531void register_switch_driver(struct dsa_switch_driver *type);
532void unregister_switch_driver(struct dsa_switch_driver *type);
533struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev);
534
535#else
536static inline void register_switch_driver(struct dsa_switch_driver *type) { }
537static inline void unregister_switch_driver(struct dsa_switch_driver *type) { }
538static inline struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev)
539{
540 return NULL;
541}
542#endif
543struct net_device *dsa_dev_to_net_device(struct device *dev);
544
545
546static inline bool netdev_uses_dsa(const struct net_device *dev)
547{
548#if IS_ENABLED(CONFIG_NET_DSA)
549 return dev->dsa_ptr && dev->dsa_ptr->rcv;
550#endif
551 return false;
552}
553
554struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n);
555void dsa_unregister_switch(struct dsa_switch *ds);
556int dsa_register_switch(struct dsa_switch *ds);
557#ifdef CONFIG_PM_SLEEP
558int dsa_switch_suspend(struct dsa_switch *ds);
559int dsa_switch_resume(struct dsa_switch *ds);
560#else
561static inline int dsa_switch_suspend(struct dsa_switch *ds)
562{
563 return 0;
564}
565static inline int dsa_switch_resume(struct dsa_switch *ds)
566{
567 return 0;
568}
569#endif
570
571enum dsa_notifier_type {
572 DSA_PORT_REGISTER,
573 DSA_PORT_UNREGISTER,
574};
575
576struct dsa_notifier_info {
577 struct net_device *dev;
578};
579
580struct dsa_notifier_register_info {
581 struct dsa_notifier_info info;
582 struct net_device *master;
583 unsigned int port_number;
584 unsigned int switch_number;
585};
586
587static inline struct net_device *
588dsa_notifier_info_to_dev(const struct dsa_notifier_info *info)
589{
590 return info->dev;
591}
592
593#if IS_ENABLED(CONFIG_NET_DSA)
594int register_dsa_notifier(struct notifier_block *nb);
595int unregister_dsa_notifier(struct notifier_block *nb);
596int call_dsa_notifiers(unsigned long val, struct net_device *dev,
597 struct dsa_notifier_info *info);
598#else
599static inline int register_dsa_notifier(struct notifier_block *nb)
600{
601 return 0;
602}
603
604static inline int unregister_dsa_notifier(struct notifier_block *nb)
605{
606 return 0;
607}
608
609static inline int call_dsa_notifiers(unsigned long val, struct net_device *dev,
610 struct dsa_notifier_info *info)
611{
612 return NOTIFY_DONE;
613}
614#endif
615
616
617#define BRCM_TAG_SET_PORT_QUEUE(p, q) ((p) << 8 | q)
618#define BRCM_TAG_GET_PORT(v) ((v) >> 8)
619#define BRCM_TAG_GET_QUEUE(v) ((v) & 0xff)
620
621
622int dsa_port_get_phy_strings(struct dsa_port *dp, uint8_t *data);
623int dsa_port_get_ethtool_phy_stats(struct dsa_port *dp, uint64_t *data);
624int dsa_port_get_phy_sset_count(struct dsa_port *dp);
625void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up);
626
627#endif
628