1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 1999 - 2018 Intel Corporation. */
5 #include <linux/dcbnl.h>
6 #include "ixgbe_dcb_82598.h"
7 #include "ixgbe_dcb_82599.h"
8 #include "ixgbe_sriov.h"
10 /* Callbacks for DCB netlink in the kernel */
11 #define BIT_DCB_MODE 0x01
13 #define BIT_PG_RX 0x04
14 #define BIT_PG_TX 0x08
15 #define BIT_APP_UPCHG 0x10
16 #define BIT_LINKSPEED 0x80
18 /* Responses for the DCB_C_SET_ALL command */
19 #define DCB_HW_CHG_RST 0 /* DCB configuration changed with reset */
20 #define DCB_NO_HW_CHG 1 /* DCB configuration did not change */
21 #define DCB_HW_CHG 2 /* DCB configuration changed, no reset */
23 static int ixgbe_copy_dcb_cfg(struct ixgbe_adapter
*adapter
, int tc_max
)
25 struct ixgbe_dcb_config
*scfg
= &adapter
->temp_dcb_cfg
;
26 struct ixgbe_dcb_config
*dcfg
= &adapter
->dcb_cfg
;
27 struct tc_configuration
*src
= NULL
;
28 struct tc_configuration
*dst
= NULL
;
30 int tx
= DCB_TX_CONFIG
;
31 int rx
= DCB_RX_CONFIG
;
34 struct dcb_app app
= {
35 .selector
= DCB_APP_IDTYPE_ETHTYPE
,
36 .protocol
= ETH_P_FCOE
,
38 u8 up
= dcb_getapp(adapter
->netdev
, &app
);
40 if (up
&& !(up
& BIT(adapter
->fcoe
.up
)))
41 changes
|= BIT_APP_UPCHG
;
44 for (i
= DCB_PG_ATTR_TC_0
; i
< tc_max
+ DCB_PG_ATTR_TC_0
; i
++) {
45 src
= &scfg
->tc_config
[i
- DCB_PG_ATTR_TC_0
];
46 dst
= &dcfg
->tc_config
[i
- DCB_PG_ATTR_TC_0
];
48 if (dst
->path
[tx
].prio_type
!= src
->path
[tx
].prio_type
) {
49 dst
->path
[tx
].prio_type
= src
->path
[tx
].prio_type
;
53 if (dst
->path
[tx
].bwg_id
!= src
->path
[tx
].bwg_id
) {
54 dst
->path
[tx
].bwg_id
= src
->path
[tx
].bwg_id
;
58 if (dst
->path
[tx
].bwg_percent
!= src
->path
[tx
].bwg_percent
) {
59 dst
->path
[tx
].bwg_percent
= src
->path
[tx
].bwg_percent
;
63 if (dst
->path
[tx
].up_to_tc_bitmap
!=
64 src
->path
[tx
].up_to_tc_bitmap
) {
65 dst
->path
[tx
].up_to_tc_bitmap
=
66 src
->path
[tx
].up_to_tc_bitmap
;
67 changes
|= (BIT_PG_TX
| BIT_PFC
| BIT_APP_UPCHG
);
70 if (dst
->path
[rx
].prio_type
!= src
->path
[rx
].prio_type
) {
71 dst
->path
[rx
].prio_type
= src
->path
[rx
].prio_type
;
75 if (dst
->path
[rx
].bwg_id
!= src
->path
[rx
].bwg_id
) {
76 dst
->path
[rx
].bwg_id
= src
->path
[rx
].bwg_id
;
80 if (dst
->path
[rx
].bwg_percent
!= src
->path
[rx
].bwg_percent
) {
81 dst
->path
[rx
].bwg_percent
= src
->path
[rx
].bwg_percent
;
85 if (dst
->path
[rx
].up_to_tc_bitmap
!=
86 src
->path
[rx
].up_to_tc_bitmap
) {
87 dst
->path
[rx
].up_to_tc_bitmap
=
88 src
->path
[rx
].up_to_tc_bitmap
;
89 changes
|= (BIT_PG_RX
| BIT_PFC
| BIT_APP_UPCHG
);
93 for (i
= DCB_PG_ATTR_BW_ID_0
; i
< DCB_PG_ATTR_BW_ID_MAX
; i
++) {
94 j
= i
- DCB_PG_ATTR_BW_ID_0
;
95 if (dcfg
->bw_percentage
[tx
][j
] != scfg
->bw_percentage
[tx
][j
]) {
96 dcfg
->bw_percentage
[tx
][j
] = scfg
->bw_percentage
[tx
][j
];
99 if (dcfg
->bw_percentage
[rx
][j
] != scfg
->bw_percentage
[rx
][j
]) {
100 dcfg
->bw_percentage
[rx
][j
] = scfg
->bw_percentage
[rx
][j
];
101 changes
|= BIT_PG_RX
;
105 for (i
= DCB_PFC_UP_ATTR_0
; i
< DCB_PFC_UP_ATTR_MAX
; i
++) {
106 j
= i
- DCB_PFC_UP_ATTR_0
;
107 if (dcfg
->tc_config
[j
].dcb_pfc
!= scfg
->tc_config
[j
].dcb_pfc
) {
108 dcfg
->tc_config
[j
].dcb_pfc
= scfg
->tc_config
[j
].dcb_pfc
;
113 if (dcfg
->pfc_mode_enable
!= scfg
->pfc_mode_enable
) {
114 dcfg
->pfc_mode_enable
= scfg
->pfc_mode_enable
;
121 static u8
ixgbe_dcbnl_get_state(struct net_device
*netdev
)
123 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
125 return !!(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
);
128 static u8
ixgbe_dcbnl_set_state(struct net_device
*netdev
, u8 state
)
130 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
132 /* Fail command if not in CEE mode */
133 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
))
136 /* verify there is something to do, if not then exit */
137 if (!state
== !(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
))
140 return !!ixgbe_setup_tc(netdev
,
141 state
? adapter
->dcb_cfg
.num_tcs
.pg_tcs
: 0);
144 static void ixgbe_dcbnl_get_perm_hw_addr(struct net_device
*netdev
,
147 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
150 memset(perm_addr
, 0xff, MAX_ADDR_LEN
);
152 for (i
= 0; i
< netdev
->addr_len
; i
++)
153 perm_addr
[i
] = adapter
->hw
.mac
.perm_addr
[i
];
155 switch (adapter
->hw
.mac
.type
) {
156 case ixgbe_mac_82599EB
:
159 for (j
= 0; j
< netdev
->addr_len
; j
++, i
++)
160 perm_addr
[i
] = adapter
->hw
.mac
.san_addr
[j
];
167 static void ixgbe_dcbnl_set_pg_tc_cfg_tx(struct net_device
*netdev
, int tc
,
168 u8 prio
, u8 bwg_id
, u8 bw_pct
,
171 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
173 if (prio
!= DCB_ATTR_VALUE_UNDEFINED
)
174 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].prio_type
= prio
;
175 if (bwg_id
!= DCB_ATTR_VALUE_UNDEFINED
)
176 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
= bwg_id
;
177 if (bw_pct
!= DCB_ATTR_VALUE_UNDEFINED
)
178 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
=
180 if (up_map
!= DCB_ATTR_VALUE_UNDEFINED
)
181 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
=
185 static void ixgbe_dcbnl_set_pg_bwg_cfg_tx(struct net_device
*netdev
, int bwg_id
,
188 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
190 adapter
->temp_dcb_cfg
.bw_percentage
[0][bwg_id
] = bw_pct
;
193 static void ixgbe_dcbnl_set_pg_tc_cfg_rx(struct net_device
*netdev
, int tc
,
194 u8 prio
, u8 bwg_id
, u8 bw_pct
,
197 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
199 if (prio
!= DCB_ATTR_VALUE_UNDEFINED
)
200 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].prio_type
= prio
;
201 if (bwg_id
!= DCB_ATTR_VALUE_UNDEFINED
)
202 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
= bwg_id
;
203 if (bw_pct
!= DCB_ATTR_VALUE_UNDEFINED
)
204 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
=
206 if (up_map
!= DCB_ATTR_VALUE_UNDEFINED
)
207 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
=
211 static void ixgbe_dcbnl_set_pg_bwg_cfg_rx(struct net_device
*netdev
, int bwg_id
,
214 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
216 adapter
->temp_dcb_cfg
.bw_percentage
[1][bwg_id
] = bw_pct
;
219 static void ixgbe_dcbnl_get_pg_tc_cfg_tx(struct net_device
*netdev
, int tc
,
220 u8
*prio
, u8
*bwg_id
, u8
*bw_pct
,
223 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
225 *prio
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].prio_type
;
226 *bwg_id
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
;
227 *bw_pct
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
;
228 *up_map
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
;
231 static void ixgbe_dcbnl_get_pg_bwg_cfg_tx(struct net_device
*netdev
, int bwg_id
,
234 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
236 *bw_pct
= adapter
->dcb_cfg
.bw_percentage
[0][bwg_id
];
239 static void ixgbe_dcbnl_get_pg_tc_cfg_rx(struct net_device
*netdev
, int tc
,
240 u8
*prio
, u8
*bwg_id
, u8
*bw_pct
,
243 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
245 *prio
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].prio_type
;
246 *bwg_id
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
;
247 *bw_pct
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
;
248 *up_map
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
;
251 static void ixgbe_dcbnl_get_pg_bwg_cfg_rx(struct net_device
*netdev
, int bwg_id
,
254 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
256 *bw_pct
= adapter
->dcb_cfg
.bw_percentage
[1][bwg_id
];
259 static void ixgbe_dcbnl_set_pfc_cfg(struct net_device
*netdev
, int priority
,
262 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
264 adapter
->temp_dcb_cfg
.tc_config
[priority
].dcb_pfc
= setting
;
265 if (adapter
->temp_dcb_cfg
.tc_config
[priority
].dcb_pfc
!=
266 adapter
->dcb_cfg
.tc_config
[priority
].dcb_pfc
)
267 adapter
->temp_dcb_cfg
.pfc_mode_enable
= true;
270 static void ixgbe_dcbnl_get_pfc_cfg(struct net_device
*netdev
, int priority
,
273 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
275 *setting
= adapter
->dcb_cfg
.tc_config
[priority
].dcb_pfc
;
278 static void ixgbe_dcbnl_devreset(struct net_device
*dev
)
280 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
282 while (test_and_set_bit(__IXGBE_RESETTING
, &adapter
->state
))
283 usleep_range(1000, 2000);
285 if (netif_running(dev
))
286 dev
->netdev_ops
->ndo_stop(dev
);
288 ixgbe_clear_interrupt_scheme(adapter
);
289 ixgbe_init_interrupt_scheme(adapter
);
291 if (netif_running(dev
))
292 dev
->netdev_ops
->ndo_open(dev
);
294 clear_bit(__IXGBE_RESETTING
, &adapter
->state
);
297 static u8
ixgbe_dcbnl_set_all(struct net_device
*netdev
)
299 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
300 struct ixgbe_dcb_config
*dcb_cfg
= &adapter
->dcb_cfg
;
301 struct ixgbe_hw
*hw
= &adapter
->hw
;
302 int ret
= DCB_NO_HW_CHG
;
305 /* Fail command if not in CEE mode */
306 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
))
307 return DCB_NO_HW_CHG
;
309 adapter
->dcb_set_bitmap
|= ixgbe_copy_dcb_cfg(adapter
,
311 if (!adapter
->dcb_set_bitmap
)
312 return DCB_NO_HW_CHG
;
314 if (adapter
->dcb_set_bitmap
& (BIT_PG_TX
|BIT_PG_RX
)) {
315 u16 refill
[MAX_TRAFFIC_CLASS
], max
[MAX_TRAFFIC_CLASS
];
316 u8 bwg_id
[MAX_TRAFFIC_CLASS
], prio_type
[MAX_TRAFFIC_CLASS
];
317 /* Priority to TC mapping in CEE case default to 1:1 */
318 u8 prio_tc
[MAX_USER_PRIORITY
];
319 int max_frame
= adapter
->netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
322 if (adapter
->netdev
->features
& NETIF_F_FCOE_MTU
)
323 max_frame
= max(max_frame
, IXGBE_FCOE_JUMBO_FRAME_SIZE
);
326 ixgbe_dcb_calculate_tc_credits(hw
, dcb_cfg
, max_frame
,
328 ixgbe_dcb_calculate_tc_credits(hw
, dcb_cfg
, max_frame
,
331 ixgbe_dcb_unpack_refill(dcb_cfg
, DCB_TX_CONFIG
, refill
);
332 ixgbe_dcb_unpack_max(dcb_cfg
, max
);
333 ixgbe_dcb_unpack_bwgid(dcb_cfg
, DCB_TX_CONFIG
, bwg_id
);
334 ixgbe_dcb_unpack_prio(dcb_cfg
, DCB_TX_CONFIG
, prio_type
);
335 ixgbe_dcb_unpack_map(dcb_cfg
, DCB_TX_CONFIG
, prio_tc
);
337 ixgbe_dcb_hw_ets_config(hw
, refill
, max
, bwg_id
,
340 for (i
= 0; i
< IEEE_8021QAZ_MAX_TCS
; i
++)
341 netdev_set_prio_tc_map(netdev
, i
, prio_tc
[i
]);
343 ret
= DCB_HW_CHG_RST
;
346 if (adapter
->dcb_set_bitmap
& BIT_PFC
) {
347 if (dcb_cfg
->pfc_mode_enable
) {
349 u8 prio_tc
[MAX_USER_PRIORITY
];
351 ixgbe_dcb_unpack_map(dcb_cfg
, DCB_TX_CONFIG
, prio_tc
);
352 ixgbe_dcb_unpack_pfc(dcb_cfg
, &pfc_en
);
353 ixgbe_dcb_hw_pfc_config(hw
, pfc_en
, prio_tc
);
355 hw
->mac
.ops
.fc_enable(hw
);
358 ixgbe_set_rx_drop_en(adapter
);
364 /* Reprogam FCoE hardware offloads when the traffic class
365 * FCoE is using changes. This happens if the APP info
366 * changes or the up2tc mapping is updated.
368 if (adapter
->dcb_set_bitmap
& BIT_APP_UPCHG
) {
369 struct dcb_app app
= {
370 .selector
= DCB_APP_IDTYPE_ETHTYPE
,
371 .protocol
= ETH_P_FCOE
,
373 u8 up
= dcb_getapp(netdev
, &app
);
375 adapter
->fcoe
.up
= ffs(up
) - 1;
376 ixgbe_dcbnl_devreset(netdev
);
377 ret
= DCB_HW_CHG_RST
;
381 adapter
->dcb_set_bitmap
= 0x00;
385 static u8
ixgbe_dcbnl_getcap(struct net_device
*netdev
, int capid
, u8
*cap
)
387 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
390 case DCB_CAP_ATTR_PG
:
393 case DCB_CAP_ATTR_PFC
:
396 case DCB_CAP_ATTR_UP2TC
:
399 case DCB_CAP_ATTR_PG_TCS
:
402 case DCB_CAP_ATTR_PFC_TCS
:
405 case DCB_CAP_ATTR_GSP
:
408 case DCB_CAP_ATTR_BCN
:
411 case DCB_CAP_ATTR_DCBX
:
412 *cap
= adapter
->dcbx_cap
;
422 static int ixgbe_dcbnl_getnumtcs(struct net_device
*netdev
, int tcid
, u8
*num
)
424 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
426 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) {
428 case DCB_NUMTCS_ATTR_PG
:
429 *num
= adapter
->dcb_cfg
.num_tcs
.pg_tcs
;
431 case DCB_NUMTCS_ATTR_PFC
:
432 *num
= adapter
->dcb_cfg
.num_tcs
.pfc_tcs
;
444 static int ixgbe_dcbnl_setnumtcs(struct net_device
*netdev
, int tcid
, u8 num
)
449 static u8
ixgbe_dcbnl_getpfcstate(struct net_device
*netdev
)
451 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
453 return adapter
->dcb_cfg
.pfc_mode_enable
;
456 static void ixgbe_dcbnl_setpfcstate(struct net_device
*netdev
, u8 state
)
458 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
460 adapter
->temp_dcb_cfg
.pfc_mode_enable
= state
;
464 * ixgbe_dcbnl_getapp - retrieve the DCBX application user priority
465 * @netdev : the corresponding netdev
466 * @idtype : identifies the id as ether type or TCP/UDP port number
467 * @id: id is either ether type or TCP/UDP port number
469 * Returns : on success, returns a non-zero 802.1p user priority bitmap
470 * otherwise returns -EINVAL as the invalid user priority bitmap to indicate an
473 static int ixgbe_dcbnl_getapp(struct net_device
*netdev
, u8 idtype
, u16 id
)
475 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
476 struct dcb_app app
= {
481 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
))
484 return dcb_getapp(netdev
, &app
);
487 static int ixgbe_dcbnl_ieee_getets(struct net_device
*dev
,
488 struct ieee_ets
*ets
)
490 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
491 struct ieee_ets
*my_ets
= adapter
->ixgbe_ieee_ets
;
493 ets
->ets_cap
= adapter
->dcb_cfg
.num_tcs
.pg_tcs
;
495 /* No IEEE PFC settings available */
499 ets
->cbs
= my_ets
->cbs
;
500 memcpy(ets
->tc_tx_bw
, my_ets
->tc_tx_bw
, sizeof(ets
->tc_tx_bw
));
501 memcpy(ets
->tc_rx_bw
, my_ets
->tc_rx_bw
, sizeof(ets
->tc_rx_bw
));
502 memcpy(ets
->tc_tsa
, my_ets
->tc_tsa
, sizeof(ets
->tc_tsa
));
503 memcpy(ets
->prio_tc
, my_ets
->prio_tc
, sizeof(ets
->prio_tc
));
507 static int ixgbe_dcbnl_ieee_setets(struct net_device
*dev
,
508 struct ieee_ets
*ets
)
510 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
511 int max_frame
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
516 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
519 if (!adapter
->ixgbe_ieee_ets
) {
520 adapter
->ixgbe_ieee_ets
= kmalloc(sizeof(struct ieee_ets
),
522 if (!adapter
->ixgbe_ieee_ets
)
525 /* initialize UP2TC mappings to invalid value */
526 for (i
= 0; i
< IEEE_8021QAZ_MAX_TCS
; i
++)
527 adapter
->ixgbe_ieee_ets
->prio_tc
[i
] =
528 IEEE_8021QAZ_MAX_TCS
;
529 /* if possible update UP2TC mappings from HW */
530 ixgbe_dcb_read_rtrup2tc(&adapter
->hw
,
531 adapter
->ixgbe_ieee_ets
->prio_tc
);
534 for (i
= 0; i
< IEEE_8021QAZ_MAX_TCS
; i
++) {
535 if (ets
->prio_tc
[i
] > max_tc
)
536 max_tc
= ets
->prio_tc
[i
];
537 if (ets
->prio_tc
[i
] != adapter
->ixgbe_ieee_ets
->prio_tc
[i
])
541 memcpy(adapter
->ixgbe_ieee_ets
, ets
, sizeof(*adapter
->ixgbe_ieee_ets
));
546 if (max_tc
> adapter
->dcb_cfg
.num_tcs
.pg_tcs
)
549 if (max_tc
!= adapter
->hw_tcs
) {
550 err
= ixgbe_setup_tc(dev
, max_tc
);
553 } else if (map_chg
) {
554 ixgbe_dcbnl_devreset(dev
);
557 return ixgbe_dcb_hw_ets(&adapter
->hw
, ets
, max_frame
);
560 static int ixgbe_dcbnl_ieee_getpfc(struct net_device
*dev
,
561 struct ieee_pfc
*pfc
)
563 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
564 struct ieee_pfc
*my_pfc
= adapter
->ixgbe_ieee_pfc
;
567 pfc
->pfc_cap
= adapter
->dcb_cfg
.num_tcs
.pfc_tcs
;
569 /* No IEEE PFC settings available */
573 pfc
->pfc_en
= my_pfc
->pfc_en
;
574 pfc
->mbc
= my_pfc
->mbc
;
575 pfc
->delay
= my_pfc
->delay
;
577 for (i
= 0; i
< MAX_TRAFFIC_CLASS
; i
++) {
578 pfc
->requests
[i
] = adapter
->stats
.pxoffrxc
[i
];
579 pfc
->indications
[i
] = adapter
->stats
.pxofftxc
[i
];
585 static int ixgbe_dcbnl_ieee_setpfc(struct net_device
*dev
,
586 struct ieee_pfc
*pfc
)
588 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
589 struct ixgbe_hw
*hw
= &adapter
->hw
;
593 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
596 if (!adapter
->ixgbe_ieee_pfc
) {
597 adapter
->ixgbe_ieee_pfc
= kmalloc(sizeof(struct ieee_pfc
),
599 if (!adapter
->ixgbe_ieee_pfc
)
603 prio_tc
= adapter
->ixgbe_ieee_ets
->prio_tc
;
604 memcpy(adapter
->ixgbe_ieee_pfc
, pfc
, sizeof(*adapter
->ixgbe_ieee_pfc
));
606 /* Enable link flow control parameters if PFC is disabled */
608 err
= ixgbe_dcb_hw_pfc_config(hw
, pfc
->pfc_en
, prio_tc
);
610 err
= hw
->mac
.ops
.fc_enable(hw
);
612 ixgbe_set_rx_drop_en(adapter
);
617 static int ixgbe_dcbnl_ieee_setapp(struct net_device
*dev
,
620 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
623 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
626 err
= dcb_ieee_setapp(dev
, app
);
631 if (app
->selector
== IEEE_8021QAZ_APP_SEL_ETHERTYPE
&&
632 app
->protocol
== ETH_P_FCOE
) {
633 u8 app_mask
= dcb_ieee_getapp_mask(dev
, app
);
635 if (app_mask
& BIT(adapter
->fcoe
.up
))
638 adapter
->fcoe
.up
= app
->priority
;
639 ixgbe_dcbnl_devreset(dev
);
643 /* VF devices should use default UP when available */
644 if (app
->selector
== IEEE_8021QAZ_APP_SEL_ETHERTYPE
&&
645 app
->protocol
== 0) {
648 adapter
->default_up
= app
->priority
;
650 for (vf
= 0; vf
< adapter
->num_vfs
; vf
++) {
651 struct vf_data_storage
*vfinfo
= &adapter
->vfinfo
[vf
];
654 ixgbe_set_vmvir(adapter
, vfinfo
->pf_vlan
,
662 static int ixgbe_dcbnl_ieee_delapp(struct net_device
*dev
,
665 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
668 if (!(adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
))
671 err
= dcb_ieee_delapp(dev
, app
);
674 if (!err
&& app
->selector
== IEEE_8021QAZ_APP_SEL_ETHERTYPE
&&
675 app
->protocol
== ETH_P_FCOE
) {
676 u8 app_mask
= dcb_ieee_getapp_mask(dev
, app
);
678 if (app_mask
& BIT(adapter
->fcoe
.up
))
681 adapter
->fcoe
.up
= app_mask
?
682 ffs(app_mask
) - 1 : IXGBE_FCOE_DEFTC
;
683 ixgbe_dcbnl_devreset(dev
);
686 /* IF default priority is being removed clear VF default UP */
687 if (app
->selector
== IEEE_8021QAZ_APP_SEL_ETHERTYPE
&&
688 app
->protocol
== 0 && adapter
->default_up
== app
->priority
) {
690 long unsigned int app_mask
= dcb_ieee_getapp_mask(dev
, app
);
691 int qos
= app_mask
? find_first_bit(&app_mask
, 8) : 0;
693 adapter
->default_up
= qos
;
695 for (vf
= 0; vf
< adapter
->num_vfs
; vf
++) {
696 struct vf_data_storage
*vfinfo
= &adapter
->vfinfo
[vf
];
699 ixgbe_set_vmvir(adapter
, vfinfo
->pf_vlan
,
707 static u8
ixgbe_dcbnl_getdcbx(struct net_device
*dev
)
709 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
710 return adapter
->dcbx_cap
;
713 static u8
ixgbe_dcbnl_setdcbx(struct net_device
*dev
, u8 mode
)
715 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
716 struct ieee_ets ets
= {0};
717 struct ieee_pfc pfc
= {0};
720 /* no support for LLD_MANAGED modes or CEE+IEEE */
721 if ((mode
& DCB_CAP_DCBX_LLD_MANAGED
) ||
722 ((mode
& DCB_CAP_DCBX_VER_IEEE
) && (mode
& DCB_CAP_DCBX_VER_CEE
)) ||
723 !(mode
& DCB_CAP_DCBX_HOST
))
726 if (mode
== adapter
->dcbx_cap
)
729 adapter
->dcbx_cap
= mode
;
731 /* ETS and PFC defaults */
735 if (mode
& DCB_CAP_DCBX_VER_IEEE
) {
736 ixgbe_dcbnl_ieee_setets(dev
, &ets
);
737 ixgbe_dcbnl_ieee_setpfc(dev
, &pfc
);
738 } else if (mode
& DCB_CAP_DCBX_VER_CEE
) {
739 u8 mask
= BIT_PFC
| BIT_PG_TX
| BIT_PG_RX
| BIT_APP_UPCHG
;
741 adapter
->dcb_set_bitmap
|= mask
;
742 ixgbe_dcbnl_set_all(dev
);
744 /* Drop into single TC mode strict priority as this
745 * indicates CEE and IEEE versions are disabled
747 ixgbe_dcbnl_ieee_setets(dev
, &ets
);
748 ixgbe_dcbnl_ieee_setpfc(dev
, &pfc
);
749 err
= ixgbe_setup_tc(dev
, 0);
755 const struct dcbnl_rtnl_ops ixgbe_dcbnl_ops
= {
756 .ieee_getets
= ixgbe_dcbnl_ieee_getets
,
757 .ieee_setets
= ixgbe_dcbnl_ieee_setets
,
758 .ieee_getpfc
= ixgbe_dcbnl_ieee_getpfc
,
759 .ieee_setpfc
= ixgbe_dcbnl_ieee_setpfc
,
760 .ieee_setapp
= ixgbe_dcbnl_ieee_setapp
,
761 .ieee_delapp
= ixgbe_dcbnl_ieee_delapp
,
762 .getstate
= ixgbe_dcbnl_get_state
,
763 .setstate
= ixgbe_dcbnl_set_state
,
764 .getpermhwaddr
= ixgbe_dcbnl_get_perm_hw_addr
,
765 .setpgtccfgtx
= ixgbe_dcbnl_set_pg_tc_cfg_tx
,
766 .setpgbwgcfgtx
= ixgbe_dcbnl_set_pg_bwg_cfg_tx
,
767 .setpgtccfgrx
= ixgbe_dcbnl_set_pg_tc_cfg_rx
,
768 .setpgbwgcfgrx
= ixgbe_dcbnl_set_pg_bwg_cfg_rx
,
769 .getpgtccfgtx
= ixgbe_dcbnl_get_pg_tc_cfg_tx
,
770 .getpgbwgcfgtx
= ixgbe_dcbnl_get_pg_bwg_cfg_tx
,
771 .getpgtccfgrx
= ixgbe_dcbnl_get_pg_tc_cfg_rx
,
772 .getpgbwgcfgrx
= ixgbe_dcbnl_get_pg_bwg_cfg_rx
,
773 .setpfccfg
= ixgbe_dcbnl_set_pfc_cfg
,
774 .getpfccfg
= ixgbe_dcbnl_get_pfc_cfg
,
775 .setall
= ixgbe_dcbnl_set_all
,
776 .getcap
= ixgbe_dcbnl_getcap
,
777 .getnumtcs
= ixgbe_dcbnl_getnumtcs
,
778 .setnumtcs
= ixgbe_dcbnl_setnumtcs
,
779 .getpfcstate
= ixgbe_dcbnl_getpfcstate
,
780 .setpfcstate
= ixgbe_dcbnl_setpfcstate
,
781 .getapp
= ixgbe_dcbnl_getapp
,
782 .getdcbx
= ixgbe_dcbnl_getdcbx
,
783 .setdcbx
= ixgbe_dcbnl_setdcbx
,