From: Ian Stokes <ian.sto...@intel.com>

As a temporary workaround to allow unsigned packages, there
needs to be support for configuration segments that are unsigned.

Allow packages that have some configuration segments that are signed
and some configuration segments that are not signed. The code has
been changed to detect for each configuration segment whether there
is a matching signature segment or not.

Signed-off-by: Dan Nowlin <dan.now...@intel.com>
Signed-off-by: Ian Stokes <ian.sto...@intel.com>
---
 drivers/net/ice/base/ice_ddp.c  | 24 +-----------------------
 drivers/net/ice/base/ice_type.h |  1 -
 2 files changed, 1 insertion(+), 24 deletions(-)

diff --git a/drivers/net/ice/base/ice_ddp.c b/drivers/net/ice/base/ice_ddp.c
index b57c67d849..3271d4572d 100644
--- a/drivers/net/ice/base/ice_ddp.c
+++ b/drivers/net/ice/base/ice_ddp.c
@@ -415,21 +415,6 @@ ice_aq_get_pkg_info_list(struct ice_hw *hw,
        return ice_aq_send_cmd(hw, &desc, pkg_info, buf_size, cd);
 }
 
-/**
- * ice_has_signing_seg - determine if package has a signing segment
- * @hw: pointer to the hardware structure
- * @pkg_hdr: pointer to the driver's package hdr
- */
-static bool ice_has_signing_seg(struct ice_hw *hw, struct ice_pkg_hdr *pkg_hdr)
-{
-       struct ice_generic_seg_hdr *seg_hdr;
-
-       seg_hdr = (struct ice_generic_seg_hdr *)
-               ice_find_seg_in_pkg(hw, SEGMENT_TYPE_SIGNING, pkg_hdr);
-
-       return seg_hdr ? true : false;
-}
-
 /**
  * ice_get_pkg_segment_id - get correct package segment id, based on device
  * @mac_type: MAC type of the device
@@ -760,7 +745,7 @@ ice_download_pkg(struct ice_hw *hw, struct ice_pkg_hdr 
*pkg_hdr,
 {
        enum ice_ddp_state state;
 
-       if (hw->pkg_has_signing_seg)
+       if (ice_match_signing_seg(pkg_hdr, hw->pkg_seg_id, hw->pkg_sign_type))
                state = ice_download_pkg_with_sig_seg(hw, pkg_hdr);
        else
                state = ice_download_pkg_without_sig_seg(hw, ice_seg);
@@ -785,7 +770,6 @@ ice_init_pkg_info(struct ice_hw *hw, struct ice_pkg_hdr 
*pkg_hdr)
        if (!pkg_hdr)
                return ICE_DDP_PKG_ERR;
 
-       hw->pkg_has_signing_seg = ice_has_signing_seg(hw, pkg_hdr);
        ice_get_signing_req(hw);
 
        ice_debug(hw, ICE_DBG_INIT, "Pkg using segment id: 0x%08X\n",
@@ -1360,12 +1344,6 @@ enum ice_ddp_state ice_init_pkg(struct ice_hw *hw, u8 
*buf, u32 len)
        if (state)
                return state;
 
-       /* For packages with signing segments, must be a matching segment */
-       if (hw->pkg_has_signing_seg)
-               if (!ice_match_signing_seg(pkg, hw->pkg_seg_id,
-                                          hw->pkg_sign_type))
-                       return ICE_DDP_PKG_ERR;
-
        /* before downloading the package, check package version for
         * compatibility with driver
         */
diff --git a/drivers/net/ice/base/ice_type.h b/drivers/net/ice/base/ice_type.h
index f787020a5f..d462423891 100644
--- a/drivers/net/ice/base/ice_type.h
+++ b/drivers/net/ice/base/ice_type.h
@@ -1352,7 +1352,6 @@ struct ice_hw {
        u32 pkg_seg_id;
        u32 pkg_sign_type;
        u32 active_track_id;
-       u8 pkg_has_signing_seg:1;
        u8 active_pkg_name[ICE_PKG_NAME_SIZE];
        u8 active_pkg_in_nvm;
 
-- 
2.43.0

Reply via email to