| /rk3399_rockchip-uboot/common/spl/ |
| H A D | spl_mtd_blk.c | 71 static ulong mtd_spl_load_read(struct spl_load_info *load, ulong sector, in mtd_spl_load_read() argument 74 struct blk_desc *desc = load->dev; in mtd_spl_load_read() 82 struct spl_load_info load; in spl_mtd_load_rkfw() local 85 load.dev = desc; in spl_mtd_load_rkfw() 86 load.priv = NULL; in spl_mtd_load_rkfw() 87 load.filename = NULL; in spl_mtd_load_rkfw() 88 load.bl_len = desc->blksz; in spl_mtd_load_rkfw() 89 load.read = mtd_spl_load_read; in spl_mtd_load_rkfw() 91 ret = spl_load_rkfw_image(spl_image, &load); in spl_mtd_load_rkfw() 137 struct spl_load_info load; local [all …]
|
| H A D | spl_nand.c | 32 static ulong spl_nand_fit_read(struct spl_load_info *load, ulong offs, in spl_nand_fit_read() argument 45 static ulong spl_nand_rkfw_read(struct spl_load_info *load, ulong offs, in spl_nand_rkfw_read() argument 64 struct spl_load_info load; local 67 load.dev = NULL; 68 load.priv = NULL; 69 load.filename = NULL; 70 load.bl_len = 1; 71 load.read = spl_nand_rkfw_read; 73 ret = spl_load_rkfw_image(spl_image, &load); 89 struct spl_load_info load; local [all …]
|
| H A D | spl_rknand.c | 46 static ulong h_spl_load_read(struct spl_load_info *load, ulong sector, in h_spl_load_read() argument 49 return blk_dread(load->dev, sector, count, buf); in h_spl_load_read() 57 struct spl_load_info load; local 65 load.dev = desc; 66 load.priv = NULL; 67 load.filename = NULL; 68 load.bl_len = desc->blksz; 69 load.read = h_spl_load_read; 92 ret = spl_load_simple_fit(spl_image, &load, 102 ret = spl_load_rkfw_image(spl_image, &load);
|
| H A D | spl_ufs.c | 21 static ulong h_spl_load_read(struct spl_load_info *load, ulong sector, in h_spl_load_read() argument 24 return blk_dread(load->dev, sector, count, buf); in h_spl_load_read() 34 struct spl_load_info load; local 44 load.dev = desc; 45 load.priv = NULL; 46 load.filename = NULL; 47 load.bl_len = desc->blksz; 48 load.read = h_spl_load_read; 70 ret = spl_load_simple_fit(spl_image, &load,
|
| H A D | spl_spi.c | 54 static ulong spl_spi_fit_read(struct spl_load_info *load, ulong sector, in spl_spi_fit_read() argument 57 struct spi_flash *flash = load->dev; in spl_spi_fit_read() 124 struct spl_load_info load; local 127 load.dev = flash; 128 load.priv = NULL; 129 load.filename = NULL; 130 load.bl_len = 1; 131 load.read = spl_spi_fit_read; 132 err = spl_load_simple_fit(spl_image, &load,
|
| H A D | spl_ymodem.c | 38 static ulong ymodem_read_fit(struct spl_load_info *load, ulong offset, in ymodem_read_fit() argument 42 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()
|
| H A D | spl_mmc.c | 50 static ulong h_spl_load_read(struct spl_load_info *load, ulong sector, in h_spl_load_read() argument 53 return blk_dread(load->dev, sector, count, buf); in h_spl_load_read() 83 struct spl_load_info load; local 86 load.dev = mmc_get_blk_desc(mmc); 87 load.priv = NULL; 88 load.filename = NULL; 89 load.bl_len = mmc->read_bl_len; 90 load.read = h_spl_load_read; 91 ret = spl_load_simple_fit(spl_image, &load, sector, header); 303 struct spl_load_info load; local [all …]
|
| H A D | spl_fat.c | 42 static ulong spl_fit_read(struct spl_load_info *load, ulong file_offset, in spl_fit_read() argument 47 char *filename = (char *)load->filename; in spl_fit_read() 82 struct spl_load_info load; local 85 load.read = spl_fit_read; 86 load.bl_len = 1; 87 load.filename = (void *)filename; 88 load.priv = NULL; 90 return spl_load_simple_fit(spl_image, &load, 0, header);
|
| H A D | spl_ram.c | 21 static ulong spl_ram_load_read(struct spl_load_info *load, ulong sector, in spl_ram_load_read() argument 50 struct spl_load_info load; local 53 load.bl_len = 1; 54 load.read = spl_ram_load_read; 55 spl_load_simple_fit(spl_image, &load, 0, header);
|
| H 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 58 struct spl_load_info load; local 61 load.bl_len = 1; 62 load.read = spl_net_load_read; 63 rv = spl_load_simple_fit(spl_image, &load, 0, header);
|
| /rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/ |
| H 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;
|
| H A D | u-boot-imx23.bd | 12 load u_boot_spl > 0x0000; 13 load ivt (entry = 0x0014) > 0x8000; 16 load u_boot > 0x40000100;
|
| /rk3399_rockchip-uboot/doc/uImage.FIT/ |
| H A D | multi_spl.its | 6 * 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>;
|
| H A D | multi.its | 19 load = <00000000>; 36 load = <00000000>; 50 load = <00000000>; 64 load = <00000000>; 78 load = <00000000>; 102 load = <00700000>;
|
| H A D | multi-with-loadables.its | 9 description = "Configuration to load a Xen Kernel"; 20 load = <0xa0000000>; 33 load = <0xb0000000>; 45 load = <0xb0400000>; 58 load = <0xa0000000>;
|
| H A D | multi-with-fpga.its | 9 description = "Configuration to load fpga before Kernel"; 19 load = <0x10000000>; 31 load = <0x30000000>; 44 load = <0x8000>;
|
| H A D | update3.its | 17 load = <FF700000>; 27 load = <FF8E0000>; 38 load = <FFAC0000>;
|
| /rk3399_rockchip-uboot/arch/arm/mach-rockchip/ |
| H A D | rk_meta.c | 135 data = (char *)(uintptr_t)meta.load; in spl_load_meta() 136 printf("Meta: 0x%08x - 0x%08x\n", meta.load, meta.load + meta.size); in spl_load_meta() 144 meta_p = (struct meta_head *)(uintptr_t)meta.load; in spl_load_meta() 146 cmd = (struct cmdline_info *)(uintptr_t)(meta_p->load + CMDLINE_OFFSET); in spl_load_meta() 165 memcpy((void *)(uintptr_t)(meta_p->load + SENSOR_IQ_BIN_OFFSET), data, meta_p->iq_item_size); in spl_load_meta() 167 if (rk_meta_iq_decom((meta_p->load + meta_p->comp_off), in spl_load_meta() 179 (void *)(uintptr_t)(meta_p->load + MAX_META_SEGMENT_SIZE)) in spl_load_meta() 187 flush_cache(meta_p->load, meta_p->size); in spl_load_meta()
|
| /rk3399_rockchip-uboot/arch/arm/mach-sunxi/ |
| H A D | spl_spi_sunxi.c | 265 static ulong spi_load_read(struct spl_load_info *load, ulong sector, in spi_load_read() argument 288 struct spl_load_info load; in spl_spi_load_image() local 291 load.dev = NULL; in spl_spi_load_image() 292 load.priv = NULL; in spl_spi_load_image() 293 load.filename = NULL; in spl_spi_load_image() 294 load.bl_len = 1; in spl_spi_load_image() 295 load.read = spi_load_read; in spl_spi_load_image() 296 ret = spl_load_simple_fit(spl_image, &load, in spl_spi_load_image()
|
| /rk3399_rockchip-uboot/arch/arm/include/debug/ |
| H A D | 8250.S | 20 .macro load, rd, rx:vararg macro 28 .macro load, rd, rx:vararg macro 40 1002: load \rd, [\rx, #UART_LSR << UART_SHIFT] 48 1001: load \rd, [\rx, #UART_MSR << UART_SHIFT]
|
| /rk3399_rockchip-uboot/common/ |
| H A D | bootm.c | 130 images.os.load = image_get_load(os_hdr); in bootm_find_os() 169 &images.os.load)) { in bootm_find_os() 183 images.os.load = android_image_get_kload(os_hdr); in bootm_find_os() 184 images.ep = images.os.load; in bootm_find_os() 223 images.os.load = images.os.image_start; in bootm_find_os() 224 images.ep += images.os.load; in bootm_find_os() 409 int bootm_decomp_image(int comp, ulong load, ulong image_start, int type, in bootm_decomp_image() argument 415 *load_end = load; in bootm_decomp_image() 416 print_decomp_msg(comp, type, load == image_start, in bootm_decomp_image() 426 if (load == image_start) in bootm_decomp_image() [all …]
|
| H A D | image-fdt.c | 383 ulong load, load_end; in boot_get_fdt() local 476 load = image_get_load(fdt_hdr); in boot_get_fdt() 477 load_end = load + image_get_data_size(fdt_hdr); in boot_get_fdt() 479 if (load == image_start || in boot_get_fdt() 480 load == image_data) { in boot_get_fdt() 481 fdt_addr = load; in boot_get_fdt() 485 if ((load < image_end) && (load_end > image_start)) { in boot_get_fdt() 491 image_data, load); in boot_get_fdt() 493 memmove((void *)load, in boot_get_fdt() 497 fdt_addr = load; in boot_get_fdt() [all …]
|
| /rk3399_rockchip-uboot/test/fs/ |
| H A D | fs-test.sh | 234 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_SMALL 241 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x0 249 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x9C300000 257 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x7FF00000 265 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x80000000 273 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x7FF80000 281 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG 0x00200000 0x9C300000 286 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_SMALL 291 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_WRITE 304 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_SMALL [all …]
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.zfs | 1 This patch series adds support for ZFS listing and load to u-boot. 3 To Enable zfs ls and load commands, modify the board specific config file with 12 zfsload- load binary file from a ZFS file system 20 3. To read and load a file from an ZFS formatted partition to RAM, execute
|
| /rk3399_rockchip-uboot/drivers/cpu/ |
| H A D | amp.its | 23 load = <0x01800000>; 39 load = <0x03800000>; 55 load = <0x05800000>; 69 load = <0x06800000>; 102 load = <0x2000000>; // optional
|