[swconfig] allow loading port maps from OF
[openwrt.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@openwrt.org>
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_PORTMAP,
43         SWITCH_ATTR_CPU_PORT,
44         /* attributes */
45         SWITCH_ATTR_OP_ID,
46         SWITCH_ATTR_OP_TYPE,
47         SWITCH_ATTR_OP_NAME,
48         SWITCH_ATTR_OP_PORT,
49         SWITCH_ATTR_OP_VLAN,
50         SWITCH_ATTR_OP_VALUE_INT,
51         SWITCH_ATTR_OP_VALUE_STR,
52         SWITCH_ATTR_OP_VALUE_PORTS,
53         SWITCH_ATTR_OP_DESCRIPTION,
54         /* port lists */
55         SWITCH_ATTR_PORT,
56         SWITCH_ATTR_MAX
57 };
58
59 enum {
60         /* port map */
61         SWITCH_PORTMAP_PORTS,
62         SWITCH_PORTMAP_SEGMENT,
63         SWITCH_PORTMAP_VIRT,
64         SWITCH_PORTMAP_MAX
65 };
66
67 /* commands */
68 enum {
69         SWITCH_CMD_UNSPEC,
70         SWITCH_CMD_GET_SWITCH,
71         SWITCH_CMD_NEW_ATTR,
72         SWITCH_CMD_LIST_GLOBAL,
73         SWITCH_CMD_GET_GLOBAL,
74         SWITCH_CMD_SET_GLOBAL,
75         SWITCH_CMD_LIST_PORT,
76         SWITCH_CMD_GET_PORT,
77         SWITCH_CMD_SET_PORT,
78         SWITCH_CMD_LIST_VLAN,
79         SWITCH_CMD_GET_VLAN,
80         SWITCH_CMD_SET_VLAN
81 };
82
83 /* data types */
84 enum switch_val_type {
85         SWITCH_TYPE_UNSPEC,
86         SWITCH_TYPE_INT,
87         SWITCH_TYPE_STRING,
88         SWITCH_TYPE_PORTS,
89         SWITCH_TYPE_NOVAL,
90 };
91
92 /* port nested attributes */
93 enum {
94         SWITCH_PORT_UNSPEC,
95         SWITCH_PORT_ID,
96         SWITCH_PORT_FLAG_TAGGED,
97         SWITCH_PORT_ATTR_MAX
98 };
99
100 #define SWITCH_ATTR_DEFAULTS_OFFSET     0x1000
101
102
103 #endif /* _UAPI_LINUX_SWITCH_H */