From: Chris Morgan Date: Mon, 13 Feb 2023 22:27:38 +0000 (-0600) Subject: rockchip: rk3568: add boot device detection X-Git-Tag: v2023.07~139^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0d61f8e5f1c0035c3ee105d940b5b8d90bcec5b0;p=platform%2Fkernel%2Fu-boot.git rockchip: rk3568: add boot device detection Enable spl to detect which device it was booted from. Signed-off-by: Peter Geis Signed-off-by: Chris Morgan Reviewed-by: Kever Yang --- diff --git a/arch/arm/mach-rockchip/rk3568/rk3568.c b/arch/arm/mach-rockchip/rk3568/rk3568.c index 22eeb77..a2d59ab 100644 --- a/arch/arm/mach-rockchip/rk3568/rk3568.c +++ b/arch/arm/mach-rockchip/rk3568/rk3568.c @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include @@ -70,6 +71,12 @@ static struct mm_region rk3568_mem_map[] = { } }; +const char * const boot_devices[BROM_LAST_BOOTSOURCE + 1] = { + [BROM_BOOTSOURCE_EMMC] = "/sdhci@fe310000", + [BROM_BOOTSOURCE_SPINOR] = "/spi@fe300000/flash@0", + [BROM_BOOTSOURCE_SD] = "/mmc@fe2b0000", +}; + struct mm_region *mem_map = rk3568_mem_map; void board_debug_uart_init(void)