configs: amlogic: check a reboot reason to enter download mode
authorJaehoon Chung <jh80.chung@samsung.com>
Mon, 21 Dec 2020 05:06:57 +0000 (14:06 +0900)
committerMarek Szyprowski <m.szyprowski@samsung.com>
Mon, 15 Nov 2021 14:18:27 +0000 (15:18 +0100)
Check a reboot reason to enter download mode.
If reboot reason is download, it will be entered to download mode.

Change-Id: I9a2223962ad49a19a2b084711107dd23e6c17b95
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
configs/khadas-vim3_defconfig
configs/khadas-vim3l_defconfig
configs/odroid-c4_defconfig
configs/odroid-n2_defconfig
include/samsung/tizen_amlogic.h

index ba13efc9bdf467b91794027cb7accdfc0a89cb85..c0f97b4e91018bb6589a918171396551f5823c98 100644 (file)
@@ -16,7 +16,7 @@ CONFIG_DEBUG_UART=y
 CONFIG_OF_BOARD_SETUP=y
 # CONFIG_DISPLAY_CPUINFO is not set
 CONFIG_USE_PREBOOT=y
-CONFIG_PREBOOT="run mbr_check; echo Checking Func button state (for THOR download mode): \\\\\\\\c; sleep 0.25; if button Function; then thor; fi"
+CONFIG_PREBOOT="run mbr_check; echo Checking Func button state (for THOR download mode): \\\\\\\\c; sleep 0.25; if button Function; then thor; fi; run reboot_check"
 # CONFIG_CONSOLE_MUX is not set
 CONFIG_MISC_INIT_R=y
 CONFIG_SYS_PROMPT="Khadas VIM3> "
index 66f0bfb89ffefe870cb4f8dbdd71971b92ac7417..24655a26ed16d1357e266eda47bce62333ef2c41 100644 (file)
@@ -16,7 +16,7 @@ CONFIG_DEBUG_UART=y
 CONFIG_OF_BOARD_SETUP=y
 # CONFIG_DISPLAY_CPUINFO is not set
 CONFIG_USE_PREBOOT=y
-CONFIG_PREBOOT="run mbr_check; echo Checking Func button state (for THOR download mode): \\\\\\\\c; sleep 0.25; if button Function; then thor; fi"
+CONFIG_PREBOOT="run mbr_check; echo Checking Func button state (for THOR download mode): \\\\\\\\c; sleep 0.25; if button Function; then thor; fi; run reboot_check"
 CONFIG_MISC_INIT_R=y
 CONFIG_SYS_PROMPT="Khadas VIM3L> "
 # CONFIG_CMD_BDI is not set
index e9fa74f621445d9b40d54c8fdc480d127ac6de64..90460d5a14745a4a5ab6214a7f4371b6f2dbf301 100644 (file)
@@ -16,7 +16,7 @@ CONFIG_DEBUG_UART=y
 CONFIG_OF_BOARD_SETUP=y
 # CONFIG_DISPLAY_CPUINFO is not set
 CONFIG_USE_PREBOOT=y
-CONFIG_PREBOOT="run mbr_check"
+CONFIG_PREBOOT="run mbr_check; run reboot_check"
 # CONFIG_CONSOLE_MUX is not set
 CONFIG_MISC_INIT_R=y
 CONFIG_SYS_PROMPT="Odroid C4> "
index f138325933f1388488000184c533071324f84e27..07de831159274b3b7f36b7b34109808e954be493 100644 (file)
@@ -16,7 +16,7 @@ CONFIG_DEBUG_UART=y
 CONFIG_OF_BOARD_SETUP=y
 # CONFIG_DISPLAY_CPUINFO is not set
 CONFIG_USE_PREBOOT=y
-CONFIG_PREBOOT="run mbr_check"
+CONFIG_PREBOOT="run mbr_check; run reboot_check"
 # CONFIG_CONSOLE_MUX is not set
 CONFIG_MISC_INIT_R=y
 CONFIG_SYS_PROMPT="Odroid N2> "
index cf067c30c7a4b1eb24f9cd4934ce834f27542987..03a89939d1281f3bc26036828dec99bc5703ff80 100644 (file)
        "thor; "                                                        \
        "fi"
 
+#define REBOOT_CHECK   \
+       "sm reboot_reason reason; "     \
+       "echo \"reboot ${reason}\"; "   \
+       "if test ${reason} = download; then "   \
+       "thor; "                                \
+       "fi"
+
 #define TIZEN_ENV_SETTING \
        "mmcbootpart=1\0"                       \
        "mmcrootpart=2\0"                       \
        "boot_prefixes=" TIZEN_BOOT_PREFIX "\0" \
        "mbr_parts=" PARTS_DEFAULT "\0"         \
        "mbr_check=" MBR_CHECK "\0"             \
+       "reboot_check=" REBOOT_CHECK "\0"       \
        "splashimage=0x2000000\0"               \
        "splashsource=mmc_fs\0"                 \
        "splashfile=tizen_logo.bmp.gz\0"        \