Home
last modified time | relevance | path

Searched full:load (Results 1 – 25 of 1721) sorted by relevance

12345678910>>...69

/openbmc/u-boot/doc/uImage.FIT/
H A Dx86-fit-boot.txt31 - Load address randomisation
43 denominator: a boot loader which consists of a BIOS call to load something off
46 (Aside: On ARM systems, we worry that the boot loader won't know where to load
79 CONTENTS, ALLOC, LOAD, RELOC, READONLY, CODE
81 CONTENTS, ALLOC, LOAD, READONLY, CODE
83 CONTENTS, ALLOC, LOAD, RELOC, READONLY, DATA
85 CONTENTS, ALLOC, LOAD, RELOC, READONLY, DATA
87 CONTENTS, ALLOC, LOAD, RELOC, READONLY, DATA
89 CONTENTS, ALLOC, LOAD, RELOC, READONLY, DATA
91 CONTENTS, ALLOC, LOAD, RELOC, READONLY, DATA
[all …]
H A Dmulti_spl.its6 * Several binaries will be loaded at their respective load addresses.
28 load = <0x4a000000>;
36 load = <0x18000>;
45 load = <0x40000>;
52 load = <0x4fa00000>;
60 load = <0x4fa00000>;
68 load = <0x40080000>;
76 load = <0x4fe00000>;
/openbmc/u-boot/arch/arm/cpu/arm926ejs/mxs/
H A Dmxsimage-signed.cfg4 LOAD 0x1000 spl/u-boot-spl.bin
5 LOAD 0x8000 spl/u-boot-spl.ivt
6 LOAD 0x8040 spl/u-boot-spl.sig
8 LOAD 0x40002000 u-boot.bin
9 LOAD 0x40001000 u-boot.ivt
10 LOAD 0x40001040 u-boot.sig
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/images/firmware-image-juno/
H A Dimages-r0.txt9 NOR0LOAD: 00000000 ;Image Load Address
15 NOR1LOAD: 00000000 ;Image Load Address
22 NOR2LOAD: 00000000 ;Image Load Address
29 NOR3LOAD: 00000000 ;Image Load Address
35 NOR4LOAD: 00000000 ;Image Load Address
41 NOR5LOAD: 00000000 ;Image Load Address
48 NOR6LOAD: 00000000 ;Image Load Address
55 NOR7LOAD: 00000000 ;Image Load Address
61 NOR8LOAD: 00000000 ;Image Load Address
68 NOR9LOAD: 00000000 ;Image Load Address
H A Dimages-r2.txt9 NOR0LOAD: 00000000 ;Image Load Address
15 NOR1LOAD: 00000000 ;Image Load Address
22 NOR2LOAD: 00000000 ;Image Load Address
29 NOR3LOAD: 00000000 ;Image Load Address
35 NOR4LOAD: 00000000 ;Image Load Address
41 NOR5LOAD: 00000000 ;Image Load Address
48 NOR6LOAD: 00000000 ;Image Load Address
55 NOR7LOAD: 00000000 ;Image Load Address
61 NOR8LOAD: 00000000 ;Image Load Address
68 NOR9LOAD: 00000000 ;Image Load Address
H A Dimages-r1.txt9 NOR0LOAD: 00000000 ;Image Load Address
15 NOR1LOAD: 00000000 ;Image Load Address
22 NOR2LOAD: 00000000 ;Image Load Address
29 NOR3LOAD: 00000000 ;Image Load Address
35 NOR4LOAD: 00000000 ;Image Load Address
41 NOR5LOAD: 00000000 ;Image Load Address
48 NOR6LOAD: 00000000 ;Image Load Address
55 NOR7LOAD: 00000000 ;Image Load Address
61 NOR8LOAD: 00000000 ;Image Load Address
68 NOR9LOAD: 00000000 ;Image Load Address
/openbmc/u-boot/common/spl/
H A Dspl_spi.c21 * Load the kernel, check for a valid header we can parse, and if found load
53 static ulong spl_spi_fit_read(struct spl_load_info *load, ulong sector, in spl_spi_fit_read() argument
56 struct spi_flash *flash = load->dev; in spl_spi_fit_read()
79 * Load U-Boot image from SPI flash into RAM in spl_spi_load_image()
103 /* Load u-boot, mkimage header is 64 bytes. */ in spl_spi_load_image()
123 struct spl_load_info load; in spl_spi_load_image() local
126 load.dev = flash; in spl_spi_load_image()
127 load.priv = NULL; in spl_spi_load_image()
128 load.filename = NULL; in spl_spi_load_image()
129 load.bl_len = 1; in spl_spi_load_image()
[all …]
H A Dspl_nor.c10 static ulong spl_nor_load_read(struct spl_load_info *load, ulong sector, in spl_nor_load_read() argument
26 __maybe_unused struct spl_load_info load; in spl_nor_load_image() local
37 * Load Linux from its location in NOR flash to its defined in spl_nor_load_image()
44 load.bl_len = 1; in spl_nor_load_image()
45 load.read = spl_nor_load_read; in spl_nor_load_image()
47 ret = spl_load_simple_fit(spl_image, &load, in spl_nor_load_image()
79 * Load real U-Boot from its location in NOR flash to its in spl_nor_load_image()
86 load.bl_len = 1; in spl_nor_load_image()
87 load.read = spl_nor_load_read; in spl_nor_load_image()
88 ret = spl_load_simple_fit(spl_image, &load, in spl_nor_load_image()
H A Dspl_nand.c30 static ulong spl_nand_fit_read(struct spl_load_info *load, ulong offs, in spl_nand_fit_read() argument
53 struct spl_load_info load; in spl_nand_load_element() local
56 load.dev = NULL; in spl_nand_load_element()
57 load.priv = NULL; in spl_nand_load_element()
58 load.filename = NULL; in spl_nand_load_element()
59 load.bl_len = 1; in spl_nand_load_element()
60 load.read = spl_nand_fit_read; in spl_nand_load_element()
61 return spl_load_simple_fit(spl_image, &load, offset, header); in spl_nand_load_element()
91 * load parameter image in spl_nand_load_image()
92 * load to temp position since nand_spl_load_image reads in spl_nand_load_image()
[all …]
H A Dspl_ymodem.c20 * Information required to load image using ymodem.
36 static ulong ymodem_read_fit(struct spl_load_info *load, ulong offset, in ymodem_read_fit() argument
40 struct ymodem_fit_info *info = load->priv; in ymodem_read_fit()
95 struct spl_load_info load; in spl_ymodem_load_image() local
99 load.dev = NULL; in spl_ymodem_load_image()
100 load.priv = (void *)&info; in spl_ymodem_load_image()
101 load.filename = NULL; in spl_ymodem_load_image()
102 load.bl_len = 1; in spl_ymodem_load_image()
105 load.read = ymodem_read_fit; in spl_ymodem_load_image()
106 ret = spl_load_simple_fit(spl_image, &load, 0, (void *)buf); in spl_ymodem_load_image()
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/trusted-firmware-a/files/fvp-base/
H A Doptee_spmc_maifest.dts53 load-address = <0x0 0x7a00000>;
57 load-address = <0x0 0x7a80000>;
62 load-address = <0x0 0x7b00000>;
67 load-address = <0x0 0x7b80000>;
73 load-address = <0x0 0x7c80000>;
80 load-address = <0x0 0x7d00000>;
87 load-address = <0x0 0x7d80000>;
94 load-address = <0x0 0x7a00000>;
99 load-address = <0x0 0x7a20000>;
104 load-address = <0x0 0x7a40000>;
[all …]
/openbmc/qemu/docs/devel/migration/
H A Dvirtio.rst66 Load state procedure
74 load() function registered
79 - load proxy device
80 - load transport-specific
82 - load common device
84 - load common virtqueue
87 - load transport-specific
91 - load device-specific
93 - load subsections
107 Devices need to be careful in their state processing during load: The
[all …]
/openbmc/qemu/hw/timer/
H A Dcmsdk-apb-dualtimer.c169 uint32_t load; in cmsdk_dualtimermod_write_control() local
171 /* Periodic: the limit is the LOAD register value */ in cmsdk_dualtimermod_write_control()
172 load = m->load; in cmsdk_dualtimermod_write_control()
175 load = ptimer_get_limit(m->timer); in cmsdk_dualtimermod_write_control()
177 load = deposit32(m->load, 0, 16, load); in cmsdk_dualtimermod_write_control()
179 m->load = load; in cmsdk_dualtimermod_write_control()
180 load = 0xffffffff; in cmsdk_dualtimermod_write_control()
183 load &= 0xffff; in cmsdk_dualtimermod_write_control()
185 ptimer_set_limit(m->timer, load, 0); in cmsdk_dualtimermod_write_control()
190 uint32_t value, load; in cmsdk_dualtimermod_write_control() local
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dparselogs-ignores-common.txt26 Failed to load module "vesa"
27 Failed to load module "modesetting"
28 Failed to load module "glx"
29 Failed to load module "fbdev"
30 Failed to load module "ati"
55 [pulseaudio] authkey.c: Failed to load authentication key
61 Direct firmware load for regulatory.db
62 failed to load regulatory.db
/openbmc/qemu/include/hw/
H A Dloader.h15 * load_image_size: load an image file into specified buffer
17 * @addr: Buffer to load image into
20 * Load an image file from disk into the specified buffer.
34 * @addr: Address to load the image to
35 * @max_sz: The maximum size of the image to load
36 * @as: The AddressSpace to load the ELF to. The value of address_space_memory
39 * Load a fixed image into memory.
49 * @as: The AddressSpace to load the .hex file to. The value of
52 * Load a fixed .hex file into memory.
67 * load_image_mr: load an image into a memory region
[all …]
/openbmc/qemu/linux-user/x86_64/
H A Dvdso.ld30 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */
44 .note : { *(.note*) } :load :note
45 .dynamic : { *(.dynamic) } :load :dynamic
46 .dynsym : { *(.dynsym) } :load
69 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
70 .eh_frame : { *(.eh_frame) } :load
72 .text : { *(.text*) } :load =0x90909090
/openbmc/qemu/linux-user/arm/
H A Dvdso.ld24 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */
38 .note : { *(.note*) } :load :note
39 .dynamic : { *(.dynamic) } :load :dynamic
40 .dynsym : { *(.dynsym) } :load
63 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
64 .eh_frame : { *(.eh_frame) } :load
66 .text : { *(.text*) } :load
/openbmc/qemu/linux-user/ppc/
H A Dvdso-32.ld27 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */
41 .note : { *(.note*) } :load :note
42 .dynamic : { *(.dynamic) } :load :dynamic
43 .dynsym : { *(.dynsym) } :load
66 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
67 .eh_frame : { *(.eh_frame) } :load
69 .text : { *(.text*) } :load
H A Dvdso-64.ld25 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */
39 .note : { *(.note*) } :load :note
40 .dynamic : { *(.dynamic) } :load :dynamic
41 .dynsym : { *(.dynsym) } :load
64 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
65 .eh_frame : { *(.eh_frame) } :load
67 .text : { *(.text*) } :load
/openbmc/qemu/linux-user/loongarch64/
H A Dvdso.ld25 load PT_LOAD FLAGS(7) FILEHDR PHDRS;
44 .note : { *(.note*) } :load :note
45 .dynamic : { *(.dynamic) } :load :dynamic
46 .dynsym : { *(.dynsym) } :load
69 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
70 .eh_frame : { *(.eh_frame) } :load
72 .text : { *(.text*) } :load =0xd503201f
/openbmc/qemu/linux-user/riscv/
H A Dvdso.ld26 load PT_LOAD FLAGS(7) FILEHDR PHDRS;
45 .note : { *(.note*) } :load :note
46 .dynamic : { *(.dynamic) } :load :dynamic
47 .dynsym : { *(.dynsym) } :load
70 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
71 .eh_frame : { *(.eh_frame) } :load
73 .text : { *(.text*) } :load =0xd503201f
/openbmc/qemu/linux-user/s390x/
H A Dvdso.ld29 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */
43 .note : { *(.note*) } :load :note
44 .dynamic : { *(.dynamic) } :load :dynamic
45 .dynsym : { *(.dynsym) } :load
68 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
69 .eh_frame : { *(.eh_frame) } :load
71 .text : { *(.text*) } :load
/openbmc/qemu/linux-user/aarch64/
H A Dvdso.ld24 load PT_LOAD FLAGS(7) FILEHDR PHDRS;
43 .note : { *(.note*) } :load :note
44 .dynamic : { *(.dynamic) } :load :dynamic
45 .dynsym : { *(.dynsym) } :load
68 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
69 .eh_frame : { *(.eh_frame) } :load
71 .text : { *(.text*) } :load =0xd503201f
/openbmc/qemu/linux-user/i386/
H A Dvdso.ld33 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */
47 .note : { *(.note*) } :load :note
48 .dynamic : { *(.dynamic) } :load :dynamic
49 .dynsym : { *(.dynsym) } :load
72 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr
73 .eh_frame : { *(.eh_frame) } :load
75 .text : { *(.text*) } :load =0x90909090
/openbmc/openbmc/poky/meta-yocto-bsp/lib/oeqa/runtime/cases/
H A Dparselogs-ignores-genericx86-64.txt2 Direct firmware load for i915
3 Failed to load firmware i915
6 Failed to load DMC firmware
7 The driver is built-in, so to load the firmware you need to

12345678910>>...69