aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/setup.c
diff options
context:
space:
mode:
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();