i40e: Support firmware CEE DCB UP to TC map re-definition
Changes parsing of FW 4.33 AQ command Get CEE DCBX OPER CFG (0x0A07). Change is required because FW now creates the oper_prio_tc nibbles reversed from those in the CEE Priority Group sub-TLV. This change will only apply to FW 4.33 as future FW versions will use a different function to parse the CEE data. Signed-off-by: Greg Bowers <gregory.j.bowers@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
Родитель
1e99854715
Коммит
68fb13a767
|
@ -620,14 +620,17 @@ static void i40e_cee_to_dcb_v1_config(
|
|||
/* CEE PG data to ETS config */
|
||||
dcbcfg->etscfg.maxtcs = cee_cfg->oper_num_tc;
|
||||
|
||||
/* Note that the FW creates the oper_prio_tc nibbles reversed
|
||||
* from those in the CEE Priority Group sub-TLV.
|
||||
*/
|
||||
for (i = 0; i < 4; i++) {
|
||||
tc = (u8)((cee_cfg->oper_prio_tc[i] &
|
||||
I40E_CEE_PGID_PRIO_1_MASK) >>
|
||||
I40E_CEE_PGID_PRIO_1_SHIFT);
|
||||
dcbcfg->etscfg.prioritytable[i*2] = tc;
|
||||
tc = (u8)((cee_cfg->oper_prio_tc[i] &
|
||||
I40E_CEE_PGID_PRIO_0_MASK) >>
|
||||
I40E_CEE_PGID_PRIO_0_SHIFT);
|
||||
dcbcfg->etscfg.prioritytable[i * 2] = tc;
|
||||
tc = (u8)((cee_cfg->oper_prio_tc[i] &
|
||||
I40E_CEE_PGID_PRIO_1_MASK) >>
|
||||
I40E_CEE_PGID_PRIO_1_SHIFT);
|
||||
dcbcfg->etscfg.prioritytable[i*2 + 1] = tc;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче