Lines Matching full:sections
219 struct iwl_nvm_section *sections = mvm->nvm_sections; in iwl_parse_nvm_sections() local
226 /* Checking for required sections */ in iwl_parse_nvm_sections()
230 IWL_ERR(mvm, "Can't parse empty OTP/NVM sections\n"); in iwl_parse_nvm_sections()
239 /* SW and REGULATORY sections are mandatory */ in iwl_parse_nvm_sections()
243 "Can't parse empty family 8000 OTP/NVM sections\n"); in iwl_parse_nvm_sections()
250 "Can't parse mac_address, empty sections\n"); in iwl_parse_nvm_sections()
258 "Can't parse phy_sku in B0, empty sections\n"); in iwl_parse_nvm_sections()
263 hw = (const __be16 *)sections[mvm->cfg->nvm_hw_section_num].data; in iwl_parse_nvm_sections()
264 sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data; in iwl_parse_nvm_sections()
265 calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data; in iwl_parse_nvm_sections()
267 (const __le16 *)sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data; in iwl_parse_nvm_sections()
268 phy_sku = (const __le16 *)sections[NVM_SECTION_TYPE_PHY_SKU].data; in iwl_parse_nvm_sections()
271 (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY_SDP].data : in iwl_parse_nvm_sections()
272 (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY].data; in iwl_parse_nvm_sections()
289 struct iwl_nvm_section *sections = mvm->nvm_sections; in iwl_mvm_load_nvm_to_nic() local
296 ret = iwl_nvm_write_section(mvm, i, sections[i].data, in iwl_mvm_load_nvm_to_nic()
297 sections[i].length); in iwl_mvm_load_nvm_to_nic()
404 /* parse the relevant nvm sections */ in iwl_nvm_init()