summaryrefslogtreecommitdiff
path: root/drivers/reboot-mode/Kconfig
diff options
context:
space:
mode:
authorNandor Han <nandor.han@vaisala.com>2021-06-10 16:56:43 +0300
committerTom Rini <trini@konsulko.com>2021-07-23 17:16:39 +0300
commit2541ce2c1af87f74a9feb35a1cbfc20ff8d04e4b (patch)
tree916abd832f987163a13630c9442fc3857f9aeb8f /drivers/reboot-mode/Kconfig
parentf534d93cbf34f1d1762b04eb5680e84bef5e1fe1 (diff)
downloadu-boot-2541ce2c1af87f74a9feb35a1cbfc20ff8d04e4b.tar.xz
reboot-mode: add support for reboot mode control
A new driver uclass is created to handle the reboot mode control. The new uclass driver is updating an environment variable with the configured reboot mode. The mode is extracted from a map provided at initialization time. The map contains a list of modes and associated ids. Signed-off-by: Nandor Han <nandor.han@vaisala.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/reboot-mode/Kconfig')
-rw-r--r--drivers/reboot-mode/Kconfig18
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/reboot-mode/Kconfig b/drivers/reboot-mode/Kconfig
new file mode 100644
index 0000000000..0edc3209d7
--- /dev/null
+++ b/drivers/reboot-mode/Kconfig
@@ -0,0 +1,18 @@
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+# Copyright (c), Vaisala Oyj
+#
+
+menu "Reboot Mode Support"
+
+config DM_REBOOT_MODE
+ bool "Enable reboot mode using Driver Model"
+ depends on DM
+ default n
+ help
+ Enable support for reboot mode control. This will allow users to
+ adjust the boot process based on reboot mode parameter
+ passed to U-Boot.
+
+endmenu