aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/setup.c
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2011-04-28 16:27:21 -0400
committerGrant Likely <grant.likely@secretlab.ca>2011-05-23 11:30:20 -0400
commit93c02ab40ae6e06cb24d14845d9f008fdd24f43d (patch)
treea8caf072ce7409eceb8178e952b7536bbd289460 /arch/arm/kernel/setup.c
parent6291319d4864848efc7b5d81389e2404fb478cb9 (diff)
arm/dt: probe for platforms via the device tree
If a dtb is passed to the kernel then the kernel needs to iterate through compiled-in mdescs looking for one that matches and move the dtb data to a safe location before it gets accidentally overwritten by the kernel. This patch creates a new function, setup_machine_fdt() which is analogous to the setup_machine_atags() created in the previous patch. It does all the early setup needed to use a device tree machine description. v5: - Print warning with neither dtb nor atags are passed to the kernel - Fix bug in setting of __machine_arch_type to the selected machine, not just the last machine in the list. Reported-by: Tixy <tixy@yxit.co.uk> - Copy command line directly into boot_command_line instead of cmd_line v4: - Dump some output when a matching machine_desc cannot be found v3: - Added processing of reserved list. - Backed out the v2 change that copied instead of reserved the dtb. dtb is reserved again and the real problem was fixed by using alloc_bootmem_align() for early allocation of RAM for unflattening the tree. - Moved cmd_line and initrd changes to earlier patch to make series bisectable. v2: Changed to save the dtb by copying into an allocated buffer. - Since the dtb will very likely be passed in the first 16k of ram where the interrupt vectors live, memblock_reserve() is insufficient to protect the dtb data. [based on work originally written by Jeremy Kerr <jeremy.kerr@canonical.com>] Tested-by: Tony Lindgren <tony@atomide.com> Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org> Acked-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/arm/kernel/setup.c')
-rw-r--r--arch/arm/kernel/setup.c23
1 files changed, 19 insertions, 4 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
index 42c2f0cedf1b..05db25ef3dd5 100644
--- a/arch/arm/kernel/setup.c
+++ b/arch/arm/kernel/setup.c
@@ -20,6 +20,7 @@
20#include <linux/screen_info.h> 20#include <linux/screen_info.h>
21#include <linux/init.h> 21#include <linux/init.h>
22#include <linux/kexec.h> 22#include <linux/kexec.h>
23#include <linux/of_fdt.h>
23#include <linux/crash_dump.h> 24#include <linux/crash_dump.h>
24#include <linux/root_dev.h> 25#include <linux/root_dev.h>
25#include <linux/cpu.h> 26#include <linux/cpu.h>
@@ -42,6 +43,7 @@
42#include <asm/cachetype.h> 43#include <asm/cachetype.h>
43#include <asm/tlbflush.h> 44#include <asm/tlbflush.h>
44 45
46#include <asm/prom.h>
45#include <asm/mach/arch.h> 47#include <asm/mach/arch.h>
46#include <asm/mach/irq.h> 48#include <asm/mach/irq.h>
47#include <asm/mach/time.h> 49#include <asm/mach/time.h>
@@ -309,7 +311,7 @@ static void __init cacheid_init(void)
309 */ 311 */
310extern struct proc_info_list *lookup_processor_type(unsigned int); 312extern struct proc_info_list *lookup_processor_type(unsigned int);
311 313
312static void __init early_print(const char *str, ...) 314void __init early_print(const char *str, ...)
313{ 315{
314 extern void printascii(const char *); 316 extern void printascii(const char *);
315 char buf[256]; 317 char buf[256];
@@ -439,7 +441,7 @@ void cpu_init(void)
439 : "r14"); 441 : "r14");
440} 442}
441 443
442static void __init dump_machine_table(void) 444void __init dump_machine_table(void)
443{ 445{
444 struct machine_desc *p; 446 struct machine_desc *p;
445 447
@@ -837,8 +839,17 @@ static struct machine_desc * __init setup_machine_tags(unsigned int nr)
837 if (tags->hdr.tag != ATAG_CORE) 839 if (tags->hdr.tag != ATAG_CORE)
838 convert_to_tag_list(tags); 840 convert_to_tag_list(tags);
839#endif 841#endif
840 if (tags->hdr.tag != ATAG_CORE) 842
843 if (tags->hdr.tag != ATAG_CORE) {
844#if defined(CONFIG_OF)
845 /*
846 * If CONFIG_OF is set, then assume this is a reasonably
847 * modern system that should pass boot parameters
848 */
849 early_print("Warning: Neither atags nor dtb found\n");
850#endif
841 tags = (struct tag *)&init_tags; 851 tags = (struct tag *)&init_tags;
852 }
842 853
843 if (mdesc->fixup) 854 if (mdesc->fixup)
844 mdesc->fixup(mdesc, tags, &from, &meminfo); 855 mdesc->fixup(mdesc, tags, &from, &meminfo);
@@ -864,7 +875,9 @@ void __init setup_arch(char **cmdline_p)
864 unwind_init(); 875 unwind_init();
865 876
866 setup_processor(); 877 setup_processor();
867 mdesc = setup_machine_tags(machine_arch_type); 878 mdesc = setup_machine_fdt(__atags_pointer);
879 if (!mdesc)
880 mdesc = setup_machine_tags(machine_arch_type);
868 machine_desc = mdesc; 881 machine_desc = mdesc;
869 machine_name = mdesc->name; 882 machine_name = mdesc->name;
870 883
@@ -887,6 +900,8 @@ void __init setup_arch(char **cmdline_p)
887 paging_init(mdesc); 900 paging_init(mdesc);
888 request_standard_resources(mdesc); 901 request_standard_resources(mdesc);
889 902
903 unflatten_device_tree();
904
890#ifdef CONFIG_SMP 905#ifdef CONFIG_SMP
891 if (is_smp()) 906 if (is_smp())
892 smp_init_cpus(); 907 smp_init_cpus();