2 * Copyright (c) 2008, Intel Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 * Author: Lucy Liu <lucy.liu@intel.com>
20 #ifndef __LINUX_DCBNL_H__
21 #define __LINUX_DCBNL_H__
23 #include <linux/types.h>
32 * enum dcbnl_commands - supported DCB commands
34 * @DCB_CMD_UNDEFINED: unspecified command to catch errors
35 * @DCB_CMD_GSTATE: request the state of DCB in the device
36 * @DCB_CMD_SSTATE: set the state of DCB in the device
37 * @DCB_CMD_PGTX_GCFG: request the priority group configuration for Tx
38 * @DCB_CMD_PGTX_SCFG: set the priority group configuration for Tx
39 * @DCB_CMD_PGRX_GCFG: request the priority group configuration for Rx
40 * @DCB_CMD_PGRX_SCFG: set the priority group configuration for Rx
41 * @DCB_CMD_PFC_GCFG: request the priority flow control configuration
42 * @DCB_CMD_PFC_SCFG: set the priority flow control configuration
43 * @DCB_CMD_SET_ALL: apply all changes to the underlying device
44 * @DCB_CMD_GPERM_HWADDR: get the permanent MAC address of the underlying
45 * device. Only useful when using bonding.
46 * @DCB_CMD_GCAP: request the DCB capabilities of the device
47 * @DCB_CMD_GNUMTCS: get the number of traffic classes currently supported
48 * @DCB_CMD_SNUMTCS: set the number of traffic classes
49 * @DCB_CMD_GBCN: set backward congestion notification configuration
50 * @DCB_CMD_SBCN: get backward congestion notification configration.
51 * @DCB_CMD_GAPP: get application protocol configuration
52 * @DCB_CMD_SAPP: set application protocol configuration
87 DCB_CMD_MAX
= __DCB_CMD_ENUM_MAX
- 1,
91 * enum dcbnl_attrs - DCB top-level netlink attributes
93 * @DCB_ATTR_UNDEFINED: unspecified attribute to catch errors
94 * @DCB_ATTR_IFNAME: interface name of the underlying device (NLA_STRING)
95 * @DCB_ATTR_STATE: enable state of DCB in the device (NLA_U8)
96 * @DCB_ATTR_PFC_STATE: enable state of PFC in the device (NLA_U8)
97 * @DCB_ATTR_PFC_CFG: priority flow control configuration (NLA_NESTED)
98 * @DCB_ATTR_NUM_TC: number of traffic classes supported in the device (NLA_U8)
99 * @DCB_ATTR_PG_CFG: priority group configuration (NLA_NESTED)
100 * @DCB_ATTR_SET_ALL: bool to commit changes to hardware or not (NLA_U8)
101 * @DCB_ATTR_PERM_HWADDR: MAC address of the physical device (NLA_NESTED)
102 * @DCB_ATTR_CAP: DCB capabilities of the device (NLA_NESTED)
103 * @DCB_ATTR_NUMTCS: number of traffic classes supported (NLA_NESTED)
104 * @DCB_ATTR_BCN: backward congestion notification configuration (NLA_NESTED)
116 DCB_ATTR_PERM_HWADDR
,
123 DCB_ATTR_MAX
= __DCB_ATTR_ENUM_MAX
- 1,
127 * enum dcbnl_pfc_attrs - DCB Priority Flow Control user priority nested attrs
129 * @DCB_PFC_UP_ATTR_UNDEFINED: unspecified attribute to catch errors
130 * @DCB_PFC_UP_ATTR_0: Priority Flow Control value for User Priority 0 (NLA_U8)
131 * @DCB_PFC_UP_ATTR_1: Priority Flow Control value for User Priority 1 (NLA_U8)
132 * @DCB_PFC_UP_ATTR_2: Priority Flow Control value for User Priority 2 (NLA_U8)
133 * @DCB_PFC_UP_ATTR_3: Priority Flow Control value for User Priority 3 (NLA_U8)
134 * @DCB_PFC_UP_ATTR_4: Priority Flow Control value for User Priority 4 (NLA_U8)
135 * @DCB_PFC_UP_ATTR_5: Priority Flow Control value for User Priority 5 (NLA_U8)
136 * @DCB_PFC_UP_ATTR_6: Priority Flow Control value for User Priority 6 (NLA_U8)
137 * @DCB_PFC_UP_ATTR_7: Priority Flow Control value for User Priority 7 (NLA_U8)
138 * @DCB_PFC_UP_ATTR_MAX: highest attribute number currently defined
139 * @DCB_PFC_UP_ATTR_ALL: apply to all priority flow control attrs (NLA_FLAG)
142 enum dcbnl_pfc_up_attrs
{
143 DCB_PFC_UP_ATTR_UNDEFINED
,
155 __DCB_PFC_UP_ATTR_ENUM_MAX
,
156 DCB_PFC_UP_ATTR_MAX
= __DCB_PFC_UP_ATTR_ENUM_MAX
- 1,
160 * enum dcbnl_pg_attrs - DCB Priority Group attributes
162 * @DCB_PG_ATTR_UNDEFINED: unspecified attribute to catch errors
163 * @DCB_PG_ATTR_TC_0: Priority Group Traffic Class 0 configuration (NLA_NESTED)
164 * @DCB_PG_ATTR_TC_1: Priority Group Traffic Class 1 configuration (NLA_NESTED)
165 * @DCB_PG_ATTR_TC_2: Priority Group Traffic Class 2 configuration (NLA_NESTED)
166 * @DCB_PG_ATTR_TC_3: Priority Group Traffic Class 3 configuration (NLA_NESTED)
167 * @DCB_PG_ATTR_TC_4: Priority Group Traffic Class 4 configuration (NLA_NESTED)
168 * @DCB_PG_ATTR_TC_5: Priority Group Traffic Class 5 configuration (NLA_NESTED)
169 * @DCB_PG_ATTR_TC_6: Priority Group Traffic Class 6 configuration (NLA_NESTED)
170 * @DCB_PG_ATTR_TC_7: Priority Group Traffic Class 7 configuration (NLA_NESTED)
171 * @DCB_PG_ATTR_TC_MAX: highest attribute number currently defined
172 * @DCB_PG_ATTR_TC_ALL: apply to all traffic classes (NLA_NESTED)
173 * @DCB_PG_ATTR_BW_ID_0: Percent of link bandwidth for Priority Group 0 (NLA_U8)
174 * @DCB_PG_ATTR_BW_ID_1: Percent of link bandwidth for Priority Group 1 (NLA_U8)
175 * @DCB_PG_ATTR_BW_ID_2: Percent of link bandwidth for Priority Group 2 (NLA_U8)
176 * @DCB_PG_ATTR_BW_ID_3: Percent of link bandwidth for Priority Group 3 (NLA_U8)
177 * @DCB_PG_ATTR_BW_ID_4: Percent of link bandwidth for Priority Group 4 (NLA_U8)
178 * @DCB_PG_ATTR_BW_ID_5: Percent of link bandwidth for Priority Group 5 (NLA_U8)
179 * @DCB_PG_ATTR_BW_ID_6: Percent of link bandwidth for Priority Group 6 (NLA_U8)
180 * @DCB_PG_ATTR_BW_ID_7: Percent of link bandwidth for Priority Group 7 (NLA_U8)
181 * @DCB_PG_ATTR_BW_ID_MAX: highest attribute number currently defined
182 * @DCB_PG_ATTR_BW_ID_ALL: apply to all priority groups (NLA_FLAG)
185 enum dcbnl_pg_attrs
{
186 DCB_PG_ATTR_UNDEFINED
,
207 DCB_PG_ATTR_BW_ID_MAX
,
208 DCB_PG_ATTR_BW_ID_ALL
,
210 __DCB_PG_ATTR_ENUM_MAX
,
211 DCB_PG_ATTR_MAX
= __DCB_PG_ATTR_ENUM_MAX
- 1,
215 * enum dcbnl_tc_attrs - DCB Traffic Class attributes
217 * @DCB_TC_ATTR_PARAM_UNDEFINED: unspecified attribute to catch errors
218 * @DCB_TC_ATTR_PARAM_PGID: (NLA_U8) Priority group the traffic class belongs to
219 * Valid values are: 0-7
220 * @DCB_TC_ATTR_PARAM_UP_MAPPING: (NLA_U8) Traffic class to user priority map
221 * Some devices may not support changing the
222 * user priority map of a TC.
223 * @DCB_TC_ATTR_PARAM_STRICT_PRIO: (NLA_U8) Strict priority setting
227 * @DCB_TC_ATTR_PARAM_BW_PCT: optional - (NLA_U8) If supported by the device and
228 * not configured to use link strict priority,
229 * this is the percentage of bandwidth of the
230 * priority group this traffic class belongs to
231 * @DCB_TC_ATTR_PARAM_ALL: (NLA_FLAG) all traffic class parameters
234 enum dcbnl_tc_attrs
{
235 DCB_TC_ATTR_PARAM_UNDEFINED
,
237 DCB_TC_ATTR_PARAM_PGID
,
238 DCB_TC_ATTR_PARAM_UP_MAPPING
,
239 DCB_TC_ATTR_PARAM_STRICT_PRIO
,
240 DCB_TC_ATTR_PARAM_BW_PCT
,
241 DCB_TC_ATTR_PARAM_ALL
,
243 __DCB_TC_ATTR_PARAM_ENUM_MAX
,
244 DCB_TC_ATTR_PARAM_MAX
= __DCB_TC_ATTR_PARAM_ENUM_MAX
- 1,
248 * enum dcbnl_cap_attrs - DCB Capability attributes
250 * @DCB_CAP_ATTR_UNDEFINED: unspecified attribute to catch errors
251 * @DCB_CAP_ATTR_ALL: (NLA_FLAG) all capability parameters
252 * @DCB_CAP_ATTR_PG: (NLA_U8) device supports Priority Groups
253 * @DCB_CAP_ATTR_PFC: (NLA_U8) device supports Priority Flow Control
254 * @DCB_CAP_ATTR_UP2TC: (NLA_U8) device supports user priority to
255 * traffic class mapping
256 * @DCB_CAP_ATTR_PG_TCS: (NLA_U8) bitmap where each bit represents a
257 * number of traffic classes the device
258 * can be configured to use for Priority Groups
259 * @DCB_CAP_ATTR_PFC_TCS: (NLA_U8) bitmap where each bit represents a
260 * number of traffic classes the device can be
261 * configured to use for Priority Flow Control
262 * @DCB_CAP_ATTR_GSP: (NLA_U8) device supports group strict priority
263 * @DCB_CAP_ATTR_BCN: (NLA_U8) device supports Backwards Congestion
266 enum dcbnl_cap_attrs
{
267 DCB_CAP_ATTR_UNDEFINED
,
273 DCB_CAP_ATTR_PFC_TCS
,
277 __DCB_CAP_ATTR_ENUM_MAX
,
278 DCB_CAP_ATTR_MAX
= __DCB_CAP_ATTR_ENUM_MAX
- 1,
282 * enum dcbnl_numtcs_attrs - number of traffic classes
284 * @DCB_NUMTCS_ATTR_UNDEFINED: unspecified attribute to catch errors
285 * @DCB_NUMTCS_ATTR_ALL: (NLA_FLAG) all traffic class attributes
286 * @DCB_NUMTCS_ATTR_PG: (NLA_U8) number of traffic classes used for
288 * @DCB_NUMTCS_ATTR_PFC: (NLA_U8) number of traffic classes which can
289 * support priority flow control
291 enum dcbnl_numtcs_attrs
{
292 DCB_NUMTCS_ATTR_UNDEFINED
,
297 __DCB_NUMTCS_ATTR_ENUM_MAX
,
298 DCB_NUMTCS_ATTR_MAX
= __DCB_NUMTCS_ATTR_ENUM_MAX
- 1,
301 enum dcbnl_bcn_attrs
{
302 DCB_BCN_ATTR_UNDEFINED
= 0,
331 __DCB_BCN_ATTR_ENUM_MAX
,
332 DCB_BCN_ATTR_MAX
= __DCB_BCN_ATTR_ENUM_MAX
- 1,
336 * enum dcb_general_attr_values - general DCB attribute values
338 * @DCB_ATTR_UNDEFINED: value used to indicate an attribute is not supported
341 enum dcb_general_attr_values
{
342 DCB_ATTR_VALUE_UNDEFINED
= 0xff
345 #define DCB_APP_IDTYPE_ETHTYPE 0x00
346 #define DCB_APP_IDTYPE_PORTNUM 0x01
347 enum dcbnl_app_attrs
{
348 DCB_APP_ATTR_UNDEFINED
,
352 DCB_APP_ATTR_PRIORITY
,
354 __DCB_APP_ATTR_ENUM_MAX
,
355 DCB_APP_ATTR_MAX
= __DCB_APP_ATTR_ENUM_MAX
- 1,
358 #endif /* __LINUX_DCBNL_H__ */