blob: 57df5cb1dcc466eb278cd5d237ea9405ff812737 [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/*
Nathan Fontenot530b5e12013-04-24 05:53:10 +0000630 * The architecture vector has an array of PVR mask/value pairs,
631 * followed by # option vectors - 1, followed by the option vectors.
632 *
633 * See prom.h for the definition of the bits specified in the
634 * architecture vector.
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000635 *
636 * Because the description vector contains a mix of byte and word
637 * values, we declare it as an unsigned char array, and use this
638 * macro to put word values in.
639 */
640#define W(x) ((x) >> 24) & 0xff, ((x) >> 16) & 0xff, \
641 ((x) >> 8) & 0xff, (x) & 0xff
642
Nathan Fontenot530b5e12013-04-24 05:53:10 +0000643unsigned char ibm_architecture_vec[] = {
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000644 W(0xfffe0000), W(0x003a0000), /* POWER5/POWER5+ */
Anton Blanchard03054d52006-04-29 09:51:06 +1000645 W(0xffff0000), W(0x003e0000), /* POWER6 */
Michael Neulinge952e6c2008-06-18 10:47:26 +1000646 W(0xffff0000), W(0x003f0000), /* POWER7 */
Michael Neuling33959f82013-07-18 11:31:51 +1000647 W(0xffff0000), W(0x004b0000), /* POWER8E */
648 W(0xffff0000), W(0x004d0000), /* POWER8 */
Michael Neulingdf77c792012-11-08 20:23:11 +0000649 W(0xffffffff), W(0x0f000004), /* all 2.07-compliant */
Joel Schopp0cb99012008-06-19 06:23:23 +1000650 W(0xffffffff), W(0x0f000003), /* all 2.06-compliant */
Paul Mackerras0efbc182006-11-29 22:31:47 +1100651 W(0xffffffff), W(0x0f000002), /* all 2.05-compliant */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000652 W(0xfffffffe), W(0x0f000001), /* all 2.04-compliant and earlier */
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000653 6 - 1, /* 6 option vectors */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000654
655 /* option vector 1: processor architectures supported */
Will Schmidt11e9ed42006-08-25 15:46:59 -0500656 3 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000657 0, /* don't ignore, don't halt */
658 OV1_PPC_2_00 | OV1_PPC_2_01 | OV1_PPC_2_02 | OV1_PPC_2_03 |
Michael Neulingdf77c792012-11-08 20:23:11 +0000659 OV1_PPC_2_04 | OV1_PPC_2_05 | OV1_PPC_2_06 | OV1_PPC_2_07,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000660
661 /* option vector 2: Open Firmware options supported */
Will Schmidt11e9ed42006-08-25 15:46:59 -0500662 34 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000663 OV2_REAL_MODE,
664 0, 0,
665 W(0xffffffff), /* real_base */
666 W(0xffffffff), /* real_size */
667 W(0xffffffff), /* virt_base */
668 W(0xffffffff), /* virt_size */
669 W(0xffffffff), /* load_base */
Anton Blanchard33392642011-12-04 13:13:58 +0000670 W(256), /* 256MB min RMA */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000671 W(0xffffffff), /* full client load */
672 0, /* min RMA percentage of total RAM */
673 48, /* max log_2(hash table size) */
674
675 /* option vector 3: processor options supported */
Will Schmidt11e9ed42006-08-25 15:46:59 -0500676 3 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000677 0, /* don't ignore, don't halt */
Paul Mackerras974a76f2006-11-10 20:38:53 +1100678 OV3_FP | OV3_VMX | OV3_DFP,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000679
680 /* option vector 4: IBM PAPR implementation */
Robert Jennings404e32e2012-05-10 08:55:49 +0000681 3 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000682 0, /* don't halt */
Robert Jennings404e32e2012-05-10 08:55:49 +0000683 OV4_MIN_ENT_CAP, /* minimum VP entitled capacity */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000684
685 /* option vector 5: PAPR/OF options */
Michael Neulingdf77c792012-11-08 20:23:11 +0000686 19 - 2, /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000687 0, /* don't ignore, don't halt */
Nathan Fontenotf0ff7eb2013-04-24 05:57:18 +0000688 OV5_FEAT(OV5_LPAR) | OV5_FEAT(OV5_SPLPAR) | OV5_FEAT(OV5_LARGE_PAGES) |
689 OV5_FEAT(OV5_DRCONF_MEMORY) | OV5_FEAT(OV5_DONATE_DEDICATE_CPU) |
690#ifdef CONFIG_PCI_MSI
691 /* PCIe/MSI support. Without MSI full PCIe is not supported */
692 OV5_FEAT(OV5_MSI),
693#else
Nathan Fontenot8391e422008-07-24 04:36:38 +1000694 0,
Nathan Fontenotf0ff7eb2013-04-24 05:57:18 +0000695#endif
696 0,
697#ifdef CONFIG_PPC_SMLPAR
698 OV5_FEAT(OV5_CMO) | OV5_FEAT(OV5_XCMO),
699#else
700 0,
701#endif
Nathan Fontenot1b1218d2013-04-24 06:06:17 +0000702 OV5_FEAT(OV5_TYPE1_AFFINITY) | OV5_FEAT(OV5_PRRN),
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000703 0,
704 0,
705 0,
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100706 /* WARNING: The offset of the "number of cores" field below
707 * must match by the macro below. Update the definition if
708 * the structure layout changes.
709 */
Michael Neuling33959f82013-07-18 11:31:51 +1000710#define IBM_ARCH_VEC_NRCORES_OFFSET 125
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100711 W(NR_CPUS), /* number of cores supported */
Kent Yoder828d2b52012-04-12 05:17:51 +0000712 0,
713 0,
714 0,
715 0,
Nathan Fontenotf0ff7eb2013-04-24 05:57:18 +0000716 OV5_FEAT(OV5_PFO_HW_RNG) | OV5_FEAT(OV5_PFO_HW_ENCR) |
717 OV5_FEAT(OV5_PFO_HW_842),
718 OV5_FEAT(OV5_SUB_PROCESSORS),
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000719 /* option vector 6: IBM PAPR hints */
720 4 - 2, /* length */
721 0,
722 0,
723 OV6_LINUX,
724
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000725};
726
727/* Old method - ELF header with PT_NOTE sections */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000728static struct fake_elf {
729 Elf32_Ehdr elfhdr;
730 Elf32_Phdr phdr[2];
731 struct chrpnote {
732 u32 namesz;
733 u32 descsz;
734 u32 type;
735 char name[8]; /* "PowerPC" */
736 struct chrpdesc {
737 u32 real_mode;
738 u32 real_base;
739 u32 real_size;
740 u32 virt_base;
741 u32 virt_size;
742 u32 load_base;
743 } chrpdesc;
744 } chrpnote;
745 struct rpanote {
746 u32 namesz;
747 u32 descsz;
748 u32 type;
749 char name[24]; /* "IBM,RPA-Client-Config" */
750 struct rpadesc {
751 u32 lpar_affinity;
752 u32 min_rmo_size;
753 u32 min_rmo_percent;
754 u32 max_pft_size;
755 u32 splpar;
756 u32 min_load;
757 u32 new_mem_def;
758 u32 ignore_me;
759 } rpadesc;
760 } rpanote;
Paul Mackerras5663a122008-10-31 22:27:17 +1100761} fake_elf = {
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000762 .elfhdr = {
763 .e_ident = { 0x7f, 'E', 'L', 'F',
764 ELFCLASS32, ELFDATA2MSB, EV_CURRENT },
765 .e_type = ET_EXEC, /* yeah right */
766 .e_machine = EM_PPC,
767 .e_version = EV_CURRENT,
768 .e_phoff = offsetof(struct fake_elf, phdr),
769 .e_phentsize = sizeof(Elf32_Phdr),
770 .e_phnum = 2
771 },
772 .phdr = {
773 [0] = {
774 .p_type = PT_NOTE,
775 .p_offset = offsetof(struct fake_elf, chrpnote),
776 .p_filesz = sizeof(struct chrpnote)
777 }, [1] = {
778 .p_type = PT_NOTE,
779 .p_offset = offsetof(struct fake_elf, rpanote),
780 .p_filesz = sizeof(struct rpanote)
781 }
782 },
783 .chrpnote = {
784 .namesz = sizeof("PowerPC"),
785 .descsz = sizeof(struct chrpdesc),
786 .type = 0x1275,
787 .name = "PowerPC",
788 .chrpdesc = {
789 .real_mode = ~0U, /* ~0 means "don't care" */
790 .real_base = ~0U,
791 .real_size = ~0U,
792 .virt_base = ~0U,
793 .virt_size = ~0U,
794 .load_base = ~0U
795 },
796 },
797 .rpanote = {
798 .namesz = sizeof("IBM,RPA-Client-Config"),
799 .descsz = sizeof(struct rpadesc),
800 .type = 0x12759999,
801 .name = "IBM,RPA-Client-Config",
802 .rpadesc = {
Paul Mackerras5663a122008-10-31 22:27:17 +1100803 .lpar_affinity = 0,
804 .min_rmo_size = 64, /* in megabytes */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000805 .min_rmo_percent = 0,
Paul Mackerras5663a122008-10-31 22:27:17 +1100806 .max_pft_size = 48, /* 2^48 bytes max PFT size */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000807 .splpar = 1,
808 .min_load = ~0U,
Paul Mackerras5663a122008-10-31 22:27:17 +1100809 .new_mem_def = 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000810 }
811 }
812};
813
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100814static int __init prom_count_smt_threads(void)
815{
816 phandle node;
817 char type[64];
818 unsigned int plen;
819
820 /* Pick up th first CPU node we can find */
821 for (node = 0; prom_next_node(&node); ) {
822 type[0] = 0;
823 prom_getprop(node, "device_type", type, sizeof(type));
824
Anton Blanchard5827d412012-11-26 17:40:03 +0000825 if (strcmp(type, "cpu"))
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100826 continue;
827 /*
828 * There is an entry for each smt thread, each entry being
829 * 4 bytes long. All cpus should have the same number of
830 * smt threads, so return after finding the first.
831 */
832 plen = prom_getproplen(node, "ibm,ppc-interrupt-server#s");
833 if (plen == PROM_ERROR)
834 break;
835 plen >>= 2;
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000836 prom_debug("Found %lu smt threads per core\n", (unsigned long)plen);
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100837
838 /* Sanity check */
839 if (plen < 1 || plen > 64) {
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000840 prom_printf("Threads per core %lu out of bounds, assuming 1\n",
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100841 (unsigned long)plen);
842 return 1;
843 }
844 return plen;
845 }
846 prom_debug("No threads found, assuming 1 per core\n");
847
848 return 1;
849
850}
851
852
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000853static void __init prom_send_capabilities(void)
854{
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000855 ihandle elfloader, root;
856 prom_arg_t ret;
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100857 u32 *cores;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000858
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000859 root = call_prom("open", 1, 1, ADDR("/"));
860 if (root != 0) {
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100861 /* We need to tell the FW about the number of cores we support.
862 *
863 * To do that, we count the number of threads on the first core
864 * (we assume this is the same for all cores) and use it to
865 * divide NR_CPUS.
866 */
Anton Blanchard5ac47f72012-11-26 17:39:03 +0000867 cores = (u32 *)&ibm_architecture_vec[IBM_ARCH_VEC_NRCORES_OFFSET];
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100868 if (*cores != NR_CPUS) {
869 prom_printf("WARNING ! "
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000870 "ibm_architecture_vec structure inconsistent: %lu!\n",
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100871 *cores);
872 } else {
Anton Blanchard33ad5e42010-06-17 14:33:06 +0000873 *cores = DIV_ROUND_UP(NR_CPUS, prom_count_smt_threads());
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000874 prom_printf("Max number of cores passed to firmware: %lu (NR_CPUS = %lu)\n",
875 *cores, NR_CPUS);
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100876 }
877
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000878 /* try calling the ibm,client-architecture-support method */
Anton Blanchard049d0492009-09-21 20:47:39 +0000879 prom_printf("Calling ibm,client-architecture-support...");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000880 if (call_prom_ret("call-method", 3, 2, &ret,
881 ADDR("ibm,client-architecture-support"),
Benjamin Herrenschmidt33b74972006-06-07 12:01:32 +1000882 root,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000883 ADDR(ibm_architecture_vec)) == 0) {
884 /* the call exists... */
885 if (ret)
Anton Blanchard4da727a2009-03-31 20:06:14 +0000886 prom_printf("\nWARNING: ibm,client-architecture"
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000887 "-support call FAILED!\n");
888 call_prom("close", 1, 0, root);
Anton Blanchard4da727a2009-03-31 20:06:14 +0000889 prom_printf(" done\n");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000890 return;
891 }
892 call_prom("close", 1, 0, root);
Anton Blanchard049d0492009-09-21 20:47:39 +0000893 prom_printf(" not implemented\n");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000894 }
895
896 /* no ibm,client-architecture-support call, try the old way */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000897 elfloader = call_prom("open", 1, 1, ADDR("/packages/elf-loader"));
898 if (elfloader == 0) {
899 prom_printf("couldn't open /packages/elf-loader\n");
900 return;
901 }
902 call_prom("call-method", 3, 1, ADDR("process-elf-header"),
903 elfloader, ADDR(&fake_elf));
904 call_prom("close", 1, 0, elfloader);
905}
906#endif
907
908/*
909 * Memory allocation strategy... our layout is normally:
910 *
911 * at 14Mb or more we have vmlinux, then a gap and initrd. In some
912 * rare cases, initrd might end up being before the kernel though.
913 * We assume this won't override the final kernel at 0, we have no
914 * provision to handle that in this version, but it should hopefully
915 * never happen.
916 *
917 * alloc_top is set to the top of RMO, eventually shrink down if the
918 * TCEs overlap
919 *
920 * alloc_bottom is set to the top of kernel/initrd
921 *
922 * from there, allocations are done this way : rtas is allocated
923 * topmost, and the device-tree is allocated from the bottom. We try
924 * to grow the device-tree allocation as we progress. If we can't,
925 * then we fail, we don't currently have a facility to restart
926 * elsewhere, but that shouldn't be necessary.
927 *
928 * Note that calls to reserve_mem have to be done explicitly, memory
929 * allocated with either alloc_up or alloc_down isn't automatically
930 * reserved.
931 */
932
933
934/*
935 * Allocates memory in the RMO upward from the kernel/initrd
936 *
937 * When align is 0, this is a special case, it means to allocate in place
938 * at the current location of alloc_bottom or fail (that is basically
939 * extending the previous allocation). Used for the device-tree flattening
940 */
941static unsigned long __init alloc_up(unsigned long size, unsigned long align)
942{
Anton Blanchard5827d412012-11-26 17:40:03 +0000943 unsigned long base = alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000944 unsigned long addr = 0;
945
Paul Mackerrasc49888202005-10-26 21:52:53 +1000946 if (align)
947 base = _ALIGN_UP(base, align);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000948 prom_debug("alloc_up(%x, %x)\n", size, align);
Anton Blanchard5827d412012-11-26 17:40:03 +0000949 if (ram_top == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000950 prom_panic("alloc_up() called with mem not initialized\n");
951
952 if (align)
Anton Blanchard5827d412012-11-26 17:40:03 +0000953 base = _ALIGN_UP(alloc_bottom, align);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000954 else
Anton Blanchard5827d412012-11-26 17:40:03 +0000955 base = alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000956
Anton Blanchard5827d412012-11-26 17:40:03 +0000957 for(; (base + size) <= alloc_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000958 base = _ALIGN_UP(base + 0x100000, align)) {
959 prom_debug(" trying: 0x%x\n\r", base);
960 addr = (unsigned long)prom_claim(base, size, 0);
Paul Mackerrasc49888202005-10-26 21:52:53 +1000961 if (addr != PROM_ERROR && addr != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000962 break;
963 addr = 0;
964 if (align == 0)
965 break;
966 }
967 if (addr == 0)
968 return 0;
Anton Blanchard5827d412012-11-26 17:40:03 +0000969 alloc_bottom = addr + size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000970
971 prom_debug(" -> %x\n", addr);
Anton Blanchard5827d412012-11-26 17:40:03 +0000972 prom_debug(" alloc_bottom : %x\n", alloc_bottom);
973 prom_debug(" alloc_top : %x\n", alloc_top);
974 prom_debug(" alloc_top_hi : %x\n", alloc_top_high);
975 prom_debug(" rmo_top : %x\n", rmo_top);
976 prom_debug(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000977
978 return addr;
979}
980
981/*
982 * Allocates memory downward, either from top of RMO, or if highmem
983 * is set, from the top of RAM. Note that this one doesn't handle
984 * failures. It does claim memory if highmem is not set.
985 */
986static unsigned long __init alloc_down(unsigned long size, unsigned long align,
987 int highmem)
988{
989 unsigned long base, addr = 0;
990
991 prom_debug("alloc_down(%x, %x, %s)\n", size, align,
Anton Blanchard5827d412012-11-26 17:40:03 +0000992 highmem ? "(high)" : "(low)");
993 if (ram_top == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000994 prom_panic("alloc_down() called with mem not initialized\n");
995
996 if (highmem) {
997 /* Carve out storage for the TCE table. */
Anton Blanchard5827d412012-11-26 17:40:03 +0000998 addr = _ALIGN_DOWN(alloc_top_high - size, align);
999 if (addr <= alloc_bottom)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001000 return 0;
1001 /* Will we bump into the RMO ? If yes, check out that we
1002 * didn't overlap existing allocations there, if we did,
1003 * we are dead, we must be the first in town !
1004 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001005 if (addr < rmo_top) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001006 /* Good, we are first */
Anton Blanchard5827d412012-11-26 17:40:03 +00001007 if (alloc_top == rmo_top)
1008 alloc_top = rmo_top = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001009 else
1010 return 0;
1011 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001012 alloc_top_high = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001013 goto bail;
1014 }
1015
Anton Blanchard5827d412012-11-26 17:40:03 +00001016 base = _ALIGN_DOWN(alloc_top - size, align);
1017 for (; base > alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001018 base = _ALIGN_DOWN(base - 0x100000, align)) {
1019 prom_debug(" trying: 0x%x\n\r", base);
1020 addr = (unsigned long)prom_claim(base, size, 0);
Paul Mackerrasc49888202005-10-26 21:52:53 +10001021 if (addr != PROM_ERROR && addr != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001022 break;
1023 addr = 0;
1024 }
1025 if (addr == 0)
1026 return 0;
Anton Blanchard5827d412012-11-26 17:40:03 +00001027 alloc_top = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001028
1029 bail:
1030 prom_debug(" -> %x\n", addr);
Anton Blanchard5827d412012-11-26 17:40:03 +00001031 prom_debug(" alloc_bottom : %x\n", alloc_bottom);
1032 prom_debug(" alloc_top : %x\n", alloc_top);
1033 prom_debug(" alloc_top_hi : %x\n", alloc_top_high);
1034 prom_debug(" rmo_top : %x\n", rmo_top);
1035 prom_debug(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001036
1037 return addr;
1038}
1039
1040/*
1041 * Parse a "reg" cell
1042 */
1043static unsigned long __init prom_next_cell(int s, cell_t **cellp)
1044{
1045 cell_t *p = *cellp;
1046 unsigned long r = 0;
1047
1048 /* Ignore more than 2 cells */
1049 while (s > sizeof(unsigned long) / 4) {
1050 p++;
1051 s--;
1052 }
1053 r = *p++;
1054#ifdef CONFIG_PPC64
Paul Mackerras35499c02005-10-22 16:02:39 +10001055 if (s > 1) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001056 r <<= 32;
1057 r |= *(p++);
1058 }
1059#endif
1060 *cellp = p;
1061 return r;
1062}
1063
1064/*
1065 * Very dumb function for adding to the memory reserve list, but
1066 * we don't need anything smarter at this point
1067 *
1068 * XXX Eventually check for collisions. They should NEVER happen.
1069 * If problems seem to show up, it would be a good start to track
1070 * them down.
1071 */
Michael Ellerman0108d3f2007-05-07 15:58:28 +10001072static void __init reserve_mem(u64 base, u64 size)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001073{
Kumar Galacbbcf342006-01-11 17:57:13 -06001074 u64 top = base + size;
Anton Blanchard5827d412012-11-26 17:40:03 +00001075 unsigned long cnt = mem_reserve_cnt;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001076
1077 if (size == 0)
1078 return;
1079
1080 /* We need to always keep one empty entry so that we
1081 * have our terminator with "size" set to 0 since we are
1082 * dumb and just copy this entire array to the boot params
1083 */
1084 base = _ALIGN_DOWN(base, PAGE_SIZE);
1085 top = _ALIGN_UP(top, PAGE_SIZE);
1086 size = top - base;
1087
1088 if (cnt >= (MEM_RESERVE_MAP_SIZE - 1))
1089 prom_panic("Memory reserve map exhausted !\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001090 mem_reserve_map[cnt].base = base;
1091 mem_reserve_map[cnt].size = size;
1092 mem_reserve_cnt = cnt + 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001093}
1094
1095/*
Adrian Bunkb3c2ffd2006-06-30 18:20:44 +02001096 * Initialize memory allocation mechanism, parse "memory" nodes and
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001097 * obtain that way the top of memory and RMO to setup out local allocator
1098 */
1099static void __init prom_init_mem(void)
1100{
1101 phandle node;
1102 char *path, type[64];
1103 unsigned int plen;
1104 cell_t *p, *endp;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001105 u32 rac, rsc;
1106
1107 /*
1108 * We iterate the memory nodes to find
1109 * 1) top of RMO (first node)
1110 * 2) top of memory
1111 */
1112 rac = 2;
Anton Blanchard5827d412012-11-26 17:40:03 +00001113 prom_getprop(prom.root, "#address-cells", &rac, sizeof(rac));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001114 rsc = 1;
Anton Blanchard5827d412012-11-26 17:40:03 +00001115 prom_getprop(prom.root, "#size-cells", &rsc, sizeof(rsc));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001116 prom_debug("root_addr_cells: %x\n", (unsigned long) rac);
1117 prom_debug("root_size_cells: %x\n", (unsigned long) rsc);
1118
1119 prom_debug("scanning memory:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001120 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001121
1122 for (node = 0; prom_next_node(&node); ) {
1123 type[0] = 0;
1124 prom_getprop(node, "device_type", type, sizeof(type));
1125
Paul Mackerrasc49888202005-10-26 21:52:53 +10001126 if (type[0] == 0) {
1127 /*
1128 * CHRP Longtrail machines have no device_type
1129 * on the memory node, so check the name instead...
1130 */
1131 prom_getprop(node, "name", type, sizeof(type));
1132 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001133 if (strcmp(type, "memory"))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001134 continue;
Paul Mackerrasc49888202005-10-26 21:52:53 +10001135
Anton Blanchard5827d412012-11-26 17:40:03 +00001136 plen = prom_getprop(node, "reg", regbuf, sizeof(regbuf));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001137 if (plen > sizeof(regbuf)) {
1138 prom_printf("memory node too large for buffer !\n");
1139 plen = sizeof(regbuf);
1140 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001141 p = regbuf;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001142 endp = p + (plen / sizeof(cell_t));
1143
1144#ifdef DEBUG_PROM
1145 memset(path, 0, PROM_SCRATCH_SIZE);
1146 call_prom("package-to-path", 3, 1, node, path, PROM_SCRATCH_SIZE-1);
1147 prom_debug(" node %s :\n", path);
1148#endif /* DEBUG_PROM */
1149
1150 while ((endp - p) >= (rac + rsc)) {
1151 unsigned long base, size;
1152
1153 base = prom_next_cell(rac, &p);
1154 size = prom_next_cell(rsc, &p);
1155
1156 if (size == 0)
1157 continue;
1158 prom_debug(" %x %x\n", base, size);
Anton Blanchard5827d412012-11-26 17:40:03 +00001159 if (base == 0 && (of_platform & PLATFORM_LPAR))
1160 rmo_top = size;
1161 if ((base + size) > ram_top)
1162 ram_top = base + size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001163 }
1164 }
1165
Anton Blanchard5827d412012-11-26 17:40:03 +00001166 alloc_bottom = PAGE_ALIGN((unsigned long)&_end + 0x4000);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001167
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001168 /*
Benjamin Krillcf687872009-07-27 22:02:39 +00001169 * If prom_memory_limit is set we reduce the upper limits *except* for
1170 * alloc_top_high. This must be the real top of RAM so we can put
1171 * TCE's up there.
1172 */
1173
Anton Blanchard5827d412012-11-26 17:40:03 +00001174 alloc_top_high = ram_top;
Benjamin Krillcf687872009-07-27 22:02:39 +00001175
Anton Blanchard5827d412012-11-26 17:40:03 +00001176 if (prom_memory_limit) {
1177 if (prom_memory_limit <= alloc_bottom) {
Benjamin Krillcf687872009-07-27 22:02:39 +00001178 prom_printf("Ignoring mem=%x <= alloc_bottom.\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00001179 prom_memory_limit);
1180 prom_memory_limit = 0;
1181 } else if (prom_memory_limit >= ram_top) {
Benjamin Krillcf687872009-07-27 22:02:39 +00001182 prom_printf("Ignoring mem=%x >= ram_top.\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00001183 prom_memory_limit);
1184 prom_memory_limit = 0;
Benjamin Krillcf687872009-07-27 22:02:39 +00001185 } else {
Anton Blanchard5827d412012-11-26 17:40:03 +00001186 ram_top = prom_memory_limit;
1187 rmo_top = min(rmo_top, prom_memory_limit);
Benjamin Krillcf687872009-07-27 22:02:39 +00001188 }
1189 }
1190
1191 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001192 * Setup our top alloc point, that is top of RMO or top of
1193 * segment 0 when running non-LPAR.
1194 * Some RS64 machines have buggy firmware where claims up at
1195 * 1GB fail. Cap at 768MB as a workaround.
1196 * Since 768MB is plenty of room, and we need to cap to something
1197 * reasonable on 32-bit, cap at 768MB on all machines.
1198 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001199 if (!rmo_top)
1200 rmo_top = ram_top;
1201 rmo_top = min(0x30000000ul, rmo_top);
1202 alloc_top = rmo_top;
1203 alloc_top_high = ram_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001204
Paul Mackerras64968f62011-12-13 17:54:13 +00001205 /*
1206 * Check if we have an initrd after the kernel but still inside
1207 * the RMO. If we do move our bottom point to after it.
1208 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001209 if (prom_initrd_start &&
1210 prom_initrd_start < rmo_top &&
1211 prom_initrd_end > alloc_bottom)
1212 alloc_bottom = PAGE_ALIGN(prom_initrd_end);
Paul Mackerras64968f62011-12-13 17:54:13 +00001213
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001214 prom_printf("memory layout at init:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001215 prom_printf(" memory_limit : %x (16 MB aligned)\n", prom_memory_limit);
1216 prom_printf(" alloc_bottom : %x\n", alloc_bottom);
1217 prom_printf(" alloc_top : %x\n", alloc_top);
1218 prom_printf(" alloc_top_hi : %x\n", alloc_top_high);
1219 prom_printf(" rmo_top : %x\n", rmo_top);
1220 prom_printf(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001221}
1222
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001223static void __init prom_close_stdin(void)
1224{
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001225 ihandle val;
1226
Anton Blanchard5827d412012-11-26 17:40:03 +00001227 if (prom_getprop(prom.chosen, "stdin", &val, sizeof(val)) > 0)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001228 call_prom("close", 1, 0, val);
1229}
1230
1231#ifdef CONFIG_PPC_POWERNV
1232
1233static u64 __initdata prom_opal_size;
1234static u64 __initdata prom_opal_align;
1235static int __initdata prom_rtas_start_cpu;
1236static u64 __initdata prom_rtas_data;
1237static u64 __initdata prom_rtas_entry;
1238
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001239#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
1240static u64 __initdata prom_opal_base;
1241static u64 __initdata prom_opal_entry;
1242#endif
1243
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001244/* XXX Don't change this structure without updating opal-takeover.S */
1245static struct opal_secondary_data {
1246 s64 ack; /* 0 */
1247 u64 go; /* 8 */
1248 struct opal_takeover_args args; /* 16 */
1249} opal_secondary_data;
1250
1251extern char opal_secondary_entry;
1252
Li Zhong2cb387a2012-06-07 17:44:23 +00001253static void __init prom_query_opal(void)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001254{
1255 long rc;
1256
Benjamin Herrenschmidt76800572011-09-28 20:51:46 +00001257 /* We must not query for OPAL presence on a machine that
1258 * supports TNK takeover (970 blades), as this uses the same
1259 * h-call with different arguments and will crash
1260 */
1261 if (PHANDLE_VALID(call_prom("finddevice", 1, 1,
1262 ADDR("/tnk-memory-map")))) {
1263 prom_printf("TNK takeover detected, skipping OPAL check\n");
1264 return;
1265 }
1266
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001267 prom_printf("Querying for OPAL presence... ");
Anton Blanchard5827d412012-11-26 17:40:03 +00001268 rc = opal_query_takeover(&prom_opal_size,
1269 &prom_opal_align);
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001270 prom_debug("(rc = %ld) ", rc);
1271 if (rc != 0) {
1272 prom_printf("not there.\n");
1273 return;
1274 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001275 of_platform = PLATFORM_OPAL;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001276 prom_printf(" there !\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001277 prom_debug(" opal_size = 0x%lx\n", prom_opal_size);
1278 prom_debug(" opal_align = 0x%lx\n", prom_opal_align);
1279 if (prom_opal_align < 0x10000)
1280 prom_opal_align = 0x10000;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001281}
1282
1283static int prom_rtas_call(int token, int nargs, int nret, int *outputs, ...)
1284{
1285 struct rtas_args rtas_args;
1286 va_list list;
1287 int i;
1288
1289 rtas_args.token = token;
1290 rtas_args.nargs = nargs;
1291 rtas_args.nret = nret;
1292 rtas_args.rets = (rtas_arg_t *)&(rtas_args.args[nargs]);
1293 va_start(list, outputs);
1294 for (i = 0; i < nargs; ++i)
1295 rtas_args.args[i] = va_arg(list, rtas_arg_t);
1296 va_end(list);
1297
1298 for (i = 0; i < nret; ++i)
1299 rtas_args.rets[i] = 0;
1300
Anton Blanchard5827d412012-11-26 17:40:03 +00001301 opal_enter_rtas(&rtas_args, prom_rtas_data,
1302 prom_rtas_entry);
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001303
1304 if (nret > 1 && outputs != NULL)
1305 for (i = 0; i < nret-1; ++i)
1306 outputs[i] = rtas_args.rets[i+1];
1307 return (nret > 0)? rtas_args.rets[0]: 0;
1308}
1309
1310static void __init prom_opal_hold_cpus(void)
1311{
1312 int i, cnt, cpu, rc;
1313 long j;
1314 phandle node;
1315 char type[64];
1316 u32 servers[8];
Anton Blanchard5827d412012-11-26 17:40:03 +00001317 void *entry = (unsigned long *)&opal_secondary_entry;
1318 struct opal_secondary_data *data = &opal_secondary_data;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001319
1320 prom_debug("prom_opal_hold_cpus: start...\n");
1321 prom_debug(" - entry = 0x%x\n", entry);
1322 prom_debug(" - data = 0x%x\n", data);
1323
1324 data->ack = -1;
1325 data->go = 0;
1326
1327 /* look for cpus */
1328 for (node = 0; prom_next_node(&node); ) {
1329 type[0] = 0;
1330 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001331 if (strcmp(type, "cpu") != 0)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001332 continue;
1333
1334 /* Skip non-configured cpus. */
1335 if (prom_getprop(node, "status", type, sizeof(type)) > 0)
Anton Blanchard5827d412012-11-26 17:40:03 +00001336 if (strcmp(type, "okay") != 0)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001337 continue;
1338
1339 cnt = prom_getprop(node, "ibm,ppc-interrupt-server#s", servers,
1340 sizeof(servers));
1341 if (cnt == PROM_ERROR)
1342 break;
1343 cnt >>= 2;
1344 for (i = 0; i < cnt; i++) {
1345 cpu = servers[i];
1346 prom_debug("CPU %d ... ", cpu);
Anton Blanchard5827d412012-11-26 17:40:03 +00001347 if (cpu == prom.cpu) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001348 prom_debug("booted !\n");
1349 continue;
1350 }
1351 prom_debug("starting ... ");
1352
1353 /* Init the acknowledge var which will be reset by
1354 * the secondary cpu when it awakens from its OF
1355 * spinloop.
1356 */
1357 data->ack = -1;
Anton Blanchard5827d412012-11-26 17:40:03 +00001358 rc = prom_rtas_call(prom_rtas_start_cpu, 3, 1,
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001359 NULL, cpu, entry, data);
1360 prom_debug("rtas rc=%d ...", rc);
1361
1362 for (j = 0; j < 100000000 && data->ack == -1; j++) {
1363 HMT_low();
1364 mb();
1365 }
1366 HMT_medium();
1367 if (data->ack != -1)
1368 prom_debug("done, PIR=0x%x\n", data->ack);
1369 else
1370 prom_debug("timeout !\n");
1371 }
1372 }
1373 prom_debug("prom_opal_hold_cpus: end...\n");
1374}
1375
Li Zhong2cb387a2012-06-07 17:44:23 +00001376static void __init prom_opal_takeover(void)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001377{
Anton Blanchard5827d412012-11-26 17:40:03 +00001378 struct opal_secondary_data *data = &opal_secondary_data;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001379 struct opal_takeover_args *args = &data->args;
Anton Blanchard5827d412012-11-26 17:40:03 +00001380 u64 align = prom_opal_align;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001381 u64 top_addr, opal_addr;
1382
Anton Blanchard5827d412012-11-26 17:40:03 +00001383 args->k_image = (u64)_stext;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001384 args->k_size = _end - _stext;
1385 args->k_entry = 0;
1386 args->k_entry2 = 0x60;
1387
1388 top_addr = _ALIGN_UP(args->k_size, align);
1389
Anton Blanchard5827d412012-11-26 17:40:03 +00001390 if (prom_initrd_start != 0) {
1391 args->rd_image = prom_initrd_start;
1392 args->rd_size = prom_initrd_end - args->rd_image;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001393 args->rd_loc = top_addr;
1394 top_addr = _ALIGN_UP(args->rd_loc + args->rd_size, align);
1395 }
1396
1397 /* Pickup an address for the HAL. We want to go really high
1398 * up to avoid problem with future kexecs. On the other hand
1399 * we don't want to be all over the TCEs on P5IOC2 machines
1400 * which are going to be up there too. We assume the machine
1401 * has plenty of memory, and we ask for the HAL for now to
1402 * be just below the 1G point, or above the initrd
1403 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001404 opal_addr = _ALIGN_DOWN(0x40000000 - prom_opal_size, align);
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001405 if (opal_addr < top_addr)
1406 opal_addr = top_addr;
1407 args->hal_addr = opal_addr;
1408
Benjamin Herrenschmidt817c21a2011-09-19 17:44:56 +00001409 /* Copy the command line to the kernel image */
Anton Blanchard5827d412012-11-26 17:40:03 +00001410 strlcpy(boot_command_line, prom_cmd_line,
Benjamin Herrenschmidt817c21a2011-09-19 17:44:56 +00001411 COMMAND_LINE_SIZE);
1412
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001413 prom_debug(" k_image = 0x%lx\n", args->k_image);
1414 prom_debug(" k_size = 0x%lx\n", args->k_size);
1415 prom_debug(" k_entry = 0x%lx\n", args->k_entry);
1416 prom_debug(" k_entry2 = 0x%lx\n", args->k_entry2);
1417 prom_debug(" hal_addr = 0x%lx\n", args->hal_addr);
1418 prom_debug(" rd_image = 0x%lx\n", args->rd_image);
1419 prom_debug(" rd_size = 0x%lx\n", args->rd_size);
1420 prom_debug(" rd_loc = 0x%lx\n", args->rd_loc);
1421 prom_printf("Performing OPAL takeover,this can take a few minutes..\n");
1422 prom_close_stdin();
1423 mb();
1424 data->go = 1;
1425 for (;;)
1426 opal_do_takeover(args);
1427}
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001428
1429/*
1430 * Allocate room for and instantiate OPAL
1431 */
1432static void __init prom_instantiate_opal(void)
1433{
1434 phandle opal_node;
1435 ihandle opal_inst;
1436 u64 base, entry;
1437 u64 size = 0, align = 0x10000;
1438 u32 rets[2];
1439
1440 prom_debug("prom_instantiate_opal: start...\n");
1441
1442 opal_node = call_prom("finddevice", 1, 1, ADDR("/ibm,opal"));
1443 prom_debug("opal_node: %x\n", opal_node);
1444 if (!PHANDLE_VALID(opal_node))
1445 return;
1446
1447 prom_getprop(opal_node, "opal-runtime-size", &size, sizeof(size));
1448 if (size == 0)
1449 return;
1450 prom_getprop(opal_node, "opal-runtime-alignment", &align,
1451 sizeof(align));
1452
1453 base = alloc_down(size, align, 0);
1454 if (base == 0) {
1455 prom_printf("OPAL allocation failed !\n");
1456 return;
1457 }
1458
1459 opal_inst = call_prom("open", 1, 1, ADDR("/ibm,opal"));
1460 if (!IHANDLE_VALID(opal_inst)) {
1461 prom_printf("opening opal package failed (%x)\n", opal_inst);
1462 return;
1463 }
1464
1465 prom_printf("instantiating opal at 0x%x...", base);
1466
1467 if (call_prom_ret("call-method", 4, 3, rets,
1468 ADDR("load-opal-runtime"),
1469 opal_inst,
1470 base >> 32, base & 0xffffffff) != 0
1471 || (rets[0] == 0 && rets[1] == 0)) {
1472 prom_printf(" failed\n");
1473 return;
1474 }
1475 entry = (((u64)rets[0]) << 32) | rets[1];
1476
1477 prom_printf(" done\n");
1478
1479 reserve_mem(base, size);
1480
1481 prom_debug("opal base = 0x%x\n", base);
1482 prom_debug("opal align = 0x%x\n", align);
1483 prom_debug("opal entry = 0x%x\n", entry);
1484 prom_debug("opal size = 0x%x\n", (long)size);
1485
1486 prom_setprop(opal_node, "/ibm,opal", "opal-base-address",
1487 &base, sizeof(base));
1488 prom_setprop(opal_node, "/ibm,opal", "opal-entry-address",
1489 &entry, sizeof(entry));
1490
1491#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
Anton Blanchard5827d412012-11-26 17:40:03 +00001492 prom_opal_base = base;
1493 prom_opal_entry = entry;
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001494#endif
1495 prom_debug("prom_instantiate_opal: end...\n");
1496}
1497
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001498#endif /* CONFIG_PPC_POWERNV */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001499
1500/*
1501 * Allocate room for and instantiate RTAS
1502 */
1503static void __init prom_instantiate_rtas(void)
1504{
1505 phandle rtas_node;
1506 ihandle rtas_inst;
1507 u32 base, entry = 0;
1508 u32 size = 0;
1509
1510 prom_debug("prom_instantiate_rtas: start...\n");
1511
1512 rtas_node = call_prom("finddevice", 1, 1, ADDR("/rtas"));
1513 prom_debug("rtas_node: %x\n", rtas_node);
1514 if (!PHANDLE_VALID(rtas_node))
1515 return;
1516
1517 prom_getprop(rtas_node, "rtas-size", &size, sizeof(size));
1518 if (size == 0)
1519 return;
1520
1521 base = alloc_down(size, PAGE_SIZE, 0);
Anton Blanchard6d1e2c62011-11-14 12:55:47 +00001522 if (base == 0)
1523 prom_panic("Could not allocate memory for RTAS\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001524
1525 rtas_inst = call_prom("open", 1, 1, ADDR("/rtas"));
1526 if (!IHANDLE_VALID(rtas_inst)) {
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001527 prom_printf("opening rtas package failed (%x)\n", rtas_inst);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001528 return;
1529 }
1530
Anton Blanchard1f8737a2009-03-31 20:06:15 +00001531 prom_printf("instantiating rtas at 0x%x...", base);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001532
1533 if (call_prom_ret("call-method", 3, 2, &entry,
1534 ADDR("instantiate-rtas"),
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001535 rtas_inst, base) != 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001536 || entry == 0) {
1537 prom_printf(" failed\n");
1538 return;
1539 }
1540 prom_printf(" done\n");
1541
1542 reserve_mem(base, size);
1543
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001544 prom_setprop(rtas_node, "/rtas", "linux,rtas-base",
1545 &base, sizeof(base));
1546 prom_setprop(rtas_node, "/rtas", "linux,rtas-entry",
1547 &entry, sizeof(entry));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001548
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001549#ifdef CONFIG_PPC_POWERNV
1550 /* PowerVN takeover hack */
Anton Blanchard5827d412012-11-26 17:40:03 +00001551 prom_rtas_data = base;
1552 prom_rtas_entry = entry;
1553 prom_getprop(rtas_node, "start-cpu", &prom_rtas_start_cpu, 4);
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001554#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001555 prom_debug("rtas base = 0x%x\n", base);
1556 prom_debug("rtas entry = 0x%x\n", entry);
1557 prom_debug("rtas size = 0x%x\n", (long)size);
1558
1559 prom_debug("prom_instantiate_rtas: end...\n");
1560}
1561
1562#ifdef CONFIG_PPC64
1563/*
Ashley Lai4a727422012-08-14 18:34:57 -05001564 * Allocate room for and instantiate Stored Measurement Log (SML)
1565 */
1566static void __init prom_instantiate_sml(void)
1567{
1568 phandle ibmvtpm_node;
1569 ihandle ibmvtpm_inst;
1570 u32 entry = 0, size = 0;
1571 u64 base;
1572
1573 prom_debug("prom_instantiate_sml: start...\n");
1574
1575 ibmvtpm_node = call_prom("finddevice", 1, 1, ADDR("/ibm,vtpm"));
1576 prom_debug("ibmvtpm_node: %x\n", ibmvtpm_node);
1577 if (!PHANDLE_VALID(ibmvtpm_node))
1578 return;
1579
1580 ibmvtpm_inst = call_prom("open", 1, 1, ADDR("/ibm,vtpm"));
1581 if (!IHANDLE_VALID(ibmvtpm_inst)) {
1582 prom_printf("opening vtpm package failed (%x)\n", ibmvtpm_inst);
1583 return;
1584 }
1585
1586 if (call_prom_ret("call-method", 2, 2, &size,
1587 ADDR("sml-get-handover-size"),
1588 ibmvtpm_inst) != 0 || size == 0) {
1589 prom_printf("SML get handover size failed\n");
1590 return;
1591 }
1592
1593 base = alloc_down(size, PAGE_SIZE, 0);
1594 if (base == 0)
1595 prom_panic("Could not allocate memory for sml\n");
1596
1597 prom_printf("instantiating sml at 0x%x...", base);
1598
1599 if (call_prom_ret("call-method", 4, 2, &entry,
1600 ADDR("sml-handover"),
1601 ibmvtpm_inst, size, base) != 0 || entry == 0) {
1602 prom_printf("SML handover failed\n");
1603 return;
1604 }
1605 prom_printf(" done\n");
1606
1607 reserve_mem(base, size);
1608
1609 prom_setprop(ibmvtpm_node, "/ibm,vtpm", "linux,sml-base",
1610 &base, sizeof(base));
1611 prom_setprop(ibmvtpm_node, "/ibm,vtpm", "linux,sml-size",
1612 &size, sizeof(size));
1613
1614 prom_debug("sml base = 0x%x\n", base);
1615 prom_debug("sml size = 0x%x\n", (long)size);
1616
1617 prom_debug("prom_instantiate_sml: end...\n");
1618}
1619
1620/*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001621 * Allocate room for and initialize TCE tables
1622 */
1623static void __init prom_initialize_tce_table(void)
1624{
1625 phandle node;
1626 ihandle phb_node;
1627 char compatible[64], type[64], model[64];
Anton Blanchard5827d412012-11-26 17:40:03 +00001628 char *path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001629 u64 base, align;
1630 u32 minalign, minsize;
1631 u64 tce_entry, *tce_entryp;
1632 u64 local_alloc_top, local_alloc_bottom;
1633 u64 i;
1634
Anton Blanchard5827d412012-11-26 17:40:03 +00001635 if (prom_iommu_off)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001636 return;
1637
1638 prom_debug("starting prom_initialize_tce_table\n");
1639
1640 /* Cache current top of allocs so we reserve a single block */
Anton Blanchard5827d412012-11-26 17:40:03 +00001641 local_alloc_top = alloc_top_high;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001642 local_alloc_bottom = local_alloc_top;
1643
1644 /* Search all nodes looking for PHBs. */
1645 for (node = 0; prom_next_node(&node); ) {
1646 compatible[0] = 0;
1647 type[0] = 0;
1648 model[0] = 0;
1649 prom_getprop(node, "compatible",
1650 compatible, sizeof(compatible));
1651 prom_getprop(node, "device_type", type, sizeof(type));
1652 prom_getprop(node, "model", model, sizeof(model));
1653
Anton Blanchard5827d412012-11-26 17:40:03 +00001654 if ((type[0] == 0) || (strstr(type, "pci") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001655 continue;
1656
Linas Vepstase788ff12007-09-07 03:45:21 +10001657 /* Keep the old logic intact to avoid regression. */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001658 if (compatible[0] != 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +00001659 if ((strstr(compatible, "python") == NULL) &&
1660 (strstr(compatible, "Speedwagon") == NULL) &&
1661 (strstr(compatible, "Winnipeg") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001662 continue;
1663 } else if (model[0] != 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +00001664 if ((strstr(model, "ython") == NULL) &&
1665 (strstr(model, "peedwagon") == NULL) &&
1666 (strstr(model, "innipeg") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001667 continue;
1668 }
1669
1670 if (prom_getprop(node, "tce-table-minalign", &minalign,
1671 sizeof(minalign)) == PROM_ERROR)
1672 minalign = 0;
1673 if (prom_getprop(node, "tce-table-minsize", &minsize,
1674 sizeof(minsize)) == PROM_ERROR)
1675 minsize = 4UL << 20;
1676
1677 /*
1678 * Even though we read what OF wants, we just set the table
1679 * size to 4 MB. This is enough to map 2GB of PCI DMA space.
1680 * By doing this, we avoid the pitfalls of trying to DMA to
1681 * MMIO space and the DMA alias hole.
1682 *
1683 * On POWER4, firmware sets the TCE region by assuming
1684 * each TCE table is 8MB. Using this memory for anything
1685 * else will impact performance, so we always allocate 8MB.
1686 * Anton
1687 */
Michael Ellermand3dbeef2012-08-19 21:44:01 +00001688 if (pvr_version_is(PVR_POWER4) || pvr_version_is(PVR_POWER4p))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001689 minsize = 8UL << 20;
1690 else
1691 minsize = 4UL << 20;
1692
1693 /* Align to the greater of the align or size */
1694 align = max(minalign, minsize);
1695 base = alloc_down(minsize, align, 1);
1696 if (base == 0)
1697 prom_panic("ERROR, cannot find space for TCE table.\n");
1698 if (base < local_alloc_bottom)
1699 local_alloc_bottom = base;
1700
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001701 /* It seems OF doesn't null-terminate the path :-( */
Li Zefanaca71ef2007-11-05 13:21:56 +11001702 memset(path, 0, PROM_SCRATCH_SIZE);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001703 /* Call OF to setup the TCE hardware */
1704 if (call_prom("package-to-path", 3, 1, node,
1705 path, PROM_SCRATCH_SIZE-1) == PROM_ERROR) {
1706 prom_printf("package-to-path failed\n");
1707 }
1708
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001709 /* Save away the TCE table attributes for later use. */
1710 prom_setprop(node, path, "linux,tce-base", &base, sizeof(base));
1711 prom_setprop(node, path, "linux,tce-size", &minsize, sizeof(minsize));
1712
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001713 prom_debug("TCE table: %s\n", path);
1714 prom_debug("\tnode = 0x%x\n", node);
1715 prom_debug("\tbase = 0x%x\n", base);
1716 prom_debug("\tsize = 0x%x\n", minsize);
1717
1718 /* Initialize the table to have a one-to-one mapping
1719 * over the allocated size.
1720 */
Ingo Molnar2b931fb2009-01-06 13:56:52 +00001721 tce_entryp = (u64 *)base;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001722 for (i = 0; i < (minsize >> 3) ;tce_entryp++, i++) {
1723 tce_entry = (i << PAGE_SHIFT);
1724 tce_entry |= 0x3;
1725 *tce_entryp = tce_entry;
1726 }
1727
1728 prom_printf("opening PHB %s", path);
1729 phb_node = call_prom("open", 1, 1, path);
1730 if (phb_node == 0)
1731 prom_printf("... failed\n");
1732 else
1733 prom_printf("... done\n");
1734
1735 call_prom("call-method", 6, 0, ADDR("set-64-bit-addressing"),
1736 phb_node, -1, minsize,
1737 (u32) base, (u32) (base >> 32));
1738 call_prom("close", 1, 0, phb_node);
1739 }
1740
1741 reserve_mem(local_alloc_bottom, local_alloc_top - local_alloc_bottom);
1742
Michael Ellerman2babf5c2006-05-17 18:00:46 +10001743 /* These are only really needed if there is a memory limit in
1744 * effect, but we don't know so export them always. */
Anton Blanchard5827d412012-11-26 17:40:03 +00001745 prom_tce_alloc_start = local_alloc_bottom;
1746 prom_tce_alloc_end = local_alloc_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001747
1748 /* Flag the first invalid entry */
1749 prom_debug("ending prom_initialize_tce_table\n");
1750}
1751#endif
1752
1753/*
1754 * With CHRP SMP we need to use the OF to start the other processors.
1755 * We can't wait until smp_boot_cpus (the OF is trashed by then)
1756 * so we have to put the processors into a holding pattern controlled
1757 * by the kernel (not OF) before we destroy the OF.
1758 *
1759 * This uses a chunk of low memory, puts some holding pattern
1760 * code there and sends the other processors off to there until
1761 * smp_boot_cpus tells them to do something. The holding pattern
1762 * checks that address until its cpu # is there, when it is that
1763 * cpu jumps to __secondary_start(). smp_boot_cpus() takes care
1764 * of setting those values.
1765 *
1766 * We also use physical address 0x4 here to tell when a cpu
1767 * is in its holding pattern code.
1768 *
1769 * -- Cort
1770 */
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001771/*
1772 * We want to reference the copy of __secondary_hold_* in the
1773 * 0 - 0x100 address range
1774 */
1775#define LOW_ADDR(x) (((unsigned long) &(x)) & 0xff)
1776
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001777static void __init prom_hold_cpus(void)
1778{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001779 unsigned long i;
1780 unsigned int reg;
1781 phandle node;
1782 char type[64];
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001783 unsigned long *spinloop
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001784 = (void *) LOW_ADDR(__secondary_hold_spinloop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001785 unsigned long *acknowledge
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001786 = (void *) LOW_ADDR(__secondary_hold_acknowledge);
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001787 unsigned long secondary_hold = LOW_ADDR(__secondary_hold);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001788
1789 prom_debug("prom_hold_cpus: start...\n");
1790 prom_debug(" 1) spinloop = 0x%x\n", (unsigned long)spinloop);
1791 prom_debug(" 1) *spinloop = 0x%x\n", *spinloop);
1792 prom_debug(" 1) acknowledge = 0x%x\n",
1793 (unsigned long)acknowledge);
1794 prom_debug(" 1) *acknowledge = 0x%x\n", *acknowledge);
1795 prom_debug(" 1) secondary_hold = 0x%x\n", secondary_hold);
1796
1797 /* Set the common spinloop variable, so all of the secondary cpus
1798 * will block when they are awakened from their OF spinloop.
1799 * This must occur for both SMP and non SMP kernels, since OF will
1800 * be trashed when we move the kernel.
1801 */
1802 *spinloop = 0;
1803
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001804 /* look for cpus */
1805 for (node = 0; prom_next_node(&node); ) {
1806 type[0] = 0;
1807 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001808 if (strcmp(type, "cpu") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001809 continue;
1810
1811 /* Skip non-configured cpus. */
1812 if (prom_getprop(node, "status", type, sizeof(type)) > 0)
Anton Blanchard5827d412012-11-26 17:40:03 +00001813 if (strcmp(type, "okay") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001814 continue;
1815
1816 reg = -1;
1817 prom_getprop(node, "reg", &reg, sizeof(reg));
1818
Michael Neuling2c48a7d2010-07-27 18:26:21 +00001819 prom_debug("cpu hw idx = %lu\n", reg);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001820
1821 /* Init the acknowledge var which will be reset by
1822 * the secondary cpu when it awakens from its OF
1823 * spinloop.
1824 */
1825 *acknowledge = (unsigned long)-1;
1826
Anton Blanchard5827d412012-11-26 17:40:03 +00001827 if (reg != prom.cpu) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001828 /* Primary Thread of non-boot cpu or any thread */
Michael Neuling2c48a7d2010-07-27 18:26:21 +00001829 prom_printf("starting cpu hw idx %lu... ", reg);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001830 call_prom("start-cpu", 3, 0, node,
1831 secondary_hold, reg);
1832
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001833 for (i = 0; (i < 100000000) &&
1834 (*acknowledge == ((unsigned long)-1)); i++ )
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001835 mb();
1836
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001837 if (*acknowledge == reg)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001838 prom_printf("done\n");
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001839 else
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001840 prom_printf("failed: %x\n", *acknowledge);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001841 }
1842#ifdef CONFIG_SMP
1843 else
Michael Neuling2c48a7d2010-07-27 18:26:21 +00001844 prom_printf("boot cpu hw idx %lu\n", reg);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001845#endif /* CONFIG_SMP */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001846 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001847
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001848 prom_debug("prom_hold_cpus: end...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001849}
1850
1851
1852static void __init prom_init_client_services(unsigned long pp)
1853{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001854 /* Get a handle to the prom entry point before anything else */
Anton Blanchard5827d412012-11-26 17:40:03 +00001855 prom_entry = pp;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001856
1857 /* get a handle for the stdout device */
Anton Blanchard5827d412012-11-26 17:40:03 +00001858 prom.chosen = call_prom("finddevice", 1, 1, ADDR("/chosen"));
1859 if (!PHANDLE_VALID(prom.chosen))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001860 prom_panic("cannot find chosen"); /* msg won't be printed :( */
1861
1862 /* get device tree root */
Anton Blanchard5827d412012-11-26 17:40:03 +00001863 prom.root = call_prom("finddevice", 1, 1, ADDR("/"));
1864 if (!PHANDLE_VALID(prom.root))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001865 prom_panic("cannot find device tree root"); /* msg won't be printed :( */
Paul Mackerrasa575b802005-10-23 17:23:21 +10001866
Anton Blanchard5827d412012-11-26 17:40:03 +00001867 prom.mmumap = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001868}
1869
Paul Mackerrasa575b802005-10-23 17:23:21 +10001870#ifdef CONFIG_PPC32
1871/*
1872 * For really old powermacs, we need to map things we claim.
1873 * For that, we need the ihandle of the mmu.
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001874 * Also, on the longtrail, we need to work around other bugs.
Paul Mackerrasa575b802005-10-23 17:23:21 +10001875 */
1876static void __init prom_find_mmu(void)
1877{
Paul Mackerrasa575b802005-10-23 17:23:21 +10001878 phandle oprom;
1879 char version[64];
1880
1881 oprom = call_prom("finddevice", 1, 1, ADDR("/openprom"));
1882 if (!PHANDLE_VALID(oprom))
1883 return;
1884 if (prom_getprop(oprom, "model", version, sizeof(version)) <= 0)
1885 return;
1886 version[sizeof(version) - 1] = 0;
Paul Mackerrasa575b802005-10-23 17:23:21 +10001887 /* XXX might need to add other versions here */
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001888 if (strcmp(version, "Open Firmware, 1.0.5") == 0)
1889 of_workarounds = OF_WA_CLAIM;
1890 else if (strncmp(version, "FirmWorks,3.", 12) == 0) {
1891 of_workarounds = OF_WA_CLAIM | OF_WA_LONGTRAIL;
1892 call_prom("interpret", 1, 1, "dev /memory 0 to allow-reclaim");
1893 } else
Paul Mackerrasa575b802005-10-23 17:23:21 +10001894 return;
Anton Blanchard5827d412012-11-26 17:40:03 +00001895 prom.memory = call_prom("open", 1, 1, ADDR("/memory"));
1896 prom_getprop(prom.chosen, "mmu", &prom.mmumap,
1897 sizeof(prom.mmumap));
1898 if (!IHANDLE_VALID(prom.memory) || !IHANDLE_VALID(prom.mmumap))
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001899 of_workarounds &= ~OF_WA_CLAIM; /* hmmm */
Paul Mackerrasa575b802005-10-23 17:23:21 +10001900}
1901#else
1902#define prom_find_mmu()
1903#endif
1904
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001905static void __init prom_init_stdout(void)
1906{
Anton Blanchard5827d412012-11-26 17:40:03 +00001907 char *path = of_stdout_device;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001908 char type[16];
1909 u32 val;
1910
Anton Blanchard5827d412012-11-26 17:40:03 +00001911 if (prom_getprop(prom.chosen, "stdout", &val, sizeof(val)) <= 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001912 prom_panic("cannot find stdout");
1913
Anton Blanchard5827d412012-11-26 17:40:03 +00001914 prom.stdout = val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001915
1916 /* Get the full OF pathname of the stdout device */
1917 memset(path, 0, 256);
Anton Blanchard5827d412012-11-26 17:40:03 +00001918 call_prom("instance-to-path", 3, 1, prom.stdout, path, 255);
1919 val = call_prom("instance-to-package", 1, 1, prom.stdout);
1920 prom_setprop(prom.chosen, "/chosen", "linux,stdout-package",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001921 &val, sizeof(val));
Anton Blanchard5827d412012-11-26 17:40:03 +00001922 prom_printf("OF stdout device is: %s\n", of_stdout_device);
1923 prom_setprop(prom.chosen, "/chosen", "linux,stdout-path",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001924 path, strlen(path) + 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001925
1926 /* If it's a display, note it */
1927 memset(type, 0, sizeof(type));
1928 prom_getprop(val, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001929 if (strcmp(type, "display") == 0)
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001930 prom_setprop(val, path, "linux,boot-display", NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001931}
1932
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001933static int __init prom_find_machine_type(void)
1934{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001935 char compat[256];
1936 int len, i = 0;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +11001937#ifdef CONFIG_PPC64
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001938 phandle rtas;
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001939 int x;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +11001940#endif
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001941
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001942 /* Look for a PowerMac or a Cell */
Anton Blanchard5827d412012-11-26 17:40:03 +00001943 len = prom_getprop(prom.root, "compatible",
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001944 compat, sizeof(compat)-1);
1945 if (len > 0) {
1946 compat[len] = 0;
1947 while (i < len) {
1948 char *p = &compat[i];
1949 int sl = strlen(p);
1950 if (sl == 0)
1951 break;
Anton Blanchard5827d412012-11-26 17:40:03 +00001952 if (strstr(p, "Power Macintosh") ||
1953 strstr(p, "MacRISC"))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001954 return PLATFORM_POWERMAC;
Arnd Bergmann133dda12006-06-07 12:04:18 +10001955#ifdef CONFIG_PPC64
1956 /* We must make sure we don't detect the IBM Cell
1957 * blades as pSeries due to some firmware issues,
1958 * so we do it here.
1959 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001960 if (strstr(p, "IBM,CBEA") ||
1961 strstr(p, "IBM,CPBW-1.0"))
Arnd Bergmann133dda12006-06-07 12:04:18 +10001962 return PLATFORM_GENERIC;
1963#endif /* CONFIG_PPC64 */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001964 i += sl + 1;
1965 }
1966 }
1967#ifdef CONFIG_PPC64
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001968 /* Try to detect OPAL */
1969 if (PHANDLE_VALID(call_prom("finddevice", 1, 1, ADDR("/ibm,opal"))))
1970 return PLATFORM_OPAL;
1971
1972 /* Try to figure out if it's an IBM pSeries or any other
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001973 * PAPR compliant platform. We assume it is if :
1974 * - /device_type is "chrp" (please, do NOT use that for future
1975 * non-IBM designs !
1976 * - it has /rtas
1977 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001978 len = prom_getprop(prom.root, "device_type",
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001979 compat, sizeof(compat)-1);
1980 if (len <= 0)
1981 return PLATFORM_GENERIC;
Anton Blanchard5827d412012-11-26 17:40:03 +00001982 if (strcmp(compat, "chrp"))
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001983 return PLATFORM_GENERIC;
1984
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001985 /* Default to pSeries. We need to know if we are running LPAR */
1986 rtas = call_prom("finddevice", 1, 1, ADDR("/rtas"));
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001987 if (!PHANDLE_VALID(rtas))
1988 return PLATFORM_GENERIC;
1989 x = prom_getproplen(rtas, "ibm,hypertas-functions");
1990 if (x != PROM_ERROR) {
Anton Blanchard4da727a2009-03-31 20:06:14 +00001991 prom_debug("Hypertas detected, assuming LPAR !\n");
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001992 return PLATFORM_PSERIES_LPAR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001993 }
1994 return PLATFORM_PSERIES;
1995#else
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001996 return PLATFORM_GENERIC;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001997#endif
1998}
1999
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002000static int __init prom_set_color(ihandle ih, int i, int r, int g, int b)
2001{
2002 return call_prom("call-method", 6, 1, ADDR("color!"), ih, i, b, g, r);
2003}
2004
2005/*
2006 * If we have a display that we don't know how to drive,
2007 * we will want to try to execute OF's open method for it
2008 * later. However, OF will probably fall over if we do that
2009 * we've taken over the MMU.
2010 * So we check whether we will need to open the display,
2011 * and if so, open it now.
2012 */
2013static void __init prom_check_displays(void)
2014{
2015 char type[16], *path;
2016 phandle node;
2017 ihandle ih;
2018 int i;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002019
2020 static unsigned char default_colors[] = {
2021 0x00, 0x00, 0x00,
2022 0x00, 0x00, 0xaa,
2023 0x00, 0xaa, 0x00,
2024 0x00, 0xaa, 0xaa,
2025 0xaa, 0x00, 0x00,
2026 0xaa, 0x00, 0xaa,
2027 0xaa, 0xaa, 0x00,
2028 0xaa, 0xaa, 0xaa,
2029 0x55, 0x55, 0x55,
2030 0x55, 0x55, 0xff,
2031 0x55, 0xff, 0x55,
2032 0x55, 0xff, 0xff,
2033 0xff, 0x55, 0x55,
2034 0xff, 0x55, 0xff,
2035 0xff, 0xff, 0x55,
2036 0xff, 0xff, 0xff
2037 };
2038 const unsigned char *clut;
2039
Anton Blanchard4da727a2009-03-31 20:06:14 +00002040 prom_debug("Looking for displays\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002041 for (node = 0; prom_next_node(&node); ) {
2042 memset(type, 0, sizeof(type));
2043 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00002044 if (strcmp(type, "display") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002045 continue;
2046
2047 /* It seems OF doesn't null-terminate the path :-( */
Anton Blanchard5827d412012-11-26 17:40:03 +00002048 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002049 memset(path, 0, PROM_SCRATCH_SIZE);
2050
2051 /*
2052 * leave some room at the end of the path for appending extra
2053 * arguments
2054 */
2055 if (call_prom("package-to-path", 3, 1, node, path,
2056 PROM_SCRATCH_SIZE-10) == PROM_ERROR)
2057 continue;
Anton Blanchard1f8737a2009-03-31 20:06:15 +00002058 prom_printf("found display : %s, opening... ", path);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002059
2060 ih = call_prom("open", 1, 1, path);
2061 if (ih == 0) {
2062 prom_printf("failed\n");
2063 continue;
2064 }
2065
2066 /* Success */
2067 prom_printf("done\n");
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002068 prom_setprop(node, path, "linux,opened", NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002069
2070 /* Setup a usable color table when the appropriate
2071 * method is available. Should update this to set-colors */
Anton Blanchard5827d412012-11-26 17:40:03 +00002072 clut = default_colors;
Benjamin Herrenschmidt3f536382011-12-14 13:55:11 +00002073 for (i = 0; i < 16; i++, clut += 3)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002074 if (prom_set_color(ih, i, clut[0], clut[1],
2075 clut[2]) != 0)
2076 break;
2077
2078#ifdef CONFIG_LOGO_LINUX_CLUT224
Anton Blanchard5827d412012-11-26 17:40:03 +00002079 clut = PTRRELOC(logo_linux_clut224.clut);
2080 for (i = 0; i < logo_linux_clut224.clutsize; i++, clut += 3)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002081 if (prom_set_color(ih, i + 32, clut[0], clut[1],
2082 clut[2]) != 0)
2083 break;
2084#endif /* CONFIG_LOGO_LINUX_CLUT224 */
Benjamin Herrenschmidt7191b612013-07-25 12:12:32 +10002085
2086#ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX
2087 if (prom_getprop(node, "linux,boot-display", NULL, 0) !=
2088 PROM_ERROR) {
2089 u32 width, height, pitch, addr;
2090
2091 prom_printf("Setting btext !\n");
2092 prom_getprop(node, "width", &width, 4);
2093 prom_getprop(node, "height", &height, 4);
2094 prom_getprop(node, "linebytes", &pitch, 4);
2095 prom_getprop(node, "address", &addr, 4);
2096 prom_printf("W=%d H=%d LB=%d addr=0x%x\n",
2097 width, height, pitch, addr);
2098 btext_setup_display(width, height, 8, pitch, addr);
2099 }
2100#endif /* CONFIG_PPC_EARLY_DEBUG_BOOTX */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002101 }
2102}
2103
2104
2105/* Return (relocated) pointer to this much memory: moves initrd if reqd. */
2106static void __init *make_room(unsigned long *mem_start, unsigned long *mem_end,
2107 unsigned long needed, unsigned long align)
2108{
2109 void *ret;
2110
2111 *mem_start = _ALIGN(*mem_start, align);
2112 while ((*mem_start + needed) > *mem_end) {
2113 unsigned long room, chunk;
2114
2115 prom_debug("Chunk exhausted, claiming more at %x...\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002116 alloc_bottom);
2117 room = alloc_top - alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002118 if (room > DEVTREE_CHUNK_SIZE)
2119 room = DEVTREE_CHUNK_SIZE;
2120 if (room < PAGE_SIZE)
Anton Blanchardfbafd722011-07-25 20:47:51 +00002121 prom_panic("No memory for flatten_device_tree "
2122 "(no room)\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002123 chunk = alloc_up(room, 0);
2124 if (chunk == 0)
Anton Blanchardfbafd722011-07-25 20:47:51 +00002125 prom_panic("No memory for flatten_device_tree "
2126 "(claim failed)\n");
Anton Blanchard966728d2011-07-25 20:47:07 +00002127 *mem_end = chunk + room;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002128 }
2129
2130 ret = (void *)*mem_start;
2131 *mem_start += needed;
2132
2133 return ret;
2134}
2135
2136#define dt_push_token(token, mem_start, mem_end) \
2137 do { *((u32 *)make_room(mem_start, mem_end, 4, 4)) = token; } while(0)
2138
2139static unsigned long __init dt_find_string(char *str)
2140{
2141 char *s, *os;
2142
Anton Blanchard5827d412012-11-26 17:40:03 +00002143 s = os = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002144 s += 4;
Anton Blanchard5827d412012-11-26 17:40:03 +00002145 while (s < (char *)dt_string_end) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002146 if (strcmp(s, str) == 0)
2147 return s - os;
2148 s += strlen(s) + 1;
2149 }
2150 return 0;
2151}
2152
2153/*
2154 * The Open Firmware 1275 specification states properties must be 31 bytes or
2155 * less, however not all firmwares obey this. Make it 64 bytes to be safe.
2156 */
2157#define MAX_PROPERTY_NAME 64
2158
2159static void __init scan_dt_build_strings(phandle node,
2160 unsigned long *mem_start,
2161 unsigned long *mem_end)
2162{
2163 char *prev_name, *namep, *sstart;
2164 unsigned long soff;
2165 phandle child;
2166
Anton Blanchard5827d412012-11-26 17:40:03 +00002167 sstart = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002168
2169 /* get and store all property names */
Anton Blanchard5827d412012-11-26 17:40:03 +00002170 prev_name = "";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002171 for (;;) {
2172 /* 64 is max len of name including nul. */
2173 namep = make_room(mem_start, mem_end, MAX_PROPERTY_NAME, 1);
2174 if (call_prom("nextprop", 3, 1, node, prev_name, namep) != 1) {
2175 /* No more nodes: unwind alloc */
2176 *mem_start = (unsigned long)namep;
2177 break;
2178 }
2179
2180 /* skip "name" */
Anton Blanchard5827d412012-11-26 17:40:03 +00002181 if (strcmp(namep, "name") == 0) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002182 *mem_start = (unsigned long)namep;
Anton Blanchard5827d412012-11-26 17:40:03 +00002183 prev_name = "name";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002184 continue;
2185 }
2186 /* get/create string entry */
2187 soff = dt_find_string(namep);
2188 if (soff != 0) {
2189 *mem_start = (unsigned long)namep;
2190 namep = sstart + soff;
2191 } else {
2192 /* Trim off some if we can */
2193 *mem_start = (unsigned long)namep + strlen(namep) + 1;
Anton Blanchard5827d412012-11-26 17:40:03 +00002194 dt_string_end = *mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002195 }
2196 prev_name = namep;
2197 }
2198
2199 /* do all our children */
2200 child = call_prom("child", 1, 1, node);
2201 while (child != 0) {
2202 scan_dt_build_strings(child, mem_start, mem_end);
2203 child = call_prom("peer", 1, 1, child);
2204 }
2205}
2206
2207static void __init scan_dt_build_struct(phandle node, unsigned long *mem_start,
2208 unsigned long *mem_end)
2209{
2210 phandle child;
2211 char *namep, *prev_name, *sstart, *p, *ep, *lp, *path;
2212 unsigned long soff;
2213 unsigned char *valp;
2214 static char pname[MAX_PROPERTY_NAME];
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002215 int l, room, has_phandle = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002216
2217 dt_push_token(OF_DT_BEGIN_NODE, mem_start, mem_end);
2218
2219 /* get the node's full name */
2220 namep = (char *)*mem_start;
Paul Mackerrasc49888202005-10-26 21:52:53 +10002221 room = *mem_end - *mem_start;
2222 if (room > 255)
2223 room = 255;
2224 l = call_prom("package-to-path", 3, 1, node, namep, room);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002225 if (l >= 0) {
2226 /* Didn't fit? Get more room. */
Paul Mackerrasc49888202005-10-26 21:52:53 +10002227 if (l >= room) {
2228 if (l >= *mem_end - *mem_start)
2229 namep = make_room(mem_start, mem_end, l+1, 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002230 call_prom("package-to-path", 3, 1, node, namep, l);
2231 }
2232 namep[l] = '\0';
2233
2234 /* Fixup an Apple bug where they have bogus \0 chars in the
Paul Mackerrasa575b802005-10-23 17:23:21 +10002235 * middle of the path in some properties, and extract
2236 * the unit name (everything after the last '/').
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002237 */
Paul Mackerrasa575b802005-10-23 17:23:21 +10002238 for (lp = p = namep, ep = namep + l; p < ep; p++) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002239 if (*p == '/')
Paul Mackerrasa575b802005-10-23 17:23:21 +10002240 lp = namep;
2241 else if (*p != 0)
2242 *lp++ = *p;
2243 }
2244 *lp = 0;
2245 *mem_start = _ALIGN((unsigned long)lp + 1, 4);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002246 }
2247
2248 /* get it again for debugging */
Anton Blanchard5827d412012-11-26 17:40:03 +00002249 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002250 memset(path, 0, PROM_SCRATCH_SIZE);
2251 call_prom("package-to-path", 3, 1, node, path, PROM_SCRATCH_SIZE-1);
2252
2253 /* get and store all properties */
Anton Blanchard5827d412012-11-26 17:40:03 +00002254 prev_name = "";
2255 sstart = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002256 for (;;) {
2257 if (call_prom("nextprop", 3, 1, node, prev_name,
Anton Blanchard5827d412012-11-26 17:40:03 +00002258 pname) != 1)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002259 break;
2260
2261 /* skip "name" */
Anton Blanchard5827d412012-11-26 17:40:03 +00002262 if (strcmp(pname, "name") == 0) {
2263 prev_name = "name";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002264 continue;
2265 }
2266
2267 /* find string offset */
Anton Blanchard5827d412012-11-26 17:40:03 +00002268 soff = dt_find_string(pname);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002269 if (soff == 0) {
2270 prom_printf("WARNING: Can't find string index for"
Anton Blanchard5827d412012-11-26 17:40:03 +00002271 " <%s>, node %s\n", pname, path);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002272 break;
2273 }
2274 prev_name = sstart + soff;
2275
2276 /* get length */
Anton Blanchard5827d412012-11-26 17:40:03 +00002277 l = call_prom("getproplen", 2, 1, node, pname);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002278
2279 /* sanity checks */
2280 if (l == PROM_ERROR)
2281 continue;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002282
2283 /* push property head */
2284 dt_push_token(OF_DT_PROP, mem_start, mem_end);
2285 dt_push_token(l, mem_start, mem_end);
2286 dt_push_token(soff, mem_start, mem_end);
2287
2288 /* push property content */
2289 valp = make_room(mem_start, mem_end, l, 4);
Anton Blanchard5827d412012-11-26 17:40:03 +00002290 call_prom("getprop", 4, 1, node, pname, valp, l);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002291 *mem_start = _ALIGN(*mem_start, 4);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002292
Anton Blanchard5827d412012-11-26 17:40:03 +00002293 if (!strcmp(pname, "phandle"))
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002294 has_phandle = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002295 }
2296
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002297 /* Add a "linux,phandle" property if no "phandle" property already
2298 * existed (can happen with OPAL)
2299 */
2300 if (!has_phandle) {
Anton Blanchard5827d412012-11-26 17:40:03 +00002301 soff = dt_find_string("linux,phandle");
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002302 if (soff == 0)
2303 prom_printf("WARNING: Can't find string index for"
2304 " <linux-phandle> node %s\n", path);
2305 else {
2306 dt_push_token(OF_DT_PROP, mem_start, mem_end);
2307 dt_push_token(4, mem_start, mem_end);
2308 dt_push_token(soff, mem_start, mem_end);
2309 valp = make_room(mem_start, mem_end, 4, 4);
2310 *(u32 *)valp = node;
2311 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002312 }
2313
2314 /* do all our children */
2315 child = call_prom("child", 1, 1, node);
2316 while (child != 0) {
2317 scan_dt_build_struct(child, mem_start, mem_end);
2318 child = call_prom("peer", 1, 1, child);
2319 }
2320
2321 dt_push_token(OF_DT_END_NODE, mem_start, mem_end);
2322}
2323
2324static void __init flatten_device_tree(void)
2325{
2326 phandle root;
2327 unsigned long mem_start, mem_end, room;
2328 struct boot_param_header *hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002329 char *namep;
2330 u64 *rsvmap;
2331
2332 /*
2333 * Check how much room we have between alloc top & bottom (+/- a
Anton Blanchardfbafd722011-07-25 20:47:51 +00002334 * few pages), crop to 1MB, as this is our "chunk" size
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002335 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002336 room = alloc_top - alloc_bottom - 0x4000;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002337 if (room > DEVTREE_CHUNK_SIZE)
2338 room = DEVTREE_CHUNK_SIZE;
Anton Blanchard5827d412012-11-26 17:40:03 +00002339 prom_debug("starting device tree allocs at %x\n", alloc_bottom);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002340
2341 /* Now try to claim that */
2342 mem_start = (unsigned long)alloc_up(room, PAGE_SIZE);
2343 if (mem_start == 0)
2344 prom_panic("Can't allocate initial device-tree chunk\n");
Anton Blanchard966728d2011-07-25 20:47:07 +00002345 mem_end = mem_start + room;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002346
2347 /* Get root of tree */
2348 root = call_prom("peer", 1, 1, (phandle)0);
2349 if (root == (phandle)0)
2350 prom_panic ("couldn't get device tree root\n");
2351
2352 /* Build header and make room for mem rsv map */
2353 mem_start = _ALIGN(mem_start, 4);
2354 hdr = make_room(&mem_start, &mem_end,
2355 sizeof(struct boot_param_header), 4);
Anton Blanchard5827d412012-11-26 17:40:03 +00002356 dt_header_start = (unsigned long)hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002357 rsvmap = make_room(&mem_start, &mem_end, sizeof(mem_reserve_map), 8);
2358
2359 /* Start of strings */
2360 mem_start = PAGE_ALIGN(mem_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002361 dt_string_start = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002362 mem_start += 4; /* hole */
2363
2364 /* Add "linux,phandle" in there, we'll need it */
2365 namep = make_room(&mem_start, &mem_end, 16, 1);
Anton Blanchard5827d412012-11-26 17:40:03 +00002366 strcpy(namep, "linux,phandle");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002367 mem_start = (unsigned long)namep + strlen(namep) + 1;
2368
2369 /* Build string array */
2370 prom_printf("Building dt strings...\n");
2371 scan_dt_build_strings(root, &mem_start, &mem_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002372 dt_string_end = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002373
2374 /* Build structure */
2375 mem_start = PAGE_ALIGN(mem_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002376 dt_struct_start = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002377 prom_printf("Building dt structure...\n");
2378 scan_dt_build_struct(root, &mem_start, &mem_end);
2379 dt_push_token(OF_DT_END, &mem_start, &mem_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002380 dt_struct_end = PAGE_ALIGN(mem_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002381
2382 /* Finish header */
Anton Blanchard5827d412012-11-26 17:40:03 +00002383 hdr->boot_cpuid_phys = prom.cpu;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002384 hdr->magic = OF_DT_HEADER;
Anton Blanchard5827d412012-11-26 17:40:03 +00002385 hdr->totalsize = dt_struct_end - dt_header_start;
2386 hdr->off_dt_struct = dt_struct_start - dt_header_start;
2387 hdr->off_dt_strings = dt_string_start - dt_header_start;
2388 hdr->dt_strings_size = dt_string_end - dt_string_start;
2389 hdr->off_mem_rsvmap = ((unsigned long)rsvmap) - dt_header_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002390 hdr->version = OF_DT_VERSION;
2391 /* Version 16 is not backward compatible */
2392 hdr->last_comp_version = 0x10;
2393
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -05002394 /* Copy the reserve map in */
Anton Blanchard5827d412012-11-26 17:40:03 +00002395 memcpy(rsvmap, mem_reserve_map, sizeof(mem_reserve_map));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002396
2397#ifdef DEBUG_PROM
2398 {
2399 int i;
2400 prom_printf("reserved memory map:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00002401 for (i = 0; i < mem_reserve_cnt; i++)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002402 prom_printf(" %x - %x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002403 mem_reserve_map[i].base,
2404 mem_reserve_map[i].size);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002405 }
2406#endif
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -05002407 /* Bump mem_reserve_cnt to cause further reservations to fail
2408 * since it's too late.
2409 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002410 mem_reserve_cnt = MEM_RESERVE_MAP_SIZE;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002411
2412 prom_printf("Device tree strings 0x%x -> 0x%x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002413 dt_string_start, dt_string_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002414 prom_printf("Device tree struct 0x%x -> 0x%x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002415 dt_struct_start, dt_struct_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002416
2417}
2418
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002419#ifdef CONFIG_PPC_MAPLE
2420/* PIBS Version 1.05.0000 04/26/2005 has an incorrect /ht/isa/ranges property.
2421 * The values are bad, and it doesn't even have the right number of cells. */
2422static void __init fixup_device_tree_maple(void)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002423{
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002424 phandle isa;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002425 u32 rloc = 0x01002000; /* IO space; PCI device = 4 */
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002426 u32 isa_ranges[6];
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002427 char *name;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002428
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002429 name = "/ht@0/isa@4";
2430 isa = call_prom("finddevice", 1, 1, ADDR(name));
2431 if (!PHANDLE_VALID(isa)) {
2432 name = "/ht@0/isa@6";
2433 isa = call_prom("finddevice", 1, 1, ADDR(name));
2434 rloc = 0x01003000; /* IO space; PCI device = 6 */
2435 }
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002436 if (!PHANDLE_VALID(isa))
2437 return;
2438
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002439 if (prom_getproplen(isa, "ranges") != 12)
2440 return;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002441 if (prom_getprop(isa, "ranges", isa_ranges, sizeof(isa_ranges))
2442 == PROM_ERROR)
2443 return;
2444
2445 if (isa_ranges[0] != 0x1 ||
2446 isa_ranges[1] != 0xf4000000 ||
2447 isa_ranges[2] != 0x00010000)
2448 return;
2449
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002450 prom_printf("Fixing up bogus ISA range on Maple/Apache...\n");
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002451
2452 isa_ranges[0] = 0x1;
2453 isa_ranges[1] = 0x0;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002454 isa_ranges[2] = rloc;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002455 isa_ranges[3] = 0x0;
2456 isa_ranges[4] = 0x0;
2457 isa_ranges[5] = 0x00010000;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002458 prom_setprop(isa, name, "ranges",
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002459 isa_ranges, sizeof(isa_ranges));
2460}
Harry Ciao8f101a052009-06-17 16:28:00 -07002461
2462#define CPC925_MC_START 0xf8000000
2463#define CPC925_MC_LENGTH 0x1000000
2464/* The values for memory-controller don't have right number of cells */
2465static void __init fixup_device_tree_maple_memory_controller(void)
2466{
2467 phandle mc;
2468 u32 mc_reg[4];
2469 char *name = "/hostbridge@f8000000";
Harry Ciao8f101a052009-06-17 16:28:00 -07002470 u32 ac, sc;
2471
2472 mc = call_prom("finddevice", 1, 1, ADDR(name));
2473 if (!PHANDLE_VALID(mc))
2474 return;
2475
2476 if (prom_getproplen(mc, "reg") != 8)
2477 return;
2478
Anton Blanchard5827d412012-11-26 17:40:03 +00002479 prom_getprop(prom.root, "#address-cells", &ac, sizeof(ac));
2480 prom_getprop(prom.root, "#size-cells", &sc, sizeof(sc));
Harry Ciao8f101a052009-06-17 16:28:00 -07002481 if ((ac != 2) || (sc != 2))
2482 return;
2483
2484 if (prom_getprop(mc, "reg", mc_reg, sizeof(mc_reg)) == PROM_ERROR)
2485 return;
2486
2487 if (mc_reg[0] != CPC925_MC_START || mc_reg[1] != CPC925_MC_LENGTH)
2488 return;
2489
2490 prom_printf("Fixing up bogus hostbridge on Maple...\n");
2491
2492 mc_reg[0] = 0x0;
2493 mc_reg[1] = CPC925_MC_START;
2494 mc_reg[2] = 0x0;
2495 mc_reg[3] = CPC925_MC_LENGTH;
2496 prom_setprop(mc, name, "reg", mc_reg, sizeof(mc_reg));
2497}
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002498#else
2499#define fixup_device_tree_maple()
Harry Ciao8f101a052009-06-17 16:28:00 -07002500#define fixup_device_tree_maple_memory_controller()
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002501#endif
2502
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002503#ifdef CONFIG_PPC_CHRP
Olaf Heringe4805922007-04-04 18:20:04 +02002504/*
2505 * Pegasos and BriQ lacks the "ranges" property in the isa node
2506 * Pegasos needs decimal IRQ 14/15, not hexadecimal
Olaf Hering556ecf92007-08-18 04:27:17 +10002507 * Pegasos has the IDE configured in legacy mode, but advertised as native
Olaf Heringe4805922007-04-04 18:20:04 +02002508 */
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002509static void __init fixup_device_tree_chrp(void)
2510{
Olaf Heringe4805922007-04-04 18:20:04 +02002511 phandle ph;
2512 u32 prop[6];
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002513 u32 rloc = 0x01006000; /* IO space; PCI device = 12 */
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002514 char *name;
2515 int rc;
2516
2517 name = "/pci@80000000/isa@c";
Olaf Heringe4805922007-04-04 18:20:04 +02002518 ph = call_prom("finddevice", 1, 1, ADDR(name));
2519 if (!PHANDLE_VALID(ph)) {
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002520 name = "/pci@ff500000/isa@6";
Olaf Heringe4805922007-04-04 18:20:04 +02002521 ph = call_prom("finddevice", 1, 1, ADDR(name));
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002522 rloc = 0x01003000; /* IO space; PCI device = 6 */
2523 }
Olaf Heringe4805922007-04-04 18:20:04 +02002524 if (PHANDLE_VALID(ph)) {
2525 rc = prom_getproplen(ph, "ranges");
2526 if (rc == 0 || rc == PROM_ERROR) {
2527 prom_printf("Fixing up missing ISA range on Pegasos...\n");
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002528
Olaf Heringe4805922007-04-04 18:20:04 +02002529 prop[0] = 0x1;
2530 prop[1] = 0x0;
2531 prop[2] = rloc;
2532 prop[3] = 0x0;
2533 prop[4] = 0x0;
2534 prop[5] = 0x00010000;
2535 prom_setprop(ph, name, "ranges", prop, sizeof(prop));
2536 }
2537 }
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002538
Olaf Heringe4805922007-04-04 18:20:04 +02002539 name = "/pci@80000000/ide@C,1";
2540 ph = call_prom("finddevice", 1, 1, ADDR(name));
2541 if (PHANDLE_VALID(ph)) {
2542 prom_printf("Fixing up IDE interrupt on Pegasos...\n");
2543 prop[0] = 14;
2544 prop[1] = 0x0;
Olaf Hering556ecf92007-08-18 04:27:17 +10002545 prom_setprop(ph, name, "interrupts", prop, 2*sizeof(u32));
2546 prom_printf("Fixing up IDE class-code on Pegasos...\n");
2547 rc = prom_getprop(ph, "class-code", prop, sizeof(u32));
2548 if (rc == sizeof(u32)) {
2549 prop[0] &= ~0x5;
2550 prom_setprop(ph, name, "class-code", prop, sizeof(u32));
2551 }
Olaf Heringe4805922007-04-04 18:20:04 +02002552 }
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002553}
2554#else
2555#define fixup_device_tree_chrp()
2556#endif
2557
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002558#if defined(CONFIG_PPC64) && defined(CONFIG_PPC_PMAC)
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002559static void __init fixup_device_tree_pmac(void)
2560{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002561 phandle u3, i2c, mpic;
2562 u32 u3_rev;
2563 u32 interrupts[2];
2564 u32 parent;
2565
2566 /* Some G5s have a missing interrupt definition, fix it up here */
2567 u3 = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000"));
2568 if (!PHANDLE_VALID(u3))
2569 return;
2570 i2c = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/i2c@f8001000"));
2571 if (!PHANDLE_VALID(i2c))
2572 return;
2573 mpic = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/mpic@f8040000"));
2574 if (!PHANDLE_VALID(mpic))
2575 return;
2576
2577 /* check if proper rev of u3 */
2578 if (prom_getprop(u3, "device-rev", &u3_rev, sizeof(u3_rev))
2579 == PROM_ERROR)
2580 return;
Benjamin Herrenschmidt7d496972005-11-07 14:36:21 +11002581 if (u3_rev < 0x35 || u3_rev > 0x39)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002582 return;
2583 /* does it need fixup ? */
2584 if (prom_getproplen(i2c, "interrupts") > 0)
2585 return;
2586
2587 prom_printf("fixing up bogus interrupts for u3 i2c...\n");
2588
2589 /* interrupt on this revision of u3 is number 0 and level */
2590 interrupts[0] = 0;
2591 interrupts[1] = 1;
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002592 prom_setprop(i2c, "/u3@0,f8000000/i2c@f8001000", "interrupts",
2593 &interrupts, sizeof(interrupts));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002594 parent = (u32)mpic;
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002595 prom_setprop(i2c, "/u3@0,f8000000/i2c@f8001000", "interrupt-parent",
2596 &parent, sizeof(parent));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002597}
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002598#else
2599#define fixup_device_tree_pmac()
2600#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002601
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002602#ifdef CONFIG_PPC_EFIKA
Grant Likely94d2dde2008-01-24 22:25:32 -07002603/*
2604 * The MPC5200 FEC driver requires an phy-handle property to tell it how
2605 * to talk to the phy. If the phy-handle property is missing, then this
2606 * function is called to add the appropriate nodes and link it to the
2607 * ethernet node.
2608 */
2609static void __init fixup_device_tree_efika_add_phy(void)
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002610{
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002611 u32 node;
2612 char prop[64];
Grant Likely94d2dde2008-01-24 22:25:32 -07002613 int rv;
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002614
Grant Likely94d2dde2008-01-24 22:25:32 -07002615 /* Check if /builtin/ethernet exists - bail if it doesn't */
2616 node = call_prom("finddevice", 1, 1, ADDR("/builtin/ethernet"));
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002617 if (!PHANDLE_VALID(node))
2618 return;
2619
Grant Likely94d2dde2008-01-24 22:25:32 -07002620 /* Check if the phy-handle property exists - bail if it does */
2621 rv = prom_getprop(node, "phy-handle", prop, sizeof(prop));
2622 if (!rv)
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002623 return;
2624
Grant Likely94d2dde2008-01-24 22:25:32 -07002625 /*
2626 * At this point the ethernet device doesn't have a phy described.
2627 * Now we need to add the missing phy node and linkage
2628 */
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002629
Grant Likely94d2dde2008-01-24 22:25:32 -07002630 /* Check for an MDIO bus node - if missing then create one */
Olaf Hering6f4347c2008-01-10 01:06:08 +11002631 node = call_prom("finddevice", 1, 1, ADDR("/builtin/mdio"));
2632 if (!PHANDLE_VALID(node)) {
2633 prom_printf("Adding Ethernet MDIO node\n");
2634 call_prom("interpret", 1, 1,
2635 " s\" /builtin\" find-device"
2636 " new-device"
2637 " 1 encode-int s\" #address-cells\" property"
2638 " 0 encode-int s\" #size-cells\" property"
Grant Likely94d2dde2008-01-24 22:25:32 -07002639 " s\" mdio\" device-name"
2640 " s\" fsl,mpc5200b-mdio\" encode-string"
Olaf Hering6f4347c2008-01-10 01:06:08 +11002641 " s\" compatible\" property"
2642 " 0xf0003000 0x400 reg"
2643 " 0x2 encode-int"
2644 " 0x5 encode-int encode+"
2645 " 0x3 encode-int encode+"
2646 " s\" interrupts\" property"
2647 " finish-device");
2648 };
2649
Grant Likely94d2dde2008-01-24 22:25:32 -07002650 /* Check for a PHY device node - if missing then create one and
2651 * give it's phandle to the ethernet node */
2652 node = call_prom("finddevice", 1, 1,
2653 ADDR("/builtin/mdio/ethernet-phy"));
Olaf Hering6f4347c2008-01-10 01:06:08 +11002654 if (!PHANDLE_VALID(node)) {
2655 prom_printf("Adding Ethernet PHY node\n");
2656 call_prom("interpret", 1, 1,
2657 " s\" /builtin/mdio\" find-device"
2658 " new-device"
2659 " s\" ethernet-phy\" device-name"
2660 " 0x10 encode-int s\" reg\" property"
2661 " my-self"
2662 " ihandle>phandle"
2663 " finish-device"
2664 " s\" /builtin/ethernet\" find-device"
2665 " encode-int"
2666 " s\" phy-handle\" property"
2667 " device-end");
2668 }
Grant Likely94d2dde2008-01-24 22:25:32 -07002669}
Olaf Hering6f4347c2008-01-10 01:06:08 +11002670
Grant Likely94d2dde2008-01-24 22:25:32 -07002671static void __init fixup_device_tree_efika(void)
2672{
2673 int sound_irq[3] = { 2, 2, 0 };
2674 int bcomm_irq[3*16] = { 3,0,0, 3,1,0, 3,2,0, 3,3,0,
2675 3,4,0, 3,5,0, 3,6,0, 3,7,0,
2676 3,8,0, 3,9,0, 3,10,0, 3,11,0,
2677 3,12,0, 3,13,0, 3,14,0, 3,15,0 };
2678 u32 node;
2679 char prop[64];
2680 int rv, len;
2681
2682 /* Check if we're really running on a EFIKA */
2683 node = call_prom("finddevice", 1, 1, ADDR("/"));
2684 if (!PHANDLE_VALID(node))
2685 return;
2686
2687 rv = prom_getprop(node, "model", prop, sizeof(prop));
2688 if (rv == PROM_ERROR)
2689 return;
2690 if (strcmp(prop, "EFIKA5K2"))
2691 return;
2692
2693 prom_printf("Applying EFIKA device tree fixups\n");
2694
2695 /* Claiming to be 'chrp' is death */
2696 node = call_prom("finddevice", 1, 1, ADDR("/"));
2697 rv = prom_getprop(node, "device_type", prop, sizeof(prop));
2698 if (rv != PROM_ERROR && (strcmp(prop, "chrp") == 0))
2699 prom_setprop(node, "/", "device_type", "efika", sizeof("efika"));
2700
David Woodhouse7f4392c2008-04-14 02:52:38 +10002701 /* CODEGEN,description is exposed in /proc/cpuinfo so
2702 fix that too */
2703 rv = prom_getprop(node, "CODEGEN,description", prop, sizeof(prop));
2704 if (rv != PROM_ERROR && (strstr(prop, "CHRP")))
2705 prom_setprop(node, "/", "CODEGEN,description",
2706 "Efika 5200B PowerPC System",
2707 sizeof("Efika 5200B PowerPC System"));
2708
Grant Likely94d2dde2008-01-24 22:25:32 -07002709 /* Fixup bestcomm interrupts property */
2710 node = call_prom("finddevice", 1, 1, ADDR("/builtin/bestcomm"));
2711 if (PHANDLE_VALID(node)) {
2712 len = prom_getproplen(node, "interrupts");
2713 if (len == 12) {
2714 prom_printf("Fixing bestcomm interrupts property\n");
2715 prom_setprop(node, "/builtin/bestcom", "interrupts",
2716 bcomm_irq, sizeof(bcomm_irq));
2717 }
2718 }
2719
2720 /* Fixup sound interrupts property */
2721 node = call_prom("finddevice", 1, 1, ADDR("/builtin/sound"));
2722 if (PHANDLE_VALID(node)) {
2723 rv = prom_getprop(node, "interrupts", prop, sizeof(prop));
2724 if (rv == PROM_ERROR) {
2725 prom_printf("Adding sound interrupts property\n");
2726 prom_setprop(node, "/builtin/sound", "interrupts",
2727 sound_irq, sizeof(sound_irq));
2728 }
2729 }
2730
2731 /* Make sure ethernet phy-handle property exists */
2732 fixup_device_tree_efika_add_phy();
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002733}
2734#else
2735#define fixup_device_tree_efika()
2736#endif
2737
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002738static void __init fixup_device_tree(void)
2739{
2740 fixup_device_tree_maple();
Harry Ciao8f101a052009-06-17 16:28:00 -07002741 fixup_device_tree_maple_memory_controller();
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002742 fixup_device_tree_chrp();
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002743 fixup_device_tree_pmac();
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002744 fixup_device_tree_efika();
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002745}
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002746
2747static void __init prom_find_boot_cpu(void)
2748{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002749 u32 getprop_rval;
2750 ihandle prom_cpu;
2751 phandle cpu_pkg;
2752
Anton Blanchard5827d412012-11-26 17:40:03 +00002753 prom.cpu = 0;
2754 if (prom_getprop(prom.chosen, "cpu", &prom_cpu, sizeof(prom_cpu)) <= 0)
Paul Mackerrasa575b802005-10-23 17:23:21 +10002755 return;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002756
2757 cpu_pkg = call_prom("instance-to-package", 1, 1, prom_cpu);
2758
2759 prom_getprop(cpu_pkg, "reg", &getprop_rval, sizeof(getprop_rval));
Anton Blanchard5827d412012-11-26 17:40:03 +00002760 prom.cpu = getprop_rval;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002761
Anton Blanchard5827d412012-11-26 17:40:03 +00002762 prom_debug("Booting CPU hw index = %lu\n", prom.cpu);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002763}
2764
2765static void __init prom_check_initrd(unsigned long r3, unsigned long r4)
2766{
2767#ifdef CONFIG_BLK_DEV_INITRD
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002768 if (r3 && r4 && r4 != 0xdeadbeef) {
2769 unsigned long val;
2770
Anton Blanchard5827d412012-11-26 17:40:03 +00002771 prom_initrd_start = is_kernel_addr(r3) ? __pa(r3) : r3;
2772 prom_initrd_end = prom_initrd_start + r4;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002773
Anton Blanchard5827d412012-11-26 17:40:03 +00002774 val = prom_initrd_start;
2775 prom_setprop(prom.chosen, "/chosen", "linux,initrd-start",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002776 &val, sizeof(val));
Anton Blanchard5827d412012-11-26 17:40:03 +00002777 val = prom_initrd_end;
2778 prom_setprop(prom.chosen, "/chosen", "linux,initrd-end",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002779 &val, sizeof(val));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002780
Anton Blanchard5827d412012-11-26 17:40:03 +00002781 reserve_mem(prom_initrd_start,
2782 prom_initrd_end - prom_initrd_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002783
Anton Blanchard5827d412012-11-26 17:40:03 +00002784 prom_debug("initrd_start=0x%x\n", prom_initrd_start);
2785 prom_debug("initrd_end=0x%x\n", prom_initrd_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002786 }
2787#endif /* CONFIG_BLK_DEV_INITRD */
2788}
2789
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002790#ifdef CONFIG_PPC64
2791#ifdef CONFIG_RELOCATABLE
2792static void reloc_toc(void)
2793{
2794}
2795
2796static void unreloc_toc(void)
2797{
2798}
2799#else
Anton Blanchard16744002013-03-12 01:51:51 +00002800static void __reloc_toc(unsigned long offset, unsigned long nr_entries)
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002801{
2802 unsigned long i;
Anton Blanchard16744002013-03-12 01:51:51 +00002803 unsigned long *toc_entry;
2804
2805 /* Get the start of the TOC by using r2 directly. */
2806 asm volatile("addi %0,2,-0x8000" : "=b" (toc_entry));
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002807
2808 for (i = 0; i < nr_entries; i++) {
2809 *toc_entry = *toc_entry + offset;
2810 toc_entry++;
2811 }
2812}
2813
2814static void reloc_toc(void)
2815{
2816 unsigned long offset = reloc_offset();
2817 unsigned long nr_entries =
2818 (__prom_init_toc_end - __prom_init_toc_start) / sizeof(long);
2819
Anton Blanchard16744002013-03-12 01:51:51 +00002820 __reloc_toc(offset, nr_entries);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002821
2822 mb();
2823}
2824
2825static void unreloc_toc(void)
2826{
2827 unsigned long offset = reloc_offset();
2828 unsigned long nr_entries =
2829 (__prom_init_toc_end - __prom_init_toc_start) / sizeof(long);
2830
2831 mb();
2832
Anton Blanchard16744002013-03-12 01:51:51 +00002833 __reloc_toc(-offset, nr_entries);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002834}
2835#endif
2836#endif
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002837
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002838/*
2839 * We enter here early on, when the Open Firmware prom is still
2840 * handling exceptions and the MMU hash table for us.
2841 */
2842
2843unsigned long __init prom_init(unsigned long r3, unsigned long r4,
2844 unsigned long pp,
Paul Mackerras549e8152008-08-30 11:43:47 +10002845 unsigned long r6, unsigned long r7,
2846 unsigned long kbase)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002847{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002848 unsigned long hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002849
2850#ifdef CONFIG_PPC32
Paul Mackerras549e8152008-08-30 11:43:47 +10002851 unsigned long offset = reloc_offset();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002852 reloc_got2(offset);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002853#else
2854 reloc_toc();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002855#endif
2856
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002857 /*
2858 * First zero the BSS
2859 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002860 memset(&__bss_start, 0, __bss_stop - __bss_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002861
2862 /*
2863 * Init interface to Open Firmware, get some node references,
2864 * like /chosen
2865 */
2866 prom_init_client_services(pp);
2867
2868 /*
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002869 * See if this OF is old enough that we need to do explicit maps
2870 * and other workarounds
2871 */
2872 prom_find_mmu();
2873
2874 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002875 * Init prom stdout device
2876 */
2877 prom_init_stdout();
2878
Anton Blanchard5827d412012-11-26 17:40:03 +00002879 prom_printf("Preparing to boot %s", linux_banner);
Michael Ellermane7943fb2009-03-04 19:02:01 +00002880
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002881 /*
2882 * Get default machine type. At this point, we do not differentiate
2883 * between pSeries SMP and pSeries LPAR
2884 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002885 of_platform = prom_find_machine_type();
2886 prom_printf("Detected machine type: %x\n", of_platform);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002887
Suzuki Poulose0f890c82011-12-14 22:57:15 +00002888#ifndef CONFIG_NONSTATIC_KERNEL
Olaf Heringadd60ef2006-03-23 22:03:57 +01002889 /* Bail if this is a kdump kernel. */
2890 if (PHYSICAL_START > 0)
2891 prom_panic("Error: You can't boot a kdump kernel from OF!\n");
Paul Mackerras549e8152008-08-30 11:43:47 +10002892#endif
Olaf Heringadd60ef2006-03-23 22:03:57 +01002893
2894 /*
2895 * Check for an initrd
2896 */
2897 prom_check_initrd(r3, r4);
2898
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002899#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002900 /*
2901 * On pSeries, inform the firmware about our capabilities
2902 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002903 if (of_platform == PLATFORM_PSERIES ||
2904 of_platform == PLATFORM_PSERIES_LPAR)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002905 prom_send_capabilities();
2906#endif
2907
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002908 /*
Arnd Bergmannf3f66f52005-10-31 20:08:37 -05002909 * Copy the CPU hold code
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002910 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002911 if (of_platform != PLATFORM_POWERMAC)
Paul Mackerras549e8152008-08-30 11:43:47 +10002912 copy_and_flush(0, kbase, 0x100, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002913
2914 /*
2915 * Do early parsing of command line
2916 */
2917 early_cmdline_parse();
2918
2919 /*
2920 * Initialize memory management within prom_init
2921 */
2922 prom_init_mem();
2923
2924 /*
2925 * Determine which cpu is actually running right _now_
2926 */
2927 prom_find_boot_cpu();
2928
2929 /*
2930 * Initialize display devices
2931 */
2932 prom_check_displays();
2933
2934#ifdef CONFIG_PPC64
2935 /*
2936 * Initialize IOMMU (TCE tables) on pSeries. Do that before anything else
2937 * that uses the allocator, we need to make sure we get the top of memory
2938 * available for us here...
2939 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002940 if (of_platform == PLATFORM_PSERIES)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002941 prom_initialize_tce_table();
2942#endif
2943
2944 /*
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002945 * On non-powermacs, try to instantiate RTAS. PowerMacs don't
2946 * have a usable RTAS implementation.
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002947 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002948 if (of_platform != PLATFORM_POWERMAC &&
2949 of_platform != PLATFORM_OPAL)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002950 prom_instantiate_rtas();
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002951
2952#ifdef CONFIG_PPC_POWERNV
2953 /* Detect HAL and try instanciating it & doing takeover */
Anton Blanchard5827d412012-11-26 17:40:03 +00002954 if (of_platform == PLATFORM_PSERIES_LPAR) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002955 prom_query_opal();
Anton Blanchard5827d412012-11-26 17:40:03 +00002956 if (of_platform == PLATFORM_OPAL) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002957 prom_opal_hold_cpus();
2958 prom_opal_takeover();
2959 }
Anton Blanchard5827d412012-11-26 17:40:03 +00002960 } else if (of_platform == PLATFORM_OPAL)
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002961 prom_instantiate_opal();
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002962#endif
2963
Ashley Lai4a727422012-08-14 18:34:57 -05002964#ifdef CONFIG_PPC64
2965 /* instantiate sml */
2966 prom_instantiate_sml();
2967#endif
2968
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002969 /*
2970 * On non-powermacs, put all CPUs in spin-loops.
2971 *
2972 * PowerMacs use a different mechanism to spin CPUs
2973 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002974 if (of_platform != PLATFORM_POWERMAC &&
2975 of_platform != PLATFORM_OPAL)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002976 prom_hold_cpus();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002977
2978 /*
2979 * Fill in some infos for use by the kernel later on
2980 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002981 if (prom_memory_limit)
2982 prom_setprop(prom.chosen, "/chosen", "linux,memory-limit",
2983 &prom_memory_limit,
Benjamin Krillcf687872009-07-27 22:02:39 +00002984 sizeof(prom_memory_limit));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002985#ifdef CONFIG_PPC64
Anton Blanchard5827d412012-11-26 17:40:03 +00002986 if (prom_iommu_off)
2987 prom_setprop(prom.chosen, "/chosen", "linux,iommu-off",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002988 NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002989
Anton Blanchard5827d412012-11-26 17:40:03 +00002990 if (prom_iommu_force_on)
2991 prom_setprop(prom.chosen, "/chosen", "linux,iommu-force-on",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002992 NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002993
Anton Blanchard5827d412012-11-26 17:40:03 +00002994 if (prom_tce_alloc_start) {
2995 prom_setprop(prom.chosen, "/chosen", "linux,tce-alloc-start",
2996 &prom_tce_alloc_start,
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002997 sizeof(prom_tce_alloc_start));
Anton Blanchard5827d412012-11-26 17:40:03 +00002998 prom_setprop(prom.chosen, "/chosen", "linux,tce-alloc-end",
2999 &prom_tce_alloc_end,
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003000 sizeof(prom_tce_alloc_end));
3001 }
3002#endif
3003
3004 /*
3005 * Fixup any known bugs in the device-tree
3006 */
3007 fixup_device_tree();
3008
3009 /*
3010 * Now finally create the flattened device-tree
3011 */
Anton Blanchard1f8737a2009-03-31 20:06:15 +00003012 prom_printf("copying OF device tree...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003013 flatten_device_tree();
3014
Paul Mackerras3825ac02005-11-08 22:48:08 +11003015 /*
3016 * in case stdin is USB and still active on IBM machines...
3017 * Unfortunately quiesce crashes on some powermacs if we have
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003018 * closed stdin already (in particular the powerbook 101). It
3019 * appears that the OPAL version of OFW doesn't like it either.
Paul Mackerras3825ac02005-11-08 22:48:08 +11003020 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003021 if (of_platform != PLATFORM_POWERMAC &&
3022 of_platform != PLATFORM_OPAL)
Paul Mackerras3825ac02005-11-08 22:48:08 +11003023 prom_close_stdin();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003024
3025 /*
3026 * Call OF "quiesce" method to shut down pending DMA's from
3027 * devices etc...
3028 */
Anton Blanchard1f8737a2009-03-31 20:06:15 +00003029 prom_printf("Calling quiesce...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003030 call_prom("quiesce", 0, 0);
3031
3032 /*
3033 * And finally, call the kernel passing it the flattened device
3034 * tree and NULL as r5, thus triggering the new entry point which
3035 * is common to us and kexec
3036 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003037 hdr = dt_header_start;
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003038
3039 /* Don't print anything after quiesce under OPAL, it crashes OFW */
Anton Blanchard5827d412012-11-26 17:40:03 +00003040 if (of_platform != PLATFORM_OPAL) {
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003041 prom_printf("returning from prom_init\n");
3042 prom_debug("->dt_header_start=0x%x\n", hdr);
3043 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003044
3045#ifdef CONFIG_PPC32
3046 reloc_got2(-offset);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003047#else
3048 unreloc_toc();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003049#endif
3050
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00003051#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
3052 /* OPAL early debug gets the OPAL base & entry in r8 and r9 */
3053 __start(hdr, kbase, 0, 0, 0,
Anton Blanchard5827d412012-11-26 17:40:03 +00003054 prom_opal_base, prom_opal_entry);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00003055#else
3056 __start(hdr, kbase, 0, 0, 0, 0, 0);
3057#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003058
3059 return 0;
3060}