Commit 372e27de authored by Grzegorz Nitka's avatar Grzegorz Nitka Committed by Tony Nguyen

ice: add support for 3k signing DDP sections for E825C

E825C devices shall support the new signing type of RSA 3K for new DDP
section (SEGMENT_SIGN_TYPE_RSA3K_E825 (5) - already in the code).
The driver is responsible to verify the presence of correct signing type.
Add 3k signinig support for E825C devices based on mac_type:
ICE_MAC_GENERIC_3K_E825;
Signed-off-by: default avatarGrzegorz Nitka <grzegorz.nitka@intel.com>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com> (A Contingent worker at Intel)
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent 7a15668f
...@@ -154,6 +154,12 @@ static int ice_set_mac_type(struct ice_hw *hw) ...@@ -154,6 +154,12 @@ static int ice_set_mac_type(struct ice_hw *hw)
case ICE_DEV_ID_E823L_SFP: case ICE_DEV_ID_E823L_SFP:
hw->mac_type = ICE_MAC_GENERIC; hw->mac_type = ICE_MAC_GENERIC;
break; break;
case ICE_DEV_ID_E825C_BACKPLANE:
case ICE_DEV_ID_E825C_QSFP:
case ICE_DEV_ID_E825C_SFP:
case ICE_DEV_ID_E825C_SGMII:
hw->mac_type = ICE_MAC_GENERIC_3K_E825;
break;
case ICE_DEV_ID_E830_BACKPLANE: case ICE_DEV_ID_E830_BACKPLANE:
case ICE_DEV_ID_E830_QSFP56: case ICE_DEV_ID_E830_QSFP56:
case ICE_DEV_ID_E830_SFP: case ICE_DEV_ID_E830_SFP:
......
...@@ -1825,6 +1825,7 @@ static u32 ice_get_pkg_segment_id(enum ice_mac_type mac_type) ...@@ -1825,6 +1825,7 @@ static u32 ice_get_pkg_segment_id(enum ice_mac_type mac_type)
seg_id = SEGMENT_TYPE_ICE_E830; seg_id = SEGMENT_TYPE_ICE_E830;
break; break;
case ICE_MAC_GENERIC: case ICE_MAC_GENERIC:
case ICE_MAC_GENERIC_3K_E825:
default: default:
seg_id = SEGMENT_TYPE_ICE_E810; seg_id = SEGMENT_TYPE_ICE_E810;
break; break;
...@@ -1845,6 +1846,9 @@ static u32 ice_get_pkg_sign_type(enum ice_mac_type mac_type) ...@@ -1845,6 +1846,9 @@ static u32 ice_get_pkg_sign_type(enum ice_mac_type mac_type)
case ICE_MAC_E830: case ICE_MAC_E830:
sign_type = SEGMENT_SIGN_TYPE_RSA3K_SBB; sign_type = SEGMENT_SIGN_TYPE_RSA3K_SBB;
break; break;
case ICE_MAC_GENERIC_3K_E825:
sign_type = SEGMENT_SIGN_TYPE_RSA3K_E825;
break;
case ICE_MAC_GENERIC: case ICE_MAC_GENERIC:
default: default:
sign_type = SEGMENT_SIGN_TYPE_RSA2K; sign_type = SEGMENT_SIGN_TYPE_RSA2K;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment