This series contains updates to ice driver to implement and support loading a Dynamic Device Personalization (DDP) package from lib/firmware onto the device.
Paul updates the way the driver version is stored in the driver so that we can pass the driver version to the firmware. Passing of the driver version to the firmware is needed for the DDP package to ensure we have the appropriate support in the driver for the features in the package. Lukasz fixes how the firmware version is stored to align with how the firmware stores its own version. Also extended the log message to display additional useful information such as NVM version, API patch information and firmware build hash. Tony adds the needed driver support to check, load and store the DDP package. Also add support for the ability to load DDP packages intended for specific hardware devices, as well as what to do when loading of the DDP package fails to load. The following are changes since commit 172ca8308b0517ca2522a8c885755fd5c20294e7: cxgb4: Fix spelling typos and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 100GbE Lukasz Czapnik (1): ice: Fix FW version formatting in dmesg Paul M Stillwell Jr (1): ice: send driver version to firmware Tony Nguyen (4): ice: Implement Dynamic Device Personalization (DDP) download ice: Initialize DDP package structures ice: Enable DDP package download ice: Bump version drivers/net/ethernet/intel/ice/Makefile | 1 + drivers/net/ethernet/intel/ice/ice.h | 16 +- .../net/ethernet/intel/ice/ice_adminq_cmd.h | 73 + drivers/net/ethernet/intel/ice/ice_common.c | 174 +- drivers/net/ethernet/intel/ice/ice_common.h | 12 + drivers/net/ethernet/intel/ice/ice_dcb_lib.c | 42 + drivers/net/ethernet/intel/ice/ice_dcb_lib.h | 2 + drivers/net/ethernet/intel/ice/ice_ethtool.c | 52 +- .../net/ethernet/intel/ice/ice_flex_pipe.c | 1549 +++++++++++++++++ .../net/ethernet/intel/ice/ice_flex_pipe.h | 29 + .../net/ethernet/intel/ice/ice_flex_type.h | 374 ++++ .../net/ethernet/intel/ice/ice_hw_autogen.h | 2 + drivers/net/ethernet/intel/ice/ice_lib.c | 111 +- drivers/net/ethernet/intel/ice/ice_lib.h | 3 + drivers/net/ethernet/intel/ice/ice_main.c | 657 +++++-- drivers/net/ethernet/intel/ice/ice_type.h | 36 + .../net/ethernet/intel/ice/ice_virtchnl_pf.c | 6 + 17 files changed, 2915 insertions(+), 224 deletions(-) create mode 100644 drivers/net/ethernet/intel/ice/ice_flex_pipe.c create mode 100644 drivers/net/ethernet/intel/ice/ice_flex_pipe.h create mode 100644 drivers/net/ethernet/intel/ice/ice_flex_type.h -- 2.21.0