Home | History | Annotate | Download | only in pci

Lines Matching defs:section

936 			DPRINTF(("%s: unknown firmware section %d, abort\n",
951 "firmware parse error, section type %d\n", tlv_type);
2317 DPRINTF(("%s: Can't SEND phy_db section %d (%d), "
2491 iwm_nvm_read_chunk(struct iwm_softc *sc, uint16_t section, uint16_t offset,
2498 .type = htole16(section),
2557 * Reads an NVM section completely.
2559 * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
2564 iwm_nvm_read_section(struct iwm_softc *sc, uint16_t section, uint8_t *data,
2575 err = iwm_nvm_read_chunk(sc, section, *len, chunklen, data,
2578 DPRINTF(("%s: Cannot read NVM from section %d "
2580 DEVNAME(sc), section, *len, chunklen));
2586 DPRINTFN(4, ("NVM section %d read completed\n", section));
3078 * Store the MAC address from MAO section.
3079 * No byte swapping is required in MAO section
3214 /* MAC_OVERRIDE or at least HW section must exist */
3220 /* PHY_SKU section is mandatory in B0 */
3250 int i, section, err;
3264 section = iwm_nvm_to_read[i];
3265 KASSERT(section <= IWM_NVM_NUM_OF_SECTIONS);
3267 err = iwm_nvm_read_section(sc, section, buf, &len, bufsz);
3272 nvm_sections[section].data = kmem_alloc(len, KM_SLEEP);
3273 memcpy(nvm_sections[section].data, buf, len);
3274 nvm_sections[section].length = len;
3290 const uint8_t *section, uint32_t byte_cnt)
3304 data = section + offset;
3329 const uint8_t *section, uint32_t byte_cnt)
3335 memcpy(dma->vaddr, section, byte_cnt);
3511 /* Notify the ucode of the loaded section number and status */