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
);
350 struct dcb_app app
= {
351 .selector
= DCB_APP_IDTYPE_ETHTYPE
,
352 .protocol
= ETH_P_FCOE
,
354 u8 up
= dcb_getapp(netdev
, &app
);
357 ret
= ixgbe_copy_dcb_cfg(&adapter
->temp_dcb_cfg
, &adapter
->dcb_cfg
,
360 return DCB_NO_HW_CHG
;
362 /* In IEEE mode app data must be parsed into DCBX format for
365 if (adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
)
369 if (up
&& (up
!= (1 << adapter
->fcoe
.up
)))
370 adapter
->dcb_set_bitmap
|= BIT_APP_UPCHG
;
373 * Only take down the adapter if an app change occurred. FCoE
374 * may shuffle tx rings in this case and this can not be done
375 * without a reset currently.
377 if (adapter
->dcb_set_bitmap
& BIT_APP_UPCHG
) {
378 while (test_and_set_bit(__IXGBE_RESETTING
, &adapter
->state
))
379 usleep_range(1000, 2000);
381 ixgbe_fcoe_setapp(adapter
, up
);
383 if (netif_running(netdev
))
384 netdev
->netdev_ops
->ndo_stop(netdev
);
385 ixgbe_clear_interrupt_scheme(adapter
);
389 if (adapter
->dcb_cfg
.pfc_mode_enable
) {
390 switch (adapter
->hw
.mac
.type
) {
391 case ixgbe_mac_82599EB
:
393 if (adapter
->hw
.fc
.current_mode
!= ixgbe_fc_pfc
)
394 adapter
->last_lfc_mode
=
395 adapter
->hw
.fc
.current_mode
;
400 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_pfc
;
402 switch (adapter
->hw
.mac
.type
) {
403 case ixgbe_mac_82598EB
:
404 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_none
;
406 case ixgbe_mac_82599EB
:
408 adapter
->hw
.fc
.requested_mode
= adapter
->last_lfc_mode
;
416 if (adapter
->dcb_set_bitmap
& BIT_APP_UPCHG
) {
417 ixgbe_init_interrupt_scheme(adapter
);
418 if (netif_running(netdev
))
419 netdev
->netdev_ops
->ndo_open(netdev
);
420 ret
= DCB_HW_CHG_RST
;
424 if (adapter
->dcb_set_bitmap
& BIT_PFC
) {
426 ixgbe_dcb_unpack_pfc(&adapter
->dcb_cfg
, &pfc_en
);
427 ixgbe_dcb_hw_pfc_config(&adapter
->hw
, pfc_en
);
431 if (adapter
->dcb_set_bitmap
& (BIT_PG_TX
|BIT_PG_RX
)) {
432 u16 refill
[MAX_TRAFFIC_CLASS
], max
[MAX_TRAFFIC_CLASS
];
433 u8 bwg_id
[MAX_TRAFFIC_CLASS
], prio_type
[MAX_TRAFFIC_CLASS
];
434 /* Priority to TC mapping in CEE case default to 1:1 */
435 u8 prio_tc
[MAX_TRAFFIC_CLASS
] = {0, 1, 2, 3, 4, 5, 6, 7};
436 int max_frame
= adapter
->netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
439 if (adapter
->netdev
->features
& NETIF_F_FCOE_MTU
)
440 max_frame
= max(max_frame
, IXGBE_FCOE_JUMBO_FRAME_SIZE
);
443 ixgbe_dcb_calculate_tc_credits(&adapter
->hw
, &adapter
->dcb_cfg
,
444 max_frame
, DCB_TX_CONFIG
);
445 ixgbe_dcb_calculate_tc_credits(&adapter
->hw
, &adapter
->dcb_cfg
,
446 max_frame
, DCB_RX_CONFIG
);
448 ixgbe_dcb_unpack_refill(&adapter
->dcb_cfg
,
449 DCB_TX_CONFIG
, refill
);
450 ixgbe_dcb_unpack_max(&adapter
->dcb_cfg
, max
);
451 ixgbe_dcb_unpack_bwgid(&adapter
->dcb_cfg
,
452 DCB_TX_CONFIG
, bwg_id
);
453 ixgbe_dcb_unpack_prio(&adapter
->dcb_cfg
,
454 DCB_TX_CONFIG
, prio_type
);
456 ixgbe_dcb_hw_ets_config(&adapter
->hw
, refill
, max
,
457 bwg_id
, prio_type
, prio_tc
);
460 if (adapter
->dcb_cfg
.pfc_mode_enable
)
461 adapter
->hw
.fc
.current_mode
= ixgbe_fc_pfc
;
463 if (adapter
->dcb_set_bitmap
& BIT_APP_UPCHG
)
464 clear_bit(__IXGBE_RESETTING
, &adapter
->state
);
465 adapter
->dcb_set_bitmap
= 0x00;
469 static u8
ixgbe_dcbnl_getcap(struct net_device
*netdev
, int capid
, u8
*cap
)
471 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
474 case DCB_CAP_ATTR_PG
:
477 case DCB_CAP_ATTR_PFC
:
480 case DCB_CAP_ATTR_UP2TC
:
483 case DCB_CAP_ATTR_PG_TCS
:
486 case DCB_CAP_ATTR_PFC_TCS
:
489 case DCB_CAP_ATTR_GSP
:
492 case DCB_CAP_ATTR_BCN
:
495 case DCB_CAP_ATTR_DCBX
:
496 *cap
= adapter
->dcbx_cap
;
506 static u8
ixgbe_dcbnl_getnumtcs(struct net_device
*netdev
, int tcid
, u8
*num
)
508 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
511 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) {
513 case DCB_NUMTCS_ATTR_PG
:
514 *num
= MAX_TRAFFIC_CLASS
;
516 case DCB_NUMTCS_ATTR_PFC
:
517 *num
= MAX_TRAFFIC_CLASS
;
530 static u8
ixgbe_dcbnl_setnumtcs(struct net_device
*netdev
, int tcid
, u8 num
)
535 static u8
ixgbe_dcbnl_getpfcstate(struct net_device
*netdev
)
537 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
539 return adapter
->dcb_cfg
.pfc_mode_enable
;
542 static void ixgbe_dcbnl_setpfcstate(struct net_device
*netdev
, u8 state
)
544 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
546 adapter
->temp_dcb_cfg
.pfc_mode_enable
= state
;
547 if (adapter
->temp_dcb_cfg
.pfc_mode_enable
!=
548 adapter
->dcb_cfg
.pfc_mode_enable
)
549 adapter
->dcb_set_bitmap
|= BIT_PFC
;
553 * ixgbe_dcbnl_getapp - retrieve the DCBX application user priority
554 * @netdev : the corresponding netdev
555 * @idtype : identifies the id as ether type or TCP/UDP port number
556 * @id: id is either ether type or TCP/UDP port number
558 * Returns : on success, returns a non-zero 802.1p user priority bitmap
559 * otherwise returns 0 as the invalid user priority bitmap to indicate an
562 static u8
ixgbe_dcbnl_getapp(struct net_device
*netdev
, u8 idtype
, u16 id
)
564 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
565 struct dcb_app app
= {
570 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
))
573 return dcb_getapp(netdev
, &app
);
576 static int ixgbe_dcbnl_ieee_getets(struct net_device
*dev
,
577 struct ieee_ets
*ets
)
579 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
580 struct ieee_ets
*my_ets
= adapter
->ixgbe_ieee_ets
;
582 /* No IEEE PFC settings available */
586 ets
->ets_cap
= MAX_TRAFFIC_CLASS
;
587 ets
->cbs
= my_ets
->cbs
;
588 memcpy(ets
->tc_tx_bw
, my_ets
->tc_tx_bw
, sizeof(ets
->tc_tx_bw
));
589 memcpy(ets
->tc_rx_bw
, my_ets
->tc_rx_bw
, sizeof(ets
->tc_rx_bw
));
590 memcpy(ets
->tc_tsa
, my_ets
->tc_tsa
, sizeof(ets
->tc_tsa
));
591 memcpy(ets
->prio_tc
, my_ets
->prio_tc
, sizeof(ets
->prio_tc
));
595 static int ixgbe_dcbnl_ieee_setets(struct net_device
*dev
,
596 struct ieee_ets
*ets
)
598 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
599 __u16 refill
[IEEE_8021QAZ_MAX_TCS
], max
[IEEE_8021QAZ_MAX_TCS
];
600 __u8 prio_type
[IEEE_8021QAZ_MAX_TCS
];
601 int max_frame
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
603 __u64
*p
= (__u64
*) ets
->prio_tc
;
604 /* naively give each TC a bwg to map onto CEE hardware */
605 __u8 bwg_id
[IEEE_8021QAZ_MAX_TCS
] = {0, 1, 2, 3, 4, 5, 6, 7};
607 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
610 if (!adapter
->ixgbe_ieee_ets
) {
611 adapter
->ixgbe_ieee_ets
= kmalloc(sizeof(struct ieee_ets
),
613 if (!adapter
->ixgbe_ieee_ets
)
617 memcpy(adapter
->ixgbe_ieee_ets
, ets
, sizeof(*adapter
->ixgbe_ieee_ets
));
619 /* Map TSA onto CEE prio type */
620 for (i
= 0; i
< IEEE_8021QAZ_MAX_TCS
; i
++) {
621 switch (ets
->tc_tsa
[i
]) {
622 case IEEE_8021QAZ_TSA_STRICT
:
625 case IEEE_8021QAZ_TSA_ETS
:
629 /* Hardware only supports priority strict or
630 * ETS transmission selection algorithms if
631 * we receive some other value from dcbnl
639 ixgbe_dcbnl_set_state(dev
, 1);
641 ixgbe_dcbnl_set_state(dev
, 0);
643 ixgbe_ieee_credits(ets
->tc_tx_bw
, refill
, max
, max_frame
);
644 err
= ixgbe_dcb_hw_ets_config(&adapter
->hw
, refill
, max
,
645 bwg_id
, prio_type
, ets
->prio_tc
);
649 static int ixgbe_dcbnl_ieee_getpfc(struct net_device
*dev
,
650 struct ieee_pfc
*pfc
)
652 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
653 struct ieee_pfc
*my_pfc
= adapter
->ixgbe_ieee_pfc
;
656 /* No IEEE PFC settings available */
660 pfc
->pfc_cap
= MAX_TRAFFIC_CLASS
;
661 pfc
->pfc_en
= my_pfc
->pfc_en
;
662 pfc
->mbc
= my_pfc
->mbc
;
663 pfc
->delay
= my_pfc
->delay
;
665 for (i
= 0; i
< MAX_TRAFFIC_CLASS
; i
++) {
666 pfc
->requests
[i
] = adapter
->stats
.pxoffrxc
[i
];
667 pfc
->indications
[i
] = adapter
->stats
.pxofftxc
[i
];
673 static int ixgbe_dcbnl_ieee_setpfc(struct net_device
*dev
,
674 struct ieee_pfc
*pfc
)
676 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
679 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
682 if (!adapter
->ixgbe_ieee_pfc
) {
683 adapter
->ixgbe_ieee_pfc
= kmalloc(sizeof(struct ieee_pfc
),
685 if (!adapter
->ixgbe_ieee_pfc
)
689 memcpy(adapter
->ixgbe_ieee_pfc
, pfc
, sizeof(*adapter
->ixgbe_ieee_pfc
));
690 err
= ixgbe_dcb_hw_pfc_config(&adapter
->hw
, pfc
->pfc_en
);
694 static int ixgbe_dcbnl_ieee_setapp(struct net_device
*dev
,
697 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
699 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
702 dcb_setapp(dev
, app
);
705 if (app
->selector
== 1 && app
->protocol
== ETH_P_FCOE
&&
706 adapter
->fcoe
.tc
== app
->priority
)
707 ixgbe_dcbnl_set_all(dev
);
712 static u8
ixgbe_dcbnl_getdcbx(struct net_device
*dev
)
714 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
715 return adapter
->dcbx_cap
;
718 static u8
ixgbe_dcbnl_setdcbx(struct net_device
*dev
, u8 mode
)
720 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
721 struct ieee_ets ets
= {0};
722 struct ieee_pfc pfc
= {0};
724 /* no support for LLD_MANAGED modes or CEE+IEEE */
725 if ((mode
& DCB_CAP_DCBX_LLD_MANAGED
) ||
726 ((mode
& DCB_CAP_DCBX_VER_IEEE
) && (mode
& DCB_CAP_DCBX_VER_CEE
)) ||
727 !(mode
& DCB_CAP_DCBX_HOST
))
730 if (mode
== adapter
->dcbx_cap
)
733 adapter
->dcbx_cap
= mode
;
735 /* ETS and PFC defaults */
739 if (mode
& DCB_CAP_DCBX_VER_IEEE
) {
740 ixgbe_dcbnl_ieee_setets(dev
, &ets
);
741 ixgbe_dcbnl_ieee_setpfc(dev
, &pfc
);
742 } else if (mode
& DCB_CAP_DCBX_VER_CEE
) {
743 adapter
->dcb_set_bitmap
|= (BIT_PFC
& BIT_PG_TX
& BIT_PG_RX
);
744 ixgbe_dcbnl_set_all(dev
);
746 /* Drop into single TC mode strict priority as this
747 * indicates CEE and IEEE versions are disabled
749 ixgbe_dcbnl_ieee_setets(dev
, &ets
);
750 ixgbe_dcbnl_ieee_setpfc(dev
, &pfc
);
751 ixgbe_dcbnl_set_state(dev
, 0);
757 const struct dcbnl_rtnl_ops dcbnl_ops
= {
758 .ieee_getets
= ixgbe_dcbnl_ieee_getets
,
759 .ieee_setets
= ixgbe_dcbnl_ieee_setets
,
760 .ieee_getpfc
= ixgbe_dcbnl_ieee_getpfc
,
761 .ieee_setpfc
= ixgbe_dcbnl_ieee_setpfc
,
762 .ieee_setapp
= ixgbe_dcbnl_ieee_setapp
,
763 .getstate
= ixgbe_dcbnl_get_state
,
764 .setstate
= ixgbe_dcbnl_set_state
,
765 .getpermhwaddr
= ixgbe_dcbnl_get_perm_hw_addr
,
766 .setpgtccfgtx
= ixgbe_dcbnl_set_pg_tc_cfg_tx
,
767 .setpgbwgcfgtx
= ixgbe_dcbnl_set_pg_bwg_cfg_tx
,
768 .setpgtccfgrx
= ixgbe_dcbnl_set_pg_tc_cfg_rx
,
769 .setpgbwgcfgrx
= ixgbe_dcbnl_set_pg_bwg_cfg_rx
,
770 .getpgtccfgtx
= ixgbe_dcbnl_get_pg_tc_cfg_tx
,
771 .getpgbwgcfgtx
= ixgbe_dcbnl_get_pg_bwg_cfg_tx
,
772 .getpgtccfgrx
= ixgbe_dcbnl_get_pg_tc_cfg_rx
,
773 .getpgbwgcfgrx
= ixgbe_dcbnl_get_pg_bwg_cfg_rx
,
774 .setpfccfg
= ixgbe_dcbnl_set_pfc_cfg
,
775 .getpfccfg
= ixgbe_dcbnl_get_pfc_cfg
,
776 .setall
= ixgbe_dcbnl_set_all
,
777 .getcap
= ixgbe_dcbnl_getcap
,
778 .getnumtcs
= ixgbe_dcbnl_getnumtcs
,
779 .setnumtcs
= ixgbe_dcbnl_setnumtcs
,
780 .getpfcstate
= ixgbe_dcbnl_getpfcstate
,
781 .setpfcstate
= ixgbe_dcbnl_setpfcstate
,
782 .getapp
= ixgbe_dcbnl_getapp
,
783 .getdcbx
= ixgbe_dcbnl_getdcbx
,
784 .setdcbx
= ixgbe_dcbnl_setdcbx
,