efi_loader: decision on EFI_RT_SUPPORTED_RESET_SYSTEM
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Fri, 5 Jul 2019 16:12:16 +0000 (18:12 +0200)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 6 Jul 2019 19:25:32 +0000 (21:25 +0200)
Move the logic determining which board supports reset at runtime to Kconfig.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
lib/efi_loader/Kconfig
lib/efi_loader/efi_runtime.c

index cd5436c..a7f2c68 100644 (file)
@@ -101,4 +101,10 @@ config EFI_PLATFORM_LANG_CODES
          RFC 4646 format, e.g. "en-US;de-DE". The first language code is used
          to initialize the PlatformLang variable.
 
+config EFI_HAVE_RUNTIME_RESET
+       # bool "Reset runtime service is available"
+       bool
+       default y
+       depends on ARCH_BCM283X || FSL_LAYERSCAPE || PSCI_RESET || SYSRESET_X86
+
 endif
index 63d8a29..59dde8a 100644 (file)
@@ -95,10 +95,7 @@ efi_status_t efi_init_runtime_supported(void)
         * This value must be synced with efi_runtime_detach_list
         * as well as efi_runtime_services.
         */
-#if CONFIG_IS_ENABLED(ARCH_BCM283X) || \
-    CONFIG_IS_ENABLED(FSL_LAYERSCAPE) || \
-    CONFIG_IS_ENABLED(SYSRESET_X86) || \
-    CONFIG_IS_ENABLED(PSCI_RESET)
+#ifdef CONFIG_EFI_HAVE_RUNTIME_RESET
        efi_runtime_services_supported |= EFI_RT_SUPPORTED_RESET_SYSTEM;
 #endif
        efi_runtime_services_supported |=