kernel/swconfig: remove obsolete portmapping feature from swconfig
[openwrt/staging/stintel.git] / target / linux / generic / files / include / uapi / linux / switch.h
1 /*
2 * switch.h: Switch configuration API
3 *
4 * Copyright (C) 2008 Felix Fietkau <nbd@nbd.name>
5 *
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.
10 *
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.
15 */
16
17 #ifndef _UAPI_LINUX_SWITCH_H
18 #define _UAPI_LINUX_SWITCH_H
19
20 #include <linux/types.h>
21 #include <linux/netdevice.h>
22 #include <linux/netlink.h>
23 #include <linux/genetlink.h>
24 #ifndef __KERNEL__
25 #include <netlink/netlink.h>
26 #include <netlink/genl/genl.h>
27 #include <netlink/genl/ctrl.h>
28 #endif
29
30 /* main attributes */
31 enum {
32 SWITCH_ATTR_UNSPEC,
33 /* global */
34 SWITCH_ATTR_TYPE,
35 /* device */
36 SWITCH_ATTR_ID,
37 SWITCH_ATTR_DEV_NAME,
38 SWITCH_ATTR_ALIAS,
39 SWITCH_ATTR_NAME,
40 SWITCH_ATTR_VLANS,
41 SWITCH_ATTR_PORTS,
42 SWITCH_ATTR_CPU_PORT,
43 /* attributes */
44 SWITCH_ATTR_OP_ID,
45 SWITCH_ATTR_OP_TYPE,
46 SWITCH_ATTR_OP_NAME,
47 SWITCH_ATTR_OP_PORT,
48 SWITCH_ATTR_OP_VLAN,
49 SWITCH_ATTR_OP_VALUE_INT,
50 SWITCH_ATTR_OP_VALUE_STR,
51 SWITCH_ATTR_OP_VALUE_PORTS,
52 SWITCH_ATTR_OP_VALUE_LINK,
53 SWITCH_ATTR_OP_DESCRIPTION,
54 /* port lists */
55 SWITCH_ATTR_PORT,
56 SWITCH_ATTR_MAX
57 };
58
59 /* commands */
60 enum {
61 SWITCH_CMD_UNSPEC,
62 SWITCH_CMD_GET_SWITCH,
63 SWITCH_CMD_NEW_ATTR,
64 SWITCH_CMD_LIST_GLOBAL,
65 SWITCH_CMD_GET_GLOBAL,
66 SWITCH_CMD_SET_GLOBAL,
67 SWITCH_CMD_LIST_PORT,
68 SWITCH_CMD_GET_PORT,
69 SWITCH_CMD_SET_PORT,
70 SWITCH_CMD_LIST_VLAN,
71 SWITCH_CMD_GET_VLAN,
72 SWITCH_CMD_SET_VLAN
73 };
74
75 /* data types */
76 enum switch_val_type {
77 SWITCH_TYPE_UNSPEC,
78 SWITCH_TYPE_INT,
79 SWITCH_TYPE_STRING,
80 SWITCH_TYPE_PORTS,
81 SWITCH_TYPE_LINK,
82 SWITCH_TYPE_NOVAL,
83 };
84
85 /* port nested attributes */
86 enum {
87 SWITCH_PORT_UNSPEC,
88 SWITCH_PORT_ID,
89 SWITCH_PORT_FLAG_TAGGED,
90 SWITCH_PORT_ATTR_MAX
91 };
92
93 /* link nested attributes */
94 enum {
95 SWITCH_LINK_UNSPEC,
96 SWITCH_LINK_FLAG_LINK,
97 SWITCH_LINK_FLAG_DUPLEX,
98 SWITCH_LINK_FLAG_ANEG,
99 SWITCH_LINK_FLAG_TX_FLOW,
100 SWITCH_LINK_FLAG_RX_FLOW,
101 SWITCH_LINK_SPEED,
102 SWITCH_LINK_FLAG_EEE_100BASET,
103 SWITCH_LINK_FLAG_EEE_1000BASET,
104 SWITCH_LINK_ATTR_MAX,
105 };
106
107 #define SWITCH_ATTR_DEFAULTS_OFFSET 0x1000
108
109
110 #endif /* _UAPI_LINUX_SWITCH_H */