1 /*******************************************************************************
3 Intel 10 Gigabit PCI Express Linux driver
4 Copyright(c) 1999 - 2011 Intel Corporation.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *******************************************************************************/
30 #include <linux/dcbnl.h>
31 #include "ixgbe_dcb_82598.h"
32 #include "ixgbe_dcb_82599.h"
34 /* Callbacks for DCB netlink in the kernel */
35 #define BIT_DCB_MODE 0x01
37 #define BIT_PG_RX 0x04
38 #define BIT_PG_TX 0x08
39 #define BIT_APP_UPCHG 0x10
40 #define BIT_LINKSPEED 0x80
42 /* Responses for the DCB_C_SET_ALL command */
43 #define DCB_HW_CHG_RST 0 /* DCB configuration changed with reset */
44 #define DCB_NO_HW_CHG 1 /* DCB configuration did not change */
45 #define DCB_HW_CHG 2 /* DCB configuration changed, no reset */
47 int ixgbe_copy_dcb_cfg(struct ixgbe_dcb_config
*src_dcb_cfg
,
48 struct ixgbe_dcb_config
*dst_dcb_cfg
, int tc_max
)
50 struct tc_configuration
*src_tc_cfg
= NULL
;
51 struct tc_configuration
*dst_tc_cfg
= NULL
;
54 if (!src_dcb_cfg
|| !dst_dcb_cfg
)
57 for (i
= DCB_PG_ATTR_TC_0
; i
< tc_max
+ DCB_PG_ATTR_TC_0
; i
++) {
58 src_tc_cfg
= &src_dcb_cfg
->tc_config
[i
- DCB_PG_ATTR_TC_0
];
59 dst_tc_cfg
= &dst_dcb_cfg
->tc_config
[i
- DCB_PG_ATTR_TC_0
];
61 dst_tc_cfg
->path
[DCB_TX_CONFIG
].prio_type
=
62 src_tc_cfg
->path
[DCB_TX_CONFIG
].prio_type
;
64 dst_tc_cfg
->path
[DCB_TX_CONFIG
].bwg_id
=
65 src_tc_cfg
->path
[DCB_TX_CONFIG
].bwg_id
;
67 dst_tc_cfg
->path
[DCB_TX_CONFIG
].bwg_percent
=
68 src_tc_cfg
->path
[DCB_TX_CONFIG
].bwg_percent
;
70 dst_tc_cfg
->path
[DCB_TX_CONFIG
].up_to_tc_bitmap
=
71 src_tc_cfg
->path
[DCB_TX_CONFIG
].up_to_tc_bitmap
;
73 dst_tc_cfg
->path
[DCB_RX_CONFIG
].prio_type
=
74 src_tc_cfg
->path
[DCB_RX_CONFIG
].prio_type
;
76 dst_tc_cfg
->path
[DCB_RX_CONFIG
].bwg_id
=
77 src_tc_cfg
->path
[DCB_RX_CONFIG
].bwg_id
;
79 dst_tc_cfg
->path
[DCB_RX_CONFIG
].bwg_percent
=
80 src_tc_cfg
->path
[DCB_RX_CONFIG
].bwg_percent
;
82 dst_tc_cfg
->path
[DCB_RX_CONFIG
].up_to_tc_bitmap
=
83 src_tc_cfg
->path
[DCB_RX_CONFIG
].up_to_tc_bitmap
;
86 for (i
= DCB_PG_ATTR_BW_ID_0
; i
< DCB_PG_ATTR_BW_ID_MAX
; i
++) {
87 dst_dcb_cfg
->bw_percentage
[DCB_TX_CONFIG
]
88 [i
-DCB_PG_ATTR_BW_ID_0
] = src_dcb_cfg
->bw_percentage
89 [DCB_TX_CONFIG
][i
-DCB_PG_ATTR_BW_ID_0
];
90 dst_dcb_cfg
->bw_percentage
[DCB_RX_CONFIG
]
91 [i
-DCB_PG_ATTR_BW_ID_0
] = src_dcb_cfg
->bw_percentage
92 [DCB_RX_CONFIG
][i
-DCB_PG_ATTR_BW_ID_0
];
95 for (i
= DCB_PFC_UP_ATTR_0
; i
< DCB_PFC_UP_ATTR_MAX
; i
++) {
96 dst_dcb_cfg
->tc_config
[i
- DCB_PFC_UP_ATTR_0
].dcb_pfc
=
97 src_dcb_cfg
->tc_config
[i
- DCB_PFC_UP_ATTR_0
].dcb_pfc
;
100 dst_dcb_cfg
->pfc_mode_enable
= src_dcb_cfg
->pfc_mode_enable
;
105 static u8
ixgbe_dcbnl_get_state(struct net_device
*netdev
)
107 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
109 return !!(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
);
112 static u8
ixgbe_dcbnl_set_state(struct net_device
*netdev
, u8 state
)
115 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
119 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
)
122 if (!(adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)) {
123 e_err(drv
, "Enable failed, needs MSI-X\n");
128 if (netif_running(netdev
))
129 netdev
->netdev_ops
->ndo_stop(netdev
);
130 ixgbe_clear_interrupt_scheme(adapter
);
132 switch (adapter
->hw
.mac
.type
) {
133 case ixgbe_mac_82598EB
:
134 adapter
->last_lfc_mode
= adapter
->hw
.fc
.current_mode
;
135 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_none
;
137 case ixgbe_mac_82599EB
:
139 adapter
->flags
&= ~IXGBE_FLAG_FDIR_HASH_CAPABLE
;
140 adapter
->flags
&= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE
;
146 adapter
->flags
|= IXGBE_FLAG_DCB_ENABLED
;
147 if (!netdev_get_num_tc(netdev
))
148 ixgbe_setup_tc(netdev
, MAX_TRAFFIC_CLASS
);
150 ixgbe_init_interrupt_scheme(adapter
);
151 if (netif_running(netdev
))
152 netdev
->netdev_ops
->ndo_open(netdev
);
155 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) {
156 if (netif_running(netdev
))
157 netdev
->netdev_ops
->ndo_stop(netdev
);
158 ixgbe_clear_interrupt_scheme(adapter
);
160 adapter
->hw
.fc
.requested_mode
= adapter
->last_lfc_mode
;
161 adapter
->temp_dcb_cfg
.pfc_mode_enable
= false;
162 adapter
->dcb_cfg
.pfc_mode_enable
= false;
163 adapter
->flags
&= ~IXGBE_FLAG_DCB_ENABLED
;
164 switch (adapter
->hw
.mac
.type
) {
165 case ixgbe_mac_82599EB
:
167 adapter
->flags
|= IXGBE_FLAG_FDIR_HASH_CAPABLE
;
173 ixgbe_setup_tc(netdev
, 0);
175 ixgbe_init_interrupt_scheme(adapter
);
176 if (netif_running(netdev
))
177 netdev
->netdev_ops
->ndo_open(netdev
);
184 static void ixgbe_dcbnl_get_perm_hw_addr(struct net_device
*netdev
,
187 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
190 memset(perm_addr
, 0xff, MAX_ADDR_LEN
);
192 for (i
= 0; i
< netdev
->addr_len
; i
++)
193 perm_addr
[i
] = adapter
->hw
.mac
.perm_addr
[i
];
195 switch (adapter
->hw
.mac
.type
) {
196 case ixgbe_mac_82599EB
:
198 for (j
= 0; j
< netdev
->addr_len
; j
++, i
++)
199 perm_addr
[i
] = adapter
->hw
.mac
.san_addr
[j
];
206 static void ixgbe_dcbnl_set_pg_tc_cfg_tx(struct net_device
*netdev
, int tc
,
207 u8 prio
, u8 bwg_id
, u8 bw_pct
,
210 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
212 if (prio
!= DCB_ATTR_VALUE_UNDEFINED
)
213 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].prio_type
= prio
;
214 if (bwg_id
!= DCB_ATTR_VALUE_UNDEFINED
)
215 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
= bwg_id
;
216 if (bw_pct
!= DCB_ATTR_VALUE_UNDEFINED
)
217 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
=
219 if (up_map
!= DCB_ATTR_VALUE_UNDEFINED
)
220 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
=
223 if ((adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].prio_type
!=
224 adapter
->dcb_cfg
.tc_config
[tc
].path
[0].prio_type
) ||
225 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
!=
226 adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
) ||
227 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
!=
228 adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
) ||
229 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
!=
230 adapter
->dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
))
231 adapter
->dcb_set_bitmap
|= BIT_PG_TX
;
234 static void ixgbe_dcbnl_set_pg_bwg_cfg_tx(struct net_device
*netdev
, int bwg_id
,
237 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
239 adapter
->temp_dcb_cfg
.bw_percentage
[0][bwg_id
] = bw_pct
;
241 if (adapter
->temp_dcb_cfg
.bw_percentage
[0][bwg_id
] !=
242 adapter
->dcb_cfg
.bw_percentage
[0][bwg_id
])
243 adapter
->dcb_set_bitmap
|= BIT_PG_TX
;
246 static void ixgbe_dcbnl_set_pg_tc_cfg_rx(struct net_device
*netdev
, int tc
,
247 u8 prio
, u8 bwg_id
, u8 bw_pct
,
250 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
252 if (prio
!= DCB_ATTR_VALUE_UNDEFINED
)
253 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].prio_type
= prio
;
254 if (bwg_id
!= DCB_ATTR_VALUE_UNDEFINED
)
255 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
= bwg_id
;
256 if (bw_pct
!= DCB_ATTR_VALUE_UNDEFINED
)
257 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
=
259 if (up_map
!= DCB_ATTR_VALUE_UNDEFINED
)
260 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
=
263 if ((adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].prio_type
!=
264 adapter
->dcb_cfg
.tc_config
[tc
].path
[1].prio_type
) ||
265 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
!=
266 adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
) ||
267 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
!=
268 adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
) ||
269 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
!=
270 adapter
->dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
))
271 adapter
->dcb_set_bitmap
|= BIT_PG_RX
;
274 static void ixgbe_dcbnl_set_pg_bwg_cfg_rx(struct net_device
*netdev
, int bwg_id
,
277 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
279 adapter
->temp_dcb_cfg
.bw_percentage
[1][bwg_id
] = bw_pct
;
281 if (adapter
->temp_dcb_cfg
.bw_percentage
[1][bwg_id
] !=
282 adapter
->dcb_cfg
.bw_percentage
[1][bwg_id
])
283 adapter
->dcb_set_bitmap
|= BIT_PG_RX
;
286 static void ixgbe_dcbnl_get_pg_tc_cfg_tx(struct net_device
*netdev
, int tc
,
287 u8
*prio
, u8
*bwg_id
, u8
*bw_pct
,
290 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
292 *prio
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].prio_type
;
293 *bwg_id
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
;
294 *bw_pct
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
;
295 *up_map
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
;
298 static void ixgbe_dcbnl_get_pg_bwg_cfg_tx(struct net_device
*netdev
, int bwg_id
,
301 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
303 *bw_pct
= adapter
->dcb_cfg
.bw_percentage
[0][bwg_id
];
306 static void ixgbe_dcbnl_get_pg_tc_cfg_rx(struct net_device
*netdev
, int tc
,
307 u8
*prio
, u8
*bwg_id
, u8
*bw_pct
,
310 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
312 *prio
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].prio_type
;
313 *bwg_id
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
;
314 *bw_pct
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
;
315 *up_map
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
;
318 static void ixgbe_dcbnl_get_pg_bwg_cfg_rx(struct net_device
*netdev
, int bwg_id
,
321 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
323 *bw_pct
= adapter
->dcb_cfg
.bw_percentage
[1][bwg_id
];
326 static void ixgbe_dcbnl_set_pfc_cfg(struct net_device
*netdev
, int priority
,
329 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
331 adapter
->temp_dcb_cfg
.tc_config
[priority
].dcb_pfc
= setting
;
332 if (adapter
->temp_dcb_cfg
.tc_config
[priority
].dcb_pfc
!=
333 adapter
->dcb_cfg
.tc_config
[priority
].dcb_pfc
) {
334 adapter
->dcb_set_bitmap
|= BIT_PFC
;
335 adapter
->temp_dcb_cfg
.pfc_mode_enable
= true;
339 static void ixgbe_dcbnl_get_pfc_cfg(struct net_device
*netdev
, int priority
,
342 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
344 *setting
= adapter
->dcb_cfg
.tc_config
[priority
].dcb_pfc
;
347 static u8
ixgbe_dcbnl_set_all(struct net_device
*netdev
)
349 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
352 if (!adapter
->dcb_set_bitmap
||
353 !(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
))
354 return DCB_NO_HW_CHG
;
356 ret
= ixgbe_copy_dcb_cfg(&adapter
->temp_dcb_cfg
, &adapter
->dcb_cfg
,
360 return DCB_NO_HW_CHG
;
363 * Only take down the adapter if an app change occured. FCoE
364 * may shuffle tx rings in this case and this can not be done
365 * without a reset currently.
367 if (adapter
->dcb_set_bitmap
& BIT_APP_UPCHG
) {
368 while (test_and_set_bit(__IXGBE_RESETTING
, &adapter
->state
))
371 if (netif_running(netdev
))
372 netdev
->netdev_ops
->ndo_stop(netdev
);
373 ixgbe_clear_interrupt_scheme(adapter
);
376 if (adapter
->dcb_cfg
.pfc_mode_enable
) {
377 switch (adapter
->hw
.mac
.type
) {
378 case ixgbe_mac_82599EB
:
380 if (adapter
->hw
.fc
.current_mode
!= ixgbe_fc_pfc
)
381 adapter
->last_lfc_mode
=
382 adapter
->hw
.fc
.current_mode
;
387 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_pfc
;
389 switch (adapter
->hw
.mac
.type
) {
390 case ixgbe_mac_82598EB
:
391 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_none
;
393 case ixgbe_mac_82599EB
:
395 adapter
->hw
.fc
.requested_mode
= adapter
->last_lfc_mode
;
402 if (adapter
->dcb_set_bitmap
& BIT_APP_UPCHG
) {
403 ixgbe_init_interrupt_scheme(adapter
);
404 if (netif_running(netdev
))
405 netdev
->netdev_ops
->ndo_open(netdev
);
406 ret
= DCB_HW_CHG_RST
;
409 if (adapter
->dcb_set_bitmap
& BIT_PFC
) {
411 ixgbe_dcb_unpack_pfc(&adapter
->dcb_cfg
, &pfc_en
);
412 ixgbe_dcb_hw_pfc_config(&adapter
->hw
, pfc_en
);
416 if (adapter
->dcb_set_bitmap
& (BIT_PG_TX
|BIT_PG_RX
)) {
417 u16 refill
[MAX_TRAFFIC_CLASS
], max
[MAX_TRAFFIC_CLASS
];
418 u8 bwg_id
[MAX_TRAFFIC_CLASS
], prio_type
[MAX_TRAFFIC_CLASS
];
419 /* Priority to TC mapping in CEE case default to 1:1 */
420 u8 prio_tc
[MAX_TRAFFIC_CLASS
] = {0, 1, 2, 3, 4, 5, 6, 7};
421 int max_frame
= adapter
->netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
424 if (adapter
->netdev
->features
& NETIF_F_FCOE_MTU
)
425 max_frame
= max(max_frame
, IXGBE_FCOE_JUMBO_FRAME_SIZE
);
428 ixgbe_dcb_calculate_tc_credits(&adapter
->hw
, &adapter
->dcb_cfg
,
429 max_frame
, DCB_TX_CONFIG
);
430 ixgbe_dcb_calculate_tc_credits(&adapter
->hw
, &adapter
->dcb_cfg
,
431 max_frame
, DCB_RX_CONFIG
);
433 ixgbe_dcb_unpack_refill(&adapter
->dcb_cfg
,
434 DCB_TX_CONFIG
, refill
);
435 ixgbe_dcb_unpack_max(&adapter
->dcb_cfg
, max
);
436 ixgbe_dcb_unpack_bwgid(&adapter
->dcb_cfg
,
437 DCB_TX_CONFIG
, bwg_id
);
438 ixgbe_dcb_unpack_prio(&adapter
->dcb_cfg
,
439 DCB_TX_CONFIG
, prio_type
);
441 ixgbe_dcb_hw_ets_config(&adapter
->hw
, refill
, max
,
442 bwg_id
, prio_type
, prio_tc
);
445 if (adapter
->dcb_cfg
.pfc_mode_enable
)
446 adapter
->hw
.fc
.current_mode
= ixgbe_fc_pfc
;
448 if (adapter
->dcb_set_bitmap
& BIT_APP_UPCHG
)
449 clear_bit(__IXGBE_RESETTING
, &adapter
->state
);
450 adapter
->dcb_set_bitmap
= 0x00;
454 static u8
ixgbe_dcbnl_getcap(struct net_device
*netdev
, int capid
, u8
*cap
)
456 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
459 case DCB_CAP_ATTR_PG
:
462 case DCB_CAP_ATTR_PFC
:
465 case DCB_CAP_ATTR_UP2TC
:
468 case DCB_CAP_ATTR_PG_TCS
:
471 case DCB_CAP_ATTR_PFC_TCS
:
474 case DCB_CAP_ATTR_GSP
:
477 case DCB_CAP_ATTR_BCN
:
480 case DCB_CAP_ATTR_DCBX
:
481 *cap
= adapter
->dcbx_cap
;
491 static u8
ixgbe_dcbnl_getnumtcs(struct net_device
*netdev
, int tcid
, u8
*num
)
493 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
496 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) {
498 case DCB_NUMTCS_ATTR_PG
:
499 *num
= MAX_TRAFFIC_CLASS
;
501 case DCB_NUMTCS_ATTR_PFC
:
502 *num
= MAX_TRAFFIC_CLASS
;
515 static u8
ixgbe_dcbnl_setnumtcs(struct net_device
*netdev
, int tcid
, u8 num
)
520 static u8
ixgbe_dcbnl_getpfcstate(struct net_device
*netdev
)
522 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
524 return adapter
->dcb_cfg
.pfc_mode_enable
;
527 static void ixgbe_dcbnl_setpfcstate(struct net_device
*netdev
, u8 state
)
529 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
531 adapter
->temp_dcb_cfg
.pfc_mode_enable
= state
;
532 if (adapter
->temp_dcb_cfg
.pfc_mode_enable
!=
533 adapter
->dcb_cfg
.pfc_mode_enable
)
534 adapter
->dcb_set_bitmap
|= BIT_PFC
;
538 * ixgbe_dcbnl_getapp - retrieve the DCBX application user priority
539 * @netdev : the corresponding netdev
540 * @idtype : identifies the id as ether type or TCP/UDP port number
541 * @id: id is either ether type or TCP/UDP port number
543 * Returns : on success, returns a non-zero 802.1p user priority bitmap
544 * otherwise returns 0 as the invalid user priority bitmap to indicate an
547 static u8
ixgbe_dcbnl_getapp(struct net_device
*netdev
, u8 idtype
, u16 id
)
549 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
550 struct dcb_app app
= {
555 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
))
558 return dcb_getapp(netdev
, &app
);
562 * ixgbe_dcbnl_setapp - set the DCBX application user priority
563 * @netdev : the corresponding netdev
564 * @idtype : identifies the id as ether type or TCP/UDP port number
565 * @id: id is either ether type or TCP/UDP port number
566 * @up: the 802.1p user priority bitmap
568 * Returns : 0 on success or 1 on error
570 static u8
ixgbe_dcbnl_setapp(struct net_device
*netdev
,
571 u8 idtype
, u16 id
, u8 up
)
573 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
575 struct dcb_app app
= {
581 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
))
584 rval
= dcb_setapp(netdev
, &app
);
587 case DCB_APP_IDTYPE_ETHTYPE
:
589 if (id
== ETH_P_FCOE
) {
592 /* Get current programmed tc */
593 old_tc
= adapter
->fcoe
.tc
;
594 rval
= ixgbe_fcoe_setapp(adapter
, up
);
597 !(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) ||
598 !(adapter
->flags
& IXGBE_FLAG_FCOE_ENABLED
))
601 /* The FCoE application priority may be changed multiple
602 * times in quick sucession with switches that build up
603 * TLVs. To avoid creating uneeded device resets this
604 * checks the actual HW configuration and clears
605 * BIT_APP_UPCHG if a HW configuration change is not
608 if (old_tc
== adapter
->fcoe
.tc
)
609 adapter
->dcb_set_bitmap
&= ~BIT_APP_UPCHG
;
611 adapter
->dcb_set_bitmap
|= BIT_APP_UPCHG
;
615 case DCB_APP_IDTYPE_PORTNUM
:
623 static int ixgbe_dcbnl_ieee_getets(struct net_device
*dev
,
624 struct ieee_ets
*ets
)
626 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
627 struct ieee_ets
*my_ets
= adapter
->ixgbe_ieee_ets
;
629 /* No IEEE PFC settings available */
633 ets
->ets_cap
= MAX_TRAFFIC_CLASS
;
634 ets
->cbs
= my_ets
->cbs
;
635 memcpy(ets
->tc_tx_bw
, my_ets
->tc_tx_bw
, sizeof(ets
->tc_tx_bw
));
636 memcpy(ets
->tc_rx_bw
, my_ets
->tc_rx_bw
, sizeof(ets
->tc_rx_bw
));
637 memcpy(ets
->tc_tsa
, my_ets
->tc_tsa
, sizeof(ets
->tc_tsa
));
638 memcpy(ets
->prio_tc
, my_ets
->prio_tc
, sizeof(ets
->prio_tc
));
642 static int ixgbe_dcbnl_ieee_setets(struct net_device
*dev
,
643 struct ieee_ets
*ets
)
645 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
646 __u16 refill
[IEEE_8021QAZ_MAX_TCS
], max
[IEEE_8021QAZ_MAX_TCS
];
647 __u8 prio_type
[IEEE_8021QAZ_MAX_TCS
];
648 int max_frame
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
650 __u64
*p
= (__u64
*) ets
->prio_tc
;
651 /* naively give each TC a bwg to map onto CEE hardware */
652 __u8 bwg_id
[IEEE_8021QAZ_MAX_TCS
] = {0, 1, 2, 3, 4, 5, 6, 7};
654 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
657 if (!adapter
->ixgbe_ieee_ets
) {
658 adapter
->ixgbe_ieee_ets
= kmalloc(sizeof(struct ieee_ets
),
660 if (!adapter
->ixgbe_ieee_ets
)
664 memcpy(adapter
->ixgbe_ieee_ets
, ets
, sizeof(*adapter
->ixgbe_ieee_ets
));
666 /* Map TSA onto CEE prio type */
667 for (i
= 0; i
< IEEE_8021QAZ_MAX_TCS
; i
++) {
668 switch (ets
->tc_tsa
[i
]) {
669 case IEEE_8021QAZ_TSA_STRICT
:
672 case IEEE_8021QAZ_TSA_ETS
:
676 /* Hardware only supports priority strict or
677 * ETS transmission selection algorithms if
678 * we receive some other value from dcbnl
686 ixgbe_dcbnl_set_state(dev
, 1);
688 ixgbe_dcbnl_set_state(dev
, 0);
690 ixgbe_ieee_credits(ets
->tc_tx_bw
, refill
, max
, max_frame
);
691 err
= ixgbe_dcb_hw_ets_config(&adapter
->hw
, refill
, max
,
692 bwg_id
, prio_type
, ets
->prio_tc
);
696 static int ixgbe_dcbnl_ieee_getpfc(struct net_device
*dev
,
697 struct ieee_pfc
*pfc
)
699 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
700 struct ieee_pfc
*my_pfc
= adapter
->ixgbe_ieee_pfc
;
703 /* No IEEE PFC settings available */
707 pfc
->pfc_cap
= MAX_TRAFFIC_CLASS
;
708 pfc
->pfc_en
= my_pfc
->pfc_en
;
709 pfc
->mbc
= my_pfc
->mbc
;
710 pfc
->delay
= my_pfc
->delay
;
712 for (i
= 0; i
< MAX_TRAFFIC_CLASS
; i
++) {
713 pfc
->requests
[i
] = adapter
->stats
.pxoffrxc
[i
];
714 pfc
->indications
[i
] = adapter
->stats
.pxofftxc
[i
];
720 static int ixgbe_dcbnl_ieee_setpfc(struct net_device
*dev
,
721 struct ieee_pfc
*pfc
)
723 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
726 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
729 if (!adapter
->ixgbe_ieee_pfc
) {
730 adapter
->ixgbe_ieee_pfc
= kmalloc(sizeof(struct ieee_pfc
),
732 if (!adapter
->ixgbe_ieee_pfc
)
736 memcpy(adapter
->ixgbe_ieee_pfc
, pfc
, sizeof(*adapter
->ixgbe_ieee_pfc
));
737 err
= ixgbe_dcb_hw_pfc_config(&adapter
->hw
, pfc
->pfc_en
);
741 static int ixgbe_dcbnl_ieee_setapp(struct net_device
*dev
,
744 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
746 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
749 if (app
->selector
== 1 && app
->protocol
== ETH_P_FCOE
) {
750 if (adapter
->fcoe
.tc
== app
->priority
)
753 /* In IEEE mode map up to tc 1:1 */
754 adapter
->fcoe
.tc
= app
->priority
;
755 adapter
->fcoe
.up
= app
->priority
;
757 /* Force hardware reset required to push FCoE
758 * setup on {tx|rx}_rings
760 adapter
->dcb_set_bitmap
|= BIT_APP_UPCHG
;
761 ixgbe_dcbnl_set_all(dev
);
766 dcb_setapp(dev
, app
);
770 static u8
ixgbe_dcbnl_getdcbx(struct net_device
*dev
)
772 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
773 return adapter
->dcbx_cap
;
776 static u8
ixgbe_dcbnl_setdcbx(struct net_device
*dev
, u8 mode
)
778 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
779 struct ieee_ets ets
= {0};
780 struct ieee_pfc pfc
= {0};
782 /* no support for LLD_MANAGED modes or CEE+IEEE */
783 if ((mode
& DCB_CAP_DCBX_LLD_MANAGED
) ||
784 ((mode
& DCB_CAP_DCBX_VER_IEEE
) && (mode
& DCB_CAP_DCBX_VER_CEE
)) ||
785 !(mode
& DCB_CAP_DCBX_HOST
))
788 if (mode
== adapter
->dcbx_cap
)
791 adapter
->dcbx_cap
= mode
;
793 /* ETS and PFC defaults */
797 if (mode
& DCB_CAP_DCBX_VER_IEEE
) {
798 ixgbe_dcbnl_ieee_setets(dev
, &ets
);
799 ixgbe_dcbnl_ieee_setpfc(dev
, &pfc
);
800 } else if (mode
& DCB_CAP_DCBX_VER_CEE
) {
801 adapter
->dcb_set_bitmap
|= (BIT_PFC
& BIT_PG_TX
& BIT_PG_RX
);
802 ixgbe_dcbnl_set_all(dev
);
804 /* Drop into single TC mode strict priority as this
805 * indicates CEE and IEEE versions are disabled
807 ixgbe_dcbnl_ieee_setets(dev
, &ets
);
808 ixgbe_dcbnl_ieee_setpfc(dev
, &pfc
);
809 ixgbe_dcbnl_set_state(dev
, 0);
815 const struct dcbnl_rtnl_ops dcbnl_ops
= {
816 .ieee_getets
= ixgbe_dcbnl_ieee_getets
,
817 .ieee_setets
= ixgbe_dcbnl_ieee_setets
,
818 .ieee_getpfc
= ixgbe_dcbnl_ieee_getpfc
,
819 .ieee_setpfc
= ixgbe_dcbnl_ieee_setpfc
,
820 .ieee_setapp
= ixgbe_dcbnl_ieee_setapp
,
821 .getstate
= ixgbe_dcbnl_get_state
,
822 .setstate
= ixgbe_dcbnl_set_state
,
823 .getpermhwaddr
= ixgbe_dcbnl_get_perm_hw_addr
,
824 .setpgtccfgtx
= ixgbe_dcbnl_set_pg_tc_cfg_tx
,
825 .setpgbwgcfgtx
= ixgbe_dcbnl_set_pg_bwg_cfg_tx
,
826 .setpgtccfgrx
= ixgbe_dcbnl_set_pg_tc_cfg_rx
,
827 .setpgbwgcfgrx
= ixgbe_dcbnl_set_pg_bwg_cfg_rx
,
828 .getpgtccfgtx
= ixgbe_dcbnl_get_pg_tc_cfg_tx
,
829 .getpgbwgcfgtx
= ixgbe_dcbnl_get_pg_bwg_cfg_tx
,
830 .getpgtccfgrx
= ixgbe_dcbnl_get_pg_tc_cfg_rx
,
831 .getpgbwgcfgrx
= ixgbe_dcbnl_get_pg_bwg_cfg_rx
,
832 .setpfccfg
= ixgbe_dcbnl_set_pfc_cfg
,
833 .getpfccfg
= ixgbe_dcbnl_get_pfc_cfg
,
834 .setall
= ixgbe_dcbnl_set_all
,
835 .getcap
= ixgbe_dcbnl_getcap
,
836 .getnumtcs
= ixgbe_dcbnl_getnumtcs
,
837 .setnumtcs
= ixgbe_dcbnl_setnumtcs
,
838 .getpfcstate
= ixgbe_dcbnl_getpfcstate
,
839 .setpfcstate
= ixgbe_dcbnl_setpfcstate
,
840 .getapp
= ixgbe_dcbnl_getapp
,
841 .setapp
= ixgbe_dcbnl_setapp
,
842 .getdcbx
= ixgbe_dcbnl_getdcbx
,
843 .setdcbx
= ixgbe_dcbnl_setdcbx
,