Symbol: fw_hdr
sys/arm/nvidia/tegra_xhci.c
743
const struct tegra_xusb_fw_hdr *fw_hdr;
sys/arm/nvidia/tegra_xhci.c
771
fw_hdr = (const struct tegra_xusb_fw_hdr *)fw->data;
sys/arm/nvidia/tegra_xhci.c
772
fw_size = fw_hdr->fwimg_len;
sys/arm/nvidia/tegra_xhci.c
777
fw_hdr = (const struct tegra_xusb_fw_hdr *)fw_vaddr;
sys/arm/nvidia/tegra_xhci.c
785
fw_base = fw_paddr + sizeof(*fw_hdr);
sys/arm/nvidia/tegra_xhci.c
796
code_tags = howmany(fw_hdr->boot_codetag, XUSB_CSB_IMEM_BLOCK_SIZE);
sys/arm/nvidia/tegra_xhci.c
797
code_size = howmany(fw_hdr->boot_codesize, XUSB_CSB_IMEM_BLOCK_SIZE);
sys/arm/nvidia/tegra_xhci.c
828
CSB_WR4(sc, XUSB_FALCON_BOOTVEC, fw_hdr->boot_codetag);
sys/arm/nvidia/tegra_xhci.c
843
fw_timespec.tv_sec = fw_hdr->fwimg_created_time;
sys/arm/nvidia/tegra_xhci.c
849
(fw_hdr->version_id >> 24) & 0xFF,(fw_hdr->version_id >> 15) & 0xFF,
sys/arm/nvidia/tegra_xhci.c
850
fw_hdr->version_id & 0xFFFF,
sys/dev/cxgbe/common/common.h
714
int t4_get_fw_hdr(struct adapter *adapter, struct fw_hdr *hdr);
sys/dev/cxgbe/common/t4_hw.c
4037
return t4_read_flash(adapter, start + offsetof(struct fw_hdr, fw_ver),
sys/dev/cxgbe/common/t4_hw.c
4048
int t4_get_fw_hdr(struct adapter *adapter, struct fw_hdr *hdr)
sys/dev/cxgbe/common/t4_hw.c
4068
return t4_read_flash(adapter, start + offsetof(struct fw_hdr, fw_ver),
sys/dev/cxgbe/common/t4_hw.c
4084
offsetof(struct fw_hdr, tp_microcode_ver), 1, vers, 0);
sys/dev/cxgbe/common/t4_hw.c
4290
const struct fw_hdr *hdr)
sys/dev/cxgbe/common/t4_hw.c
4323
const struct fw_hdr *hdr = (const struct fw_hdr *)fw_data;
sys/dev/cxgbe/common/t4_hw.c
4376
((struct fw_hdr *)first_page)->fw_ver = cpu_to_be32(0xffffffff);
sys/dev/cxgbe/common/t4_hw.c
4391
fw_start + offsetof(struct fw_hdr, fw_ver),
sys/dev/cxgbe/common/t4_hw.c
9532
const struct fw_hdr *fw_hdr = (const struct fw_hdr *)fw_data;
sys/dev/cxgbe/common/t4_hw.c
9534
be32_to_cpu(fw_hdr->magic) == FW_HDR_MAGIC_BOOTSTRAP;
sys/dev/cxgbe/common/t4_hw.c
9537
if (!t4_fw_matches_chip(adap, fw_hdr))
sys/dev/cxgbe/t4_main.c
4841
CTASSERT(offsetof(struct fw_h, fw_ver) == offsetof(struct fw_hdr, fw_ver));
sys/dev/cxgbe/t4_main.c
4842
CTASSERT(offsetof(struct fw_h, intfver_nic) == offsetof(struct fw_hdr, intfver_nic));
sys/dev/cxgbe/t4_main.c
4843
CTASSERT(offsetof(struct fw_h, intfver_fcoe) == offsetof(struct fw_hdr, intfver_fcoe));
sys/dev/cxgbe/t4_main.c
5102
k = be32toh(((const struct fw_hdr *)fw->data)->fw_ver);
sys/dev/cxgbe/t4_main.c
5149
struct fw_hdr *card_fw; /* fw on the card */
sys/dev/mpt/mpt.c
2438
MpiFwHeader_t *fw_hdr;
sys/dev/mpt/mpt.c
2460
fw_hdr = (MpiFwHeader_t *)mpt->fw_image;
sys/dev/mpt/mpt.c
2462
mpt_diag_outsl(mpt, fw_hdr->LoadStartAddress, (uint32_t*)fw_hdr,
sys/dev/mpt/mpt.c
2463
fw_hdr->ImageSize);
sys/dev/mpt/mpt.c
2466
ext_offset = fw_hdr->NextImageHeaderOffset;
sys/dev/mpt/mpt.c
2470
ext = (MpiExtImageHeader_t *)((uintptr_t)fw_hdr + ext_offset);
sys/dev/mpt/mpt.c
2484
mpt_pio_write(mpt, MPT_OFFSET_DIAG_ADDR, fw_hdr->IopResetRegAddr);
sys/dev/mpt/mpt.c
2485
mpt_pio_write(mpt, MPT_OFFSET_DIAG_DATA, fw_hdr->IopResetVectorValue);