Lines Matching defs:section
1045 DPRINTF(("%s: unknown firmware section %d, abort\n",
1067 "section type %d\n", err, tlv_type);
2507 DPRINTF(("%s: Can't SEND phy_db section %d (%d), "
2685 iwm_nvm_read_chunk(struct iwm_softc *sc, uint16_t section, uint16_t offset,
2692 .type = htole16(section),
2756 * Reads an NVM section completely.
2758 * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
2763 iwm_nvm_read_section(struct iwm_softc *sc, uint16_t section, uint8_t *data,
2774 err = iwm_nvm_read_chunk(sc, section, *len, chunklen, data,
2777 DPRINTF(("%s: Cannot read NVM from section %d "
2779 DEVNAME(sc), section, *len, chunklen));
2785 DPRINTFN(4, ("NVM section %d read completed\n", section));
3306 * Store the MAC address from MAO section.
3307 * No byte swapping is required in MAO section
3471 /* MAC_OVERRIDE or at least HW section must exist */
3477 /* PHY_SKU section is mandatory in B0 */
3508 int i, section, err;
3522 section = iwm_nvm_to_read[i];
3523 KASSERT(section < IWM_NVM_NUM_OF_SECTIONS);
3525 err = iwm_nvm_read_section(sc, section, buf, &len, bufsz);
3530 nvm_sections[section].data = kmem_alloc(len, KM_SLEEP);
3531 memcpy(nvm_sections[section].data, buf, len);
3532 nvm_sections[section].length = len;
3547 const uint8_t *section, uint32_t byte_cnt)
3560 data = section + offset;
3572 const uint8_t *section, uint32_t byte_cnt)
3578 memcpy(dma->vaddr, section, byte_cnt);
3722 /* Notify the ucode of the loaded section number and status */