1 /* bnx2x_dcb.c: Broadcom Everest network driver.
3 * Copyright 2009-2011 Broadcom Corporation
5 * Unless you and Broadcom execute a separate written software license
6 * agreement governing use of this software, this software is licensed to you
7 * under the terms of the GNU General Public License version 2, available
8 * at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL").
10 * Notwithstanding the above, under no circumstances may you combine this
11 * software in any way with any other Broadcom software provided under a
12 * license other than the GPL, without Broadcom's express prior written
15 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
16 * Written by: Dmitry Kravkov
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #include <linux/netdevice.h>
23 #include <linux/types.h>
24 #include <linux/errno.h>
25 #include <linux/rtnetlink.h>
26 #include <net/dcbnl.h>
29 #include "bnx2x_cmn.h"
30 #include "bnx2x_dcb.h"
32 /* forward declarations of dcbx related functions */
33 static int bnx2x_dcbx_stop_hw_tx(struct bnx2x
*bp
);
34 static void bnx2x_pfc_set_pfc(struct bnx2x
*bp
);
35 static void bnx2x_dcbx_update_ets_params(struct bnx2x
*bp
);
36 static int bnx2x_dcbx_resume_hw_tx(struct bnx2x
*bp
);
37 static void bnx2x_dcbx_get_ets_pri_pg_tbl(struct bnx2x
*bp
,
38 u32
*set_configuration_ets_pg
,
40 static void bnx2x_dcbx_get_num_pg_traf_type(struct bnx2x
*bp
,
41 u32
*pg_pri_orginal_spread
,
42 struct pg_help_data
*help_data
);
43 static void bnx2x_dcbx_fill_cos_params(struct bnx2x
*bp
,
44 struct pg_help_data
*help_data
,
45 struct dcbx_ets_feature
*ets
,
46 u32
*pg_pri_orginal_spread
);
47 static void bnx2x_dcbx_separate_pauseable_from_non(struct bnx2x
*bp
,
48 struct cos_help_data
*cos_data
,
49 u32
*pg_pri_orginal_spread
,
50 struct dcbx_ets_feature
*ets
);
51 static void bnx2x_dcbx_fw_struct(struct bnx2x
*bp
,
52 struct bnx2x_func_tx_start_params
*);
54 /* helpers: read/write len bytes from addr into buff by REG_RD/REG_WR */
55 static void bnx2x_read_data(struct bnx2x
*bp
, u32
*buff
,
59 for (i
= 0; i
< len
; i
+= 4, buff
++)
60 *buff
= REG_RD(bp
, addr
+ i
);
63 static void bnx2x_write_data(struct bnx2x
*bp
, u32
*buff
,
67 for (i
= 0; i
< len
; i
+= 4, buff
++)
68 REG_WR(bp
, addr
+ i
, *buff
);
71 static void bnx2x_pfc_set(struct bnx2x
*bp
)
73 struct bnx2x_nig_brb_pfc_port_params pfc_params
= {0};
77 pfc_params
.num_of_rx_cos_priority_mask
=
78 bp
->dcbx_port_params
.ets
.num_of_cos
;
80 /* Tx COS configuration */
81 for (i
= 0; i
< bp
->dcbx_port_params
.ets
.num_of_cos
; i
++)
83 * We configure only the pauseable bits (non pauseable aren't
84 * configured at all) it's done to avoid false pauses from
87 pfc_params
.rx_cos_priority_mask
[i
] =
88 bp
->dcbx_port_params
.ets
.cos_params
[i
].pri_bitmask
89 & DCBX_PFC_PRI_PAUSE_MASK(bp
);
92 * Rx COS configuration
93 * Changing PFC RX configuration .
94 * In RX COS0 will always be configured to lossy and COS1 to lossless
96 for (i
= 0 ; i
< MAX_PFC_PRIORITIES
; i
++) {
99 if (pri_bit
& DCBX_PFC_PRI_PAUSE_MASK(bp
))
103 pfc_params
.pkt_priority_to_cos
= val
;
106 pfc_params
.llfc_low_priority_classes
= 0;
108 pfc_params
.llfc_high_priority_classes
= DCBX_PFC_PRI_PAUSE_MASK(bp
);
110 /* BRB configuration */
111 pfc_params
.cos0_pauseable
= false;
112 pfc_params
.cos1_pauseable
= true;
114 bnx2x_acquire_phy_lock(bp
);
115 bp
->link_params
.feature_config_flags
|= FEATURE_CONFIG_PFC_ENABLED
;
116 bnx2x_update_pfc(&bp
->link_params
, &bp
->link_vars
, &pfc_params
);
117 bnx2x_release_phy_lock(bp
);
120 static void bnx2x_pfc_clear(struct bnx2x
*bp
)
122 struct bnx2x_nig_brb_pfc_port_params nig_params
= {0};
123 nig_params
.pause_enable
= 1;
125 if (bp
->flags
& SAFC_TX_FLAG
) {
126 u32 high
= 0, low
= 0;
129 for (i
= 0; i
< BNX2X_MAX_PRIORITY
; i
++) {
130 if (bp
->pri_map
[i
] == 1)
132 if (bp
->pri_map
[i
] == 0)
136 nig_params
.llfc_low_priority_classes
= high
;
137 nig_params
.llfc_low_priority_classes
= low
;
139 nig_params
.pause_enable
= 0;
140 nig_params
.llfc_enable
= 1;
141 nig_params
.llfc_out_en
= 1;
143 #endif /* BNX2X_SAFC */
144 bnx2x_acquire_phy_lock(bp
);
145 bp
->link_params
.feature_config_flags
&= ~FEATURE_CONFIG_PFC_ENABLED
;
146 bnx2x_update_pfc(&bp
->link_params
, &bp
->link_vars
, &nig_params
);
147 bnx2x_release_phy_lock(bp
);
150 static void bnx2x_dump_dcbx_drv_param(struct bnx2x
*bp
,
151 struct dcbx_features
*features
,
155 DP(NETIF_MSG_LINK
, "local_mib.error %x\n", error
);
159 "local_mib.features.ets.enabled %x\n", features
->ets
.enabled
);
160 for (i
= 0; i
< DCBX_MAX_NUM_PG_BW_ENTRIES
; i
++)
162 "local_mib.features.ets.pg_bw_tbl[%d] %d\n", i
,
163 DCBX_PG_BW_GET(features
->ets
.pg_bw_tbl
, i
));
164 for (i
= 0; i
< DCBX_MAX_NUM_PRI_PG_ENTRIES
; i
++)
166 "local_mib.features.ets.pri_pg_tbl[%d] %d\n", i
,
167 DCBX_PRI_PG_GET(features
->ets
.pri_pg_tbl
, i
));
170 DP(NETIF_MSG_LINK
, "dcbx_features.pfc.pri_en_bitmap %x\n",
171 features
->pfc
.pri_en_bitmap
);
172 DP(NETIF_MSG_LINK
, "dcbx_features.pfc.pfc_caps %x\n",
173 features
->pfc
.pfc_caps
);
174 DP(NETIF_MSG_LINK
, "dcbx_features.pfc.enabled %x\n",
175 features
->pfc
.enabled
);
177 DP(NETIF_MSG_LINK
, "dcbx_features.app.default_pri %x\n",
178 features
->app
.default_pri
);
179 DP(NETIF_MSG_LINK
, "dcbx_features.app.tc_supported %x\n",
180 features
->app
.tc_supported
);
181 DP(NETIF_MSG_LINK
, "dcbx_features.app.enabled %x\n",
182 features
->app
.enabled
);
183 for (i
= 0; i
< DCBX_MAX_APP_PROTOCOL
; i
++) {
185 "dcbx_features.app.app_pri_tbl[%x].app_id %x\n",
186 i
, features
->app
.app_pri_tbl
[i
].app_id
);
188 "dcbx_features.app.app_pri_tbl[%x].pri_bitmap %x\n",
189 i
, features
->app
.app_pri_tbl
[i
].pri_bitmap
);
191 "dcbx_features.app.app_pri_tbl[%x].appBitfield %x\n",
192 i
, features
->app
.app_pri_tbl
[i
].appBitfield
);
196 static void bnx2x_dcbx_get_ap_priority(struct bnx2x
*bp
,
200 u32 pri
= MAX_PFC_PRIORITIES
;
201 u32 index
= MAX_PFC_PRIORITIES
- 1;
203 u32
*ttp
= bp
->dcbx_port_params
.app
.traffic_type_priority
;
205 /* Choose the highest priority */
206 while ((MAX_PFC_PRIORITIES
== pri
) && (0 != index
)) {
207 pri_mask
= 1 << index
;
208 if (GET_FLAGS(pri_bitmap
, pri_mask
))
213 if (pri
< MAX_PFC_PRIORITIES
)
214 ttp
[llfc_traf_type
] = max_t(u32
, ttp
[llfc_traf_type
], pri
);
217 static void bnx2x_dcbx_get_ap_feature(struct bnx2x
*bp
,
218 struct dcbx_app_priority_feature
*app
,
221 u32
*ttp
= bp
->dcbx_port_params
.app
.traffic_type_priority
;
223 if (GET_FLAGS(error
, DCBX_LOCAL_APP_ERROR
))
224 DP(NETIF_MSG_LINK
, "DCBX_LOCAL_APP_ERROR\n");
226 if (GET_FLAGS(error
, DCBX_LOCAL_APP_MISMATCH
))
227 DP(NETIF_MSG_LINK
, "DCBX_LOCAL_APP_MISMATCH\n");
230 !GET_FLAGS(error
, DCBX_LOCAL_APP_ERROR
| DCBX_LOCAL_APP_MISMATCH
)) {
232 bp
->dcbx_port_params
.app
.enabled
= true;
234 for (index
= 0 ; index
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
; index
++)
237 if (app
->default_pri
< MAX_PFC_PRIORITIES
)
238 ttp
[LLFC_TRAFFIC_TYPE_NW
] = app
->default_pri
;
240 for (index
= 0 ; index
< DCBX_MAX_APP_PROTOCOL
; index
++) {
241 struct dcbx_app_priority_entry
*entry
=
244 if (GET_FLAGS(entry
[index
].appBitfield
,
245 DCBX_APP_SF_ETH_TYPE
) &&
246 ETH_TYPE_FCOE
== entry
[index
].app_id
)
247 bnx2x_dcbx_get_ap_priority(bp
,
248 entry
[index
].pri_bitmap
,
249 LLFC_TRAFFIC_TYPE_FCOE
);
251 if (GET_FLAGS(entry
[index
].appBitfield
,
253 TCP_PORT_ISCSI
== entry
[index
].app_id
)
254 bnx2x_dcbx_get_ap_priority(bp
,
255 entry
[index
].pri_bitmap
,
256 LLFC_TRAFFIC_TYPE_ISCSI
);
259 DP(NETIF_MSG_LINK
, "DCBX_LOCAL_APP_DISABLED\n");
260 bp
->dcbx_port_params
.app
.enabled
= false;
261 for (index
= 0 ; index
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
; index
++)
262 ttp
[index
] = INVALID_TRAFFIC_TYPE_PRIORITY
;
266 static void bnx2x_dcbx_get_ets_feature(struct bnx2x
*bp
,
267 struct dcbx_ets_feature
*ets
,
270 u32 pg_pri_orginal_spread
[DCBX_MAX_NUM_PG_BW_ENTRIES
] = {0};
271 struct pg_help_data pg_help_data
;
272 struct bnx2x_dcbx_cos_params
*cos_params
=
273 bp
->dcbx_port_params
.ets
.cos_params
;
275 memset(&pg_help_data
, 0, sizeof(struct pg_help_data
));
278 if (GET_FLAGS(error
, DCBX_LOCAL_ETS_ERROR
))
279 DP(NETIF_MSG_LINK
, "DCBX_LOCAL_ETS_ERROR\n");
282 /* Clean up old settings of ets on COS */
283 for (i
= 0; i
< ARRAY_SIZE(bp
->dcbx_port_params
.ets
.cos_params
) ; i
++) {
284 cos_params
[i
].pauseable
= false;
285 cos_params
[i
].strict
= BNX2X_DCBX_STRICT_INVALID
;
286 cos_params
[i
].bw_tbl
= DCBX_INVALID_COS_BW
;
287 cos_params
[i
].pri_bitmask
= 0;
290 if (bp
->dcbx_port_params
.app
.enabled
&&
291 !GET_FLAGS(error
, DCBX_LOCAL_ETS_ERROR
) &&
293 DP(NETIF_MSG_LINK
, "DCBX_LOCAL_ETS_ENABLE\n");
294 bp
->dcbx_port_params
.ets
.enabled
= true;
296 bnx2x_dcbx_get_ets_pri_pg_tbl(bp
,
297 pg_pri_orginal_spread
,
300 bnx2x_dcbx_get_num_pg_traf_type(bp
,
301 pg_pri_orginal_spread
,
304 bnx2x_dcbx_fill_cos_params(bp
, &pg_help_data
,
305 ets
, pg_pri_orginal_spread
);
308 DP(NETIF_MSG_LINK
, "DCBX_LOCAL_ETS_DISABLED\n");
309 bp
->dcbx_port_params
.ets
.enabled
= false;
310 ets
->pri_pg_tbl
[0] = 0;
312 for (i
= 0; i
< DCBX_MAX_NUM_PRI_PG_ENTRIES
; i
++)
313 DCBX_PG_BW_SET(ets
->pg_bw_tbl
, i
, 1);
317 static void bnx2x_dcbx_get_pfc_feature(struct bnx2x
*bp
,
318 struct dcbx_pfc_feature
*pfc
, u32 error
)
321 if (GET_FLAGS(error
, DCBX_LOCAL_PFC_ERROR
))
322 DP(NETIF_MSG_LINK
, "DCBX_LOCAL_PFC_ERROR\n");
324 if (bp
->dcbx_port_params
.app
.enabled
&&
325 !GET_FLAGS(error
, DCBX_LOCAL_PFC_ERROR
| DCBX_LOCAL_PFC_MISMATCH
) &&
327 bp
->dcbx_port_params
.pfc
.enabled
= true;
328 bp
->dcbx_port_params
.pfc
.priority_non_pauseable_mask
=
329 ~(pfc
->pri_en_bitmap
);
331 DP(NETIF_MSG_LINK
, "DCBX_LOCAL_PFC_DISABLED\n");
332 bp
->dcbx_port_params
.pfc
.enabled
= false;
333 bp
->dcbx_port_params
.pfc
.priority_non_pauseable_mask
= 0;
337 /* maps unmapped priorities to to the same COS as L2 */
338 static void bnx2x_dcbx_map_nw(struct bnx2x
*bp
)
341 u32 unmapped
= (1 << MAX_PFC_PRIORITIES
) - 1; /* all ones */
342 u32
*ttp
= bp
->dcbx_port_params
.app
.traffic_type_priority
;
343 u32 nw_prio
= 1 << ttp
[LLFC_TRAFFIC_TYPE_NW
];
344 struct bnx2x_dcbx_cos_params
*cos_params
=
345 bp
->dcbx_port_params
.ets
.cos_params
;
347 /* get unmapped priorities by clearing mapped bits */
348 for (i
= 0; i
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
; i
++)
349 unmapped
&= ~(1 << ttp
[i
]);
351 /* find cos for nw prio and extend it with unmapped */
352 for (i
= 0; i
< ARRAY_SIZE(bp
->dcbx_port_params
.ets
.cos_params
); i
++) {
353 if (cos_params
[i
].pri_bitmask
& nw_prio
) {
354 /* extend the bitmask with unmapped */
356 "cos %d extended with 0x%08x\n", i
, unmapped
);
357 cos_params
[i
].pri_bitmask
|= unmapped
;
363 static void bnx2x_get_dcbx_drv_param(struct bnx2x
*bp
,
364 struct dcbx_features
*features
,
367 bnx2x_dcbx_get_ap_feature(bp
, &features
->app
, error
);
369 bnx2x_dcbx_get_pfc_feature(bp
, &features
->pfc
, error
);
371 bnx2x_dcbx_get_ets_feature(bp
, &features
->ets
, error
);
373 bnx2x_dcbx_map_nw(bp
);
376 #define DCBX_LOCAL_MIB_MAX_TRY_READ (100)
377 static int bnx2x_dcbx_read_mib(struct bnx2x
*bp
,
382 int max_try_read
= 0;
383 u32 mib_size
, prefix_seq_num
, suffix_seq_num
;
384 struct lldp_remote_mib
*remote_mib
;
385 struct lldp_local_mib
*local_mib
;
388 switch (read_mib_type
) {
389 case DCBX_READ_LOCAL_MIB
:
390 mib_size
= sizeof(struct lldp_local_mib
);
392 case DCBX_READ_REMOTE_MIB
:
393 mib_size
= sizeof(struct lldp_remote_mib
);
399 offset
+= BP_PORT(bp
) * mib_size
;
402 bnx2x_read_data(bp
, base_mib_addr
, offset
, mib_size
);
406 switch (read_mib_type
) {
407 case DCBX_READ_LOCAL_MIB
:
408 local_mib
= (struct lldp_local_mib
*) base_mib_addr
;
409 prefix_seq_num
= local_mib
->prefix_seq_num
;
410 suffix_seq_num
= local_mib
->suffix_seq_num
;
412 case DCBX_READ_REMOTE_MIB
:
413 remote_mib
= (struct lldp_remote_mib
*) base_mib_addr
;
414 prefix_seq_num
= remote_mib
->prefix_seq_num
;
415 suffix_seq_num
= remote_mib
->suffix_seq_num
;
420 } while ((prefix_seq_num
!= suffix_seq_num
) &&
421 (max_try_read
< DCBX_LOCAL_MIB_MAX_TRY_READ
));
423 if (max_try_read
>= DCBX_LOCAL_MIB_MAX_TRY_READ
) {
424 BNX2X_ERR("MIB could not be read\n");
431 static void bnx2x_pfc_set_pfc(struct bnx2x
*bp
)
433 if (bp
->dcbx_port_params
.pfc
.enabled
&&
434 !(bp
->dcbx_error
& DCBX_REMOTE_MIB_ERROR
))
436 * 1. Fills up common PFC structures if required
437 * 2. Configure NIG, MAC and BRB via the elink
444 static int bnx2x_dcbx_stop_hw_tx(struct bnx2x
*bp
)
446 struct bnx2x_func_state_params func_params
= {0};
448 func_params
.f_obj
= &bp
->func_obj
;
449 func_params
.cmd
= BNX2X_F_CMD_TX_STOP
;
451 DP(NETIF_MSG_LINK
, "STOP TRAFFIC\n");
452 return bnx2x_func_state_change(bp
, &func_params
);
455 static int bnx2x_dcbx_resume_hw_tx(struct bnx2x
*bp
)
457 struct bnx2x_func_state_params func_params
= {0};
458 struct bnx2x_func_tx_start_params
*tx_params
=
459 &func_params
.params
.tx_start
;
461 func_params
.f_obj
= &bp
->func_obj
;
462 func_params
.cmd
= BNX2X_F_CMD_TX_START
;
464 bnx2x_dcbx_fw_struct(bp
, tx_params
);
466 DP(NETIF_MSG_LINK
, "START TRAFFIC\n");
467 return bnx2x_func_state_change(bp
, &func_params
);
470 static void bnx2x_dcbx_2cos_limit_update_ets_config(struct bnx2x
*bp
)
472 struct bnx2x_dcbx_pg_params
*ets
= &(bp
->dcbx_port_params
.ets
);
475 if (ets
->num_of_cos
== 0 || ets
->num_of_cos
> DCBX_COS_MAX_NUM_E2
) {
476 BNX2X_ERR("Illegal number of COSes %d\n", ets
->num_of_cos
);
480 /* valid COS entries */
481 if (ets
->num_of_cos
== 1) /* no ETS */
485 if (((BNX2X_DCBX_STRICT_INVALID
== ets
->cos_params
[0].strict
) &&
486 (DCBX_INVALID_COS_BW
== ets
->cos_params
[0].bw_tbl
)) ||
487 ((BNX2X_DCBX_STRICT_INVALID
== ets
->cos_params
[1].strict
) &&
488 (DCBX_INVALID_COS_BW
== ets
->cos_params
[1].bw_tbl
))) {
489 BNX2X_ERR("all COS should have at least bw_limit or strict"
490 "ets->cos_params[0].strict= %x"
491 "ets->cos_params[0].bw_tbl= %x"
492 "ets->cos_params[1].strict= %x"
493 "ets->cos_params[1].bw_tbl= %x",
494 ets
->cos_params
[0].strict
,
495 ets
->cos_params
[0].bw_tbl
,
496 ets
->cos_params
[1].strict
,
497 ets
->cos_params
[1].bw_tbl
);
500 /* If we join a group and there is bw_tbl and strict then bw rules */
501 if ((DCBX_INVALID_COS_BW
!= ets
->cos_params
[0].bw_tbl
) &&
502 (DCBX_INVALID_COS_BW
!= ets
->cos_params
[1].bw_tbl
)) {
503 u32 bw_tbl_0
= ets
->cos_params
[0].bw_tbl
;
504 u32 bw_tbl_1
= ets
->cos_params
[1].bw_tbl
;
505 /* Do not allow 0-100 configuration
506 * since PBF does not support it
512 } else if (bw_tbl_1
== 0) {
517 bnx2x_ets_bw_limit(&bp
->link_params
, bw_tbl_0
, bw_tbl_1
);
519 if (ets
->cos_params
[0].strict
== BNX2X_DCBX_STRICT_COS_HIGHEST
)
520 rc
= bnx2x_ets_strict(&bp
->link_params
, 0);
521 else if (ets
->cos_params
[1].strict
522 == BNX2X_DCBX_STRICT_COS_HIGHEST
)
523 rc
= bnx2x_ets_strict(&bp
->link_params
, 1);
525 BNX2X_ERR("update_ets_params failed\n");
530 * In E3B0 the configuration may have more than 2 COS.
532 void bnx2x_dcbx_update_ets_config(struct bnx2x
*bp
)
534 struct bnx2x_dcbx_pg_params
*ets
= &(bp
->dcbx_port_params
.ets
);
535 struct bnx2x_ets_params ets_params
= { 0 };
538 ets_params
.num_of_cos
= ets
->num_of_cos
;
540 for (i
= 0; i
< ets
->num_of_cos
; i
++) {
542 if (ets
->cos_params
[i
].strict
!= BNX2X_DCBX_STRICT_INVALID
) {
543 if (ets
->cos_params
[i
].bw_tbl
!= DCBX_INVALID_COS_BW
) {
544 BNX2X_ERR("COS can't be not BW and not SP\n");
548 ets_params
.cos
[i
].state
= bnx2x_cos_state_strict
;
549 ets_params
.cos
[i
].params
.sp_params
.pri
=
550 ets
->cos_params
[i
].strict
;
551 } else { /* COS is BW */
552 if (ets
->cos_params
[i
].bw_tbl
== DCBX_INVALID_COS_BW
) {
553 BNX2X_ERR("COS can't be not BW and not SP\n");
556 ets_params
.cos
[i
].state
= bnx2x_cos_state_bw
;
557 ets_params
.cos
[i
].params
.bw_params
.bw
=
558 (u8
)ets
->cos_params
[i
].bw_tbl
;
562 /* Configure the ETS in HW */
563 if (bnx2x_ets_e3b0_config(&bp
->link_params
, &bp
->link_vars
,
565 BNX2X_ERR("bnx2x_ets_e3b0_config failed\n");
566 bnx2x_ets_disabled(&bp
->link_params
, &bp
->link_vars
);
570 static void bnx2x_dcbx_update_ets_params(struct bnx2x
*bp
)
572 bnx2x_ets_disabled(&bp
->link_params
, &bp
->link_vars
);
574 if (!bp
->dcbx_port_params
.ets
.enabled
||
575 (bp
->dcbx_error
& DCBX_REMOTE_MIB_ERROR
))
578 if (CHIP_IS_E3B0(bp
))
579 bnx2x_dcbx_update_ets_config(bp
);
581 bnx2x_dcbx_2cos_limit_update_ets_config(bp
);
585 static int bnx2x_dcbx_read_shmem_remote_mib(struct bnx2x
*bp
)
587 struct lldp_remote_mib remote_mib
= {0};
588 u32 dcbx_remote_mib_offset
= SHMEM2_RD(bp
, dcbx_remote_mib_offset
);
591 DP(NETIF_MSG_LINK
, "dcbx_remote_mib_offset 0x%x\n",
592 dcbx_remote_mib_offset
);
594 if (SHMEM_DCBX_REMOTE_MIB_NONE
== dcbx_remote_mib_offset
) {
595 BNX2X_ERR("FW doesn't support dcbx_remote_mib_offset\n");
599 rc
= bnx2x_dcbx_read_mib(bp
, (u32
*)&remote_mib
, dcbx_remote_mib_offset
,
600 DCBX_READ_REMOTE_MIB
);
603 BNX2X_ERR("Faild to read remote mib from FW\n");
607 /* save features and flags */
608 bp
->dcbx_remote_feat
= remote_mib
.features
;
609 bp
->dcbx_remote_flags
= remote_mib
.flags
;
614 static int bnx2x_dcbx_read_shmem_neg_results(struct bnx2x
*bp
)
616 struct lldp_local_mib local_mib
= {0};
617 u32 dcbx_neg_res_offset
= SHMEM2_RD(bp
, dcbx_neg_res_offset
);
620 DP(NETIF_MSG_LINK
, "dcbx_neg_res_offset 0x%x\n", dcbx_neg_res_offset
);
622 if (SHMEM_DCBX_NEG_RES_NONE
== dcbx_neg_res_offset
) {
623 BNX2X_ERR("FW doesn't support dcbx_neg_res_offset\n");
627 rc
= bnx2x_dcbx_read_mib(bp
, (u32
*)&local_mib
, dcbx_neg_res_offset
,
628 DCBX_READ_LOCAL_MIB
);
631 BNX2X_ERR("Faild to read local mib from FW\n");
635 /* save features and error */
636 bp
->dcbx_local_feat
= local_mib
.features
;
637 bp
->dcbx_error
= local_mib
.error
;
644 u8
bnx2x_dcbx_dcbnl_app_up(struct dcbx_app_priority_entry
*ent
)
648 /* Choose the highest priority */
649 for (pri
= MAX_PFC_PRIORITIES
- 1; pri
> 0; pri
--)
650 if (ent
->pri_bitmap
& (1 << pri
))
656 u8
bnx2x_dcbx_dcbnl_app_idtype(struct dcbx_app_priority_entry
*ent
)
658 return ((ent
->appBitfield
& DCBX_APP_ENTRY_SF_MASK
) ==
659 DCBX_APP_SF_PORT
) ? DCB_APP_IDTYPE_PORTNUM
:
660 DCB_APP_IDTYPE_ETHTYPE
;
663 int bnx2x_dcbnl_update_applist(struct bnx2x
*bp
, bool delall
)
667 for (i
= 0; i
< DCBX_MAX_APP_PROTOCOL
&& err
== 0; i
++) {
668 struct dcbx_app_priority_entry
*ent
=
669 &bp
->dcbx_local_feat
.app
.app_pri_tbl
[i
];
671 if (ent
->appBitfield
& DCBX_APP_ENTRY_VALID
) {
672 u8 up
= bnx2x_dcbx_dcbnl_app_up(ent
);
674 /* avoid invalid user-priority */
677 app
.selector
= bnx2x_dcbx_dcbnl_app_idtype(ent
);
678 app
.protocol
= ent
->app_id
;
679 app
.priority
= delall
? 0 : up
;
680 err
= dcb_setapp(bp
->dev
, &app
);
688 static inline void bnx2x_dcbx_update_tc_mapping(struct bnx2x
*bp
)
691 for (cos
= 0; cos
< bp
->dcbx_port_params
.ets
.num_of_cos
; cos
++) {
692 for (prio
= 0; prio
< BNX2X_MAX_PRIORITY
; prio
++) {
693 if (bp
->dcbx_port_params
.ets
.cos_params
[cos
].pri_bitmask
695 bp
->prio_to_cos
[prio
] = cos
;
697 "tx_mapping %d --> %d\n", prio
, cos
);
702 /* setup tc must be called under rtnl lock, but we can't take it here
703 * as we are handling an attetntion on a work queue which must be
704 * flushed at some rtnl-locked contexts (e.g. if down)
706 if (!test_and_set_bit(BNX2X_SP_RTNL_SETUP_TC
, &bp
->sp_rtnl_state
))
707 schedule_delayed_work(&bp
->sp_rtnl_task
, 0);
710 void bnx2x_dcbx_set_params(struct bnx2x
*bp
, u32 state
)
713 case BNX2X_DCBX_STATE_NEG_RECEIVED
:
715 DP(NETIF_MSG_LINK
, "BNX2X_DCBX_STATE_NEG_RECEIVED\n");
718 * Delete app tlvs from dcbnl before reading new
719 * negotiation results
721 bnx2x_dcbnl_update_applist(bp
, true);
723 /* Read rmeote mib if dcbx is in the FW */
724 if (bnx2x_dcbx_read_shmem_remote_mib(bp
))
727 /* Read neg results if dcbx is in the FW */
728 if (bnx2x_dcbx_read_shmem_neg_results(bp
))
731 bnx2x_dump_dcbx_drv_param(bp
, &bp
->dcbx_local_feat
,
734 bnx2x_get_dcbx_drv_param(bp
, &bp
->dcbx_local_feat
,
737 /* mark DCBX result for PMF migration */
738 bnx2x_update_drv_flags(bp
,
739 1 << DRV_FLAGS_DCB_CONFIGURED
,
743 * Add new app tlvs to dcbnl
745 bnx2x_dcbnl_update_applist(bp
, false);
748 * reconfigure the netdevice with the results of the new
751 bnx2x_dcbx_update_tc_mapping(bp
);
754 * allow other funtions to update their netdevices
758 bnx2x_link_sync_notify(bp
);
760 bnx2x_dcbx_stop_hw_tx(bp
);
764 case BNX2X_DCBX_STATE_TX_PAUSED
:
765 DP(NETIF_MSG_LINK
, "BNX2X_DCBX_STATE_TX_PAUSED\n");
766 bnx2x_pfc_set_pfc(bp
);
768 bnx2x_dcbx_update_ets_params(bp
);
769 bnx2x_dcbx_resume_hw_tx(bp
);
772 case BNX2X_DCBX_STATE_TX_RELEASED
:
773 DP(NETIF_MSG_LINK
, "BNX2X_DCBX_STATE_TX_RELEASED\n");
774 bnx2x_fw_command(bp
, DRV_MSG_CODE_DCBX_PMF_DRV_OK
, 0);
777 * Send a notification for the new negotiated parameters
779 dcbnl_cee_notify(bp
->dev
, RTM_GETDCB
, DCB_CMD_CEE_GET
, 0, 0);
783 BNX2X_ERR("Unknown DCBX_STATE\n");
787 #define LLDP_ADMIN_MIB_OFFSET(bp) (PORT_MAX*sizeof(struct lldp_params) + \
788 BP_PORT(bp)*sizeof(struct lldp_admin_mib))
790 static void bnx2x_dcbx_admin_mib_updated_params(struct bnx2x
*bp
,
791 u32 dcbx_lldp_params_offset
)
793 struct lldp_admin_mib admin_mib
;
794 u32 i
, other_traf_type
= PREDEFINED_APP_IDX_MAX
, traf_type
= 0;
795 u32 offset
= dcbx_lldp_params_offset
+ LLDP_ADMIN_MIB_OFFSET(bp
);
798 struct dcbx_features
*af
= &admin_mib
.features
;
799 struct bnx2x_config_dcbx_params
*dp
= &bp
->dcbx_config_params
;
801 memset(&admin_mib
, 0, sizeof(struct lldp_admin_mib
));
803 /* Read the data first */
804 bnx2x_read_data(bp
, (u32
*)&admin_mib
, offset
,
805 sizeof(struct lldp_admin_mib
));
807 if (bp
->dcbx_enabled
== BNX2X_DCBX_ENABLED_ON_NEG_ON
)
808 SET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_DCBX_ENABLED
);
810 RESET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_DCBX_ENABLED
);
812 if (dp
->overwrite_settings
== BNX2X_DCBX_OVERWRITE_SETTINGS_ENABLE
) {
814 RESET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_CEE_VERSION_MASK
);
815 admin_mib
.ver_cfg_flags
|=
816 (dp
->admin_dcbx_version
<< DCBX_CEE_VERSION_SHIFT
) &
817 DCBX_CEE_VERSION_MASK
;
819 af
->ets
.enabled
= (u8
)dp
->admin_ets_enable
;
821 af
->pfc
.enabled
= (u8
)dp
->admin_pfc_enable
;
823 /* FOR IEEE dp->admin_tc_supported_tx_enable */
824 if (dp
->admin_ets_configuration_tx_enable
)
825 SET_FLAGS(admin_mib
.ver_cfg_flags
,
826 DCBX_ETS_CONFIG_TX_ENABLED
);
828 RESET_FLAGS(admin_mib
.ver_cfg_flags
,
829 DCBX_ETS_CONFIG_TX_ENABLED
);
830 /* For IEEE admin_ets_recommendation_tx_enable */
831 if (dp
->admin_pfc_tx_enable
)
832 SET_FLAGS(admin_mib
.ver_cfg_flags
,
833 DCBX_PFC_CONFIG_TX_ENABLED
);
835 RESET_FLAGS(admin_mib
.ver_cfg_flags
,
836 DCBX_PFC_CONFIG_TX_ENABLED
);
838 if (dp
->admin_application_priority_tx_enable
)
839 SET_FLAGS(admin_mib
.ver_cfg_flags
,
840 DCBX_APP_CONFIG_TX_ENABLED
);
842 RESET_FLAGS(admin_mib
.ver_cfg_flags
,
843 DCBX_APP_CONFIG_TX_ENABLED
);
845 if (dp
->admin_ets_willing
)
846 SET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_ETS_WILLING
);
848 RESET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_ETS_WILLING
);
849 /* For IEEE admin_ets_reco_valid */
850 if (dp
->admin_pfc_willing
)
851 SET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_PFC_WILLING
);
853 RESET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_PFC_WILLING
);
855 if (dp
->admin_app_priority_willing
)
856 SET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_APP_WILLING
);
858 RESET_FLAGS(admin_mib
.ver_cfg_flags
, DCBX_APP_WILLING
);
860 for (i
= 0 ; i
< DCBX_MAX_NUM_PG_BW_ENTRIES
; i
++) {
861 DCBX_PG_BW_SET(af
->ets
.pg_bw_tbl
, i
,
862 (u8
)dp
->admin_configuration_bw_precentage
[i
]);
864 DP(NETIF_MSG_LINK
, "pg_bw_tbl[%d] = %02x\n",
865 i
, DCBX_PG_BW_GET(af
->ets
.pg_bw_tbl
, i
));
868 for (i
= 0; i
< DCBX_MAX_NUM_PRI_PG_ENTRIES
; i
++) {
869 DCBX_PRI_PG_SET(af
->ets
.pri_pg_tbl
, i
,
870 (u8
)dp
->admin_configuration_ets_pg
[i
]);
872 DP(NETIF_MSG_LINK
, "pri_pg_tbl[%d] = %02x\n",
873 i
, DCBX_PRI_PG_GET(af
->ets
.pri_pg_tbl
, i
));
876 /*For IEEE admin_recommendation_bw_precentage
877 *For IEEE admin_recommendation_ets_pg */
878 af
->pfc
.pri_en_bitmap
= (u8
)dp
->admin_pfc_bitmap
;
879 for (i
= 0; i
< DCBX_CONFIG_MAX_APP_PROTOCOL
; i
++) {
880 if (dp
->admin_priority_app_table
[i
].valid
) {
881 struct bnx2x_admin_priority_app_table
*table
=
882 dp
->admin_priority_app_table
;
883 if ((ETH_TYPE_FCOE
== table
[i
].app_id
) &&
884 (TRAFFIC_TYPE_ETH
== table
[i
].traffic_type
))
885 traf_type
= FCOE_APP_IDX
;
886 else if ((TCP_PORT_ISCSI
== table
[i
].app_id
) &&
887 (TRAFFIC_TYPE_PORT
== table
[i
].traffic_type
))
888 traf_type
= ISCSI_APP_IDX
;
890 traf_type
= other_traf_type
++;
892 af
->app
.app_pri_tbl
[traf_type
].app_id
=
895 af
->app
.app_pri_tbl
[traf_type
].pri_bitmap
=
896 (u8
)(1 << table
[i
].priority
);
898 af
->app
.app_pri_tbl
[traf_type
].appBitfield
=
899 (DCBX_APP_ENTRY_VALID
);
901 af
->app
.app_pri_tbl
[traf_type
].appBitfield
|=
902 (TRAFFIC_TYPE_ETH
== table
[i
].traffic_type
) ?
903 DCBX_APP_SF_ETH_TYPE
: DCBX_APP_SF_PORT
;
907 af
->app
.default_pri
= (u8
)dp
->admin_default_priority
;
911 /* Write the data. */
912 bnx2x_write_data(bp
, (u32
*)&admin_mib
, offset
,
913 sizeof(struct lldp_admin_mib
));
917 void bnx2x_dcbx_set_state(struct bnx2x
*bp
, bool dcb_on
, u32 dcbx_enabled
)
919 if (!CHIP_IS_E1x(bp
)) {
920 bp
->dcb_state
= dcb_on
;
921 bp
->dcbx_enabled
= dcbx_enabled
;
923 bp
->dcb_state
= false;
924 bp
->dcbx_enabled
= BNX2X_DCBX_ENABLED_INVALID
;
926 DP(NETIF_MSG_LINK
, "DCB state [%s:%s]\n",
927 dcb_on
? "ON" : "OFF",
928 dcbx_enabled
== BNX2X_DCBX_ENABLED_OFF
? "user-mode" :
929 dcbx_enabled
== BNX2X_DCBX_ENABLED_ON_NEG_OFF
? "on-chip static" :
930 dcbx_enabled
== BNX2X_DCBX_ENABLED_ON_NEG_ON
?
931 "on-chip with negotiation" : "invalid");
934 void bnx2x_dcbx_init_params(struct bnx2x
*bp
)
936 bp
->dcbx_config_params
.admin_dcbx_version
= 0x0; /* 0 - CEE; 1 - IEEE */
937 bp
->dcbx_config_params
.admin_ets_willing
= 1;
938 bp
->dcbx_config_params
.admin_pfc_willing
= 1;
939 bp
->dcbx_config_params
.overwrite_settings
= 1;
940 bp
->dcbx_config_params
.admin_ets_enable
= 1;
941 bp
->dcbx_config_params
.admin_pfc_enable
= 1;
942 bp
->dcbx_config_params
.admin_tc_supported_tx_enable
= 1;
943 bp
->dcbx_config_params
.admin_ets_configuration_tx_enable
= 1;
944 bp
->dcbx_config_params
.admin_pfc_tx_enable
= 1;
945 bp
->dcbx_config_params
.admin_application_priority_tx_enable
= 1;
946 bp
->dcbx_config_params
.admin_ets_reco_valid
= 1;
947 bp
->dcbx_config_params
.admin_app_priority_willing
= 1;
948 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[0] = 00;
949 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[1] = 50;
950 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[2] = 50;
951 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[3] = 0;
952 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[4] = 0;
953 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[5] = 0;
954 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[6] = 0;
955 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[7] = 0;
956 bp
->dcbx_config_params
.admin_configuration_ets_pg
[0] = 1;
957 bp
->dcbx_config_params
.admin_configuration_ets_pg
[1] = 0;
958 bp
->dcbx_config_params
.admin_configuration_ets_pg
[2] = 0;
959 bp
->dcbx_config_params
.admin_configuration_ets_pg
[3] = 2;
960 bp
->dcbx_config_params
.admin_configuration_ets_pg
[4] = 0;
961 bp
->dcbx_config_params
.admin_configuration_ets_pg
[5] = 0;
962 bp
->dcbx_config_params
.admin_configuration_ets_pg
[6] = 0;
963 bp
->dcbx_config_params
.admin_configuration_ets_pg
[7] = 0;
964 bp
->dcbx_config_params
.admin_recommendation_bw_precentage
[0] = 0;
965 bp
->dcbx_config_params
.admin_recommendation_bw_precentage
[1] = 1;
966 bp
->dcbx_config_params
.admin_recommendation_bw_precentage
[2] = 2;
967 bp
->dcbx_config_params
.admin_recommendation_bw_precentage
[3] = 0;
968 bp
->dcbx_config_params
.admin_recommendation_bw_precentage
[4] = 7;
969 bp
->dcbx_config_params
.admin_recommendation_bw_precentage
[5] = 5;
970 bp
->dcbx_config_params
.admin_recommendation_bw_precentage
[6] = 6;
971 bp
->dcbx_config_params
.admin_recommendation_bw_precentage
[7] = 7;
972 bp
->dcbx_config_params
.admin_recommendation_ets_pg
[0] = 0;
973 bp
->dcbx_config_params
.admin_recommendation_ets_pg
[1] = 1;
974 bp
->dcbx_config_params
.admin_recommendation_ets_pg
[2] = 2;
975 bp
->dcbx_config_params
.admin_recommendation_ets_pg
[3] = 3;
976 bp
->dcbx_config_params
.admin_recommendation_ets_pg
[4] = 4;
977 bp
->dcbx_config_params
.admin_recommendation_ets_pg
[5] = 5;
978 bp
->dcbx_config_params
.admin_recommendation_ets_pg
[6] = 6;
979 bp
->dcbx_config_params
.admin_recommendation_ets_pg
[7] = 7;
980 bp
->dcbx_config_params
.admin_pfc_bitmap
= 0x8; /* FCoE(3) enable */
981 bp
->dcbx_config_params
.admin_priority_app_table
[0].valid
= 1;
982 bp
->dcbx_config_params
.admin_priority_app_table
[1].valid
= 1;
983 bp
->dcbx_config_params
.admin_priority_app_table
[2].valid
= 0;
984 bp
->dcbx_config_params
.admin_priority_app_table
[3].valid
= 0;
985 bp
->dcbx_config_params
.admin_priority_app_table
[0].priority
= 3;
986 bp
->dcbx_config_params
.admin_priority_app_table
[1].priority
= 0;
987 bp
->dcbx_config_params
.admin_priority_app_table
[2].priority
= 0;
988 bp
->dcbx_config_params
.admin_priority_app_table
[3].priority
= 0;
989 bp
->dcbx_config_params
.admin_priority_app_table
[0].traffic_type
= 0;
990 bp
->dcbx_config_params
.admin_priority_app_table
[1].traffic_type
= 1;
991 bp
->dcbx_config_params
.admin_priority_app_table
[2].traffic_type
= 0;
992 bp
->dcbx_config_params
.admin_priority_app_table
[3].traffic_type
= 0;
993 bp
->dcbx_config_params
.admin_priority_app_table
[0].app_id
= 0x8906;
994 bp
->dcbx_config_params
.admin_priority_app_table
[1].app_id
= 3260;
995 bp
->dcbx_config_params
.admin_priority_app_table
[2].app_id
= 0;
996 bp
->dcbx_config_params
.admin_priority_app_table
[3].app_id
= 0;
997 bp
->dcbx_config_params
.admin_default_priority
=
998 bp
->dcbx_config_params
.admin_priority_app_table
[1].priority
;
1001 void bnx2x_dcbx_init(struct bnx2x
*bp
)
1003 u32 dcbx_lldp_params_offset
= SHMEM_LLDP_DCBX_PARAMS_NONE
;
1005 if (bp
->dcbx_enabled
<= 0)
1009 * chip of good for dcbx version,
1011 * the function is pmf
1012 * shmem2 contains DCBX support fields
1014 DP(NETIF_MSG_LINK
, "dcb_state %d bp->port.pmf %d\n",
1015 bp
->dcb_state
, bp
->port
.pmf
);
1017 if (bp
->dcb_state
== BNX2X_DCB_STATE_ON
&& bp
->port
.pmf
&&
1018 SHMEM2_HAS(bp
, dcbx_lldp_params_offset
)) {
1019 dcbx_lldp_params_offset
=
1020 SHMEM2_RD(bp
, dcbx_lldp_params_offset
);
1022 DP(NETIF_MSG_LINK
, "dcbx_lldp_params_offset 0x%x\n",
1023 dcbx_lldp_params_offset
);
1025 bnx2x_update_drv_flags(bp
, 1 << DRV_FLAGS_DCB_CONFIGURED
, 0);
1027 if (SHMEM_LLDP_DCBX_PARAMS_NONE
!= dcbx_lldp_params_offset
) {
1028 bnx2x_dcbx_admin_mib_updated_params(bp
,
1029 dcbx_lldp_params_offset
);
1031 /* Let HW start negotiation */
1032 bnx2x_fw_command(bp
,
1033 DRV_MSG_CODE_DCBX_ADMIN_PMF_MSG
, 0);
1038 bnx2x_dcbx_print_cos_params(struct bnx2x
*bp
,
1039 struct bnx2x_func_tx_start_params
*pfc_fw_cfg
)
1045 "pfc_fw_cfg->dcb_version %x\n", pfc_fw_cfg
->dcb_version
);
1047 "pdev->params.dcbx_port_params.pfc."
1048 "priority_non_pauseable_mask %x\n",
1049 bp
->dcbx_port_params
.pfc
.priority_non_pauseable_mask
);
1051 for (cos
= 0 ; cos
< bp
->dcbx_port_params
.ets
.num_of_cos
; cos
++) {
1052 DP(NETIF_MSG_LINK
, "pdev->params.dcbx_port_params.ets."
1053 "cos_params[%d].pri_bitmask %x\n", cos
,
1054 bp
->dcbx_port_params
.ets
.cos_params
[cos
].pri_bitmask
);
1056 DP(NETIF_MSG_LINK
, "pdev->params.dcbx_port_params.ets."
1057 "cos_params[%d].bw_tbl %x\n", cos
,
1058 bp
->dcbx_port_params
.ets
.cos_params
[cos
].bw_tbl
);
1060 DP(NETIF_MSG_LINK
, "pdev->params.dcbx_port_params.ets."
1061 "cos_params[%d].strict %x\n", cos
,
1062 bp
->dcbx_port_params
.ets
.cos_params
[cos
].strict
);
1064 DP(NETIF_MSG_LINK
, "pdev->params.dcbx_port_params.ets."
1065 "cos_params[%d].pauseable %x\n", cos
,
1066 bp
->dcbx_port_params
.ets
.cos_params
[cos
].pauseable
);
1069 for (pri
= 0; pri
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
; pri
++) {
1071 "pfc_fw_cfg->traffic_type_to_priority_cos[%d]."
1072 "priority %x\n", pri
,
1073 pfc_fw_cfg
->traffic_type_to_priority_cos
[pri
].priority
);
1076 "pfc_fw_cfg->traffic_type_to_priority_cos[%d].cos %x\n",
1077 pri
, pfc_fw_cfg
->traffic_type_to_priority_cos
[pri
].cos
);
1081 /* fills help_data according to pg_info */
1082 static void bnx2x_dcbx_get_num_pg_traf_type(struct bnx2x
*bp
,
1083 u32
*pg_pri_orginal_spread
,
1084 struct pg_help_data
*help_data
)
1086 bool pg_found
= false;
1087 u32 i
, traf_type
, add_traf_type
, add_pg
;
1088 u32
*ttp
= bp
->dcbx_port_params
.app
.traffic_type_priority
;
1089 struct pg_entry_help_data
*data
= help_data
->data
; /*shotcut*/
1091 /* Set to invalid */
1092 for (i
= 0; i
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
; i
++)
1093 data
[i
].pg
= DCBX_ILLEGAL_PG
;
1095 for (add_traf_type
= 0;
1096 add_traf_type
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
; add_traf_type
++) {
1098 if (ttp
[add_traf_type
] < MAX_PFC_PRIORITIES
) {
1099 add_pg
= (u8
)pg_pri_orginal_spread
[ttp
[add_traf_type
]];
1101 traf_type
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
;
1103 if (data
[traf_type
].pg
== add_pg
) {
1104 if (!(data
[traf_type
].pg_priority
&
1105 (1 << ttp
[add_traf_type
])))
1108 data
[traf_type
].pg_priority
|=
1109 (1 << ttp
[add_traf_type
]);
1114 if (false == pg_found
) {
1115 data
[help_data
->num_of_pg
].pg
= add_pg
;
1116 data
[help_data
->num_of_pg
].pg_priority
=
1117 (1 << ttp
[add_traf_type
]);
1118 data
[help_data
->num_of_pg
].num_of_dif_pri
= 1;
1119 help_data
->num_of_pg
++;
1123 "add_traf_type %d pg_found %s num_of_pg %d\n",
1124 add_traf_type
, (false == pg_found
) ? "NO" : "YES",
1125 help_data
->num_of_pg
);
1129 static void bnx2x_dcbx_ets_disabled_entry_data(struct bnx2x
*bp
,
1130 struct cos_help_data
*cos_data
,
1133 /* Only one priority than only one COS */
1134 cos_data
->data
[0].pausable
=
1135 IS_DCBX_PFC_PRI_ONLY_PAUSE(bp
, pri_join_mask
);
1136 cos_data
->data
[0].pri_join_mask
= pri_join_mask
;
1137 cos_data
->data
[0].cos_bw
= 100;
1138 cos_data
->num_of_cos
= 1;
1141 static inline void bnx2x_dcbx_add_to_cos_bw(struct bnx2x
*bp
,
1142 struct cos_entry_help_data
*data
,
1145 if (data
->cos_bw
== DCBX_INVALID_COS_BW
)
1146 data
->cos_bw
= pg_bw
;
1148 data
->cos_bw
+= pg_bw
;
1151 static void bnx2x_dcbx_separate_pauseable_from_non(struct bnx2x
*bp
,
1152 struct cos_help_data
*cos_data
,
1153 u32
*pg_pri_orginal_spread
,
1154 struct dcbx_ets_feature
*ets
)
1160 u8 num_of_pri
= LLFC_DRIVER_TRAFFIC_TYPE_MAX
;
1162 cos_data
->data
[0].pausable
= true;
1163 cos_data
->data
[1].pausable
= false;
1164 cos_data
->data
[0].pri_join_mask
= cos_data
->data
[1].pri_join_mask
= 0;
1166 for (i
= 0 ; i
< num_of_pri
; i
++) {
1167 pri_tested
= 1 << bp
->dcbx_port_params
.
1168 app
.traffic_type_priority
[i
];
1170 if (pri_tested
& DCBX_PFC_PRI_NON_PAUSE_MASK(bp
)) {
1171 cos_data
->data
[1].pri_join_mask
|= pri_tested
;
1174 cos_data
->data
[0].pri_join_mask
|= pri_tested
;
1177 pg_entry
= (u8
)pg_pri_orginal_spread
[bp
->dcbx_port_params
.
1178 app
.traffic_type_priority
[i
]];
1179 /* There can be only one strict pg */
1180 if (pg_entry
< DCBX_MAX_NUM_PG_BW_ENTRIES
)
1181 bnx2x_dcbx_add_to_cos_bw(bp
, &cos_data
->data
[entry
],
1182 DCBX_PG_BW_GET(ets
->pg_bw_tbl
, pg_entry
));
1184 /* If we join a group and one is strict
1185 * than the bw rulls */
1186 cos_data
->data
[entry
].strict
=
1187 BNX2X_DCBX_STRICT_COS_HIGHEST
;
1189 if ((0 == cos_data
->data
[0].pri_join_mask
) &&
1190 (0 == cos_data
->data
[1].pri_join_mask
))
1191 BNX2X_ERR("dcbx error: Both groups must have priorities\n");
1196 #define POWER_OF_2(x) ((0 != x) && (0 == (x & (x-1))))
1199 static void bnx2x_dcbx_2cos_limit_cee_single_pg_to_cos_params(struct bnx2x
*bp
,
1200 struct pg_help_data
*pg_help_data
,
1201 struct cos_help_data
*cos_data
,
1207 u32 pri_mask_without_pri
= 0;
1208 u32
*ttp
= bp
->dcbx_port_params
.app
.traffic_type_priority
;
1210 if (num_of_dif_pri
== 1) {
1211 bnx2x_dcbx_ets_disabled_entry_data(bp
, cos_data
, pri_join_mask
);
1214 /* single priority group */
1215 if (pg_help_data
->data
[0].pg
< DCBX_MAX_NUM_PG_BW_ENTRIES
) {
1216 /* If there are both pauseable and non-pauseable priorities,
1217 * the pauseable priorities go to the first queue and
1218 * the non-pauseable priorities go to the second queue.
1220 if (IS_DCBX_PFC_PRI_MIX_PAUSE(bp
, pri_join_mask
)) {
1222 cos_data
->data
[0].pausable
= true;
1224 cos_data
->data
[1].pausable
= false;
1226 if (2 == num_of_dif_pri
) {
1227 cos_data
->data
[0].cos_bw
= 50;
1228 cos_data
->data
[1].cos_bw
= 50;
1231 if (3 == num_of_dif_pri
) {
1232 if (POWER_OF_2(DCBX_PFC_PRI_GET_PAUSE(bp
,
1234 cos_data
->data
[0].cos_bw
= 33;
1235 cos_data
->data
[1].cos_bw
= 67;
1237 cos_data
->data
[0].cos_bw
= 67;
1238 cos_data
->data
[1].cos_bw
= 33;
1242 } else if (IS_DCBX_PFC_PRI_ONLY_PAUSE(bp
, pri_join_mask
)) {
1243 /* If there are only pauseable priorities,
1244 * then one/two priorities go to the first queue
1245 * and one priority goes to the second queue.
1247 if (2 == num_of_dif_pri
) {
1248 cos_data
->data
[0].cos_bw
= 50;
1249 cos_data
->data
[1].cos_bw
= 50;
1251 cos_data
->data
[0].cos_bw
= 67;
1252 cos_data
->data
[1].cos_bw
= 33;
1254 cos_data
->data
[1].pausable
= true;
1255 cos_data
->data
[0].pausable
= true;
1256 /* All priorities except FCOE */
1257 cos_data
->data
[0].pri_join_mask
= (pri_join_mask
&
1258 ((u8
)~(1 << ttp
[LLFC_TRAFFIC_TYPE_FCOE
])));
1259 /* Only FCOE priority.*/
1260 cos_data
->data
[1].pri_join_mask
=
1261 (1 << ttp
[LLFC_TRAFFIC_TYPE_FCOE
]);
1263 /* If there are only non-pauseable priorities,
1264 * they will all go to the same queue.
1266 bnx2x_dcbx_ets_disabled_entry_data(bp
,
1267 cos_data
, pri_join_mask
);
1269 /* priority group which is not BW limited (PG#15):*/
1270 if (IS_DCBX_PFC_PRI_MIX_PAUSE(bp
, pri_join_mask
)) {
1271 /* If there are both pauseable and non-pauseable
1272 * priorities, the pauseable priorities go to the first
1273 * queue and the non-pauseable priorities
1274 * go to the second queue.
1276 if (DCBX_PFC_PRI_GET_PAUSE(bp
, pri_join_mask
) >
1277 DCBX_PFC_PRI_GET_NON_PAUSE(bp
, pri_join_mask
)) {
1278 cos_data
->data
[0].strict
=
1279 BNX2X_DCBX_STRICT_COS_HIGHEST
;
1280 cos_data
->data
[1].strict
=
1281 BNX2X_DCBX_STRICT_COS_NEXT_LOWER_PRI(
1282 BNX2X_DCBX_STRICT_COS_HIGHEST
);
1284 cos_data
->data
[0].strict
=
1285 BNX2X_DCBX_STRICT_COS_NEXT_LOWER_PRI(
1286 BNX2X_DCBX_STRICT_COS_HIGHEST
);
1287 cos_data
->data
[1].strict
=
1288 BNX2X_DCBX_STRICT_COS_HIGHEST
;
1291 cos_data
->data
[0].pausable
= true;
1292 /* Non pause-able.*/
1293 cos_data
->data
[1].pausable
= false;
1295 /* If there are only pauseable priorities or
1296 * only non-pauseable,* the lower priorities go
1297 * to the first queue and the higherpriorities go
1298 * to the second queue.
1300 cos_data
->data
[0].pausable
=
1301 cos_data
->data
[1].pausable
=
1302 IS_DCBX_PFC_PRI_ONLY_PAUSE(bp
, pri_join_mask
);
1304 for (i
= 0 ; i
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
; i
++) {
1305 pri_tested
= 1 << bp
->dcbx_port_params
.
1306 app
.traffic_type_priority
[i
];
1307 /* Remove priority tested */
1308 pri_mask_without_pri
=
1309 (pri_join_mask
& ((u8
)(~pri_tested
)));
1310 if (pri_mask_without_pri
< pri_tested
)
1314 if (i
== LLFC_DRIVER_TRAFFIC_TYPE_MAX
)
1315 BNX2X_ERR("Invalid value for pri_join_mask -"
1316 " could not find a priority\n");
1318 cos_data
->data
[0].pri_join_mask
= pri_mask_without_pri
;
1319 cos_data
->data
[1].pri_join_mask
= pri_tested
;
1320 /* Both queues are strict priority,
1321 * and that with the highest priority
1322 * gets the highest strict priority in the arbiter.
1324 cos_data
->data
[0].strict
=
1325 BNX2X_DCBX_STRICT_COS_NEXT_LOWER_PRI(
1326 BNX2X_DCBX_STRICT_COS_HIGHEST
);
1327 cos_data
->data
[1].strict
=
1328 BNX2X_DCBX_STRICT_COS_HIGHEST
;
1333 static void bnx2x_dcbx_2cos_limit_cee_two_pg_to_cos_params(
1335 struct pg_help_data
*pg_help_data
,
1336 struct dcbx_ets_feature
*ets
,
1337 struct cos_help_data
*cos_data
,
1338 u32
*pg_pri_orginal_spread
,
1343 u8 pg
[DCBX_COS_MAX_NUM_E2
] = { 0 };
1345 /* If there are both pauseable and non-pauseable priorities,
1346 * the pauseable priorities go to the first queue and
1347 * the non-pauseable priorities go to the second queue.
1349 if (IS_DCBX_PFC_PRI_MIX_PAUSE(bp
, pri_join_mask
)) {
1350 if (IS_DCBX_PFC_PRI_MIX_PAUSE(bp
,
1351 pg_help_data
->data
[0].pg_priority
) ||
1352 IS_DCBX_PFC_PRI_MIX_PAUSE(bp
,
1353 pg_help_data
->data
[1].pg_priority
)) {
1354 /* If one PG contains both pauseable and
1355 * non-pauseable priorities then ETS is disabled.
1357 bnx2x_dcbx_separate_pauseable_from_non(bp
, cos_data
,
1358 pg_pri_orginal_spread
, ets
);
1359 bp
->dcbx_port_params
.ets
.enabled
= false;
1364 cos_data
->data
[0].pausable
= true;
1365 /* Non pauseable. */
1366 cos_data
->data
[1].pausable
= false;
1367 if (IS_DCBX_PFC_PRI_ONLY_PAUSE(bp
,
1368 pg_help_data
->data
[0].pg_priority
)) {
1369 /* 0 is pauseable */
1370 cos_data
->data
[0].pri_join_mask
=
1371 pg_help_data
->data
[0].pg_priority
;
1372 pg
[0] = pg_help_data
->data
[0].pg
;
1373 cos_data
->data
[1].pri_join_mask
=
1374 pg_help_data
->data
[1].pg_priority
;
1375 pg
[1] = pg_help_data
->data
[1].pg
;
1376 } else {/* 1 is pauseable */
1377 cos_data
->data
[0].pri_join_mask
=
1378 pg_help_data
->data
[1].pg_priority
;
1379 pg
[0] = pg_help_data
->data
[1].pg
;
1380 cos_data
->data
[1].pri_join_mask
=
1381 pg_help_data
->data
[0].pg_priority
;
1382 pg
[1] = pg_help_data
->data
[0].pg
;
1385 /* If there are only pauseable priorities or
1386 * only non-pauseable, each PG goes to a queue.
1388 cos_data
->data
[0].pausable
= cos_data
->data
[1].pausable
=
1389 IS_DCBX_PFC_PRI_ONLY_PAUSE(bp
, pri_join_mask
);
1390 cos_data
->data
[0].pri_join_mask
=
1391 pg_help_data
->data
[0].pg_priority
;
1392 pg
[0] = pg_help_data
->data
[0].pg
;
1393 cos_data
->data
[1].pri_join_mask
=
1394 pg_help_data
->data
[1].pg_priority
;
1395 pg
[1] = pg_help_data
->data
[1].pg
;
1398 /* There can be only one strict pg */
1399 for (i
= 0 ; i
< ARRAY_SIZE(pg
); i
++) {
1400 if (pg
[i
] < DCBX_MAX_NUM_PG_BW_ENTRIES
)
1401 cos_data
->data
[i
].cos_bw
=
1402 DCBX_PG_BW_GET(ets
->pg_bw_tbl
, pg
[i
]);
1404 cos_data
->data
[i
].strict
=
1405 BNX2X_DCBX_STRICT_COS_HIGHEST
;
1409 static int bnx2x_dcbx_join_pgs(
1411 struct dcbx_ets_feature
*ets
,
1412 struct pg_help_data
*pg_help_data
,
1413 u8 required_num_of_pg
)
1415 u8 entry_joined
= pg_help_data
->num_of_pg
- 1;
1416 u8 entry_removed
= entry_joined
+ 1;
1419 if (required_num_of_pg
== 0 || ARRAY_SIZE(pg_help_data
->data
)
1420 <= pg_help_data
->num_of_pg
) {
1422 BNX2X_ERR("required_num_of_pg can't be zero\n");
1426 while (required_num_of_pg
< pg_help_data
->num_of_pg
) {
1427 entry_joined
= pg_help_data
->num_of_pg
- 2;
1428 entry_removed
= entry_joined
+ 1;
1430 entry_removed
%= ARRAY_SIZE(pg_help_data
->data
);
1432 pg_help_data
->data
[entry_joined
].pg_priority
|=
1433 pg_help_data
->data
[entry_removed
].pg_priority
;
1435 pg_help_data
->data
[entry_joined
].num_of_dif_pri
+=
1436 pg_help_data
->data
[entry_removed
].num_of_dif_pri
;
1438 if (pg_help_data
->data
[entry_joined
].pg
== DCBX_STRICT_PRI_PG
||
1439 pg_help_data
->data
[entry_removed
].pg
== DCBX_STRICT_PRI_PG
)
1440 /* Entries joined strict priority rules */
1441 pg_help_data
->data
[entry_joined
].pg
=
1444 /* Entries can be joined join BW */
1445 pg_joined
= DCBX_PG_BW_GET(ets
->pg_bw_tbl
,
1446 pg_help_data
->data
[entry_joined
].pg
) +
1447 DCBX_PG_BW_GET(ets
->pg_bw_tbl
,
1448 pg_help_data
->data
[entry_removed
].pg
);
1450 DCBX_PG_BW_SET(ets
->pg_bw_tbl
,
1451 pg_help_data
->data
[entry_joined
].pg
, pg_joined
);
1453 /* Joined the entries */
1454 pg_help_data
->num_of_pg
--;
1460 static void bnx2x_dcbx_2cos_limit_cee_three_pg_to_cos_params(
1462 struct pg_help_data
*pg_help_data
,
1463 struct dcbx_ets_feature
*ets
,
1464 struct cos_help_data
*cos_data
,
1465 u32
*pg_pri_orginal_spread
,
1473 bool b_found_strict
= false;
1474 u8 num_of_pri
= LLFC_DRIVER_TRAFFIC_TYPE_MAX
;
1476 cos_data
->data
[0].pri_join_mask
= cos_data
->data
[1].pri_join_mask
= 0;
1477 /* If there are both pauseable and non-pauseable priorities,
1478 * the pauseable priorities go to the first queue and the
1479 * non-pauseable priorities go to the second queue.
1481 if (IS_DCBX_PFC_PRI_MIX_PAUSE(bp
, pri_join_mask
))
1482 bnx2x_dcbx_separate_pauseable_from_non(bp
,
1483 cos_data
, pg_pri_orginal_spread
, ets
);
1485 /* If two BW-limited PG-s were combined to one queue,
1486 * the BW is their sum.
1488 * If there are only pauseable priorities or only non-pauseable,
1489 * and there are both BW-limited and non-BW-limited PG-s,
1490 * the BW-limited PG/s go to one queue and the non-BW-limited
1491 * PG/s go to the second queue.
1493 * If there are only pauseable priorities or only non-pauseable
1494 * and all are BW limited, then two priorities go to the first
1495 * queue and one priority goes to the second queue.
1497 * We will join this two cases:
1498 * if one is BW limited it will go to the secoend queue
1499 * otherwise the last priority will get it
1502 cos_data
->data
[0].pausable
= cos_data
->data
[1].pausable
=
1503 IS_DCBX_PFC_PRI_ONLY_PAUSE(bp
, pri_join_mask
);
1505 for (i
= 0 ; i
< num_of_pri
; i
++) {
1506 pri_tested
= 1 << bp
->dcbx_port_params
.
1507 app
.traffic_type_priority
[i
];
1508 pg_entry
= (u8
)pg_pri_orginal_spread
[bp
->
1509 dcbx_port_params
.app
.traffic_type_priority
[i
]];
1511 if (pg_entry
< DCBX_MAX_NUM_PG_BW_ENTRIES
) {
1514 if (i
== (num_of_pri
-1) &&
1515 false == b_found_strict
)
1516 /* last entry will be handled separately
1517 * If no priority is strict than last
1518 * enty goes to last queue.*/
1520 cos_data
->data
[entry
].pri_join_mask
|=
1522 bnx2x_dcbx_add_to_cos_bw(bp
,
1523 &cos_data
->data
[entry
],
1524 DCBX_PG_BW_GET(ets
->pg_bw_tbl
,
1527 b_found_strict
= true;
1528 cos_data
->data
[1].pri_join_mask
|= pri_tested
;
1529 /* If we join a group and one is strict
1530 * than the bw rulls */
1531 cos_data
->data
[1].strict
=
1532 BNX2X_DCBX_STRICT_COS_HIGHEST
;
1539 static void bnx2x_dcbx_2cos_limit_cee_fill_cos_params(struct bnx2x
*bp
,
1540 struct pg_help_data
*help_data
,
1541 struct dcbx_ets_feature
*ets
,
1542 struct cos_help_data
*cos_data
,
1543 u32
*pg_pri_orginal_spread
,
1548 /* default E2 settings */
1549 cos_data
->num_of_cos
= DCBX_COS_MAX_NUM_E2
;
1551 switch (help_data
->num_of_pg
) {
1553 bnx2x_dcbx_2cos_limit_cee_single_pg_to_cos_params(
1561 bnx2x_dcbx_2cos_limit_cee_two_pg_to_cos_params(
1566 pg_pri_orginal_spread
,
1572 bnx2x_dcbx_2cos_limit_cee_three_pg_to_cos_params(
1577 pg_pri_orginal_spread
,
1582 BNX2X_ERR("Wrong pg_help_data.num_of_pg\n");
1583 bnx2x_dcbx_ets_disabled_entry_data(bp
,
1584 cos_data
, pri_join_mask
);
1588 static int bnx2x_dcbx_spread_strict_pri(struct bnx2x
*bp
,
1589 struct cos_help_data
*cos_data
,
1591 u8 num_spread_of_entries
,
1594 u8 strict_pri
= BNX2X_DCBX_STRICT_COS_HIGHEST
;
1595 u8 num_of_app_pri
= MAX_PFC_PRIORITIES
;
1598 while (num_spread_of_entries
&& num_of_app_pri
> 0) {
1599 app_pri_bit
= 1 << (num_of_app_pri
- 1);
1600 if (app_pri_bit
& strict_app_pris
) {
1601 struct cos_entry_help_data
*data
= &cos_data
->
1603 num_spread_of_entries
--;
1604 if (num_spread_of_entries
== 0) {
1605 /* last entry needed put all the entries left */
1606 data
->cos_bw
= DCBX_INVALID_COS_BW
;
1607 data
->strict
= strict_pri
;
1608 data
->pri_join_mask
= strict_app_pris
;
1609 data
->pausable
= DCBX_IS_PFC_PRI_SOME_PAUSE(bp
,
1610 data
->pri_join_mask
);
1612 strict_app_pris
&= ~app_pri_bit
;
1614 data
->cos_bw
= DCBX_INVALID_COS_BW
;
1615 data
->strict
= strict_pri
;
1616 data
->pri_join_mask
= app_pri_bit
;
1617 data
->pausable
= DCBX_IS_PFC_PRI_SOME_PAUSE(bp
,
1618 data
->pri_join_mask
);
1622 BNX2X_DCBX_STRICT_COS_NEXT_LOWER_PRI(strict_pri
);
1629 if (num_spread_of_entries
)
1635 static u8
bnx2x_dcbx_cee_fill_strict_pri(struct bnx2x
*bp
,
1636 struct cos_help_data
*cos_data
,
1638 u8 num_spread_of_entries
,
1642 if (bnx2x_dcbx_spread_strict_pri(bp
, cos_data
, entry
,
1643 num_spread_of_entries
,
1645 struct cos_entry_help_data
*data
= &cos_data
->
1648 data
->cos_bw
= DCBX_INVALID_COS_BW
;
1649 data
->strict
= BNX2X_DCBX_STRICT_COS_HIGHEST
;
1650 data
->pri_join_mask
= strict_app_pris
;
1651 data
->pausable
= DCBX_IS_PFC_PRI_SOME_PAUSE(bp
,
1652 data
->pri_join_mask
);
1656 return num_spread_of_entries
;
1659 static void bnx2x_dcbx_cee_fill_cos_params(struct bnx2x
*bp
,
1660 struct pg_help_data
*help_data
,
1661 struct dcbx_ets_feature
*ets
,
1662 struct cos_help_data
*cos_data
,
1666 u8 need_num_of_entries
= 0;
1671 * if the number of requested PG-s in CEE is greater than 3
1672 * then the results are not determined since this is a violation
1675 if (help_data
->num_of_pg
> DCBX_COS_MAX_NUM_E3B0
) {
1676 if (bnx2x_dcbx_join_pgs(bp
, ets
, help_data
,
1677 DCBX_COS_MAX_NUM_E3B0
)) {
1678 BNX2X_ERR("Unable to reduce the number of PGs -"
1679 "we will disables ETS\n");
1680 bnx2x_dcbx_ets_disabled_entry_data(bp
, cos_data
,
1686 for (i
= 0 ; i
< help_data
->num_of_pg
; i
++) {
1687 struct pg_entry_help_data
*pg
= &help_data
->data
[i
];
1688 if (pg
->pg
< DCBX_MAX_NUM_PG_BW_ENTRIES
) {
1689 struct cos_entry_help_data
*data
= &cos_data
->
1692 data
->cos_bw
= DCBX_PG_BW_GET(ets
->pg_bw_tbl
, pg
->pg
);
1693 data
->strict
= BNX2X_DCBX_STRICT_INVALID
;
1694 data
->pri_join_mask
= pg
->pg_priority
;
1695 data
->pausable
= DCBX_IS_PFC_PRI_SOME_PAUSE(bp
,
1696 data
->pri_join_mask
);
1700 need_num_of_entries
= min_t(u8
,
1701 (u8
)pg
->num_of_dif_pri
,
1702 (u8
)DCBX_COS_MAX_NUM_E3B0
-
1703 help_data
->num_of_pg
+ 1);
1705 * If there are still VOQ-s which have no associated PG,
1706 * then associate these VOQ-s to PG15. These PG-s will
1707 * be used for SP between priorities on PG15.
1709 entry
+= bnx2x_dcbx_cee_fill_strict_pri(bp
, cos_data
,
1710 entry
, need_num_of_entries
, pg
->pg_priority
);
1714 /* the entry will represent the number of COSes used */
1715 cos_data
->num_of_cos
= entry
;
1717 static void bnx2x_dcbx_fill_cos_params(struct bnx2x
*bp
,
1718 struct pg_help_data
*help_data
,
1719 struct dcbx_ets_feature
*ets
,
1720 u32
*pg_pri_orginal_spread
)
1722 struct cos_help_data cos_data
;
1724 u32 pri_join_mask
= 0;
1725 u8 num_of_dif_pri
= 0;
1727 memset(&cos_data
, 0, sizeof(cos_data
));
1729 /* Validate the pg value */
1730 for (i
= 0; i
< help_data
->num_of_pg
; i
++) {
1731 if (DCBX_STRICT_PRIORITY
!= help_data
->data
[i
].pg
&&
1732 DCBX_MAX_NUM_PG_BW_ENTRIES
<= help_data
->data
[i
].pg
)
1733 BNX2X_ERR("Invalid pg[%d] data %x\n", i
,
1734 help_data
->data
[i
].pg
);
1735 pri_join_mask
|= help_data
->data
[i
].pg_priority
;
1736 num_of_dif_pri
+= help_data
->data
[i
].num_of_dif_pri
;
1740 cos_data
.num_of_cos
= 1;
1741 for (i
= 0; i
< ARRAY_SIZE(cos_data
.data
); i
++) {
1742 cos_data
.data
[i
].pri_join_mask
= 0;
1743 cos_data
.data
[i
].pausable
= false;
1744 cos_data
.data
[i
].strict
= BNX2X_DCBX_STRICT_INVALID
;
1745 cos_data
.data
[i
].cos_bw
= DCBX_INVALID_COS_BW
;
1748 if (CHIP_IS_E3B0(bp
))
1749 bnx2x_dcbx_cee_fill_cos_params(bp
, help_data
, ets
,
1750 &cos_data
, pri_join_mask
);
1751 else /* E2 + E3A0 */
1752 bnx2x_dcbx_2cos_limit_cee_fill_cos_params(bp
,
1755 pg_pri_orginal_spread
,
1759 for (i
= 0; i
< cos_data
.num_of_cos
; i
++) {
1760 struct bnx2x_dcbx_cos_params
*p
=
1761 &bp
->dcbx_port_params
.ets
.cos_params
[i
];
1763 p
->strict
= cos_data
.data
[i
].strict
;
1764 p
->bw_tbl
= cos_data
.data
[i
].cos_bw
;
1765 p
->pri_bitmask
= cos_data
.data
[i
].pri_join_mask
;
1766 p
->pauseable
= cos_data
.data
[i
].pausable
;
1769 if (p
->bw_tbl
!= DCBX_INVALID_COS_BW
||
1770 p
->strict
!= BNX2X_DCBX_STRICT_INVALID
) {
1771 if (p
->pri_bitmask
== 0)
1772 BNX2X_ERR("Invalid pri_bitmask for %d\n", i
);
1774 if (CHIP_IS_E2(bp
) || CHIP_IS_E3A0(bp
)) {
1777 DCBX_PFC_PRI_GET_NON_PAUSE(bp
,
1778 p
->pri_bitmask
) != 0)
1779 BNX2X_ERR("Inconsistent config for "
1780 "pausable COS %d\n", i
);
1782 if (!p
->pauseable
&&
1783 DCBX_PFC_PRI_GET_PAUSE(bp
,
1784 p
->pri_bitmask
) != 0)
1785 BNX2X_ERR("Inconsistent config for "
1786 "nonpausable COS %d\n", i
);
1791 DP(NETIF_MSG_LINK
, "COS %d PAUSABLE prijoinmask 0x%x\n",
1792 i
, cos_data
.data
[i
].pri_join_mask
);
1794 DP(NETIF_MSG_LINK
, "COS %d NONPAUSABLE prijoinmask "
1796 i
, cos_data
.data
[i
].pri_join_mask
);
1799 bp
->dcbx_port_params
.ets
.num_of_cos
= cos_data
.num_of_cos
;
1802 static void bnx2x_dcbx_get_ets_pri_pg_tbl(struct bnx2x
*bp
,
1803 u32
*set_configuration_ets_pg
,
1808 for (i
= 0; i
< DCBX_MAX_NUM_PRI_PG_ENTRIES
; i
++) {
1809 set_configuration_ets_pg
[i
] = DCBX_PRI_PG_GET(pri_pg_tbl
, i
);
1811 DP(NETIF_MSG_LINK
, "set_configuration_ets_pg[%d] = 0x%x\n",
1812 i
, set_configuration_ets_pg
[i
]);
1816 static void bnx2x_dcbx_fw_struct(struct bnx2x
*bp
,
1817 struct bnx2x_func_tx_start_params
*pfc_fw_cfg
)
1820 u8 cos
= 0, pri
= 0;
1821 struct priority_cos
*tt2cos
;
1822 u32
*ttp
= bp
->dcbx_port_params
.app
.traffic_type_priority
;
1824 memset(pfc_fw_cfg
, 0, sizeof(*pfc_fw_cfg
));
1826 /* to disable DCB - the structure must be zeroed */
1827 if (bp
->dcbx_error
& DCBX_REMOTE_MIB_ERROR
)
1831 tt2cos
= pfc_fw_cfg
->traffic_type_to_priority_cos
;
1833 /* Fw version should be incremented each update */
1834 pfc_fw_cfg
->dcb_version
= ++bp
->dcb_version
;
1835 pfc_fw_cfg
->dcb_enabled
= 1;
1837 /* Fill priority parameters */
1838 for (pri
= 0; pri
< LLFC_DRIVER_TRAFFIC_TYPE_MAX
; pri
++) {
1839 tt2cos
[pri
].priority
= ttp
[pri
];
1840 pri_bit
= 1 << tt2cos
[pri
].priority
;
1842 /* Fill COS parameters based on COS calculated to
1843 * make it more general for future use */
1844 for (cos
= 0; cos
< bp
->dcbx_port_params
.ets
.num_of_cos
; cos
++)
1845 if (bp
->dcbx_port_params
.ets
.cos_params
[cos
].
1846 pri_bitmask
& pri_bit
)
1847 tt2cos
[pri
].cos
= cos
;
1850 /* we never want the FW to add a 0 vlan tag */
1851 pfc_fw_cfg
->dont_add_pri_0_en
= 1;
1853 bnx2x_dcbx_print_cos_params(bp
, pfc_fw_cfg
);
1856 void bnx2x_dcbx_pmf_update(struct bnx2x
*bp
)
1858 /* if we need to syncronize DCBX result from prev PMF
1859 * read it from shmem and update bp and netdev accordingly
1861 if (SHMEM2_HAS(bp
, drv_flags
) &&
1862 GET_FLAGS(SHMEM2_RD(bp
, drv_flags
), 1 << DRV_FLAGS_DCB_CONFIGURED
)) {
1863 /* Read neg results if dcbx is in the FW */
1864 if (bnx2x_dcbx_read_shmem_neg_results(bp
))
1867 bnx2x_dump_dcbx_drv_param(bp
, &bp
->dcbx_local_feat
,
1869 bnx2x_get_dcbx_drv_param(bp
, &bp
->dcbx_local_feat
,
1873 * Add new app tlvs to dcbnl
1875 bnx2x_dcbnl_update_applist(bp
, false);
1877 * Send a notification for the new negotiated parameters
1879 dcbnl_cee_notify(bp
->dev
, RTM_GETDCB
, DCB_CMD_CEE_GET
, 0, 0);
1882 * reconfigure the netdevice with the results of the new
1885 bnx2x_dcbx_update_tc_mapping(bp
);
1893 #define BNX2X_DCBX_CAPS (DCB_CAP_DCBX_LLD_MANAGED | \
1894 DCB_CAP_DCBX_VER_CEE | DCB_CAP_DCBX_STATIC)
1896 static inline bool bnx2x_dcbnl_set_valid(struct bnx2x
*bp
)
1898 /* validate dcbnl call that may change HW state:
1899 * DCB is on and DCBX mode was SUCCESSFULLY set by the user.
1901 return bp
->dcb_state
&& bp
->dcbx_mode_uset
;
1904 static u8
bnx2x_dcbnl_get_state(struct net_device
*netdev
)
1906 struct bnx2x
*bp
= netdev_priv(netdev
);
1907 DP(NETIF_MSG_LINK
, "state = %d\n", bp
->dcb_state
);
1908 return bp
->dcb_state
;
1911 static u8
bnx2x_dcbnl_set_state(struct net_device
*netdev
, u8 state
)
1913 struct bnx2x
*bp
= netdev_priv(netdev
);
1914 DP(NETIF_MSG_LINK
, "state = %s\n", state
? "on" : "off");
1916 bnx2x_dcbx_set_state(bp
, (state
? true : false), bp
->dcbx_enabled
);
1920 static void bnx2x_dcbnl_get_perm_hw_addr(struct net_device
*netdev
,
1923 struct bnx2x
*bp
= netdev_priv(netdev
);
1924 DP(NETIF_MSG_LINK
, "GET-PERM-ADDR\n");
1926 /* first the HW mac address */
1927 memcpy(perm_addr
, netdev
->dev_addr
, netdev
->addr_len
);
1930 /* second SAN address */
1931 memcpy(perm_addr
+netdev
->addr_len
, bp
->fip_mac
, netdev
->addr_len
);
1935 static void bnx2x_dcbnl_set_pg_tccfg_tx(struct net_device
*netdev
, int prio
,
1936 u8 prio_type
, u8 pgid
, u8 bw_pct
,
1939 struct bnx2x
*bp
= netdev_priv(netdev
);
1941 DP(NETIF_MSG_LINK
, "prio[%d] = %d\n", prio
, pgid
);
1942 if (!bnx2x_dcbnl_set_valid(bp
) || prio
>= DCBX_MAX_NUM_PRI_PG_ENTRIES
)
1946 * bw_pct ingnored - band-width percentage devision between user
1947 * priorities within the same group is not
1948 * standard and hence not supported
1950 * prio_type igonred - priority levels within the same group are not
1951 * standard and hence are not supported. According
1952 * to the standard pgid 15 is dedicated to strict
1953 * prioirty traffic (on the port level).
1958 bp
->dcbx_config_params
.admin_configuration_ets_pg
[prio
] = pgid
;
1959 bp
->dcbx_config_params
.admin_ets_configuration_tx_enable
= 1;
1962 static void bnx2x_dcbnl_set_pg_bwgcfg_tx(struct net_device
*netdev
,
1963 int pgid
, u8 bw_pct
)
1965 struct bnx2x
*bp
= netdev_priv(netdev
);
1966 DP(NETIF_MSG_LINK
, "pgid[%d] = %d\n", pgid
, bw_pct
);
1968 if (!bnx2x_dcbnl_set_valid(bp
) || pgid
>= DCBX_MAX_NUM_PG_BW_ENTRIES
)
1971 bp
->dcbx_config_params
.admin_configuration_bw_precentage
[pgid
] = bw_pct
;
1972 bp
->dcbx_config_params
.admin_ets_configuration_tx_enable
= 1;
1975 static void bnx2x_dcbnl_set_pg_tccfg_rx(struct net_device
*netdev
, int prio
,
1976 u8 prio_type
, u8 pgid
, u8 bw_pct
,
1979 struct bnx2x
*bp
= netdev_priv(netdev
);
1980 DP(NETIF_MSG_LINK
, "Nothing to set; No RX support\n");
1983 static void bnx2x_dcbnl_set_pg_bwgcfg_rx(struct net_device
*netdev
,
1984 int pgid
, u8 bw_pct
)
1986 struct bnx2x
*bp
= netdev_priv(netdev
);
1987 DP(NETIF_MSG_LINK
, "Nothing to set; No RX support\n");
1990 static void bnx2x_dcbnl_get_pg_tccfg_tx(struct net_device
*netdev
, int prio
,
1991 u8
*prio_type
, u8
*pgid
, u8
*bw_pct
,
1994 struct bnx2x
*bp
= netdev_priv(netdev
);
1995 DP(NETIF_MSG_LINK
, "prio = %d\n", prio
);
1998 * bw_pct ingnored - band-width percentage devision between user
1999 * priorities within the same group is not
2000 * standard and hence not supported
2002 * prio_type igonred - priority levels within the same group are not
2003 * standard and hence are not supported. According
2004 * to the standard pgid 15 is dedicated to strict
2005 * prioirty traffic (on the port level).
2009 *up_map
= *bw_pct
= *prio_type
= *pgid
= 0;
2011 if (!bp
->dcb_state
|| prio
>= DCBX_MAX_NUM_PRI_PG_ENTRIES
)
2014 *pgid
= DCBX_PRI_PG_GET(bp
->dcbx_local_feat
.ets
.pri_pg_tbl
, prio
);
2017 static void bnx2x_dcbnl_get_pg_bwgcfg_tx(struct net_device
*netdev
,
2018 int pgid
, u8
*bw_pct
)
2020 struct bnx2x
*bp
= netdev_priv(netdev
);
2021 DP(NETIF_MSG_LINK
, "pgid = %d\n", pgid
);
2025 if (!bp
->dcb_state
|| pgid
>= DCBX_MAX_NUM_PG_BW_ENTRIES
)
2028 *bw_pct
= DCBX_PG_BW_GET(bp
->dcbx_local_feat
.ets
.pg_bw_tbl
, pgid
);
2031 static void bnx2x_dcbnl_get_pg_tccfg_rx(struct net_device
*netdev
, int prio
,
2032 u8
*prio_type
, u8
*pgid
, u8
*bw_pct
,
2035 struct bnx2x
*bp
= netdev_priv(netdev
);
2036 DP(NETIF_MSG_LINK
, "Nothing to get; No RX support\n");
2038 *prio_type
= *pgid
= *bw_pct
= *up_map
= 0;
2041 static void bnx2x_dcbnl_get_pg_bwgcfg_rx(struct net_device
*netdev
,
2042 int pgid
, u8
*bw_pct
)
2044 struct bnx2x
*bp
= netdev_priv(netdev
);
2045 DP(NETIF_MSG_LINK
, "Nothing to get; No RX support\n");
2050 static void bnx2x_dcbnl_set_pfc_cfg(struct net_device
*netdev
, int prio
,
2053 struct bnx2x
*bp
= netdev_priv(netdev
);
2054 DP(NETIF_MSG_LINK
, "prio[%d] = %d\n", prio
, setting
);
2056 if (!bnx2x_dcbnl_set_valid(bp
) || prio
>= MAX_PFC_PRIORITIES
)
2059 bp
->dcbx_config_params
.admin_pfc_bitmap
|= ((setting
? 1 : 0) << prio
);
2062 bp
->dcbx_config_params
.admin_pfc_tx_enable
= 1;
2065 static void bnx2x_dcbnl_get_pfc_cfg(struct net_device
*netdev
, int prio
,
2068 struct bnx2x
*bp
= netdev_priv(netdev
);
2069 DP(NETIF_MSG_LINK
, "prio = %d\n", prio
);
2073 if (!bp
->dcb_state
|| prio
>= MAX_PFC_PRIORITIES
)
2076 *setting
= (bp
->dcbx_local_feat
.pfc
.pri_en_bitmap
>> prio
) & 0x1;
2079 static u8
bnx2x_dcbnl_set_all(struct net_device
*netdev
)
2081 struct bnx2x
*bp
= netdev_priv(netdev
);
2084 DP(NETIF_MSG_LINK
, "SET-ALL\n");
2086 if (!bnx2x_dcbnl_set_valid(bp
))
2089 if (bp
->recovery_state
!= BNX2X_RECOVERY_DONE
) {
2090 netdev_err(bp
->dev
, "Handling parity error recovery. "
2091 "Try again later\n");
2094 if (netif_running(bp
->dev
)) {
2095 bnx2x_nic_unload(bp
, UNLOAD_NORMAL
);
2096 rc
= bnx2x_nic_load(bp
, LOAD_NORMAL
);
2098 DP(NETIF_MSG_LINK
, "set_dcbx_params done (%d)\n", rc
);
2105 static u8
bnx2x_dcbnl_get_cap(struct net_device
*netdev
, int capid
, u8
*cap
)
2107 struct bnx2x
*bp
= netdev_priv(netdev
);
2110 if (bp
->dcb_state
) {
2112 case DCB_CAP_ATTR_PG
:
2115 case DCB_CAP_ATTR_PFC
:
2118 case DCB_CAP_ATTR_UP2TC
:
2121 case DCB_CAP_ATTR_PG_TCS
:
2122 *cap
= 0x80; /* 8 priorities for PGs */
2124 case DCB_CAP_ATTR_PFC_TCS
:
2125 *cap
= 0x80; /* 8 priorities for PFC */
2127 case DCB_CAP_ATTR_GSP
:
2130 case DCB_CAP_ATTR_BCN
:
2133 case DCB_CAP_ATTR_DCBX
:
2134 *cap
= BNX2X_DCBX_CAPS
;
2143 DP(NETIF_MSG_LINK
, "capid %d:%x\n", capid
, *cap
);
2147 static u8
bnx2x_dcbnl_get_numtcs(struct net_device
*netdev
, int tcid
, u8
*num
)
2149 struct bnx2x
*bp
= netdev_priv(netdev
);
2152 DP(NETIF_MSG_LINK
, "tcid %d\n", tcid
);
2154 if (bp
->dcb_state
) {
2156 case DCB_NUMTCS_ATTR_PG
:
2157 *num
= CHIP_IS_E3B0(bp
) ? DCBX_COS_MAX_NUM_E3B0
:
2158 DCBX_COS_MAX_NUM_E2
;
2160 case DCB_NUMTCS_ATTR_PFC
:
2161 *num
= CHIP_IS_E3B0(bp
) ? DCBX_COS_MAX_NUM_E3B0
:
2162 DCBX_COS_MAX_NUM_E2
;
2174 static u8
bnx2x_dcbnl_set_numtcs(struct net_device
*netdev
, int tcid
, u8 num
)
2176 struct bnx2x
*bp
= netdev_priv(netdev
);
2177 DP(NETIF_MSG_LINK
, "num tcs = %d; Not supported\n", num
);
2181 static u8
bnx2x_dcbnl_get_pfc_state(struct net_device
*netdev
)
2183 struct bnx2x
*bp
= netdev_priv(netdev
);
2184 DP(NETIF_MSG_LINK
, "state = %d\n", bp
->dcbx_local_feat
.pfc
.enabled
);
2189 return bp
->dcbx_local_feat
.pfc
.enabled
;
2192 static void bnx2x_dcbnl_set_pfc_state(struct net_device
*netdev
, u8 state
)
2194 struct bnx2x
*bp
= netdev_priv(netdev
);
2195 DP(NETIF_MSG_LINK
, "state = %s\n", state
? "on" : "off");
2197 if (!bnx2x_dcbnl_set_valid(bp
))
2200 bp
->dcbx_config_params
.admin_pfc_tx_enable
=
2201 bp
->dcbx_config_params
.admin_pfc_enable
= (state
? 1 : 0);
2204 static void bnx2x_admin_app_set_ent(
2205 struct bnx2x_admin_priority_app_table
*app_ent
,
2206 u8 idtype
, u16 idval
, u8 up
)
2211 case DCB_APP_IDTYPE_ETHTYPE
:
2212 app_ent
->traffic_type
= TRAFFIC_TYPE_ETH
;
2214 case DCB_APP_IDTYPE_PORTNUM
:
2215 app_ent
->traffic_type
= TRAFFIC_TYPE_PORT
;
2218 break; /* never gets here */
2220 app_ent
->app_id
= idval
;
2221 app_ent
->priority
= up
;
2224 static bool bnx2x_admin_app_is_equal(
2225 struct bnx2x_admin_priority_app_table
*app_ent
,
2226 u8 idtype
, u16 idval
)
2228 if (!app_ent
->valid
)
2232 case DCB_APP_IDTYPE_ETHTYPE
:
2233 if (app_ent
->traffic_type
!= TRAFFIC_TYPE_ETH
)
2236 case DCB_APP_IDTYPE_PORTNUM
:
2237 if (app_ent
->traffic_type
!= TRAFFIC_TYPE_PORT
)
2243 if (app_ent
->app_id
!= idval
)
2249 static int bnx2x_set_admin_app_up(struct bnx2x
*bp
, u8 idtype
, u16 idval
, u8 up
)
2253 /* iterate over the app entries looking for idtype and idval */
2254 for (i
= 0, ff
= -1; i
< DCBX_CONFIG_MAX_APP_PROTOCOL
; i
++) {
2255 struct bnx2x_admin_priority_app_table
*app_ent
=
2256 &bp
->dcbx_config_params
.admin_priority_app_table
[i
];
2257 if (bnx2x_admin_app_is_equal(app_ent
, idtype
, idval
))
2260 if (ff
< 0 && !app_ent
->valid
)
2263 if (i
< DCBX_CONFIG_MAX_APP_PROTOCOL
)
2264 /* if found overwrite up */
2265 bp
->dcbx_config_params
.
2266 admin_priority_app_table
[i
].priority
= up
;
2268 /* not found use first-free */
2269 bnx2x_admin_app_set_ent(
2270 &bp
->dcbx_config_params
.admin_priority_app_table
[ff
],
2273 /* app table is full */
2276 /* up configured, if not 0 make sure feature is enabled */
2278 bp
->dcbx_config_params
.admin_application_priority_tx_enable
= 1;
2283 static u8
bnx2x_dcbnl_set_app_up(struct net_device
*netdev
, u8 idtype
,
2286 struct bnx2x
*bp
= netdev_priv(netdev
);
2288 DP(NETIF_MSG_LINK
, "app_type %d, app_id %x, prio bitmap %d\n",
2291 if (!bnx2x_dcbnl_set_valid(bp
))
2296 case DCB_APP_IDTYPE_ETHTYPE
:
2297 case DCB_APP_IDTYPE_PORTNUM
:
2302 return bnx2x_set_admin_app_up(bp
, idtype
, idval
, up
);
2305 static u8
bnx2x_dcbnl_get_dcbx(struct net_device
*netdev
)
2307 struct bnx2x
*bp
= netdev_priv(netdev
);
2310 state
= DCB_CAP_DCBX_LLD_MANAGED
| DCB_CAP_DCBX_VER_CEE
;
2312 if (bp
->dcbx_enabled
== BNX2X_DCBX_ENABLED_ON_NEG_OFF
)
2313 state
|= DCB_CAP_DCBX_STATIC
;
2318 static u8
bnx2x_dcbnl_set_dcbx(struct net_device
*netdev
, u8 state
)
2320 struct bnx2x
*bp
= netdev_priv(netdev
);
2321 DP(NETIF_MSG_LINK
, "state = %02x\n", state
);
2325 if ((state
& BNX2X_DCBX_CAPS
) != state
) {
2326 BNX2X_ERR("Requested DCBX mode %x is beyond advertised "
2327 "capabilities\n", state
);
2331 if (bp
->dcb_state
!= BNX2X_DCB_STATE_ON
) {
2332 BNX2X_ERR("DCB turned off, DCBX configuration is invalid\n");
2336 if (state
& DCB_CAP_DCBX_STATIC
)
2337 bp
->dcbx_enabled
= BNX2X_DCBX_ENABLED_ON_NEG_OFF
;
2339 bp
->dcbx_enabled
= BNX2X_DCBX_ENABLED_ON_NEG_ON
;
2341 bp
->dcbx_mode_uset
= true;
2345 static u8
bnx2x_dcbnl_get_featcfg(struct net_device
*netdev
, int featid
,
2348 struct bnx2x
*bp
= netdev_priv(netdev
);
2351 DP(NETIF_MSG_LINK
, "featid %d\n", featid
);
2353 if (bp
->dcb_state
) {
2356 case DCB_FEATCFG_ATTR_PG
:
2357 if (bp
->dcbx_local_feat
.ets
.enabled
)
2358 *flags
|= DCB_FEATCFG_ENABLE
;
2359 if (bp
->dcbx_error
& DCBX_LOCAL_ETS_ERROR
)
2360 *flags
|= DCB_FEATCFG_ERROR
;
2362 case DCB_FEATCFG_ATTR_PFC
:
2363 if (bp
->dcbx_local_feat
.pfc
.enabled
)
2364 *flags
|= DCB_FEATCFG_ENABLE
;
2365 if (bp
->dcbx_error
& (DCBX_LOCAL_PFC_ERROR
|
2366 DCBX_LOCAL_PFC_MISMATCH
))
2367 *flags
|= DCB_FEATCFG_ERROR
;
2369 case DCB_FEATCFG_ATTR_APP
:
2370 if (bp
->dcbx_local_feat
.app
.enabled
)
2371 *flags
|= DCB_FEATCFG_ENABLE
;
2372 if (bp
->dcbx_error
& (DCBX_LOCAL_APP_ERROR
|
2373 DCBX_LOCAL_APP_MISMATCH
))
2374 *flags
|= DCB_FEATCFG_ERROR
;
2386 static u8
bnx2x_dcbnl_set_featcfg(struct net_device
*netdev
, int featid
,
2389 struct bnx2x
*bp
= netdev_priv(netdev
);
2392 DP(NETIF_MSG_LINK
, "featid = %d flags = %02x\n", featid
, flags
);
2394 /* ignore the 'advertise' flag */
2395 if (bnx2x_dcbnl_set_valid(bp
)) {
2397 case DCB_FEATCFG_ATTR_PG
:
2398 bp
->dcbx_config_params
.admin_ets_enable
=
2399 flags
& DCB_FEATCFG_ENABLE
? 1 : 0;
2400 bp
->dcbx_config_params
.admin_ets_willing
=
2401 flags
& DCB_FEATCFG_WILLING
? 1 : 0;
2403 case DCB_FEATCFG_ATTR_PFC
:
2404 bp
->dcbx_config_params
.admin_pfc_enable
=
2405 flags
& DCB_FEATCFG_ENABLE
? 1 : 0;
2406 bp
->dcbx_config_params
.admin_pfc_willing
=
2407 flags
& DCB_FEATCFG_WILLING
? 1 : 0;
2409 case DCB_FEATCFG_ATTR_APP
:
2410 /* ignore enable, always enabled */
2411 bp
->dcbx_config_params
.admin_app_priority_willing
=
2412 flags
& DCB_FEATCFG_WILLING
? 1 : 0;
2424 static int bnx2x_peer_appinfo(struct net_device
*netdev
,
2425 struct dcb_peer_app_info
*info
, u16
* app_count
)
2428 struct bnx2x
*bp
= netdev_priv(netdev
);
2430 DP(NETIF_MSG_LINK
, "APP-INFO\n");
2432 info
->willing
= (bp
->dcbx_remote_flags
& DCBX_APP_REM_WILLING
) ?: 0;
2433 info
->error
= (bp
->dcbx_remote_flags
& DCBX_APP_RX_ERROR
) ?: 0;
2436 for (i
= 0; i
< DCBX_MAX_APP_PROTOCOL
; i
++)
2437 if (bp
->dcbx_remote_feat
.app
.app_pri_tbl
[i
].appBitfield
&
2438 DCBX_APP_ENTRY_VALID
)
2443 static int bnx2x_peer_apptable(struct net_device
*netdev
,
2444 struct dcb_app
*table
)
2447 struct bnx2x
*bp
= netdev_priv(netdev
);
2449 DP(NETIF_MSG_LINK
, "APP-TABLE\n");
2451 for (i
= 0, j
= 0; i
< DCBX_MAX_APP_PROTOCOL
; i
++) {
2452 struct dcbx_app_priority_entry
*ent
=
2453 &bp
->dcbx_remote_feat
.app
.app_pri_tbl
[i
];
2455 if (ent
->appBitfield
& DCBX_APP_ENTRY_VALID
) {
2456 table
[j
].selector
= bnx2x_dcbx_dcbnl_app_idtype(ent
);
2457 table
[j
].priority
= bnx2x_dcbx_dcbnl_app_up(ent
);
2458 table
[j
++].protocol
= ent
->app_id
;
2464 static int bnx2x_cee_peer_getpg(struct net_device
*netdev
, struct cee_pg
*pg
)
2467 struct bnx2x
*bp
= netdev_priv(netdev
);
2469 pg
->willing
= (bp
->dcbx_remote_flags
& DCBX_ETS_REM_WILLING
) ?: 0;
2471 for (i
= 0; i
< CEE_DCBX_MAX_PGS
; i
++) {
2473 DCBX_PG_BW_GET(bp
->dcbx_remote_feat
.ets
.pg_bw_tbl
, i
);
2475 DCBX_PRI_PG_GET(bp
->dcbx_remote_feat
.ets
.pri_pg_tbl
, i
);
2480 static int bnx2x_cee_peer_getpfc(struct net_device
*netdev
,
2481 struct cee_pfc
*pfc
)
2483 struct bnx2x
*bp
= netdev_priv(netdev
);
2484 pfc
->tcs_supported
= bp
->dcbx_remote_feat
.pfc
.pfc_caps
;
2485 pfc
->pfc_en
= bp
->dcbx_remote_feat
.pfc
.pri_en_bitmap
;
2489 const struct dcbnl_rtnl_ops bnx2x_dcbnl_ops
= {
2490 .getstate
= bnx2x_dcbnl_get_state
,
2491 .setstate
= bnx2x_dcbnl_set_state
,
2492 .getpermhwaddr
= bnx2x_dcbnl_get_perm_hw_addr
,
2493 .setpgtccfgtx
= bnx2x_dcbnl_set_pg_tccfg_tx
,
2494 .setpgbwgcfgtx
= bnx2x_dcbnl_set_pg_bwgcfg_tx
,
2495 .setpgtccfgrx
= bnx2x_dcbnl_set_pg_tccfg_rx
,
2496 .setpgbwgcfgrx
= bnx2x_dcbnl_set_pg_bwgcfg_rx
,
2497 .getpgtccfgtx
= bnx2x_dcbnl_get_pg_tccfg_tx
,
2498 .getpgbwgcfgtx
= bnx2x_dcbnl_get_pg_bwgcfg_tx
,
2499 .getpgtccfgrx
= bnx2x_dcbnl_get_pg_tccfg_rx
,
2500 .getpgbwgcfgrx
= bnx2x_dcbnl_get_pg_bwgcfg_rx
,
2501 .setpfccfg
= bnx2x_dcbnl_set_pfc_cfg
,
2502 .getpfccfg
= bnx2x_dcbnl_get_pfc_cfg
,
2503 .setall
= bnx2x_dcbnl_set_all
,
2504 .getcap
= bnx2x_dcbnl_get_cap
,
2505 .getnumtcs
= bnx2x_dcbnl_get_numtcs
,
2506 .setnumtcs
= bnx2x_dcbnl_set_numtcs
,
2507 .getpfcstate
= bnx2x_dcbnl_get_pfc_state
,
2508 .setpfcstate
= bnx2x_dcbnl_set_pfc_state
,
2509 .setapp
= bnx2x_dcbnl_set_app_up
,
2510 .getdcbx
= bnx2x_dcbnl_get_dcbx
,
2511 .setdcbx
= bnx2x_dcbnl_set_dcbx
,
2512 .getfeatcfg
= bnx2x_dcbnl_get_featcfg
,
2513 .setfeatcfg
= bnx2x_dcbnl_set_featcfg
,
2514 .peer_getappinfo
= bnx2x_peer_appinfo
,
2515 .peer_getapptable
= bnx2x_peer_apptable
,
2516 .cee_peer_getpg
= bnx2x_cee_peer_getpg
,
2517 .cee_peer_getpfc
= bnx2x_cee_peer_getpfc
,
2520 #endif /* BCM_DCBNL */