2 * switch.h: Switch configuration API
4 * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #ifndef __LINUX_SWITCH_H
18 #define __LINUX_SWITCH_H
20 #include <linux/types.h>
21 #include <linux/netdevice.h>
22 #include <linux/netlink.h>
23 #include <linux/genetlink.h>
25 #include <netlink/netlink.h>
26 #include <netlink/genl/genl.h>
27 #include <netlink/genl/ctrl.h>
29 #include <net/genetlink.h>
50 SWITCH_ATTR_OP_VALUE_INT
,
51 SWITCH_ATTR_OP_VALUE_STR
,
52 SWITCH_ATTR_OP_VALUE_PORTS
,
53 SWITCH_ATTR_OP_DESCRIPTION
,
62 SWITCH_CMD_GET_SWITCH
,
64 SWITCH_CMD_LIST_GLOBAL
,
65 SWITCH_CMD_GET_GLOBAL
,
66 SWITCH_CMD_SET_GLOBAL
,
76 enum switch_val_type
{
84 /* port nested attributes */
88 SWITCH_PORT_FLAG_TAGGED
,
92 #define SWITCH_ATTR_DEFAULTS_OFFSET 0x1000
100 struct switch_attrlist
;
102 int register_switch(struct switch_dev
*dev
, struct net_device
*netdev
);
103 void unregister_switch(struct switch_dev
*dev
);
105 struct switch_attrlist
{
106 /* filled in by the driver */
108 const struct switch_attr
*attr
;
117 /* NB: either devname or netdev must be set */
119 struct net_device
*netdev
;
124 struct switch_attrlist attr_global
, attr_port
, attr_vlan
;
127 struct switch_port
*portbuf
;
128 struct list_head dev_list
;
129 unsigned long def_global
, def_port
, def_vlan
;
131 int (*get_vlan_ports
)(struct switch_dev
*dev
, struct switch_val
*val
);
132 int (*set_vlan_ports
)(struct switch_dev
*dev
, struct switch_val
*val
);
133 int (*get_port_pvid
)(struct switch_dev
*dev
, int port
, int *val
);
134 int (*set_port_pvid
)(struct switch_dev
*dev
, int port
, int val
);
135 int (*apply_config
)(struct switch_dev
*dev
);
136 int (*reset_switch
)(struct switch_dev
*dev
);
145 const struct switch_attr
*attr
;
151 struct switch_port
*ports
;
159 const char *description
;
161 int (*set
)(struct switch_dev
*dev
, const struct switch_attr
*attr
, struct switch_val
*val
);
162 int (*get
)(struct switch_dev
*dev
, const struct switch_attr
*attr
, struct switch_val
*val
);
164 /* for driver internal use */