__weak void spl_board_announce_boot_device(void) { } #endif#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT struct boot_device_name { u32 boot_dev; const char *name; };struct boot_device_name boot_name_table[] = { #ifdef CONFIG_SPL_RAM_DEVICE ...
Expand DownExpand Up@@ -90,12 +89,11 @@ u32 spl_boot_device(void) /* SD/eSD: 8.5.3, Table 8-15 */ caseIMX6_BMODE_SD: caseIMX6_BMODE_ESD: returnBOOT_DEVICE_MMC1; /* MMC/eMMC: 8.5.3 */ caseIMX6_BMODE_MMC: caseIMX6_BMODE_EMMC: ...
make u-boot_clea make u-boot Then below files to SD Card u-boot_build\a53\tispl.bin_hs to BOOT\tispl.bin u-boot_build\a53\u-boot.img_HS to BOOT\u-boot.img u-boot_build\r5f\tiboot3.bin to BOOT\tiboot3.bin bl-files.zip Regards, Brijesh...
Thesbl_uart_uniflash_stage2is located at<MCU+ SDK INSTALL DIR>/drivers/boot/sbl_uart_uniflash_multistage. Also, that Sysconfig error comes when we try to open.syscfgfile directory inStandalone Sysconfig Tool. The recommended way to develop/modify the example is to import the project in CCS ...
l=u 简介 t113 主线 uboot 1.支持SPL 2.支持SPI 3.支持MMC 4.支持LCD 5.支持 USB device,USB host 6.支持PWM 暂无标签 保存更改 发行版 暂无发行版 贡献者(1) 全部 近期动态
spl: add g_dnl_get_board_bcd_device_number Browse files Add g_dnl_get_board_bcd_device_number, the new BCD value is used by uuu to distinguish if the SPL supports the SDPV. Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Lukasz Majewski <lukma@denx.de>...
static bool os_takes_devicetree(uint8_t os) { switch (os) { case IH_OS_U_BOOT: return true; case IH_OS_LINUX: return IS_ENABLED(CONFIG_SPL_OS_BOOT); default: return false; } }static int spl_fit_append_fdt(struct spl_image_info *spl_image,...
This patch updates the mksunxiboot tool to optionally add the default device tree name string to the SPL header. This information can be used by the firmware upgrade tools to protect users from harming themselves by trying to upgrade to an incompatible bootloader. The primary use case here is...
# Uboot defconfig fragment, config rk-sfc.config if sdcard upgrade, rv1126-ab.config for AB system bootup export RK_UBOOT_DEFCONFIG_FRAGMENT="rv1126-ab.config rk-sfc.config" # Uboot update loader (spl) export RK_LOADER_UPDATE_SPL=true # Uboot image format type: fit(flattened i...
We can remove the pre reloc property in SPL and TPL device-tree: - u-boot,dm-pre-reloc - u-boot,dm-spl - u-boot,dm-tpl As only the needed node are kept by fdtgrep (1st pass). The associated function (XXX_pre_reloc) are simple for SPL/TPL: return always true. Signed-off-by...