| /u-boot/common/spl/ |
| A D | spl_nand.c | 49 offs *= load->bl_len; in spl_nand_fit_read() 50 size *= load->bl_len; in spl_nand_fit_read() 96 load.dev = NULL; in spl_nand_load_element() 97 load.priv = &offset; in spl_nand_load_element() 98 load.filename = NULL; in spl_nand_load_element() 99 load.bl_len = bl_len; in spl_nand_load_element() 105 load.dev = NULL; in spl_nand_load_element() 106 load.priv = NULL; in spl_nand_load_element() 116 load.dev = NULL; in spl_nand_load_element() 117 load.priv = NULL; in spl_nand_load_element() [all …]
|
| A D | spl_nor.c | 30 __maybe_unused struct spl_load_info load; in spl_nor_load_image() local 50 load.bl_len = 1; in spl_nor_load_image() 51 load.read = spl_nor_load_read; in spl_nor_load_image() 53 ret = spl_load_simple_fit(spl_image, &load, in spl_nor_load_image() 98 load.bl_len = 1; in spl_nor_load_image() 99 load.read = spl_nor_load_read; in spl_nor_load_image() 100 return spl_load_simple_fit(spl_image, &load, in spl_nor_load_image() 106 load.bl_len = 1; in spl_nor_load_image() 107 load.read = spl_nor_load_read; in spl_nor_load_image() 116 load.bl_len = 1; in spl_nor_load_image() [all …]
|
| A D | spl_spi.c | 145 struct spl_load_info load; in spl_spi_load_image() local 148 load.dev = flash; in spl_spi_load_image() 149 load.priv = NULL; in spl_spi_load_image() 150 load.filename = NULL; in spl_spi_load_image() 151 load.bl_len = 1; in spl_spi_load_image() 152 load.read = spl_spi_fit_read; in spl_spi_load_image() 157 struct spl_load_info load; in spl_spi_load_image() local 159 load.dev = flash; in spl_spi_load_image() 160 load.priv = NULL; in spl_spi_load_image() 161 load.filename = NULL; in spl_spi_load_image() [all …]
|
| A D | spl_fat.c | 43 static ulong spl_fit_read(struct spl_load_info *load, ulong file_offset, in spl_fit_read() argument 48 char *filename = (char *)load->filename; in spl_fit_read() 88 struct spl_load_info load; in spl_load_image_fat() local 91 load.read = spl_fit_read; in spl_load_image_fat() 92 load.bl_len = 1; in spl_load_image_fat() 93 load.filename = (void *)filename; in spl_load_image_fat() 94 load.priv = NULL; in spl_load_image_fat() 96 return spl_load_simple_fit(spl_image, &load, 0, header); in spl_load_image_fat()
|
| A D | spl_ymodem.c | 39 static ulong ymodem_read_fit(struct spl_load_info *load, ulong offset, in ymodem_read_fit() argument 43 struct ymodem_fit_info *info = load->priv; in ymodem_read_fit() 133 struct spl_load_info load; in spl_ymodem_load_image() local 137 load.dev = NULL; in spl_ymodem_load_image() 138 load.priv = (void *)&info; in spl_ymodem_load_image() 139 load.filename = NULL; in spl_ymodem_load_image() 140 load.bl_len = 1; in spl_ymodem_load_image() 143 load.read = ymodem_read_fit; in spl_ymodem_load_image() 144 ret = spl_load_simple_fit(spl_image, &load, 0, (void *)buf); in spl_ymodem_load_image()
|
| A D | spl_mmc.c | 65 struct mmc *mmc = load->dev; in h_spl_load_read() 102 struct spl_load_info load; in mmc_load_image_raw_sector() local 105 load.dev = mmc; in mmc_load_image_raw_sector() 106 load.priv = NULL; in mmc_load_image_raw_sector() 107 load.filename = NULL; in mmc_load_image_raw_sector() 109 load.read = h_spl_load_read; in mmc_load_image_raw_sector() 112 struct spl_load_info load; in mmc_load_image_raw_sector() local 114 load.dev = mmc; in mmc_load_image_raw_sector() 115 load.priv = NULL; in mmc_load_image_raw_sector() 116 load.filename = NULL; in mmc_load_image_raw_sector() [all …]
|
| A D | spl_ram.c | 20 static ulong spl_ram_load_read(struct spl_load_info *load, ulong sector, in spl_ram_load_read() argument 63 struct spl_load_info load; in spl_ram_load_image() local 66 load.bl_len = 1; in spl_ram_load_image() 67 load.read = spl_ram_load_read; in spl_ram_load_image() 68 ret = spl_load_simple_fit(spl_image, &load, 0, header); in spl_ram_load_image()
|
| A D | spl_net.c | 19 static ulong spl_net_load_read(struct spl_load_info *load, ulong sector, in spl_net_load_read() argument 52 struct spl_load_info load; in spl_net_load_image() local 55 load.bl_len = 1; in spl_net_load_image() 56 load.read = spl_net_load_read; in spl_net_load_image() 57 rv = spl_load_simple_fit(spl_image, &load, 0, header); in spl_net_load_image()
|
| /u-boot/test/image/ |
| A D | spl_load.c | 25 struct text_ctx *text_ctx = load->priv; in read_fit_image() 29 offset = sector * load->bl_len; in read_fit_image() 37 res = os_read(text_ctx->fd, buf, count * load->bl_len); in read_fit_image() 40 count * load->bl_len, res, errno); in read_fit_image() 62 struct spl_load_info load; in spl_test_load() local 67 memset(&load, '\0', sizeof(load)); in spl_test_load() 68 load.bl_len = 512; in spl_test_load() 69 load.read = read_fit_image; in spl_test_load() 76 load.filename = fname; in spl_test_load() 85 load.priv = &text_ctx; in spl_test_load() [all …]
|
| /u-boot/arch/arm/mach-imx/ |
| A D | spl_imx_romapi.c | 104 struct spl_load_info load; in spl_romapi_load_image_seekable() local 106 memset(&load, 0, sizeof(load)); in spl_romapi_load_image_seekable() 107 load.bl_len = pagesize; in spl_romapi_load_image_seekable() 109 load.priv = &pagesize; in spl_romapi_load_image_seekable() 112 struct spl_load_info load; in spl_romapi_load_image_seekable() local 114 memset(&load, 0, sizeof(load)); in spl_romapi_load_image_seekable() 115 load.bl_len = pagesize; in spl_romapi_load_image_seekable() 117 load.priv = &pagesize; in spl_romapi_load_image_seekable() 134 if (load->priv) { in spl_ram_load_read() 328 memset(&load, 0, sizeof(load)); in spl_romapi_load_image_stream() [all …]
|
| /u-boot/doc/usage/cmd/ |
| A D | load.rst | 3 load command 11 load <interface> [<dev[:part]> [<addr> [<filename> [bytes [pos]]]]] 16 The load command is used to read a file from a filesystem into memory. 19 The load address is saved in the environment variable fileaddr. 31 load address, defaults to environment variable loadaddr or if loadaddr is 38 maximum number of bytes to load 50 => load mmc 0:1 ${kernel_addr_r} snp.efi 53 => load mmc 0:1 ${kernel_addr_r} snp.efi 1000000 56 => load mmc 0:1 ${kernel_addr_r} snp.efi 1000000 100 59 => load mmc 0:1 ${kernel_addr_r} snp.efi 10 [all …]
|
| A D | fatload.rst | 17 You can always use the :doc:`load command <load>` instead. 20 The load address is saved in the environment variable fileaddr. 32 load address, defaults to environment variable loadaddr or if loadaddr is 39 maximum number of bytes to load 49 for the load.
|
| /u-boot/arch/arm/cpu/arm926ejs/mxs/ |
| A D | u-boot-imx28.bd | 7 load u_boot_spl > 0x0000; 8 load ivt (entry = 0x0014) > 0x8000; 11 load u_boot > 0x40000100; 12 load ivt (entry = 0x40000100) > 0x8000;
|
| A D | u-boot-imx23.bd | 12 load u_boot_spl > 0x0000; 13 load ivt (entry = 0x0014) > 0x8000; 16 load u_boot > 0x40000100;
|
| /u-boot/board/ti/am64x/ |
| A D | am64x.env | 23 get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt} 29 load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && 32 get_kern_mmc=load mmc ${bootpart} ${loadaddr} 34 get_fit_mmc=load mmc ${bootpart} ${addr_fit} 43 get_fdt_usb=load usb ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt} 49 load usb ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && fdt apply 52 get_kern_usb=load usb ${bootpart} ${loadaddr} 54 get_fit_usb=load usb ${bootpart} ${addr_fit}
|
| /u-boot/doc/usage/fit/ |
| A D | multi_spl.rst | 8 Several binaries will be loaded at their respective load addresses. 33 load = <0x4a000000>; 41 load = <0x18000>; 50 load = <0x40000>; 57 load = <0x4fa00000>; 65 load = <0x4fa00000>; 73 load = <0x40080000>; 81 load = <0x4fe00000>;
|
| A D | multi.rst | 22 load = <00000000>; 39 load = <00000000>; 53 load = <00000000>; 67 load = <00000000>; 81 load = <00000000>; 105 load = <00700000>;
|
| A D | multi-with-loadables.rst | 11 description = "Configuration to load a Xen Kernel"; 22 load = <0xa0000000>; 35 load = <0xb0000000>; 47 load = <0xb0400000>; 60 load = <0xa0000000>;
|
| A D | multi-with-fpga.rst | 11 description = "Configuration to load fpga before Kernel"; 21 load = <0x10000000>; 33 load = <0x30000000>; 47 load = <0x8000>;
|
| /u-boot/arch/arm/include/debug/ |
| A D | 8250.S | 19 .macro load, rd, rx:vararg macro 27 .macro load, rd, rx:vararg macro 39 1002: load \rd, [\rx, #UART_LSR << UART_SHIFT] 47 1001: load \rd, [\rx, #UART_MSR << UART_SHIFT]
|
| /u-boot/board/ti/am62ax/ |
| A D | am62ax.env | 20 get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt} 26 load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && 29 get_kern_mmc=load mmc ${bootpart} ${loadaddr} 31 get_fit_mmc=load mmc ${bootpart} ${addr_fit}
|
| /u-boot/tools/ |
| A D | k3_fit_atf.sh | 50 load = <$1>; 60 load = <0x9e800000>; 70 load = <0x89000000>; 80 load = <0x80080000>;
|
| /u-boot/board/ti/am62x/ |
| A D | am62x.env | 20 get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt} 26 load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && 29 get_kern_mmc=load mmc ${bootpart} ${loadaddr} 31 get_fit_mmc=load mmc ${bootpart} ${addr_fit}
|
| /u-boot/boot/ |
| A D | bootmeth_qfw.c | 35 ulong load, initrd; in qfw_read_bootflow() local 38 load = env_get_hex("kernel_addr_r", 0); in qfw_read_bootflow() 40 log_debug("setup kernel %s %lx %lx\n", qfw_dev->name, load, initrd); in qfw_read_bootflow() 45 ret = qemu_fwcfg_setup_kernel(qfw_dev, load, initrd); in qfw_read_bootflow()
|
| /u-boot/test/py/tests/test_efi_capsule/ |
| A D | uboot_bin_env.its | 3 * Make sure the flashing addresses ('load' prop) is correct for your board! 19 load = <0>; 30 load = <0>;
|