]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
iwlwifi: mvm: support family 8000 C step
authorEran Harary <eran.harary@intel.com>
Mon, 12 Jan 2015 08:43:58 +0000 (10:43 +0200)
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Thu, 22 Jan 2015 15:55:20 +0000 (17:55 +0200)
C step functionality in the driver is exactly the same as
B step besides the ucode name that present as iwlwifi-8000C-xx.ucode
instead of iwlwifi-8000B-xx.ucode

Signed-off-by: Eran Harary <eran.harary@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
drivers/net/wireless/iwlwifi/iwl-csr.h
drivers/net/wireless/iwlwifi/mvm/nvm.c
drivers/net/wireless/iwlwifi/pcie/trans.c

index 7f40cf36ec0ed200b1906e0dd7ca11a4385f24d0..faa17f2e352adf72b740ffc37dfb03e747b003e1 100644 (file)
 enum {
        SILICON_A_STEP = 0,
        SILICON_B_STEP,
+       SILICON_C_STEP,
 };
 
 
index d8ac01d97e26b942c9ce7eb5b61a0b9e1ba46093..5383429d96c1c49f91539c8440b6016cee9dd31c 100644 (file)
@@ -356,7 +356,7 @@ static int iwl_mvm_read_external_nvm(struct iwl_mvm *mvm)
                max_section_size = IWL_MAX_NVM_SECTION_SIZE;
        else if (CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_A_STEP)
                max_section_size = IWL_MAX_NVM_8000A_SECTION_SIZE;
-       else /* Family 8000 B-step */
+       else /* Family 8000 B-step or C-step */
                max_section_size = IWL_MAX_NVM_8000B_SECTION_SIZE;
 
        /*
index 95c2ab1ec74cbbe8d2fa5a7d24591eddefcfe031..49e32060eafba727552f476cb06741ea62161512 100644 (file)
@@ -982,7 +982,7 @@ static int iwl_trans_pcie_start_fw(struct iwl_trans *trans,
 
        /* Load the given image to the HW */
        if ((trans->cfg->device_family == IWL_DEVICE_FAMILY_8000) &&
-           (CSR_HW_REV_STEP(trans->hw_rev) == SILICON_B_STEP))
+           (CSR_HW_REV_STEP(trans->hw_rev) != SILICON_A_STEP))
                return iwl_pcie_load_given_ucode_8000b(trans, fw);
        else
                return iwl_pcie_load_given_ucode(trans, fw);