c933acd4e2bd6fc5f0be116c99226aa1e19dc48a
[firefly-linux-kernel-4.4.55.git] / arch / powerpc / kernel / setup-common.c
1 /*
2  * Common boot and setup code for both 32-bit and 64-bit.
3  * Extracted from arch/powerpc/kernel/setup_64.c.
4  *
5  * Copyright (C) 2001 PPC64 Team, IBM Corp
6  *
7  *      This program is free software; you can redistribute it and/or
8  *      modify it under the terms of the GNU General Public License
9  *      as published by the Free Software Foundation; either version
10  *      2 of the License, or (at your option) any later version.
11  */
12
13 #undef DEBUG
14
15 #include <linux/export.h>
16 #include <linux/string.h>
17 #include <linux/sched.h>
18 #include <linux/init.h>
19 #include <linux/kernel.h>
20 #include <linux/reboot.h>
21 #include <linux/delay.h>
22 #include <linux/initrd.h>
23 #include <linux/platform_device.h>
24 #include <linux/seq_file.h>
25 #include <linux/ioport.h>
26 #include <linux/console.h>
27 #include <linux/screen_info.h>
28 #include <linux/root_dev.h>
29 #include <linux/notifier.h>
30 #include <linux/cpu.h>
31 #include <linux/unistd.h>
32 #include <linux/serial.h>
33 #include <linux/serial_8250.h>
34 #include <linux/debugfs.h>
35 #include <linux/percpu.h>
36 #include <linux/memblock.h>
37 #include <linux/of_platform.h>
38 #include <asm/io.h>
39 #include <asm/paca.h>
40 #include <asm/prom.h>
41 #include <asm/processor.h>
42 #include <asm/vdso_datapage.h>
43 #include <asm/pgtable.h>
44 #include <asm/smp.h>
45 #include <asm/elf.h>
46 #include <asm/machdep.h>
47 #include <asm/time.h>
48 #include <asm/cputable.h>
49 #include <asm/sections.h>
50 #include <asm/firmware.h>
51 #include <asm/btext.h>
52 #include <asm/nvram.h>
53 #include <asm/setup.h>
54 #include <asm/rtas.h>
55 #include <asm/iommu.h>
56 #include <asm/serial.h>
57 #include <asm/cache.h>
58 #include <asm/page.h>
59 #include <asm/mmu.h>
60 #include <asm/xmon.h>
61 #include <asm/cputhreads.h>
62 #include <mm/mmu_decl.h>
63 #include <asm/fadump.h>
64
65 #ifdef DEBUG
66 #include <asm/udbg.h>
67 #define DBG(fmt...) udbg_printf(fmt)
68 #else
69 #define DBG(fmt...)
70 #endif
71
72 /* The main machine-dep calls structure
73  */
74 struct machdep_calls ppc_md;
75 EXPORT_SYMBOL(ppc_md);
76 struct machdep_calls *machine_id;
77 EXPORT_SYMBOL(machine_id);
78
79 int boot_cpuid = -1;
80 EXPORT_SYMBOL_GPL(boot_cpuid);
81
82 unsigned long klimit = (unsigned long) _end;
83
84 char cmd_line[COMMAND_LINE_SIZE];
85
86 /*
87  * This still seems to be needed... -- paulus
88  */ 
89 struct screen_info screen_info = {
90         .orig_x = 0,
91         .orig_y = 25,
92         .orig_video_cols = 80,
93         .orig_video_lines = 25,
94         .orig_video_isVGA = 1,
95         .orig_video_points = 16
96 };
97 #if defined(CONFIG_FB_VGA16_MODULE)
98 EXPORT_SYMBOL(screen_info);
99 #endif
100
101 /* Variables required to store legacy IO irq routing */
102 int of_i8042_kbd_irq;
103 EXPORT_SYMBOL_GPL(of_i8042_kbd_irq);
104 int of_i8042_aux_irq;
105 EXPORT_SYMBOL_GPL(of_i8042_aux_irq);
106
107 #ifdef __DO_IRQ_CANON
108 /* XXX should go elsewhere eventually */
109 int ppc_do_canonicalize_irqs;
110 EXPORT_SYMBOL(ppc_do_canonicalize_irqs);
111 #endif
112
113 /* also used by kexec */
114 void machine_shutdown(void)
115 {
116 #ifdef CONFIG_FA_DUMP
117         /*
118          * if fadump is active, cleanup the fadump registration before we
119          * shutdown.
120          */
121         fadump_cleanup();
122 #endif
123
124         if (ppc_md.machine_shutdown)
125                 ppc_md.machine_shutdown();
126 }
127
128 void machine_restart(char *cmd)
129 {
130         machine_shutdown();
131         if (ppc_md.restart)
132                 ppc_md.restart(cmd);
133 #ifdef CONFIG_SMP
134         smp_send_stop();
135 #endif
136         printk(KERN_EMERG "System Halted, OK to turn off power\n");
137         local_irq_disable();
138         while (1) ;
139 }
140
141 void machine_power_off(void)
142 {
143         machine_shutdown();
144         if (ppc_md.power_off)
145                 ppc_md.power_off();
146 #ifdef CONFIG_SMP
147         smp_send_stop();
148 #endif
149         printk(KERN_EMERG "System Halted, OK to turn off power\n");
150         local_irq_disable();
151         while (1) ;
152 }
153 /* Used by the G5 thermal driver */
154 EXPORT_SYMBOL_GPL(machine_power_off);
155
156 void (*pm_power_off)(void) = machine_power_off;
157 EXPORT_SYMBOL_GPL(pm_power_off);
158
159 void machine_halt(void)
160 {
161         machine_shutdown();
162         if (ppc_md.halt)
163                 ppc_md.halt();
164 #ifdef CONFIG_SMP
165         smp_send_stop();
166 #endif
167         printk(KERN_EMERG "System Halted, OK to turn off power\n");
168         local_irq_disable();
169         while (1) ;
170 }
171
172
173 #ifdef CONFIG_TAU
174 extern u32 cpu_temp(unsigned long cpu);
175 extern u32 cpu_temp_both(unsigned long cpu);
176 #endif /* CONFIG_TAU */
177
178 #ifdef CONFIG_SMP
179 DEFINE_PER_CPU(unsigned int, cpu_pvr);
180 #endif
181
182 static void show_cpuinfo_summary(struct seq_file *m)
183 {
184         struct device_node *root;
185         const char *model = NULL;
186 #if defined(CONFIG_SMP) && defined(CONFIG_PPC32)
187         unsigned long bogosum = 0;
188         int i;
189         for_each_online_cpu(i)
190                 bogosum += loops_per_jiffy;
191         seq_printf(m, "total bogomips\t: %lu.%02lu\n",
192                    bogosum/(500000/HZ), bogosum/(5000/HZ) % 100);
193 #endif /* CONFIG_SMP && CONFIG_PPC32 */
194         seq_printf(m, "timebase\t: %lu\n", ppc_tb_freq);
195         if (ppc_md.name)
196                 seq_printf(m, "platform\t: %s\n", ppc_md.name);
197         root = of_find_node_by_path("/");
198         if (root)
199                 model = of_get_property(root, "model", NULL);
200         if (model)
201                 seq_printf(m, "model\t\t: %s\n", model);
202         of_node_put(root);
203
204         if (ppc_md.show_cpuinfo != NULL)
205                 ppc_md.show_cpuinfo(m);
206
207 #ifdef CONFIG_PPC32
208         /* Display the amount of memory */
209         seq_printf(m, "Memory\t\t: %d MB\n",
210                    (unsigned int)(total_memory / (1024 * 1024)));
211 #endif
212 }
213
214 static int show_cpuinfo(struct seq_file *m, void *v)
215 {
216         unsigned long cpu_id = (unsigned long)v - 1;
217         unsigned int pvr;
218         unsigned long proc_freq;
219         unsigned short maj;
220         unsigned short min;
221
222         /* We only show online cpus: disable preempt (overzealous, I
223          * knew) to prevent cpu going down. */
224         preempt_disable();
225         if (!cpu_online(cpu_id)) {
226                 preempt_enable();
227                 return 0;
228         }
229
230 #ifdef CONFIG_SMP
231         pvr = per_cpu(cpu_pvr, cpu_id);
232 #else
233         pvr = mfspr(SPRN_PVR);
234 #endif
235         maj = (pvr >> 8) & 0xFF;
236         min = pvr & 0xFF;
237
238         seq_printf(m, "processor\t: %lu\n", cpu_id);
239         seq_printf(m, "cpu\t\t: ");
240
241         if (cur_cpu_spec->pvr_mask)
242                 seq_printf(m, "%s", cur_cpu_spec->cpu_name);
243         else
244                 seq_printf(m, "unknown (%08x)", pvr);
245
246 #ifdef CONFIG_ALTIVEC
247         if (cpu_has_feature(CPU_FTR_ALTIVEC))
248                 seq_printf(m, ", altivec supported");
249 #endif /* CONFIG_ALTIVEC */
250
251         seq_printf(m, "\n");
252
253 #ifdef CONFIG_TAU
254         if (cur_cpu_spec->cpu_features & CPU_FTR_TAU) {
255 #ifdef CONFIG_TAU_AVERAGE
256                 /* more straightforward, but potentially misleading */
257                 seq_printf(m,  "temperature \t: %u C (uncalibrated)\n",
258                            cpu_temp(cpu_id));
259 #else
260                 /* show the actual temp sensor range */
261                 u32 temp;
262                 temp = cpu_temp_both(cpu_id);
263                 seq_printf(m, "temperature \t: %u-%u C (uncalibrated)\n",
264                            temp & 0xff, temp >> 16);
265 #endif
266         }
267 #endif /* CONFIG_TAU */
268
269         /*
270          * Platforms that have variable clock rates, should implement
271          * the method ppc_md.get_proc_freq() that reports the clock
272          * rate of a given cpu. The rest can use ppc_proc_freq to
273          * report the clock rate that is same across all cpus.
274          */
275         if (ppc_md.get_proc_freq)
276                 proc_freq = ppc_md.get_proc_freq(cpu_id);
277         else
278                 proc_freq = ppc_proc_freq;
279
280         if (proc_freq)
281                 seq_printf(m, "clock\t\t: %lu.%06luMHz\n",
282                            proc_freq / 1000000, proc_freq % 1000000);
283
284         if (ppc_md.show_percpuinfo != NULL)
285                 ppc_md.show_percpuinfo(m, cpu_id);
286
287         /* If we are a Freescale core do a simple check so
288          * we dont have to keep adding cases in the future */
289         if (PVR_VER(pvr) & 0x8000) {
290                 switch (PVR_VER(pvr)) {
291                 case 0x8000:    /* 7441/7450/7451, Voyager */
292                 case 0x8001:    /* 7445/7455, Apollo 6 */
293                 case 0x8002:    /* 7447/7457, Apollo 7 */
294                 case 0x8003:    /* 7447A, Apollo 7 PM */
295                 case 0x8004:    /* 7448, Apollo 8 */
296                 case 0x800c:    /* 7410, Nitro */
297                         maj = ((pvr >> 8) & 0xF);
298                         min = PVR_MIN(pvr);
299                         break;
300                 default:        /* e500/book-e */
301                         maj = PVR_MAJ(pvr);
302                         min = PVR_MIN(pvr);
303                         break;
304                 }
305         } else {
306                 switch (PVR_VER(pvr)) {
307                         case 0x0020:    /* 403 family */
308                                 maj = PVR_MAJ(pvr) + 1;
309                                 min = PVR_MIN(pvr);
310                                 break;
311                         case 0x1008:    /* 740P/750P ?? */
312                                 maj = ((pvr >> 8) & 0xFF) - 1;
313                                 min = pvr & 0xFF;
314                                 break;
315                         default:
316                                 maj = (pvr >> 8) & 0xFF;
317                                 min = pvr & 0xFF;
318                                 break;
319                 }
320         }
321
322         seq_printf(m, "revision\t: %hd.%hd (pvr %04x %04x)\n",
323                    maj, min, PVR_VER(pvr), PVR_REV(pvr));
324
325 #ifdef CONFIG_PPC32
326         seq_printf(m, "bogomips\t: %lu.%02lu\n",
327                    loops_per_jiffy / (500000/HZ),
328                    (loops_per_jiffy / (5000/HZ)) % 100);
329 #endif
330
331 #ifdef CONFIG_SMP
332         seq_printf(m, "\n");
333 #endif
334
335         preempt_enable();
336
337         /* If this is the last cpu, print the summary */
338         if (cpumask_next(cpu_id, cpu_online_mask) >= nr_cpu_ids)
339                 show_cpuinfo_summary(m);
340
341         return 0;
342 }
343
344 static void *c_start(struct seq_file *m, loff_t *pos)
345 {
346         if (*pos == 0)  /* just in case, cpu 0 is not the first */
347                 *pos = cpumask_first(cpu_online_mask);
348         else
349                 *pos = cpumask_next(*pos - 1, cpu_online_mask);
350         if ((*pos) < nr_cpu_ids)
351                 return (void *)(unsigned long)(*pos + 1);
352         return NULL;
353 }
354
355 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
356 {
357         (*pos)++;
358         return c_start(m, pos);
359 }
360
361 static void c_stop(struct seq_file *m, void *v)
362 {
363 }
364
365 const struct seq_operations cpuinfo_op = {
366         .start =c_start,
367         .next = c_next,
368         .stop = c_stop,
369         .show = show_cpuinfo,
370 };
371
372 void __init check_for_initrd(void)
373 {
374 #ifdef CONFIG_BLK_DEV_INITRD
375         DBG(" -> check_for_initrd()  initrd_start=0x%lx  initrd_end=0x%lx\n",
376             initrd_start, initrd_end);
377
378         /* If we were passed an initrd, set the ROOT_DEV properly if the values
379          * look sensible. If not, clear initrd reference.
380          */
381         if (is_kernel_addr(initrd_start) && is_kernel_addr(initrd_end) &&
382             initrd_end > initrd_start)
383                 ROOT_DEV = Root_RAM0;
384         else
385                 initrd_start = initrd_end = 0;
386
387         if (initrd_start)
388                 printk("Found initrd at 0x%lx:0x%lx\n", initrd_start, initrd_end);
389
390         DBG(" <- check_for_initrd()\n");
391 #endif /* CONFIG_BLK_DEV_INITRD */
392 }
393
394 #ifdef CONFIG_SMP
395
396 int threads_per_core, threads_per_subcore, threads_shift;
397 cpumask_t threads_core_mask;
398 EXPORT_SYMBOL_GPL(threads_per_core);
399 EXPORT_SYMBOL_GPL(threads_per_subcore);
400 EXPORT_SYMBOL_GPL(threads_shift);
401 EXPORT_SYMBOL_GPL(threads_core_mask);
402
403 static void __init cpu_init_thread_core_maps(int tpc)
404 {
405         int i;
406
407         threads_per_core = tpc;
408         threads_per_subcore = tpc;
409         cpumask_clear(&threads_core_mask);
410
411         /* This implementation only supports power of 2 number of threads
412          * for simplicity and performance
413          */
414         threads_shift = ilog2(tpc);
415         BUG_ON(tpc != (1 << threads_shift));
416
417         for (i = 0; i < tpc; i++)
418                 cpumask_set_cpu(i, &threads_core_mask);
419
420         printk(KERN_INFO "CPU maps initialized for %d thread%s per core\n",
421                tpc, tpc > 1 ? "s" : "");
422         printk(KERN_DEBUG " (thread shift is %d)\n", threads_shift);
423 }
424
425
426 /**
427  * setup_cpu_maps - initialize the following cpu maps:
428  *                  cpu_possible_mask
429  *                  cpu_present_mask
430  *
431  * Having the possible map set up early allows us to restrict allocations
432  * of things like irqstacks to nr_cpu_ids rather than NR_CPUS.
433  *
434  * We do not initialize the online map here; cpus set their own bits in
435  * cpu_online_mask as they come up.
436  *
437  * This function is valid only for Open Firmware systems.  finish_device_tree
438  * must be called before using this.
439  *
440  * While we're here, we may as well set the "physical" cpu ids in the paca.
441  *
442  * NOTE: This must match the parsing done in early_init_dt_scan_cpus.
443  */
444 void __init smp_setup_cpu_maps(void)
445 {
446         struct device_node *dn = NULL;
447         int cpu = 0;
448         int nthreads = 1;
449
450         DBG("smp_setup_cpu_maps()\n");
451
452         while ((dn = of_find_node_by_type(dn, "cpu")) && cpu < nr_cpu_ids) {
453                 const __be32 *intserv;
454                 __be32 cpu_be;
455                 int j, len;
456
457                 DBG("  * %s...\n", dn->full_name);
458
459                 intserv = of_get_property(dn, "ibm,ppc-interrupt-server#s",
460                                 &len);
461                 if (intserv) {
462                         DBG("    ibm,ppc-interrupt-server#s -> %d threads\n",
463                             nthreads);
464                 } else {
465                         DBG("    no ibm,ppc-interrupt-server#s -> 1 thread\n");
466                         intserv = of_get_property(dn, "reg", &len);
467                         if (!intserv) {
468                                 cpu_be = cpu_to_be32(cpu);
469                                 intserv = &cpu_be;      /* assume logical == phys */
470                                 len = 4;
471                         }
472                 }
473
474                 nthreads = len / sizeof(int);
475
476                 for (j = 0; j < nthreads && cpu < nr_cpu_ids; j++) {
477                         bool avail;
478
479                         DBG("    thread %d -> cpu %d (hard id %d)\n",
480                             j, cpu, be32_to_cpu(intserv[j]));
481
482                         avail = of_device_is_available(dn);
483                         if (!avail)
484                                 avail = !of_property_match_string(dn,
485                                                 "enable-method", "spin-table");
486
487                         set_cpu_present(cpu, avail);
488                         set_hard_smp_processor_id(cpu, be32_to_cpu(intserv[j]));
489                         set_cpu_possible(cpu, true);
490                         cpu++;
491                 }
492         }
493
494         /* If no SMT supported, nthreads is forced to 1 */
495         if (!cpu_has_feature(CPU_FTR_SMT)) {
496                 DBG("  SMT disabled ! nthreads forced to 1\n");
497                 nthreads = 1;
498         }
499
500 #ifdef CONFIG_PPC64
501         /*
502          * On pSeries LPAR, we need to know how many cpus
503          * could possibly be added to this partition.
504          */
505         if (machine_is(pseries) && firmware_has_feature(FW_FEATURE_LPAR) &&
506             (dn = of_find_node_by_path("/rtas"))) {
507                 int num_addr_cell, num_size_cell, maxcpus;
508                 const __be32 *ireg;
509
510                 num_addr_cell = of_n_addr_cells(dn);
511                 num_size_cell = of_n_size_cells(dn);
512
513                 ireg = of_get_property(dn, "ibm,lrdr-capacity", NULL);
514
515                 if (!ireg)
516                         goto out;
517
518                 maxcpus = be32_to_cpup(ireg + num_addr_cell + num_size_cell);
519
520                 /* Double maxcpus for processors which have SMT capability */
521                 if (cpu_has_feature(CPU_FTR_SMT))
522                         maxcpus *= nthreads;
523
524                 if (maxcpus > nr_cpu_ids) {
525                         printk(KERN_WARNING
526                                "Partition configured for %d cpus, "
527                                "operating system maximum is %d.\n",
528                                maxcpus, nr_cpu_ids);
529                         maxcpus = nr_cpu_ids;
530                 } else
531                         printk(KERN_INFO "Partition configured for %d cpus.\n",
532                                maxcpus);
533
534                 for (cpu = 0; cpu < maxcpus; cpu++)
535                         set_cpu_possible(cpu, true);
536         out:
537                 of_node_put(dn);
538         }
539         vdso_data->processorCount = num_present_cpus();
540 #endif /* CONFIG_PPC64 */
541
542         /* Initialize CPU <=> thread mapping/
543          *
544          * WARNING: We assume that the number of threads is the same for
545          * every CPU in the system. If that is not the case, then some code
546          * here will have to be reworked
547          */
548         cpu_init_thread_core_maps(nthreads);
549
550         /* Now that possible cpus are set, set nr_cpu_ids for later use */
551         setup_nr_cpu_ids();
552
553         free_unused_pacas();
554 }
555 #endif /* CONFIG_SMP */
556
557 #ifdef CONFIG_PCSPKR_PLATFORM
558 static __init int add_pcspkr(void)
559 {
560         struct device_node *np;
561         struct platform_device *pd;
562         int ret;
563
564         np = of_find_compatible_node(NULL, NULL, "pnpPNP,100");
565         of_node_put(np);
566         if (!np)
567                 return -ENODEV;
568
569         pd = platform_device_alloc("pcspkr", -1);
570         if (!pd)
571                 return -ENOMEM;
572
573         ret = platform_device_add(pd);
574         if (ret)
575                 platform_device_put(pd);
576
577         return ret;
578 }
579 device_initcall(add_pcspkr);
580 #endif  /* CONFIG_PCSPKR_PLATFORM */
581
582 void probe_machine(void)
583 {
584         extern struct machdep_calls __machine_desc_start;
585         extern struct machdep_calls __machine_desc_end;
586
587         /*
588          * Iterate all ppc_md structures until we find the proper
589          * one for the current machine type
590          */
591         DBG("Probing machine type ...\n");
592
593         for (machine_id = &__machine_desc_start;
594              machine_id < &__machine_desc_end;
595              machine_id++) {
596                 DBG("  %s ...", machine_id->name);
597                 memcpy(&ppc_md, machine_id, sizeof(struct machdep_calls));
598                 if (ppc_md.probe()) {
599                         DBG(" match !\n");
600                         break;
601                 }
602                 DBG("\n");
603         }
604         /* What can we do if we didn't find ? */
605         if (machine_id >= &__machine_desc_end) {
606                 DBG("No suitable machine found !\n");
607                 for (;;);
608         }
609
610         printk(KERN_INFO "Using %s machine description\n", ppc_md.name);
611 }
612
613 /* Match a class of boards, not a specific device configuration. */
614 int check_legacy_ioport(unsigned long base_port)
615 {
616         struct device_node *parent, *np = NULL;
617         int ret = -ENODEV;
618
619         switch(base_port) {
620         case I8042_DATA_REG:
621                 if (!(np = of_find_compatible_node(NULL, NULL, "pnpPNP,303")))
622                         np = of_find_compatible_node(NULL, NULL, "pnpPNP,f03");
623                 if (np) {
624                         parent = of_get_parent(np);
625
626                         of_i8042_kbd_irq = irq_of_parse_and_map(parent, 0);
627                         if (!of_i8042_kbd_irq)
628                                 of_i8042_kbd_irq = 1;
629
630                         of_i8042_aux_irq = irq_of_parse_and_map(parent, 1);
631                         if (!of_i8042_aux_irq)
632                                 of_i8042_aux_irq = 12;
633
634                         of_node_put(np);
635                         np = parent;
636                         break;
637                 }
638                 np = of_find_node_by_type(NULL, "8042");
639                 /* Pegasos has no device_type on its 8042 node, look for the
640                  * name instead */
641                 if (!np)
642                         np = of_find_node_by_name(NULL, "8042");
643                 if (np) {
644                         of_i8042_kbd_irq = 1;
645                         of_i8042_aux_irq = 12;
646                 }
647                 break;
648         case FDC_BASE: /* FDC1 */
649                 np = of_find_node_by_type(NULL, "fdc");
650                 break;
651         default:
652                 /* ipmi is supposed to fail here */
653                 break;
654         }
655         if (!np)
656                 return ret;
657         parent = of_get_parent(np);
658         if (parent) {
659                 if (strcmp(parent->type, "isa") == 0)
660                         ret = 0;
661                 of_node_put(parent);
662         }
663         of_node_put(np);
664         return ret;
665 }
666 EXPORT_SYMBOL(check_legacy_ioport);
667
668 static int ppc_panic_event(struct notifier_block *this,
669                              unsigned long event, void *ptr)
670 {
671         /*
672          * If firmware-assisted dump has been registered then trigger
673          * firmware-assisted dump and let firmware handle everything else.
674          */
675         crash_fadump(NULL, ptr);
676         ppc_md.panic(ptr);  /* May not return */
677         return NOTIFY_DONE;
678 }
679
680 static struct notifier_block ppc_panic_block = {
681         .notifier_call = ppc_panic_event,
682         .priority = INT_MIN /* may not return; must be done last */
683 };
684
685 void __init setup_panic(void)
686 {
687         atomic_notifier_chain_register(&panic_notifier_list, &ppc_panic_block);
688 }
689
690 #ifdef CONFIG_CHECK_CACHE_COHERENCY
691 /*
692  * For platforms that have configurable cache-coherency.  This function
693  * checks that the cache coherency setting of the kernel matches the setting
694  * left by the firmware, as indicated in the device tree.  Since a mismatch
695  * will eventually result in DMA failures, we print * and error and call
696  * BUG() in that case.
697  */
698
699 #ifdef CONFIG_NOT_COHERENT_CACHE
700 #define KERNEL_COHERENCY        0
701 #else
702 #define KERNEL_COHERENCY        1
703 #endif
704
705 static int __init check_cache_coherency(void)
706 {
707         struct device_node *np;
708         const void *prop;
709         int devtree_coherency;
710
711         np = of_find_node_by_path("/");
712         prop = of_get_property(np, "coherency-off", NULL);
713         of_node_put(np);
714
715         devtree_coherency = prop ? 0 : 1;
716
717         if (devtree_coherency != KERNEL_COHERENCY) {
718                 printk(KERN_ERR
719                         "kernel coherency:%s != device tree_coherency:%s\n",
720                         KERNEL_COHERENCY ? "on" : "off",
721                         devtree_coherency ? "on" : "off");
722                 BUG();
723         }
724
725         return 0;
726 }
727
728 late_initcall(check_cache_coherency);
729 #endif /* CONFIG_CHECK_CACHE_COHERENCY */
730
731 #ifdef CONFIG_DEBUG_FS
732 struct dentry *powerpc_debugfs_root;
733 EXPORT_SYMBOL(powerpc_debugfs_root);
734
735 static int powerpc_debugfs_init(void)
736 {
737         powerpc_debugfs_root = debugfs_create_dir("powerpc", NULL);
738
739         return powerpc_debugfs_root == NULL;
740 }
741 arch_initcall(powerpc_debugfs_init);
742 #endif
743
744 void ppc_printk_progress(char *s, unsigned short hex)
745 {
746         pr_info("%s\n", s);
747 }
748
749 void arch_setup_pdev_archdata(struct platform_device *pdev)
750 {
751         pdev->archdata.dma_mask = DMA_BIT_MASK(32);
752         pdev->dev.dma_mask = &pdev->archdata.dma_mask;
753         set_dma_ops(&pdev->dev, &dma_direct_ops);
754 }