blob: d05a2884ffb9d8b23df236bd7e8dcecea94e4eba [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>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100040#include <asm/iommu.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100041#include <asm/btext.h>
42#include <asm/sections.h>
43#include <asm/machdep.h>
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +000044#include <asm/opal.h>
Daniel Axtens0545d542016-09-06 15:32:43 +100045#include <asm/asm-prototypes.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 {
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000110 __be32 service;
111 __be32 nargs;
112 __be32 nret;
113 __be32 args[10];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000114};
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 {
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000126 __be64 base;
127 __be64 size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000128};
129
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000130typedef __be32 cell_t;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000131
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
Benjamin Herrenschmidtdbe78b42013-09-25 14:02:50 +1000199static bool rtas_has_query_cpu_stopped;
200
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000201
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000202/*
203 * Error results ... some OF calls will return "-1" on error, some
204 * will return 0, some will return either. To simplify, here are
205 * macros to use with any ihandle or phandle return value to check if
206 * it is valid
207 */
208
209#define PROM_ERROR (-1u)
210#define PHANDLE_VALID(p) ((p) != 0 && (p) != PROM_ERROR)
211#define IHANDLE_VALID(i) ((i) != 0 && (i) != PROM_ERROR)
212
213
214/* This is the one and *ONLY* place where we actually call open
215 * firmware.
216 */
217
218static int __init call_prom(const char *service, int nargs, int nret, ...)
219{
220 int i;
221 struct prom_args args;
222 va_list list;
223
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000224 args.service = cpu_to_be32(ADDR(service));
225 args.nargs = cpu_to_be32(nargs);
226 args.nret = cpu_to_be32(nret);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000227
228 va_start(list, nret);
229 for (i = 0; i < nargs; i++)
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000230 args.args[i] = cpu_to_be32(va_arg(list, prom_arg_t));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000231 va_end(list);
232
233 for (i = 0; i < nret; i++)
234 args.args[nargs+i] = 0;
235
Anton Blanchard5827d412012-11-26 17:40:03 +0000236 if (enter_prom(&args, prom_entry) < 0)
Paul Mackerrasc49888202005-10-26 21:52:53 +1000237 return PROM_ERROR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000238
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000239 return (nret > 0) ? be32_to_cpu(args.args[nargs]) : 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000240}
241
242static int __init call_prom_ret(const char *service, int nargs, int nret,
243 prom_arg_t *rets, ...)
244{
245 int i;
246 struct prom_args args;
247 va_list list;
248
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000249 args.service = cpu_to_be32(ADDR(service));
250 args.nargs = cpu_to_be32(nargs);
251 args.nret = cpu_to_be32(nret);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000252
253 va_start(list, rets);
254 for (i = 0; i < nargs; i++)
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000255 args.args[i] = cpu_to_be32(va_arg(list, prom_arg_t));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000256 va_end(list);
257
258 for (i = 0; i < nret; i++)
Olaf Heringed1189b72005-11-29 14:04:05 +0100259 args.args[nargs+i] = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000260
Anton Blanchard5827d412012-11-26 17:40:03 +0000261 if (enter_prom(&args, prom_entry) < 0)
Paul Mackerrasc49888202005-10-26 21:52:53 +1000262 return PROM_ERROR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000263
264 if (rets != NULL)
265 for (i = 1; i < nret; ++i)
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000266 rets[i-1] = be32_to_cpu(args.args[nargs+i]);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000267
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000268 return (nret > 0) ? be32_to_cpu(args.args[nargs]) : 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000269}
270
271
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000272static void __init prom_print(const char *msg)
273{
274 const char *p, *q;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000275
Anton Blanchard5827d412012-11-26 17:40:03 +0000276 if (prom.stdout == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000277 return;
278
279 for (p = msg; *p != 0; p = q) {
280 for (q = p; *q != 0 && *q != '\n'; ++q)
281 ;
282 if (q > p)
Anton Blanchard5827d412012-11-26 17:40:03 +0000283 call_prom("write", 3, 1, prom.stdout, p, q - p);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000284 if (*q == 0)
285 break;
286 ++q;
Anton Blanchard5827d412012-11-26 17:40:03 +0000287 call_prom("write", 3, 1, prom.stdout, ADDR("\r\n"), 2);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000288 }
289}
290
291
292static void __init prom_print_hex(unsigned long val)
293{
294 int i, nibbles = sizeof(val)*2;
295 char buf[sizeof(val)*2+1];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000296
297 for (i = nibbles-1; i >= 0; i--) {
298 buf[i] = (val & 0xf) + '0';
299 if (buf[i] > '9')
300 buf[i] += ('a'-'0'-10);
301 val >>= 4;
302 }
303 buf[nibbles] = '\0';
Anton Blanchard5827d412012-11-26 17:40:03 +0000304 call_prom("write", 3, 1, prom.stdout, buf, nibbles);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000305}
306
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000307/* max number of decimal digits in an unsigned long */
308#define UL_DIGITS 21
309static void __init prom_print_dec(unsigned long val)
310{
311 int i, size;
312 char buf[UL_DIGITS+1];
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000313
314 for (i = UL_DIGITS-1; i >= 0; i--) {
315 buf[i] = (val % 10) + '0';
316 val = val/10;
317 if (val == 0)
318 break;
319 }
320 /* shift stuff down */
321 size = UL_DIGITS - i;
Anton Blanchard5827d412012-11-26 17:40:03 +0000322 call_prom("write", 3, 1, prom.stdout, buf+i, size);
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000323}
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000324
325static void __init prom_printf(const char *format, ...)
326{
327 const char *p, *q, *s;
328 va_list args;
329 unsigned long v;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000330 long vs;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000331
332 va_start(args, format);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000333 for (p = format; *p != 0; p = q) {
334 for (q = p; *q != 0 && *q != '\n' && *q != '%'; ++q)
335 ;
336 if (q > p)
Anton Blanchard5827d412012-11-26 17:40:03 +0000337 call_prom("write", 3, 1, prom.stdout, p, q - p);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000338 if (*q == 0)
339 break;
340 if (*q == '\n') {
341 ++q;
Anton Blanchard5827d412012-11-26 17:40:03 +0000342 call_prom("write", 3, 1, prom.stdout,
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000343 ADDR("\r\n"), 2);
344 continue;
345 }
346 ++q;
347 if (*q == 0)
348 break;
349 switch (*q) {
350 case 's':
351 ++q;
352 s = va_arg(args, const char *);
353 prom_print(s);
354 break;
355 case 'x':
356 ++q;
357 v = va_arg(args, unsigned long);
358 prom_print_hex(v);
359 break;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000360 case 'd':
361 ++q;
362 vs = va_arg(args, int);
363 if (vs < 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +0000364 prom_print("-");
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000365 vs = -vs;
366 }
367 prom_print_dec(vs);
368 break;
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000369 case 'l':
370 ++q;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000371 if (*q == 0)
372 break;
373 else if (*q == 'x') {
374 ++q;
375 v = va_arg(args, unsigned long);
376 prom_print_hex(v);
377 } else if (*q == 'u') { /* '%lu' */
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000378 ++q;
379 v = va_arg(args, unsigned long);
380 prom_print_dec(v);
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000381 } else if (*q == 'd') { /* %ld */
382 ++q;
383 vs = va_arg(args, long);
384 if (vs < 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +0000385 prom_print("-");
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000386 vs = -vs;
387 }
388 prom_print_dec(vs);
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000389 }
390 break;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000391 }
392 }
Daniel Axtens1b855e12015-12-17 19:41:00 +1100393 va_end(args);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000394}
395
396
Paul Mackerrasa575b802005-10-23 17:23:21 +1000397static unsigned int __init prom_claim(unsigned long virt, unsigned long size,
398 unsigned long align)
399{
Paul Mackerrasa575b802005-10-23 17:23:21 +1000400
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100401 if (align == 0 && (OF_WORKAROUNDS & OF_WA_CLAIM)) {
402 /*
403 * Old OF requires we claim physical and virtual separately
404 * and then map explicitly (assuming virtual mode)
405 */
406 int ret;
407 prom_arg_t result;
408
409 ret = call_prom_ret("call-method", 5, 2, &result,
Anton Blanchard5827d412012-11-26 17:40:03 +0000410 ADDR("claim"), prom.memory,
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100411 align, size, virt);
412 if (ret != 0 || result == -1)
413 return -1;
414 ret = call_prom_ret("call-method", 5, 2, &result,
Anton Blanchard5827d412012-11-26 17:40:03 +0000415 ADDR("claim"), prom.mmumap,
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100416 align, size, virt);
417 if (ret != 0) {
418 call_prom("call-method", 4, 1, ADDR("release"),
Anton Blanchard5827d412012-11-26 17:40:03 +0000419 prom.memory, size, virt);
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100420 return -1;
421 }
422 /* the 0x12 is M (coherence) + PP == read/write */
Paul Mackerrasa575b802005-10-23 17:23:21 +1000423 call_prom("call-method", 6, 1,
Anton Blanchard5827d412012-11-26 17:40:03 +0000424 ADDR("map"), prom.mmumap, 0x12, size, virt, virt);
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100425 return virt;
426 }
427 return call_prom("claim", 3, 1, (prom_arg_t)virt, (prom_arg_t)size,
428 (prom_arg_t)align);
Paul Mackerrasa575b802005-10-23 17:23:21 +1000429}
430
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000431static void __init __attribute__((noreturn)) prom_panic(const char *reason)
432{
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000433 prom_print(reason);
Olaf Heringadd60ef2006-03-23 22:03:57 +0100434 /* Do not call exit because it clears the screen on pmac
435 * it also causes some sort of double-fault on early pmacs */
Anton Blanchard5827d412012-11-26 17:40:03 +0000436 if (of_platform == PLATFORM_POWERMAC)
Olaf Heringadd60ef2006-03-23 22:03:57 +0100437 asm("trap\n");
438
Stephen Rothwell1d9a4732012-03-21 18:23:27 +0000439 /* ToDo: should put up an SRC here on pSeries */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000440 call_prom("exit", 0, 0);
441
442 for (;;) /* should never get here */
443 ;
444}
445
446
447static int __init prom_next_node(phandle *nodep)
448{
449 phandle node;
450
451 if ((node = *nodep) != 0
452 && (*nodep = call_prom("child", 1, 1, node)) != 0)
453 return 1;
454 if ((*nodep = call_prom("peer", 1, 1, node)) != 0)
455 return 1;
456 for (;;) {
457 if ((node = call_prom("parent", 1, 1, node)) == 0)
458 return 0;
459 if ((*nodep = call_prom("peer", 1, 1, node)) != 0)
460 return 1;
461 }
462}
463
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +1100464static int inline prom_getprop(phandle node, const char *pname,
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000465 void *value, size_t valuelen)
466{
467 return call_prom("getprop", 4, 1, node, ADDR(pname),
468 (u32)(unsigned long) value, (u32) valuelen);
469}
470
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +1100471static int inline prom_getproplen(phandle node, const char *pname)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000472{
473 return call_prom("getproplen", 2, 1, node, ADDR(pname));
474}
475
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100476static void add_string(char **str, const char *q)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000477{
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100478 char *p = *str;
479
480 while (*q)
481 *p++ = *q++;
482 *p++ = ' ';
483 *str = p;
484}
485
486static char *tohex(unsigned int x)
487{
488 static char digits[] = "0123456789abcdef";
489 static char result[9];
490 int i;
491
492 result[8] = 0;
493 i = 8;
494 do {
495 --i;
496 result[i] = digits[x & 0xf];
497 x >>= 4;
498 } while (x != 0 && i > 0);
499 return &result[i];
500}
501
502static int __init prom_setprop(phandle node, const char *nodename,
503 const char *pname, void *value, size_t valuelen)
504{
505 char cmd[256], *p;
506
507 if (!(OF_WORKAROUNDS & OF_WA_LONGTRAIL))
508 return call_prom("setprop", 4, 1, node, ADDR(pname),
509 (u32)(unsigned long) value, (u32) valuelen);
510
511 /* gah... setprop doesn't work on longtrail, have to use interpret */
512 p = cmd;
513 add_string(&p, "dev");
514 add_string(&p, nodename);
515 add_string(&p, tohex((u32)(unsigned long) value));
516 add_string(&p, tohex(valuelen));
517 add_string(&p, tohex(ADDR(pname)));
Anton Blanchard5827d412012-11-26 17:40:03 +0000518 add_string(&p, tohex(strlen(pname)));
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100519 add_string(&p, "property");
520 *p = 0;
521 return call_prom("interpret", 1, 1, (u32)(unsigned long) cmd);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000522}
523
Anton Blanchard5827d412012-11-26 17:40:03 +0000524/* We can't use the standard versions because of relocation headaches. */
Benjamin Krillcf687872009-07-27 22:02:39 +0000525#define isxdigit(c) (('0' <= (c) && (c) <= '9') \
526 || ('a' <= (c) && (c) <= 'f') \
527 || ('A' <= (c) && (c) <= 'F'))
528
529#define isdigit(c) ('0' <= (c) && (c) <= '9')
530#define islower(c) ('a' <= (c) && (c) <= 'z')
531#define toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
532
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000533static unsigned long prom_strtoul(const char *cp, const char **endp)
Benjamin Krillcf687872009-07-27 22:02:39 +0000534{
535 unsigned long result = 0, base = 10, value;
536
537 if (*cp == '0') {
538 base = 8;
539 cp++;
540 if (toupper(*cp) == 'X') {
541 cp++;
542 base = 16;
543 }
544 }
545
546 while (isxdigit(*cp) &&
547 (value = isdigit(*cp) ? *cp - '0' : toupper(*cp) - 'A' + 10) < base) {
548 result = result * base + value;
549 cp++;
550 }
551
552 if (endp)
553 *endp = cp;
554
555 return result;
556}
557
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000558static unsigned long prom_memparse(const char *ptr, const char **retptr)
Benjamin Krillcf687872009-07-27 22:02:39 +0000559{
560 unsigned long ret = prom_strtoul(ptr, retptr);
561 int shift = 0;
562
563 /*
564 * We can't use a switch here because GCC *may* generate a
565 * jump table which won't work, because we're not running at
566 * the address we're linked at.
567 */
568 if ('G' == **retptr || 'g' == **retptr)
569 shift = 30;
570
571 if ('M' == **retptr || 'm' == **retptr)
572 shift = 20;
573
574 if ('K' == **retptr || 'k' == **retptr)
575 shift = 10;
576
577 if (shift) {
578 ret <<= shift;
579 (*retptr)++;
580 }
581
582 return ret;
583}
584
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000585/*
586 * Early parsing of the command line passed to the kernel, used for
587 * "mem=x" and the options that affect the iommu
588 */
589static void __init early_cmdline_parse(void)
590{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100591 const char *opt;
Benjamin Krillcf687872009-07-27 22:02:39 +0000592
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100593 char *p;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000594 int l = 0;
595
Anton Blanchard5827d412012-11-26 17:40:03 +0000596 prom_cmd_line[0] = 0;
597 p = prom_cmd_line;
598 if ((long)prom.chosen > 0)
599 l = prom_getprop(prom.chosen, "bootargs", p, COMMAND_LINE_SIZE-1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000600#ifdef CONFIG_CMDLINE
Amos Waterland0e4aa9c2006-06-12 23:45:02 -0400601 if (l <= 0 || p[0] == '\0') /* dbl check */
Anton Blanchard5827d412012-11-26 17:40:03 +0000602 strlcpy(prom_cmd_line,
603 CONFIG_CMDLINE, sizeof(prom_cmd_line));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000604#endif /* CONFIG_CMDLINE */
Anton Blanchard5827d412012-11-26 17:40:03 +0000605 prom_printf("command line: %s\n", prom_cmd_line);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000606
607#ifdef CONFIG_PPC64
Anton Blanchard5827d412012-11-26 17:40:03 +0000608 opt = strstr(prom_cmd_line, "iommu=");
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000609 if (opt) {
610 prom_printf("iommu opt is: %s\n", opt);
611 opt += 6;
612 while (*opt && *opt == ' ')
613 opt++;
Anton Blanchard5827d412012-11-26 17:40:03 +0000614 if (!strncmp(opt, "off", 3))
615 prom_iommu_off = 1;
616 else if (!strncmp(opt, "force", 5))
617 prom_iommu_force_on = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000618 }
619#endif
Anton Blanchard5827d412012-11-26 17:40:03 +0000620 opt = strstr(prom_cmd_line, "mem=");
Benjamin Krillcf687872009-07-27 22:02:39 +0000621 if (opt) {
622 opt += 4;
Anton Blanchard5827d412012-11-26 17:40:03 +0000623 prom_memory_limit = prom_memparse(opt, (const char **)&opt);
Benjamin Krillcf687872009-07-27 22:02:39 +0000624#ifdef CONFIG_PPC64
625 /* Align to 16 MB == size of ppc64 large page */
Anton Blanchard5827d412012-11-26 17:40:03 +0000626 prom_memory_limit = ALIGN(prom_memory_limit, 0x1000000);
Benjamin Krillcf687872009-07-27 22:02:39 +0000627#endif
628 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000629}
630
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +0000631#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000632/*
Nathan Fontenot530b5e12013-04-24 05:53:10 +0000633 * The architecture vector has an array of PVR mask/value pairs,
634 * followed by # option vectors - 1, followed by the option vectors.
635 *
636 * See prom.h for the definition of the bits specified in the
637 * architecture vector.
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000638 *
639 * Because the description vector contains a mix of byte and word
640 * values, we declare it as an unsigned char array, and use this
641 * macro to put word values in.
642 */
643#define W(x) ((x) >> 24) & 0xff, ((x) >> 16) & 0xff, \
644 ((x) >> 8) & 0xff, (x) & 0xff
645
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000646/* Firmware expects the value to be n - 1, where n is the # of vectors */
647#define NUM_VECTORS(n) ((n) - 1)
648
649/*
650 * Firmware expects 1 + n - 2, where n is the length of the option vector in
651 * bytes. The 1 accounts for the length byte itself, the - 2 .. ?
652 */
653#define VECTOR_LENGTH(n) (1 + (n) - 2)
654
Nathan Fontenot530b5e12013-04-24 05:53:10 +0000655unsigned char ibm_architecture_vec[] = {
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000656 W(0xfffe0000), W(0x003a0000), /* POWER5/POWER5+ */
Anton Blanchard03054d52006-04-29 09:51:06 +1000657 W(0xffff0000), W(0x003e0000), /* POWER6 */
Michael Neulinge952e6c2008-06-18 10:47:26 +1000658 W(0xffff0000), W(0x003f0000), /* POWER7 */
Michael Neuling33959f82013-07-18 11:31:51 +1000659 W(0xffff0000), W(0x004b0000), /* POWER8E */
Thomas Huth7cc85102016-05-31 07:51:17 +0200660 W(0xffff0000), W(0x004c0000), /* POWER8NVL */
Michael Neuling33959f82013-07-18 11:31:51 +1000661 W(0xffff0000), W(0x004d0000), /* POWER8 */
Michael Neulingdf77c792012-11-08 20:23:11 +0000662 W(0xffffffff), W(0x0f000004), /* all 2.07-compliant */
Joel Schopp0cb99012008-06-19 06:23:23 +1000663 W(0xffffffff), W(0x0f000003), /* all 2.06-compliant */
Paul Mackerras0efbc182006-11-29 22:31:47 +1100664 W(0xffffffff), W(0x0f000002), /* all 2.05-compliant */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000665 W(0xfffffffe), W(0x0f000001), /* all 2.04-compliant and earlier */
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000666 NUM_VECTORS(6), /* 6 option vectors */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000667
668 /* option vector 1: processor architectures supported */
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000669 VECTOR_LENGTH(2), /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000670 0, /* don't ignore, don't halt */
671 OV1_PPC_2_00 | OV1_PPC_2_01 | OV1_PPC_2_02 | OV1_PPC_2_03 |
Michael Neulingdf77c792012-11-08 20:23:11 +0000672 OV1_PPC_2_04 | OV1_PPC_2_05 | OV1_PPC_2_06 | OV1_PPC_2_07,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000673
674 /* option vector 2: Open Firmware options supported */
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000675 VECTOR_LENGTH(33), /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000676 OV2_REAL_MODE,
677 0, 0,
678 W(0xffffffff), /* real_base */
679 W(0xffffffff), /* real_size */
680 W(0xffffffff), /* virt_base */
681 W(0xffffffff), /* virt_size */
682 W(0xffffffff), /* load_base */
Anton Blanchard33392642011-12-04 13:13:58 +0000683 W(256), /* 256MB min RMA */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000684 W(0xffffffff), /* full client load */
685 0, /* min RMA percentage of total RAM */
686 48, /* max log_2(hash table size) */
687
688 /* option vector 3: processor options supported */
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000689 VECTOR_LENGTH(2), /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000690 0, /* don't ignore, don't halt */
Paul Mackerras974a76f2006-11-10 20:38:53 +1100691 OV3_FP | OV3_VMX | OV3_DFP,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000692
693 /* option vector 4: IBM PAPR implementation */
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000694 VECTOR_LENGTH(2), /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000695 0, /* don't halt */
Robert Jennings404e32e2012-05-10 08:55:49 +0000696 OV4_MIN_ENT_CAP, /* minimum VP entitled capacity */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000697
698 /* option vector 5: PAPR/OF options */
Michael Ellerman66443ef2016-08-12 21:45:52 +1000699 VECTOR_LENGTH(21), /* length */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000700 0, /* don't ignore, don't halt */
Nathan Fontenotf0ff7eb2013-04-24 05:57:18 +0000701 OV5_FEAT(OV5_LPAR) | OV5_FEAT(OV5_SPLPAR) | OV5_FEAT(OV5_LARGE_PAGES) |
702 OV5_FEAT(OV5_DRCONF_MEMORY) | OV5_FEAT(OV5_DONATE_DEDICATE_CPU) |
703#ifdef CONFIG_PCI_MSI
704 /* PCIe/MSI support. Without MSI full PCIe is not supported */
705 OV5_FEAT(OV5_MSI),
706#else
Nathan Fontenot8391e422008-07-24 04:36:38 +1000707 0,
Nathan Fontenotf0ff7eb2013-04-24 05:57:18 +0000708#endif
709 0,
710#ifdef CONFIG_PPC_SMLPAR
711 OV5_FEAT(OV5_CMO) | OV5_FEAT(OV5_XCMO),
712#else
713 0,
714#endif
Nathan Fontenot1b1218d2013-04-24 06:06:17 +0000715 OV5_FEAT(OV5_TYPE1_AFFINITY) | OV5_FEAT(OV5_PRRN),
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000716 0,
717 0,
718 0,
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100719 /* WARNING: The offset of the "number of cores" field below
720 * must match by the macro below. Update the definition if
721 * the structure layout changes.
722 */
Michael Ellerman2c2a63e2016-06-08 10:01:23 +1000723#define IBM_ARCH_VEC_NRCORES_OFFSET 133
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100724 W(NR_CPUS), /* number of cores supported */
Kent Yoder828d2b52012-04-12 05:17:51 +0000725 0,
726 0,
727 0,
728 0,
Nathan Fontenotf0ff7eb2013-04-24 05:57:18 +0000729 OV5_FEAT(OV5_PFO_HW_RNG) | OV5_FEAT(OV5_PFO_HW_ENCR) |
Michael Ellerman66443ef2016-08-12 21:45:52 +1000730 OV5_FEAT(OV5_PFO_HW_842), /* Byte 17 */
731 0, /* Byte 18 */
732 0, /* Byte 19 */
733 0, /* Byte 20 */
734 OV5_FEAT(OV5_SUB_PROCESSORS), /* Byte 21 */
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000735
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000736 /* option vector 6: IBM PAPR hints */
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000737 VECTOR_LENGTH(3), /* length */
jschopp@austin.ibm.com28bb9ee2010-02-01 12:50:48 +0000738 0,
739 0,
740 OV6_LINUX,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000741};
742
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000743/* Old method - ELF header with PT_NOTE sections only works on BE */
744#ifdef __BIG_ENDIAN__
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000745static struct fake_elf {
746 Elf32_Ehdr elfhdr;
747 Elf32_Phdr phdr[2];
748 struct chrpnote {
749 u32 namesz;
750 u32 descsz;
751 u32 type;
752 char name[8]; /* "PowerPC" */
753 struct chrpdesc {
754 u32 real_mode;
755 u32 real_base;
756 u32 real_size;
757 u32 virt_base;
758 u32 virt_size;
759 u32 load_base;
760 } chrpdesc;
761 } chrpnote;
762 struct rpanote {
763 u32 namesz;
764 u32 descsz;
765 u32 type;
766 char name[24]; /* "IBM,RPA-Client-Config" */
767 struct rpadesc {
768 u32 lpar_affinity;
769 u32 min_rmo_size;
770 u32 min_rmo_percent;
771 u32 max_pft_size;
772 u32 splpar;
773 u32 min_load;
774 u32 new_mem_def;
775 u32 ignore_me;
776 } rpadesc;
777 } rpanote;
Paul Mackerras5663a122008-10-31 22:27:17 +1100778} fake_elf = {
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000779 .elfhdr = {
780 .e_ident = { 0x7f, 'E', 'L', 'F',
781 ELFCLASS32, ELFDATA2MSB, EV_CURRENT },
782 .e_type = ET_EXEC, /* yeah right */
783 .e_machine = EM_PPC,
784 .e_version = EV_CURRENT,
785 .e_phoff = offsetof(struct fake_elf, phdr),
786 .e_phentsize = sizeof(Elf32_Phdr),
787 .e_phnum = 2
788 },
789 .phdr = {
790 [0] = {
791 .p_type = PT_NOTE,
792 .p_offset = offsetof(struct fake_elf, chrpnote),
793 .p_filesz = sizeof(struct chrpnote)
794 }, [1] = {
795 .p_type = PT_NOTE,
796 .p_offset = offsetof(struct fake_elf, rpanote),
797 .p_filesz = sizeof(struct rpanote)
798 }
799 },
800 .chrpnote = {
801 .namesz = sizeof("PowerPC"),
802 .descsz = sizeof(struct chrpdesc),
803 .type = 0x1275,
804 .name = "PowerPC",
805 .chrpdesc = {
806 .real_mode = ~0U, /* ~0 means "don't care" */
807 .real_base = ~0U,
808 .real_size = ~0U,
809 .virt_base = ~0U,
810 .virt_size = ~0U,
811 .load_base = ~0U
812 },
813 },
814 .rpanote = {
815 .namesz = sizeof("IBM,RPA-Client-Config"),
816 .descsz = sizeof(struct rpadesc),
817 .type = 0x12759999,
818 .name = "IBM,RPA-Client-Config",
819 .rpadesc = {
Paul Mackerras5663a122008-10-31 22:27:17 +1100820 .lpar_affinity = 0,
821 .min_rmo_size = 64, /* in megabytes */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000822 .min_rmo_percent = 0,
Paul Mackerras5663a122008-10-31 22:27:17 +1100823 .max_pft_size = 48, /* 2^48 bytes max PFT size */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000824 .splpar = 1,
825 .min_load = ~0U,
Paul Mackerras5663a122008-10-31 22:27:17 +1100826 .new_mem_def = 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000827 }
828 }
829};
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000830#endif /* __BIG_ENDIAN__ */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000831
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100832static int __init prom_count_smt_threads(void)
833{
834 phandle node;
835 char type[64];
836 unsigned int plen;
837
838 /* Pick up th first CPU node we can find */
839 for (node = 0; prom_next_node(&node); ) {
840 type[0] = 0;
841 prom_getprop(node, "device_type", type, sizeof(type));
842
Anton Blanchard5827d412012-11-26 17:40:03 +0000843 if (strcmp(type, "cpu"))
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100844 continue;
845 /*
846 * There is an entry for each smt thread, each entry being
847 * 4 bytes long. All cpus should have the same number of
848 * smt threads, so return after finding the first.
849 */
850 plen = prom_getproplen(node, "ibm,ppc-interrupt-server#s");
851 if (plen == PROM_ERROR)
852 break;
853 plen >>= 2;
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000854 prom_debug("Found %lu smt threads per core\n", (unsigned long)plen);
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100855
856 /* Sanity check */
857 if (plen < 1 || plen > 64) {
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000858 prom_printf("Threads per core %lu out of bounds, assuming 1\n",
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100859 (unsigned long)plen);
860 return 1;
861 }
862 return plen;
863 }
864 prom_debug("No threads found, assuming 1 per core\n");
865
866 return 1;
867
868}
869
870
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000871static void __init prom_send_capabilities(void)
872{
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000873 ihandle root;
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000874 prom_arg_t ret;
Laurent Dufourdbd0c5d2013-09-17 11:52:48 +0200875 u32 cores;
876 unsigned char *ptcores;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000877
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000878 root = call_prom("open", 1, 1, ADDR("/"));
879 if (root != 0) {
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100880 /* We need to tell the FW about the number of cores we support.
881 *
882 * To do that, we count the number of threads on the first core
883 * (we assume this is the same for all cores) and use it to
884 * divide NR_CPUS.
885 */
Laurent Dufourdbd0c5d2013-09-17 11:52:48 +0200886
887 /* The core value may start at an odd address. If such a word
888 * access is made at a cache line boundary, this leads to an
889 * exception which may not be handled at this time.
890 * Forcing a per byte access to avoid exception.
891 */
892 ptcores = &ibm_architecture_vec[IBM_ARCH_VEC_NRCORES_OFFSET];
893 cores = 0;
894 cores |= ptcores[0] << 24;
895 cores |= ptcores[1] << 16;
896 cores |= ptcores[2] << 8;
897 cores |= ptcores[3];
898 if (cores != NR_CPUS) {
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100899 prom_printf("WARNING ! "
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000900 "ibm_architecture_vec structure inconsistent: %lu!\n",
Laurent Dufourdbd0c5d2013-09-17 11:52:48 +0200901 cores);
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100902 } else {
Laurent Dufourdbd0c5d2013-09-17 11:52:48 +0200903 cores = DIV_ROUND_UP(NR_CPUS, prom_count_smt_threads());
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000904 prom_printf("Max number of cores passed to firmware: %lu (NR_CPUS = %lu)\n",
Laurent Dufourdbd0c5d2013-09-17 11:52:48 +0200905 cores, NR_CPUS);
906 ptcores[0] = (cores >> 24) & 0xff;
907 ptcores[1] = (cores >> 16) & 0xff;
908 ptcores[2] = (cores >> 8) & 0xff;
909 ptcores[3] = cores & 0xff;
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100910 }
911
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000912 /* try calling the ibm,client-architecture-support method */
Anton Blanchard049d0492009-09-21 20:47:39 +0000913 prom_printf("Calling ibm,client-architecture-support...");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000914 if (call_prom_ret("call-method", 3, 2, &ret,
915 ADDR("ibm,client-architecture-support"),
Benjamin Herrenschmidt33b74972006-06-07 12:01:32 +1000916 root,
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000917 ADDR(ibm_architecture_vec)) == 0) {
918 /* the call exists... */
919 if (ret)
Anton Blanchard4da727a2009-03-31 20:06:14 +0000920 prom_printf("\nWARNING: ibm,client-architecture"
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000921 "-support call FAILED!\n");
922 call_prom("close", 1, 0, root);
Anton Blanchard4da727a2009-03-31 20:06:14 +0000923 prom_printf(" done\n");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000924 return;
925 }
926 call_prom("close", 1, 0, root);
Anton Blanchard049d0492009-09-21 20:47:39 +0000927 prom_printf(" not implemented\n");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000928 }
929
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000930#ifdef __BIG_ENDIAN__
931 {
932 ihandle elfloader;
933
934 /* no ibm,client-architecture-support call, try the old way */
935 elfloader = call_prom("open", 1, 1,
936 ADDR("/packages/elf-loader"));
937 if (elfloader == 0) {
938 prom_printf("couldn't open /packages/elf-loader\n");
939 return;
940 }
941 call_prom("call-method", 3, 1, ADDR("process-elf-header"),
942 elfloader, ADDR(&fake_elf));
943 call_prom("close", 1, 0, elfloader);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000944 }
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000945#endif /* __BIG_ENDIAN__ */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000946}
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000947#endif /* #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000948
949/*
950 * Memory allocation strategy... our layout is normally:
951 *
952 * at 14Mb or more we have vmlinux, then a gap and initrd. In some
953 * rare cases, initrd might end up being before the kernel though.
954 * We assume this won't override the final kernel at 0, we have no
955 * provision to handle that in this version, but it should hopefully
956 * never happen.
957 *
958 * alloc_top is set to the top of RMO, eventually shrink down if the
959 * TCEs overlap
960 *
961 * alloc_bottom is set to the top of kernel/initrd
962 *
963 * from there, allocations are done this way : rtas is allocated
964 * topmost, and the device-tree is allocated from the bottom. We try
965 * to grow the device-tree allocation as we progress. If we can't,
966 * then we fail, we don't currently have a facility to restart
967 * elsewhere, but that shouldn't be necessary.
968 *
969 * Note that calls to reserve_mem have to be done explicitly, memory
970 * allocated with either alloc_up or alloc_down isn't automatically
971 * reserved.
972 */
973
974
975/*
976 * Allocates memory in the RMO upward from the kernel/initrd
977 *
978 * When align is 0, this is a special case, it means to allocate in place
979 * at the current location of alloc_bottom or fail (that is basically
980 * extending the previous allocation). Used for the device-tree flattening
981 */
982static unsigned long __init alloc_up(unsigned long size, unsigned long align)
983{
Anton Blanchard5827d412012-11-26 17:40:03 +0000984 unsigned long base = alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000985 unsigned long addr = 0;
986
Paul Mackerrasc49888202005-10-26 21:52:53 +1000987 if (align)
988 base = _ALIGN_UP(base, align);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000989 prom_debug("alloc_up(%x, %x)\n", size, align);
Anton Blanchard5827d412012-11-26 17:40:03 +0000990 if (ram_top == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000991 prom_panic("alloc_up() called with mem not initialized\n");
992
993 if (align)
Anton Blanchard5827d412012-11-26 17:40:03 +0000994 base = _ALIGN_UP(alloc_bottom, align);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000995 else
Anton Blanchard5827d412012-11-26 17:40:03 +0000996 base = alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000997
Anton Blanchard5827d412012-11-26 17:40:03 +0000998 for(; (base + size) <= alloc_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000999 base = _ALIGN_UP(base + 0x100000, align)) {
1000 prom_debug(" trying: 0x%x\n\r", base);
1001 addr = (unsigned long)prom_claim(base, size, 0);
Paul Mackerrasc49888202005-10-26 21:52:53 +10001002 if (addr != PROM_ERROR && addr != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001003 break;
1004 addr = 0;
1005 if (align == 0)
1006 break;
1007 }
1008 if (addr == 0)
1009 return 0;
Anton Blanchard5827d412012-11-26 17:40:03 +00001010 alloc_bottom = addr + size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001011
1012 prom_debug(" -> %x\n", addr);
Anton Blanchard5827d412012-11-26 17:40:03 +00001013 prom_debug(" alloc_bottom : %x\n", alloc_bottom);
1014 prom_debug(" alloc_top : %x\n", alloc_top);
1015 prom_debug(" alloc_top_hi : %x\n", alloc_top_high);
1016 prom_debug(" rmo_top : %x\n", rmo_top);
1017 prom_debug(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001018
1019 return addr;
1020}
1021
1022/*
1023 * Allocates memory downward, either from top of RMO, or if highmem
1024 * is set, from the top of RAM. Note that this one doesn't handle
1025 * failures. It does claim memory if highmem is not set.
1026 */
1027static unsigned long __init alloc_down(unsigned long size, unsigned long align,
1028 int highmem)
1029{
1030 unsigned long base, addr = 0;
1031
1032 prom_debug("alloc_down(%x, %x, %s)\n", size, align,
Anton Blanchard5827d412012-11-26 17:40:03 +00001033 highmem ? "(high)" : "(low)");
1034 if (ram_top == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001035 prom_panic("alloc_down() called with mem not initialized\n");
1036
1037 if (highmem) {
1038 /* Carve out storage for the TCE table. */
Anton Blanchard5827d412012-11-26 17:40:03 +00001039 addr = _ALIGN_DOWN(alloc_top_high - size, align);
1040 if (addr <= alloc_bottom)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001041 return 0;
1042 /* Will we bump into the RMO ? If yes, check out that we
1043 * didn't overlap existing allocations there, if we did,
1044 * we are dead, we must be the first in town !
1045 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001046 if (addr < rmo_top) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001047 /* Good, we are first */
Anton Blanchard5827d412012-11-26 17:40:03 +00001048 if (alloc_top == rmo_top)
1049 alloc_top = rmo_top = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001050 else
1051 return 0;
1052 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001053 alloc_top_high = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001054 goto bail;
1055 }
1056
Anton Blanchard5827d412012-11-26 17:40:03 +00001057 base = _ALIGN_DOWN(alloc_top - size, align);
1058 for (; base > alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001059 base = _ALIGN_DOWN(base - 0x100000, align)) {
1060 prom_debug(" trying: 0x%x\n\r", base);
1061 addr = (unsigned long)prom_claim(base, size, 0);
Paul Mackerrasc49888202005-10-26 21:52:53 +10001062 if (addr != PROM_ERROR && addr != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001063 break;
1064 addr = 0;
1065 }
1066 if (addr == 0)
1067 return 0;
Anton Blanchard5827d412012-11-26 17:40:03 +00001068 alloc_top = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001069
1070 bail:
1071 prom_debug(" -> %x\n", addr);
Anton Blanchard5827d412012-11-26 17:40:03 +00001072 prom_debug(" alloc_bottom : %x\n", alloc_bottom);
1073 prom_debug(" alloc_top : %x\n", alloc_top);
1074 prom_debug(" alloc_top_hi : %x\n", alloc_top_high);
1075 prom_debug(" rmo_top : %x\n", rmo_top);
1076 prom_debug(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001077
1078 return addr;
1079}
1080
1081/*
1082 * Parse a "reg" cell
1083 */
1084static unsigned long __init prom_next_cell(int s, cell_t **cellp)
1085{
1086 cell_t *p = *cellp;
1087 unsigned long r = 0;
1088
1089 /* Ignore more than 2 cells */
1090 while (s > sizeof(unsigned long) / 4) {
1091 p++;
1092 s--;
1093 }
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001094 r = be32_to_cpu(*p++);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001095#ifdef CONFIG_PPC64
Paul Mackerras35499c02005-10-22 16:02:39 +10001096 if (s > 1) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001097 r <<= 32;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001098 r |= be32_to_cpu(*(p++));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001099 }
1100#endif
1101 *cellp = p;
1102 return r;
1103}
1104
1105/*
1106 * Very dumb function for adding to the memory reserve list, but
1107 * we don't need anything smarter at this point
1108 *
1109 * XXX Eventually check for collisions. They should NEVER happen.
1110 * If problems seem to show up, it would be a good start to track
1111 * them down.
1112 */
Michael Ellerman0108d3f2007-05-07 15:58:28 +10001113static void __init reserve_mem(u64 base, u64 size)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001114{
Kumar Galacbbcf342006-01-11 17:57:13 -06001115 u64 top = base + size;
Anton Blanchard5827d412012-11-26 17:40:03 +00001116 unsigned long cnt = mem_reserve_cnt;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001117
1118 if (size == 0)
1119 return;
1120
1121 /* We need to always keep one empty entry so that we
1122 * have our terminator with "size" set to 0 since we are
1123 * dumb and just copy this entire array to the boot params
1124 */
1125 base = _ALIGN_DOWN(base, PAGE_SIZE);
1126 top = _ALIGN_UP(top, PAGE_SIZE);
1127 size = top - base;
1128
1129 if (cnt >= (MEM_RESERVE_MAP_SIZE - 1))
1130 prom_panic("Memory reserve map exhausted !\n");
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001131 mem_reserve_map[cnt].base = cpu_to_be64(base);
1132 mem_reserve_map[cnt].size = cpu_to_be64(size);
Anton Blanchard5827d412012-11-26 17:40:03 +00001133 mem_reserve_cnt = cnt + 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001134}
1135
1136/*
Adrian Bunkb3c2ffd2006-06-30 18:20:44 +02001137 * Initialize memory allocation mechanism, parse "memory" nodes and
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001138 * obtain that way the top of memory and RMO to setup out local allocator
1139 */
1140static void __init prom_init_mem(void)
1141{
1142 phandle node;
1143 char *path, type[64];
1144 unsigned int plen;
1145 cell_t *p, *endp;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001146 __be32 val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001147 u32 rac, rsc;
1148
1149 /*
1150 * We iterate the memory nodes to find
1151 * 1) top of RMO (first node)
1152 * 2) top of memory
1153 */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001154 val = cpu_to_be32(2);
1155 prom_getprop(prom.root, "#address-cells", &val, sizeof(val));
1156 rac = be32_to_cpu(val);
1157 val = cpu_to_be32(1);
1158 prom_getprop(prom.root, "#size-cells", &val, sizeof(rsc));
1159 rsc = be32_to_cpu(val);
1160 prom_debug("root_addr_cells: %x\n", rac);
1161 prom_debug("root_size_cells: %x\n", rsc);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001162
1163 prom_debug("scanning memory:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001164 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001165
1166 for (node = 0; prom_next_node(&node); ) {
1167 type[0] = 0;
1168 prom_getprop(node, "device_type", type, sizeof(type));
1169
Paul Mackerrasc49888202005-10-26 21:52:53 +10001170 if (type[0] == 0) {
1171 /*
1172 * CHRP Longtrail machines have no device_type
1173 * on the memory node, so check the name instead...
1174 */
1175 prom_getprop(node, "name", type, sizeof(type));
1176 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001177 if (strcmp(type, "memory"))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001178 continue;
Paul Mackerrasc49888202005-10-26 21:52:53 +10001179
Anton Blanchard5827d412012-11-26 17:40:03 +00001180 plen = prom_getprop(node, "reg", regbuf, sizeof(regbuf));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001181 if (plen > sizeof(regbuf)) {
1182 prom_printf("memory node too large for buffer !\n");
1183 plen = sizeof(regbuf);
1184 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001185 p = regbuf;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001186 endp = p + (plen / sizeof(cell_t));
1187
1188#ifdef DEBUG_PROM
1189 memset(path, 0, PROM_SCRATCH_SIZE);
1190 call_prom("package-to-path", 3, 1, node, path, PROM_SCRATCH_SIZE-1);
1191 prom_debug(" node %s :\n", path);
1192#endif /* DEBUG_PROM */
1193
1194 while ((endp - p) >= (rac + rsc)) {
1195 unsigned long base, size;
1196
1197 base = prom_next_cell(rac, &p);
1198 size = prom_next_cell(rsc, &p);
1199
1200 if (size == 0)
1201 continue;
1202 prom_debug(" %x %x\n", base, size);
Anton Blanchard5827d412012-11-26 17:40:03 +00001203 if (base == 0 && (of_platform & PLATFORM_LPAR))
1204 rmo_top = size;
1205 if ((base + size) > ram_top)
1206 ram_top = base + size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001207 }
1208 }
1209
Anton Blanchard5827d412012-11-26 17:40:03 +00001210 alloc_bottom = PAGE_ALIGN((unsigned long)&_end + 0x4000);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001211
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001212 /*
Benjamin Krillcf687872009-07-27 22:02:39 +00001213 * If prom_memory_limit is set we reduce the upper limits *except* for
1214 * alloc_top_high. This must be the real top of RAM so we can put
1215 * TCE's up there.
1216 */
1217
Anton Blanchard5827d412012-11-26 17:40:03 +00001218 alloc_top_high = ram_top;
Benjamin Krillcf687872009-07-27 22:02:39 +00001219
Anton Blanchard5827d412012-11-26 17:40:03 +00001220 if (prom_memory_limit) {
1221 if (prom_memory_limit <= alloc_bottom) {
Benjamin Krillcf687872009-07-27 22:02:39 +00001222 prom_printf("Ignoring mem=%x <= alloc_bottom.\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00001223 prom_memory_limit);
1224 prom_memory_limit = 0;
1225 } else if (prom_memory_limit >= ram_top) {
Benjamin Krillcf687872009-07-27 22:02:39 +00001226 prom_printf("Ignoring mem=%x >= ram_top.\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00001227 prom_memory_limit);
1228 prom_memory_limit = 0;
Benjamin Krillcf687872009-07-27 22:02:39 +00001229 } else {
Anton Blanchard5827d412012-11-26 17:40:03 +00001230 ram_top = prom_memory_limit;
1231 rmo_top = min(rmo_top, prom_memory_limit);
Benjamin Krillcf687872009-07-27 22:02:39 +00001232 }
1233 }
1234
1235 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001236 * Setup our top alloc point, that is top of RMO or top of
1237 * segment 0 when running non-LPAR.
1238 * Some RS64 machines have buggy firmware where claims up at
1239 * 1GB fail. Cap at 768MB as a workaround.
1240 * Since 768MB is plenty of room, and we need to cap to something
1241 * reasonable on 32-bit, cap at 768MB on all machines.
1242 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001243 if (!rmo_top)
1244 rmo_top = ram_top;
1245 rmo_top = min(0x30000000ul, rmo_top);
1246 alloc_top = rmo_top;
1247 alloc_top_high = ram_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001248
Paul Mackerras64968f62011-12-13 17:54:13 +00001249 /*
1250 * Check if we have an initrd after the kernel but still inside
1251 * the RMO. If we do move our bottom point to after it.
1252 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001253 if (prom_initrd_start &&
1254 prom_initrd_start < rmo_top &&
1255 prom_initrd_end > alloc_bottom)
1256 alloc_bottom = PAGE_ALIGN(prom_initrd_end);
Paul Mackerras64968f62011-12-13 17:54:13 +00001257
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001258 prom_printf("memory layout at init:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001259 prom_printf(" memory_limit : %x (16 MB aligned)\n", prom_memory_limit);
1260 prom_printf(" alloc_bottom : %x\n", alloc_bottom);
1261 prom_printf(" alloc_top : %x\n", alloc_top);
1262 prom_printf(" alloc_top_hi : %x\n", alloc_top_high);
1263 prom_printf(" rmo_top : %x\n", rmo_top);
1264 prom_printf(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001265}
1266
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001267static void __init prom_close_stdin(void)
1268{
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001269 __be32 val;
1270 ihandle stdin;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001271
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001272 if (prom_getprop(prom.chosen, "stdin", &val, sizeof(val)) > 0) {
1273 stdin = be32_to_cpu(val);
1274 call_prom("close", 1, 0, stdin);
1275 }
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001276}
1277
1278#ifdef CONFIG_PPC_POWERNV
1279
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001280#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
1281static u64 __initdata prom_opal_base;
1282static u64 __initdata prom_opal_entry;
1283#endif
1284
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001285/*
1286 * Allocate room for and instantiate OPAL
1287 */
1288static void __init prom_instantiate_opal(void)
1289{
1290 phandle opal_node;
1291 ihandle opal_inst;
1292 u64 base, entry;
1293 u64 size = 0, align = 0x10000;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001294 __be64 val64;
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001295 u32 rets[2];
1296
1297 prom_debug("prom_instantiate_opal: start...\n");
1298
1299 opal_node = call_prom("finddevice", 1, 1, ADDR("/ibm,opal"));
1300 prom_debug("opal_node: %x\n", opal_node);
1301 if (!PHANDLE_VALID(opal_node))
1302 return;
1303
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001304 val64 = 0;
1305 prom_getprop(opal_node, "opal-runtime-size", &val64, sizeof(val64));
1306 size = be64_to_cpu(val64);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001307 if (size == 0)
1308 return;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001309 val64 = 0;
1310 prom_getprop(opal_node, "opal-runtime-alignment", &val64,sizeof(val64));
1311 align = be64_to_cpu(val64);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001312
1313 base = alloc_down(size, align, 0);
1314 if (base == 0) {
1315 prom_printf("OPAL allocation failed !\n");
1316 return;
1317 }
1318
1319 opal_inst = call_prom("open", 1, 1, ADDR("/ibm,opal"));
1320 if (!IHANDLE_VALID(opal_inst)) {
1321 prom_printf("opening opal package failed (%x)\n", opal_inst);
1322 return;
1323 }
1324
1325 prom_printf("instantiating opal at 0x%x...", base);
1326
1327 if (call_prom_ret("call-method", 4, 3, rets,
1328 ADDR("load-opal-runtime"),
1329 opal_inst,
1330 base >> 32, base & 0xffffffff) != 0
1331 || (rets[0] == 0 && rets[1] == 0)) {
1332 prom_printf(" failed\n");
1333 return;
1334 }
1335 entry = (((u64)rets[0]) << 32) | rets[1];
1336
1337 prom_printf(" done\n");
1338
1339 reserve_mem(base, size);
1340
1341 prom_debug("opal base = 0x%x\n", base);
1342 prom_debug("opal align = 0x%x\n", align);
1343 prom_debug("opal entry = 0x%x\n", entry);
1344 prom_debug("opal size = 0x%x\n", (long)size);
1345
1346 prom_setprop(opal_node, "/ibm,opal", "opal-base-address",
1347 &base, sizeof(base));
1348 prom_setprop(opal_node, "/ibm,opal", "opal-entry-address",
1349 &entry, sizeof(entry));
1350
1351#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
Anton Blanchard5827d412012-11-26 17:40:03 +00001352 prom_opal_base = base;
1353 prom_opal_entry = entry;
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001354#endif
1355 prom_debug("prom_instantiate_opal: end...\n");
1356}
1357
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001358#endif /* CONFIG_PPC_POWERNV */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001359
1360/*
1361 * Allocate room for and instantiate RTAS
1362 */
1363static void __init prom_instantiate_rtas(void)
1364{
1365 phandle rtas_node;
1366 ihandle rtas_inst;
1367 u32 base, entry = 0;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001368 __be32 val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001369 u32 size = 0;
1370
1371 prom_debug("prom_instantiate_rtas: start...\n");
1372
1373 rtas_node = call_prom("finddevice", 1, 1, ADDR("/rtas"));
1374 prom_debug("rtas_node: %x\n", rtas_node);
1375 if (!PHANDLE_VALID(rtas_node))
1376 return;
1377
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001378 val = 0;
1379 prom_getprop(rtas_node, "rtas-size", &val, sizeof(size));
1380 size = be32_to_cpu(val);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001381 if (size == 0)
1382 return;
1383
1384 base = alloc_down(size, PAGE_SIZE, 0);
Anton Blanchard6d1e2c62011-11-14 12:55:47 +00001385 if (base == 0)
1386 prom_panic("Could not allocate memory for RTAS\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001387
1388 rtas_inst = call_prom("open", 1, 1, ADDR("/rtas"));
1389 if (!IHANDLE_VALID(rtas_inst)) {
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001390 prom_printf("opening rtas package failed (%x)\n", rtas_inst);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001391 return;
1392 }
1393
Anton Blanchard1f8737a2009-03-31 20:06:15 +00001394 prom_printf("instantiating rtas at 0x%x...", base);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001395
1396 if (call_prom_ret("call-method", 3, 2, &entry,
1397 ADDR("instantiate-rtas"),
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001398 rtas_inst, base) != 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001399 || entry == 0) {
1400 prom_printf(" failed\n");
1401 return;
1402 }
1403 prom_printf(" done\n");
1404
1405 reserve_mem(base, size);
1406
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001407 val = cpu_to_be32(base);
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001408 prom_setprop(rtas_node, "/rtas", "linux,rtas-base",
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001409 &val, sizeof(val));
1410 val = cpu_to_be32(entry);
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001411 prom_setprop(rtas_node, "/rtas", "linux,rtas-entry",
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001412 &val, sizeof(val));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001413
Benjamin Herrenschmidtdbe78b42013-09-25 14:02:50 +10001414 /* Check if it supports "query-cpu-stopped-state" */
1415 if (prom_getprop(rtas_node, "query-cpu-stopped-state",
1416 &val, sizeof(val)) != PROM_ERROR)
1417 rtas_has_query_cpu_stopped = true;
1418
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001419 prom_debug("rtas base = 0x%x\n", base);
1420 prom_debug("rtas entry = 0x%x\n", entry);
1421 prom_debug("rtas size = 0x%x\n", (long)size);
1422
1423 prom_debug("prom_instantiate_rtas: end...\n");
1424}
1425
1426#ifdef CONFIG_PPC64
1427/*
Ashley Lai4a727422012-08-14 18:34:57 -05001428 * Allocate room for and instantiate Stored Measurement Log (SML)
1429 */
1430static void __init prom_instantiate_sml(void)
1431{
1432 phandle ibmvtpm_node;
1433 ihandle ibmvtpm_inst;
Hon Ching \(Vicky\) Lob4ed0462015-10-07 20:11:53 -04001434 u32 entry = 0, size = 0, succ = 0;
Ashley Lai4a727422012-08-14 18:34:57 -05001435 u64 base;
Hon Ching \(Vicky\) Lob4ed0462015-10-07 20:11:53 -04001436 __be32 val;
Ashley Lai4a727422012-08-14 18:34:57 -05001437
1438 prom_debug("prom_instantiate_sml: start...\n");
1439
Hon Ching \(Vicky\) Lo2f82e982015-10-07 20:11:52 -04001440 ibmvtpm_node = call_prom("finddevice", 1, 1, ADDR("/vdevice/vtpm"));
Ashley Lai4a727422012-08-14 18:34:57 -05001441 prom_debug("ibmvtpm_node: %x\n", ibmvtpm_node);
1442 if (!PHANDLE_VALID(ibmvtpm_node))
1443 return;
1444
Hon Ching \(Vicky\) Lo2f82e982015-10-07 20:11:52 -04001445 ibmvtpm_inst = call_prom("open", 1, 1, ADDR("/vdevice/vtpm"));
Ashley Lai4a727422012-08-14 18:34:57 -05001446 if (!IHANDLE_VALID(ibmvtpm_inst)) {
1447 prom_printf("opening vtpm package failed (%x)\n", ibmvtpm_inst);
1448 return;
1449 }
1450
Hon Ching \(Vicky\) Lob4ed0462015-10-07 20:11:53 -04001451 if (prom_getprop(ibmvtpm_node, "ibm,sml-efi-reformat-supported",
1452 &val, sizeof(val)) != PROM_ERROR) {
1453 if (call_prom_ret("call-method", 2, 2, &succ,
1454 ADDR("reformat-sml-to-efi-alignment"),
1455 ibmvtpm_inst) != 0 || succ == 0) {
1456 prom_printf("Reformat SML to EFI alignment failed\n");
1457 return;
1458 }
Hon Ching \(Vicky\) Lob4ed0462015-10-07 20:11:53 -04001459
Hon Ching \(Vicky\) Lo9e5d4af2015-10-07 20:11:54 -04001460 if (call_prom_ret("call-method", 2, 2, &size,
1461 ADDR("sml-get-allocated-size"),
1462 ibmvtpm_inst) != 0 || size == 0) {
1463 prom_printf("SML get allocated size failed\n");
1464 return;
1465 }
1466 } else {
1467 if (call_prom_ret("call-method", 2, 2, &size,
1468 ADDR("sml-get-handover-size"),
1469 ibmvtpm_inst) != 0 || size == 0) {
1470 prom_printf("SML get handover size failed\n");
1471 return;
1472 }
Ashley Lai4a727422012-08-14 18:34:57 -05001473 }
1474
1475 base = alloc_down(size, PAGE_SIZE, 0);
1476 if (base == 0)
1477 prom_panic("Could not allocate memory for sml\n");
1478
1479 prom_printf("instantiating sml at 0x%x...", base);
1480
Hon Ching \(Vicky\) Lo9e5d4af2015-10-07 20:11:54 -04001481 memset((void *)base, 0, size);
1482
Ashley Lai4a727422012-08-14 18:34:57 -05001483 if (call_prom_ret("call-method", 4, 2, &entry,
1484 ADDR("sml-handover"),
1485 ibmvtpm_inst, size, base) != 0 || entry == 0) {
1486 prom_printf("SML handover failed\n");
1487 return;
1488 }
1489 prom_printf(" done\n");
1490
1491 reserve_mem(base, size);
1492
Hon Ching \(Vicky\) Lo2f82e982015-10-07 20:11:52 -04001493 prom_setprop(ibmvtpm_node, "/vdevice/vtpm", "linux,sml-base",
Ashley Lai4a727422012-08-14 18:34:57 -05001494 &base, sizeof(base));
Hon Ching \(Vicky\) Lo2f82e982015-10-07 20:11:52 -04001495 prom_setprop(ibmvtpm_node, "/vdevice/vtpm", "linux,sml-size",
Ashley Lai4a727422012-08-14 18:34:57 -05001496 &size, sizeof(size));
1497
1498 prom_debug("sml base = 0x%x\n", base);
1499 prom_debug("sml size = 0x%x\n", (long)size);
1500
1501 prom_debug("prom_instantiate_sml: end...\n");
1502}
1503
1504/*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001505 * Allocate room for and initialize TCE tables
1506 */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001507#ifdef __BIG_ENDIAN__
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001508static void __init prom_initialize_tce_table(void)
1509{
1510 phandle node;
1511 ihandle phb_node;
1512 char compatible[64], type[64], model[64];
Anton Blanchard5827d412012-11-26 17:40:03 +00001513 char *path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001514 u64 base, align;
1515 u32 minalign, minsize;
1516 u64 tce_entry, *tce_entryp;
1517 u64 local_alloc_top, local_alloc_bottom;
1518 u64 i;
1519
Anton Blanchard5827d412012-11-26 17:40:03 +00001520 if (prom_iommu_off)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001521 return;
1522
1523 prom_debug("starting prom_initialize_tce_table\n");
1524
1525 /* Cache current top of allocs so we reserve a single block */
Anton Blanchard5827d412012-11-26 17:40:03 +00001526 local_alloc_top = alloc_top_high;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001527 local_alloc_bottom = local_alloc_top;
1528
1529 /* Search all nodes looking for PHBs. */
1530 for (node = 0; prom_next_node(&node); ) {
1531 compatible[0] = 0;
1532 type[0] = 0;
1533 model[0] = 0;
1534 prom_getprop(node, "compatible",
1535 compatible, sizeof(compatible));
1536 prom_getprop(node, "device_type", type, sizeof(type));
1537 prom_getprop(node, "model", model, sizeof(model));
1538
Anton Blanchard5827d412012-11-26 17:40:03 +00001539 if ((type[0] == 0) || (strstr(type, "pci") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001540 continue;
1541
Linas Vepstase788ff12007-09-07 03:45:21 +10001542 /* Keep the old logic intact to avoid regression. */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001543 if (compatible[0] != 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +00001544 if ((strstr(compatible, "python") == NULL) &&
1545 (strstr(compatible, "Speedwagon") == NULL) &&
1546 (strstr(compatible, "Winnipeg") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001547 continue;
1548 } else if (model[0] != 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +00001549 if ((strstr(model, "ython") == NULL) &&
1550 (strstr(model, "peedwagon") == NULL) &&
1551 (strstr(model, "innipeg") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001552 continue;
1553 }
1554
1555 if (prom_getprop(node, "tce-table-minalign", &minalign,
1556 sizeof(minalign)) == PROM_ERROR)
1557 minalign = 0;
1558 if (prom_getprop(node, "tce-table-minsize", &minsize,
1559 sizeof(minsize)) == PROM_ERROR)
1560 minsize = 4UL << 20;
1561
1562 /*
1563 * Even though we read what OF wants, we just set the table
1564 * size to 4 MB. This is enough to map 2GB of PCI DMA space.
1565 * By doing this, we avoid the pitfalls of trying to DMA to
1566 * MMIO space and the DMA alias hole.
1567 *
1568 * On POWER4, firmware sets the TCE region by assuming
1569 * each TCE table is 8MB. Using this memory for anything
1570 * else will impact performance, so we always allocate 8MB.
1571 * Anton
1572 */
Michael Ellermand3dbeef2012-08-19 21:44:01 +00001573 if (pvr_version_is(PVR_POWER4) || pvr_version_is(PVR_POWER4p))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001574 minsize = 8UL << 20;
1575 else
1576 minsize = 4UL << 20;
1577
1578 /* Align to the greater of the align or size */
1579 align = max(minalign, minsize);
1580 base = alloc_down(minsize, align, 1);
1581 if (base == 0)
1582 prom_panic("ERROR, cannot find space for TCE table.\n");
1583 if (base < local_alloc_bottom)
1584 local_alloc_bottom = base;
1585
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001586 /* It seems OF doesn't null-terminate the path :-( */
Li Zefanaca71ef2007-11-05 13:21:56 +11001587 memset(path, 0, PROM_SCRATCH_SIZE);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001588 /* Call OF to setup the TCE hardware */
1589 if (call_prom("package-to-path", 3, 1, node,
1590 path, PROM_SCRATCH_SIZE-1) == PROM_ERROR) {
1591 prom_printf("package-to-path failed\n");
1592 }
1593
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001594 /* Save away the TCE table attributes for later use. */
1595 prom_setprop(node, path, "linux,tce-base", &base, sizeof(base));
1596 prom_setprop(node, path, "linux,tce-size", &minsize, sizeof(minsize));
1597
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001598 prom_debug("TCE table: %s\n", path);
1599 prom_debug("\tnode = 0x%x\n", node);
1600 prom_debug("\tbase = 0x%x\n", base);
1601 prom_debug("\tsize = 0x%x\n", minsize);
1602
1603 /* Initialize the table to have a one-to-one mapping
1604 * over the allocated size.
1605 */
Ingo Molnar2b931fb2009-01-06 13:56:52 +00001606 tce_entryp = (u64 *)base;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001607 for (i = 0; i < (minsize >> 3) ;tce_entryp++, i++) {
1608 tce_entry = (i << PAGE_SHIFT);
1609 tce_entry |= 0x3;
1610 *tce_entryp = tce_entry;
1611 }
1612
1613 prom_printf("opening PHB %s", path);
1614 phb_node = call_prom("open", 1, 1, path);
1615 if (phb_node == 0)
1616 prom_printf("... failed\n");
1617 else
1618 prom_printf("... done\n");
1619
1620 call_prom("call-method", 6, 0, ADDR("set-64-bit-addressing"),
1621 phb_node, -1, minsize,
1622 (u32) base, (u32) (base >> 32));
1623 call_prom("close", 1, 0, phb_node);
1624 }
1625
1626 reserve_mem(local_alloc_bottom, local_alloc_top - local_alloc_bottom);
1627
Michael Ellerman2babf5c2006-05-17 18:00:46 +10001628 /* These are only really needed if there is a memory limit in
1629 * effect, but we don't know so export them always. */
Anton Blanchard5827d412012-11-26 17:40:03 +00001630 prom_tce_alloc_start = local_alloc_bottom;
1631 prom_tce_alloc_end = local_alloc_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001632
1633 /* Flag the first invalid entry */
1634 prom_debug("ending prom_initialize_tce_table\n");
1635}
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001636#endif /* __BIG_ENDIAN__ */
1637#endif /* CONFIG_PPC64 */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001638
1639/*
1640 * With CHRP SMP we need to use the OF to start the other processors.
1641 * We can't wait until smp_boot_cpus (the OF is trashed by then)
1642 * so we have to put the processors into a holding pattern controlled
1643 * by the kernel (not OF) before we destroy the OF.
1644 *
1645 * This uses a chunk of low memory, puts some holding pattern
1646 * code there and sends the other processors off to there until
1647 * smp_boot_cpus tells them to do something. The holding pattern
1648 * checks that address until its cpu # is there, when it is that
1649 * cpu jumps to __secondary_start(). smp_boot_cpus() takes care
1650 * of setting those values.
1651 *
1652 * We also use physical address 0x4 here to tell when a cpu
1653 * is in its holding pattern code.
1654 *
1655 * -- Cort
1656 */
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001657/*
1658 * We want to reference the copy of __secondary_hold_* in the
1659 * 0 - 0x100 address range
1660 */
1661#define LOW_ADDR(x) (((unsigned long) &(x)) & 0xff)
1662
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001663static void __init prom_hold_cpus(void)
1664{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001665 unsigned long i;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001666 phandle node;
1667 char type[64];
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001668 unsigned long *spinloop
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001669 = (void *) LOW_ADDR(__secondary_hold_spinloop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001670 unsigned long *acknowledge
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001671 = (void *) LOW_ADDR(__secondary_hold_acknowledge);
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001672 unsigned long secondary_hold = LOW_ADDR(__secondary_hold);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001673
Benjamin Herrenschmidtdbe78b42013-09-25 14:02:50 +10001674 /*
1675 * On pseries, if RTAS supports "query-cpu-stopped-state",
1676 * we skip this stage, the CPUs will be started by the
1677 * kernel using RTAS.
1678 */
1679 if ((of_platform == PLATFORM_PSERIES ||
1680 of_platform == PLATFORM_PSERIES_LPAR) &&
1681 rtas_has_query_cpu_stopped) {
1682 prom_printf("prom_hold_cpus: skipped\n");
1683 return;
1684 }
1685
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001686 prom_debug("prom_hold_cpus: start...\n");
1687 prom_debug(" 1) spinloop = 0x%x\n", (unsigned long)spinloop);
1688 prom_debug(" 1) *spinloop = 0x%x\n", *spinloop);
1689 prom_debug(" 1) acknowledge = 0x%x\n",
1690 (unsigned long)acknowledge);
1691 prom_debug(" 1) *acknowledge = 0x%x\n", *acknowledge);
1692 prom_debug(" 1) secondary_hold = 0x%x\n", secondary_hold);
1693
1694 /* Set the common spinloop variable, so all of the secondary cpus
1695 * will block when they are awakened from their OF spinloop.
1696 * This must occur for both SMP and non SMP kernels, since OF will
1697 * be trashed when we move the kernel.
1698 */
1699 *spinloop = 0;
1700
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001701 /* look for cpus */
1702 for (node = 0; prom_next_node(&node); ) {
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001703 unsigned int cpu_no;
1704 __be32 reg;
1705
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001706 type[0] = 0;
1707 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001708 if (strcmp(type, "cpu") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001709 continue;
1710
1711 /* Skip non-configured cpus. */
1712 if (prom_getprop(node, "status", type, sizeof(type)) > 0)
Anton Blanchard5827d412012-11-26 17:40:03 +00001713 if (strcmp(type, "okay") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001714 continue;
1715
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001716 reg = cpu_to_be32(-1); /* make sparse happy */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001717 prom_getprop(node, "reg", &reg, sizeof(reg));
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001718 cpu_no = be32_to_cpu(reg);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001719
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001720 prom_debug("cpu hw idx = %lu\n", cpu_no);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001721
1722 /* Init the acknowledge var which will be reset by
1723 * the secondary cpu when it awakens from its OF
1724 * spinloop.
1725 */
1726 *acknowledge = (unsigned long)-1;
1727
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001728 if (cpu_no != prom.cpu) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001729 /* Primary Thread of non-boot cpu or any thread */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001730 prom_printf("starting cpu hw idx %lu... ", cpu_no);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001731 call_prom("start-cpu", 3, 0, node,
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001732 secondary_hold, cpu_no);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001733
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001734 for (i = 0; (i < 100000000) &&
1735 (*acknowledge == ((unsigned long)-1)); i++ )
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001736 mb();
1737
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001738 if (*acknowledge == cpu_no)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001739 prom_printf("done\n");
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001740 else
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001741 prom_printf("failed: %x\n", *acknowledge);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001742 }
1743#ifdef CONFIG_SMP
1744 else
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001745 prom_printf("boot cpu hw idx %lu\n", cpu_no);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001746#endif /* CONFIG_SMP */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001747 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001748
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001749 prom_debug("prom_hold_cpus: end...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001750}
1751
1752
1753static void __init prom_init_client_services(unsigned long pp)
1754{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001755 /* Get a handle to the prom entry point before anything else */
Anton Blanchard5827d412012-11-26 17:40:03 +00001756 prom_entry = pp;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001757
1758 /* get a handle for the stdout device */
Anton Blanchard5827d412012-11-26 17:40:03 +00001759 prom.chosen = call_prom("finddevice", 1, 1, ADDR("/chosen"));
1760 if (!PHANDLE_VALID(prom.chosen))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001761 prom_panic("cannot find chosen"); /* msg won't be printed :( */
1762
1763 /* get device tree root */
Anton Blanchard5827d412012-11-26 17:40:03 +00001764 prom.root = call_prom("finddevice", 1, 1, ADDR("/"));
1765 if (!PHANDLE_VALID(prom.root))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001766 prom_panic("cannot find device tree root"); /* msg won't be printed :( */
Paul Mackerrasa575b802005-10-23 17:23:21 +10001767
Anton Blanchard5827d412012-11-26 17:40:03 +00001768 prom.mmumap = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001769}
1770
Paul Mackerrasa575b802005-10-23 17:23:21 +10001771#ifdef CONFIG_PPC32
1772/*
1773 * For really old powermacs, we need to map things we claim.
1774 * For that, we need the ihandle of the mmu.
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001775 * Also, on the longtrail, we need to work around other bugs.
Paul Mackerrasa575b802005-10-23 17:23:21 +10001776 */
1777static void __init prom_find_mmu(void)
1778{
Paul Mackerrasa575b802005-10-23 17:23:21 +10001779 phandle oprom;
1780 char version[64];
1781
1782 oprom = call_prom("finddevice", 1, 1, ADDR("/openprom"));
1783 if (!PHANDLE_VALID(oprom))
1784 return;
1785 if (prom_getprop(oprom, "model", version, sizeof(version)) <= 0)
1786 return;
1787 version[sizeof(version) - 1] = 0;
Paul Mackerrasa575b802005-10-23 17:23:21 +10001788 /* XXX might need to add other versions here */
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001789 if (strcmp(version, "Open Firmware, 1.0.5") == 0)
1790 of_workarounds = OF_WA_CLAIM;
1791 else if (strncmp(version, "FirmWorks,3.", 12) == 0) {
1792 of_workarounds = OF_WA_CLAIM | OF_WA_LONGTRAIL;
1793 call_prom("interpret", 1, 1, "dev /memory 0 to allow-reclaim");
1794 } else
Paul Mackerrasa575b802005-10-23 17:23:21 +10001795 return;
Anton Blanchard5827d412012-11-26 17:40:03 +00001796 prom.memory = call_prom("open", 1, 1, ADDR("/memory"));
1797 prom_getprop(prom.chosen, "mmu", &prom.mmumap,
1798 sizeof(prom.mmumap));
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001799 prom.mmumap = be32_to_cpu(prom.mmumap);
Anton Blanchard5827d412012-11-26 17:40:03 +00001800 if (!IHANDLE_VALID(prom.memory) || !IHANDLE_VALID(prom.mmumap))
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001801 of_workarounds &= ~OF_WA_CLAIM; /* hmmm */
Paul Mackerrasa575b802005-10-23 17:23:21 +10001802}
1803#else
1804#define prom_find_mmu()
1805#endif
1806
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001807static void __init prom_init_stdout(void)
1808{
Anton Blanchard5827d412012-11-26 17:40:03 +00001809 char *path = of_stdout_device;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001810 char type[16];
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001811 phandle stdout_node;
1812 __be32 val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001813
Anton Blanchard5827d412012-11-26 17:40:03 +00001814 if (prom_getprop(prom.chosen, "stdout", &val, sizeof(val)) <= 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001815 prom_panic("cannot find stdout");
1816
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001817 prom.stdout = be32_to_cpu(val);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001818
1819 /* Get the full OF pathname of the stdout device */
1820 memset(path, 0, 256);
Anton Blanchard5827d412012-11-26 17:40:03 +00001821 call_prom("instance-to-path", 3, 1, prom.stdout, path, 255);
Anton Blanchard5827d412012-11-26 17:40:03 +00001822 prom_printf("OF stdout device is: %s\n", of_stdout_device);
1823 prom_setprop(prom.chosen, "/chosen", "linux,stdout-path",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001824 path, strlen(path) + 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001825
Benjamin Herrenschmidt10348f52014-01-13 09:49:17 +11001826 /* instance-to-package fails on PA-Semi */
1827 stdout_node = call_prom("instance-to-package", 1, 1, prom.stdout);
1828 if (stdout_node != PROM_ERROR) {
1829 val = cpu_to_be32(stdout_node);
1830 prom_setprop(prom.chosen, "/chosen", "linux,stdout-package",
1831 &val, sizeof(val));
1832
1833 /* If it's a display, note it */
1834 memset(type, 0, sizeof(type));
1835 prom_getprop(stdout_node, "device_type", type, sizeof(type));
1836 if (strcmp(type, "display") == 0)
1837 prom_setprop(stdout_node, path, "linux,boot-display", NULL, 0);
1838 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001839}
1840
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001841static int __init prom_find_machine_type(void)
1842{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001843 char compat[256];
1844 int len, i = 0;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +11001845#ifdef CONFIG_PPC64
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001846 phandle rtas;
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001847 int x;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +11001848#endif
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001849
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001850 /* Look for a PowerMac or a Cell */
Anton Blanchard5827d412012-11-26 17:40:03 +00001851 len = prom_getprop(prom.root, "compatible",
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001852 compat, sizeof(compat)-1);
1853 if (len > 0) {
1854 compat[len] = 0;
1855 while (i < len) {
1856 char *p = &compat[i];
1857 int sl = strlen(p);
1858 if (sl == 0)
1859 break;
Anton Blanchard5827d412012-11-26 17:40:03 +00001860 if (strstr(p, "Power Macintosh") ||
1861 strstr(p, "MacRISC"))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001862 return PLATFORM_POWERMAC;
Arnd Bergmann133dda12006-06-07 12:04:18 +10001863#ifdef CONFIG_PPC64
1864 /* We must make sure we don't detect the IBM Cell
1865 * blades as pSeries due to some firmware issues,
1866 * so we do it here.
1867 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001868 if (strstr(p, "IBM,CBEA") ||
1869 strstr(p, "IBM,CPBW-1.0"))
Arnd Bergmann133dda12006-06-07 12:04:18 +10001870 return PLATFORM_GENERIC;
1871#endif /* CONFIG_PPC64 */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001872 i += sl + 1;
1873 }
1874 }
1875#ifdef CONFIG_PPC64
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001876 /* Try to detect OPAL */
1877 if (PHANDLE_VALID(call_prom("finddevice", 1, 1, ADDR("/ibm,opal"))))
1878 return PLATFORM_OPAL;
1879
1880 /* Try to figure out if it's an IBM pSeries or any other
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001881 * PAPR compliant platform. We assume it is if :
1882 * - /device_type is "chrp" (please, do NOT use that for future
1883 * non-IBM designs !
1884 * - it has /rtas
1885 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001886 len = prom_getprop(prom.root, "device_type",
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001887 compat, sizeof(compat)-1);
1888 if (len <= 0)
1889 return PLATFORM_GENERIC;
Anton Blanchard5827d412012-11-26 17:40:03 +00001890 if (strcmp(compat, "chrp"))
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001891 return PLATFORM_GENERIC;
1892
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001893 /* Default to pSeries. We need to know if we are running LPAR */
1894 rtas = call_prom("finddevice", 1, 1, ADDR("/rtas"));
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001895 if (!PHANDLE_VALID(rtas))
1896 return PLATFORM_GENERIC;
1897 x = prom_getproplen(rtas, "ibm,hypertas-functions");
1898 if (x != PROM_ERROR) {
Anton Blanchard4da727a2009-03-31 20:06:14 +00001899 prom_debug("Hypertas detected, assuming LPAR !\n");
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001900 return PLATFORM_PSERIES_LPAR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001901 }
1902 return PLATFORM_PSERIES;
1903#else
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001904 return PLATFORM_GENERIC;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001905#endif
1906}
1907
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001908static int __init prom_set_color(ihandle ih, int i, int r, int g, int b)
1909{
1910 return call_prom("call-method", 6, 1, ADDR("color!"), ih, i, b, g, r);
1911}
1912
1913/*
1914 * If we have a display that we don't know how to drive,
1915 * we will want to try to execute OF's open method for it
1916 * later. However, OF will probably fall over if we do that
1917 * we've taken over the MMU.
1918 * So we check whether we will need to open the display,
1919 * and if so, open it now.
1920 */
1921static void __init prom_check_displays(void)
1922{
1923 char type[16], *path;
1924 phandle node;
1925 ihandle ih;
1926 int i;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001927
1928 static unsigned char default_colors[] = {
1929 0x00, 0x00, 0x00,
1930 0x00, 0x00, 0xaa,
1931 0x00, 0xaa, 0x00,
1932 0x00, 0xaa, 0xaa,
1933 0xaa, 0x00, 0x00,
1934 0xaa, 0x00, 0xaa,
1935 0xaa, 0xaa, 0x00,
1936 0xaa, 0xaa, 0xaa,
1937 0x55, 0x55, 0x55,
1938 0x55, 0x55, 0xff,
1939 0x55, 0xff, 0x55,
1940 0x55, 0xff, 0xff,
1941 0xff, 0x55, 0x55,
1942 0xff, 0x55, 0xff,
1943 0xff, 0xff, 0x55,
1944 0xff, 0xff, 0xff
1945 };
1946 const unsigned char *clut;
1947
Anton Blanchard4da727a2009-03-31 20:06:14 +00001948 prom_debug("Looking for displays\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001949 for (node = 0; prom_next_node(&node); ) {
1950 memset(type, 0, sizeof(type));
1951 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001952 if (strcmp(type, "display") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001953 continue;
1954
1955 /* It seems OF doesn't null-terminate the path :-( */
Anton Blanchard5827d412012-11-26 17:40:03 +00001956 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001957 memset(path, 0, PROM_SCRATCH_SIZE);
1958
1959 /*
1960 * leave some room at the end of the path for appending extra
1961 * arguments
1962 */
1963 if (call_prom("package-to-path", 3, 1, node, path,
1964 PROM_SCRATCH_SIZE-10) == PROM_ERROR)
1965 continue;
Anton Blanchard1f8737a2009-03-31 20:06:15 +00001966 prom_printf("found display : %s, opening... ", path);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001967
1968 ih = call_prom("open", 1, 1, path);
1969 if (ih == 0) {
1970 prom_printf("failed\n");
1971 continue;
1972 }
1973
1974 /* Success */
1975 prom_printf("done\n");
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001976 prom_setprop(node, path, "linux,opened", NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001977
1978 /* Setup a usable color table when the appropriate
1979 * method is available. Should update this to set-colors */
Anton Blanchard5827d412012-11-26 17:40:03 +00001980 clut = default_colors;
Benjamin Herrenschmidt3f536382011-12-14 13:55:11 +00001981 for (i = 0; i < 16; i++, clut += 3)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001982 if (prom_set_color(ih, i, clut[0], clut[1],
1983 clut[2]) != 0)
1984 break;
1985
1986#ifdef CONFIG_LOGO_LINUX_CLUT224
Anton Blanchard5827d412012-11-26 17:40:03 +00001987 clut = PTRRELOC(logo_linux_clut224.clut);
1988 for (i = 0; i < logo_linux_clut224.clutsize; i++, clut += 3)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001989 if (prom_set_color(ih, i + 32, clut[0], clut[1],
1990 clut[2]) != 0)
1991 break;
1992#endif /* CONFIG_LOGO_LINUX_CLUT224 */
Benjamin Herrenschmidt7191b612013-07-25 12:12:32 +10001993
1994#ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX
1995 if (prom_getprop(node, "linux,boot-display", NULL, 0) !=
1996 PROM_ERROR) {
1997 u32 width, height, pitch, addr;
1998
1999 prom_printf("Setting btext !\n");
2000 prom_getprop(node, "width", &width, 4);
2001 prom_getprop(node, "height", &height, 4);
2002 prom_getprop(node, "linebytes", &pitch, 4);
2003 prom_getprop(node, "address", &addr, 4);
2004 prom_printf("W=%d H=%d LB=%d addr=0x%x\n",
2005 width, height, pitch, addr);
2006 btext_setup_display(width, height, 8, pitch, addr);
2007 }
2008#endif /* CONFIG_PPC_EARLY_DEBUG_BOOTX */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002009 }
2010}
2011
2012
2013/* Return (relocated) pointer to this much memory: moves initrd if reqd. */
2014static void __init *make_room(unsigned long *mem_start, unsigned long *mem_end,
2015 unsigned long needed, unsigned long align)
2016{
2017 void *ret;
2018
2019 *mem_start = _ALIGN(*mem_start, align);
2020 while ((*mem_start + needed) > *mem_end) {
2021 unsigned long room, chunk;
2022
2023 prom_debug("Chunk exhausted, claiming more at %x...\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002024 alloc_bottom);
2025 room = alloc_top - alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002026 if (room > DEVTREE_CHUNK_SIZE)
2027 room = DEVTREE_CHUNK_SIZE;
2028 if (room < PAGE_SIZE)
Anton Blanchardfbafd722011-07-25 20:47:51 +00002029 prom_panic("No memory for flatten_device_tree "
2030 "(no room)\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002031 chunk = alloc_up(room, 0);
2032 if (chunk == 0)
Anton Blanchardfbafd722011-07-25 20:47:51 +00002033 prom_panic("No memory for flatten_device_tree "
2034 "(claim failed)\n");
Anton Blanchard966728d2011-07-25 20:47:07 +00002035 *mem_end = chunk + room;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002036 }
2037
2038 ret = (void *)*mem_start;
2039 *mem_start += needed;
2040
2041 return ret;
2042}
2043
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002044#define dt_push_token(token, mem_start, mem_end) do { \
2045 void *room = make_room(mem_start, mem_end, 4, 4); \
2046 *(__be32 *)room = cpu_to_be32(token); \
2047 } while(0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002048
2049static unsigned long __init dt_find_string(char *str)
2050{
2051 char *s, *os;
2052
Anton Blanchard5827d412012-11-26 17:40:03 +00002053 s = os = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002054 s += 4;
Anton Blanchard5827d412012-11-26 17:40:03 +00002055 while (s < (char *)dt_string_end) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002056 if (strcmp(s, str) == 0)
2057 return s - os;
2058 s += strlen(s) + 1;
2059 }
2060 return 0;
2061}
2062
2063/*
2064 * The Open Firmware 1275 specification states properties must be 31 bytes or
2065 * less, however not all firmwares obey this. Make it 64 bytes to be safe.
2066 */
2067#define MAX_PROPERTY_NAME 64
2068
2069static void __init scan_dt_build_strings(phandle node,
2070 unsigned long *mem_start,
2071 unsigned long *mem_end)
2072{
2073 char *prev_name, *namep, *sstart;
2074 unsigned long soff;
2075 phandle child;
2076
Anton Blanchard5827d412012-11-26 17:40:03 +00002077 sstart = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002078
2079 /* get and store all property names */
Anton Blanchard5827d412012-11-26 17:40:03 +00002080 prev_name = "";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002081 for (;;) {
2082 /* 64 is max len of name including nul. */
2083 namep = make_room(mem_start, mem_end, MAX_PROPERTY_NAME, 1);
2084 if (call_prom("nextprop", 3, 1, node, prev_name, namep) != 1) {
2085 /* No more nodes: unwind alloc */
2086 *mem_start = (unsigned long)namep;
2087 break;
2088 }
2089
2090 /* skip "name" */
Anton Blanchard5827d412012-11-26 17:40:03 +00002091 if (strcmp(namep, "name") == 0) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002092 *mem_start = (unsigned long)namep;
Anton Blanchard5827d412012-11-26 17:40:03 +00002093 prev_name = "name";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002094 continue;
2095 }
2096 /* get/create string entry */
2097 soff = dt_find_string(namep);
2098 if (soff != 0) {
2099 *mem_start = (unsigned long)namep;
2100 namep = sstart + soff;
2101 } else {
2102 /* Trim off some if we can */
2103 *mem_start = (unsigned long)namep + strlen(namep) + 1;
Anton Blanchard5827d412012-11-26 17:40:03 +00002104 dt_string_end = *mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002105 }
2106 prev_name = namep;
2107 }
2108
2109 /* do all our children */
2110 child = call_prom("child", 1, 1, node);
2111 while (child != 0) {
2112 scan_dt_build_strings(child, mem_start, mem_end);
2113 child = call_prom("peer", 1, 1, child);
2114 }
2115}
2116
2117static void __init scan_dt_build_struct(phandle node, unsigned long *mem_start,
2118 unsigned long *mem_end)
2119{
2120 phandle child;
2121 char *namep, *prev_name, *sstart, *p, *ep, *lp, *path;
2122 unsigned long soff;
2123 unsigned char *valp;
2124 static char pname[MAX_PROPERTY_NAME];
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002125 int l, room, has_phandle = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002126
2127 dt_push_token(OF_DT_BEGIN_NODE, mem_start, mem_end);
2128
2129 /* get the node's full name */
2130 namep = (char *)*mem_start;
Paul Mackerrasc49888202005-10-26 21:52:53 +10002131 room = *mem_end - *mem_start;
2132 if (room > 255)
2133 room = 255;
2134 l = call_prom("package-to-path", 3, 1, node, namep, room);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002135 if (l >= 0) {
2136 /* Didn't fit? Get more room. */
Paul Mackerrasc49888202005-10-26 21:52:53 +10002137 if (l >= room) {
2138 if (l >= *mem_end - *mem_start)
2139 namep = make_room(mem_start, mem_end, l+1, 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002140 call_prom("package-to-path", 3, 1, node, namep, l);
2141 }
2142 namep[l] = '\0';
2143
2144 /* Fixup an Apple bug where they have bogus \0 chars in the
Paul Mackerrasa575b802005-10-23 17:23:21 +10002145 * middle of the path in some properties, and extract
2146 * the unit name (everything after the last '/').
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002147 */
Paul Mackerrasa575b802005-10-23 17:23:21 +10002148 for (lp = p = namep, ep = namep + l; p < ep; p++) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002149 if (*p == '/')
Paul Mackerrasa575b802005-10-23 17:23:21 +10002150 lp = namep;
2151 else if (*p != 0)
2152 *lp++ = *p;
2153 }
2154 *lp = 0;
2155 *mem_start = _ALIGN((unsigned long)lp + 1, 4);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002156 }
2157
2158 /* get it again for debugging */
Anton Blanchard5827d412012-11-26 17:40:03 +00002159 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002160 memset(path, 0, PROM_SCRATCH_SIZE);
2161 call_prom("package-to-path", 3, 1, node, path, PROM_SCRATCH_SIZE-1);
2162
2163 /* get and store all properties */
Anton Blanchard5827d412012-11-26 17:40:03 +00002164 prev_name = "";
2165 sstart = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002166 for (;;) {
2167 if (call_prom("nextprop", 3, 1, node, prev_name,
Anton Blanchard5827d412012-11-26 17:40:03 +00002168 pname) != 1)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002169 break;
2170
2171 /* skip "name" */
Anton Blanchard5827d412012-11-26 17:40:03 +00002172 if (strcmp(pname, "name") == 0) {
2173 prev_name = "name";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002174 continue;
2175 }
2176
2177 /* find string offset */
Anton Blanchard5827d412012-11-26 17:40:03 +00002178 soff = dt_find_string(pname);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002179 if (soff == 0) {
2180 prom_printf("WARNING: Can't find string index for"
Anton Blanchard5827d412012-11-26 17:40:03 +00002181 " <%s>, node %s\n", pname, path);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002182 break;
2183 }
2184 prev_name = sstart + soff;
2185
2186 /* get length */
Anton Blanchard5827d412012-11-26 17:40:03 +00002187 l = call_prom("getproplen", 2, 1, node, pname);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002188
2189 /* sanity checks */
2190 if (l == PROM_ERROR)
2191 continue;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002192
2193 /* push property head */
2194 dt_push_token(OF_DT_PROP, mem_start, mem_end);
2195 dt_push_token(l, mem_start, mem_end);
2196 dt_push_token(soff, mem_start, mem_end);
2197
2198 /* push property content */
2199 valp = make_room(mem_start, mem_end, l, 4);
Anton Blanchard5827d412012-11-26 17:40:03 +00002200 call_prom("getprop", 4, 1, node, pname, valp, l);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002201 *mem_start = _ALIGN(*mem_start, 4);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002202
Anton Blanchard5827d412012-11-26 17:40:03 +00002203 if (!strcmp(pname, "phandle"))
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002204 has_phandle = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002205 }
2206
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002207 /* Add a "linux,phandle" property if no "phandle" property already
2208 * existed (can happen with OPAL)
2209 */
2210 if (!has_phandle) {
Anton Blanchard5827d412012-11-26 17:40:03 +00002211 soff = dt_find_string("linux,phandle");
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002212 if (soff == 0)
2213 prom_printf("WARNING: Can't find string index for"
2214 " <linux-phandle> node %s\n", path);
2215 else {
2216 dt_push_token(OF_DT_PROP, mem_start, mem_end);
2217 dt_push_token(4, mem_start, mem_end);
2218 dt_push_token(soff, mem_start, mem_end);
2219 valp = make_room(mem_start, mem_end, 4, 4);
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002220 *(__be32 *)valp = cpu_to_be32(node);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002221 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002222 }
2223
2224 /* do all our children */
2225 child = call_prom("child", 1, 1, node);
2226 while (child != 0) {
2227 scan_dt_build_struct(child, mem_start, mem_end);
2228 child = call_prom("peer", 1, 1, child);
2229 }
2230
2231 dt_push_token(OF_DT_END_NODE, mem_start, mem_end);
2232}
2233
2234static void __init flatten_device_tree(void)
2235{
2236 phandle root;
2237 unsigned long mem_start, mem_end, room;
2238 struct boot_param_header *hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002239 char *namep;
2240 u64 *rsvmap;
2241
2242 /*
2243 * Check how much room we have between alloc top & bottom (+/- a
Anton Blanchardfbafd722011-07-25 20:47:51 +00002244 * few pages), crop to 1MB, as this is our "chunk" size
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002245 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002246 room = alloc_top - alloc_bottom - 0x4000;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002247 if (room > DEVTREE_CHUNK_SIZE)
2248 room = DEVTREE_CHUNK_SIZE;
Anton Blanchard5827d412012-11-26 17:40:03 +00002249 prom_debug("starting device tree allocs at %x\n", alloc_bottom);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002250
2251 /* Now try to claim that */
2252 mem_start = (unsigned long)alloc_up(room, PAGE_SIZE);
2253 if (mem_start == 0)
2254 prom_panic("Can't allocate initial device-tree chunk\n");
Anton Blanchard966728d2011-07-25 20:47:07 +00002255 mem_end = mem_start + room;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002256
2257 /* Get root of tree */
2258 root = call_prom("peer", 1, 1, (phandle)0);
2259 if (root == (phandle)0)
2260 prom_panic ("couldn't get device tree root\n");
2261
2262 /* Build header and make room for mem rsv map */
2263 mem_start = _ALIGN(mem_start, 4);
2264 hdr = make_room(&mem_start, &mem_end,
2265 sizeof(struct boot_param_header), 4);
Anton Blanchard5827d412012-11-26 17:40:03 +00002266 dt_header_start = (unsigned long)hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002267 rsvmap = make_room(&mem_start, &mem_end, sizeof(mem_reserve_map), 8);
2268
2269 /* Start of strings */
2270 mem_start = PAGE_ALIGN(mem_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002271 dt_string_start = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002272 mem_start += 4; /* hole */
2273
2274 /* Add "linux,phandle" in there, we'll need it */
2275 namep = make_room(&mem_start, &mem_end, 16, 1);
Anton Blanchard5827d412012-11-26 17:40:03 +00002276 strcpy(namep, "linux,phandle");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002277 mem_start = (unsigned long)namep + strlen(namep) + 1;
2278
2279 /* Build string array */
2280 prom_printf("Building dt strings...\n");
2281 scan_dt_build_strings(root, &mem_start, &mem_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002282 dt_string_end = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002283
2284 /* Build structure */
2285 mem_start = PAGE_ALIGN(mem_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002286 dt_struct_start = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002287 prom_printf("Building dt structure...\n");
2288 scan_dt_build_struct(root, &mem_start, &mem_end);
2289 dt_push_token(OF_DT_END, &mem_start, &mem_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002290 dt_struct_end = PAGE_ALIGN(mem_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002291
2292 /* Finish header */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002293 hdr->boot_cpuid_phys = cpu_to_be32(prom.cpu);
2294 hdr->magic = cpu_to_be32(OF_DT_HEADER);
2295 hdr->totalsize = cpu_to_be32(dt_struct_end - dt_header_start);
2296 hdr->off_dt_struct = cpu_to_be32(dt_struct_start - dt_header_start);
2297 hdr->off_dt_strings = cpu_to_be32(dt_string_start - dt_header_start);
2298 hdr->dt_strings_size = cpu_to_be32(dt_string_end - dt_string_start);
2299 hdr->off_mem_rsvmap = cpu_to_be32(((unsigned long)rsvmap) - dt_header_start);
2300 hdr->version = cpu_to_be32(OF_DT_VERSION);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002301 /* Version 16 is not backward compatible */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002302 hdr->last_comp_version = cpu_to_be32(0x10);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002303
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -05002304 /* Copy the reserve map in */
Anton Blanchard5827d412012-11-26 17:40:03 +00002305 memcpy(rsvmap, mem_reserve_map, sizeof(mem_reserve_map));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002306
2307#ifdef DEBUG_PROM
2308 {
2309 int i;
2310 prom_printf("reserved memory map:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00002311 for (i = 0; i < mem_reserve_cnt; i++)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002312 prom_printf(" %x - %x\n",
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002313 be64_to_cpu(mem_reserve_map[i].base),
2314 be64_to_cpu(mem_reserve_map[i].size));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002315 }
2316#endif
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -05002317 /* Bump mem_reserve_cnt to cause further reservations to fail
2318 * since it's too late.
2319 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002320 mem_reserve_cnt = MEM_RESERVE_MAP_SIZE;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002321
2322 prom_printf("Device tree strings 0x%x -> 0x%x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002323 dt_string_start, dt_string_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002324 prom_printf("Device tree struct 0x%x -> 0x%x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002325 dt_struct_start, dt_struct_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002326}
2327
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002328#ifdef CONFIG_PPC_MAPLE
2329/* PIBS Version 1.05.0000 04/26/2005 has an incorrect /ht/isa/ranges property.
2330 * The values are bad, and it doesn't even have the right number of cells. */
2331static void __init fixup_device_tree_maple(void)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002332{
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002333 phandle isa;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002334 u32 rloc = 0x01002000; /* IO space; PCI device = 4 */
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002335 u32 isa_ranges[6];
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002336 char *name;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002337
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002338 name = "/ht@0/isa@4";
2339 isa = call_prom("finddevice", 1, 1, ADDR(name));
2340 if (!PHANDLE_VALID(isa)) {
2341 name = "/ht@0/isa@6";
2342 isa = call_prom("finddevice", 1, 1, ADDR(name));
2343 rloc = 0x01003000; /* IO space; PCI device = 6 */
2344 }
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002345 if (!PHANDLE_VALID(isa))
2346 return;
2347
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002348 if (prom_getproplen(isa, "ranges") != 12)
2349 return;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002350 if (prom_getprop(isa, "ranges", isa_ranges, sizeof(isa_ranges))
2351 == PROM_ERROR)
2352 return;
2353
2354 if (isa_ranges[0] != 0x1 ||
2355 isa_ranges[1] != 0xf4000000 ||
2356 isa_ranges[2] != 0x00010000)
2357 return;
2358
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002359 prom_printf("Fixing up bogus ISA range on Maple/Apache...\n");
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002360
2361 isa_ranges[0] = 0x1;
2362 isa_ranges[1] = 0x0;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002363 isa_ranges[2] = rloc;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002364 isa_ranges[3] = 0x0;
2365 isa_ranges[4] = 0x0;
2366 isa_ranges[5] = 0x00010000;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002367 prom_setprop(isa, name, "ranges",
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002368 isa_ranges, sizeof(isa_ranges));
2369}
Harry Ciao8f101a052009-06-17 16:28:00 -07002370
2371#define CPC925_MC_START 0xf8000000
2372#define CPC925_MC_LENGTH 0x1000000
2373/* The values for memory-controller don't have right number of cells */
2374static void __init fixup_device_tree_maple_memory_controller(void)
2375{
2376 phandle mc;
2377 u32 mc_reg[4];
2378 char *name = "/hostbridge@f8000000";
Harry Ciao8f101a052009-06-17 16:28:00 -07002379 u32 ac, sc;
2380
2381 mc = call_prom("finddevice", 1, 1, ADDR(name));
2382 if (!PHANDLE_VALID(mc))
2383 return;
2384
2385 if (prom_getproplen(mc, "reg") != 8)
2386 return;
2387
Anton Blanchard5827d412012-11-26 17:40:03 +00002388 prom_getprop(prom.root, "#address-cells", &ac, sizeof(ac));
2389 prom_getprop(prom.root, "#size-cells", &sc, sizeof(sc));
Harry Ciao8f101a052009-06-17 16:28:00 -07002390 if ((ac != 2) || (sc != 2))
2391 return;
2392
2393 if (prom_getprop(mc, "reg", mc_reg, sizeof(mc_reg)) == PROM_ERROR)
2394 return;
2395
2396 if (mc_reg[0] != CPC925_MC_START || mc_reg[1] != CPC925_MC_LENGTH)
2397 return;
2398
2399 prom_printf("Fixing up bogus hostbridge on Maple...\n");
2400
2401 mc_reg[0] = 0x0;
2402 mc_reg[1] = CPC925_MC_START;
2403 mc_reg[2] = 0x0;
2404 mc_reg[3] = CPC925_MC_LENGTH;
2405 prom_setprop(mc, name, "reg", mc_reg, sizeof(mc_reg));
2406}
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002407#else
2408#define fixup_device_tree_maple()
Harry Ciao8f101a052009-06-17 16:28:00 -07002409#define fixup_device_tree_maple_memory_controller()
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002410#endif
2411
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002412#ifdef CONFIG_PPC_CHRP
Olaf Heringe4805922007-04-04 18:20:04 +02002413/*
2414 * Pegasos and BriQ lacks the "ranges" property in the isa node
2415 * Pegasos needs decimal IRQ 14/15, not hexadecimal
Olaf Hering556ecf92007-08-18 04:27:17 +10002416 * Pegasos has the IDE configured in legacy mode, but advertised as native
Olaf Heringe4805922007-04-04 18:20:04 +02002417 */
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002418static void __init fixup_device_tree_chrp(void)
2419{
Olaf Heringe4805922007-04-04 18:20:04 +02002420 phandle ph;
2421 u32 prop[6];
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002422 u32 rloc = 0x01006000; /* IO space; PCI device = 12 */
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002423 char *name;
2424 int rc;
2425
2426 name = "/pci@80000000/isa@c";
Olaf Heringe4805922007-04-04 18:20:04 +02002427 ph = call_prom("finddevice", 1, 1, ADDR(name));
2428 if (!PHANDLE_VALID(ph)) {
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002429 name = "/pci@ff500000/isa@6";
Olaf Heringe4805922007-04-04 18:20:04 +02002430 ph = call_prom("finddevice", 1, 1, ADDR(name));
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002431 rloc = 0x01003000; /* IO space; PCI device = 6 */
2432 }
Olaf Heringe4805922007-04-04 18:20:04 +02002433 if (PHANDLE_VALID(ph)) {
2434 rc = prom_getproplen(ph, "ranges");
2435 if (rc == 0 || rc == PROM_ERROR) {
2436 prom_printf("Fixing up missing ISA range on Pegasos...\n");
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002437
Olaf Heringe4805922007-04-04 18:20:04 +02002438 prop[0] = 0x1;
2439 prop[1] = 0x0;
2440 prop[2] = rloc;
2441 prop[3] = 0x0;
2442 prop[4] = 0x0;
2443 prop[5] = 0x00010000;
2444 prom_setprop(ph, name, "ranges", prop, sizeof(prop));
2445 }
2446 }
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002447
Olaf Heringe4805922007-04-04 18:20:04 +02002448 name = "/pci@80000000/ide@C,1";
2449 ph = call_prom("finddevice", 1, 1, ADDR(name));
2450 if (PHANDLE_VALID(ph)) {
2451 prom_printf("Fixing up IDE interrupt on Pegasos...\n");
2452 prop[0] = 14;
2453 prop[1] = 0x0;
Olaf Hering556ecf92007-08-18 04:27:17 +10002454 prom_setprop(ph, name, "interrupts", prop, 2*sizeof(u32));
2455 prom_printf("Fixing up IDE class-code on Pegasos...\n");
2456 rc = prom_getprop(ph, "class-code", prop, sizeof(u32));
2457 if (rc == sizeof(u32)) {
2458 prop[0] &= ~0x5;
2459 prom_setprop(ph, name, "class-code", prop, sizeof(u32));
2460 }
Olaf Heringe4805922007-04-04 18:20:04 +02002461 }
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002462}
2463#else
2464#define fixup_device_tree_chrp()
2465#endif
2466
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002467#if defined(CONFIG_PPC64) && defined(CONFIG_PPC_PMAC)
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002468static void __init fixup_device_tree_pmac(void)
2469{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002470 phandle u3, i2c, mpic;
2471 u32 u3_rev;
2472 u32 interrupts[2];
2473 u32 parent;
2474
2475 /* Some G5s have a missing interrupt definition, fix it up here */
2476 u3 = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000"));
2477 if (!PHANDLE_VALID(u3))
2478 return;
2479 i2c = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/i2c@f8001000"));
2480 if (!PHANDLE_VALID(i2c))
2481 return;
2482 mpic = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/mpic@f8040000"));
2483 if (!PHANDLE_VALID(mpic))
2484 return;
2485
2486 /* check if proper rev of u3 */
2487 if (prom_getprop(u3, "device-rev", &u3_rev, sizeof(u3_rev))
2488 == PROM_ERROR)
2489 return;
Benjamin Herrenschmidt7d496972005-11-07 14:36:21 +11002490 if (u3_rev < 0x35 || u3_rev > 0x39)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002491 return;
2492 /* does it need fixup ? */
2493 if (prom_getproplen(i2c, "interrupts") > 0)
2494 return;
2495
2496 prom_printf("fixing up bogus interrupts for u3 i2c...\n");
2497
2498 /* interrupt on this revision of u3 is number 0 and level */
2499 interrupts[0] = 0;
2500 interrupts[1] = 1;
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002501 prom_setprop(i2c, "/u3@0,f8000000/i2c@f8001000", "interrupts",
2502 &interrupts, sizeof(interrupts));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002503 parent = (u32)mpic;
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002504 prom_setprop(i2c, "/u3@0,f8000000/i2c@f8001000", "interrupt-parent",
2505 &parent, sizeof(parent));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002506}
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002507#else
2508#define fixup_device_tree_pmac()
2509#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002510
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002511#ifdef CONFIG_PPC_EFIKA
Grant Likely94d2dde2008-01-24 22:25:32 -07002512/*
2513 * The MPC5200 FEC driver requires an phy-handle property to tell it how
2514 * to talk to the phy. If the phy-handle property is missing, then this
2515 * function is called to add the appropriate nodes and link it to the
2516 * ethernet node.
2517 */
2518static void __init fixup_device_tree_efika_add_phy(void)
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002519{
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002520 u32 node;
2521 char prop[64];
Grant Likely94d2dde2008-01-24 22:25:32 -07002522 int rv;
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002523
Grant Likely94d2dde2008-01-24 22:25:32 -07002524 /* Check if /builtin/ethernet exists - bail if it doesn't */
2525 node = call_prom("finddevice", 1, 1, ADDR("/builtin/ethernet"));
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002526 if (!PHANDLE_VALID(node))
2527 return;
2528
Grant Likely94d2dde2008-01-24 22:25:32 -07002529 /* Check if the phy-handle property exists - bail if it does */
2530 rv = prom_getprop(node, "phy-handle", prop, sizeof(prop));
2531 if (!rv)
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002532 return;
2533
Grant Likely94d2dde2008-01-24 22:25:32 -07002534 /*
2535 * At this point the ethernet device doesn't have a phy described.
2536 * Now we need to add the missing phy node and linkage
2537 */
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002538
Grant Likely94d2dde2008-01-24 22:25:32 -07002539 /* Check for an MDIO bus node - if missing then create one */
Olaf Hering6f4347c2008-01-10 01:06:08 +11002540 node = call_prom("finddevice", 1, 1, ADDR("/builtin/mdio"));
2541 if (!PHANDLE_VALID(node)) {
2542 prom_printf("Adding Ethernet MDIO node\n");
2543 call_prom("interpret", 1, 1,
2544 " s\" /builtin\" find-device"
2545 " new-device"
2546 " 1 encode-int s\" #address-cells\" property"
2547 " 0 encode-int s\" #size-cells\" property"
Grant Likely94d2dde2008-01-24 22:25:32 -07002548 " s\" mdio\" device-name"
2549 " s\" fsl,mpc5200b-mdio\" encode-string"
Olaf Hering6f4347c2008-01-10 01:06:08 +11002550 " s\" compatible\" property"
2551 " 0xf0003000 0x400 reg"
2552 " 0x2 encode-int"
2553 " 0x5 encode-int encode+"
2554 " 0x3 encode-int encode+"
2555 " s\" interrupts\" property"
2556 " finish-device");
2557 };
2558
Grant Likely94d2dde2008-01-24 22:25:32 -07002559 /* Check for a PHY device node - if missing then create one and
2560 * give it's phandle to the ethernet node */
2561 node = call_prom("finddevice", 1, 1,
2562 ADDR("/builtin/mdio/ethernet-phy"));
Olaf Hering6f4347c2008-01-10 01:06:08 +11002563 if (!PHANDLE_VALID(node)) {
2564 prom_printf("Adding Ethernet PHY node\n");
2565 call_prom("interpret", 1, 1,
2566 " s\" /builtin/mdio\" find-device"
2567 " new-device"
2568 " s\" ethernet-phy\" device-name"
2569 " 0x10 encode-int s\" reg\" property"
2570 " my-self"
2571 " ihandle>phandle"
2572 " finish-device"
2573 " s\" /builtin/ethernet\" find-device"
2574 " encode-int"
2575 " s\" phy-handle\" property"
2576 " device-end");
2577 }
Grant Likely94d2dde2008-01-24 22:25:32 -07002578}
Olaf Hering6f4347c2008-01-10 01:06:08 +11002579
Grant Likely94d2dde2008-01-24 22:25:32 -07002580static void __init fixup_device_tree_efika(void)
2581{
2582 int sound_irq[3] = { 2, 2, 0 };
2583 int bcomm_irq[3*16] = { 3,0,0, 3,1,0, 3,2,0, 3,3,0,
2584 3,4,0, 3,5,0, 3,6,0, 3,7,0,
2585 3,8,0, 3,9,0, 3,10,0, 3,11,0,
2586 3,12,0, 3,13,0, 3,14,0, 3,15,0 };
2587 u32 node;
2588 char prop[64];
2589 int rv, len;
2590
2591 /* Check if we're really running on a EFIKA */
2592 node = call_prom("finddevice", 1, 1, ADDR("/"));
2593 if (!PHANDLE_VALID(node))
2594 return;
2595
2596 rv = prom_getprop(node, "model", prop, sizeof(prop));
2597 if (rv == PROM_ERROR)
2598 return;
2599 if (strcmp(prop, "EFIKA5K2"))
2600 return;
2601
2602 prom_printf("Applying EFIKA device tree fixups\n");
2603
2604 /* Claiming to be 'chrp' is death */
2605 node = call_prom("finddevice", 1, 1, ADDR("/"));
2606 rv = prom_getprop(node, "device_type", prop, sizeof(prop));
2607 if (rv != PROM_ERROR && (strcmp(prop, "chrp") == 0))
2608 prom_setprop(node, "/", "device_type", "efika", sizeof("efika"));
2609
David Woodhouse7f4392c2008-04-14 02:52:38 +10002610 /* CODEGEN,description is exposed in /proc/cpuinfo so
2611 fix that too */
2612 rv = prom_getprop(node, "CODEGEN,description", prop, sizeof(prop));
2613 if (rv != PROM_ERROR && (strstr(prop, "CHRP")))
2614 prom_setprop(node, "/", "CODEGEN,description",
2615 "Efika 5200B PowerPC System",
2616 sizeof("Efika 5200B PowerPC System"));
2617
Grant Likely94d2dde2008-01-24 22:25:32 -07002618 /* Fixup bestcomm interrupts property */
2619 node = call_prom("finddevice", 1, 1, ADDR("/builtin/bestcomm"));
2620 if (PHANDLE_VALID(node)) {
2621 len = prom_getproplen(node, "interrupts");
2622 if (len == 12) {
2623 prom_printf("Fixing bestcomm interrupts property\n");
2624 prom_setprop(node, "/builtin/bestcom", "interrupts",
2625 bcomm_irq, sizeof(bcomm_irq));
2626 }
2627 }
2628
2629 /* Fixup sound interrupts property */
2630 node = call_prom("finddevice", 1, 1, ADDR("/builtin/sound"));
2631 if (PHANDLE_VALID(node)) {
2632 rv = prom_getprop(node, "interrupts", prop, sizeof(prop));
2633 if (rv == PROM_ERROR) {
2634 prom_printf("Adding sound interrupts property\n");
2635 prom_setprop(node, "/builtin/sound", "interrupts",
2636 sound_irq, sizeof(sound_irq));
2637 }
2638 }
2639
2640 /* Make sure ethernet phy-handle property exists */
2641 fixup_device_tree_efika_add_phy();
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002642}
2643#else
2644#define fixup_device_tree_efika()
2645#endif
2646
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002647static void __init fixup_device_tree(void)
2648{
2649 fixup_device_tree_maple();
Harry Ciao8f101a052009-06-17 16:28:00 -07002650 fixup_device_tree_maple_memory_controller();
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002651 fixup_device_tree_chrp();
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002652 fixup_device_tree_pmac();
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002653 fixup_device_tree_efika();
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002654}
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002655
2656static void __init prom_find_boot_cpu(void)
2657{
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002658 __be32 rval;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002659 ihandle prom_cpu;
2660 phandle cpu_pkg;
2661
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002662 rval = 0;
2663 if (prom_getprop(prom.chosen, "cpu", &rval, sizeof(rval)) <= 0)
Paul Mackerrasa575b802005-10-23 17:23:21 +10002664 return;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002665 prom_cpu = be32_to_cpu(rval);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002666
2667 cpu_pkg = call_prom("instance-to-package", 1, 1, prom_cpu);
2668
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002669 prom_getprop(cpu_pkg, "reg", &rval, sizeof(rval));
2670 prom.cpu = be32_to_cpu(rval);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002671
Anton Blanchard5827d412012-11-26 17:40:03 +00002672 prom_debug("Booting CPU hw index = %lu\n", prom.cpu);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002673}
2674
2675static void __init prom_check_initrd(unsigned long r3, unsigned long r4)
2676{
2677#ifdef CONFIG_BLK_DEV_INITRD
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002678 if (r3 && r4 && r4 != 0xdeadbeef) {
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002679 __be64 val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002680
Anton Blanchard5827d412012-11-26 17:40:03 +00002681 prom_initrd_start = is_kernel_addr(r3) ? __pa(r3) : r3;
2682 prom_initrd_end = prom_initrd_start + r4;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002683
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002684 val = cpu_to_be64(prom_initrd_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002685 prom_setprop(prom.chosen, "/chosen", "linux,initrd-start",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002686 &val, sizeof(val));
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002687 val = cpu_to_be64(prom_initrd_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002688 prom_setprop(prom.chosen, "/chosen", "linux,initrd-end",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002689 &val, sizeof(val));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002690
Anton Blanchard5827d412012-11-26 17:40:03 +00002691 reserve_mem(prom_initrd_start,
2692 prom_initrd_end - prom_initrd_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002693
Anton Blanchard5827d412012-11-26 17:40:03 +00002694 prom_debug("initrd_start=0x%x\n", prom_initrd_start);
2695 prom_debug("initrd_end=0x%x\n", prom_initrd_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002696 }
2697#endif /* CONFIG_BLK_DEV_INITRD */
2698}
2699
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002700#ifdef CONFIG_PPC64
2701#ifdef CONFIG_RELOCATABLE
2702static void reloc_toc(void)
2703{
2704}
2705
2706static void unreloc_toc(void)
2707{
2708}
2709#else
Anton Blanchard16744002013-03-12 01:51:51 +00002710static void __reloc_toc(unsigned long offset, unsigned long nr_entries)
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002711{
2712 unsigned long i;
Anton Blanchard16744002013-03-12 01:51:51 +00002713 unsigned long *toc_entry;
2714
2715 /* Get the start of the TOC by using r2 directly. */
2716 asm volatile("addi %0,2,-0x8000" : "=b" (toc_entry));
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002717
2718 for (i = 0; i < nr_entries; i++) {
2719 *toc_entry = *toc_entry + offset;
2720 toc_entry++;
2721 }
2722}
2723
2724static void reloc_toc(void)
2725{
2726 unsigned long offset = reloc_offset();
2727 unsigned long nr_entries =
2728 (__prom_init_toc_end - __prom_init_toc_start) / sizeof(long);
2729
Anton Blanchard16744002013-03-12 01:51:51 +00002730 __reloc_toc(offset, nr_entries);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002731
2732 mb();
2733}
2734
2735static void unreloc_toc(void)
2736{
2737 unsigned long offset = reloc_offset();
2738 unsigned long nr_entries =
2739 (__prom_init_toc_end - __prom_init_toc_start) / sizeof(long);
2740
2741 mb();
2742
Anton Blanchard16744002013-03-12 01:51:51 +00002743 __reloc_toc(-offset, nr_entries);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002744}
2745#endif
2746#endif
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002747
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002748/*
2749 * We enter here early on, when the Open Firmware prom is still
2750 * handling exceptions and the MMU hash table for us.
2751 */
2752
2753unsigned long __init prom_init(unsigned long r3, unsigned long r4,
2754 unsigned long pp,
Paul Mackerras549e8152008-08-30 11:43:47 +10002755 unsigned long r6, unsigned long r7,
2756 unsigned long kbase)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002757{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002758 unsigned long hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002759
2760#ifdef CONFIG_PPC32
Paul Mackerras549e8152008-08-30 11:43:47 +10002761 unsigned long offset = reloc_offset();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002762 reloc_got2(offset);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002763#else
2764 reloc_toc();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002765#endif
2766
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002767 /*
2768 * First zero the BSS
2769 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002770 memset(&__bss_start, 0, __bss_stop - __bss_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002771
2772 /*
2773 * Init interface to Open Firmware, get some node references,
2774 * like /chosen
2775 */
2776 prom_init_client_services(pp);
2777
2778 /*
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002779 * See if this OF is old enough that we need to do explicit maps
2780 * and other workarounds
2781 */
2782 prom_find_mmu();
2783
2784 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002785 * Init prom stdout device
2786 */
2787 prom_init_stdout();
2788
Anton Blanchard5827d412012-11-26 17:40:03 +00002789 prom_printf("Preparing to boot %s", linux_banner);
Michael Ellermane7943fb2009-03-04 19:02:01 +00002790
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002791 /*
2792 * Get default machine type. At this point, we do not differentiate
2793 * between pSeries SMP and pSeries LPAR
2794 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002795 of_platform = prom_find_machine_type();
2796 prom_printf("Detected machine type: %x\n", of_platform);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002797
Suzuki Poulose0f890c82011-12-14 22:57:15 +00002798#ifndef CONFIG_NONSTATIC_KERNEL
Olaf Heringadd60ef2006-03-23 22:03:57 +01002799 /* Bail if this is a kdump kernel. */
2800 if (PHYSICAL_START > 0)
2801 prom_panic("Error: You can't boot a kdump kernel from OF!\n");
Paul Mackerras549e8152008-08-30 11:43:47 +10002802#endif
Olaf Heringadd60ef2006-03-23 22:03:57 +01002803
2804 /*
2805 * Check for an initrd
2806 */
2807 prom_check_initrd(r3, r4);
2808
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002809#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002810 /*
2811 * On pSeries, inform the firmware about our capabilities
2812 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002813 if (of_platform == PLATFORM_PSERIES ||
2814 of_platform == PLATFORM_PSERIES_LPAR)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002815 prom_send_capabilities();
2816#endif
2817
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002818 /*
Arnd Bergmannf3f66f52005-10-31 20:08:37 -05002819 * Copy the CPU hold code
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002820 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002821 if (of_platform != PLATFORM_POWERMAC)
Paul Mackerras549e8152008-08-30 11:43:47 +10002822 copy_and_flush(0, kbase, 0x100, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002823
2824 /*
2825 * Do early parsing of command line
2826 */
2827 early_cmdline_parse();
2828
2829 /*
2830 * Initialize memory management within prom_init
2831 */
2832 prom_init_mem();
2833
2834 /*
2835 * Determine which cpu is actually running right _now_
2836 */
2837 prom_find_boot_cpu();
2838
2839 /*
2840 * Initialize display devices
2841 */
2842 prom_check_displays();
2843
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002844#if defined(CONFIG_PPC64) && defined(__BIG_ENDIAN__)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002845 /*
2846 * Initialize IOMMU (TCE tables) on pSeries. Do that before anything else
2847 * that uses the allocator, we need to make sure we get the top of memory
2848 * available for us here...
2849 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002850 if (of_platform == PLATFORM_PSERIES)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002851 prom_initialize_tce_table();
2852#endif
2853
2854 /*
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002855 * On non-powermacs, try to instantiate RTAS. PowerMacs don't
2856 * have a usable RTAS implementation.
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002857 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002858 if (of_platform != PLATFORM_POWERMAC &&
2859 of_platform != PLATFORM_OPAL)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002860 prom_instantiate_rtas();
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002861
2862#ifdef CONFIG_PPC_POWERNV
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002863 if (of_platform == PLATFORM_OPAL)
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002864 prom_instantiate_opal();
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002865#endif /* CONFIG_PPC_POWERNV */
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002866
Ashley Lai4a727422012-08-14 18:34:57 -05002867#ifdef CONFIG_PPC64
2868 /* instantiate sml */
2869 prom_instantiate_sml();
2870#endif
2871
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002872 /*
2873 * On non-powermacs, put all CPUs in spin-loops.
2874 *
2875 * PowerMacs use a different mechanism to spin CPUs
Benjamin Herrenschmidtdbe78b42013-09-25 14:02:50 +10002876 *
2877 * (This must be done after instanciating RTAS)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002878 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002879 if (of_platform != PLATFORM_POWERMAC &&
2880 of_platform != PLATFORM_OPAL)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00002881 prom_hold_cpus();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002882
2883 /*
2884 * Fill in some infos for use by the kernel later on
2885 */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002886 if (prom_memory_limit) {
2887 __be64 val = cpu_to_be64(prom_memory_limit);
Anton Blanchard5827d412012-11-26 17:40:03 +00002888 prom_setprop(prom.chosen, "/chosen", "linux,memory-limit",
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002889 &val, sizeof(val));
2890 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002891#ifdef CONFIG_PPC64
Anton Blanchard5827d412012-11-26 17:40:03 +00002892 if (prom_iommu_off)
2893 prom_setprop(prom.chosen, "/chosen", "linux,iommu-off",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002894 NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002895
Anton Blanchard5827d412012-11-26 17:40:03 +00002896 if (prom_iommu_force_on)
2897 prom_setprop(prom.chosen, "/chosen", "linux,iommu-force-on",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002898 NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002899
Anton Blanchard5827d412012-11-26 17:40:03 +00002900 if (prom_tce_alloc_start) {
2901 prom_setprop(prom.chosen, "/chosen", "linux,tce-alloc-start",
2902 &prom_tce_alloc_start,
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002903 sizeof(prom_tce_alloc_start));
Anton Blanchard5827d412012-11-26 17:40:03 +00002904 prom_setprop(prom.chosen, "/chosen", "linux,tce-alloc-end",
2905 &prom_tce_alloc_end,
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002906 sizeof(prom_tce_alloc_end));
2907 }
2908#endif
2909
2910 /*
2911 * Fixup any known bugs in the device-tree
2912 */
2913 fixup_device_tree();
2914
2915 /*
2916 * Now finally create the flattened device-tree
2917 */
Anton Blanchard1f8737a2009-03-31 20:06:15 +00002918 prom_printf("copying OF device tree...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002919 flatten_device_tree();
2920
Paul Mackerras3825ac02005-11-08 22:48:08 +11002921 /*
2922 * in case stdin is USB and still active on IBM machines...
2923 * Unfortunately quiesce crashes on some powermacs if we have
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00002924 * closed stdin already (in particular the powerbook 101). It
2925 * appears that the OPAL version of OFW doesn't like it either.
Paul Mackerras3825ac02005-11-08 22:48:08 +11002926 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002927 if (of_platform != PLATFORM_POWERMAC &&
2928 of_platform != PLATFORM_OPAL)
Paul Mackerras3825ac02005-11-08 22:48:08 +11002929 prom_close_stdin();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002930
2931 /*
2932 * Call OF "quiesce" method to shut down pending DMA's from
2933 * devices etc...
2934 */
Michael Ellerman7e862d72015-03-30 17:38:09 +11002935 prom_printf("Quiescing Open Firmware ...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002936 call_prom("quiesce", 0, 0);
2937
2938 /*
2939 * And finally, call the kernel passing it the flattened device
2940 * tree and NULL as r5, thus triggering the new entry point which
2941 * is common to us and kexec
2942 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002943 hdr = dt_header_start;
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00002944
2945 /* Don't print anything after quiesce under OPAL, it crashes OFW */
Anton Blanchard5827d412012-11-26 17:40:03 +00002946 if (of_platform != PLATFORM_OPAL) {
Benjamin Herrenschmidt7d70c632016-08-10 17:29:29 +10002947 prom_printf("Booting Linux via __start() @ 0x%lx ...\n", kbase);
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00002948 prom_debug("->dt_header_start=0x%x\n", hdr);
2949 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002950
2951#ifdef CONFIG_PPC32
2952 reloc_got2(-offset);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00002953#else
2954 unreloc_toc();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002955#endif
2956
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002957#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
2958 /* OPAL early debug gets the OPAL base & entry in r8 and r9 */
2959 __start(hdr, kbase, 0, 0, 0,
Anton Blanchard5827d412012-11-26 17:40:03 +00002960 prom_opal_base, prom_opal_entry);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002961#else
2962 __start(hdr, kbase, 0, 0, 0, 0, 0);
2963#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002964
2965 return 0;
2966}