blob: 13f8d168b3f1e467599248c92457c442b456b7ee [file] [log] [blame]
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001/*
2 * Procedures for interfacing to Open Firmware.
3 *
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
6 *
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16#undef DEBUG_PROM
17
18#include <stdarg.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100019#include <linux/kernel.h>
20#include <linux/string.h>
21#include <linux/init.h>
22#include <linux/threads.h>
23#include <linux/spinlock.h>
24#include <linux/types.h>
25#include <linux/pci.h>
26#include <linux/proc_fs.h>
27#include <linux/stringify.h>
28#include <linux/delay.h>
29#include <linux/initrd.h>
30#include <linux/bitops.h>
31#include <asm/prom.h>
32#include <asm/rtas.h>
33#include <asm/page.h>
34#include <asm/processor.h>
35#include <asm/irq.h>
36#include <asm/io.h>
37#include <asm/smp.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100038#include <asm/mmu.h>
39#include <asm/pgtable.h>
40#include <asm/pci.h>
41#include <asm/iommu.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100042#include <asm/btext.h>
43#include <asm/sections.h>
44#include <asm/machdep.h>
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +000045#include <asm/opal.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100046
Paul Mackerras9b6b5632005-10-06 12:06:20 +100047#include <linux/linux_logo.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100048
49/*
Paul Mackerras9b6b5632005-10-06 12:06:20 +100050 * Eventually bump that one up
51 */
52#define DEVTREE_CHUNK_SIZE 0x100000
53
54/*
55 * This is the size of the local memory reserve map that gets copied
56 * into the boot params passed to the kernel. That size is totally
57 * flexible as the kernel just reads the list until it encounters an
58 * entry with size 0, so it can be changed without breaking binary
59 * compatibility
60 */
61#define MEM_RESERVE_MAP_SIZE 8
62
63/*
64 * prom_init() is called very early on, before the kernel text
65 * and data have been mapped to KERNELBASE. At this point the code
66 * is running at whatever address it has been loaded at.
67 * On ppc32 we compile with -mrelocatable, which means that references
68 * to extern and static variables get relocated automatically.
Anton Blanchard5ac47f72012-11-26 17:39:03 +000069 * ppc64 objects are always relocatable, we just need to relocate the
70 * TOC.
Paul Mackerras9b6b5632005-10-06 12:06:20 +100071 *
72 * Because OF may have mapped I/O devices into the area starting at
73 * KERNELBASE, particularly on CHRP machines, we can't safely call
74 * OF once the kernel has been mapped to KERNELBASE. Therefore all
75 * OF calls must be done within prom_init().
76 *
77 * ADDR is used in calls to call_prom. The 4th and following
78 * arguments to call_prom should be 32-bit values.
79 * On ppc64, 64 bit values are truncated to 32 bits (and
80 * fortunately don't get interpreted as two arguments).
81 */
Anton Blanchard5ac47f72012-11-26 17:39:03 +000082#define ADDR(x) (u32)(unsigned long)(x)
83
Paul Mackerras9b6b5632005-10-06 12:06:20 +100084#ifdef CONFIG_PPC64
Paul Mackerrasa23414b2005-11-10 12:00:55 +110085#define OF_WORKAROUNDS 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +100086#else
Paul Mackerrasa23414b2005-11-10 12:00:55 +110087#define OF_WORKAROUNDS of_workarounds
88int of_workarounds;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100089#endif
90
Paul Mackerrasa23414b2005-11-10 12:00:55 +110091#define OF_WA_CLAIM 1 /* do phys/virt claim separately, then map */
92#define OF_WA_LONGTRAIL 2 /* work around longtrail bugs */
93
Paul Mackerras9b6b5632005-10-06 12:06:20 +100094#define PROM_BUG() do { \
95 prom_printf("kernel BUG at %s line 0x%x!\n", \
Anton Blanchard5827d412012-11-26 17:40:03 +000096 __FILE__, __LINE__); \
Paul Mackerras9b6b5632005-10-06 12:06:20 +100097 __asm__ __volatile__(".long " BUG_ILLEGAL_INSTR); \
98} while (0)
99
100#ifdef DEBUG_PROM
101#define prom_debug(x...) prom_printf(x)
102#else
103#define prom_debug(x...)
104#endif
105
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000106
107typedef u32 prom_arg_t;
108
109struct prom_args {
110 u32 service;
111 u32 nargs;
112 u32 nret;
113 prom_arg_t args[10];
114};
115
116struct prom_t {
117 ihandle root;
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100118 phandle chosen;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000119 int cpu;
120 ihandle stdout;
Paul Mackerrasa575b802005-10-23 17:23:21 +1000121 ihandle mmumap;
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100122 ihandle memory;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000123};
124
125struct mem_map_entry {
Kumar Galacbbcf342006-01-11 17:57:13 -0600126 u64 base;
127 u64 size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000128};
129
130typedef u32 cell_t;
131
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +0000132extern void __start(unsigned long r3, unsigned long r4, unsigned long r5,
133 unsigned long r6, unsigned long r7, unsigned long r8,
134 unsigned long r9);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000135
136#ifdef CONFIG_PPC64
Paul Mackerrasc49888202005-10-26 21:52:53 +1000137extern int enter_prom(struct prom_args *args, unsigned long entry);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000138#else
Paul Mackerrasc49888202005-10-26 21:52:53 +1000139static inline int enter_prom(struct prom_args *args, unsigned long entry)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000140{
Paul Mackerrasc49888202005-10-26 21:52:53 +1000141 return ((int (*)(struct prom_args *))entry)(args);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000142}
143#endif
144
145extern void copy_and_flush(unsigned long dest, unsigned long src,
146 unsigned long size, unsigned long offset);
147
148/* prom structure */
149static struct prom_t __initdata prom;
150
151static unsigned long prom_entry __initdata;
152
153#define PROM_SCRATCH_SIZE 256
154
155static char __initdata of_stdout_device[256];
156static char __initdata prom_scratch[PROM_SCRATCH_SIZE];
157
158static unsigned long __initdata dt_header_start;
159static unsigned long __initdata dt_struct_start, dt_struct_end;
160static unsigned long __initdata dt_string_start, dt_string_end;
161
162static unsigned long __initdata prom_initrd_start, prom_initrd_end;
163
164#ifdef CONFIG_PPC64
Jeremy Kerr165785e2006-11-11 17:25:18 +1100165static int __initdata prom_iommu_force_on;
166static int __initdata prom_iommu_off;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000167static unsigned long __initdata prom_tce_alloc_start;
168static unsigned long __initdata prom_tce_alloc_end;
169#endif
170
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100171/* Platforms codes are now obsolete in the kernel. Now only used within this
172 * file and ultimately gone too. Feel free to change them if you need, they
173 * are not shared with anything outside of this file anymore
174 */
175#define PLATFORM_PSERIES 0x0100
176#define PLATFORM_PSERIES_LPAR 0x0101
177#define PLATFORM_LPAR 0x0001
178#define PLATFORM_POWERMAC 0x0400
179#define PLATFORM_GENERIC 0x0500
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +0000180#define PLATFORM_OPAL 0x0600
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100181
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000182static int __initdata of_platform;
183
184static char __initdata prom_cmd_line[COMMAND_LINE_SIZE];
185
Benjamin Krillcf687872009-07-27 22:02:39 +0000186static unsigned long __initdata prom_memory_limit;
187
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000188static unsigned long __initdata alloc_top;
189static unsigned long __initdata alloc_top_high;
190static unsigned long __initdata alloc_bottom;
191static unsigned long __initdata rmo_top;
192static unsigned long __initdata ram_top;
193
194static struct mem_map_entry __initdata mem_reserve_map[MEM_RESERVE_MAP_SIZE];
195static int __initdata mem_reserve_cnt;
196
197static cell_t __initdata regbuf[1024];
198
199
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000200/*
201 * Error results ... some OF calls will return "-1" on error, some
202 * will return 0, some will return either. To simplify, here are
203 * macros to use with any ihandle or phandle return value to check if
204 * it is valid
205 */
206
207#define PROM_ERROR (-1u)
208#define PHANDLE_VALID(p) ((p) != 0 && (p) != PROM_ERROR)
209#define IHANDLE_VALID(i) ((i) != 0 && (i) != PROM_ERROR)
210
211
212/* This is the one and *ONLY* place where we actually call open
213 * firmware.
214 */
215
216static int __init call_prom(const char *service, int nargs, int nret, ...)
217{
218 int i;
219 struct prom_args args;
220 va_list list;
221
222 args.service = ADDR(service);
223 args.nargs = nargs;
224 args.nret = nret;
225
226 va_start(list, nret);
227 for (i = 0; i < nargs; i++)
228 args.args[i] = va_arg(list, prom_arg_t);
229 va_end(list);
230
231 for (i = 0; i < nret; i++)
232 args.args[nargs+i] = 0;
233
Anton Blanchard5827d412012-11-26 17:40:03 +0000234 if (enter_prom(&args, prom_entry) < 0)
Paul Mackerrasc49888202005-10-26 21:52:53 +1000235 return PROM_ERROR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000236
237 return (nret > 0) ? args.args[nargs] : 0;
238}
239
240static int __init call_prom_ret(const char *service, int nargs, int nret,
241 prom_arg_t *rets, ...)
242{
243 int i;
244 struct prom_args args;
245 va_list list;
246
247 args.service = ADDR(service);
248 args.nargs = nargs;
249 args.nret = nret;
250
251 va_start(list, rets);
252 for (i = 0; i < nargs; i++)
253 args.args[i] = va_arg(list, prom_arg_t);
254 va_end(list);
255
256 for (i = 0; i < nret; i++)
Olaf Heringed1189b72005-11-29 14:04:05 +0100257 args.args[nargs+i] = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000258
Anton Blanchard5827d412012-11-26 17:40:03 +0000259 if (enter_prom(&args, prom_entry) < 0)
Paul Mackerrasc49888202005-10-26 21:52:53 +1000260 return PROM_ERROR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000261
262 if (rets != NULL)
263 for (i = 1; i < nret; ++i)
Paul Mackerrasc5200c92005-10-10 22:57:03 +1000264 rets[i-1] = args.args[nargs+i];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000265
266 return (nret > 0) ? args.args[nargs] : 0;
267}
268
269
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000270static void __init prom_print(const char *msg)
271{
272 const char *p, *q;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000273
Anton Blanchard5827d412012-11-26 17:40:03 +0000274 if (prom.stdout == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000275 return;
276
277 for (p = msg; *p != 0; p = q) {
278 for (q = p; *q != 0 && *q != '\n'; ++q)
279 ;
280 if (q > p)
Anton Blanchard5827d412012-11-26 17:40:03 +0000281 call_prom("write", 3, 1, prom.stdout, p, q - p);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000282 if (*q == 0)
283 break;
284 ++q;
Anton Blanchard5827d412012-11-26 17:40:03 +0000285 call_prom("write", 3, 1, prom.stdout, ADDR("\r\n"), 2);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000286 }
287}
288
289
290static void __init prom_print_hex(unsigned long val)
291{
292 int i, nibbles = sizeof(val)*2;
293 char buf[sizeof(val)*2+1];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000294
295 for (i = nibbles-1; i >= 0; i--) {
296 buf[i] = (val & 0xf) + '0';
297 if (buf[i] > '9')
298 buf[i] += ('a'-'0'-10);
299 val >>= 4;
300 }
301 buf[nibbles] = '\0';
Anton Blanchard5827d412012-11-26 17:40:03 +0000302 call_prom("write", 3, 1, prom.stdout, buf, nibbles);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000303}
304
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000305/* max number of decimal digits in an unsigned long */
306#define UL_DIGITS 21
307static void __init prom_print_dec(unsigned long val)
308{
309 int i, size;
310 char buf[UL_DIGITS+1];
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000311
312 for (i = UL_DIGITS-1; i >= 0; i--) {
313 buf[i] = (val % 10) + '0';
314 val = val/10;
315 if (val == 0)
316 break;
317 }
318 /* shift stuff down */
319 size = UL_DIGITS - i;
Anton Blanchard5827d412012-11-26 17:40:03 +0000320 call_prom("write", 3, 1, prom.stdout, buf+i, size);
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000321}
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000322
323static void __init prom_printf(const char *format, ...)
324{
325 const char *p, *q, *s;
326 va_list args;
327 unsigned long v;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000328 long vs;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000329
330 va_start(args, format);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000331 for (p = format; *p != 0; p = q) {
332 for (q = p; *q != 0 && *q != '\n' && *q != '%'; ++q)
333 ;
334 if (q > p)
Anton Blanchard5827d412012-11-26 17:40:03 +0000335 call_prom("write", 3, 1, prom.stdout, p, q - p);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000336 if (*q == 0)
337 break;
338 if (*q == '\n') {
339 ++q;
Anton Blanchard5827d412012-11-26 17:40:03 +0000340 call_prom("write", 3, 1, prom.stdout,
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000341 ADDR("\r\n"), 2);
342 continue;
343 }
344 ++q;
345 if (*q == 0)
346 break;
347 switch (*q) {
348 case 's':
349 ++q;
350 s = va_arg(args, const char *);
351 prom_print(s);
352 break;
353 case 'x':
354 ++q;
355 v = va_arg(args, unsigned long);
356 prom_print_hex(v);
357 break;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000358 case 'd':
359 ++q;
360 vs = va_arg(args, int);
361 if (vs < 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +0000362 prom_print("-");
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000363 vs = -vs;
364 }
365 prom_print_dec(vs);
366 break;
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000367 case 'l':
368 ++q;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000369 if (*q == 0)
370 break;
371 else if (*q == 'x') {
372 ++q;
373 v = va_arg(args, unsigned long);
374 prom_print_hex(v);
375 } else if (*q == 'u') { /* '%lu' */
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000376 ++q;
377 v = va_arg(args, unsigned long);
378 prom_print_dec(v);
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000379 } else if (*q == 'd') { /* %ld */
380 ++q;
381 vs = va_arg(args, long);
382 if (vs < 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +0000383 prom_print("-");
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000384 vs = -vs;
385 }
386 prom_print_dec(vs);
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000387 }
388 break;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000389 }
390 }
391}
392
393
Paul Mackerrasa575b802005-10-23 17:23:21 +1000394static unsigned int __init prom_claim(unsigned long virt, unsigned long size,
395 unsigned long align)
396{
Paul Mackerrasa575b802005-10-23 17:23:21 +1000397
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100398 if (align == 0 && (OF_WORKAROUNDS & OF_WA_CLAIM)) {
399 /*
400 * Old OF requires we claim physical and virtual separately
401 * and then map explicitly (assuming virtual mode)
402 */
403 int ret;
404 prom_arg_t result;
405
406 ret = call_prom_ret("call-method", 5, 2, &result,
Anton Blanchard5827d412012-11-26 17:40:03 +0000407 ADDR("claim"), prom.memory,
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100408 align, size, virt);
409 if (ret != 0 || result == -1)
410 return -1;
411 ret = call_prom_ret("call-method", 5, 2, &result,
Anton Blanchard5827d412012-11-26 17:40:03 +0000412 ADDR("claim"), prom.mmumap,
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100413 align, size, virt);
414 if (ret != 0) {
415 call_prom("call-method", 4, 1, ADDR("release"),
Anton Blanchard5827d412012-11-26 17:40:03 +0000416 prom.memory, size, virt);
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100417 return -1;
418 }
419 /* the 0x12 is M (coherence) + PP == read/write */
Paul Mackerrasa575b802005-10-23 17:23:21 +1000420 call_prom("call-method", 6, 1,
Anton Blanchard5827d412012-11-26 17:40:03 +0000421 ADDR("map"), prom.mmumap, 0x12, size, virt, virt);
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100422 return virt;
423 }
424 return call_prom("claim", 3, 1, (prom_arg_t)virt, (prom_arg_t)size,
425 (prom_arg_t)align);
Paul Mackerrasa575b802005-10-23 17:23:21 +1000426}
427
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000428static void __init __attribute__((noreturn)) prom_panic(const char *reason)
429{
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000430 prom_print(reason);
Olaf Heringadd60ef2006-03-23 22:03:57 +0100431 /* Do not call exit because it clears the screen on pmac
432 * it also causes some sort of double-fault on early pmacs */
Anton Blanchard5827d412012-11-26 17:40:03 +0000433 if (of_platform == PLATFORM_POWERMAC)
Olaf Heringadd60ef2006-03-23 22:03:57 +0100434 asm("trap\n");
435
Stephen Rothwell1d9a4732012-03-21 18:23:27 +0000436 /* ToDo: should put up an SRC here on pSeries */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000437 call_prom("exit", 0, 0);
438
439 for (;;) /* should never get here */
440 ;
441}
442
443
444static int __init prom_next_node(phandle *nodep)
445{
446 phandle node;
447
448 if ((node = *nodep) != 0
449 && (*nodep = call_prom("child", 1, 1, node)) != 0)
450 return 1;
451 if ((*nodep = call_prom("peer", 1, 1, node)) != 0)
452 return 1;
453 for (;;) {
454 if ((node = call_prom("parent", 1, 1, node)) == 0)
455 return 0;
456 if ((*nodep = call_prom("peer", 1, 1, node)) != 0)
457 return 1;
458 }
459}
460
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +1100461static int inline prom_getprop(phandle node, const char *pname,
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000462 void *value, size_t valuelen)
463{
464 return call_prom("getprop", 4, 1, node, ADDR(pname),
465 (u32)(unsigned long) value, (u32) valuelen);
466}
467
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +1100468static int inline prom_getproplen(phandle node, const char *pname)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000469{
470 return call_prom("getproplen", 2, 1, node, ADDR(pname));
471}
472
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100473static void add_string(char **str, const char *q)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000474{
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100475 char *p = *str;
476
477 while (*q)
478 *p++ = *q++;
479 *p++ = ' ';
480 *str = p;
481}
482
483static char *tohex(unsigned int x)
484{
485 static char digits[] = "0123456789abcdef";
486 static char result[9];
487 int i;
488
489 result[8] = 0;
490 i = 8;
491 do {
492 --i;
493 result[i] = digits[x & 0xf];
494 x >>= 4;
495 } while (x != 0 && i > 0);
496 return &result[i];
497}
498
499static int __init prom_setprop(phandle node, const char *nodename,
500 const char *pname, void *value, size_t valuelen)
501{
502 char cmd[256], *p;
503
504 if (!(OF_WORKAROUNDS & OF_WA_LONGTRAIL))
505 return call_prom("setprop", 4, 1, node, ADDR(pname),
506 (u32)(unsigned long) value, (u32) valuelen);
507
508 /* gah... setprop doesn't work on longtrail, have to use interpret */
509 p = cmd;
510 add_string(&p, "dev");
511 add_string(&p, nodename);
512 add_string(&p, tohex((u32)(unsigned long) value));
513 add_string(&p, tohex(valuelen));
514 add_string(&p, tohex(ADDR(pname)));
Anton Blanchard5827d412012-11-26 17:40:03 +0000515 add_string(&p, tohex(strlen(pname)));
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100516 add_string(&p, "property");
517 *p = 0;
518 return call_prom("interpret", 1, 1, (u32)(unsigned long) cmd);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000519}
520
Anton Blanchard5827d412012-11-26 17:40:03 +0000521/* We can't use the standard versions because of relocation headaches. */
Benjamin Krillcf687872009-07-27 22:02:39 +0000522#define isxdigit(c) (('0' <= (c) && (c) <= '9') \
523 || ('a' <= (c) && (c) <= 'f') \
524 || ('A' <= (c) && (c) <= 'F'))
525
526#define isdigit(c) ('0' <= (c) && (c) <= '9')
527#define islower(c) ('a' <= (c) && (c) <= 'z')
528#define toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
529
530unsigned long prom_strtoul(const char *cp, const char **endp)
531{
532 unsigned long result = 0, base = 10, value;
533
534 if (*cp == '0') {
535 base = 8;
536 cp++;
537 if (toupper(*cp) == 'X') {
538 cp++;
539 base = 16;
540 }
541 }
542
543 while (isxdigit(*cp) &&
544 (value = isdigit(*cp) ? *cp - '0' : toupper(*cp) - 'A' + 10) < base) {
545 result = result * base + value;
546 cp++;
547 }
548
549 if (endp)
550 *endp = cp;
551
552 return result;
553}
554
555unsigned long prom_memparse(const char *ptr, const char **retptr)
556{
557 unsigned long ret = prom_strtoul(ptr, retptr);
558 int shift = 0;
559
560 /*
561 * We can't use a switch here because GCC *may* generate a
562 * jump table which won't work, because we're not running at
563 * the address we're linked at.
564 */
565 if ('G' == **retptr || 'g' == **retptr)
566 shift = 30;
567
568 if ('M' == **retptr || 'm' == **retptr)
569 shift = 20;
570
571 if ('K' == **retptr || 'k' == **retptr)
572 shift = 10;
573
574 if (shift) {
575 ret <<= shift;
576 (*retptr)++;
577 }
578
579 return ret;
580}
581
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000582/*
583 * Early parsing of the command line passed to the kernel, used for
584 * "mem=x" and the options that affect the iommu
585 */
586static void __init early_cmdline_parse(void)
587{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100588 const char *opt;
Benjamin Krillcf687872009-07-27 22:02:39 +0000589
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100590 char *p;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000591 int l = 0;
592
Anton Blanchard5827d412012-11-26 17:40:03 +0000593 prom_cmd_line[0] = 0;
594 p = prom_cmd_line;
595 if ((long)prom.chosen > 0)
596 l = prom_getprop(prom.chosen, "bootargs", p, COMMAND_LINE_SIZE-1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000597#ifdef CONFIG_CMDLINE
Amos Waterland0e4aa9c2006-06-12 23:45:02 -0400598 if (l <= 0 || p[0] == '\0') /* dbl check */
Anton Blanchard5827d412012-11-26 17:40:03 +0000599 strlcpy(prom_cmd_line,
600 CONFIG_CMDLINE, sizeof(prom_cmd_line));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000601#endif /* CONFIG_CMDLINE */
Anton Blanchard5827d412012-11-26 17:40:03 +0000602 prom_printf("command line: %s\n", prom_cmd_line);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000603
604#ifdef CONFIG_PPC64
Anton Blanchard5827d412012-11-26 17:40:03 +0000605 opt = strstr(prom_cmd_line, "iommu=");
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000606 if (opt) {
607 prom_printf("iommu opt is: %s\n", opt);
608 opt += 6;
609 while (*opt && *opt == ' ')
610 opt++;
Anton Blanchard5827d412012-11-26 17:40:03 +0000611 if (!strncmp(opt, "off", 3))
612 prom_iommu_off = 1;
613 else if (!strncmp(opt, "force", 5))
614 prom_iommu_force_on = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000615 }
616#endif
Anton Blanchard5827d412012-11-26 17:40:03 +0000617 opt = strstr(prom_cmd_line, "mem=");
Benjamin Krillcf687872009-07-27 22:02:39 +0000618 if (opt) {
619 opt += 4;
Anton Blanchard5827d412012-11-26 17:40:03 +0000620 prom_memory_limit = prom_memparse(opt, (const char **)&opt);
Benjamin Krillcf687872009-07-27 22:02:39 +0000621#ifdef CONFIG_PPC64
622 /* Align to 16 MB == size of ppc64 large page */
Anton Blanchard5827d412012-11-26 17:40:03 +0000623 prom_memory_limit = ALIGN(prom_memory_limit, 0x1000000);
Benjamin Krillcf687872009-07-27 22:02:39 +0000624#endif
625 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000626}
627
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +0000628#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000629/*
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000630 * There are two methods for telling firmware what our capabilities are.
631 * Newer machines have an "ibm,client-architecture-support" method on the
632 * root node. For older machines, we have to call the "process-elf-header"
633 * method in the /packages/elf-loader node, passing it a fake 32-bit
634 * ELF header containing a couple of PT_NOTE sections that contain
635 * structures that contain various information.
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000636 */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000637
638/*
639 * New method - extensible architecture description vector.
640 *
641 * Because the description vector contains a mix of byte and word
642 * values, we declare it as an unsigned char array, and use this
643 * macro to put word values in.
644 */
645#define W(x) ((x) >> 24) & 0xff, ((x) >> 16) & 0xff, \
646 ((x) >> 8) & 0xff, (x) & 0xff
647
648/* Option vector bits - generic bits in byte 1 */
649#define OV_IGNORE 0x80 /* ignore this vector */
650#define OV_CESSATION_POLICY 0x40 /* halt if unsupported option present*/
651
652/* Option vector 1: processor architectures supported */
653#define OV1_PPC_2_00 0x80 /* set if we support PowerPC 2.00 */
654#define OV1_PPC_2_01 0x40 /* set if we support PowerPC 2.01 */
655#define OV1_PPC_2_02 0x20 /* set if we support PowerPC 2.02 */
656#define OV1_PPC_2_03 0x10 /* set if we support PowerPC 2.03 */
657#define OV1_PPC_2_04 0x08 /* set if we support PowerPC 2.04 */
658#define OV1_PPC_2_05 0x04 /* set if we support PowerPC 2.05 */
Joel Schopp0cb99012008-06-19 06:23:23 +1000659#define OV1_PPC_2_06 0x02 /* set if we support PowerPC 2.06 */
Michael Neulingdf77c792012-11-08 20:23:11 +0000660#define OV1_PPC_2_07 0x01 /* set if we support PowerPC 2.07 */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000661
662/* Option vector 2: Open Firmware options supported */
663#define OV2_REAL_MODE 0x20 /* set if we want OF in real mode */
664
665/* Option vector 3: processor options supported */
666#define OV3_FP 0x80 /* floating point */
667#define OV3_VMX 0x40 /* VMX/Altivec */
Paul Mackerras974a76f2006-11-10 20:38:53 +1100668#define OV3_DFP 0x20 /* decimal FP */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000669
Robert Jennings404e32e2012-05-10 08:55:49 +0000670/* Option vector 4: IBM PAPR implementation */
671#define OV4_MIN_ENT_CAP 0x01 /* minimum VP entitled capacity */
672
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000673/* Option vector 5: PAPR/OF options supported */
674#define OV5_LPAR 0x80 /* logical partitioning supported */
675#define OV5_SPLPAR 0x40 /* shared-processor LPAR supported */
676/* ibm,dynamic-reconfiguration-memory property supported */
677#define OV5_DRCONF_MEMORY 0x20
678#define OV5_LARGE_PAGES 0x10 /* large pages supported */
Jake Moilanend8c391a2007-06-08 07:27:11 +1000679#define OV5_DONATE_DEDICATE_CPU 0x02 /* donate dedicated CPU support */
Michael Ellerman014dad92007-05-08 12:58:35 +1000680/* PCIe/MSI support. Without MSI full PCIe is not supported */
681#ifdef CONFIG_PCI_MSI
682#define OV5_MSI 0x01 /* PCIe/MSI support */
683#else
684#define OV5_MSI 0x00
685#endif /* CONFIG_PCI_MSI */
Nathan Fontenot8391e422008-07-24 04:36:38 +1000686#ifdef CONFIG_PPC_SMLPAR
687#define OV5_CMO 0x80 /* Cooperative Memory Overcommitment */
Brian King9ee820f2011-05-04 16:01:20 +1000688#define OV5_XCMO 0x40 /* Page Coalescing */
Nathan Fontenot8391e422008-07-24 04:36:38 +1000689#else
690#define OV5_CMO 0x00
Brian King9ee820f2011-05-04 16:01:20 +1000691#define OV5_XCMO 0x00
Nathan Fontenot8391e422008-07-24 04:36:38 +1000692#endif
Anton Blanchard4b83c332010-04-07 15:33:44 +0000693#define OV5_TYPE1_AFFINITY 0x80 /* Type 1 NUMA affinity */
Kent Yoder828d2b52012-04-12 05:17:51 +0000694#define OV5_PFO_HW_RNG 0x80 /* PFO Random Number Generator */
Seth Jenningsda29aa82012-07-19 09:42:39 -0500695#define OV5_PFO_HW_842 0x40 /* PFO Compression Accelerator */
Kent Yoder7e3a4fa2012-04-12 05:39:35 +0000696#define OV5_PFO_HW_ENCR 0x20 /* PFO Encryption Accelerator */
Michael Neulingdf77c792012-11-08 20:23:11 +0000697#define OV5_SUB_PROCESSORS 0x01 /* 1,2,or 4 Sub-Processors supported */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000698
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000699/* Option Vector 6: IBM PAPR hints */
700#define OV6_LINUX 0x02 /* Linux is our OS */
701
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000702/*
703 * The architecture vector has an array of PVR mask/value pairs,
704 * followed by # option vectors - 1, followed by the option vectors.
705 */
706static unsigned char ibm_architecture_vec[] = {
707 W(0xfffe0000), W(0x003a0000), /* POWER5/POWER5+ */
Anton Blanchard03054d52006-04-29 09:51:06 +1000708 W(0xffff0000), W(0x003e0000), /* POWER6 */
Michael Neulinge952e6c2008-06-18 10:47:26 +1000709 W(0xffff0000), W(0x003f0000), /* POWER7 */
Michael Neulingdf77c792012-11-08 20:23:11 +0000710 W(0xffff0000), W(0x004b0000), /* POWER8 */
711 W(0xffffffff), W(0x0f000004), /* all 2.07-compliant */
Joel Schopp0cb99012008-06-19 06:23:23 +1000712 W(0xffffffff), W(0x0f000003), /* all 2.06-compliant */
Paul Mackerras0efbc182006-11-29 22:31:47 +1100713 W(0xffffffff), W(0x0f000002), /* all 2.05-compliant */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000714 W(0xfffffffe), W(0x0f000001), /* all 2.04-compliant and earlier */
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000715 6 - 1, /* 6 option vectors */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000716
717 /* option vector 1: processor architectures supported */
Will Schmidt11e9ed42006-08-25 15:46:59 -0500718 3 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000719 0, /* don't ignore, don't halt */
720 OV1_PPC_2_00 | OV1_PPC_2_01 | OV1_PPC_2_02 | OV1_PPC_2_03 |
Michael Neulingdf77c792012-11-08 20:23:11 +0000721 OV1_PPC_2_04 | OV1_PPC_2_05 | OV1_PPC_2_06 | OV1_PPC_2_07,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000722
723 /* option vector 2: Open Firmware options supported */
Will Schmidt11e9ed42006-08-25 15:46:59 -0500724 34 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000725 OV2_REAL_MODE,
726 0, 0,
727 W(0xffffffff), /* real_base */
728 W(0xffffffff), /* real_size */
729 W(0xffffffff), /* virt_base */
730 W(0xffffffff), /* virt_size */
731 W(0xffffffff), /* load_base */
Anton Blanchard33392642011-12-04 13:13:58 +0000732 W(256), /* 256MB min RMA */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000733 W(0xffffffff), /* full client load */
734 0, /* min RMA percentage of total RAM */
735 48, /* max log_2(hash table size) */
736
737 /* option vector 3: processor options supported */
Will Schmidt11e9ed42006-08-25 15:46:59 -0500738 3 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000739 0, /* don't ignore, don't halt */
Paul Mackerras974a76f2006-11-10 20:38:53 +1100740 OV3_FP | OV3_VMX | OV3_DFP,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000741
742 /* option vector 4: IBM PAPR implementation */
Robert Jennings404e32e2012-05-10 08:55:49 +0000743 3 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000744 0, /* don't halt */
Robert Jennings404e32e2012-05-10 08:55:49 +0000745 OV4_MIN_ENT_CAP, /* minimum VP entitled capacity */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000746
747 /* option vector 5: PAPR/OF options */
Michael Neulingdf77c792012-11-08 20:23:11 +0000748 19 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000749 0, /* don't ignore, don't halt */
Jake Moilanend8c391a2007-06-08 07:27:11 +1000750 OV5_LPAR | OV5_SPLPAR | OV5_LARGE_PAGES | OV5_DRCONF_MEMORY |
751 OV5_DONATE_DEDICATE_CPU | OV5_MSI,
Nathan Fontenot8391e422008-07-24 04:36:38 +1000752 0,
Brian King9ee820f2011-05-04 16:01:20 +1000753 OV5_CMO | OV5_XCMO,
Anton Blanchard4b83c332010-04-07 15:33:44 +0000754 OV5_TYPE1_AFFINITY,
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000755 0,
756 0,
757 0,
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100758 /* WARNING: The offset of the "number of cores" field below
759 * must match by the macro below. Update the definition if
760 * the structure layout changes.
761 */
Michael Neulingdf77c792012-11-08 20:23:11 +0000762#define IBM_ARCH_VEC_NRCORES_OFFSET 117
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100763 W(NR_CPUS), /* number of cores supported */
Kent Yoder828d2b52012-04-12 05:17:51 +0000764 0,
765 0,
766 0,
767 0,
Seth Jenningsda29aa82012-07-19 09:42:39 -0500768 OV5_PFO_HW_RNG | OV5_PFO_HW_ENCR | OV5_PFO_HW_842,
Michael Neulingdf77c792012-11-08 20:23:11 +0000769 OV5_SUB_PROCESSORS,
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000770 /* option vector 6: IBM PAPR hints */
771 4 - 2, /* length */
772 0,
773 0,
774 OV6_LINUX,
775
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000776};
777
778/* Old method - ELF header with PT_NOTE sections */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000779static struct fake_elf {
780 Elf32_Ehdr elfhdr;
781 Elf32_Phdr phdr[2];
782 struct chrpnote {
783 u32 namesz;
784 u32 descsz;
785 u32 type;
786 char name[8]; /* "PowerPC" */
787 struct chrpdesc {
788 u32 real_mode;
789 u32 real_base;
790 u32 real_size;
791 u32 virt_base;
792 u32 virt_size;
793 u32 load_base;
794 } chrpdesc;
795 } chrpnote;
796 struct rpanote {
797 u32 namesz;
798 u32 descsz;
799 u32 type;
800 char name[24]; /* "IBM,RPA-Client-Config" */
801 struct rpadesc {
802 u32 lpar_affinity;
803 u32 min_rmo_size;
804 u32 min_rmo_percent;
805 u32 max_pft_size;
806 u32 splpar;
807 u32 min_load;
808 u32 new_mem_def;
809 u32 ignore_me;
810 } rpadesc;
811 } rpanote;
Paul Mackerras5663a122008-10-31 22:27:17 +1100812} fake_elf = {
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000813 .elfhdr = {
814 .e_ident = { 0x7f, 'E', 'L', 'F',
815 ELFCLASS32, ELFDATA2MSB, EV_CURRENT },
816 .e_type = ET_EXEC, /* yeah right */
817 .e_machine = EM_PPC,
818 .e_version = EV_CURRENT,
819 .e_phoff = offsetof(struct fake_elf, phdr),
820 .e_phentsize = sizeof(Elf32_Phdr),
821 .e_phnum = 2
822 },
823 .phdr = {
824 [0] = {
825 .p_type = PT_NOTE,
826 .p_offset = offsetof(struct fake_elf, chrpnote),
827 .p_filesz = sizeof(struct chrpnote)
828 }, [1] = {
829 .p_type = PT_NOTE,
830 .p_offset = offsetof(struct fake_elf, rpanote),
831 .p_filesz = sizeof(struct rpanote)
832 }
833 },
834 .chrpnote = {
835 .namesz = sizeof("PowerPC"),
836 .descsz = sizeof(struct chrpdesc),
837 .type = 0x1275,
838 .name = "PowerPC",
839 .chrpdesc = {
840 .real_mode = ~0U, /* ~0 means "don't care" */
841 .real_base = ~0U,
842 .real_size = ~0U,
843 .virt_base = ~0U,
844 .virt_size = ~0U,
845 .load_base = ~0U
846 },
847 },
848 .rpanote = {
849 .namesz = sizeof("IBM,RPA-Client-Config"),
850 .descsz = sizeof(struct rpadesc),
851 .type = 0x12759999,
852 .name = "IBM,RPA-Client-Config",
853 .rpadesc = {
Paul Mackerras5663a122008-10-31 22:27:17 +1100854 .lpar_affinity = 0,
855 .min_rmo_size = 64, /* in megabytes */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000856 .min_rmo_percent = 0,
Paul Mackerras5663a122008-10-31 22:27:17 +1100857 .max_pft_size = 48, /* 2^48 bytes max PFT size */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000858 .splpar = 1,
859 .min_load = ~0U,
Paul Mackerras5663a122008-10-31 22:27:17 +1100860 .new_mem_def = 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000861 }
862 }
863};
864
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100865static int __init prom_count_smt_threads(void)
866{
867 phandle node;
868 char type[64];
869 unsigned int plen;
870
871 /* Pick up th first CPU node we can find */
872 for (node = 0; prom_next_node(&node); ) {
873 type[0] = 0;
874 prom_getprop(node, "device_type", type, sizeof(type));
875
Anton Blanchard5827d412012-11-26 17:40:03 +0000876 if (strcmp(type, "cpu"))
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100877 continue;
878 /*
879 * There is an entry for each smt thread, each entry being
880 * 4 bytes long. All cpus should have the same number of
881 * smt threads, so return after finding the first.
882 */
883 plen = prom_getproplen(node, "ibm,ppc-interrupt-server#s");
884 if (plen == PROM_ERROR)
885 break;
886 plen >>= 2;
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000887 prom_debug("Found %lu smt threads per core\n", (unsigned long)plen);
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100888
889 /* Sanity check */
890 if (plen < 1 || plen > 64) {
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000891 prom_printf("Threads per core %lu out of bounds, assuming 1\n",
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100892 (unsigned long)plen);
893 return 1;
894 }
895 return plen;
896 }
897 prom_debug("No threads found, assuming 1 per core\n");
898
899 return 1;
900
901}
902
903
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000904static void __init prom_send_capabilities(void)
905{
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000906 ihandle elfloader, root;
907 prom_arg_t ret;
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100908 u32 *cores;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000909
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000910 root = call_prom("open", 1, 1, ADDR("/"));
911 if (root != 0) {
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100912 /* We need to tell the FW about the number of cores we support.
913 *
914 * To do that, we count the number of threads on the first core
915 * (we assume this is the same for all cores) and use it to
916 * divide NR_CPUS.
917 */
Anton Blanchard5ac47f72012-11-26 17:39:03 +0000918 cores = (u32 *)&ibm_architecture_vec[IBM_ARCH_VEC_NRCORES_OFFSET];
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100919 if (*cores != NR_CPUS) {
920 prom_printf("WARNING ! "
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000921 "ibm_architecture_vec structure inconsistent: %lu!\n",
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100922 *cores);
923 } else {
Anton Blanchard33ad5e42010-06-17 14:33:06 +0000924 *cores = DIV_ROUND_UP(NR_CPUS, prom_count_smt_threads());
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000925 prom_printf("Max number of cores passed to firmware: %lu (NR_CPUS = %lu)\n",
926 *cores, NR_CPUS);
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100927 }
928
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000929 /* try calling the ibm,client-architecture-support method */
Anton Blanchard049d0492009-09-21 20:47:39 +0000930 prom_printf("Calling ibm,client-architecture-support...");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000931 if (call_prom_ret("call-method", 3, 2, &ret,
932 ADDR("ibm,client-architecture-support"),
Benjamin Herrenschmidt33b74972006-06-07 12:01:32 +1000933 root,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000934 ADDR(ibm_architecture_vec)) == 0) {
935 /* the call exists... */
936 if (ret)
Anton Blanchard4da727a2009-03-31 20:06:14 +0000937 prom_printf("\nWARNING: ibm,client-architecture"
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000938 "-support call FAILED!\n");
939 call_prom("close", 1, 0, root);
Anton Blanchard4da727a2009-03-31 20:06:14 +0000940 prom_printf(" done\n");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000941 return;
942 }
943 call_prom("close", 1, 0, root);
Anton Blanchard049d0492009-09-21 20:47:39 +0000944 prom_printf(" not implemented\n");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000945 }
946
947 /* no ibm,client-architecture-support call, try the old way */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000948 elfloader = call_prom("open", 1, 1, ADDR("/packages/elf-loader"));
949 if (elfloader == 0) {
950 prom_printf("couldn't open /packages/elf-loader\n");
951 return;
952 }
953 call_prom("call-method", 3, 1, ADDR("process-elf-header"),
954 elfloader, ADDR(&fake_elf));
955 call_prom("close", 1, 0, elfloader);
956}
957#endif
958
959/*
960 * Memory allocation strategy... our layout is normally:
961 *
962 * at 14Mb or more we have vmlinux, then a gap and initrd. In some
963 * rare cases, initrd might end up being before the kernel though.
964 * We assume this won't override the final kernel at 0, we have no
965 * provision to handle that in this version, but it should hopefully
966 * never happen.
967 *
968 * alloc_top is set to the top of RMO, eventually shrink down if the
969 * TCEs overlap
970 *
971 * alloc_bottom is set to the top of kernel/initrd
972 *
973 * from there, allocations are done this way : rtas is allocated
974 * topmost, and the device-tree is allocated from the bottom. We try
975 * to grow the device-tree allocation as we progress. If we can't,
976 * then we fail, we don't currently have a facility to restart
977 * elsewhere, but that shouldn't be necessary.
978 *
979 * Note that calls to reserve_mem have to be done explicitly, memory
980 * allocated with either alloc_up or alloc_down isn't automatically
981 * reserved.
982 */
983
984
985/*
986 * Allocates memory in the RMO upward from the kernel/initrd
987 *
988 * When align is 0, this is a special case, it means to allocate in place
989 * at the current location of alloc_bottom or fail (that is basically
990 * extending the previous allocation). Used for the device-tree flattening
991 */
992static unsigned long __init alloc_up(unsigned long size, unsigned long align)
993{
Anton Blanchard5827d412012-11-26 17:40:03 +0000994 unsigned long base = alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000995 unsigned long addr = 0;
996
Paul Mackerrasc49888202005-10-26 21:52:53 +1000997 if (align)
998 base = _ALIGN_UP(base, align);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000999 prom_debug("alloc_up(%x, %x)\n", size, align);
Anton Blanchard5827d412012-11-26 17:40:03 +00001000 if (ram_top == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001001 prom_panic("alloc_up() called with mem not initialized\n");
1002
1003 if (align)
Anton Blanchard5827d412012-11-26 17:40:03 +00001004 base = _ALIGN_UP(alloc_bottom, align);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001005 else
Anton Blanchard5827d412012-11-26 17:40:03 +00001006 base = alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001007
Anton Blanchard5827d412012-11-26 17:40:03 +00001008 for(; (base + size) <= alloc_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001009 base = _ALIGN_UP(base + 0x100000, align)) {
1010 prom_debug(" trying: 0x%x\n\r", base);
1011 addr = (unsigned long)prom_claim(base, size, 0);
Paul Mackerrasc49888202005-10-26 21:52:53 +10001012 if (addr != PROM_ERROR && addr != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001013 break;
1014 addr = 0;
1015 if (align == 0)
1016 break;
1017 }
1018 if (addr == 0)
1019 return 0;
Anton Blanchard5827d412012-11-26 17:40:03 +00001020 alloc_bottom = addr + size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001021
1022 prom_debug(" -> %x\n", addr);
Anton Blanchard5827d412012-11-26 17:40:03 +00001023 prom_debug(" alloc_bottom : %x\n", alloc_bottom);
1024 prom_debug(" alloc_top : %x\n", alloc_top);
1025 prom_debug(" alloc_top_hi : %x\n", alloc_top_high);
1026 prom_debug(" rmo_top : %x\n", rmo_top);
1027 prom_debug(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001028
1029 return addr;
1030}
1031
1032/*
1033 * Allocates memory downward, either from top of RMO, or if highmem
1034 * is set, from the top of RAM. Note that this one doesn't handle
1035 * failures. It does claim memory if highmem is not set.
1036 */
1037static unsigned long __init alloc_down(unsigned long size, unsigned long align,
1038 int highmem)
1039{
1040 unsigned long base, addr = 0;
1041
1042 prom_debug("alloc_down(%x, %x, %s)\n", size, align,
Anton Blanchard5827d412012-11-26 17:40:03 +00001043 highmem ? "(high)" : "(low)");
1044 if (ram_top == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001045 prom_panic("alloc_down() called with mem not initialized\n");
1046
1047 if (highmem) {
1048 /* Carve out storage for the TCE table. */
Anton Blanchard5827d412012-11-26 17:40:03 +00001049 addr = _ALIGN_DOWN(alloc_top_high - size, align);
1050 if (addr <= alloc_bottom)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001051 return 0;
1052 /* Will we bump into the RMO ? If yes, check out that we
1053 * didn't overlap existing allocations there, if we did,
1054 * we are dead, we must be the first in town !
1055 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001056 if (addr < rmo_top) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001057 /* Good, we are first */
Anton Blanchard5827d412012-11-26 17:40:03 +00001058 if (alloc_top == rmo_top)
1059 alloc_top = rmo_top = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001060 else
1061 return 0;
1062 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001063 alloc_top_high = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001064 goto bail;
1065 }
1066
Anton Blanchard5827d412012-11-26 17:40:03 +00001067 base = _ALIGN_DOWN(alloc_top - size, align);
1068 for (; base > alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001069 base = _ALIGN_DOWN(base - 0x100000, align)) {
1070 prom_debug(" trying: 0x%x\n\r", base);
1071 addr = (unsigned long)prom_claim(base, size, 0);
Paul Mackerrasc49888202005-10-26 21:52:53 +10001072 if (addr != PROM_ERROR && addr != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001073 break;
1074 addr = 0;
1075 }
1076 if (addr == 0)
1077 return 0;
Anton Blanchard5827d412012-11-26 17:40:03 +00001078 alloc_top = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001079
1080 bail:
1081 prom_debug(" -> %x\n", addr);
Anton Blanchard5827d412012-11-26 17:40:03 +00001082 prom_debug(" alloc_bottom : %x\n", alloc_bottom);
1083 prom_debug(" alloc_top : %x\n", alloc_top);
1084 prom_debug(" alloc_top_hi : %x\n", alloc_top_high);
1085 prom_debug(" rmo_top : %x\n", rmo_top);
1086 prom_debug(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001087
1088 return addr;
1089}
1090
1091/*
1092 * Parse a "reg" cell
1093 */
1094static unsigned long __init prom_next_cell(int s, cell_t **cellp)
1095{
1096 cell_t *p = *cellp;
1097 unsigned long r = 0;
1098
1099 /* Ignore more than 2 cells */
1100 while (s > sizeof(unsigned long) / 4) {
1101 p++;
1102 s--;
1103 }
1104 r = *p++;
1105#ifdef CONFIG_PPC64
Paul Mackerras35499c02005-10-22 16:02:39 +10001106 if (s > 1) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001107 r <<= 32;
1108 r |= *(p++);
1109 }
1110#endif
1111 *cellp = p;
1112 return r;
1113}
1114
1115/*
1116 * Very dumb function for adding to the memory reserve list, but
1117 * we don't need anything smarter at this point
1118 *
1119 * XXX Eventually check for collisions. They should NEVER happen.
1120 * If problems seem to show up, it would be a good start to track
1121 * them down.
1122 */
Michael Ellerman0108d3f2007-05-07 15:58:28 +10001123static void __init reserve_mem(u64 base, u64 size)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001124{
Kumar Galacbbcf342006-01-11 17:57:13 -06001125 u64 top = base + size;
Anton Blanchard5827d412012-11-26 17:40:03 +00001126 unsigned long cnt = mem_reserve_cnt;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001127
1128 if (size == 0)
1129 return;
1130
1131 /* We need to always keep one empty entry so that we
1132 * have our terminator with "size" set to 0 since we are
1133 * dumb and just copy this entire array to the boot params
1134 */
1135 base = _ALIGN_DOWN(base, PAGE_SIZE);
1136 top = _ALIGN_UP(top, PAGE_SIZE);
1137 size = top - base;
1138
1139 if (cnt >= (MEM_RESERVE_MAP_SIZE - 1))
1140 prom_panic("Memory reserve map exhausted !\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001141 mem_reserve_map[cnt].base = base;
1142 mem_reserve_map[cnt].size = size;
1143 mem_reserve_cnt = cnt + 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001144}
1145
1146/*
Adrian Bunkb3c2ffd2006-06-30 18:20:44 +02001147 * Initialize memory allocation mechanism, parse "memory" nodes and
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001148 * obtain that way the top of memory and RMO to setup out local allocator
1149 */
1150static void __init prom_init_mem(void)
1151{
1152 phandle node;
1153 char *path, type[64];
1154 unsigned int plen;
1155 cell_t *p, *endp;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001156 u32 rac, rsc;
1157
1158 /*
1159 * We iterate the memory nodes to find
1160 * 1) top of RMO (first node)
1161 * 2) top of memory
1162 */
1163 rac = 2;
Anton Blanchard5827d412012-11-26 17:40:03 +00001164 prom_getprop(prom.root, "#address-cells", &rac, sizeof(rac));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001165 rsc = 1;
Anton Blanchard5827d412012-11-26 17:40:03 +00001166 prom_getprop(prom.root, "#size-cells", &rsc, sizeof(rsc));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001167 prom_debug("root_addr_cells: %x\n", (unsigned long) rac);
1168 prom_debug("root_size_cells: %x\n", (unsigned long) rsc);
1169
1170 prom_debug("scanning memory:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001171 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001172
1173 for (node = 0; prom_next_node(&node); ) {
1174 type[0] = 0;
1175 prom_getprop(node, "device_type", type, sizeof(type));
1176
Paul Mackerrasc49888202005-10-26 21:52:53 +10001177 if (type[0] == 0) {
1178 /*
1179 * CHRP Longtrail machines have no device_type
1180 * on the memory node, so check the name instead...
1181 */
1182 prom_getprop(node, "name", type, sizeof(type));
1183 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001184 if (strcmp(type, "memory"))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001185 continue;
Paul Mackerrasc49888202005-10-26 21:52:53 +10001186
Anton Blanchard5827d412012-11-26 17:40:03 +00001187 plen = prom_getprop(node, "reg", regbuf, sizeof(regbuf));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001188 if (plen > sizeof(regbuf)) {
1189 prom_printf("memory node too large for buffer !\n");
1190 plen = sizeof(regbuf);
1191 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001192 p = regbuf;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001193 endp = p + (plen / sizeof(cell_t));
1194
1195#ifdef DEBUG_PROM
1196 memset(path, 0, PROM_SCRATCH_SIZE);
1197 call_prom("package-to-path", 3, 1, node, path, PROM_SCRATCH_SIZE-1);
1198 prom_debug(" node %s :\n", path);
1199#endif /* DEBUG_PROM */
1200
1201 while ((endp - p) >= (rac + rsc)) {
1202 unsigned long base, size;
1203
1204 base = prom_next_cell(rac, &p);
1205 size = prom_next_cell(rsc, &p);
1206
1207 if (size == 0)
1208 continue;
1209 prom_debug(" %x %x\n", base, size);
Anton Blanchard5827d412012-11-26 17:40:03 +00001210 if (base == 0 && (of_platform & PLATFORM_LPAR))
1211 rmo_top = size;
1212 if ((base + size) > ram_top)
1213 ram_top = base + size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001214 }
1215 }
1216
Anton Blanchard5827d412012-11-26 17:40:03 +00001217 alloc_bottom = PAGE_ALIGN((unsigned long)&_end + 0x4000);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001218
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001219 /*
Benjamin Krillcf687872009-07-27 22:02:39 +00001220 * If prom_memory_limit is set we reduce the upper limits *except* for
1221 * alloc_top_high. This must be the real top of RAM so we can put
1222 * TCE's up there.
1223 */
1224
Anton Blanchard5827d412012-11-26 17:40:03 +00001225 alloc_top_high = ram_top;
Benjamin Krillcf687872009-07-27 22:02:39 +00001226
Anton Blanchard5827d412012-11-26 17:40:03 +00001227 if (prom_memory_limit) {
1228 if (prom_memory_limit <= alloc_bottom) {
Benjamin Krillcf687872009-07-27 22:02:39 +00001229 prom_printf("Ignoring mem=%x <= alloc_bottom.\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00001230 prom_memory_limit);
1231 prom_memory_limit = 0;
1232 } else if (prom_memory_limit >= ram_top) {
Benjamin Krillcf687872009-07-27 22:02:39 +00001233 prom_printf("Ignoring mem=%x >= ram_top.\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00001234 prom_memory_limit);
1235 prom_memory_limit = 0;
Benjamin Krillcf687872009-07-27 22:02:39 +00001236 } else {
Anton Blanchard5827d412012-11-26 17:40:03 +00001237 ram_top = prom_memory_limit;
1238 rmo_top = min(rmo_top, prom_memory_limit);
Benjamin Krillcf687872009-07-27 22:02:39 +00001239 }
1240 }
1241
1242 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001243 * Setup our top alloc point, that is top of RMO or top of
1244 * segment 0 when running non-LPAR.
1245 * Some RS64 machines have buggy firmware where claims up at
1246 * 1GB fail. Cap at 768MB as a workaround.
1247 * Since 768MB is plenty of room, and we need to cap to something
1248 * reasonable on 32-bit, cap at 768MB on all machines.
1249 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001250 if (!rmo_top)
1251 rmo_top = ram_top;
1252 rmo_top = min(0x30000000ul, rmo_top);
1253 alloc_top = rmo_top;
1254 alloc_top_high = ram_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001255
Paul Mackerras64968f62011-12-13 17:54:13 +00001256 /*
1257 * Check if we have an initrd after the kernel but still inside
1258 * the RMO. If we do move our bottom point to after it.
1259 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001260 if (prom_initrd_start &&
1261 prom_initrd_start < rmo_top &&
1262 prom_initrd_end > alloc_bottom)
1263 alloc_bottom = PAGE_ALIGN(prom_initrd_end);
Paul Mackerras64968f62011-12-13 17:54:13 +00001264
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001265 prom_printf("memory layout at init:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001266 prom_printf(" memory_limit : %x (16 MB aligned)\n", prom_memory_limit);
1267 prom_printf(" alloc_bottom : %x\n", alloc_bottom);
1268 prom_printf(" alloc_top : %x\n", alloc_top);
1269 prom_printf(" alloc_top_hi : %x\n", alloc_top_high);
1270 prom_printf(" rmo_top : %x\n", rmo_top);
1271 prom_printf(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001272}
1273
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001274static void __init prom_close_stdin(void)
1275{
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001276 ihandle val;
1277
Anton Blanchard5827d412012-11-26 17:40:03 +00001278 if (prom_getprop(prom.chosen, "stdin", &val, sizeof(val)) > 0)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001279 call_prom("close", 1, 0, val);
1280}
1281
1282#ifdef CONFIG_PPC_POWERNV
1283
1284static u64 __initdata prom_opal_size;
1285static u64 __initdata prom_opal_align;
1286static int __initdata prom_rtas_start_cpu;
1287static u64 __initdata prom_rtas_data;
1288static u64 __initdata prom_rtas_entry;
1289
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001290#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
1291static u64 __initdata prom_opal_base;
1292static u64 __initdata prom_opal_entry;
1293#endif
1294
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001295/* XXX Don't change this structure without updating opal-takeover.S */
1296static struct opal_secondary_data {
1297 s64 ack; /* 0 */
1298 u64 go; /* 8 */
1299 struct opal_takeover_args args; /* 16 */
1300} opal_secondary_data;
1301
1302extern char opal_secondary_entry;
1303
Li Zhong2cb387a2012-06-07 17:44:23 +00001304static void __init prom_query_opal(void)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001305{
1306 long rc;
1307
Benjamin Herrenschmidt76800572011-09-28 20:51:46 +00001308 /* We must not query for OPAL presence on a machine that
1309 * supports TNK takeover (970 blades), as this uses the same
1310 * h-call with different arguments and will crash
1311 */
1312 if (PHANDLE_VALID(call_prom("finddevice", 1, 1,
1313 ADDR("/tnk-memory-map")))) {
1314 prom_printf("TNK takeover detected, skipping OPAL check\n");
1315 return;
1316 }
1317
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001318 prom_printf("Querying for OPAL presence... ");
Anton Blanchard5827d412012-11-26 17:40:03 +00001319 rc = opal_query_takeover(&prom_opal_size,
1320 &prom_opal_align);
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001321 prom_debug("(rc = %ld) ", rc);
1322 if (rc != 0) {
1323 prom_printf("not there.\n");
1324 return;
1325 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001326 of_platform = PLATFORM_OPAL;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001327 prom_printf(" there !\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001328 prom_debug(" opal_size = 0x%lx\n", prom_opal_size);
1329 prom_debug(" opal_align = 0x%lx\n", prom_opal_align);
1330 if (prom_opal_align < 0x10000)
1331 prom_opal_align = 0x10000;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001332}
1333
1334static int prom_rtas_call(int token, int nargs, int nret, int *outputs, ...)
1335{
1336 struct rtas_args rtas_args;
1337 va_list list;
1338 int i;
1339
1340 rtas_args.token = token;
1341 rtas_args.nargs = nargs;
1342 rtas_args.nret = nret;
1343 rtas_args.rets = (rtas_arg_t *)&(rtas_args.args[nargs]);
1344 va_start(list, outputs);
1345 for (i = 0; i < nargs; ++i)
1346 rtas_args.args[i] = va_arg(list, rtas_arg_t);
1347 va_end(list);
1348
1349 for (i = 0; i < nret; ++i)
1350 rtas_args.rets[i] = 0;
1351
Anton Blanchard5827d412012-11-26 17:40:03 +00001352 opal_enter_rtas(&rtas_args, prom_rtas_data,
1353 prom_rtas_entry);
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001354
1355 if (nret > 1 && outputs != NULL)
1356 for (i = 0; i < nret-1; ++i)
1357 outputs[i] = rtas_args.rets[i+1];
1358 return (nret > 0)? rtas_args.rets[0]: 0;
1359}
1360
1361static void __init prom_opal_hold_cpus(void)
1362{
1363 int i, cnt, cpu, rc;
1364 long j;
1365 phandle node;
1366 char type[64];
1367 u32 servers[8];
Anton Blanchard5827d412012-11-26 17:40:03 +00001368 void *entry = (unsigned long *)&opal_secondary_entry;
1369 struct opal_secondary_data *data = &opal_secondary_data;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001370
1371 prom_debug("prom_opal_hold_cpus: start...\n");
1372 prom_debug(" - entry = 0x%x\n", entry);
1373 prom_debug(" - data = 0x%x\n", data);
1374
1375 data->ack = -1;
1376 data->go = 0;
1377
1378 /* look for cpus */
1379 for (node = 0; prom_next_node(&node); ) {
1380 type[0] = 0;
1381 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001382 if (strcmp(type, "cpu") != 0)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001383 continue;
1384
1385 /* Skip non-configured cpus. */
1386 if (prom_getprop(node, "status", type, sizeof(type)) > 0)
Anton Blanchard5827d412012-11-26 17:40:03 +00001387 if (strcmp(type, "okay") != 0)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001388 continue;
1389
1390 cnt = prom_getprop(node, "ibm,ppc-interrupt-server#s", servers,
1391 sizeof(servers));
1392 if (cnt == PROM_ERROR)
1393 break;
1394 cnt >>= 2;
1395 for (i = 0; i < cnt; i++) {
1396 cpu = servers[i];
1397 prom_debug("CPU %d ... ", cpu);
Anton Blanchard5827d412012-11-26 17:40:03 +00001398 if (cpu == prom.cpu) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001399 prom_debug("booted !\n");
1400 continue;
1401 }
1402 prom_debug("starting ... ");
1403
1404 /* Init the acknowledge var which will be reset by
1405 * the secondary cpu when it awakens from its OF
1406 * spinloop.
1407 */
1408 data->ack = -1;
Anton Blanchard5827d412012-11-26 17:40:03 +00001409 rc = prom_rtas_call(prom_rtas_start_cpu, 3, 1,
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001410 NULL, cpu, entry, data);
1411 prom_debug("rtas rc=%d ...", rc);
1412
1413 for (j = 0; j < 100000000 && data->ack == -1; j++) {
1414 HMT_low();
1415 mb();
1416 }
1417 HMT_medium();
1418 if (data->ack != -1)
1419 prom_debug("done, PIR=0x%x\n", data->ack);
1420 else
1421 prom_debug("timeout !\n");
1422 }
1423 }
1424 prom_debug("prom_opal_hold_cpus: end...\n");
1425}
1426
Li Zhong2cb387a2012-06-07 17:44:23 +00001427static void __init prom_opal_takeover(void)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001428{
Anton Blanchard5827d412012-11-26 17:40:03 +00001429 struct opal_secondary_data *data = &opal_secondary_data;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001430 struct opal_takeover_args *args = &data->args;
Anton Blanchard5827d412012-11-26 17:40:03 +00001431 u64 align = prom_opal_align;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001432 u64 top_addr, opal_addr;
1433
Anton Blanchard5827d412012-11-26 17:40:03 +00001434 args->k_image = (u64)_stext;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001435 args->k_size = _end - _stext;
1436 args->k_entry = 0;
1437 args->k_entry2 = 0x60;
1438
1439 top_addr = _ALIGN_UP(args->k_size, align);
1440
Anton Blanchard5827d412012-11-26 17:40:03 +00001441 if (prom_initrd_start != 0) {
1442 args->rd_image = prom_initrd_start;
1443 args->rd_size = prom_initrd_end - args->rd_image;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001444 args->rd_loc = top_addr;
1445 top_addr = _ALIGN_UP(args->rd_loc + args->rd_size, align);
1446 }
1447
1448 /* Pickup an address for the HAL. We want to go really high
1449 * up to avoid problem with future kexecs. On the other hand
1450 * we don't want to be all over the TCEs on P5IOC2 machines
1451 * which are going to be up there too. We assume the machine
1452 * has plenty of memory, and we ask for the HAL for now to
1453 * be just below the 1G point, or above the initrd
1454 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001455 opal_addr = _ALIGN_DOWN(0x40000000 - prom_opal_size, align);
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001456 if (opal_addr < top_addr)
1457 opal_addr = top_addr;
1458 args->hal_addr = opal_addr;
1459
Benjamin Herrenschmidt817c21a2011-09-19 17:44:56 +00001460 /* Copy the command line to the kernel image */
Anton Blanchard5827d412012-11-26 17:40:03 +00001461 strlcpy(boot_command_line, prom_cmd_line,
Benjamin Herrenschmidt817c21a2011-09-19 17:44:56 +00001462 COMMAND_LINE_SIZE);
1463
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001464 prom_debug(" k_image = 0x%lx\n", args->k_image);
1465 prom_debug(" k_size = 0x%lx\n", args->k_size);
1466 prom_debug(" k_entry = 0x%lx\n", args->k_entry);
1467 prom_debug(" k_entry2 = 0x%lx\n", args->k_entry2);
1468 prom_debug(" hal_addr = 0x%lx\n", args->hal_addr);
1469 prom_debug(" rd_image = 0x%lx\n", args->rd_image);
1470 prom_debug(" rd_size = 0x%lx\n", args->rd_size);
1471 prom_debug(" rd_loc = 0x%lx\n", args->rd_loc);
1472 prom_printf("Performing OPAL takeover,this can take a few minutes..\n");
1473 prom_close_stdin();
1474 mb();
1475 data->go = 1;
1476 for (;;)
1477 opal_do_takeover(args);
1478}
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001479
1480/*
1481 * Allocate room for and instantiate OPAL
1482 */
1483static void __init prom_instantiate_opal(void)
1484{
1485 phandle opal_node;
1486 ihandle opal_inst;
1487 u64 base, entry;
1488 u64 size = 0, align = 0x10000;
1489 u32 rets[2];
1490
1491 prom_debug("prom_instantiate_opal: start...\n");
1492
1493 opal_node = call_prom("finddevice", 1, 1, ADDR("/ibm,opal"));
1494 prom_debug("opal_node: %x\n", opal_node);
1495 if (!PHANDLE_VALID(opal_node))
1496 return;
1497
1498 prom_getprop(opal_node, "opal-runtime-size", &size, sizeof(size));
1499 if (size == 0)
1500 return;
1501 prom_getprop(opal_node, "opal-runtime-alignment", &align,
1502 sizeof(align));
1503
1504 base = alloc_down(size, align, 0);
1505 if (base == 0) {
1506 prom_printf("OPAL allocation failed !\n");
1507 return;
1508 }
1509
1510 opal_inst = call_prom("open", 1, 1, ADDR("/ibm,opal"));
1511 if (!IHANDLE_VALID(opal_inst)) {
1512 prom_printf("opening opal package failed (%x)\n", opal_inst);
1513 return;
1514 }
1515
1516 prom_printf("instantiating opal at 0x%x...", base);
1517
1518 if (call_prom_ret("call-method", 4, 3, rets,
1519 ADDR("load-opal-runtime"),
1520 opal_inst,
1521 base >> 32, base & 0xffffffff) != 0
1522 || (rets[0] == 0 && rets[1] == 0)) {
1523 prom_printf(" failed\n");
1524 return;
1525 }
1526 entry = (((u64)rets[0]) << 32) | rets[1];
1527
1528 prom_printf(" done\n");
1529
1530 reserve_mem(base, size);
1531
1532 prom_debug("opal base = 0x%x\n", base);
1533 prom_debug("opal align = 0x%x\n", align);
1534 prom_debug("opal entry = 0x%x\n", entry);
1535 prom_debug("opal size = 0x%x\n", (long)size);
1536
1537 prom_setprop(opal_node, "/ibm,opal", "opal-base-address",
1538 &base, sizeof(base));
1539 prom_setprop(opal_node, "/ibm,opal", "opal-entry-address",
1540 &entry, sizeof(entry));
1541
1542#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
Anton Blanchard5827d412012-11-26 17:40:03 +00001543 prom_opal_base = base;
1544 prom_opal_entry = entry;
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001545#endif
1546 prom_debug("prom_instantiate_opal: end...\n");
1547}
1548
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001549#endif /* CONFIG_PPC_POWERNV */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001550
1551/*
1552 * Allocate room for and instantiate RTAS
1553 */
1554static void __init prom_instantiate_rtas(void)
1555{
1556 phandle rtas_node;
1557 ihandle rtas_inst;
1558 u32 base, entry = 0;
1559 u32 size = 0;
1560
1561 prom_debug("prom_instantiate_rtas: start...\n");
1562
1563 rtas_node = call_prom("finddevice", 1, 1, ADDR("/rtas"));
1564 prom_debug("rtas_node: %x\n", rtas_node);
1565 if (!PHANDLE_VALID(rtas_node))
1566 return;
1567
1568 prom_getprop(rtas_node, "rtas-size", &size, sizeof(size));
1569 if (size == 0)
1570 return;
1571
1572 base = alloc_down(size, PAGE_SIZE, 0);
Anton Blanchard6d1e2c62011-11-14 12:55:47 +00001573 if (base == 0)
1574 prom_panic("Could not allocate memory for RTAS\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001575
1576 rtas_inst = call_prom("open", 1, 1, ADDR("/rtas"));
1577 if (!IHANDLE_VALID(rtas_inst)) {
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001578 prom_printf("opening rtas package failed (%x)\n", rtas_inst);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001579 return;
1580 }
1581
Anton Blanchard1f8737a2009-03-31 20:06:15 +00001582 prom_printf("instantiating rtas at 0x%x...", base);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001583
1584 if (call_prom_ret("call-method", 3, 2, &entry,
1585 ADDR("instantiate-rtas"),
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001586 rtas_inst, base) != 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001587 || entry == 0) {
1588 prom_printf(" failed\n");
1589 return;
1590 }
1591 prom_printf(" done\n");
1592
1593 reserve_mem(base, size);
1594
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001595 prom_setprop(rtas_node, "/rtas", "linux,rtas-base",
1596 &base, sizeof(base));
1597 prom_setprop(rtas_node, "/rtas", "linux,rtas-entry",
1598 &entry, sizeof(entry));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001599
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001600#ifdef CONFIG_PPC_POWERNV
1601 /* PowerVN takeover hack */
Anton Blanchard5827d412012-11-26 17:40:03 +00001602 prom_rtas_data = base;
1603 prom_rtas_entry = entry;
1604 prom_getprop(rtas_node, "start-cpu", &prom_rtas_start_cpu, 4);
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001605#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001606 prom_debug("rtas base = 0x%x\n", base);
1607 prom_debug("rtas entry = 0x%x\n", entry);
1608 prom_debug("rtas size = 0x%x\n", (long)size);
1609
1610 prom_debug("prom_instantiate_rtas: end...\n");
1611}
1612
1613#ifdef CONFIG_PPC64
1614/*
Ashley Lai4a727422012-08-14 18:34:57 -05001615 * Allocate room for and instantiate Stored Measurement Log (SML)
1616 */
1617static void __init prom_instantiate_sml(void)
1618{
1619 phandle ibmvtpm_node;
1620 ihandle ibmvtpm_inst;
1621 u32 entry = 0, size = 0;
1622 u64 base;
1623
1624 prom_debug("prom_instantiate_sml: start...\n");
1625
1626 ibmvtpm_node = call_prom("finddevice", 1, 1, ADDR("/ibm,vtpm"));
1627 prom_debug("ibmvtpm_node: %x\n", ibmvtpm_node);
1628 if (!PHANDLE_VALID(ibmvtpm_node))
1629 return;
1630
1631 ibmvtpm_inst = call_prom("open", 1, 1, ADDR("/ibm,vtpm"));
1632 if (!IHANDLE_VALID(ibmvtpm_inst)) {
1633 prom_printf("opening vtpm package failed (%x)\n", ibmvtpm_inst);
1634 return;
1635 }
1636
1637 if (call_prom_ret("call-method", 2, 2, &size,
1638 ADDR("sml-get-handover-size"),
1639 ibmvtpm_inst) != 0 || size == 0) {
1640 prom_printf("SML get handover size failed\n");
1641 return;
1642 }
1643
1644 base = alloc_down(size, PAGE_SIZE, 0);
1645 if (base == 0)
1646 prom_panic("Could not allocate memory for sml\n");
1647
1648 prom_printf("instantiating sml at 0x%x...", base);
1649
1650 if (call_prom_ret("call-method", 4, 2, &entry,
1651 ADDR("sml-handover"),
1652 ibmvtpm_inst, size, base) != 0 || entry == 0) {
1653 prom_printf("SML handover failed\n");
1654 return;
1655 }
1656 prom_printf(" done\n");
1657
1658 reserve_mem(base, size);
1659
1660 prom_setprop(ibmvtpm_node, "/ibm,vtpm", "linux,sml-base",
1661 &base, sizeof(base));
1662 prom_setprop(ibmvtpm_node, "/ibm,vtpm", "linux,sml-size",
1663 &size, sizeof(size));
1664
1665 prom_debug("sml base = 0x%x\n", base);
1666 prom_debug("sml size = 0x%x\n", (long)size);
1667
1668 prom_debug("prom_instantiate_sml: end...\n");
1669}
1670
1671/*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001672 * Allocate room for and initialize TCE tables
1673 */
1674static void __init prom_initialize_tce_table(void)
1675{
1676 phandle node;
1677 ihandle phb_node;
1678 char compatible[64], type[64], model[64];
Anton Blanchard5827d412012-11-26 17:40:03 +00001679 char *path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001680 u64 base, align;
1681 u32 minalign, minsize;
1682 u64 tce_entry, *tce_entryp;
1683 u64 local_alloc_top, local_alloc_bottom;
1684 u64 i;
1685
Anton Blanchard5827d412012-11-26 17:40:03 +00001686 if (prom_iommu_off)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001687 return;
1688
1689 prom_debug("starting prom_initialize_tce_table\n");
1690
1691 /* Cache current top of allocs so we reserve a single block */
Anton Blanchard5827d412012-11-26 17:40:03 +00001692 local_alloc_top = alloc_top_high;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001693 local_alloc_bottom = local_alloc_top;
1694
1695 /* Search all nodes looking for PHBs. */
1696 for (node = 0; prom_next_node(&node); ) {
1697 compatible[0] = 0;
1698 type[0] = 0;
1699 model[0] = 0;
1700 prom_getprop(node, "compatible",
1701 compatible, sizeof(compatible));
1702 prom_getprop(node, "device_type", type, sizeof(type));
1703 prom_getprop(node, "model", model, sizeof(model));
1704
Anton Blanchard5827d412012-11-26 17:40:03 +00001705 if ((type[0] == 0) || (strstr(type, "pci") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001706 continue;
1707
Linas Vepstase788ff12007-09-07 03:45:21 +10001708 /* Keep the old logic intact to avoid regression. */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001709 if (compatible[0] != 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +00001710 if ((strstr(compatible, "python") == NULL) &&
1711 (strstr(compatible, "Speedwagon") == NULL) &&
1712 (strstr(compatible, "Winnipeg") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001713 continue;
1714 } else if (model[0] != 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +00001715 if ((strstr(model, "ython") == NULL) &&
1716 (strstr(model, "peedwagon") == NULL) &&
1717 (strstr(model, "innipeg") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001718 continue;
1719 }
1720
1721 if (prom_getprop(node, "tce-table-minalign", &minalign,
1722 sizeof(minalign)) == PROM_ERROR)
1723 minalign = 0;
1724 if (prom_getprop(node, "tce-table-minsize", &minsize,
1725 sizeof(minsize)) == PROM_ERROR)
1726 minsize = 4UL << 20;
1727
1728 /*
1729 * Even though we read what OF wants, we just set the table
1730 * size to 4 MB. This is enough to map 2GB of PCI DMA space.
1731 * By doing this, we avoid the pitfalls of trying to DMA to
1732 * MMIO space and the DMA alias hole.
1733 *
1734 * On POWER4, firmware sets the TCE region by assuming
1735 * each TCE table is 8MB. Using this memory for anything
1736 * else will impact performance, so we always allocate 8MB.
1737 * Anton
1738 */
Michael Ellermand3dbeef2012-08-19 21:44:01 +00001739 if (pvr_version_is(PVR_POWER4) || pvr_version_is(PVR_POWER4p))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001740 minsize = 8UL << 20;
1741 else
1742 minsize = 4UL << 20;
1743
1744 /* Align to the greater of the align or size */
1745 align = max(minalign, minsize);
1746 base = alloc_down(minsize, align, 1);
1747 if (base == 0)
1748 prom_panic("ERROR, cannot find space for TCE table.\n");
1749 if (base < local_alloc_bottom)
1750 local_alloc_bottom = base;
1751
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001752 /* It seems OF doesn't null-terminate the path :-( */
Li Zefanaca71ef2007-11-05 13:21:56 +11001753 memset(path, 0, PROM_SCRATCH_SIZE);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001754 /* Call OF to setup the TCE hardware */
1755 if (call_prom("package-to-path", 3, 1, node,
1756 path, PROM_SCRATCH_SIZE-1) == PROM_ERROR) {
1757 prom_printf("package-to-path failed\n");
1758 }
1759
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001760 /* Save away the TCE table attributes for later use. */
1761 prom_setprop(node, path, "linux,tce-base", &base, sizeof(base));
1762 prom_setprop(node, path, "linux,tce-size", &minsize, sizeof(minsize));
1763
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001764 prom_debug("TCE table: %s\n", path);
1765 prom_debug("\tnode = 0x%x\n", node);
1766 prom_debug("\tbase = 0x%x\n", base);
1767 prom_debug("\tsize = 0x%x\n", minsize);
1768
1769 /* Initialize the table to have a one-to-one mapping
1770 * over the allocated size.
1771 */
Ingo Molnar2b931fb2009-01-06 13:56:52 +00001772 tce_entryp = (u64 *)base;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001773 for (i = 0; i < (minsize >> 3) ;tce_entryp++, i++) {
1774 tce_entry = (i << PAGE_SHIFT);
1775 tce_entry |= 0x3;
1776 *tce_entryp = tce_entry;
1777 }
1778
1779 prom_printf("opening PHB %s", path);
1780 phb_node = call_prom("open", 1, 1, path);
1781 if (phb_node == 0)
1782 prom_printf("... failed\n");
1783 else
1784 prom_printf("... done\n");
1785
1786 call_prom("call-method", 6, 0, ADDR("set-64-bit-addressing"),
1787 phb_node, -1, minsize,
1788 (u32) base, (u32) (base >> 32));
1789 call_prom("close", 1, 0, phb_node);
1790 }
1791
1792 reserve_mem(local_alloc_bottom, local_alloc_top - local_alloc_bottom);
1793
Michael Ellerman2babf5c2006-05-17 18:00:46 +10001794 /* These are only really needed if there is a memory limit in
1795 * effect, but we don't know so export them always. */
Anton Blanchard5827d412012-11-26 17:40:03 +00001796 prom_tce_alloc_start = local_alloc_bottom;
1797 prom_tce_alloc_end = local_alloc_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001798
1799 /* Flag the first invalid entry */
1800 prom_debug("ending prom_initialize_tce_table\n");
1801}
1802#endif
1803
1804/*
1805 * With CHRP SMP we need to use the OF to start the other processors.
1806 * We can't wait until smp_boot_cpus (the OF is trashed by then)
1807 * so we have to put the processors into a holding pattern controlled
1808 * by the kernel (not OF) before we destroy the OF.
1809 *
1810 * This uses a chunk of low memory, puts some holding pattern
1811 * code there and sends the other processors off to there until
1812 * smp_boot_cpus tells them to do something. The holding pattern
1813 * checks that address until its cpu # is there, when it is that
1814 * cpu jumps to __secondary_start(). smp_boot_cpus() takes care
1815 * of setting those values.
1816 *
1817 * We also use physical address 0x4 here to tell when a cpu
1818 * is in its holding pattern code.
1819 *
1820 * -- Cort
1821 */
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001822/*
1823 * We want to reference the copy of __secondary_hold_* in the
1824 * 0 - 0x100 address range
1825 */
1826#define LOW_ADDR(x) (((unsigned long) &(x)) & 0xff)
1827
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001828static void __init prom_hold_cpus(void)
1829{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001830 unsigned long i;
1831 unsigned int reg;
1832 phandle node;
1833 char type[64];
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001834 unsigned long *spinloop
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001835 = (void *) LOW_ADDR(__secondary_hold_spinloop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001836 unsigned long *acknowledge
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001837 = (void *) LOW_ADDR(__secondary_hold_acknowledge);
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001838 unsigned long secondary_hold = LOW_ADDR(__secondary_hold);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001839
1840 prom_debug("prom_hold_cpus: start...\n");
1841 prom_debug(" 1) spinloop = 0x%x\n", (unsigned long)spinloop);
1842 prom_debug(" 1) *spinloop = 0x%x\n", *spinloop);
1843 prom_debug(" 1) acknowledge = 0x%x\n",
1844 (unsigned long)acknowledge);
1845 prom_debug(" 1) *acknowledge = 0x%x\n", *acknowledge);
1846 prom_debug(" 1) secondary_hold = 0x%x\n", secondary_hold);
1847
1848 /* Set the common spinloop variable, so all of the secondary cpus
1849 * will block when they are awakened from their OF spinloop.
1850 * This must occur for both SMP and non SMP kernels, since OF will
1851 * be trashed when we move the kernel.
1852 */
1853 *spinloop = 0;
1854
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001855 /* look for cpus */
1856 for (node = 0; prom_next_node(&node); ) {
1857 type[0] = 0;
1858 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001859 if (strcmp(type, "cpu") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001860 continue;
1861
1862 /* Skip non-configured cpus. */
1863 if (prom_getprop(node, "status", type, sizeof(type)) > 0)
Anton Blanchard5827d412012-11-26 17:40:03 +00001864 if (strcmp(type, "okay") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001865 continue;
1866
1867 reg = -1;
1868 prom_getprop(node, "reg", &reg, sizeof(reg));
1869
Michael Neuling2c48a7d2010-07-27 18:26:21 +00001870 prom_debug("cpu hw idx = %lu\n", reg);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001871
1872 /* Init the acknowledge var which will be reset by
1873 * the secondary cpu when it awakens from its OF
1874 * spinloop.
1875 */
1876 *acknowledge = (unsigned long)-1;
1877
Anton Blanchard5827d412012-11-26 17:40:03 +00001878 if (reg != prom.cpu) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001879 /* Primary Thread of non-boot cpu or any thread */
Michael Neuling2c48a7d2010-07-27 18:26:21 +00001880 prom_printf("starting cpu hw idx %lu... ", reg);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001881 call_prom("start-cpu", 3, 0, node,
1882 secondary_hold, reg);
1883
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001884 for (i = 0; (i < 100000000) &&
1885 (*acknowledge == ((unsigned long)-1)); i++ )
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001886 mb();
1887
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001888 if (*acknowledge == reg)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001889 prom_printf("done\n");
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001890 else
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001891 prom_printf("failed: %x\n", *acknowledge);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001892 }
1893#ifdef CONFIG_SMP
1894 else
Michael Neuling2c48a7d2010-07-27 18:26:21 +00001895 prom_printf("boot cpu hw idx %lu\n", reg);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001896#endif /* CONFIG_SMP */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001897 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001898
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001899 prom_debug("prom_hold_cpus: end...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001900}
1901
1902
1903static void __init prom_init_client_services(unsigned long pp)
1904{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001905 /* Get a handle to the prom entry point before anything else */
Anton Blanchard5827d412012-11-26 17:40:03 +00001906 prom_entry = pp;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001907
1908 /* get a handle for the stdout device */
Anton Blanchard5827d412012-11-26 17:40:03 +00001909 prom.chosen = call_prom("finddevice", 1, 1, ADDR("/chosen"));
1910 if (!PHANDLE_VALID(prom.chosen))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001911 prom_panic("cannot find chosen"); /* msg won't be printed :( */
1912
1913 /* get device tree root */
Anton Blanchard5827d412012-11-26 17:40:03 +00001914 prom.root = call_prom("finddevice", 1, 1, ADDR("/"));
1915 if (!PHANDLE_VALID(prom.root))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001916 prom_panic("cannot find device tree root"); /* msg won't be printed :( */
Paul Mackerrasa575b802005-10-23 17:23:21 +10001917
Anton Blanchard5827d412012-11-26 17:40:03 +00001918 prom.mmumap = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001919}
1920
Paul Mackerrasa575b802005-10-23 17:23:21 +10001921#ifdef CONFIG_PPC32
1922/*
1923 * For really old powermacs, we need to map things we claim.
1924 * For that, we need the ihandle of the mmu.
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001925 * Also, on the longtrail, we need to work around other bugs.
Paul Mackerrasa575b802005-10-23 17:23:21 +10001926 */
1927static void __init prom_find_mmu(void)
1928{
Paul Mackerrasa575b802005-10-23 17:23:21 +10001929 phandle oprom;
1930 char version[64];
1931
1932 oprom = call_prom("finddevice", 1, 1, ADDR("/openprom"));
1933 if (!PHANDLE_VALID(oprom))
1934 return;
1935 if (prom_getprop(oprom, "model", version, sizeof(version)) <= 0)
1936 return;
1937 version[sizeof(version) - 1] = 0;
Paul Mackerrasa575b802005-10-23 17:23:21 +10001938 /* XXX might need to add other versions here */
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001939 if (strcmp(version, "Open Firmware, 1.0.5") == 0)
1940 of_workarounds = OF_WA_CLAIM;
1941 else if (strncmp(version, "FirmWorks,3.", 12) == 0) {
1942 of_workarounds = OF_WA_CLAIM | OF_WA_LONGTRAIL;
1943 call_prom("interpret", 1, 1, "dev /memory 0 to allow-reclaim");
1944 } else
Paul Mackerrasa575b802005-10-23 17:23:21 +10001945 return;
Anton Blanchard5827d412012-11-26 17:40:03 +00001946 prom.memory = call_prom("open", 1, 1, ADDR("/memory"));
1947 prom_getprop(prom.chosen, "mmu", &prom.mmumap,
1948 sizeof(prom.mmumap));
1949 if (!IHANDLE_VALID(prom.memory) || !IHANDLE_VALID(prom.mmumap))
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001950 of_workarounds &= ~OF_WA_CLAIM; /* hmmm */
Paul Mackerrasa575b802005-10-23 17:23:21 +10001951}
1952#else
1953#define prom_find_mmu()
1954#endif
1955
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001956static void __init prom_init_stdout(void)
1957{
Anton Blanchard5827d412012-11-26 17:40:03 +00001958 char *path = of_stdout_device;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001959 char type[16];
1960 u32 val;
1961
Anton Blanchard5827d412012-11-26 17:40:03 +00001962 if (prom_getprop(prom.chosen, "stdout", &val, sizeof(val)) <= 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001963 prom_panic("cannot find stdout");
1964
Anton Blanchard5827d412012-11-26 17:40:03 +00001965 prom.stdout = val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001966
1967 /* Get the full OF pathname of the stdout device */
1968 memset(path, 0, 256);
Anton Blanchard5827d412012-11-26 17:40:03 +00001969 call_prom("instance-to-path", 3, 1, prom.stdout, path, 255);
1970 val = call_prom("instance-to-package", 1, 1, prom.stdout);
1971 prom_setprop(prom.chosen, "/chosen", "linux,stdout-package",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001972 &val, sizeof(val));
Anton Blanchard5827d412012-11-26 17:40:03 +00001973 prom_printf("OF stdout device is: %s\n", of_stdout_device);
1974 prom_setprop(prom.chosen, "/chosen", "linux,stdout-path",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001975 path, strlen(path) + 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001976
1977 /* If it's a display, note it */
1978 memset(type, 0, sizeof(type));
1979 prom_getprop(val, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001980 if (strcmp(type, "display") == 0)
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001981 prom_setprop(val, path, "linux,boot-display", NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001982}
1983
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001984static int __init prom_find_machine_type(void)
1985{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001986 char compat[256];
1987 int len, i = 0;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +11001988#ifdef CONFIG_PPC64
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001989 phandle rtas;
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001990 int x;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +11001991#endif
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001992
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001993 /* Look for a PowerMac or a Cell */
Anton Blanchard5827d412012-11-26 17:40:03 +00001994 len = prom_getprop(prom.root, "compatible",
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001995 compat, sizeof(compat)-1);
1996 if (len > 0) {
1997 compat[len] = 0;
1998 while (i < len) {
1999 char *p = &compat[i];
2000 int sl = strlen(p);
2001 if (sl == 0)
2002 break;
Anton Blanchard5827d412012-11-26 17:40:03 +00002003 if (strstr(p, "Power Macintosh") ||
2004 strstr(p, "MacRISC"))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002005 return PLATFORM_POWERMAC;
Arnd Bergmann133dda12006-06-07 12:04:18 +10002006#ifdef CONFIG_PPC64
2007 /* We must make sure we don't detect the IBM Cell
2008 * blades as pSeries due to some firmware issues,
2009 * so we do it here.
2010 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002011 if (strstr(p, "IBM,CBEA") ||
2012 strstr(p, "IBM,CPBW-1.0"))
Arnd Bergmann133dda12006-06-07 12:04:18 +10002013 return PLATFORM_GENERIC;
2014#endif /* CONFIG_PPC64 */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002015 i += sl + 1;
2016 }
2017 }
2018#ifdef CONFIG_PPC64
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002019 /* Try to detect OPAL */
2020 if (PHANDLE_VALID(call_prom("finddevice", 1, 1, ADDR("/ibm,opal"))))
2021 return PLATFORM_OPAL;
2022
2023 /* Try to figure out if it's an IBM pSeries or any other
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002024 * PAPR compliant platform. We assume it is if :
2025 * - /device_type is "chrp" (please, do NOT use that for future
2026 * non-IBM designs !
2027 * - it has /rtas
2028 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002029 len = prom_getprop(prom.root, "device_type",
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002030 compat, sizeof(compat)-1);
2031 if (len <= 0)
2032 return PLATFORM_GENERIC;
Anton Blanchard5827d412012-11-26 17:40:03 +00002033 if (strcmp(compat, "chrp"))
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002034 return PLATFORM_GENERIC;
2035
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002036 /* Default to pSeries. We need to know if we are running LPAR */
2037 rtas = call_prom("finddevice", 1, 1, ADDR("/rtas"));
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002038 if (!PHANDLE_VALID(rtas))
2039 return PLATFORM_GENERIC;
2040 x = prom_getproplen(rtas, "ibm,hypertas-functions");
2041 if (x != PROM_ERROR) {
Anton Blanchard4da727a2009-03-31 20:06:14 +00002042 prom_debug("Hypertas detected, assuming LPAR !\n");
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002043 return PLATFORM_PSERIES_LPAR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002044 }
2045 return PLATFORM_PSERIES;
2046#else
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002047 return PLATFORM_GENERIC;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002048#endif
2049}
2050
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002051static int __init prom_set_color(ihandle ih, int i, int r, int g, int b)
2052{
2053 return call_prom("call-method", 6, 1, ADDR("color!"), ih, i, b, g, r);
2054}
2055
2056/*
2057 * If we have a display that we don't know how to drive,
2058 * we will want to try to execute OF's open method for it
2059 * later. However, OF will probably fall over if we do that
2060 * we've taken over the MMU.
2061 * So we check whether we will need to open the display,
2062 * and if so, open it now.
2063 */
2064static void __init prom_check_displays(void)
2065{
2066 char type[16], *path;
2067 phandle node;
2068 ihandle ih;
2069 int i;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002070
2071 static unsigned char default_colors[] = {
2072 0x00, 0x00, 0x00,
2073 0x00, 0x00, 0xaa,
2074 0x00, 0xaa, 0x00,
2075 0x00, 0xaa, 0xaa,
2076 0xaa, 0x00, 0x00,
2077 0xaa, 0x00, 0xaa,
2078 0xaa, 0xaa, 0x00,
2079 0xaa, 0xaa, 0xaa,
2080 0x55, 0x55, 0x55,
2081 0x55, 0x55, 0xff,
2082 0x55, 0xff, 0x55,
2083 0x55, 0xff, 0xff,
2084 0xff, 0x55, 0x55,
2085 0xff, 0x55, 0xff,
2086 0xff, 0xff, 0x55,
2087 0xff, 0xff, 0xff
2088 };
2089 const unsigned char *clut;
2090
Anton Blanchard4da727a2009-03-31 20:06:14 +00002091 prom_debug("Looking for displays\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002092 for (node = 0; prom_next_node(&node); ) {
2093 memset(type, 0, sizeof(type));
2094 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00002095 if (strcmp(type, "display") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002096 continue;
2097
2098 /* It seems OF doesn't null-terminate the path :-( */
Anton Blanchard5827d412012-11-26 17:40:03 +00002099 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002100 memset(path, 0, PROM_SCRATCH_SIZE);
2101
2102 /*
2103 * leave some room at the end of the path for appending extra
2104 * arguments
2105 */
2106 if (call_prom("package-to-path", 3, 1, node, path,
2107 PROM_SCRATCH_SIZE-10) == PROM_ERROR)
2108 continue;
Anton Blanchard1f8737a2009-03-31 20:06:15 +00002109 prom_printf("found display : %s, opening... ", path);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002110
2111 ih = call_prom("open", 1, 1, path);
2112 if (ih == 0) {
2113 prom_printf("failed\n");
2114 continue;
2115 }
2116
2117 /* Success */
2118 prom_printf("done\n");
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002119 prom_setprop(node, path, "linux,opened", NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002120
2121 /* Setup a usable color table when the appropriate
2122 * method is available. Should update this to set-colors */
Anton Blanchard5827d412012-11-26 17:40:03 +00002123 clut = default_colors;
Benjamin Herrenschmidt3f536382011-12-14 13:55:11 +00002124 for (i = 0; i < 16; i++, clut += 3)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002125 if (prom_set_color(ih, i, clut[0], clut[1],
2126 clut[2]) != 0)
2127 break;
2128
2129#ifdef CONFIG_LOGO_LINUX_CLUT224
Anton Blanchard5827d412012-11-26 17:40:03 +00002130 clut = PTRRELOC(logo_linux_clut224.clut);
2131 for (i = 0; i < logo_linux_clut224.clutsize; i++, clut += 3)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002132 if (prom_set_color(ih, i + 32, clut[0], clut[1],
2133 clut[2]) != 0)
2134 break;
2135#endif /* CONFIG_LOGO_LINUX_CLUT224 */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002136 }
2137}
2138
2139
2140/* Return (relocated) pointer to this much memory: moves initrd if reqd. */
2141static void __init *make_room(unsigned long *mem_start, unsigned long *mem_end,
2142 unsigned long needed, unsigned long align)
2143{
2144 void *ret;
2145
2146 *mem_start = _ALIGN(*mem_start, align);
2147 while ((*mem_start + needed) > *mem_end) {
2148 unsigned long room, chunk;
2149
2150 prom_debug("Chunk exhausted, claiming more at %x...\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002151 alloc_bottom);
2152 room = alloc_top - alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002153 if (room > DEVTREE_CHUNK_SIZE)
2154 room = DEVTREE_CHUNK_SIZE;
2155 if (room < PAGE_SIZE)
Anton Blanchardfbafd722011-07-25 20:47:51 +00002156 prom_panic("No memory for flatten_device_tree "
2157 "(no room)\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002158 chunk = alloc_up(room, 0);
2159 if (chunk == 0)
Anton Blanchardfbafd722011-07-25 20:47:51 +00002160 prom_panic("No memory for flatten_device_tree "
2161 "(claim failed)\n");
Anton Blanchard966728d2011-07-25 20:47:07 +00002162 *mem_end = chunk + room;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002163 }
2164
2165 ret = (void *)*mem_start;
2166 *mem_start += needed;
2167
2168 return ret;
2169}
2170
2171#define dt_push_token(token, mem_start, mem_end) \
2172 do { *((u32 *)make_room(mem_start, mem_end, 4, 4)) = token; } while(0)
2173
2174static unsigned long __init dt_find_string(char *str)
2175{
2176 char *s, *os;
2177
Anton Blanchard5827d412012-11-26 17:40:03 +00002178 s = os = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002179 s += 4;
Anton Blanchard5827d412012-11-26 17:40:03 +00002180 while (s < (char *)dt_string_end) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002181 if (strcmp(s, str) == 0)
2182 return s - os;
2183 s += strlen(s) + 1;
2184 }
2185 return 0;
2186}
2187
2188/*
2189 * The Open Firmware 1275 specification states properties must be 31 bytes or
2190 * less, however not all firmwares obey this. Make it 64 bytes to be safe.
2191 */
2192#define MAX_PROPERTY_NAME 64
2193
2194static void __init scan_dt_build_strings(phandle node,
2195 unsigned long *mem_start,
2196 unsigned long *mem_end)
2197{
2198 char *prev_name, *namep, *sstart;
2199 unsigned long soff;
2200 phandle child;
2201
Anton Blanchard5827d412012-11-26 17:40:03 +00002202 sstart = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002203
2204 /* get and store all property names */
Anton Blanchard5827d412012-11-26 17:40:03 +00002205 prev_name = "";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002206 for (;;) {
2207 /* 64 is max len of name including nul. */
2208 namep = make_room(mem_start, mem_end, MAX_PROPERTY_NAME, 1);
2209 if (call_prom("nextprop", 3, 1, node, prev_name, namep) != 1) {
2210 /* No more nodes: unwind alloc */
2211 *mem_start = (unsigned long)namep;
2212 break;
2213 }
2214
2215 /* skip "name" */
Anton Blanchard5827d412012-11-26 17:40:03 +00002216 if (strcmp(namep, "name") == 0) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002217 *mem_start = (unsigned long)namep;
Anton Blanchard5827d412012-11-26 17:40:03 +00002218 prev_name = "name";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002219 continue;
2220 }
2221 /* get/create string entry */
2222 soff = dt_find_string(namep);
2223 if (soff != 0) {
2224 *mem_start = (unsigned long)namep;
2225 namep = sstart + soff;
2226 } else {
2227 /* Trim off some if we can */
2228 *mem_start = (unsigned long)namep + strlen(namep) + 1;
Anton Blanchard5827d412012-11-26 17:40:03 +00002229 dt_string_end = *mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002230 }
2231 prev_name = namep;
2232 }
2233
2234 /* do all our children */
2235 child = call_prom("child", 1, 1, node);
2236 while (child != 0) {
2237 scan_dt_build_strings(child, mem_start, mem_end);
2238 child = call_prom("peer", 1, 1, child);
2239 }
2240}
2241
2242static void __init scan_dt_build_struct(phandle node, unsigned long *mem_start,
2243 unsigned long *mem_end)
2244{
2245 phandle child;
2246 char *namep, *prev_name, *sstart, *p, *ep, *lp, *path;
2247 unsigned long soff;
2248 unsigned char *valp;
2249 static char pname[MAX_PROPERTY_NAME];
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002250 int l, room, has_phandle = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002251
2252 dt_push_token(OF_DT_BEGIN_NODE, mem_start, mem_end);
2253
2254 /* get the node's full name */
2255 namep = (char *)*mem_start;
Paul Mackerrasc49888202005-10-26 21:52:53 +10002256 room = *mem_end - *mem_start;
2257 if (room > 255)
2258 room = 255;
2259 l = call_prom("package-to-path", 3, 1, node, namep, room);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002260 if (l >= 0) {
2261 /* Didn't fit? Get more room. */
Paul Mackerrasc49888202005-10-26 21:52:53 +10002262 if (l >= room) {
2263 if (l >= *mem_end - *mem_start)
2264 namep = make_room(mem_start, mem_end, l+1, 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002265 call_prom("package-to-path", 3, 1, node, namep, l);
2266 }
2267 namep[l] = '\0';
2268
2269 /* Fixup an Apple bug where they have bogus \0 chars in the
Paul Mackerrasa575b802005-10-23 17:23:21 +10002270 * middle of the path in some properties, and extract
2271 * the unit name (everything after the last '/').
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002272 */
Paul Mackerrasa575b802005-10-23 17:23:21 +10002273 for (lp = p = namep, ep = namep + l; p < ep; p++) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002274 if (*p == '/')
Paul Mackerrasa575b802005-10-23 17:23:21 +10002275 lp = namep;
2276 else if (*p != 0)
2277 *lp++ = *p;
2278 }
2279 *lp = 0;
2280 *mem_start = _ALIGN((unsigned long)lp + 1, 4);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002281 }
2282
2283 /* get it again for debugging */
Anton Blanchard5827d412012-11-26 17:40:03 +00002284 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002285 memset(path, 0, PROM_SCRATCH_SIZE);
2286 call_prom("package-to-path", 3, 1, node, path, PROM_SCRATCH_SIZE-1);
2287
2288 /* get and store all properties */
Anton Blanchard5827d412012-11-26 17:40:03 +00002289 prev_name = "";
2290 sstart = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002291 for (;;) {
2292 if (call_prom("nextprop", 3, 1, node, prev_name,
Anton Blanchard5827d412012-11-26 17:40:03 +00002293 pname) != 1)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002294 break;
2295
2296 /* skip "name" */
Anton Blanchard5827d412012-11-26 17:40:03 +00002297 if (strcmp(pname, "name") == 0) {
2298 prev_name = "name";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002299 continue;
2300 }
2301
2302 /* find string offset */
Anton Blanchard5827d412012-11-26 17:40:03 +00002303 soff = dt_find_string(pname);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002304 if (soff == 0) {
2305 prom_printf("WARNING: Can't find string index for"
Anton Blanchard5827d412012-11-26 17:40:03 +00002306 " <%s>, node %s\n", pname, path);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002307 break;
2308 }
2309 prev_name = sstart + soff;
2310
2311 /* get length */
Anton Blanchard5827d412012-11-26 17:40:03 +00002312 l = call_prom("getproplen", 2, 1, node, pname);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002313
2314 /* sanity checks */
2315 if (l == PROM_ERROR)
2316 continue;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002317
2318 /* push property head */
2319 dt_push_token(OF_DT_PROP, mem_start, mem_end);
2320 dt_push_token(l, mem_start, mem_end);
2321 dt_push_token(soff, mem_start, mem_end);
2322
2323 /* push property content */
2324 valp = make_room(mem_start, mem_end, l, 4);
Anton Blanchard5827d412012-11-26 17:40:03 +00002325 call_prom("getprop", 4, 1, node, pname, valp, l);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002326 *mem_start = _ALIGN(*mem_start, 4);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002327
Anton Blanchard5827d412012-11-26 17:40:03 +00002328 if (!strcmp(pname, "phandle"))
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002329 has_phandle = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002330 }
2331
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002332 /* Add a "linux,phandle" property if no "phandle" property already
2333 * existed (can happen with OPAL)
2334 */
2335 if (!has_phandle) {
Anton Blanchard5827d412012-11-26 17:40:03 +00002336 soff = dt_find_string("linux,phandle");
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002337 if (soff == 0)
2338 prom_printf("WARNING: Can't find string index for"
2339 " <linux-phandle> node %s\n", path);
2340 else {
2341 dt_push_token(OF_DT_PROP, mem_start, mem_end);
2342 dt_push_token(4, mem_start, mem_end);
2343 dt_push_token(soff, mem_start, mem_end);
2344 valp = make_room(mem_start, mem_end, 4, 4);
2345 *(u32 *)valp = node;
2346 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002347 }
2348
2349 /* do all our children */
2350 child = call_prom("child", 1, 1, node);
2351 while (child != 0) {
2352 scan_dt_build_struct(child, mem_start, mem_end);
2353 child = call_prom("peer", 1, 1, child);
2354 }
2355
2356 dt_push_token(OF_DT_END_NODE, mem_start, mem_end);
2357}
2358
2359static void __init flatten_device_tree(void)
2360{
2361 phandle root;
2362 unsigned long mem_start, mem_end, room;
2363 struct boot_param_header *hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002364 char *namep;
2365 u64 *rsvmap;
2366
2367 /*
2368 * Check how much room we have between alloc top & bottom (+/- a
Anton Blanchardfbafd722011-07-25 20:47:51 +00002369 * few pages), crop to 1MB, as this is our "chunk" size
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002370 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002371 room = alloc_top - alloc_bottom - 0x4000;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002372 if (room > DEVTREE_CHUNK_SIZE)
2373 room = DEVTREE_CHUNK_SIZE;
Anton Blanchard5827d412012-11-26 17:40:03 +00002374 prom_debug("starting device tree allocs at %x\n", alloc_bottom);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002375
2376 /* Now try to claim that */
2377 mem_start = (unsigned long)alloc_up(room, PAGE_SIZE);
2378 if (mem_start == 0)
2379 prom_panic("Can't allocate initial device-tree chunk\n");
Anton Blanchard966728d2011-07-25 20:47:07 +00002380 mem_end = mem_start + room;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002381
2382 /* Get root of tree */
2383 root = call_prom("peer", 1, 1, (phandle)0);
2384 if (root == (phandle)0)
2385 prom_panic ("couldn't get device tree root\n");
2386
2387 /* Build header and make room for mem rsv map */
2388 mem_start = _ALIGN(mem_start, 4);
2389 hdr = make_room(&mem_start, &mem_end,
2390 sizeof(struct boot_param_header), 4);
Anton Blanchard5827d412012-11-26 17:40:03 +00002391 dt_header_start = (unsigned long)hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002392 rsvmap = make_room(&mem_start, &mem_end, sizeof(mem_reserve_map), 8);
2393
2394 /* Start of strings */
2395 mem_start = PAGE_ALIGN(mem_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002396 dt_string_start = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002397 mem_start += 4; /* hole */
2398
2399 /* Add "linux,phandle" in there, we'll need it */
2400 namep = make_room(&mem_start, &mem_end, 16, 1);
Anton Blanchard5827d412012-11-26 17:40:03 +00002401 strcpy(namep, "linux,phandle");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002402 mem_start = (unsigned long)namep + strlen(namep) + 1;
2403
2404 /* Build string array */
2405 prom_printf("Building dt strings...\n");
2406 scan_dt_build_strings(root, &mem_start, &mem_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002407 dt_string_end = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002408
2409 /* Build structure */
2410 mem_start = PAGE_ALIGN(mem_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002411 dt_struct_start = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002412 prom_printf("Building dt structure...\n");
2413 scan_dt_build_struct(root, &mem_start, &mem_end);
2414 dt_push_token(OF_DT_END, &mem_start, &mem_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002415 dt_struct_end = PAGE_ALIGN(mem_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002416
2417 /* Finish header */
Anton Blanchard5827d412012-11-26 17:40:03 +00002418 hdr->boot_cpuid_phys = prom.cpu;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002419 hdr->magic = OF_DT_HEADER;
Anton Blanchard5827d412012-11-26 17:40:03 +00002420 hdr->totalsize = dt_struct_end - dt_header_start;
2421 hdr->off_dt_struct = dt_struct_start - dt_header_start;
2422 hdr->off_dt_strings = dt_string_start - dt_header_start;
2423 hdr->dt_strings_size = dt_string_end - dt_string_start;
2424 hdr->off_mem_rsvmap = ((unsigned long)rsvmap) - dt_header_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002425 hdr->version = OF_DT_VERSION;
2426 /* Version 16 is not backward compatible */
2427 hdr->last_comp_version = 0x10;
2428
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -05002429 /* Copy the reserve map in */
Anton Blanchard5827d412012-11-26 17:40:03 +00002430 memcpy(rsvmap, mem_reserve_map, sizeof(mem_reserve_map));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002431
2432#ifdef DEBUG_PROM
2433 {
2434 int i;
2435 prom_printf("reserved memory map:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00002436 for (i = 0; i < mem_reserve_cnt; i++)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002437 prom_printf(" %x - %x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002438 mem_reserve_map[i].base,
2439 mem_reserve_map[i].size);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002440 }
2441#endif
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -05002442 /* Bump mem_reserve_cnt to cause further reservations to fail
2443 * since it's too late.
2444 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002445 mem_reserve_cnt = MEM_RESERVE_MAP_SIZE;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002446
2447 prom_printf("Device tree strings 0x%x -> 0x%x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002448 dt_string_start, dt_string_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002449 prom_printf("Device tree struct 0x%x -> 0x%x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002450 dt_struct_start, dt_struct_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002451
2452}
2453
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002454#ifdef CONFIG_PPC_MAPLE
2455/* PIBS Version 1.05.0000 04/26/2005 has an incorrect /ht/isa/ranges property.
2456 * The values are bad, and it doesn't even have the right number of cells. */
2457static void __init fixup_device_tree_maple(void)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002458{
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002459 phandle isa;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002460 u32 rloc = 0x01002000; /* IO space; PCI device = 4 */
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002461 u32 isa_ranges[6];
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002462 char *name;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002463
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002464 name = "/ht@0/isa@4";
2465 isa = call_prom("finddevice", 1, 1, ADDR(name));
2466 if (!PHANDLE_VALID(isa)) {
2467 name = "/ht@0/isa@6";
2468 isa = call_prom("finddevice", 1, 1, ADDR(name));
2469 rloc = 0x01003000; /* IO space; PCI device = 6 */
2470 }
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002471 if (!PHANDLE_VALID(isa))
2472 return;
2473
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002474 if (prom_getproplen(isa, "ranges") != 12)
2475 return;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002476 if (prom_getprop(isa, "ranges", isa_ranges, sizeof(isa_ranges))
2477 == PROM_ERROR)
2478 return;
2479
2480 if (isa_ranges[0] != 0x1 ||
2481 isa_ranges[1] != 0xf4000000 ||
2482 isa_ranges[2] != 0x00010000)
2483 return;
2484
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002485 prom_printf("Fixing up bogus ISA range on Maple/Apache...\n");
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002486
2487 isa_ranges[0] = 0x1;
2488 isa_ranges[1] = 0x0;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002489 isa_ranges[2] = rloc;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002490 isa_ranges[3] = 0x0;
2491 isa_ranges[4] = 0x0;
2492 isa_ranges[5] = 0x00010000;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002493 prom_setprop(isa, name, "ranges",
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002494 isa_ranges, sizeof(isa_ranges));
2495}
Harry Ciao8f101a052009-06-17 16:28:00 -07002496
2497#define CPC925_MC_START 0xf8000000
2498#define CPC925_MC_LENGTH 0x1000000
2499/* The values for memory-controller don't have right number of cells */
2500static void __init fixup_device_tree_maple_memory_controller(void)
2501{
2502 phandle mc;
2503 u32 mc_reg[4];
2504 char *name = "/hostbridge@f8000000";
Harry Ciao8f101a052009-06-17 16:28:00 -07002505 u32 ac, sc;
2506
2507 mc = call_prom("finddevice", 1, 1, ADDR(name));
2508 if (!PHANDLE_VALID(mc))
2509 return;
2510
2511 if (prom_getproplen(mc, "reg") != 8)
2512 return;
2513
Anton Blanchard5827d412012-11-26 17:40:03 +00002514 prom_getprop(prom.root, "#address-cells", &ac, sizeof(ac));
2515 prom_getprop(prom.root, "#size-cells", &sc, sizeof(sc));
Harry Ciao8f101a052009-06-17 16:28:00 -07002516 if ((ac != 2) || (sc != 2))
2517 return;
2518
2519 if (prom_getprop(mc, "reg", mc_reg, sizeof(mc_reg)) == PROM_ERROR)
2520 return;
2521
2522 if (mc_reg[0] != CPC925_MC_START || mc_reg[1] != CPC925_MC_LENGTH)
2523 return;
2524
2525 prom_printf("Fixing up bogus hostbridge on Maple...\n");
2526
2527 mc_reg[0] = 0x0;
2528 mc_reg[1] = CPC925_MC_START;
2529 mc_reg[2] = 0x0;
2530 mc_reg[3] = CPC925_MC_LENGTH;
2531 prom_setprop(mc, name, "reg", mc_reg, sizeof(mc_reg));
2532}
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002533#else
2534#define fixup_device_tree_maple()
Harry Ciao8f101a052009-06-17 16:28:00 -07002535#define fixup_device_tree_maple_memory_controller()
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002536#endif
2537
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002538#ifdef CONFIG_PPC_CHRP
Olaf Heringe4805922007-04-04 18:20:04 +02002539/*
2540 * Pegasos and BriQ lacks the "ranges" property in the isa node
2541 * Pegasos needs decimal IRQ 14/15, not hexadecimal
Olaf Hering556ecf92007-08-18 04:27:17 +10002542 * Pegasos has the IDE configured in legacy mode, but advertised as native
Olaf Heringe4805922007-04-04 18:20:04 +02002543 */
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002544static void __init fixup_device_tree_chrp(void)
2545{
Olaf Heringe4805922007-04-04 18:20:04 +02002546 phandle ph;
2547 u32 prop[6];
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002548 u32 rloc = 0x01006000; /* IO space; PCI device = 12 */
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002549 char *name;
2550 int rc;
2551
2552 name = "/pci@80000000/isa@c";
Olaf Heringe4805922007-04-04 18:20:04 +02002553 ph = call_prom("finddevice", 1, 1, ADDR(name));
2554 if (!PHANDLE_VALID(ph)) {
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002555 name = "/pci@ff500000/isa@6";
Olaf Heringe4805922007-04-04 18:20:04 +02002556 ph = call_prom("finddevice", 1, 1, ADDR(name));
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002557 rloc = 0x01003000; /* IO space; PCI device = 6 */
2558 }
Olaf Heringe4805922007-04-04 18:20:04 +02002559 if (PHANDLE_VALID(ph)) {
2560 rc = prom_getproplen(ph, "ranges");
2561 if (rc == 0 || rc == PROM_ERROR) {
2562 prom_printf("Fixing up missing ISA range on Pegasos...\n");
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002563
Olaf Heringe4805922007-04-04 18:20:04 +02002564 prop[0] = 0x1;
2565 prop[1] = 0x0;
2566 prop[2] = rloc;
2567 prop[3] = 0x0;
2568 prop[4] = 0x0;
2569 prop[5] = 0x00010000;
2570 prom_setprop(ph, name, "ranges", prop, sizeof(prop));
2571 }
2572 }
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002573
Olaf Heringe4805922007-04-04 18:20:04 +02002574 name = "/pci@80000000/ide@C,1";
2575 ph = call_prom("finddevice", 1, 1, ADDR(name));
2576 if (PHANDLE_VALID(ph)) {
2577 prom_printf("Fixing up IDE interrupt on Pegasos...\n");
2578 prop[0] = 14;
2579 prop[1] = 0x0;
Olaf Hering556ecf92007-08-18 04:27:17 +10002580 prom_setprop(ph, name, "interrupts", prop, 2*sizeof(u32));
2581 prom_printf("Fixing up IDE class-code on Pegasos...\n");
2582 rc = prom_getprop(ph, "class-code", prop, sizeof(u32));
2583 if (rc == sizeof(u32)) {
2584 prop[0] &= ~0x5;
2585 prom_setprop(ph, name, "class-code", prop, sizeof(u32));
2586 }
Olaf Heringe4805922007-04-04 18:20:04 +02002587 }
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002588}
2589#else
2590#define fixup_device_tree_chrp()
2591#endif
2592
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002593#if defined(CONFIG_PPC64) && defined(CONFIG_PPC_PMAC)
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002594static void __init fixup_device_tree_pmac(void)
2595{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002596 phandle u3, i2c, mpic;
2597 u32 u3_rev;
2598 u32 interrupts[2];
2599 u32 parent;
2600
2601 /* Some G5s have a missing interrupt definition, fix it up here */
2602 u3 = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000"));
2603 if (!PHANDLE_VALID(u3))
2604 return;
2605 i2c = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/i2c@f8001000"));
2606 if (!PHANDLE_VALID(i2c))
2607 return;
2608 mpic = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/mpic@f8040000"));
2609 if (!PHANDLE_VALID(mpic))
2610 return;
2611
2612 /* check if proper rev of u3 */
2613 if (prom_getprop(u3, "device-rev", &u3_rev, sizeof(u3_rev))
2614 == PROM_ERROR)
2615 return;
Benjamin Herrenschmidt7d496972005-11-07 14:36:21 +11002616 if (u3_rev < 0x35 || u3_rev > 0x39)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002617 return;
2618 /* does it need fixup ? */
2619 if (prom_getproplen(i2c, "interrupts") > 0)
2620 return;
2621
2622 prom_printf("fixing up bogus interrupts for u3 i2c...\n");
2623
2624 /* interrupt on this revision of u3 is number 0 and level */
2625 interrupts[0] = 0;
2626 interrupts[1] = 1;
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002627 prom_setprop(i2c, "/u3@0,f8000000/i2c@f8001000", "interrupts",
2628 &interrupts, sizeof(interrupts));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002629 parent = (u32)mpic;
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002630 prom_setprop(i2c, "/u3@0,f8000000/i2c@f8001000", "interrupt-parent",
2631 &parent, sizeof(parent));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002632}
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002633#else
2634#define fixup_device_tree_pmac()
2635#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002636
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002637#ifdef CONFIG_PPC_EFIKA
Grant Likely94d2dde2008-01-24 22:25:32 -07002638/*
2639 * The MPC5200 FEC driver requires an phy-handle property to tell it how
2640 * to talk to the phy. If the phy-handle property is missing, then this
2641 * function is called to add the appropriate nodes and link it to the
2642 * ethernet node.
2643 */
2644static void __init fixup_device_tree_efika_add_phy(void)
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002645{
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002646 u32 node;
2647 char prop[64];
Grant Likely94d2dde2008-01-24 22:25:32 -07002648 int rv;
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002649
Grant Likely94d2dde2008-01-24 22:25:32 -07002650 /* Check if /builtin/ethernet exists - bail if it doesn't */
2651 node = call_prom("finddevice", 1, 1, ADDR("/builtin/ethernet"));
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002652 if (!PHANDLE_VALID(node))
2653 return;
2654
Grant Likely94d2dde2008-01-24 22:25:32 -07002655 /* Check if the phy-handle property exists - bail if it does */
2656 rv = prom_getprop(node, "phy-handle", prop, sizeof(prop));
2657 if (!rv)
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002658 return;
2659
Grant Likely94d2dde2008-01-24 22:25:32 -07002660 /*
2661 * At this point the ethernet device doesn't have a phy described.
2662 * Now we need to add the missing phy node and linkage
2663 */
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002664
Grant Likely94d2dde2008-01-24 22:25:32 -07002665 /* Check for an MDIO bus node - if missing then create one */
Olaf Hering6f4347c2008-01-10 01:06:08 +11002666 node = call_prom("finddevice", 1, 1, ADDR("/builtin/mdio"));
2667 if (!PHANDLE_VALID(node)) {
2668 prom_printf("Adding Ethernet MDIO node\n");
2669 call_prom("interpret", 1, 1,
2670 " s\" /builtin\" find-device"
2671 " new-device"
2672 " 1 encode-int s\" #address-cells\" property"
2673 " 0 encode-int s\" #size-cells\" property"
Grant Likely94d2dde2008-01-24 22:25:32 -07002674 " s\" mdio\" device-name"
2675 " s\" fsl,mpc5200b-mdio\" encode-string"
Olaf Hering6f4347c2008-01-10 01:06:08 +11002676 " s\" compatible\" property"
2677 " 0xf0003000 0x400 reg"
2678 " 0x2 encode-int"
2679 " 0x5 encode-int encode+"
2680 " 0x3 encode-int encode+"
2681 " s\" interrupts\" property"
2682 " finish-device");
2683 };
2684
Grant Likely94d2dde2008-01-24 22:25:32 -07002685 /* Check for a PHY device node - if missing then create one and
2686 * give it's phandle to the ethernet node */
2687 node = call_prom("finddevice", 1, 1,
2688 ADDR("/builtin/mdio/ethernet-phy"));
Olaf Hering6f4347c2008-01-10 01:06:08 +11002689 if (!PHANDLE_VALID(node)) {
2690 prom_printf("Adding Ethernet PHY node\n");
2691 call_prom("interpret", 1, 1,
2692 " s\" /builtin/mdio\" find-device"
2693 " new-device"
2694 " s\" ethernet-phy\" device-name"
2695 " 0x10 encode-int s\" reg\" property"
2696 " my-self"
2697 " ihandle>phandle"
2698 " finish-device"
2699 " s\" /builtin/ethernet\" find-device"
2700 " encode-int"
2701 " s\" phy-handle\" property"
2702 " device-end");
2703 }
Grant Likely94d2dde2008-01-24 22:25:32 -07002704}
Olaf Hering6f4347c2008-01-10 01:06:08 +11002705
Grant Likely94d2dde2008-01-24 22:25:32 -07002706static void __init fixup_device_tree_efika(void)
2707{
2708 int sound_irq[3] = { 2, 2, 0 };
2709 int bcomm_irq[3*16] = { 3,0,0, 3,1,0, 3,2,0, 3,3,0,
2710 3,4,0, 3,5,0, 3,6,0, 3,7,0,
2711 3,8,0, 3,9,0, 3,10,0, 3,11,0,
2712 3,12,0, 3,13,0, 3,14,0, 3,15,0 };
2713 u32 node;
2714 char prop[64];
2715 int rv, len;
2716
2717 /* Check if we're really running on a EFIKA */
2718 node = call_prom("finddevice", 1, 1, ADDR("/"));
2719 if (!PHANDLE_VALID(node))
2720 return;
2721
2722 rv = prom_getprop(node, "model", prop, sizeof(prop));
2723 if (rv == PROM_ERROR)
2724 return;
2725 if (strcmp(prop, "EFIKA5K2"))
2726 return;
2727
2728 prom_printf("Applying EFIKA device tree fixups\n");
2729
2730 /* Claiming to be 'chrp' is death */
2731 node = call_prom("finddevice", 1, 1, ADDR("/"));
2732 rv = prom_getprop(node, "device_type", prop, sizeof(prop));
2733 if (rv != PROM_ERROR && (strcmp(prop, "chrp") == 0))
2734 prom_setprop(node, "/", "device_type", "efika", sizeof("efika"));
2735
David Woodhouse7f4392c2008-04-14 02:52:38 +10002736 /* CODEGEN,description is exposed in /proc/cpuinfo so
2737 fix that too */
2738 rv = prom_getprop(node, "CODEGEN,description", prop, sizeof(prop));
2739 if (rv != PROM_ERROR && (strstr(prop, "CHRP")))
2740 prom_setprop(node, "/", "CODEGEN,description",
2741 "Efika 5200B PowerPC System",
2742 sizeof("Efika 5200B PowerPC System"));
2743
Grant Likely94d2dde2008-01-24 22:25:32 -07002744 /* Fixup bestcomm interrupts property */
2745 node = call_prom("finddevice", 1, 1, ADDR("/builtin/bestcomm"));
2746 if (PHANDLE_VALID(node)) {
2747 len = prom_getproplen(node, "interrupts");
2748 if (len == 12) {
2749 prom_printf("Fixing bestcomm interrupts property\n");
2750 prom_setprop(node, "/builtin/bestcom", "interrupts",
2751 bcomm_irq, sizeof(bcomm_irq));
2752 }
2753 }
2754
2755 /* Fixup sound interrupts property */
2756 node = call_prom("finddevice", 1, 1, ADDR("/builtin/sound"));
2757 if (PHANDLE_VALID(node)) {
2758 rv = prom_getprop(node, "interrupts", prop, sizeof(prop));
2759 if (rv == PROM_ERROR) {
2760 prom_printf("Adding sound interrupts property\n");
2761 prom_setprop(node, "/builtin/sound", "interrupts",
2762 sound_irq, sizeof(sound_irq));
2763 }
2764 }
2765
2766 /* Make sure ethernet phy-handle property exists */
2767 fixup_device_tree_efika_add_phy();
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002768}
2769#else
2770#define fixup_device_tree_efika()
2771#endif
2772
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002773static void __init fixup_device_tree(void)
2774{
2775 fixup_device_tree_maple();
Harry Ciao8f101a052009-06-17 16:28:00 -07002776 fixup_device_tree_maple_memory_controller();
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002777 fixup_device_tree_chrp();
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002778 fixup_device_tree_pmac();
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002779 fixup_device_tree_efika();
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002780}
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002781
2782static void __init prom_find_boot_cpu(void)
2783{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002784 u32 getprop_rval;
2785 ihandle prom_cpu;
2786 phandle cpu_pkg;
2787
Anton Blanchard5827d412012-11-26 17:40:03 +00002788 prom.cpu = 0;
2789 if (prom_getprop(prom.chosen, "cpu", &prom_cpu, sizeof(prom_cpu)) <= 0)
Paul Mackerrasa575b802005-10-23 17:23:21 +10002790 return;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002791
2792 cpu_pkg = call_prom("instance-to-package", 1, 1, prom_cpu);
2793
2794 prom_getprop(cpu_pkg, "reg", &getprop_rval, sizeof(getprop_rval));
Anton Blanchard5827d412012-11-26 17:40:03 +00002795 prom.cpu = getprop_rval;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002796
Anton Blanchard5827d412012-11-26 17:40:03 +00002797 prom_debug("Booting CPU hw index = %lu\n", prom.cpu);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002798}
2799
2800static void __init prom_check_initrd(unsigned long r3, unsigned long r4)
2801{
2802#ifdef CONFIG_BLK_DEV_INITRD
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002803 if (r3 && r4 && r4 != 0xdeadbeef) {
2804 unsigned long val;
2805
Anton Blanchard5827d412012-11-26 17:40:03 +00002806 prom_initrd_start = is_kernel_addr(r3) ? __pa(r3) : r3;
2807 prom_initrd_end = prom_initrd_start + r4;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002808
Anton Blanchard5827d412012-11-26 17:40:03 +00002809 val = prom_initrd_start;
2810 prom_setprop(prom.chosen, "/chosen", "linux,initrd-start",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002811 &val, sizeof(val));
Anton Blanchard5827d412012-11-26 17:40:03 +00002812 val = prom_initrd_end;
2813 prom_setprop(prom.chosen, "/chosen", "linux,initrd-end",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002814 &val, sizeof(val));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002815
Anton Blanchard5827d412012-11-26 17:40:03 +00002816 reserve_mem(prom_initrd_start,
2817 prom_initrd_end - prom_initrd_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002818
Anton Blanchard5827d412012-11-26 17:40:03 +00002819 prom_debug("initrd_start=0x%x\n", prom_initrd_start);
2820 prom_debug("initrd_end=0x%x\n", prom_initrd_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002821 }
2822#endif /* CONFIG_BLK_DEV_INITRD */
2823}
2824
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002825#ifdef CONFIG_PPC64
2826#ifdef CONFIG_RELOCATABLE
2827static void reloc_toc(void)
2828{
2829}
2830
2831static void unreloc_toc(void)
2832{
2833}
2834#else
Anton Blanchard16744002013-03-12 01:51:51 +00002835static void __reloc_toc(unsigned long offset, unsigned long nr_entries)
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002836{
2837 unsigned long i;
Anton Blanchard16744002013-03-12 01:51:51 +00002838 unsigned long *toc_entry;
2839
2840 /* Get the start of the TOC by using r2 directly. */
2841 asm volatile("addi %0,2,-0x8000" : "=b" (toc_entry));
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002842
2843 for (i = 0; i < nr_entries; i++) {
2844 *toc_entry = *toc_entry + offset;
2845 toc_entry++;
2846 }
2847}
2848
2849static void reloc_toc(void)
2850{
2851 unsigned long offset = reloc_offset();
2852 unsigned long nr_entries =
2853 (__prom_init_toc_end - __prom_init_toc_start) / sizeof(long);
2854
Anton Blanchard16744002013-03-12 01:51:51 +00002855 __reloc_toc(offset, nr_entries);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002856
2857 mb();
2858}
2859
2860static void unreloc_toc(void)
2861{
2862 unsigned long offset = reloc_offset();
2863 unsigned long nr_entries =
2864 (__prom_init_toc_end - __prom_init_toc_start) / sizeof(long);
2865
2866 mb();
2867
Anton Blanchard16744002013-03-12 01:51:51 +00002868 __reloc_toc(-offset, nr_entries);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002869}
2870#endif
2871#endif
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002872
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002873/*
2874 * We enter here early on, when the Open Firmware prom is still
2875 * handling exceptions and the MMU hash table for us.
2876 */
2877
2878unsigned long __init prom_init(unsigned long r3, unsigned long r4,
2879 unsigned long pp,
Paul Mackerras549e8152008-08-30 11:43:47 +10002880 unsigned long r6, unsigned long r7,
2881 unsigned long kbase)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002882{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002883 unsigned long hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002884
2885#ifdef CONFIG_PPC32
Paul Mackerras549e8152008-08-30 11:43:47 +10002886 unsigned long offset = reloc_offset();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002887 reloc_got2(offset);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002888#else
2889 reloc_toc();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002890#endif
2891
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002892 /*
2893 * First zero the BSS
2894 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002895 memset(&__bss_start, 0, __bss_stop - __bss_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002896
2897 /*
2898 * Init interface to Open Firmware, get some node references,
2899 * like /chosen
2900 */
2901 prom_init_client_services(pp);
2902
2903 /*
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002904 * See if this OF is old enough that we need to do explicit maps
2905 * and other workarounds
2906 */
2907 prom_find_mmu();
2908
2909 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002910 * Init prom stdout device
2911 */
2912 prom_init_stdout();
2913
Anton Blanchard5827d412012-11-26 17:40:03 +00002914 prom_printf("Preparing to boot %s", linux_banner);
Michael Ellermane7943fb2009-03-04 19:02:01 +00002915
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002916 /*
2917 * Get default machine type. At this point, we do not differentiate
2918 * between pSeries SMP and pSeries LPAR
2919 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002920 of_platform = prom_find_machine_type();
2921 prom_printf("Detected machine type: %x\n", of_platform);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002922
Suzuki Poulose0f890c82011-12-14 22:57:15 +00002923#ifndef CONFIG_NONSTATIC_KERNEL
Olaf Heringadd60ef2006-03-23 22:03:57 +01002924 /* Bail if this is a kdump kernel. */
2925 if (PHYSICAL_START > 0)
2926 prom_panic("Error: You can't boot a kdump kernel from OF!\n");
Paul Mackerras549e8152008-08-30 11:43:47 +10002927#endif
Olaf Heringadd60ef2006-03-23 22:03:57 +01002928
2929 /*
2930 * Check for an initrd
2931 */
2932 prom_check_initrd(r3, r4);
2933
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002934#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002935 /*
2936 * On pSeries, inform the firmware about our capabilities
2937 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002938 if (of_platform == PLATFORM_PSERIES ||
2939 of_platform == PLATFORM_PSERIES_LPAR)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002940 prom_send_capabilities();
2941#endif
2942
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002943 /*
Arnd Bergmannf3f66f52005-10-31 20:08:37 -05002944 * Copy the CPU hold code
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002945 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002946 if (of_platform != PLATFORM_POWERMAC)
Paul Mackerras549e8152008-08-30 11:43:47 +10002947 copy_and_flush(0, kbase, 0x100, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002948
2949 /*
2950 * Do early parsing of command line
2951 */
2952 early_cmdline_parse();
2953
2954 /*
2955 * Initialize memory management within prom_init
2956 */
2957 prom_init_mem();
2958
2959 /*
2960 * Determine which cpu is actually running right _now_
2961 */
2962 prom_find_boot_cpu();
2963
2964 /*
2965 * Initialize display devices
2966 */
2967 prom_check_displays();
2968
2969#ifdef CONFIG_PPC64
2970 /*
2971 * Initialize IOMMU (TCE tables) on pSeries. Do that before anything else
2972 * that uses the allocator, we need to make sure we get the top of memory
2973 * available for us here...
2974 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002975 if (of_platform == PLATFORM_PSERIES)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002976 prom_initialize_tce_table();
2977#endif
2978
2979 /*
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002980 * On non-powermacs, try to instantiate RTAS. PowerMacs don't
2981 * have a usable RTAS implementation.
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002982 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002983 if (of_platform != PLATFORM_POWERMAC &&
2984 of_platform != PLATFORM_OPAL)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002985 prom_instantiate_rtas();
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002986
2987#ifdef CONFIG_PPC_POWERNV
2988 /* Detect HAL and try instanciating it & doing takeover */
Anton Blanchard5827d412012-11-26 17:40:03 +00002989 if (of_platform == PLATFORM_PSERIES_LPAR) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002990 prom_query_opal();
Anton Blanchard5827d412012-11-26 17:40:03 +00002991 if (of_platform == PLATFORM_OPAL) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002992 prom_opal_hold_cpus();
2993 prom_opal_takeover();
2994 }
Anton Blanchard5827d412012-11-26 17:40:03 +00002995 } else if (of_platform == PLATFORM_OPAL)
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002996 prom_instantiate_opal();
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002997#endif
2998
Ashley Lai4a727422012-08-14 18:34:57 -05002999#ifdef CONFIG_PPC64
3000 /* instantiate sml */
3001 prom_instantiate_sml();
3002#endif
3003
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003004 /*
3005 * On non-powermacs, put all CPUs in spin-loops.
3006 *
3007 * PowerMacs use a different mechanism to spin CPUs
3008 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003009 if (of_platform != PLATFORM_POWERMAC &&
3010 of_platform != PLATFORM_OPAL)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003011 prom_hold_cpus();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003012
3013 /*
3014 * Fill in some infos for use by the kernel later on
3015 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003016 if (prom_memory_limit)
3017 prom_setprop(prom.chosen, "/chosen", "linux,memory-limit",
3018 &prom_memory_limit,
Benjamin Krillcf687872009-07-27 22:02:39 +00003019 sizeof(prom_memory_limit));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003020#ifdef CONFIG_PPC64
Anton Blanchard5827d412012-11-26 17:40:03 +00003021 if (prom_iommu_off)
3022 prom_setprop(prom.chosen, "/chosen", "linux,iommu-off",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11003023 NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003024
Anton Blanchard5827d412012-11-26 17:40:03 +00003025 if (prom_iommu_force_on)
3026 prom_setprop(prom.chosen, "/chosen", "linux,iommu-force-on",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11003027 NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003028
Anton Blanchard5827d412012-11-26 17:40:03 +00003029 if (prom_tce_alloc_start) {
3030 prom_setprop(prom.chosen, "/chosen", "linux,tce-alloc-start",
3031 &prom_tce_alloc_start,
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003032 sizeof(prom_tce_alloc_start));
Anton Blanchard5827d412012-11-26 17:40:03 +00003033 prom_setprop(prom.chosen, "/chosen", "linux,tce-alloc-end",
3034 &prom_tce_alloc_end,
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003035 sizeof(prom_tce_alloc_end));
3036 }
3037#endif
3038
3039 /*
3040 * Fixup any known bugs in the device-tree
3041 */
3042 fixup_device_tree();
3043
3044 /*
3045 * Now finally create the flattened device-tree
3046 */
Anton Blanchard1f8737a2009-03-31 20:06:15 +00003047 prom_printf("copying OF device tree...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003048 flatten_device_tree();
3049
Paul Mackerras3825ac02005-11-08 22:48:08 +11003050 /*
3051 * in case stdin is USB and still active on IBM machines...
3052 * Unfortunately quiesce crashes on some powermacs if we have
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003053 * closed stdin already (in particular the powerbook 101). It
3054 * appears that the OPAL version of OFW doesn't like it either.
Paul Mackerras3825ac02005-11-08 22:48:08 +11003055 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003056 if (of_platform != PLATFORM_POWERMAC &&
3057 of_platform != PLATFORM_OPAL)
Paul Mackerras3825ac02005-11-08 22:48:08 +11003058 prom_close_stdin();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003059
3060 /*
3061 * Call OF "quiesce" method to shut down pending DMA's from
3062 * devices etc...
3063 */
Anton Blanchard1f8737a2009-03-31 20:06:15 +00003064 prom_printf("Calling quiesce...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003065 call_prom("quiesce", 0, 0);
3066
3067 /*
3068 * And finally, call the kernel passing it the flattened device
3069 * tree and NULL as r5, thus triggering the new entry point which
3070 * is common to us and kexec
3071 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003072 hdr = dt_header_start;
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003073
3074 /* Don't print anything after quiesce under OPAL, it crashes OFW */
Anton Blanchard5827d412012-11-26 17:40:03 +00003075 if (of_platform != PLATFORM_OPAL) {
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003076 prom_printf("returning from prom_init\n");
3077 prom_debug("->dt_header_start=0x%x\n", hdr);
3078 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003079
3080#ifdef CONFIG_PPC32
3081 reloc_got2(-offset);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003082#else
3083 unreloc_toc();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003084#endif
3085
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00003086#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
3087 /* OPAL early debug gets the OPAL base & entry in r8 and r9 */
3088 __start(hdr, kbase, 0, 0, 0,
Anton Blanchard5827d412012-11-26 17:40:03 +00003089 prom_opal_base, prom_opal_entry);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00003090#else
3091 __start(hdr, kbase, 0, 0, 0, 0, 0);
3092#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003093
3094 return 0;
3095}