bcm63xx_uart: Use the device name when registering an interrupt
[linux-2.6-block.git] / include / net / switchdev.h
CommitLineData
007f790c
JP
1/*
2 * include/net/switchdev.h - Switch device API
7ea6eb3f 3 * Copyright (c) 2014-2015 Jiri Pirko <jiri@resnulli.us>
f8f21471 4 * Copyright (c) 2014-2015 Scott Feldman <sfeldma@gmail.com>
007f790c
JP
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11#ifndef _LINUX_SWITCHDEV_H_
12#define _LINUX_SWITCHDEV_H_
13
14#include <linux/netdevice.h>
03bf0c28 15#include <linux/notifier.h>
7ea6eb3f 16#include <linux/list.h>
850d0cbc 17#include <net/ip_fib.h>
03bf0c28 18
3094333d 19#define SWITCHDEV_F_NO_RECURSE BIT(0)
464314ea 20#define SWITCHDEV_F_SKIP_EOPNOTSUPP BIT(1)
0bc05d58 21#define SWITCHDEV_F_DEFER BIT(2)
3094333d 22
7ea6eb3f
JP
23struct switchdev_trans_item {
24 struct list_head list;
25 void *data;
26 void (*destructor)(const void *data);
27};
28
29struct switchdev_trans {
30 struct list_head item_list;
f623ab7f 31 bool ph_prepare;
7ea6eb3f
JP
32};
33
8bdb4272
JP
34static inline bool switchdev_trans_ph_prepare(struct switchdev_trans *trans)
35{
f623ab7f 36 return trans && trans->ph_prepare;
8bdb4272
JP
37}
38
39static inline bool switchdev_trans_ph_commit(struct switchdev_trans *trans)
40{
f623ab7f 41 return trans && !trans->ph_prepare;
8bdb4272
JP
42}
43
3094333d 44enum switchdev_attr_id {
1f868398
JP
45 SWITCHDEV_ATTR_ID_UNDEFINED,
46 SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
47 SWITCHDEV_ATTR_ID_PORT_STP_STATE,
48 SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS,
f55ac58a 49 SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME,
3094333d
SF
50};
51
52struct switchdev_attr {
53 enum switchdev_attr_id id;
3094333d 54 u32 flags;
f8e20a9f
SF
55 union {
56 struct netdev_phys_item_id ppid; /* PORT_PARENT_ID */
35636062 57 u8 stp_state; /* PORT_STP_STATE */
6004c867 58 unsigned long brport_flags; /* PORT_BRIDGE_FLAGS */
f55ac58a 59 u32 ageing_time; /* BRIDGE_AGEING_TIME */
42275bd8 60 } u;
3094333d
SF
61};
62
491d0f15 63enum switchdev_obj_id {
57d80838
JP
64 SWITCHDEV_OBJ_ID_UNDEFINED,
65 SWITCHDEV_OBJ_ID_PORT_VLAN,
66 SWITCHDEV_OBJ_ID_IPV4_FIB,
67 SWITCHDEV_OBJ_ID_PORT_FDB,
491d0f15
SF
68};
69
648b4a99 70struct switchdev_obj {
9e8f4a54 71 enum switchdev_obj_id id;
4d429c5d 72 u32 flags;
648b4a99
JP
73};
74
57d80838 75/* SWITCHDEV_OBJ_ID_PORT_VLAN */
8f24f309 76struct switchdev_obj_port_vlan {
648b4a99 77 struct switchdev_obj obj;
44bbcf5c
VD
78 u16 flags;
79 u16 vid_begin;
80 u16 vid_end;
81};
82
648b4a99
JP
83#define SWITCHDEV_OBJ_PORT_VLAN(obj) \
84 container_of(obj, struct switchdev_obj_port_vlan, obj)
85
57d80838 86/* SWITCHDEV_OBJ_ID_IPV4_FIB */
44bbcf5c 87struct switchdev_obj_ipv4_fib {
648b4a99 88 struct switchdev_obj obj;
44bbcf5c
VD
89 u32 dst;
90 int dst_len;
850d0cbc 91 struct fib_info fi;
44bbcf5c
VD
92 u8 tos;
93 u8 type;
94 u32 nlflags;
95 u32 tb_id;
96};
97
648b4a99
JP
98#define SWITCHDEV_OBJ_IPV4_FIB(obj) \
99 container_of(obj, struct switchdev_obj_ipv4_fib, obj)
100
57d80838 101/* SWITCHDEV_OBJ_ID_PORT_FDB */
52ba57cf 102struct switchdev_obj_port_fdb {
648b4a99 103 struct switchdev_obj obj;
850d0cbc 104 unsigned char addr[ETH_ALEN];
44bbcf5c
VD
105 u16 vid;
106 u16 ndm_state;
491d0f15
SF
107};
108
648b4a99
JP
109#define SWITCHDEV_OBJ_PORT_FDB(obj) \
110 container_of(obj, struct switchdev_obj_port_fdb, obj)
111
7ea6eb3f
JP
112void switchdev_trans_item_enqueue(struct switchdev_trans *trans,
113 void *data, void (*destructor)(void const *),
114 struct switchdev_trans_item *tritem);
115void *switchdev_trans_item_dequeue(struct switchdev_trans *trans);
116
648b4a99
JP
117typedef int switchdev_obj_dump_cb_t(struct switchdev_obj *obj);
118
4170604f
SF
119/**
120 * struct switchdev_ops - switchdev operations
121 *
3094333d
SF
122 * @switchdev_port_attr_get: Get a port attribute (see switchdev_attr).
123 *
124 * @switchdev_port_attr_set: Set a port attribute (see switchdev_attr).
125 *
44bbcf5c 126 * @switchdev_port_obj_add: Add an object to port (see switchdev_obj_*).
491d0f15 127 *
44bbcf5c 128 * @switchdev_port_obj_del: Delete an object from port (see switchdev_obj_*).
45d4122c 129 *
44bbcf5c 130 * @switchdev_port_obj_dump: Dump port objects (see switchdev_obj_*).
4170604f 131 */
9d47c0a2 132struct switchdev_ops {
3094333d
SF
133 int (*switchdev_port_attr_get)(struct net_device *dev,
134 struct switchdev_attr *attr);
135 int (*switchdev_port_attr_set)(struct net_device *dev,
f7fadf30 136 const struct switchdev_attr *attr,
7ea6eb3f 137 struct switchdev_trans *trans);
491d0f15 138 int (*switchdev_port_obj_add)(struct net_device *dev,
648b4a99 139 const struct switchdev_obj *obj,
7ea6eb3f 140 struct switchdev_trans *trans);
491d0f15 141 int (*switchdev_port_obj_del)(struct net_device *dev,
648b4a99 142 const struct switchdev_obj *obj);
45d4122c 143 int (*switchdev_port_obj_dump)(struct net_device *dev,
648b4a99
JP
144 struct switchdev_obj *obj,
145 switchdev_obj_dump_cb_t *cb);
4170604f
SF
146};
147
ebb9a03a
JP
148enum switchdev_notifier_type {
149 SWITCHDEV_FDB_ADD = 1,
150 SWITCHDEV_FDB_DEL,
3aeb6617
JP
151};
152
ebb9a03a 153struct switchdev_notifier_info {
03bf0c28
JP
154 struct net_device *dev;
155};
156
ebb9a03a
JP
157struct switchdev_notifier_fdb_info {
158 struct switchdev_notifier_info info; /* must be first */
3aeb6617
JP
159 const unsigned char *addr;
160 u16 vid;
161};
162
03bf0c28 163static inline struct net_device *
ebb9a03a 164switchdev_notifier_info_to_dev(const struct switchdev_notifier_info *info)
03bf0c28
JP
165{
166 return info->dev;
167}
007f790c
JP
168
169#ifdef CONFIG_NET_SWITCHDEV
170
793f4014 171void switchdev_deferred_process(void);
3094333d
SF
172int switchdev_port_attr_get(struct net_device *dev,
173 struct switchdev_attr *attr);
174int switchdev_port_attr_set(struct net_device *dev,
f7fadf30 175 const struct switchdev_attr *attr);
9e8f4a54 176int switchdev_port_obj_add(struct net_device *dev,
648b4a99 177 const struct switchdev_obj *obj);
9e8f4a54 178int switchdev_port_obj_del(struct net_device *dev,
648b4a99 179 const struct switchdev_obj *obj);
9e8f4a54 180int switchdev_port_obj_dump(struct net_device *dev, struct switchdev_obj *obj,
648b4a99 181 switchdev_obj_dump_cb_t *cb);
ebb9a03a
JP
182int register_switchdev_notifier(struct notifier_block *nb);
183int unregister_switchdev_notifier(struct notifier_block *nb);
184int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
185 struct switchdev_notifier_info *info);
8793d0a6
SF
186int switchdev_port_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
187 struct net_device *dev, u32 filter_mask,
188 int nlflags);
ebb9a03a
JP
189int switchdev_port_bridge_setlink(struct net_device *dev,
190 struct nlmsghdr *nlh, u16 flags);
191int switchdev_port_bridge_dellink(struct net_device *dev,
192 struct nlmsghdr *nlh, u16 flags);
ebb9a03a
JP
193int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
194 u8 tos, u8 type, u32 nlflags, u32 tb_id);
195int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
196 u8 tos, u8 type, u32 tb_id);
197void switchdev_fib_ipv4_abort(struct fib_info *fi);
45d4122c
SS
198int switchdev_port_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
199 struct net_device *dev, const unsigned char *addr,
200 u16 vid, u16 nlm_flags);
201int switchdev_port_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
202 struct net_device *dev, const unsigned char *addr,
203 u16 vid);
204int switchdev_port_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
205 struct net_device *dev,
206 struct net_device *filter_dev, int idx);
1a3b2ec9
SF
207void switchdev_port_fwd_mark_set(struct net_device *dev,
208 struct net_device *group_dev,
209 bool joining);
5e8d9049 210
007f790c
JP
211#else
212
793f4014
JP
213static inline void switchdev_deferred_process(void)
214{
215}
216
3094333d
SF
217static inline int switchdev_port_attr_get(struct net_device *dev,
218 struct switchdev_attr *attr)
219{
220 return -EOPNOTSUPP;
221}
222
223static inline int switchdev_port_attr_set(struct net_device *dev,
f7fadf30 224 const struct switchdev_attr *attr)
3094333d
SF
225{
226 return -EOPNOTSUPP;
227}
228
491d0f15 229static inline int switchdev_port_obj_add(struct net_device *dev,
648b4a99 230 const struct switchdev_obj *obj)
491d0f15
SF
231{
232 return -EOPNOTSUPP;
233}
234
235static inline int switchdev_port_obj_del(struct net_device *dev,
648b4a99 236 const struct switchdev_obj *obj)
491d0f15
SF
237{
238 return -EOPNOTSUPP;
239}
240
45d4122c 241static inline int switchdev_port_obj_dump(struct net_device *dev,
648b4a99
JP
242 const struct switchdev_obj *obj,
243 switchdev_obj_dump_cb_t *cb)
45d4122c
SS
244{
245 return -EOPNOTSUPP;
246}
247
ebb9a03a 248static inline int register_switchdev_notifier(struct notifier_block *nb)
03bf0c28
JP
249{
250 return 0;
251}
252
ebb9a03a 253static inline int unregister_switchdev_notifier(struct notifier_block *nb)
03bf0c28
JP
254{
255 return 0;
256}
257
ebb9a03a
JP
258static inline int call_switchdev_notifiers(unsigned long val,
259 struct net_device *dev,
260 struct switchdev_notifier_info *info)
03bf0c28
JP
261{
262 return NOTIFY_DONE;
263}
264
8793d0a6
SF
265static inline int switchdev_port_bridge_getlink(struct sk_buff *skb, u32 pid,
266 u32 seq, struct net_device *dev,
267 u32 filter_mask, int nlflags)
268{
269 return -EOPNOTSUPP;
270}
271
ebb9a03a
JP
272static inline int switchdev_port_bridge_setlink(struct net_device *dev,
273 struct nlmsghdr *nlh,
274 u16 flags)
8a44dbb2
RP
275{
276 return -EOPNOTSUPP;
277}
278
ebb9a03a
JP
279static inline int switchdev_port_bridge_dellink(struct net_device *dev,
280 struct nlmsghdr *nlh,
281 u16 flags)
8a44dbb2
RP
282{
283 return -EOPNOTSUPP;
284}
285
ebb9a03a
JP
286static inline int switchdev_fib_ipv4_add(u32 dst, int dst_len,
287 struct fib_info *fi,
288 u8 tos, u8 type,
289 u32 nlflags, u32 tb_id)
5e8d9049
SF
290{
291 return 0;
292}
293
ebb9a03a
JP
294static inline int switchdev_fib_ipv4_del(u32 dst, int dst_len,
295 struct fib_info *fi,
296 u8 tos, u8 type, u32 tb_id)
5e8d9049
SF
297{
298 return 0;
299}
300
ebb9a03a 301static inline void switchdev_fib_ipv4_abort(struct fib_info *fi)
8e05fd71
SF
302{
303}
304
45d4122c
SS
305static inline int switchdev_port_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
306 struct net_device *dev,
307 const unsigned char *addr,
308 u16 vid, u16 nlm_flags)
309{
310 return -EOPNOTSUPP;
311}
312
313static inline int switchdev_port_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
314 struct net_device *dev,
315 const unsigned char *addr, u16 vid)
316{
317 return -EOPNOTSUPP;
318}
319
320static inline int switchdev_port_fdb_dump(struct sk_buff *skb,
321 struct netlink_callback *cb,
322 struct net_device *dev,
323 struct net_device *filter_dev,
324 int idx)
325{
326 return -EOPNOTSUPP;
327}
328
1a3b2ec9
SF
329static inline void switchdev_port_fwd_mark_set(struct net_device *dev,
330 struct net_device *group_dev,
331 bool joining)
332{
333}
334
007f790c
JP
335#endif
336
337#endif /* _LINUX_SWITCHDEV_H_ */