powerpc: Move epapr_paravirt_early_init() to early_init_devtree()
[cascardo/linux.git] / arch / powerpc / kernel / setup_32.c
1 /*
2  * Common prep/pmac/chrp boot and setup code.
3  */
4
5 #include <linux/module.h>
6 #include <linux/string.h>
7 #include <linux/sched.h>
8 #include <linux/init.h>
9 #include <linux/kernel.h>
10 #include <linux/reboot.h>
11 #include <linux/delay.h>
12 #include <linux/initrd.h>
13 #include <linux/tty.h>
14 #include <linux/seq_file.h>
15 #include <linux/root_dev.h>
16 #include <linux/cpu.h>
17 #include <linux/console.h>
18 #include <linux/memblock.h>
19
20 #include <asm/io.h>
21 #include <asm/prom.h>
22 #include <asm/processor.h>
23 #include <asm/pgtable.h>
24 #include <asm/setup.h>
25 #include <asm/smp.h>
26 #include <asm/elf.h>
27 #include <asm/cputable.h>
28 #include <asm/bootx.h>
29 #include <asm/btext.h>
30 #include <asm/machdep.h>
31 #include <asm/uaccess.h>
32 #include <asm/pmac_feature.h>
33 #include <asm/sections.h>
34 #include <asm/nvram.h>
35 #include <asm/xmon.h>
36 #include <asm/time.h>
37 #include <asm/serial.h>
38 #include <asm/udbg.h>
39 #include <asm/mmu_context.h>
40 #include <asm/code-patching.h>
41
42 #define DBG(fmt...)
43
44 extern void bootx_init(unsigned long r4, unsigned long phys);
45
46 int boot_cpuid_phys;
47 EXPORT_SYMBOL_GPL(boot_cpuid_phys);
48
49 int smp_hw_index[NR_CPUS];
50
51 unsigned long ISA_DMA_THRESHOLD;
52 unsigned int DMA_MODE_READ;
53 unsigned int DMA_MODE_WRITE;
54
55 /*
56  * These are used in binfmt_elf.c to put aux entries on the stack
57  * for each elf executable being started.
58  */
59 int dcache_bsize;
60 int icache_bsize;
61 int ucache_bsize;
62
63 /*
64  * We're called here very early in the boot.
65  *
66  * Note that the kernel may be running at an address which is different
67  * from the address that it was linked at, so we must use RELOC/PTRRELOC
68  * to access static data (including strings).  -- paulus
69  */
70 notrace unsigned long __init early_init(unsigned long dt_ptr)
71 {
72         unsigned long offset = reloc_offset();
73         struct cpu_spec *spec;
74
75         /* First zero the BSS -- use memset_io, some platforms don't have
76          * caches on yet */
77         memset_io((void __iomem *)PTRRELOC(&__bss_start), 0,
78                         __bss_stop - __bss_start);
79
80         /*
81          * Identify the CPU type and fix up code sections
82          * that depend on which cpu we have.
83          */
84         spec = identify_cpu(offset, mfspr(SPRN_PVR));
85
86         do_feature_fixups(spec->cpu_features,
87                           PTRRELOC(&__start___ftr_fixup),
88                           PTRRELOC(&__stop___ftr_fixup));
89
90         do_feature_fixups(spec->mmu_features,
91                           PTRRELOC(&__start___mmu_ftr_fixup),
92                           PTRRELOC(&__stop___mmu_ftr_fixup));
93
94         do_lwsync_fixups(spec->cpu_features,
95                          PTRRELOC(&__start___lwsync_fixup),
96                          PTRRELOC(&__stop___lwsync_fixup));
97
98         do_final_fixups();
99
100         return KERNELBASE + offset;
101 }
102
103
104 /*
105  * This is run before start_kernel(), the kernel has been relocated
106  * and we are running with enough of the MMU enabled to have our
107  * proper kernel virtual addresses
108  *
109  * Find out what kind of machine we're on and save any data we need
110  * from the early boot process (devtree is copied on pmac by prom_init()).
111  * This is called very early on the boot process, after a minimal
112  * MMU environment has been set up but before MMU_init is called.
113  */
114 extern unsigned int memset_nocache_branch; /* Insn to be replaced by NOP */
115
116 notrace void __init machine_init(u64 dt_ptr)
117 {
118         /* Enable early debugging if any specified (see udbg.h) */
119         udbg_early_init();
120
121         patch_instruction((unsigned int *)&memcpy, PPC_INST_NOP);
122         patch_instruction(&memset_nocache_branch, PPC_INST_NOP);
123
124         /* Do some early initialization based on the flat device tree */
125         early_init_devtree(__va(dt_ptr));
126
127         early_init_mmu();
128
129         probe_machine();
130
131         setup_kdump_trampoline();
132
133 #ifdef CONFIG_6xx
134         if (cpu_has_feature(CPU_FTR_CAN_DOZE) ||
135             cpu_has_feature(CPU_FTR_CAN_NAP))
136                 ppc_md.power_save = ppc6xx_idle;
137 #endif
138
139 #ifdef CONFIG_E500
140         if (cpu_has_feature(CPU_FTR_CAN_DOZE) ||
141             cpu_has_feature(CPU_FTR_CAN_NAP))
142                 ppc_md.power_save = e500_idle;
143 #endif
144         if (ppc_md.progress)
145                 ppc_md.progress("id mach(): done", 0x200);
146 }
147
148 /* Checks "l2cr=xxxx" command-line option */
149 int __init ppc_setup_l2cr(char *str)
150 {
151         if (cpu_has_feature(CPU_FTR_L2CR)) {
152                 unsigned long val = simple_strtoul(str, NULL, 0);
153                 printk(KERN_INFO "l2cr set to %lx\n", val);
154                 _set_L2CR(0);           /* force invalidate by disable cache */
155                 _set_L2CR(val);         /* and enable it */
156         }
157         return 1;
158 }
159 __setup("l2cr=", ppc_setup_l2cr);
160
161 /* Checks "l3cr=xxxx" command-line option */
162 int __init ppc_setup_l3cr(char *str)
163 {
164         if (cpu_has_feature(CPU_FTR_L3CR)) {
165                 unsigned long val = simple_strtoul(str, NULL, 0);
166                 printk(KERN_INFO "l3cr set to %lx\n", val);
167                 _set_L3CR(val);         /* and enable it */
168         }
169         return 1;
170 }
171 __setup("l3cr=", ppc_setup_l3cr);
172
173 #ifdef CONFIG_GENERIC_NVRAM
174
175 /* Generic nvram hooks used by drivers/char/gen_nvram.c */
176 unsigned char nvram_read_byte(int addr)
177 {
178         if (ppc_md.nvram_read_val)
179                 return ppc_md.nvram_read_val(addr);
180         return 0xff;
181 }
182 EXPORT_SYMBOL(nvram_read_byte);
183
184 void nvram_write_byte(unsigned char val, int addr)
185 {
186         if (ppc_md.nvram_write_val)
187                 ppc_md.nvram_write_val(addr, val);
188 }
189 EXPORT_SYMBOL(nvram_write_byte);
190
191 ssize_t nvram_get_size(void)
192 {
193         if (ppc_md.nvram_size)
194                 return ppc_md.nvram_size();
195         return -1;
196 }
197 EXPORT_SYMBOL(nvram_get_size);
198
199 void nvram_sync(void)
200 {
201         if (ppc_md.nvram_sync)
202                 ppc_md.nvram_sync();
203 }
204 EXPORT_SYMBOL(nvram_sync);
205
206 #endif /* CONFIG_NVRAM */
207
208 int __init ppc_init(void)
209 {
210         /* clear the progress line */
211         if (ppc_md.progress)
212                 ppc_md.progress("             ", 0xffff);
213
214         /* call platform init */
215         if (ppc_md.init != NULL) {
216                 ppc_md.init();
217         }
218         return 0;
219 }
220
221 arch_initcall(ppc_init);
222
223 static void __init irqstack_early_init(void)
224 {
225         unsigned int i;
226
227         /* interrupt stacks must be in lowmem, we get that for free on ppc32
228          * as the memblock is limited to lowmem by default */
229         for_each_possible_cpu(i) {
230                 softirq_ctx[i] = (struct thread_info *)
231                         __va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
232                 hardirq_ctx[i] = (struct thread_info *)
233                         __va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
234         }
235 }
236
237 #if defined(CONFIG_BOOKE) || defined(CONFIG_40x)
238 static void __init exc_lvl_early_init(void)
239 {
240         unsigned int i, hw_cpu;
241
242         /* interrupt stacks must be in lowmem, we get that for free on ppc32
243          * as the memblock is limited to lowmem by MEMBLOCK_REAL_LIMIT */
244         for_each_possible_cpu(i) {
245 #ifdef CONFIG_SMP
246                 hw_cpu = get_hard_smp_processor_id(i);
247 #else
248                 hw_cpu = 0;
249 #endif
250
251                 critirq_ctx[hw_cpu] = (struct thread_info *)
252                         __va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
253 #ifdef CONFIG_BOOKE
254                 dbgirq_ctx[hw_cpu] = (struct thread_info *)
255                         __va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
256                 mcheckirq_ctx[hw_cpu] = (struct thread_info *)
257                         __va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
258 #endif
259         }
260 }
261 #else
262 #define exc_lvl_early_init()
263 #endif
264
265 /* Warning, IO base is not yet inited */
266 void __init setup_arch(char **cmdline_p)
267 {
268         *cmdline_p = boot_command_line;
269
270         /* so udelay does something sensible, assume <= 1000 bogomips */
271         loops_per_jiffy = 500000000 / HZ;
272
273         unflatten_device_tree();
274         check_for_initrd();
275
276         if (ppc_md.init_early)
277                 ppc_md.init_early();
278
279         find_legacy_serial_ports();
280
281         smp_setup_cpu_maps();
282
283         /* Register early console */
284         register_early_udbg_console();
285
286         xmon_setup();
287
288         /*
289          * Set cache line size based on type of cpu as a default.
290          * Systems with OF can look in the properties on the cpu node(s)
291          * for a possibly more accurate value.
292          */
293         dcache_bsize = cur_cpu_spec->dcache_bsize;
294         icache_bsize = cur_cpu_spec->icache_bsize;
295         ucache_bsize = 0;
296         if (cpu_has_feature(CPU_FTR_UNIFIED_ID_CACHE))
297                 ucache_bsize = icache_bsize = dcache_bsize;
298
299         if (ppc_md.panic)
300                 setup_panic();
301
302         init_mm.start_code = (unsigned long)_stext;
303         init_mm.end_code = (unsigned long) _etext;
304         init_mm.end_data = (unsigned long) _edata;
305         init_mm.brk = klimit;
306
307         exc_lvl_early_init();
308
309         irqstack_early_init();
310
311         initmem_init();
312         if ( ppc_md.progress ) ppc_md.progress("setup_arch: initmem", 0x3eab);
313
314 #ifdef CONFIG_DUMMY_CONSOLE
315         conswitchp = &dummy_con;
316 #endif
317
318         if (ppc_md.setup_arch)
319                 ppc_md.setup_arch();
320         if ( ppc_md.progress ) ppc_md.progress("arch: exit", 0x3eab);
321
322         paging_init();
323
324         /* Initialize the MMU context management stuff */
325         mmu_context_init();
326 }