switchdev.h 4.6 KB
Newer Older
1 2 3
/*
 * include/net/switchdev.h - Switch device API
 * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
4
 * Copyright (c) 2014-2015 Scott Feldman <sfeldma@gmail.com>
5 6 7 8 9 10 11 12 13 14
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */
#ifndef _LINUX_SWITCHDEV_H_
#define _LINUX_SWITCHDEV_H_

#include <linux/netdevice.h>
15 16
#include <linux/notifier.h>

S
Scott Feldman 已提交
17 18 19 20 21
struct fib_info;

/**
 * struct switchdev_ops - switchdev operations
 *
J
Jiri Pirko 已提交
22
 * @switchdev_parent_id_get: Called to get an ID of the switch chip this port
23 24
 *   is part of.  If driver implements this, it indicates that it
 *   represents a port of a switch chip.
S
Scott Feldman 已提交
25
 *
J
Jiri Pirko 已提交
26
 * @switchdev_port_stp_update: Called to notify switch device port of bridge
27
 *   port STP state change.
S
Scott Feldman 已提交
28
 *
J
Jiri Pirko 已提交
29
 * @switchdev_fib_ipv4_add: Called to add/modify IPv4 route to switch device.
S
Scott Feldman 已提交
30
 *
J
Jiri Pirko 已提交
31
 * @switchdev_fib_ipv4_del: Called to delete IPv4 route from switch device.
S
Scott Feldman 已提交
32
 */
J
Jiri Pirko 已提交
33 34 35 36 37 38 39 40 41 42 43
struct switchdev_ops {
	int	(*switchdev_parent_id_get)(struct net_device *dev,
					   struct netdev_phys_item_id *psid);
	int	(*switchdev_port_stp_update)(struct net_device *dev, u8 state);
	int	(*switchdev_fib_ipv4_add)(struct net_device *dev, __be32 dst,
					  int dst_len, struct fib_info *fi,
					  u8 tos, u8 type, u32 nlflags,
					  u32 tb_id);
	int	(*switchdev_fib_ipv4_del)(struct net_device *dev, __be32 dst,
					  int dst_len, struct fib_info *fi,
					  u8 tos, u8 type, u32 tb_id);
S
Scott Feldman 已提交
44 45
};

46 47 48
enum switchdev_notifier_type {
	SWITCHDEV_FDB_ADD = 1,
	SWITCHDEV_FDB_DEL,
49 50
};

51
struct switchdev_notifier_info {
52 53 54
	struct net_device *dev;
};

55 56
struct switchdev_notifier_fdb_info {
	struct switchdev_notifier_info info; /* must be first */
57 58 59 60
	const unsigned char *addr;
	u16 vid;
};

61
static inline struct net_device *
62
switchdev_notifier_info_to_dev(const struct switchdev_notifier_info *info)
63 64 65
{
	return info->dev;
}
66 67 68

#ifdef CONFIG_NET_SWITCHDEV

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
int switchdev_parent_id_get(struct net_device *dev,
			    struct netdev_phys_item_id *psid);
int switchdev_port_stp_update(struct net_device *dev, u8 state);
int register_switchdev_notifier(struct notifier_block *nb);
int unregister_switchdev_notifier(struct notifier_block *nb);
int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
			     struct switchdev_notifier_info *info);
int switchdev_port_bridge_setlink(struct net_device *dev,
				  struct nlmsghdr *nlh, u16 flags);
int switchdev_port_bridge_dellink(struct net_device *dev,
				  struct nlmsghdr *nlh, u16 flags);
int ndo_dflt_switchdev_port_bridge_dellink(struct net_device *dev,
					   struct nlmsghdr *nlh, u16 flags);
int ndo_dflt_switchdev_port_bridge_setlink(struct net_device *dev,
					   struct nlmsghdr *nlh, u16 flags);
int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
			   u8 tos, u8 type, u32 nlflags, u32 tb_id);
int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
			   u8 tos, u8 type, u32 tb_id);
void switchdev_fib_ipv4_abort(struct fib_info *fi);
89

90 91
#else

92 93
static inline int switchdev_parent_id_get(struct net_device *dev,
					  struct netdev_phys_item_id *psid)
94 95 96 97
{
	return -EOPNOTSUPP;
}

98 99
static inline int switchdev_port_stp_update(struct net_device *dev,
					    u8 state)
100 101 102 103
{
	return -EOPNOTSUPP;
}

104
static inline int register_switchdev_notifier(struct notifier_block *nb)
105 106 107 108
{
	return 0;
}

109
static inline int unregister_switchdev_notifier(struct notifier_block *nb)
110 111 112 113
{
	return 0;
}

114 115 116
static inline int call_switchdev_notifiers(unsigned long val,
					   struct net_device *dev,
					   struct switchdev_notifier_info *info)
117 118 119 120
{
	return NOTIFY_DONE;
}

121 122 123
static inline int switchdev_port_bridge_setlink(struct net_device *dev,
						struct nlmsghdr *nlh,
						u16 flags)
124 125 126 127
{
	return -EOPNOTSUPP;
}

128 129 130
static inline int switchdev_port_bridge_dellink(struct net_device *dev,
						struct nlmsghdr *nlh,
						u16 flags)
131 132 133 134
{
	return -EOPNOTSUPP;
}

135 136 137
static inline int ndo_dflt_switchdev_port_bridge_dellink(struct net_device *dev,
							 struct nlmsghdr *nlh,
							 u16 flags)
138 139 140 141
{
	return 0;
}

142 143 144
static inline int ndo_dflt_switchdev_port_bridge_setlink(struct net_device *dev,
							 struct nlmsghdr *nlh,
							 u16 flags)
145 146 147 148
{
	return 0;
}

149 150 151 152
static inline int switchdev_fib_ipv4_add(u32 dst, int dst_len,
					 struct fib_info *fi,
					 u8 tos, u8 type,
					 u32 nlflags, u32 tb_id)
153 154 155 156
{
	return 0;
}

157 158 159
static inline int switchdev_fib_ipv4_del(u32 dst, int dst_len,
					 struct fib_info *fi,
					 u8 tos, u8 type, u32 tb_id)
160 161 162 163
{
	return 0;
}

164
static inline void switchdev_fib_ipv4_abort(struct fib_info *fi)
165 166 167
{
}

168 169 170
#endif

#endif /* _LINUX_SWITCHDEV_H_ */