Home
last modified time | relevance | path

Searched refs:img_base (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/falcon/
H A Dbase.c125 const u8 *img, u32 img_base, int len) in nvkm_falcon_pio_rd() argument
134 FLCN_DBG(falcon, "%s %08x -> %08x bytes at %08x", type, mem_base, len, img_base); in nvkm_falcon_pio_rd()
144 for (img_base = 0; img_base < xfer_len; img_base += 4, mem_base += 4) { in nvkm_falcon_pio_rd()
145 if (((img_base / 4) % 8) == 0) in nvkm_falcon_pio_rd()
147 printk(KERN_CONT " %08x", *(u32 *)(img + img_base)); in nvkm_falcon_pio_rd()
159 nvkm_falcon_pio_wr(struct nvkm_falcon *falcon, const u8 *img, u32 img_base, u8 port, in nvkm_falcon_pio_wr() argument
169 FLCN_DBG(falcon, "%s %08x <- %08x bytes at %08x", type, mem_base, len, img_base); in nvkm_falcon_pio_wr()
179 for (img_base = 0; img_base < xfer_len; img_base += 4, mem_base += 4) { in nvkm_falcon_pio_wr()
180 if (((img_base / 4) % 8) == 0) in nvkm_falcon_pio_wr()
182 printk(KERN_CONT " %08x", *(u32 *)(img + img_base)); in nvkm_falcon_pio_wr()
[all …]
/openbmc/u-boot/arch/x86/lib/fsp/
H A Dfsp_support.c124 fsp_vpd = (struct vpd_region *)(fsp_hdr->img_base + in fsp_init()
133 memcpy(fsp_upd, (void *)(fsp_hdr->img_base + fsp_vpd->upd_offset), in fsp_init()
150 init = (fsp_init_f)(fsp_hdr->img_base + fsp_hdr->fsp_init); in fsp_init()
199 notify = (fsp_notify_f)(fsp_hdr->img_base + fsp_hdr->fsp_notify); in fsp_notify()
/openbmc/u-boot/arch/x86/include/asm/fsp/
H A Dfsp_infoheader.h20 u32 img_base; /* image base */ member
/openbmc/qemu/contrib/elf2dmp/
H A Dpdb.c84 uint64_t pdb_resolve(uint64_t img_base, struct pdb_reader *r, const char *name) in pdb_resolve() argument
92 return img_base + rva; in pdb_resolve()
H A Dpdb.h238 uint64_t pdb_resolve(uint64_t img_base, struct pdb_reader *r, const char *name);
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dfalcon.h45 int nvkm_falcon_pio_wr(struct nvkm_falcon *, const u8 *img, u32 img_base, u8 port,
48 const u8 *img, u32 img_base, int len);
/openbmc/u-boot/cmd/x86/
H A Dfsp.c30 u32 img_addr = hdr->img_base; in do_hdr()