|
@@ -23,6 +23,7 @@
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_fdt.h>
|
|
|
#include <linux/io.h>
|
|
|
+#include <linux/platform_device.h>
|
|
|
|
|
|
struct efi __read_mostly efi = {
|
|
|
.mps = EFI_INVALID_TABLE_ADDR,
|
|
@@ -324,6 +325,20 @@ int __init efi_config_init(efi_config_table_type_t *arch_tables)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_EFI_VARS_MODULE
|
|
|
+static int __init efi_load_efivars(void)
|
|
|
+{
|
|
|
+ struct platform_device *pdev;
|
|
|
+
|
|
|
+ if (!efi_enabled(EFI_RUNTIME_SERVICES))
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ pdev = platform_device_register_simple("efivars", 0, NULL, 0);
|
|
|
+ return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
|
|
|
+}
|
|
|
+device_initcall(efi_load_efivars);
|
|
|
+#endif
|
|
|
+
|
|
|
#ifdef CONFIG_EFI_PARAMS_FROM_FDT
|
|
|
|
|
|
#define UEFI_PARAM(name, prop, field) \
|