diff options
-rw-r--r-- | arch/arm/include/asm/mach/arch.h | 2 | ||||
-rw-r--r-- | arch/arm/include/asm/prom.h | 12 | ||||
-rw-r--r-- | arch/arm/include/asm/setup.h | 2 | ||||
-rw-r--r-- | arch/arm/kernel/devtree.c | 98 | ||||
-rw-r--r-- | arch/arm/kernel/setup.c | 23 | ||||
-rw-r--r-- | arch/arm/mm/init.c | 2 |
6 files changed, 135 insertions, 4 deletions
diff --git a/arch/arm/include/asm/mach/arch.h b/arch/arm/include/asm/mach/arch.h index 4764e67fb93d..946f4d778f71 100644 --- a/arch/arm/include/asm/mach/arch.h +++ b/arch/arm/include/asm/mach/arch.h | |||
@@ -18,6 +18,8 @@ struct machine_desc { | |||
18 | unsigned int nr; /* architecture number */ | 18 | unsigned int nr; /* architecture number */ |
19 | const char *name; /* architecture name */ | 19 | const char *name; /* architecture name */ |
20 | unsigned long boot_params; /* tagged list */ | 20 | unsigned long boot_params; /* tagged list */ |
21 | const char **dt_compat; /* array of device tree | ||
22 | * 'compatible' strings */ | ||
21 | 23 | ||
22 | unsigned int nr_irqs; /* number of IRQs */ | 24 | unsigned int nr_irqs; /* number of IRQs */ |
23 | 25 | ||
diff --git a/arch/arm/include/asm/prom.h b/arch/arm/include/asm/prom.h index 8f1037fdc08f..11b8708fc4db 100644 --- a/arch/arm/include/asm/prom.h +++ b/arch/arm/include/asm/prom.h | |||
@@ -21,5 +21,17 @@ static inline void irq_dispose_mapping(unsigned int virq) | |||
21 | return; | 21 | return; |
22 | } | 22 | } |
23 | 23 | ||
24 | extern struct machine_desc *setup_machine_fdt(unsigned int dt_phys); | ||
25 | extern void arm_dt_memblock_reserve(void); | ||
26 | |||
27 | #else /* CONFIG_OF */ | ||
28 | |||
29 | static inline struct machine_desc *setup_machine_fdt(unsigned int dt_phys) | ||
30 | { | ||
31 | return NULL; | ||
32 | } | ||
33 | |||
34 | static inline void arm_dt_memblock_reserve(void) { } | ||
35 | |||
24 | #endif /* CONFIG_OF */ | 36 | #endif /* CONFIG_OF */ |
25 | #endif /* ASMARM_PROM_H */ | 37 | #endif /* ASMARM_PROM_H */ |
diff --git a/arch/arm/include/asm/setup.h b/arch/arm/include/asm/setup.h index 93b4702ffa0f..ee2ad8ae07af 100644 --- a/arch/arm/include/asm/setup.h +++ b/arch/arm/include/asm/setup.h | |||
@@ -218,6 +218,8 @@ extern struct meminfo meminfo; | |||
218 | #define bank_phys_size(bank) (bank)->size | 218 | #define bank_phys_size(bank) (bank)->size |
219 | 219 | ||
220 | extern int arm_add_memory(phys_addr_t start, unsigned long size); | 220 | extern int arm_add_memory(phys_addr_t start, unsigned long size); |
221 | extern void early_print(const char *str, ...); | ||
222 | extern void dump_machine_table(void); | ||
221 | 223 | ||
222 | #endif /* __KERNEL__ */ | 224 | #endif /* __KERNEL__ */ |
223 | 225 | ||
diff --git a/arch/arm/kernel/devtree.c b/arch/arm/kernel/devtree.c index 75e3df85b88c..a701e4226a6c 100644 --- a/arch/arm/kernel/devtree.c +++ b/arch/arm/kernel/devtree.c | |||
@@ -21,6 +21,8 @@ | |||
21 | 21 | ||
22 | #include <asm/setup.h> | 22 | #include <asm/setup.h> |
23 | #include <asm/page.h> | 23 | #include <asm/page.h> |
24 | #include <asm/mach/arch.h> | ||
25 | #include <asm/mach-types.h> | ||
24 | 26 | ||
25 | void __init early_init_dt_add_memory_arch(u64 base, u64 size) | 27 | void __init early_init_dt_add_memory_arch(u64 base, u64 size) |
26 | { | 28 | { |
@@ -32,6 +34,102 @@ void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align) | |||
32 | return alloc_bootmem_align(size, align); | 34 | return alloc_bootmem_align(size, align); |
33 | } | 35 | } |
34 | 36 | ||
37 | void __init arm_dt_memblock_reserve(void) | ||
38 | { | ||
39 | u64 *reserve_map, base, size; | ||
40 | |||
41 | if (!initial_boot_params) | ||
42 | return; | ||
43 | |||
44 | /* Reserve the dtb region */ | ||
45 | memblock_reserve(virt_to_phys(initial_boot_params), | ||
46 | be32_to_cpu(initial_boot_params->totalsize)); | ||
47 | |||
48 | /* | ||
49 | * Process the reserve map. This will probably overlap the initrd | ||
50 | * and dtb locations which are already reserved, but overlaping | ||
51 | * doesn't hurt anything | ||
52 | */ | ||
53 | reserve_map = ((void*)initial_boot_params) + | ||
54 | be32_to_cpu(initial_boot_params->off_mem_rsvmap); | ||
55 | while (1) { | ||
56 | base = be64_to_cpup(reserve_map++); | ||
57 | size = be64_to_cpup(reserve_map++); | ||
58 | if (!size) | ||
59 | break; | ||
60 | memblock_reserve(base, size); | ||
61 | } | ||
62 | } | ||
63 | |||
64 | /** | ||
65 | * setup_machine_fdt - Machine setup when an dtb was passed to the kernel | ||
66 | * @dt_phys: physical address of dt blob | ||
67 | * | ||
68 | * If a dtb was passed to the kernel in r2, then use it to choose the | ||
69 | * correct machine_desc and to setup the system. | ||
70 | */ | ||
71 | struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys) | ||
72 | { | ||
73 | struct boot_param_header *devtree; | ||
74 | struct machine_desc *mdesc, *mdesc_best = NULL; | ||
75 | unsigned int score, mdesc_score = ~1; | ||
76 | unsigned long dt_root; | ||
77 | const char *model; | ||
78 | |||
79 | devtree = phys_to_virt(dt_phys); | ||
80 | |||
81 | /* check device tree validity */ | ||
82 | if (be32_to_cpu(devtree->magic) != OF_DT_HEADER) | ||
83 | return NULL; | ||
84 | |||
85 | /* Search the mdescs for the 'best' compatible value match */ | ||
86 | initial_boot_params = devtree; | ||
87 | dt_root = of_get_flat_dt_root(); | ||
88 | for_each_machine_desc(mdesc) { | ||
89 | score = of_flat_dt_match(dt_root, mdesc->dt_compat); | ||
90 | if (score > 0 && score < mdesc_score) { | ||
91 | mdesc_best = mdesc; | ||
92 | mdesc_score = score; | ||
93 | } | ||
94 | } | ||
95 | if (!mdesc_best) { | ||
96 | const char *prop; | ||
97 | long size; | ||
98 | |||
99 | early_print("\nError: unrecognized/unsupported " | ||
100 | "device tree compatible list:\n[ "); | ||
101 | |||
102 | prop = of_get_flat_dt_prop(dt_root, "compatible", &size); | ||
103 | while (size > 0) { | ||
104 | early_print("'%s' ", prop); | ||
105 | size -= strlen(prop) + 1; | ||
106 | prop += strlen(prop) + 1; | ||
107 | } | ||
108 | early_print("]\n\n"); | ||
109 | |||
110 | dump_machine_table(); /* does not return */ | ||
111 | } | ||
112 | |||
113 | model = of_get_flat_dt_prop(dt_root, "model", NULL); | ||
114 | if (!model) | ||
115 | model = of_get_flat_dt_prop(dt_root, "compatible", NULL); | ||
116 | if (!model) | ||
117 | model = "<unknown>"; | ||
118 | pr_info("Machine: %s, model: %s\n", mdesc_best->name, model); | ||
119 | |||
120 | /* Retrieve various information from the /chosen node */ | ||
121 | of_scan_flat_dt(early_init_dt_scan_chosen, boot_command_line); | ||
122 | /* Initialize {size,address}-cells info */ | ||
123 | of_scan_flat_dt(early_init_dt_scan_root, NULL); | ||
124 | /* Setup memory, calling early_init_dt_add_memory_arch */ | ||
125 | of_scan_flat_dt(early_init_dt_scan_memory, NULL); | ||
126 | |||
127 | /* Change machine number to match the mdesc we're using */ | ||
128 | __machine_arch_type = mdesc_best->nr; | ||
129 | |||
130 | return mdesc_best; | ||
131 | } | ||
132 | |||
35 | /** | 133 | /** |
36 | * irq_create_of_mapping - Hook to resolve OF irq specifier into a Linux irq# | 134 | * irq_create_of_mapping - Hook to resolve OF irq specifier into a Linux irq# |
37 | * | 135 | * |
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 | */ |
310 | extern struct proc_info_list *lookup_processor_type(unsigned int); | 312 | extern struct proc_info_list *lookup_processor_type(unsigned int); |
311 | 313 | ||
312 | static void __init early_print(const char *str, ...) | 314 | void __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 | ||
442 | static void __init dump_machine_table(void) | 444 | void __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(); |
diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c index 26c405421f4e..b26597552ebc 100644 --- a/arch/arm/mm/init.c +++ b/arch/arm/mm/init.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/sort.h> | 22 | #include <linux/sort.h> |
23 | 23 | ||
24 | #include <asm/mach-types.h> | 24 | #include <asm/mach-types.h> |
25 | #include <asm/prom.h> | ||
25 | #include <asm/sections.h> | 26 | #include <asm/sections.h> |
26 | #include <asm/setup.h> | 27 | #include <asm/setup.h> |
27 | #include <asm/sizes.h> | 28 | #include <asm/sizes.h> |
@@ -322,6 +323,7 @@ void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc) | |||
322 | #endif | 323 | #endif |
323 | 324 | ||
324 | arm_mm_memblock_reserve(); | 325 | arm_mm_memblock_reserve(); |
326 | arm_dt_memblock_reserve(); | ||
325 | 327 | ||
326 | /* reserve any platform specific memblock areas */ | 328 | /* reserve any platform specific memblock areas */ |
327 | if (mdesc->reserve) | 329 | if (mdesc->reserve) |