]> xenbits.xensource.com Git - people/julieng/linux-arm.git/commitdiff
arm64/efi: move EFI init before early FDT processing
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Sun, 10 May 2015 12:03:31 +0000 (14:03 +0200)
committerJulien Grall <julien.grall@citrix.com>
Mon, 28 Sep 2015 11:05:14 +0000 (12:05 +0100)
The early FDT processing is responsible for enumerating the
DT memory nodes and installing them as memblocks. This should
only be done if we are not booting via EFI, but at this point,
we don't know yet if that is the case or not.

So move the EFI init to before the early FDT processing. This involves
making some changes to the way EFI discovers the locations of the
EFI system table and the memory map, since those values are retrieved
from the FDT as well. Instead the of_scan infrastructure, it now uses
libfdt directly to access the /chosen node.

Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Robert Richter <rrichter@cavium.com>
Signed-off-by: Vadim Lomovtsev <Vadim.Lomovtsev@caviumnetworks.com>
arch/arm64/include/asm/efi.h
arch/arm64/kernel/efi.c
arch/arm64/kernel/setup.c
drivers/firmware/efi/Makefile
drivers/firmware/efi/efi-fdt.c
include/linux/efi.h

index ef572206f1c3eb6658618b40568e662f7e1865fc..635101f36720fa592ea52f580c2fa60620cbe066 100644 (file)
@@ -5,9 +5,9 @@
 #include <asm/neon.h>
 
 #ifdef CONFIG_EFI
-extern void efi_init(void);
+extern void efi_init_fdt(void *fdt);
 #else
-#define efi_init()
+#define efi_init_fdt(x)
 #endif
 
 #define efi_call_virt(f, ...)                                          \
index e8ca6eaedd0252e2056530d71d519f423931d323..31b87468972e26ead165326533648e6c500dcbd4 100644 (file)
@@ -51,14 +51,7 @@ static struct mm_struct efi_mm = {
        INIT_MM_CONTEXT(efi_mm)
 };
 
-static int uefi_debug __initdata;
-static int __init uefi_debug_setup(char *str)
-{
-       uefi_debug = 1;
-
-       return 0;
-}
-early_param("uefi_debug", uefi_debug_setup);
+static bool uefi_debug __initdata;
 
 static int __init is_normal_ram(efi_memory_desc_t *md)
 {
@@ -205,14 +198,15 @@ static __init void reserve_regions(void)
        set_bit(EFI_MEMMAP, &efi.flags);
 }
 
-void __init efi_init(void)
+void __init efi_init_fdt(void *fdt)
 {
        struct efi_fdt_params params;
 
        /* Grab UEFI information placed in FDT by stub */
-       if (!efi_get_fdt_params(&params, uefi_debug))
+       if (!efi_get_fdt_params(fdt, &params))
                return;
 
+       uefi_debug = params.verbose;
        efi_system_table = params.system_table;
 
        memblock_reserve(params.mmap & PAGE_MASK,
index 6f8d814c4e5ced5200969162e556f339076140c5..78a01fbe11ae1e79f032b15676747ecf82aec09a 100644 (file)
@@ -317,6 +317,9 @@ static void __init setup_machine_fdt(phys_addr_t dt_phys)
 {
        void *dt_virt = fixmap_remap_fdt(dt_phys);
 
+       if (dt_virt)
+               efi_init_fdt(dt_virt);
+
        if (!dt_virt || !early_init_dt_scan(dt_virt)) {
                pr_crit("\n"
                        "Error: invalid device tree blob at physical address %pa (virtual address 0x%p)\n"
@@ -385,7 +388,6 @@ void __init setup_arch(char **cmdline_p)
         */
        local_async_enable();
 
-       efi_init();
        arm64_memblock_init();
 
        /* Parse the ACPI tables for possible boot-time configuration */
index d9140208fc1ce11f0f30c598422921be19c80c47..39d3422a440fe0d645325e020115d4b955711387 100644 (file)
@@ -10,3 +10,4 @@ obj-$(CONFIG_EFI_RUNTIME_MAP)         += runtime-map.o
 obj-$(CONFIG_EFI_RUNTIME_WRAPPERS)     += runtime-wrappers.o
 obj-$(CONFIG_EFI_STUB)                 += libstub/
 obj-$(CONFIG_EFI_PARAMS_FROM_FDT)      += efi-fdt.o
+CFLAGS_efi-fdt.o                       := -I$(srctree)/scripts/dtc/libfdt/
index f0e7ef2ae0e9e515015111efc0d83384ed78d2a2..2e0e1a5a3fbbefc1de2b2ca3667f523c4b3d0e98 100644 (file)
@@ -8,8 +8,7 @@
 
 #include <linux/init.h>
 #include <linux/efi.h>
-#include <linux/of.h>
-#include <linux/of_fdt.h>
+#include <linux/libfdt.h>
 
 #define UEFI_PARAM(name, prop, field)                     \
        {                                                  \
@@ -32,62 +31,47 @@ static __initdata struct {
        UEFI_PARAM("MemMap Desc. Version", "linux,uefi-mmap-desc-ver", desc_ver)
 };
 
-struct param_info {
-       int verbose;
-       int found;
-       void *params;
-};
-
-static int __init fdt_find_uefi_params(unsigned long node, const char *uname,
-                                      int depth, void *data)
+bool __init efi_get_fdt_params(void *fdt, struct efi_fdt_params *params)
 {
-       struct param_info *info = data;
        const void *prop;
-       void *dest;
-       u64 val;
-       int i, len;
+       int node, i;
+
+       pr_info("Getting EFI parameters from FDT:\n");
 
-       if (depth != 1 || strcmp(uname, "chosen") != 0)
-               return 0;
+       node = fdt_path_offset(fdt, "/chosen");
+       if (node < 0) {
+               pr_err("/chosen node not found!\n");
+               return false;
+       }
+
+       prop = fdt_getprop(fdt, node, "bootargs", NULL);
+       params->verbose = prop && strstr(prop, "uefi_debug");
 
        for (i = 0; i < ARRAY_SIZE(dt_params); i++) {
-               prop = of_get_flat_dt_prop(node, dt_params[i].propname, &len);
-               if (!prop)
-                       return 0;
-               dest = info->params + dt_params[i].offset;
-               info->found++;
+               void *dest;
+               int len;
+               u64 val;
 
-               val = of_read_number(prop, len / sizeof(u32));
+               prop = fdt_getprop(fdt, node, dt_params[i].propname, &len);
+               if (!prop)
+                       goto not_found;
+               dest = (void *)params + dt_params[i].offset;
 
                if (dt_params[i].size == sizeof(u32))
-                       *(u32 *)dest = val;
+                       val = *(u32 *)dest = be32_to_cpup(prop);
                else
-                       *(u64 *)dest = val;
+                       val = *(u64 *)dest = be64_to_cpup(prop);
 
-               if (info->verbose)
+               if (params->verbose)
                        pr_info("  %s: 0x%0*llx\n", dt_params[i].name,
                                dt_params[i].size * 2, val);
        }
-       return 1;
-}
-
-int __init efi_get_fdt_params(struct efi_fdt_params *params, int verbose)
-{
-       struct param_info info;
-       int ret;
+       return true;
 
-       pr_info("Getting EFI parameters from FDT:\n");
-
-       info.verbose = verbose;
-       info.found = 0;
-       info.params = params;
-
-       ret = of_scan_flat_dt(fdt_find_uefi_params, &info);
-       if (!info.found)
+not_found:
+       if (i == 0)
                pr_info("UEFI not found.\n");
-       else if (!ret)
-               pr_err("Can't find '%s' in device tree!\n",
-                      dt_params[info.found].name);
-
-       return ret;
+       else
+               pr_err("Can't find '%s' in device tree!\n", dt_params[i].name);
+       return false;
 }
index d920a6be6c8b61a6e1867cb96d4b19e5c86fbc3a..727dea73dedfae68697ee1e03ce1e0fe9fdfe10c 100644 (file)
@@ -702,6 +702,7 @@ struct efi_fdt_params {
        u32 mmap_size;
        u32 desc_size;
        u32 desc_ver;
+       bool verbose;
 };
 
 typedef struct {
@@ -927,7 +928,7 @@ extern void efi_initialize_iomem_resources(struct resource *code_resource,
                struct resource *data_resource, struct resource *bss_resource);
 extern void efi_get_time(struct timespec *now);
 extern void efi_reserve_boot_services(void);
-extern int efi_get_fdt_params(struct efi_fdt_params *params, int verbose);
+extern bool efi_get_fdt_params(void *fdt, struct efi_fdt_params *params);
 extern struct efi_memory_map memmap;
 extern struct kobject *efi_kobj;