blob: acf4b2e0530cb671df1e80d56927e8650f0c2f84 [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
Daniel Axtens054f3672017-07-12 14:36:04 -070018/* we cannot use FORTIFY as it brings in new symbols */
19#define __NO_FORTIFY
20
Paul Mackerras9b6b5632005-10-06 12:06:20 +100021#include <stdarg.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100022#include <linux/kernel.h>
23#include <linux/string.h>
24#include <linux/init.h>
25#include <linux/threads.h>
26#include <linux/spinlock.h>
27#include <linux/types.h>
28#include <linux/pci.h>
29#include <linux/proc_fs.h>
30#include <linux/stringify.h>
31#include <linux/delay.h>
32#include <linux/initrd.h>
33#include <linux/bitops.h>
34#include <asm/prom.h>
35#include <asm/rtas.h>
36#include <asm/page.h>
37#include <asm/processor.h>
38#include <asm/irq.h>
39#include <asm/io.h>
40#include <asm/smp.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100041#include <asm/mmu.h>
42#include <asm/pgtable.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100043#include <asm/iommu.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100044#include <asm/btext.h>
45#include <asm/sections.h>
46#include <asm/machdep.h>
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +000047#include <asm/opal.h>
Daniel Axtens0545d542016-09-06 15:32:43 +100048#include <asm/asm-prototypes.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100049
Paul Mackerras9b6b5632005-10-06 12:06:20 +100050#include <linux/linux_logo.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100051
52/*
Paul Mackerras9b6b5632005-10-06 12:06:20 +100053 * Eventually bump that one up
54 */
55#define DEVTREE_CHUNK_SIZE 0x100000
56
57/*
58 * This is the size of the local memory reserve map that gets copied
59 * into the boot params passed to the kernel. That size is totally
60 * flexible as the kernel just reads the list until it encounters an
61 * entry with size 0, so it can be changed without breaking binary
62 * compatibility
63 */
64#define MEM_RESERVE_MAP_SIZE 8
65
66/*
67 * prom_init() is called very early on, before the kernel text
68 * and data have been mapped to KERNELBASE. At this point the code
69 * is running at whatever address it has been loaded at.
70 * On ppc32 we compile with -mrelocatable, which means that references
71 * to extern and static variables get relocated automatically.
Anton Blanchard5ac47f72012-11-26 17:39:03 +000072 * ppc64 objects are always relocatable, we just need to relocate the
73 * TOC.
Paul Mackerras9b6b5632005-10-06 12:06:20 +100074 *
75 * Because OF may have mapped I/O devices into the area starting at
76 * KERNELBASE, particularly on CHRP machines, we can't safely call
77 * OF once the kernel has been mapped to KERNELBASE. Therefore all
78 * OF calls must be done within prom_init().
79 *
80 * ADDR is used in calls to call_prom. The 4th and following
81 * arguments to call_prom should be 32-bit values.
82 * On ppc64, 64 bit values are truncated to 32 bits (and
83 * fortunately don't get interpreted as two arguments).
84 */
Anton Blanchard5ac47f72012-11-26 17:39:03 +000085#define ADDR(x) (u32)(unsigned long)(x)
86
Paul Mackerras9b6b5632005-10-06 12:06:20 +100087#ifdef CONFIG_PPC64
Paul Mackerrasa23414b2005-11-10 12:00:55 +110088#define OF_WORKAROUNDS 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +100089#else
Paul Mackerrasa23414b2005-11-10 12:00:55 +110090#define OF_WORKAROUNDS of_workarounds
91int of_workarounds;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100092#endif
93
Paul Mackerrasa23414b2005-11-10 12:00:55 +110094#define OF_WA_CLAIM 1 /* do phys/virt claim separately, then map */
95#define OF_WA_LONGTRAIL 2 /* work around longtrail bugs */
96
Paul Mackerras9b6b5632005-10-06 12:06:20 +100097#define PROM_BUG() do { \
98 prom_printf("kernel BUG at %s line 0x%x!\n", \
Anton Blanchard5827d412012-11-26 17:40:03 +000099 __FILE__, __LINE__); \
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000100 __asm__ __volatile__(".long " BUG_ILLEGAL_INSTR); \
101} while (0)
102
103#ifdef DEBUG_PROM
104#define prom_debug(x...) prom_printf(x)
105#else
106#define prom_debug(x...)
107#endif
108
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000109
110typedef u32 prom_arg_t;
111
112struct prom_args {
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000113 __be32 service;
114 __be32 nargs;
115 __be32 nret;
116 __be32 args[10];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000117};
118
119struct prom_t {
120 ihandle root;
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100121 phandle chosen;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000122 int cpu;
123 ihandle stdout;
Paul Mackerrasa575b802005-10-23 17:23:21 +1000124 ihandle mmumap;
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100125 ihandle memory;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000126};
127
128struct mem_map_entry {
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000129 __be64 base;
130 __be64 size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000131};
132
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000133typedef __be32 cell_t;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000134
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +0000135extern void __start(unsigned long r3, unsigned long r4, unsigned long r5,
136 unsigned long r6, unsigned long r7, unsigned long r8,
137 unsigned long r9);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000138
139#ifdef CONFIG_PPC64
Paul Mackerrasc49888202005-10-26 21:52:53 +1000140extern int enter_prom(struct prom_args *args, unsigned long entry);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000141#else
Paul Mackerrasc49888202005-10-26 21:52:53 +1000142static inline int enter_prom(struct prom_args *args, unsigned long entry)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000143{
Paul Mackerrasc49888202005-10-26 21:52:53 +1000144 return ((int (*)(struct prom_args *))entry)(args);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000145}
146#endif
147
148extern void copy_and_flush(unsigned long dest, unsigned long src,
149 unsigned long size, unsigned long offset);
150
151/* prom structure */
152static struct prom_t __initdata prom;
153
154static unsigned long prom_entry __initdata;
155
156#define PROM_SCRATCH_SIZE 256
157
158static char __initdata of_stdout_device[256];
159static char __initdata prom_scratch[PROM_SCRATCH_SIZE];
160
161static unsigned long __initdata dt_header_start;
162static unsigned long __initdata dt_struct_start, dt_struct_end;
163static unsigned long __initdata dt_string_start, dt_string_end;
164
165static unsigned long __initdata prom_initrd_start, prom_initrd_end;
166
167#ifdef CONFIG_PPC64
Jeremy Kerr165785e2006-11-11 17:25:18 +1100168static int __initdata prom_iommu_force_on;
169static int __initdata prom_iommu_off;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000170static unsigned long __initdata prom_tce_alloc_start;
171static unsigned long __initdata prom_tce_alloc_end;
172#endif
173
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100174static bool __initdata prom_radix_disable;
175
176struct platform_support {
177 bool hash_mmu;
178 bool radix_mmu;
179 bool radix_gtse;
Cédric Le Goaterac5e5a52017-08-30 21:46:16 +0200180 bool xive;
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100181};
182
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100183/* Platforms codes are now obsolete in the kernel. Now only used within this
184 * file and ultimately gone too. Feel free to change them if you need, they
185 * are not shared with anything outside of this file anymore
186 */
187#define PLATFORM_PSERIES 0x0100
188#define PLATFORM_PSERIES_LPAR 0x0101
189#define PLATFORM_LPAR 0x0001
190#define PLATFORM_POWERMAC 0x0400
191#define PLATFORM_GENERIC 0x0500
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +0000192#define PLATFORM_OPAL 0x0600
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100193
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000194static int __initdata of_platform;
195
196static char __initdata prom_cmd_line[COMMAND_LINE_SIZE];
197
Benjamin Krillcf687872009-07-27 22:02:39 +0000198static unsigned long __initdata prom_memory_limit;
199
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000200static unsigned long __initdata alloc_top;
201static unsigned long __initdata alloc_top_high;
202static unsigned long __initdata alloc_bottom;
203static unsigned long __initdata rmo_top;
204static unsigned long __initdata ram_top;
205
206static struct mem_map_entry __initdata mem_reserve_map[MEM_RESERVE_MAP_SIZE];
207static int __initdata mem_reserve_cnt;
208
209static cell_t __initdata regbuf[1024];
210
Benjamin Herrenschmidtdbe78b42013-09-25 14:02:50 +1000211static bool rtas_has_query_cpu_stopped;
212
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000213
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000214/*
215 * Error results ... some OF calls will return "-1" on error, some
216 * will return 0, some will return either. To simplify, here are
217 * macros to use with any ihandle or phandle return value to check if
218 * it is valid
219 */
220
221#define PROM_ERROR (-1u)
222#define PHANDLE_VALID(p) ((p) != 0 && (p) != PROM_ERROR)
223#define IHANDLE_VALID(i) ((i) != 0 && (i) != PROM_ERROR)
224
225
226/* This is the one and *ONLY* place where we actually call open
227 * firmware.
228 */
229
230static int __init call_prom(const char *service, int nargs, int nret, ...)
231{
232 int i;
233 struct prom_args args;
234 va_list list;
235
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000236 args.service = cpu_to_be32(ADDR(service));
237 args.nargs = cpu_to_be32(nargs);
238 args.nret = cpu_to_be32(nret);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000239
240 va_start(list, nret);
241 for (i = 0; i < nargs; i++)
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000242 args.args[i] = cpu_to_be32(va_arg(list, prom_arg_t));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000243 va_end(list);
244
245 for (i = 0; i < nret; i++)
246 args.args[nargs+i] = 0;
247
Anton Blanchard5827d412012-11-26 17:40:03 +0000248 if (enter_prom(&args, prom_entry) < 0)
Paul Mackerrasc49888202005-10-26 21:52:53 +1000249 return PROM_ERROR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000250
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000251 return (nret > 0) ? be32_to_cpu(args.args[nargs]) : 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000252}
253
254static int __init call_prom_ret(const char *service, int nargs, int nret,
255 prom_arg_t *rets, ...)
256{
257 int i;
258 struct prom_args args;
259 va_list list;
260
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000261 args.service = cpu_to_be32(ADDR(service));
262 args.nargs = cpu_to_be32(nargs);
263 args.nret = cpu_to_be32(nret);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000264
265 va_start(list, rets);
266 for (i = 0; i < nargs; i++)
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000267 args.args[i] = cpu_to_be32(va_arg(list, prom_arg_t));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000268 va_end(list);
269
270 for (i = 0; i < nret; i++)
Olaf Heringed1189b72005-11-29 14:04:05 +0100271 args.args[nargs+i] = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000272
Anton Blanchard5827d412012-11-26 17:40:03 +0000273 if (enter_prom(&args, prom_entry) < 0)
Paul Mackerrasc49888202005-10-26 21:52:53 +1000274 return PROM_ERROR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000275
276 if (rets != NULL)
277 for (i = 1; i < nret; ++i)
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000278 rets[i-1] = be32_to_cpu(args.args[nargs+i]);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000279
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000280 return (nret > 0) ? be32_to_cpu(args.args[nargs]) : 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000281}
282
283
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000284static void __init prom_print(const char *msg)
285{
286 const char *p, *q;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000287
Anton Blanchard5827d412012-11-26 17:40:03 +0000288 if (prom.stdout == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000289 return;
290
291 for (p = msg; *p != 0; p = q) {
292 for (q = p; *q != 0 && *q != '\n'; ++q)
293 ;
294 if (q > p)
Anton Blanchard5827d412012-11-26 17:40:03 +0000295 call_prom("write", 3, 1, prom.stdout, p, q - p);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000296 if (*q == 0)
297 break;
298 ++q;
Anton Blanchard5827d412012-11-26 17:40:03 +0000299 call_prom("write", 3, 1, prom.stdout, ADDR("\r\n"), 2);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000300 }
301}
302
303
304static void __init prom_print_hex(unsigned long val)
305{
306 int i, nibbles = sizeof(val)*2;
307 char buf[sizeof(val)*2+1];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000308
309 for (i = nibbles-1; i >= 0; i--) {
310 buf[i] = (val & 0xf) + '0';
311 if (buf[i] > '9')
312 buf[i] += ('a'-'0'-10);
313 val >>= 4;
314 }
315 buf[nibbles] = '\0';
Anton Blanchard5827d412012-11-26 17:40:03 +0000316 call_prom("write", 3, 1, prom.stdout, buf, nibbles);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000317}
318
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000319/* max number of decimal digits in an unsigned long */
320#define UL_DIGITS 21
321static void __init prom_print_dec(unsigned long val)
322{
323 int i, size;
324 char buf[UL_DIGITS+1];
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000325
326 for (i = UL_DIGITS-1; i >= 0; i--) {
327 buf[i] = (val % 10) + '0';
328 val = val/10;
329 if (val == 0)
330 break;
331 }
332 /* shift stuff down */
333 size = UL_DIGITS - i;
Anton Blanchard5827d412012-11-26 17:40:03 +0000334 call_prom("write", 3, 1, prom.stdout, buf+i, size);
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000335}
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000336
337static void __init prom_printf(const char *format, ...)
338{
339 const char *p, *q, *s;
340 va_list args;
341 unsigned long v;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000342 long vs;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000343
344 va_start(args, format);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000345 for (p = format; *p != 0; p = q) {
346 for (q = p; *q != 0 && *q != '\n' && *q != '%'; ++q)
347 ;
348 if (q > p)
Anton Blanchard5827d412012-11-26 17:40:03 +0000349 call_prom("write", 3, 1, prom.stdout, p, q - p);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000350 if (*q == 0)
351 break;
352 if (*q == '\n') {
353 ++q;
Anton Blanchard5827d412012-11-26 17:40:03 +0000354 call_prom("write", 3, 1, prom.stdout,
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000355 ADDR("\r\n"), 2);
356 continue;
357 }
358 ++q;
359 if (*q == 0)
360 break;
361 switch (*q) {
362 case 's':
363 ++q;
364 s = va_arg(args, const char *);
365 prom_print(s);
366 break;
367 case 'x':
368 ++q;
369 v = va_arg(args, unsigned long);
370 prom_print_hex(v);
371 break;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000372 case 'd':
373 ++q;
374 vs = va_arg(args, int);
375 if (vs < 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +0000376 prom_print("-");
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000377 vs = -vs;
378 }
379 prom_print_dec(vs);
380 break;
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000381 case 'l':
382 ++q;
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000383 if (*q == 0)
384 break;
385 else if (*q == 'x') {
386 ++q;
387 v = va_arg(args, unsigned long);
388 prom_print_hex(v);
389 } else if (*q == 'u') { /* '%lu' */
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000390 ++q;
391 v = va_arg(args, unsigned long);
392 prom_print_dec(v);
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000393 } else if (*q == 'd') { /* %ld */
394 ++q;
395 vs = va_arg(args, long);
396 if (vs < 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +0000397 prom_print("-");
Benjamin Herrenschmidtaf277142011-04-06 10:51:17 +1000398 vs = -vs;
399 }
400 prom_print_dec(vs);
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000401 }
402 break;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000403 }
404 }
Daniel Axtens1b855e12015-12-17 19:41:00 +1100405 va_end(args);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000406}
407
408
Paul Mackerrasa575b802005-10-23 17:23:21 +1000409static unsigned int __init prom_claim(unsigned long virt, unsigned long size,
410 unsigned long align)
411{
Paul Mackerrasa575b802005-10-23 17:23:21 +1000412
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100413 if (align == 0 && (OF_WORKAROUNDS & OF_WA_CLAIM)) {
414 /*
415 * Old OF requires we claim physical and virtual separately
416 * and then map explicitly (assuming virtual mode)
417 */
418 int ret;
419 prom_arg_t result;
420
421 ret = call_prom_ret("call-method", 5, 2, &result,
Anton Blanchard5827d412012-11-26 17:40:03 +0000422 ADDR("claim"), prom.memory,
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100423 align, size, virt);
424 if (ret != 0 || result == -1)
425 return -1;
426 ret = call_prom_ret("call-method", 5, 2, &result,
Anton Blanchard5827d412012-11-26 17:40:03 +0000427 ADDR("claim"), prom.mmumap,
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100428 align, size, virt);
429 if (ret != 0) {
430 call_prom("call-method", 4, 1, ADDR("release"),
Anton Blanchard5827d412012-11-26 17:40:03 +0000431 prom.memory, size, virt);
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100432 return -1;
433 }
434 /* the 0x12 is M (coherence) + PP == read/write */
Paul Mackerrasa575b802005-10-23 17:23:21 +1000435 call_prom("call-method", 6, 1,
Anton Blanchard5827d412012-11-26 17:40:03 +0000436 ADDR("map"), prom.mmumap, 0x12, size, virt, virt);
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100437 return virt;
438 }
439 return call_prom("claim", 3, 1, (prom_arg_t)virt, (prom_arg_t)size,
440 (prom_arg_t)align);
Paul Mackerrasa575b802005-10-23 17:23:21 +1000441}
442
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000443static void __init __attribute__((noreturn)) prom_panic(const char *reason)
444{
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000445 prom_print(reason);
Olaf Heringadd60ef2006-03-23 22:03:57 +0100446 /* Do not call exit because it clears the screen on pmac
447 * it also causes some sort of double-fault on early pmacs */
Anton Blanchard5827d412012-11-26 17:40:03 +0000448 if (of_platform == PLATFORM_POWERMAC)
Olaf Heringadd60ef2006-03-23 22:03:57 +0100449 asm("trap\n");
450
Stephen Rothwell1d9a4732012-03-21 18:23:27 +0000451 /* ToDo: should put up an SRC here on pSeries */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000452 call_prom("exit", 0, 0);
453
454 for (;;) /* should never get here */
455 ;
456}
457
458
459static int __init prom_next_node(phandle *nodep)
460{
461 phandle node;
462
463 if ((node = *nodep) != 0
464 && (*nodep = call_prom("child", 1, 1, node)) != 0)
465 return 1;
466 if ((*nodep = call_prom("peer", 1, 1, node)) != 0)
467 return 1;
468 for (;;) {
469 if ((node = call_prom("parent", 1, 1, node)) == 0)
470 return 0;
471 if ((*nodep = call_prom("peer", 1, 1, node)) != 0)
472 return 1;
473 }
474}
475
Tobias Klauser60d862e2016-11-17 17:20:24 +0100476static inline int prom_getprop(phandle node, const char *pname,
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000477 void *value, size_t valuelen)
478{
479 return call_prom("getprop", 4, 1, node, ADDR(pname),
480 (u32)(unsigned long) value, (u32) valuelen);
481}
482
Tobias Klauser60d862e2016-11-17 17:20:24 +0100483static inline int prom_getproplen(phandle node, const char *pname)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000484{
485 return call_prom("getproplen", 2, 1, node, ADDR(pname));
486}
487
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100488static void add_string(char **str, const char *q)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000489{
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100490 char *p = *str;
491
492 while (*q)
493 *p++ = *q++;
494 *p++ = ' ';
495 *str = p;
496}
497
498static char *tohex(unsigned int x)
499{
500 static char digits[] = "0123456789abcdef";
501 static char result[9];
502 int i;
503
504 result[8] = 0;
505 i = 8;
506 do {
507 --i;
508 result[i] = digits[x & 0xf];
509 x >>= 4;
510 } while (x != 0 && i > 0);
511 return &result[i];
512}
513
514static int __init prom_setprop(phandle node, const char *nodename,
515 const char *pname, void *value, size_t valuelen)
516{
517 char cmd[256], *p;
518
519 if (!(OF_WORKAROUNDS & OF_WA_LONGTRAIL))
520 return call_prom("setprop", 4, 1, node, ADDR(pname),
521 (u32)(unsigned long) value, (u32) valuelen);
522
523 /* gah... setprop doesn't work on longtrail, have to use interpret */
524 p = cmd;
525 add_string(&p, "dev");
526 add_string(&p, nodename);
527 add_string(&p, tohex((u32)(unsigned long) value));
528 add_string(&p, tohex(valuelen));
529 add_string(&p, tohex(ADDR(pname)));
Anton Blanchard5827d412012-11-26 17:40:03 +0000530 add_string(&p, tohex(strlen(pname)));
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100531 add_string(&p, "property");
532 *p = 0;
533 return call_prom("interpret", 1, 1, (u32)(unsigned long) cmd);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000534}
535
Anton Blanchard5827d412012-11-26 17:40:03 +0000536/* We can't use the standard versions because of relocation headaches. */
Benjamin Krillcf687872009-07-27 22:02:39 +0000537#define isxdigit(c) (('0' <= (c) && (c) <= '9') \
538 || ('a' <= (c) && (c) <= 'f') \
539 || ('A' <= (c) && (c) <= 'F'))
540
541#define isdigit(c) ('0' <= (c) && (c) <= '9')
542#define islower(c) ('a' <= (c) && (c) <= 'z')
543#define toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
544
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000545static unsigned long prom_strtoul(const char *cp, const char **endp)
Benjamin Krillcf687872009-07-27 22:02:39 +0000546{
547 unsigned long result = 0, base = 10, value;
548
549 if (*cp == '0') {
550 base = 8;
551 cp++;
552 if (toupper(*cp) == 'X') {
553 cp++;
554 base = 16;
555 }
556 }
557
558 while (isxdigit(*cp) &&
559 (value = isdigit(*cp) ? *cp - '0' : toupper(*cp) - 'A' + 10) < base) {
560 result = result * base + value;
561 cp++;
562 }
563
564 if (endp)
565 *endp = cp;
566
567 return result;
568}
569
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000570static unsigned long prom_memparse(const char *ptr, const char **retptr)
Benjamin Krillcf687872009-07-27 22:02:39 +0000571{
572 unsigned long ret = prom_strtoul(ptr, retptr);
573 int shift = 0;
574
575 /*
576 * We can't use a switch here because GCC *may* generate a
577 * jump table which won't work, because we're not running at
578 * the address we're linked at.
579 */
580 if ('G' == **retptr || 'g' == **retptr)
581 shift = 30;
582
583 if ('M' == **retptr || 'm' == **retptr)
584 shift = 20;
585
586 if ('K' == **retptr || 'k' == **retptr)
587 shift = 10;
588
589 if (shift) {
590 ret <<= shift;
591 (*retptr)++;
592 }
593
594 return ret;
595}
596
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000597/*
598 * Early parsing of the command line passed to the kernel, used for
599 * "mem=x" and the options that affect the iommu
600 */
601static void __init early_cmdline_parse(void)
602{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100603 const char *opt;
Benjamin Krillcf687872009-07-27 22:02:39 +0000604
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100605 char *p;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000606 int l = 0;
607
Anton Blanchard5827d412012-11-26 17:40:03 +0000608 prom_cmd_line[0] = 0;
609 p = prom_cmd_line;
610 if ((long)prom.chosen > 0)
611 l = prom_getprop(prom.chosen, "bootargs", p, COMMAND_LINE_SIZE-1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000612#ifdef CONFIG_CMDLINE
Amos Waterland0e4aa9c2006-06-12 23:45:02 -0400613 if (l <= 0 || p[0] == '\0') /* dbl check */
Anton Blanchard5827d412012-11-26 17:40:03 +0000614 strlcpy(prom_cmd_line,
615 CONFIG_CMDLINE, sizeof(prom_cmd_line));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000616#endif /* CONFIG_CMDLINE */
Anton Blanchard5827d412012-11-26 17:40:03 +0000617 prom_printf("command line: %s\n", prom_cmd_line);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000618
619#ifdef CONFIG_PPC64
Anton Blanchard5827d412012-11-26 17:40:03 +0000620 opt = strstr(prom_cmd_line, "iommu=");
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000621 if (opt) {
622 prom_printf("iommu opt is: %s\n", opt);
623 opt += 6;
624 while (*opt && *opt == ' ')
625 opt++;
Anton Blanchard5827d412012-11-26 17:40:03 +0000626 if (!strncmp(opt, "off", 3))
627 prom_iommu_off = 1;
628 else if (!strncmp(opt, "force", 5))
629 prom_iommu_force_on = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000630 }
631#endif
Anton Blanchard5827d412012-11-26 17:40:03 +0000632 opt = strstr(prom_cmd_line, "mem=");
Benjamin Krillcf687872009-07-27 22:02:39 +0000633 if (opt) {
634 opt += 4;
Anton Blanchard5827d412012-11-26 17:40:03 +0000635 prom_memory_limit = prom_memparse(opt, (const char **)&opt);
Benjamin Krillcf687872009-07-27 22:02:39 +0000636#ifdef CONFIG_PPC64
637 /* Align to 16 MB == size of ppc64 large page */
Anton Blanchard5827d412012-11-26 17:40:03 +0000638 prom_memory_limit = ALIGN(prom_memory_limit, 0x1000000);
Benjamin Krillcf687872009-07-27 22:02:39 +0000639#endif
640 }
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100641
642 opt = strstr(prom_cmd_line, "disable_radix");
643 if (opt) {
644 prom_debug("Radix disabled from cmdline\n");
645 prom_radix_disable = true;
646 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000647}
648
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +0000649#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000650/*
Nathan Fontenot530b5e12013-04-24 05:53:10 +0000651 * The architecture vector has an array of PVR mask/value pairs,
652 * followed by # option vectors - 1, followed by the option vectors.
653 *
654 * See prom.h for the definition of the bits specified in the
655 * architecture vector.
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000656 */
Paul Mackerrasf709bfa2006-04-28 16:28:35 +1000657
Michael Ellermane8a4fd02014-08-29 17:01:43 +1000658/* Firmware expects the value to be n - 1, where n is the # of vectors */
659#define NUM_VECTORS(n) ((n) - 1)
660
661/*
662 * Firmware expects 1 + n - 2, where n is the length of the option vector in
663 * bytes. The 1 accounts for the length byte itself, the - 2 .. ?
664 */
665#define VECTOR_LENGTH(n) (1 + (n) - 2)
666
Michael Ellermand03d1d62016-11-18 23:15:41 +1100667struct option_vector1 {
668 u8 byte1;
669 u8 arch_versions;
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100670 u8 arch_versions3;
Michael Ellermand03d1d62016-11-18 23:15:41 +1100671} __packed;
672
673struct option_vector2 {
674 u8 byte1;
675 __be16 reserved;
676 __be32 real_base;
677 __be32 real_size;
678 __be32 virt_base;
679 __be32 virt_size;
680 __be32 load_base;
681 __be32 min_rma;
682 __be32 min_load;
683 u8 min_rma_percent;
684 u8 max_pft_size;
685} __packed;
686
687struct option_vector3 {
688 u8 byte1;
689 u8 byte2;
690} __packed;
691
692struct option_vector4 {
693 u8 byte1;
694 u8 min_vp_cap;
695} __packed;
696
697struct option_vector5 {
698 u8 byte1;
699 u8 byte2;
700 u8 byte3;
701 u8 cmo;
702 u8 associativity;
703 u8 bin_opts;
704 u8 micro_checkpoint;
705 u8 reserved0;
706 __be32 max_cpus;
707 __be16 papr_level;
708 __be16 reserved1;
709 u8 platform_facilities;
710 u8 reserved2;
711 __be16 reserved3;
712 u8 subprocessors;
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100713 u8 byte22;
714 u8 intarch;
715 u8 mmu;
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100716 u8 hash_ext;
717 u8 radix_ext;
Michael Ellermand03d1d62016-11-18 23:15:41 +1100718} __packed;
719
720struct option_vector6 {
721 u8 reserved;
722 u8 secondary_pteg;
723 u8 os_name;
724} __packed;
725
Michael Ellerman76ffb572016-11-18 23:15:42 +1100726struct ibm_arch_vec {
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100727 struct { u32 mask, val; } pvrs[12];
Michael Ellerman76ffb572016-11-18 23:15:42 +1100728
729 u8 num_vectors;
730
731 u8 vec1_len;
732 struct option_vector1 vec1;
733
734 u8 vec2_len;
735 struct option_vector2 vec2;
736
737 u8 vec3_len;
738 struct option_vector3 vec3;
739
740 u8 vec4_len;
741 struct option_vector4 vec4;
742
743 u8 vec5_len;
744 struct option_vector5 vec5;
745
746 u8 vec6_len;
747 struct option_vector6 vec6;
748} __packed;
749
750struct ibm_arch_vec __cacheline_aligned ibm_architecture_vec = {
751 .pvrs = {
752 {
753 .mask = cpu_to_be32(0xfffe0000), /* POWER5/POWER5+ */
754 .val = cpu_to_be32(0x003a0000),
755 },
756 {
757 .mask = cpu_to_be32(0xffff0000), /* POWER6 */
758 .val = cpu_to_be32(0x003e0000),
759 },
760 {
761 .mask = cpu_to_be32(0xffff0000), /* POWER7 */
762 .val = cpu_to_be32(0x003f0000),
763 },
764 {
765 .mask = cpu_to_be32(0xffff0000), /* POWER8E */
766 .val = cpu_to_be32(0x004b0000),
767 },
768 {
769 .mask = cpu_to_be32(0xffff0000), /* POWER8NVL */
770 .val = cpu_to_be32(0x004c0000),
771 },
772 {
773 .mask = cpu_to_be32(0xffff0000), /* POWER8 */
774 .val = cpu_to_be32(0x004d0000),
775 },
776 {
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100777 .mask = cpu_to_be32(0xffff0000), /* POWER9 */
778 .val = cpu_to_be32(0x004e0000),
779 },
780 {
781 .mask = cpu_to_be32(0xffffffff), /* all 3.00-compliant */
782 .val = cpu_to_be32(0x0f000005),
783 },
784 {
Michael Ellerman76ffb572016-11-18 23:15:42 +1100785 .mask = cpu_to_be32(0xffffffff), /* all 2.07-compliant */
786 .val = cpu_to_be32(0x0f000004),
787 },
788 {
789 .mask = cpu_to_be32(0xffffffff), /* all 2.06-compliant */
790 .val = cpu_to_be32(0x0f000003),
791 },
792 {
793 .mask = cpu_to_be32(0xffffffff), /* all 2.05-compliant */
794 .val = cpu_to_be32(0x0f000002),
795 },
796 {
797 .mask = cpu_to_be32(0xfffffffe), /* all 2.04-compliant and earlier */
798 .val = cpu_to_be32(0x0f000001),
799 },
800 },
801
802 .num_vectors = NUM_VECTORS(6),
803
804 .vec1_len = VECTOR_LENGTH(sizeof(struct option_vector1)),
805 .vec1 = {
806 .byte1 = 0,
807 .arch_versions = OV1_PPC_2_00 | OV1_PPC_2_01 | OV1_PPC_2_02 | OV1_PPC_2_03 |
808 OV1_PPC_2_04 | OV1_PPC_2_05 | OV1_PPC_2_06 | OV1_PPC_2_07,
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100809 .arch_versions3 = OV1_PPC_3_00,
Michael Ellerman76ffb572016-11-18 23:15:42 +1100810 },
811
812 .vec2_len = VECTOR_LENGTH(sizeof(struct option_vector2)),
813 /* option vector 2: Open Firmware options supported */
814 .vec2 = {
815 .byte1 = OV2_REAL_MODE,
816 .reserved = 0,
817 .real_base = cpu_to_be32(0xffffffff),
818 .real_size = cpu_to_be32(0xffffffff),
819 .virt_base = cpu_to_be32(0xffffffff),
820 .virt_size = cpu_to_be32(0xffffffff),
821 .load_base = cpu_to_be32(0xffffffff),
Sukadev Bhattiprolu687da8f2017-03-27 19:43:14 -0400822 .min_rma = cpu_to_be32(512), /* 512MB min RMA */
Michael Ellerman76ffb572016-11-18 23:15:42 +1100823 .min_load = cpu_to_be32(0xffffffff), /* full client load */
824 .min_rma_percent = 0, /* min RMA percentage of total RAM */
825 .max_pft_size = 48, /* max log_2(hash table size) */
826 },
827
828 .vec3_len = VECTOR_LENGTH(sizeof(struct option_vector3)),
829 /* option vector 3: processor options supported */
830 .vec3 = {
831 .byte1 = 0, /* don't ignore, don't halt */
832 .byte2 = OV3_FP | OV3_VMX | OV3_DFP,
833 },
834
835 .vec4_len = VECTOR_LENGTH(sizeof(struct option_vector4)),
836 /* option vector 4: IBM PAPR implementation */
837 .vec4 = {
838 .byte1 = 0, /* don't halt */
839 .min_vp_cap = OV4_MIN_ENT_CAP, /* minimum VP entitled capacity */
840 },
841
842 .vec5_len = VECTOR_LENGTH(sizeof(struct option_vector5)),
843 /* option vector 5: PAPR/OF options */
844 .vec5 = {
845 .byte1 = 0, /* don't ignore, don't halt */
846 .byte2 = OV5_FEAT(OV5_LPAR) | OV5_FEAT(OV5_SPLPAR) | OV5_FEAT(OV5_LARGE_PAGES) |
847 OV5_FEAT(OV5_DRCONF_MEMORY) | OV5_FEAT(OV5_DONATE_DEDICATE_CPU) |
848#ifdef CONFIG_PCI_MSI
849 /* PCIe/MSI support. Without MSI full PCIe is not supported */
850 OV5_FEAT(OV5_MSI),
851#else
852 0,
853#endif
854 .byte3 = 0,
855 .cmo =
856#ifdef CONFIG_PPC_SMLPAR
857 OV5_FEAT(OV5_CMO) | OV5_FEAT(OV5_XCMO),
858#else
859 0,
860#endif
861 .associativity = OV5_FEAT(OV5_TYPE1_AFFINITY) | OV5_FEAT(OV5_PRRN),
Michael Roth3dbbaf22017-02-20 19:12:18 -0600862 .bin_opts = OV5_FEAT(OV5_RESIZE_HPT) | OV5_FEAT(OV5_HP_EVT),
Michael Ellerman76ffb572016-11-18 23:15:42 +1100863 .micro_checkpoint = 0,
864 .reserved0 = 0,
865 .max_cpus = cpu_to_be32(NR_CPUS), /* number of cores supported */
866 .papr_level = 0,
867 .reserved1 = 0,
868 .platform_facilities = OV5_FEAT(OV5_PFO_HW_RNG) | OV5_FEAT(OV5_PFO_HW_ENCR) | OV5_FEAT(OV5_PFO_HW_842),
869 .reserved2 = 0,
870 .reserved3 = 0,
871 .subprocessors = 1,
Nathan Fontenot0c38ed62017-12-01 10:48:03 -0600872 .byte22 = OV5_FEAT(OV5_DRMEM_V2),
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100873 .intarch = 0,
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +1100874 .mmu = 0,
875 .hash_ext = 0,
876 .radix_ext = 0,
Michael Ellerman76ffb572016-11-18 23:15:42 +1100877 },
878
879 /* option vector 6: IBM PAPR hints */
880 .vec6_len = VECTOR_LENGTH(sizeof(struct option_vector6)),
881 .vec6 = {
882 .reserved = 0,
883 .secondary_pteg = 0,
884 .os_name = OV6_LINUX,
885 },
886};
887
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000888/* Old method - ELF header with PT_NOTE sections only works on BE */
889#ifdef __BIG_ENDIAN__
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000890static struct fake_elf {
891 Elf32_Ehdr elfhdr;
892 Elf32_Phdr phdr[2];
893 struct chrpnote {
894 u32 namesz;
895 u32 descsz;
896 u32 type;
897 char name[8]; /* "PowerPC" */
898 struct chrpdesc {
899 u32 real_mode;
900 u32 real_base;
901 u32 real_size;
902 u32 virt_base;
903 u32 virt_size;
904 u32 load_base;
905 } chrpdesc;
906 } chrpnote;
907 struct rpanote {
908 u32 namesz;
909 u32 descsz;
910 u32 type;
911 char name[24]; /* "IBM,RPA-Client-Config" */
912 struct rpadesc {
913 u32 lpar_affinity;
914 u32 min_rmo_size;
915 u32 min_rmo_percent;
916 u32 max_pft_size;
917 u32 splpar;
918 u32 min_load;
919 u32 new_mem_def;
920 u32 ignore_me;
921 } rpadesc;
922 } rpanote;
Paul Mackerras5663a122008-10-31 22:27:17 +1100923} fake_elf = {
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000924 .elfhdr = {
925 .e_ident = { 0x7f, 'E', 'L', 'F',
926 ELFCLASS32, ELFDATA2MSB, EV_CURRENT },
927 .e_type = ET_EXEC, /* yeah right */
928 .e_machine = EM_PPC,
929 .e_version = EV_CURRENT,
930 .e_phoff = offsetof(struct fake_elf, phdr),
931 .e_phentsize = sizeof(Elf32_Phdr),
932 .e_phnum = 2
933 },
934 .phdr = {
935 [0] = {
936 .p_type = PT_NOTE,
937 .p_offset = offsetof(struct fake_elf, chrpnote),
938 .p_filesz = sizeof(struct chrpnote)
939 }, [1] = {
940 .p_type = PT_NOTE,
941 .p_offset = offsetof(struct fake_elf, rpanote),
942 .p_filesz = sizeof(struct rpanote)
943 }
944 },
945 .chrpnote = {
946 .namesz = sizeof("PowerPC"),
947 .descsz = sizeof(struct chrpdesc),
948 .type = 0x1275,
949 .name = "PowerPC",
950 .chrpdesc = {
951 .real_mode = ~0U, /* ~0 means "don't care" */
952 .real_base = ~0U,
953 .real_size = ~0U,
954 .virt_base = ~0U,
955 .virt_size = ~0U,
956 .load_base = ~0U
957 },
958 },
959 .rpanote = {
960 .namesz = sizeof("IBM,RPA-Client-Config"),
961 .descsz = sizeof(struct rpadesc),
962 .type = 0x12759999,
963 .name = "IBM,RPA-Client-Config",
964 .rpadesc = {
Paul Mackerras5663a122008-10-31 22:27:17 +1100965 .lpar_affinity = 0,
966 .min_rmo_size = 64, /* in megabytes */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000967 .min_rmo_percent = 0,
Paul Mackerras5663a122008-10-31 22:27:17 +1100968 .max_pft_size = 48, /* 2^48 bytes max PFT size */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000969 .splpar = 1,
970 .min_load = ~0U,
Paul Mackerras5663a122008-10-31 22:27:17 +1100971 .new_mem_def = 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000972 }
973 }
974};
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +1000975#endif /* __BIG_ENDIAN__ */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000976
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100977static int __init prom_count_smt_threads(void)
978{
979 phandle node;
980 char type[64];
981 unsigned int plen;
982
983 /* Pick up th first CPU node we can find */
984 for (node = 0; prom_next_node(&node); ) {
985 type[0] = 0;
986 prom_getprop(node, "device_type", type, sizeof(type));
987
Anton Blanchard5827d412012-11-26 17:40:03 +0000988 if (strcmp(type, "cpu"))
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +1100989 continue;
990 /*
991 * There is an entry for each smt thread, each entry being
992 * 4 bytes long. All cpus should have the same number of
993 * smt threads, so return after finding the first.
994 */
995 plen = prom_getproplen(node, "ibm,ppc-interrupt-server#s");
996 if (plen == PROM_ERROR)
997 break;
998 plen >>= 2;
Michael Neuling2c48a7d2010-07-27 18:26:21 +0000999 prom_debug("Found %lu smt threads per core\n", (unsigned long)plen);
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +11001000
1001 /* Sanity check */
1002 if (plen < 1 || plen > 64) {
Michael Neuling2c48a7d2010-07-27 18:26:21 +00001003 prom_printf("Threads per core %lu out of bounds, assuming 1\n",
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +11001004 (unsigned long)plen);
1005 return 1;
1006 }
1007 return plen;
1008 }
1009 prom_debug("No threads found, assuming 1 per core\n");
1010
1011 return 1;
1012
1013}
1014
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +11001015static void __init prom_parse_mmu_model(u8 val,
1016 struct platform_support *support)
1017{
1018 switch (val) {
1019 case OV5_FEAT(OV5_MMU_DYNAMIC):
1020 case OV5_FEAT(OV5_MMU_EITHER): /* Either Available */
1021 prom_debug("MMU - either supported\n");
1022 support->radix_mmu = !prom_radix_disable;
1023 support->hash_mmu = true;
1024 break;
1025 case OV5_FEAT(OV5_MMU_RADIX): /* Only Radix */
1026 prom_debug("MMU - radix only\n");
1027 if (prom_radix_disable) {
1028 /*
1029 * If we __have__ to do radix, we're better off ignoring
1030 * the command line rather than not booting.
1031 */
1032 prom_printf("WARNING: Ignoring cmdline option disable_radix\n");
1033 }
1034 support->radix_mmu = true;
1035 break;
1036 case OV5_FEAT(OV5_MMU_HASH):
1037 prom_debug("MMU - hash only\n");
1038 support->hash_mmu = true;
1039 break;
1040 default:
1041 prom_debug("Unknown mmu support option: 0x%x\n", val);
1042 break;
1043 }
1044}
1045
Cédric Le Goaterac5e5a52017-08-30 21:46:16 +02001046static void __init prom_parse_xive_model(u8 val,
1047 struct platform_support *support)
1048{
1049 switch (val) {
1050 case OV5_FEAT(OV5_XIVE_EITHER): /* Either Available */
1051 prom_debug("XIVE - either mode supported\n");
1052 support->xive = true;
1053 break;
1054 case OV5_FEAT(OV5_XIVE_EXPLOIT): /* Only Exploitation mode */
1055 prom_debug("XIVE - exploitation mode supported\n");
1056 support->xive = true;
1057 break;
1058 case OV5_FEAT(OV5_XIVE_LEGACY): /* Only Legacy mode */
1059 prom_debug("XIVE - legacy mode supported\n");
1060 break;
1061 default:
1062 prom_debug("Unknown xive support option: 0x%x\n", val);
1063 break;
1064 }
1065}
1066
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +11001067static void __init prom_parse_platform_support(u8 index, u8 val,
1068 struct platform_support *support)
1069{
1070 switch (index) {
1071 case OV5_INDX(OV5_MMU_SUPPORT): /* MMU Model */
1072 prom_parse_mmu_model(val & OV5_FEAT(OV5_MMU_SUPPORT), support);
1073 break;
1074 case OV5_INDX(OV5_RADIX_GTSE): /* Radix Extensions */
1075 if (val & OV5_FEAT(OV5_RADIX_GTSE)) {
1076 prom_debug("Radix - GTSE supported\n");
1077 support->radix_gtse = true;
1078 }
1079 break;
Cédric Le Goaterac5e5a52017-08-30 21:46:16 +02001080 case OV5_INDX(OV5_XIVE_SUPPORT): /* Interrupt mode */
1081 prom_parse_xive_model(val & OV5_FEAT(OV5_XIVE_SUPPORT),
1082 support);
1083 break;
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +11001084 }
1085}
1086
1087static void __init prom_check_platform_support(void)
1088{
1089 struct platform_support supported = {
1090 .hash_mmu = false,
1091 .radix_mmu = false,
Cédric Le Goaterac5e5a52017-08-30 21:46:16 +02001092 .radix_gtse = false,
1093 .xive = false
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +11001094 };
1095 int prop_len = prom_getproplen(prom.chosen,
1096 "ibm,arch-vec-5-platform-support");
1097 if (prop_len > 1) {
1098 int i;
1099 u8 vec[prop_len];
1100 prom_debug("Found ibm,arch-vec-5-platform-support, len: %d\n",
1101 prop_len);
1102 prom_getprop(prom.chosen, "ibm,arch-vec-5-platform-support",
1103 &vec, sizeof(vec));
1104 for (i = 0; i < prop_len; i += 2) {
1105 prom_debug("%d: index = 0x%x val = 0x%x\n", i / 2
1106 , vec[i]
1107 , vec[i + 1]);
1108 prom_parse_platform_support(vec[i], vec[i + 1],
1109 &supported);
1110 }
1111 }
1112
1113 if (supported.radix_mmu && supported.radix_gtse) {
1114 /* Radix preferred - but we require GTSE for now */
1115 prom_debug("Asking for radix with GTSE\n");
1116 ibm_architecture_vec.vec5.mmu = OV5_FEAT(OV5_MMU_RADIX);
1117 ibm_architecture_vec.vec5.radix_ext = OV5_FEAT(OV5_RADIX_GTSE);
1118 } else if (supported.hash_mmu) {
1119 /* Default to hash mmu (if we can) */
1120 prom_debug("Asking for hash\n");
1121 ibm_architecture_vec.vec5.mmu = OV5_FEAT(OV5_MMU_HASH);
1122 } else {
1123 /* We're probably on a legacy hypervisor */
1124 prom_debug("Assuming legacy hash support\n");
1125 }
Cédric Le Goaterac5e5a52017-08-30 21:46:16 +02001126
1127 if (supported.xive) {
1128 prom_debug("Asking for XIVE\n");
1129 ibm_architecture_vec.vec5.intarch = OV5_FEAT(OV5_XIVE_EXPLOIT);
1130 }
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +11001131}
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +11001132
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001133static void __init prom_send_capabilities(void)
1134{
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001135 ihandle root;
Paul Mackerrasf709bfa2006-04-28 16:28:35 +10001136 prom_arg_t ret;
Laurent Dufourdbd0c5d2013-09-17 11:52:48 +02001137 u32 cores;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001138
Suraj Jitindar Singh014d02c2017-02-28 17:03:48 +11001139 /* Check ibm,arch-vec-5-platform-support and fixup vec5 if required */
1140 prom_check_platform_support();
1141
Paul Mackerrasf709bfa2006-04-28 16:28:35 +10001142 root = call_prom("open", 1, 1, ADDR("/"));
1143 if (root != 0) {
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +11001144 /* We need to tell the FW about the number of cores we support.
1145 *
1146 * To do that, we count the number of threads on the first core
1147 * (we assume this is the same for all cores) and use it to
1148 * divide NR_CPUS.
1149 */
Laurent Dufourdbd0c5d2013-09-17 11:52:48 +02001150
Michael Ellerman76ffb572016-11-18 23:15:42 +11001151 cores = DIV_ROUND_UP(NR_CPUS, prom_count_smt_threads());
1152 prom_printf("Max number of cores passed to firmware: %lu (NR_CPUS = %lu)\n",
1153 cores, NR_CPUS);
1154
1155 ibm_architecture_vec.vec5.max_cpus = cpu_to_be32(cores);
Benjamin Herrenschmidtefec9592010-02-04 14:33:54 +11001156
Paul Mackerrasf709bfa2006-04-28 16:28:35 +10001157 /* try calling the ibm,client-architecture-support method */
Anton Blanchard049d0492009-09-21 20:47:39 +00001158 prom_printf("Calling ibm,client-architecture-support...");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +10001159 if (call_prom_ret("call-method", 3, 2, &ret,
1160 ADDR("ibm,client-architecture-support"),
Benjamin Herrenschmidt33b74972006-06-07 12:01:32 +10001161 root,
Michael Ellerman76ffb572016-11-18 23:15:42 +11001162 ADDR(&ibm_architecture_vec)) == 0) {
Paul Mackerrasf709bfa2006-04-28 16:28:35 +10001163 /* the call exists... */
1164 if (ret)
Anton Blanchard4da727a2009-03-31 20:06:14 +00001165 prom_printf("\nWARNING: ibm,client-architecture"
Paul Mackerrasf709bfa2006-04-28 16:28:35 +10001166 "-support call FAILED!\n");
1167 call_prom("close", 1, 0, root);
Anton Blanchard4da727a2009-03-31 20:06:14 +00001168 prom_printf(" done\n");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +10001169 return;
1170 }
1171 call_prom("close", 1, 0, root);
Anton Blanchard049d0492009-09-21 20:47:39 +00001172 prom_printf(" not implemented\n");
Paul Mackerrasf709bfa2006-04-28 16:28:35 +10001173 }
1174
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001175#ifdef __BIG_ENDIAN__
1176 {
1177 ihandle elfloader;
1178
1179 /* no ibm,client-architecture-support call, try the old way */
1180 elfloader = call_prom("open", 1, 1,
1181 ADDR("/packages/elf-loader"));
1182 if (elfloader == 0) {
1183 prom_printf("couldn't open /packages/elf-loader\n");
1184 return;
1185 }
1186 call_prom("call-method", 3, 1, ADDR("process-elf-header"),
1187 elfloader, ADDR(&fake_elf));
1188 call_prom("close", 1, 0, elfloader);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001189 }
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001190#endif /* __BIG_ENDIAN__ */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001191}
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001192#endif /* #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001193
1194/*
1195 * Memory allocation strategy... our layout is normally:
1196 *
1197 * at 14Mb or more we have vmlinux, then a gap and initrd. In some
1198 * rare cases, initrd might end up being before the kernel though.
1199 * We assume this won't override the final kernel at 0, we have no
1200 * provision to handle that in this version, but it should hopefully
1201 * never happen.
1202 *
1203 * alloc_top is set to the top of RMO, eventually shrink down if the
1204 * TCEs overlap
1205 *
1206 * alloc_bottom is set to the top of kernel/initrd
1207 *
1208 * from there, allocations are done this way : rtas is allocated
1209 * topmost, and the device-tree is allocated from the bottom. We try
1210 * to grow the device-tree allocation as we progress. If we can't,
1211 * then we fail, we don't currently have a facility to restart
1212 * elsewhere, but that shouldn't be necessary.
1213 *
1214 * Note that calls to reserve_mem have to be done explicitly, memory
1215 * allocated with either alloc_up or alloc_down isn't automatically
1216 * reserved.
1217 */
1218
1219
1220/*
1221 * Allocates memory in the RMO upward from the kernel/initrd
1222 *
1223 * When align is 0, this is a special case, it means to allocate in place
1224 * at the current location of alloc_bottom or fail (that is basically
1225 * extending the previous allocation). Used for the device-tree flattening
1226 */
1227static unsigned long __init alloc_up(unsigned long size, unsigned long align)
1228{
Anton Blanchard5827d412012-11-26 17:40:03 +00001229 unsigned long base = alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001230 unsigned long addr = 0;
1231
Paul Mackerrasc49888202005-10-26 21:52:53 +10001232 if (align)
1233 base = _ALIGN_UP(base, align);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001234 prom_debug("alloc_up(%x, %x)\n", size, align);
Anton Blanchard5827d412012-11-26 17:40:03 +00001235 if (ram_top == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001236 prom_panic("alloc_up() called with mem not initialized\n");
1237
1238 if (align)
Anton Blanchard5827d412012-11-26 17:40:03 +00001239 base = _ALIGN_UP(alloc_bottom, align);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001240 else
Anton Blanchard5827d412012-11-26 17:40:03 +00001241 base = alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001242
Anton Blanchard5827d412012-11-26 17:40:03 +00001243 for(; (base + size) <= alloc_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001244 base = _ALIGN_UP(base + 0x100000, align)) {
1245 prom_debug(" trying: 0x%x\n\r", base);
1246 addr = (unsigned long)prom_claim(base, size, 0);
Paul Mackerrasc49888202005-10-26 21:52:53 +10001247 if (addr != PROM_ERROR && addr != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001248 break;
1249 addr = 0;
1250 if (align == 0)
1251 break;
1252 }
1253 if (addr == 0)
1254 return 0;
Anton Blanchard5827d412012-11-26 17:40:03 +00001255 alloc_bottom = addr + size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001256
1257 prom_debug(" -> %x\n", addr);
Anton Blanchard5827d412012-11-26 17:40:03 +00001258 prom_debug(" alloc_bottom : %x\n", alloc_bottom);
1259 prom_debug(" alloc_top : %x\n", alloc_top);
1260 prom_debug(" alloc_top_hi : %x\n", alloc_top_high);
1261 prom_debug(" rmo_top : %x\n", rmo_top);
1262 prom_debug(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001263
1264 return addr;
1265}
1266
1267/*
1268 * Allocates memory downward, either from top of RMO, or if highmem
1269 * is set, from the top of RAM. Note that this one doesn't handle
1270 * failures. It does claim memory if highmem is not set.
1271 */
1272static unsigned long __init alloc_down(unsigned long size, unsigned long align,
1273 int highmem)
1274{
1275 unsigned long base, addr = 0;
1276
1277 prom_debug("alloc_down(%x, %x, %s)\n", size, align,
Anton Blanchard5827d412012-11-26 17:40:03 +00001278 highmem ? "(high)" : "(low)");
1279 if (ram_top == 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001280 prom_panic("alloc_down() called with mem not initialized\n");
1281
1282 if (highmem) {
1283 /* Carve out storage for the TCE table. */
Anton Blanchard5827d412012-11-26 17:40:03 +00001284 addr = _ALIGN_DOWN(alloc_top_high - size, align);
1285 if (addr <= alloc_bottom)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001286 return 0;
1287 /* Will we bump into the RMO ? If yes, check out that we
1288 * didn't overlap existing allocations there, if we did,
1289 * we are dead, we must be the first in town !
1290 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001291 if (addr < rmo_top) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001292 /* Good, we are first */
Anton Blanchard5827d412012-11-26 17:40:03 +00001293 if (alloc_top == rmo_top)
1294 alloc_top = rmo_top = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001295 else
1296 return 0;
1297 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001298 alloc_top_high = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001299 goto bail;
1300 }
1301
Anton Blanchard5827d412012-11-26 17:40:03 +00001302 base = _ALIGN_DOWN(alloc_top - size, align);
1303 for (; base > alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001304 base = _ALIGN_DOWN(base - 0x100000, align)) {
1305 prom_debug(" trying: 0x%x\n\r", base);
1306 addr = (unsigned long)prom_claim(base, size, 0);
Paul Mackerrasc49888202005-10-26 21:52:53 +10001307 if (addr != PROM_ERROR && addr != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001308 break;
1309 addr = 0;
1310 }
1311 if (addr == 0)
1312 return 0;
Anton Blanchard5827d412012-11-26 17:40:03 +00001313 alloc_top = addr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001314
1315 bail:
1316 prom_debug(" -> %x\n", addr);
Anton Blanchard5827d412012-11-26 17:40:03 +00001317 prom_debug(" alloc_bottom : %x\n", alloc_bottom);
1318 prom_debug(" alloc_top : %x\n", alloc_top);
1319 prom_debug(" alloc_top_hi : %x\n", alloc_top_high);
1320 prom_debug(" rmo_top : %x\n", rmo_top);
1321 prom_debug(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001322
1323 return addr;
1324}
1325
1326/*
1327 * Parse a "reg" cell
1328 */
1329static unsigned long __init prom_next_cell(int s, cell_t **cellp)
1330{
1331 cell_t *p = *cellp;
1332 unsigned long r = 0;
1333
1334 /* Ignore more than 2 cells */
1335 while (s > sizeof(unsigned long) / 4) {
1336 p++;
1337 s--;
1338 }
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001339 r = be32_to_cpu(*p++);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001340#ifdef CONFIG_PPC64
Paul Mackerras35499c02005-10-22 16:02:39 +10001341 if (s > 1) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001342 r <<= 32;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001343 r |= be32_to_cpu(*(p++));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001344 }
1345#endif
1346 *cellp = p;
1347 return r;
1348}
1349
1350/*
1351 * Very dumb function for adding to the memory reserve list, but
1352 * we don't need anything smarter at this point
1353 *
1354 * XXX Eventually check for collisions. They should NEVER happen.
1355 * If problems seem to show up, it would be a good start to track
1356 * them down.
1357 */
Michael Ellerman0108d3f2007-05-07 15:58:28 +10001358static void __init reserve_mem(u64 base, u64 size)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001359{
Kumar Galacbbcf342006-01-11 17:57:13 -06001360 u64 top = base + size;
Anton Blanchard5827d412012-11-26 17:40:03 +00001361 unsigned long cnt = mem_reserve_cnt;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001362
1363 if (size == 0)
1364 return;
1365
1366 /* We need to always keep one empty entry so that we
1367 * have our terminator with "size" set to 0 since we are
1368 * dumb and just copy this entire array to the boot params
1369 */
1370 base = _ALIGN_DOWN(base, PAGE_SIZE);
1371 top = _ALIGN_UP(top, PAGE_SIZE);
1372 size = top - base;
1373
1374 if (cnt >= (MEM_RESERVE_MAP_SIZE - 1))
1375 prom_panic("Memory reserve map exhausted !\n");
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001376 mem_reserve_map[cnt].base = cpu_to_be64(base);
1377 mem_reserve_map[cnt].size = cpu_to_be64(size);
Anton Blanchard5827d412012-11-26 17:40:03 +00001378 mem_reserve_cnt = cnt + 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001379}
1380
1381/*
Adrian Bunkb3c2ffd2006-06-30 18:20:44 +02001382 * Initialize memory allocation mechanism, parse "memory" nodes and
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001383 * obtain that way the top of memory and RMO to setup out local allocator
1384 */
1385static void __init prom_init_mem(void)
1386{
1387 phandle node;
1388 char *path, type[64];
1389 unsigned int plen;
1390 cell_t *p, *endp;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001391 __be32 val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001392 u32 rac, rsc;
1393
1394 /*
1395 * We iterate the memory nodes to find
1396 * 1) top of RMO (first node)
1397 * 2) top of memory
1398 */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001399 val = cpu_to_be32(2);
1400 prom_getprop(prom.root, "#address-cells", &val, sizeof(val));
1401 rac = be32_to_cpu(val);
1402 val = cpu_to_be32(1);
1403 prom_getprop(prom.root, "#size-cells", &val, sizeof(rsc));
1404 rsc = be32_to_cpu(val);
1405 prom_debug("root_addr_cells: %x\n", rac);
1406 prom_debug("root_size_cells: %x\n", rsc);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001407
1408 prom_debug("scanning memory:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001409 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001410
1411 for (node = 0; prom_next_node(&node); ) {
1412 type[0] = 0;
1413 prom_getprop(node, "device_type", type, sizeof(type));
1414
Paul Mackerrasc49888202005-10-26 21:52:53 +10001415 if (type[0] == 0) {
1416 /*
1417 * CHRP Longtrail machines have no device_type
1418 * on the memory node, so check the name instead...
1419 */
1420 prom_getprop(node, "name", type, sizeof(type));
1421 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001422 if (strcmp(type, "memory"))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001423 continue;
Paul Mackerrasc49888202005-10-26 21:52:53 +10001424
Anton Blanchard5827d412012-11-26 17:40:03 +00001425 plen = prom_getprop(node, "reg", regbuf, sizeof(regbuf));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001426 if (plen > sizeof(regbuf)) {
1427 prom_printf("memory node too large for buffer !\n");
1428 plen = sizeof(regbuf);
1429 }
Anton Blanchard5827d412012-11-26 17:40:03 +00001430 p = regbuf;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001431 endp = p + (plen / sizeof(cell_t));
1432
1433#ifdef DEBUG_PROM
1434 memset(path, 0, PROM_SCRATCH_SIZE);
1435 call_prom("package-to-path", 3, 1, node, path, PROM_SCRATCH_SIZE-1);
1436 prom_debug(" node %s :\n", path);
1437#endif /* DEBUG_PROM */
1438
1439 while ((endp - p) >= (rac + rsc)) {
1440 unsigned long base, size;
1441
1442 base = prom_next_cell(rac, &p);
1443 size = prom_next_cell(rsc, &p);
1444
1445 if (size == 0)
1446 continue;
1447 prom_debug(" %x %x\n", base, size);
Anton Blanchard5827d412012-11-26 17:40:03 +00001448 if (base == 0 && (of_platform & PLATFORM_LPAR))
1449 rmo_top = size;
1450 if ((base + size) > ram_top)
1451 ram_top = base + size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001452 }
1453 }
1454
Anton Blanchard5827d412012-11-26 17:40:03 +00001455 alloc_bottom = PAGE_ALIGN((unsigned long)&_end + 0x4000);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001456
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001457 /*
Benjamin Krillcf687872009-07-27 22:02:39 +00001458 * If prom_memory_limit is set we reduce the upper limits *except* for
1459 * alloc_top_high. This must be the real top of RAM so we can put
1460 * TCE's up there.
1461 */
1462
Anton Blanchard5827d412012-11-26 17:40:03 +00001463 alloc_top_high = ram_top;
Benjamin Krillcf687872009-07-27 22:02:39 +00001464
Anton Blanchard5827d412012-11-26 17:40:03 +00001465 if (prom_memory_limit) {
1466 if (prom_memory_limit <= alloc_bottom) {
Benjamin Krillcf687872009-07-27 22:02:39 +00001467 prom_printf("Ignoring mem=%x <= alloc_bottom.\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00001468 prom_memory_limit);
1469 prom_memory_limit = 0;
1470 } else if (prom_memory_limit >= ram_top) {
Benjamin Krillcf687872009-07-27 22:02:39 +00001471 prom_printf("Ignoring mem=%x >= ram_top.\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00001472 prom_memory_limit);
1473 prom_memory_limit = 0;
Benjamin Krillcf687872009-07-27 22:02:39 +00001474 } else {
Anton Blanchard5827d412012-11-26 17:40:03 +00001475 ram_top = prom_memory_limit;
1476 rmo_top = min(rmo_top, prom_memory_limit);
Benjamin Krillcf687872009-07-27 22:02:39 +00001477 }
1478 }
1479
1480 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001481 * Setup our top alloc point, that is top of RMO or top of
1482 * segment 0 when running non-LPAR.
1483 * Some RS64 machines have buggy firmware where claims up at
1484 * 1GB fail. Cap at 768MB as a workaround.
1485 * Since 768MB is plenty of room, and we need to cap to something
1486 * reasonable on 32-bit, cap at 768MB on all machines.
1487 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001488 if (!rmo_top)
1489 rmo_top = ram_top;
1490 rmo_top = min(0x30000000ul, rmo_top);
1491 alloc_top = rmo_top;
1492 alloc_top_high = ram_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001493
Paul Mackerras64968f62011-12-13 17:54:13 +00001494 /*
1495 * Check if we have an initrd after the kernel but still inside
1496 * the RMO. If we do move our bottom point to after it.
1497 */
Anton Blanchard5827d412012-11-26 17:40:03 +00001498 if (prom_initrd_start &&
1499 prom_initrd_start < rmo_top &&
1500 prom_initrd_end > alloc_bottom)
1501 alloc_bottom = PAGE_ALIGN(prom_initrd_end);
Paul Mackerras64968f62011-12-13 17:54:13 +00001502
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001503 prom_printf("memory layout at init:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00001504 prom_printf(" memory_limit : %x (16 MB aligned)\n", prom_memory_limit);
1505 prom_printf(" alloc_bottom : %x\n", alloc_bottom);
1506 prom_printf(" alloc_top : %x\n", alloc_top);
1507 prom_printf(" alloc_top_hi : %x\n", alloc_top_high);
1508 prom_printf(" rmo_top : %x\n", rmo_top);
1509 prom_printf(" ram_top : %x\n", ram_top);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001510}
1511
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001512static void __init prom_close_stdin(void)
1513{
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001514 __be32 val;
1515 ihandle stdin;
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001516
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001517 if (prom_getprop(prom.chosen, "stdin", &val, sizeof(val)) > 0) {
1518 stdin = be32_to_cpu(val);
1519 call_prom("close", 1, 0, stdin);
1520 }
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001521}
1522
1523#ifdef CONFIG_PPC_POWERNV
1524
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001525#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
1526static u64 __initdata prom_opal_base;
1527static u64 __initdata prom_opal_entry;
1528#endif
1529
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001530/*
1531 * Allocate room for and instantiate OPAL
1532 */
1533static void __init prom_instantiate_opal(void)
1534{
1535 phandle opal_node;
1536 ihandle opal_inst;
1537 u64 base, entry;
1538 u64 size = 0, align = 0x10000;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001539 __be64 val64;
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001540 u32 rets[2];
1541
1542 prom_debug("prom_instantiate_opal: start...\n");
1543
1544 opal_node = call_prom("finddevice", 1, 1, ADDR("/ibm,opal"));
1545 prom_debug("opal_node: %x\n", opal_node);
1546 if (!PHANDLE_VALID(opal_node))
1547 return;
1548
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001549 val64 = 0;
1550 prom_getprop(opal_node, "opal-runtime-size", &val64, sizeof(val64));
1551 size = be64_to_cpu(val64);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001552 if (size == 0)
1553 return;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001554 val64 = 0;
1555 prom_getprop(opal_node, "opal-runtime-alignment", &val64,sizeof(val64));
1556 align = be64_to_cpu(val64);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001557
1558 base = alloc_down(size, align, 0);
1559 if (base == 0) {
1560 prom_printf("OPAL allocation failed !\n");
1561 return;
1562 }
1563
1564 opal_inst = call_prom("open", 1, 1, ADDR("/ibm,opal"));
1565 if (!IHANDLE_VALID(opal_inst)) {
1566 prom_printf("opening opal package failed (%x)\n", opal_inst);
1567 return;
1568 }
1569
1570 prom_printf("instantiating opal at 0x%x...", base);
1571
1572 if (call_prom_ret("call-method", 4, 3, rets,
1573 ADDR("load-opal-runtime"),
1574 opal_inst,
1575 base >> 32, base & 0xffffffff) != 0
1576 || (rets[0] == 0 && rets[1] == 0)) {
1577 prom_printf(" failed\n");
1578 return;
1579 }
1580 entry = (((u64)rets[0]) << 32) | rets[1];
1581
1582 prom_printf(" done\n");
1583
1584 reserve_mem(base, size);
1585
1586 prom_debug("opal base = 0x%x\n", base);
1587 prom_debug("opal align = 0x%x\n", align);
1588 prom_debug("opal entry = 0x%x\n", entry);
1589 prom_debug("opal size = 0x%x\n", (long)size);
1590
1591 prom_setprop(opal_node, "/ibm,opal", "opal-base-address",
1592 &base, sizeof(base));
1593 prom_setprop(opal_node, "/ibm,opal", "opal-entry-address",
1594 &entry, sizeof(entry));
1595
1596#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
Anton Blanchard5827d412012-11-26 17:40:03 +00001597 prom_opal_base = base;
1598 prom_opal_entry = entry;
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00001599#endif
1600 prom_debug("prom_instantiate_opal: end...\n");
1601}
1602
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001603#endif /* CONFIG_PPC_POWERNV */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001604
1605/*
1606 * Allocate room for and instantiate RTAS
1607 */
1608static void __init prom_instantiate_rtas(void)
1609{
1610 phandle rtas_node;
1611 ihandle rtas_inst;
1612 u32 base, entry = 0;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001613 __be32 val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001614 u32 size = 0;
1615
1616 prom_debug("prom_instantiate_rtas: start...\n");
1617
1618 rtas_node = call_prom("finddevice", 1, 1, ADDR("/rtas"));
1619 prom_debug("rtas_node: %x\n", rtas_node);
1620 if (!PHANDLE_VALID(rtas_node))
1621 return;
1622
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001623 val = 0;
1624 prom_getprop(rtas_node, "rtas-size", &val, sizeof(size));
1625 size = be32_to_cpu(val);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001626 if (size == 0)
1627 return;
1628
1629 base = alloc_down(size, PAGE_SIZE, 0);
Anton Blanchard6d1e2c62011-11-14 12:55:47 +00001630 if (base == 0)
1631 prom_panic("Could not allocate memory for RTAS\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001632
1633 rtas_inst = call_prom("open", 1, 1, ADDR("/rtas"));
1634 if (!IHANDLE_VALID(rtas_inst)) {
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001635 prom_printf("opening rtas package failed (%x)\n", rtas_inst);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001636 return;
1637 }
1638
Anton Blanchard1f8737a2009-03-31 20:06:15 +00001639 prom_printf("instantiating rtas at 0x%x...", base);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001640
1641 if (call_prom_ret("call-method", 3, 2, &entry,
1642 ADDR("instantiate-rtas"),
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001643 rtas_inst, base) != 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001644 || entry == 0) {
1645 prom_printf(" failed\n");
1646 return;
1647 }
1648 prom_printf(" done\n");
1649
1650 reserve_mem(base, size);
1651
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001652 val = cpu_to_be32(base);
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001653 prom_setprop(rtas_node, "/rtas", "linux,rtas-base",
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001654 &val, sizeof(val));
1655 val = cpu_to_be32(entry);
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001656 prom_setprop(rtas_node, "/rtas", "linux,rtas-entry",
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001657 &val, sizeof(val));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001658
Benjamin Herrenschmidtdbe78b42013-09-25 14:02:50 +10001659 /* Check if it supports "query-cpu-stopped-state" */
1660 if (prom_getprop(rtas_node, "query-cpu-stopped-state",
1661 &val, sizeof(val)) != PROM_ERROR)
1662 rtas_has_query_cpu_stopped = true;
1663
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001664 prom_debug("rtas base = 0x%x\n", base);
1665 prom_debug("rtas entry = 0x%x\n", entry);
1666 prom_debug("rtas size = 0x%x\n", (long)size);
1667
1668 prom_debug("prom_instantiate_rtas: end...\n");
1669}
1670
1671#ifdef CONFIG_PPC64
1672/*
Ashley Lai4a727422012-08-14 18:34:57 -05001673 * Allocate room for and instantiate Stored Measurement Log (SML)
1674 */
1675static void __init prom_instantiate_sml(void)
1676{
1677 phandle ibmvtpm_node;
1678 ihandle ibmvtpm_inst;
Hon Ching \(Vicky\) Lob4ed0462015-10-07 20:11:53 -04001679 u32 entry = 0, size = 0, succ = 0;
Ashley Lai4a727422012-08-14 18:34:57 -05001680 u64 base;
Hon Ching \(Vicky\) Lob4ed0462015-10-07 20:11:53 -04001681 __be32 val;
Ashley Lai4a727422012-08-14 18:34:57 -05001682
1683 prom_debug("prom_instantiate_sml: start...\n");
1684
Hon Ching \(Vicky\) Lo2f82e982015-10-07 20:11:52 -04001685 ibmvtpm_node = call_prom("finddevice", 1, 1, ADDR("/vdevice/vtpm"));
Ashley Lai4a727422012-08-14 18:34:57 -05001686 prom_debug("ibmvtpm_node: %x\n", ibmvtpm_node);
1687 if (!PHANDLE_VALID(ibmvtpm_node))
1688 return;
1689
Hon Ching \(Vicky\) Lo2f82e982015-10-07 20:11:52 -04001690 ibmvtpm_inst = call_prom("open", 1, 1, ADDR("/vdevice/vtpm"));
Ashley Lai4a727422012-08-14 18:34:57 -05001691 if (!IHANDLE_VALID(ibmvtpm_inst)) {
1692 prom_printf("opening vtpm package failed (%x)\n", ibmvtpm_inst);
1693 return;
1694 }
1695
Hon Ching \(Vicky\) Lob4ed0462015-10-07 20:11:53 -04001696 if (prom_getprop(ibmvtpm_node, "ibm,sml-efi-reformat-supported",
1697 &val, sizeof(val)) != PROM_ERROR) {
1698 if (call_prom_ret("call-method", 2, 2, &succ,
1699 ADDR("reformat-sml-to-efi-alignment"),
1700 ibmvtpm_inst) != 0 || succ == 0) {
1701 prom_printf("Reformat SML to EFI alignment failed\n");
1702 return;
1703 }
Hon Ching \(Vicky\) Lob4ed0462015-10-07 20:11:53 -04001704
Hon Ching \(Vicky\) Lo9e5d4af2015-10-07 20:11:54 -04001705 if (call_prom_ret("call-method", 2, 2, &size,
1706 ADDR("sml-get-allocated-size"),
1707 ibmvtpm_inst) != 0 || size == 0) {
1708 prom_printf("SML get allocated size failed\n");
1709 return;
1710 }
1711 } else {
1712 if (call_prom_ret("call-method", 2, 2, &size,
1713 ADDR("sml-get-handover-size"),
1714 ibmvtpm_inst) != 0 || size == 0) {
1715 prom_printf("SML get handover size failed\n");
1716 return;
1717 }
Ashley Lai4a727422012-08-14 18:34:57 -05001718 }
1719
1720 base = alloc_down(size, PAGE_SIZE, 0);
1721 if (base == 0)
1722 prom_panic("Could not allocate memory for sml\n");
1723
1724 prom_printf("instantiating sml at 0x%x...", base);
1725
Hon Ching \(Vicky\) Lo9e5d4af2015-10-07 20:11:54 -04001726 memset((void *)base, 0, size);
1727
Ashley Lai4a727422012-08-14 18:34:57 -05001728 if (call_prom_ret("call-method", 4, 2, &entry,
1729 ADDR("sml-handover"),
1730 ibmvtpm_inst, size, base) != 0 || entry == 0) {
1731 prom_printf("SML handover failed\n");
1732 return;
1733 }
1734 prom_printf(" done\n");
1735
1736 reserve_mem(base, size);
1737
Hon Ching \(Vicky\) Lo2f82e982015-10-07 20:11:52 -04001738 prom_setprop(ibmvtpm_node, "/vdevice/vtpm", "linux,sml-base",
Ashley Lai4a727422012-08-14 18:34:57 -05001739 &base, sizeof(base));
Hon Ching \(Vicky\) Lo2f82e982015-10-07 20:11:52 -04001740 prom_setprop(ibmvtpm_node, "/vdevice/vtpm", "linux,sml-size",
Ashley Lai4a727422012-08-14 18:34:57 -05001741 &size, sizeof(size));
1742
1743 prom_debug("sml base = 0x%x\n", base);
1744 prom_debug("sml size = 0x%x\n", (long)size);
1745
1746 prom_debug("prom_instantiate_sml: end...\n");
1747}
1748
1749/*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001750 * Allocate room for and initialize TCE tables
1751 */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001752#ifdef __BIG_ENDIAN__
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001753static void __init prom_initialize_tce_table(void)
1754{
1755 phandle node;
1756 ihandle phb_node;
1757 char compatible[64], type[64], model[64];
Anton Blanchard5827d412012-11-26 17:40:03 +00001758 char *path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001759 u64 base, align;
1760 u32 minalign, minsize;
1761 u64 tce_entry, *tce_entryp;
1762 u64 local_alloc_top, local_alloc_bottom;
1763 u64 i;
1764
Anton Blanchard5827d412012-11-26 17:40:03 +00001765 if (prom_iommu_off)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001766 return;
1767
1768 prom_debug("starting prom_initialize_tce_table\n");
1769
1770 /* Cache current top of allocs so we reserve a single block */
Anton Blanchard5827d412012-11-26 17:40:03 +00001771 local_alloc_top = alloc_top_high;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001772 local_alloc_bottom = local_alloc_top;
1773
1774 /* Search all nodes looking for PHBs. */
1775 for (node = 0; prom_next_node(&node); ) {
1776 compatible[0] = 0;
1777 type[0] = 0;
1778 model[0] = 0;
1779 prom_getprop(node, "compatible",
1780 compatible, sizeof(compatible));
1781 prom_getprop(node, "device_type", type, sizeof(type));
1782 prom_getprop(node, "model", model, sizeof(model));
1783
Anton Blanchard5827d412012-11-26 17:40:03 +00001784 if ((type[0] == 0) || (strstr(type, "pci") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001785 continue;
1786
Linas Vepstase788ff12007-09-07 03:45:21 +10001787 /* Keep the old logic intact to avoid regression. */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001788 if (compatible[0] != 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +00001789 if ((strstr(compatible, "python") == NULL) &&
1790 (strstr(compatible, "Speedwagon") == NULL) &&
1791 (strstr(compatible, "Winnipeg") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001792 continue;
1793 } else if (model[0] != 0) {
Anton Blanchard5827d412012-11-26 17:40:03 +00001794 if ((strstr(model, "ython") == NULL) &&
1795 (strstr(model, "peedwagon") == NULL) &&
1796 (strstr(model, "innipeg") == NULL))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001797 continue;
1798 }
1799
1800 if (prom_getprop(node, "tce-table-minalign", &minalign,
1801 sizeof(minalign)) == PROM_ERROR)
1802 minalign = 0;
1803 if (prom_getprop(node, "tce-table-minsize", &minsize,
1804 sizeof(minsize)) == PROM_ERROR)
1805 minsize = 4UL << 20;
1806
1807 /*
1808 * Even though we read what OF wants, we just set the table
1809 * size to 4 MB. This is enough to map 2GB of PCI DMA space.
1810 * By doing this, we avoid the pitfalls of trying to DMA to
1811 * MMIO space and the DMA alias hole.
1812 *
1813 * On POWER4, firmware sets the TCE region by assuming
1814 * each TCE table is 8MB. Using this memory for anything
1815 * else will impact performance, so we always allocate 8MB.
1816 * Anton
1817 */
Michael Ellermand3dbeef2012-08-19 21:44:01 +00001818 if (pvr_version_is(PVR_POWER4) || pvr_version_is(PVR_POWER4p))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001819 minsize = 8UL << 20;
1820 else
1821 minsize = 4UL << 20;
1822
1823 /* Align to the greater of the align or size */
1824 align = max(minalign, minsize);
1825 base = alloc_down(minsize, align, 1);
1826 if (base == 0)
1827 prom_panic("ERROR, cannot find space for TCE table.\n");
1828 if (base < local_alloc_bottom)
1829 local_alloc_bottom = base;
1830
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001831 /* It seems OF doesn't null-terminate the path :-( */
Li Zefanaca71ef2007-11-05 13:21:56 +11001832 memset(path, 0, PROM_SCRATCH_SIZE);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001833 /* Call OF to setup the TCE hardware */
1834 if (call_prom("package-to-path", 3, 1, node,
1835 path, PROM_SCRATCH_SIZE-1) == PROM_ERROR) {
1836 prom_printf("package-to-path failed\n");
1837 }
1838
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001839 /* Save away the TCE table attributes for later use. */
1840 prom_setprop(node, path, "linux,tce-base", &base, sizeof(base));
1841 prom_setprop(node, path, "linux,tce-size", &minsize, sizeof(minsize));
1842
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001843 prom_debug("TCE table: %s\n", path);
1844 prom_debug("\tnode = 0x%x\n", node);
1845 prom_debug("\tbase = 0x%x\n", base);
1846 prom_debug("\tsize = 0x%x\n", minsize);
1847
1848 /* Initialize the table to have a one-to-one mapping
1849 * over the allocated size.
1850 */
Ingo Molnar2b931fb2009-01-06 13:56:52 +00001851 tce_entryp = (u64 *)base;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001852 for (i = 0; i < (minsize >> 3) ;tce_entryp++, i++) {
1853 tce_entry = (i << PAGE_SHIFT);
1854 tce_entry |= 0x3;
1855 *tce_entryp = tce_entry;
1856 }
1857
1858 prom_printf("opening PHB %s", path);
1859 phb_node = call_prom("open", 1, 1, path);
1860 if (phb_node == 0)
1861 prom_printf("... failed\n");
1862 else
1863 prom_printf("... done\n");
1864
1865 call_prom("call-method", 6, 0, ADDR("set-64-bit-addressing"),
1866 phb_node, -1, minsize,
1867 (u32) base, (u32) (base >> 32));
1868 call_prom("close", 1, 0, phb_node);
1869 }
1870
1871 reserve_mem(local_alloc_bottom, local_alloc_top - local_alloc_bottom);
1872
Michael Ellerman2babf5c2006-05-17 18:00:46 +10001873 /* These are only really needed if there is a memory limit in
1874 * effect, but we don't know so export them always. */
Anton Blanchard5827d412012-11-26 17:40:03 +00001875 prom_tce_alloc_start = local_alloc_bottom;
1876 prom_tce_alloc_end = local_alloc_top;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001877
1878 /* Flag the first invalid entry */
1879 prom_debug("ending prom_initialize_tce_table\n");
1880}
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001881#endif /* __BIG_ENDIAN__ */
1882#endif /* CONFIG_PPC64 */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001883
1884/*
1885 * With CHRP SMP we need to use the OF to start the other processors.
1886 * We can't wait until smp_boot_cpus (the OF is trashed by then)
1887 * so we have to put the processors into a holding pattern controlled
1888 * by the kernel (not OF) before we destroy the OF.
1889 *
1890 * This uses a chunk of low memory, puts some holding pattern
1891 * code there and sends the other processors off to there until
1892 * smp_boot_cpus tells them to do something. The holding pattern
1893 * checks that address until its cpu # is there, when it is that
1894 * cpu jumps to __secondary_start(). smp_boot_cpus() takes care
1895 * of setting those values.
1896 *
1897 * We also use physical address 0x4 here to tell when a cpu
1898 * is in its holding pattern code.
1899 *
1900 * -- Cort
1901 */
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001902/*
1903 * We want to reference the copy of __secondary_hold_* in the
1904 * 0 - 0x100 address range
1905 */
1906#define LOW_ADDR(x) (((unsigned long) &(x)) & 0xff)
1907
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001908static void __init prom_hold_cpus(void)
1909{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001910 unsigned long i;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001911 phandle node;
1912 char type[64];
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001913 unsigned long *spinloop
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001914 = (void *) LOW_ADDR(__secondary_hold_spinloop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001915 unsigned long *acknowledge
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001916 = (void *) LOW_ADDR(__secondary_hold_acknowledge);
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001917 unsigned long secondary_hold = LOW_ADDR(__secondary_hold);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001918
Benjamin Herrenschmidtdbe78b42013-09-25 14:02:50 +10001919 /*
1920 * On pseries, if RTAS supports "query-cpu-stopped-state",
1921 * we skip this stage, the CPUs will be started by the
1922 * kernel using RTAS.
1923 */
1924 if ((of_platform == PLATFORM_PSERIES ||
1925 of_platform == PLATFORM_PSERIES_LPAR) &&
1926 rtas_has_query_cpu_stopped) {
1927 prom_printf("prom_hold_cpus: skipped\n");
1928 return;
1929 }
1930
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001931 prom_debug("prom_hold_cpus: start...\n");
1932 prom_debug(" 1) spinloop = 0x%x\n", (unsigned long)spinloop);
1933 prom_debug(" 1) *spinloop = 0x%x\n", *spinloop);
1934 prom_debug(" 1) acknowledge = 0x%x\n",
1935 (unsigned long)acknowledge);
1936 prom_debug(" 1) *acknowledge = 0x%x\n", *acknowledge);
1937 prom_debug(" 1) secondary_hold = 0x%x\n", secondary_hold);
1938
1939 /* Set the common spinloop variable, so all of the secondary cpus
1940 * will block when they are awakened from their OF spinloop.
1941 * This must occur for both SMP and non SMP kernels, since OF will
1942 * be trashed when we move the kernel.
1943 */
1944 *spinloop = 0;
1945
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001946 /* look for cpus */
1947 for (node = 0; prom_next_node(&node); ) {
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001948 unsigned int cpu_no;
1949 __be32 reg;
1950
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001951 type[0] = 0;
1952 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00001953 if (strcmp(type, "cpu") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001954 continue;
1955
1956 /* Skip non-configured cpus. */
1957 if (prom_getprop(node, "status", type, sizeof(type)) > 0)
Anton Blanchard5827d412012-11-26 17:40:03 +00001958 if (strcmp(type, "okay") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001959 continue;
1960
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001961 reg = cpu_to_be32(-1); /* make sparse happy */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001962 prom_getprop(node, "reg", &reg, sizeof(reg));
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001963 cpu_no = be32_to_cpu(reg);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001964
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001965 prom_debug("cpu hw idx = %lu\n", cpu_no);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001966
1967 /* Init the acknowledge var which will be reset by
1968 * the secondary cpu when it awakens from its OF
1969 * spinloop.
1970 */
1971 *acknowledge = (unsigned long)-1;
1972
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001973 if (cpu_no != prom.cpu) {
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00001974 /* Primary Thread of non-boot cpu or any thread */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001975 prom_printf("starting cpu hw idx %lu... ", cpu_no);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001976 call_prom("start-cpu", 3, 0, node,
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001977 secondary_hold, cpu_no);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001978
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001979 for (i = 0; (i < 100000000) &&
1980 (*acknowledge == ((unsigned long)-1)); i++ )
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001981 mb();
1982
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001983 if (*acknowledge == cpu_no)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001984 prom_printf("done\n");
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001985 else
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001986 prom_printf("failed: %x\n", *acknowledge);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001987 }
1988#ifdef CONFIG_SMP
1989 else
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10001990 prom_printf("boot cpu hw idx %lu\n", cpu_no);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001991#endif /* CONFIG_SMP */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001992 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001993
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001994 prom_debug("prom_hold_cpus: end...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001995}
1996
1997
1998static void __init prom_init_client_services(unsigned long pp)
1999{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002000 /* Get a handle to the prom entry point before anything else */
Anton Blanchard5827d412012-11-26 17:40:03 +00002001 prom_entry = pp;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002002
2003 /* get a handle for the stdout device */
Anton Blanchard5827d412012-11-26 17:40:03 +00002004 prom.chosen = call_prom("finddevice", 1, 1, ADDR("/chosen"));
2005 if (!PHANDLE_VALID(prom.chosen))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002006 prom_panic("cannot find chosen"); /* msg won't be printed :( */
2007
2008 /* get device tree root */
Anton Blanchard5827d412012-11-26 17:40:03 +00002009 prom.root = call_prom("finddevice", 1, 1, ADDR("/"));
2010 if (!PHANDLE_VALID(prom.root))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002011 prom_panic("cannot find device tree root"); /* msg won't be printed :( */
Paul Mackerrasa575b802005-10-23 17:23:21 +10002012
Anton Blanchard5827d412012-11-26 17:40:03 +00002013 prom.mmumap = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002014}
2015
Paul Mackerrasa575b802005-10-23 17:23:21 +10002016#ifdef CONFIG_PPC32
2017/*
2018 * For really old powermacs, we need to map things we claim.
2019 * For that, we need the ihandle of the mmu.
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002020 * Also, on the longtrail, we need to work around other bugs.
Paul Mackerrasa575b802005-10-23 17:23:21 +10002021 */
2022static void __init prom_find_mmu(void)
2023{
Paul Mackerrasa575b802005-10-23 17:23:21 +10002024 phandle oprom;
2025 char version[64];
2026
2027 oprom = call_prom("finddevice", 1, 1, ADDR("/openprom"));
2028 if (!PHANDLE_VALID(oprom))
2029 return;
2030 if (prom_getprop(oprom, "model", version, sizeof(version)) <= 0)
2031 return;
2032 version[sizeof(version) - 1] = 0;
Paul Mackerrasa575b802005-10-23 17:23:21 +10002033 /* XXX might need to add other versions here */
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002034 if (strcmp(version, "Open Firmware, 1.0.5") == 0)
2035 of_workarounds = OF_WA_CLAIM;
2036 else if (strncmp(version, "FirmWorks,3.", 12) == 0) {
2037 of_workarounds = OF_WA_CLAIM | OF_WA_LONGTRAIL;
2038 call_prom("interpret", 1, 1, "dev /memory 0 to allow-reclaim");
2039 } else
Paul Mackerrasa575b802005-10-23 17:23:21 +10002040 return;
Anton Blanchard5827d412012-11-26 17:40:03 +00002041 prom.memory = call_prom("open", 1, 1, ADDR("/memory"));
2042 prom_getprop(prom.chosen, "mmu", &prom.mmumap,
2043 sizeof(prom.mmumap));
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002044 prom.mmumap = be32_to_cpu(prom.mmumap);
Anton Blanchard5827d412012-11-26 17:40:03 +00002045 if (!IHANDLE_VALID(prom.memory) || !IHANDLE_VALID(prom.mmumap))
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002046 of_workarounds &= ~OF_WA_CLAIM; /* hmmm */
Paul Mackerrasa575b802005-10-23 17:23:21 +10002047}
2048#else
2049#define prom_find_mmu()
2050#endif
2051
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002052static void __init prom_init_stdout(void)
2053{
Anton Blanchard5827d412012-11-26 17:40:03 +00002054 char *path = of_stdout_device;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002055 char type[16];
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002056 phandle stdout_node;
2057 __be32 val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002058
Anton Blanchard5827d412012-11-26 17:40:03 +00002059 if (prom_getprop(prom.chosen, "stdout", &val, sizeof(val)) <= 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002060 prom_panic("cannot find stdout");
2061
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002062 prom.stdout = be32_to_cpu(val);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002063
2064 /* Get the full OF pathname of the stdout device */
2065 memset(path, 0, 256);
Anton Blanchard5827d412012-11-26 17:40:03 +00002066 call_prom("instance-to-path", 3, 1, prom.stdout, path, 255);
Anton Blanchard5827d412012-11-26 17:40:03 +00002067 prom_printf("OF stdout device is: %s\n", of_stdout_device);
2068 prom_setprop(prom.chosen, "/chosen", "linux,stdout-path",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002069 path, strlen(path) + 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002070
Benjamin Herrenschmidt10348f52014-01-13 09:49:17 +11002071 /* instance-to-package fails on PA-Semi */
2072 stdout_node = call_prom("instance-to-package", 1, 1, prom.stdout);
2073 if (stdout_node != PROM_ERROR) {
2074 val = cpu_to_be32(stdout_node);
2075 prom_setprop(prom.chosen, "/chosen", "linux,stdout-package",
2076 &val, sizeof(val));
2077
2078 /* If it's a display, note it */
2079 memset(type, 0, sizeof(type));
2080 prom_getprop(stdout_node, "device_type", type, sizeof(type));
2081 if (strcmp(type, "display") == 0)
2082 prom_setprop(stdout_node, path, "linux,boot-display", NULL, 0);
2083 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002084}
2085
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002086static int __init prom_find_machine_type(void)
2087{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002088 char compat[256];
2089 int len, i = 0;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +11002090#ifdef CONFIG_PPC64
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002091 phandle rtas;
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002092 int x;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +11002093#endif
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002094
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002095 /* Look for a PowerMac or a Cell */
Anton Blanchard5827d412012-11-26 17:40:03 +00002096 len = prom_getprop(prom.root, "compatible",
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002097 compat, sizeof(compat)-1);
2098 if (len > 0) {
2099 compat[len] = 0;
2100 while (i < len) {
2101 char *p = &compat[i];
2102 int sl = strlen(p);
2103 if (sl == 0)
2104 break;
Anton Blanchard5827d412012-11-26 17:40:03 +00002105 if (strstr(p, "Power Macintosh") ||
2106 strstr(p, "MacRISC"))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002107 return PLATFORM_POWERMAC;
Arnd Bergmann133dda12006-06-07 12:04:18 +10002108#ifdef CONFIG_PPC64
2109 /* We must make sure we don't detect the IBM Cell
2110 * blades as pSeries due to some firmware issues,
2111 * so we do it here.
2112 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002113 if (strstr(p, "IBM,CBEA") ||
2114 strstr(p, "IBM,CPBW-1.0"))
Arnd Bergmann133dda12006-06-07 12:04:18 +10002115 return PLATFORM_GENERIC;
2116#endif /* CONFIG_PPC64 */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002117 i += sl + 1;
2118 }
2119 }
2120#ifdef CONFIG_PPC64
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002121 /* Try to detect OPAL */
2122 if (PHANDLE_VALID(call_prom("finddevice", 1, 1, ADDR("/ibm,opal"))))
2123 return PLATFORM_OPAL;
2124
2125 /* Try to figure out if it's an IBM pSeries or any other
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002126 * PAPR compliant platform. We assume it is if :
2127 * - /device_type is "chrp" (please, do NOT use that for future
2128 * non-IBM designs !
2129 * - it has /rtas
2130 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002131 len = prom_getprop(prom.root, "device_type",
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002132 compat, sizeof(compat)-1);
2133 if (len <= 0)
2134 return PLATFORM_GENERIC;
Anton Blanchard5827d412012-11-26 17:40:03 +00002135 if (strcmp(compat, "chrp"))
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002136 return PLATFORM_GENERIC;
2137
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002138 /* Default to pSeries. We need to know if we are running LPAR */
2139 rtas = call_prom("finddevice", 1, 1, ADDR("/rtas"));
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002140 if (!PHANDLE_VALID(rtas))
2141 return PLATFORM_GENERIC;
2142 x = prom_getproplen(rtas, "ibm,hypertas-functions");
2143 if (x != PROM_ERROR) {
Anton Blanchard4da727a2009-03-31 20:06:14 +00002144 prom_debug("Hypertas detected, assuming LPAR !\n");
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002145 return PLATFORM_PSERIES_LPAR;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002146 }
2147 return PLATFORM_PSERIES;
2148#else
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002149 return PLATFORM_GENERIC;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002150#endif
2151}
2152
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002153static int __init prom_set_color(ihandle ih, int i, int r, int g, int b)
2154{
2155 return call_prom("call-method", 6, 1, ADDR("color!"), ih, i, b, g, r);
2156}
2157
2158/*
2159 * If we have a display that we don't know how to drive,
2160 * we will want to try to execute OF's open method for it
2161 * later. However, OF will probably fall over if we do that
2162 * we've taken over the MMU.
2163 * So we check whether we will need to open the display,
2164 * and if so, open it now.
2165 */
2166static void __init prom_check_displays(void)
2167{
2168 char type[16], *path;
2169 phandle node;
2170 ihandle ih;
2171 int i;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002172
2173 static unsigned char default_colors[] = {
2174 0x00, 0x00, 0x00,
2175 0x00, 0x00, 0xaa,
2176 0x00, 0xaa, 0x00,
2177 0x00, 0xaa, 0xaa,
2178 0xaa, 0x00, 0x00,
2179 0xaa, 0x00, 0xaa,
2180 0xaa, 0xaa, 0x00,
2181 0xaa, 0xaa, 0xaa,
2182 0x55, 0x55, 0x55,
2183 0x55, 0x55, 0xff,
2184 0x55, 0xff, 0x55,
2185 0x55, 0xff, 0xff,
2186 0xff, 0x55, 0x55,
2187 0xff, 0x55, 0xff,
2188 0xff, 0xff, 0x55,
2189 0xff, 0xff, 0xff
2190 };
2191 const unsigned char *clut;
2192
Anton Blanchard4da727a2009-03-31 20:06:14 +00002193 prom_debug("Looking for displays\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002194 for (node = 0; prom_next_node(&node); ) {
2195 memset(type, 0, sizeof(type));
2196 prom_getprop(node, "device_type", type, sizeof(type));
Anton Blanchard5827d412012-11-26 17:40:03 +00002197 if (strcmp(type, "display") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002198 continue;
2199
2200 /* It seems OF doesn't null-terminate the path :-( */
Anton Blanchard5827d412012-11-26 17:40:03 +00002201 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002202 memset(path, 0, PROM_SCRATCH_SIZE);
2203
2204 /*
2205 * leave some room at the end of the path for appending extra
2206 * arguments
2207 */
2208 if (call_prom("package-to-path", 3, 1, node, path,
2209 PROM_SCRATCH_SIZE-10) == PROM_ERROR)
2210 continue;
Anton Blanchard1f8737a2009-03-31 20:06:15 +00002211 prom_printf("found display : %s, opening... ", path);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002212
2213 ih = call_prom("open", 1, 1, path);
2214 if (ih == 0) {
2215 prom_printf("failed\n");
2216 continue;
2217 }
2218
2219 /* Success */
2220 prom_printf("done\n");
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002221 prom_setprop(node, path, "linux,opened", NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002222
2223 /* Setup a usable color table when the appropriate
2224 * method is available. Should update this to set-colors */
Anton Blanchard5827d412012-11-26 17:40:03 +00002225 clut = default_colors;
Benjamin Herrenschmidt3f536382011-12-14 13:55:11 +00002226 for (i = 0; i < 16; i++, clut += 3)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002227 if (prom_set_color(ih, i, clut[0], clut[1],
2228 clut[2]) != 0)
2229 break;
2230
2231#ifdef CONFIG_LOGO_LINUX_CLUT224
Anton Blanchard5827d412012-11-26 17:40:03 +00002232 clut = PTRRELOC(logo_linux_clut224.clut);
2233 for (i = 0; i < logo_linux_clut224.clutsize; i++, clut += 3)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002234 if (prom_set_color(ih, i + 32, clut[0], clut[1],
2235 clut[2]) != 0)
2236 break;
2237#endif /* CONFIG_LOGO_LINUX_CLUT224 */
Benjamin Herrenschmidt7191b612013-07-25 12:12:32 +10002238
2239#ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX
2240 if (prom_getprop(node, "linux,boot-display", NULL, 0) !=
2241 PROM_ERROR) {
2242 u32 width, height, pitch, addr;
2243
2244 prom_printf("Setting btext !\n");
2245 prom_getprop(node, "width", &width, 4);
2246 prom_getprop(node, "height", &height, 4);
2247 prom_getprop(node, "linebytes", &pitch, 4);
2248 prom_getprop(node, "address", &addr, 4);
2249 prom_printf("W=%d H=%d LB=%d addr=0x%x\n",
2250 width, height, pitch, addr);
2251 btext_setup_display(width, height, 8, pitch, addr);
2252 }
2253#endif /* CONFIG_PPC_EARLY_DEBUG_BOOTX */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002254 }
2255}
2256
2257
2258/* Return (relocated) pointer to this much memory: moves initrd if reqd. */
2259static void __init *make_room(unsigned long *mem_start, unsigned long *mem_end,
2260 unsigned long needed, unsigned long align)
2261{
2262 void *ret;
2263
2264 *mem_start = _ALIGN(*mem_start, align);
2265 while ((*mem_start + needed) > *mem_end) {
2266 unsigned long room, chunk;
2267
2268 prom_debug("Chunk exhausted, claiming more at %x...\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002269 alloc_bottom);
2270 room = alloc_top - alloc_bottom;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002271 if (room > DEVTREE_CHUNK_SIZE)
2272 room = DEVTREE_CHUNK_SIZE;
2273 if (room < PAGE_SIZE)
Anton Blanchardfbafd722011-07-25 20:47:51 +00002274 prom_panic("No memory for flatten_device_tree "
2275 "(no room)\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002276 chunk = alloc_up(room, 0);
2277 if (chunk == 0)
Anton Blanchardfbafd722011-07-25 20:47:51 +00002278 prom_panic("No memory for flatten_device_tree "
2279 "(claim failed)\n");
Anton Blanchard966728d2011-07-25 20:47:07 +00002280 *mem_end = chunk + room;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002281 }
2282
2283 ret = (void *)*mem_start;
2284 *mem_start += needed;
2285
2286 return ret;
2287}
2288
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002289#define dt_push_token(token, mem_start, mem_end) do { \
2290 void *room = make_room(mem_start, mem_end, 4, 4); \
2291 *(__be32 *)room = cpu_to_be32(token); \
2292 } while(0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002293
2294static unsigned long __init dt_find_string(char *str)
2295{
2296 char *s, *os;
2297
Anton Blanchard5827d412012-11-26 17:40:03 +00002298 s = os = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002299 s += 4;
Anton Blanchard5827d412012-11-26 17:40:03 +00002300 while (s < (char *)dt_string_end) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002301 if (strcmp(s, str) == 0)
2302 return s - os;
2303 s += strlen(s) + 1;
2304 }
2305 return 0;
2306}
2307
2308/*
2309 * The Open Firmware 1275 specification states properties must be 31 bytes or
2310 * less, however not all firmwares obey this. Make it 64 bytes to be safe.
2311 */
2312#define MAX_PROPERTY_NAME 64
2313
2314static void __init scan_dt_build_strings(phandle node,
2315 unsigned long *mem_start,
2316 unsigned long *mem_end)
2317{
2318 char *prev_name, *namep, *sstart;
2319 unsigned long soff;
2320 phandle child;
2321
Anton Blanchard5827d412012-11-26 17:40:03 +00002322 sstart = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002323
2324 /* get and store all property names */
Anton Blanchard5827d412012-11-26 17:40:03 +00002325 prev_name = "";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002326 for (;;) {
2327 /* 64 is max len of name including nul. */
2328 namep = make_room(mem_start, mem_end, MAX_PROPERTY_NAME, 1);
2329 if (call_prom("nextprop", 3, 1, node, prev_name, namep) != 1) {
2330 /* No more nodes: unwind alloc */
2331 *mem_start = (unsigned long)namep;
2332 break;
2333 }
2334
2335 /* skip "name" */
Anton Blanchard5827d412012-11-26 17:40:03 +00002336 if (strcmp(namep, "name") == 0) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002337 *mem_start = (unsigned long)namep;
Anton Blanchard5827d412012-11-26 17:40:03 +00002338 prev_name = "name";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002339 continue;
2340 }
2341 /* get/create string entry */
2342 soff = dt_find_string(namep);
2343 if (soff != 0) {
2344 *mem_start = (unsigned long)namep;
2345 namep = sstart + soff;
2346 } else {
2347 /* Trim off some if we can */
2348 *mem_start = (unsigned long)namep + strlen(namep) + 1;
Anton Blanchard5827d412012-11-26 17:40:03 +00002349 dt_string_end = *mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002350 }
2351 prev_name = namep;
2352 }
2353
2354 /* do all our children */
2355 child = call_prom("child", 1, 1, node);
2356 while (child != 0) {
2357 scan_dt_build_strings(child, mem_start, mem_end);
2358 child = call_prom("peer", 1, 1, child);
2359 }
2360}
2361
2362static void __init scan_dt_build_struct(phandle node, unsigned long *mem_start,
2363 unsigned long *mem_end)
2364{
2365 phandle child;
2366 char *namep, *prev_name, *sstart, *p, *ep, *lp, *path;
2367 unsigned long soff;
2368 unsigned char *valp;
2369 static char pname[MAX_PROPERTY_NAME];
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002370 int l, room, has_phandle = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002371
2372 dt_push_token(OF_DT_BEGIN_NODE, mem_start, mem_end);
2373
2374 /* get the node's full name */
2375 namep = (char *)*mem_start;
Paul Mackerrasc49888202005-10-26 21:52:53 +10002376 room = *mem_end - *mem_start;
2377 if (room > 255)
2378 room = 255;
2379 l = call_prom("package-to-path", 3, 1, node, namep, room);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002380 if (l >= 0) {
2381 /* Didn't fit? Get more room. */
Paul Mackerrasc49888202005-10-26 21:52:53 +10002382 if (l >= room) {
2383 if (l >= *mem_end - *mem_start)
2384 namep = make_room(mem_start, mem_end, l+1, 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002385 call_prom("package-to-path", 3, 1, node, namep, l);
2386 }
2387 namep[l] = '\0';
2388
2389 /* Fixup an Apple bug where they have bogus \0 chars in the
Paul Mackerrasa575b802005-10-23 17:23:21 +10002390 * middle of the path in some properties, and extract
2391 * the unit name (everything after the last '/').
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002392 */
Paul Mackerrasa575b802005-10-23 17:23:21 +10002393 for (lp = p = namep, ep = namep + l; p < ep; p++) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002394 if (*p == '/')
Paul Mackerrasa575b802005-10-23 17:23:21 +10002395 lp = namep;
2396 else if (*p != 0)
2397 *lp++ = *p;
2398 }
2399 *lp = 0;
2400 *mem_start = _ALIGN((unsigned long)lp + 1, 4);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002401 }
2402
2403 /* get it again for debugging */
Anton Blanchard5827d412012-11-26 17:40:03 +00002404 path = prom_scratch;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002405 memset(path, 0, PROM_SCRATCH_SIZE);
2406 call_prom("package-to-path", 3, 1, node, path, PROM_SCRATCH_SIZE-1);
2407
2408 /* get and store all properties */
Anton Blanchard5827d412012-11-26 17:40:03 +00002409 prev_name = "";
2410 sstart = (char *)dt_string_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002411 for (;;) {
2412 if (call_prom("nextprop", 3, 1, node, prev_name,
Anton Blanchard5827d412012-11-26 17:40:03 +00002413 pname) != 1)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002414 break;
2415
2416 /* skip "name" */
Anton Blanchard5827d412012-11-26 17:40:03 +00002417 if (strcmp(pname, "name") == 0) {
2418 prev_name = "name";
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002419 continue;
2420 }
2421
2422 /* find string offset */
Anton Blanchard5827d412012-11-26 17:40:03 +00002423 soff = dt_find_string(pname);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002424 if (soff == 0) {
2425 prom_printf("WARNING: Can't find string index for"
Anton Blanchard5827d412012-11-26 17:40:03 +00002426 " <%s>, node %s\n", pname, path);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002427 break;
2428 }
2429 prev_name = sstart + soff;
2430
2431 /* get length */
Anton Blanchard5827d412012-11-26 17:40:03 +00002432 l = call_prom("getproplen", 2, 1, node, pname);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002433
2434 /* sanity checks */
2435 if (l == PROM_ERROR)
2436 continue;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002437
2438 /* push property head */
2439 dt_push_token(OF_DT_PROP, mem_start, mem_end);
2440 dt_push_token(l, mem_start, mem_end);
2441 dt_push_token(soff, mem_start, mem_end);
2442
2443 /* push property content */
2444 valp = make_room(mem_start, mem_end, l, 4);
Anton Blanchard5827d412012-11-26 17:40:03 +00002445 call_prom("getprop", 4, 1, node, pname, valp, l);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002446 *mem_start = _ALIGN(*mem_start, 4);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002447
Anton Blanchard5827d412012-11-26 17:40:03 +00002448 if (!strcmp(pname, "phandle"))
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002449 has_phandle = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002450 }
2451
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002452 /* Add a "linux,phandle" property if no "phandle" property already
2453 * existed (can happen with OPAL)
2454 */
2455 if (!has_phandle) {
Anton Blanchard5827d412012-11-26 17:40:03 +00002456 soff = dt_find_string("linux,phandle");
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002457 if (soff == 0)
2458 prom_printf("WARNING: Can't find string index for"
2459 " <linux-phandle> node %s\n", path);
2460 else {
2461 dt_push_token(OF_DT_PROP, mem_start, mem_end);
2462 dt_push_token(4, mem_start, mem_end);
2463 dt_push_token(soff, mem_start, mem_end);
2464 valp = make_room(mem_start, mem_end, 4, 4);
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002465 *(__be32 *)valp = cpu_to_be32(node);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00002466 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002467 }
2468
2469 /* do all our children */
2470 child = call_prom("child", 1, 1, node);
2471 while (child != 0) {
2472 scan_dt_build_struct(child, mem_start, mem_end);
2473 child = call_prom("peer", 1, 1, child);
2474 }
2475
2476 dt_push_token(OF_DT_END_NODE, mem_start, mem_end);
2477}
2478
2479static void __init flatten_device_tree(void)
2480{
2481 phandle root;
2482 unsigned long mem_start, mem_end, room;
2483 struct boot_param_header *hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002484 char *namep;
2485 u64 *rsvmap;
2486
2487 /*
2488 * Check how much room we have between alloc top & bottom (+/- a
Anton Blanchardfbafd722011-07-25 20:47:51 +00002489 * few pages), crop to 1MB, as this is our "chunk" size
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002490 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002491 room = alloc_top - alloc_bottom - 0x4000;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002492 if (room > DEVTREE_CHUNK_SIZE)
2493 room = DEVTREE_CHUNK_SIZE;
Anton Blanchard5827d412012-11-26 17:40:03 +00002494 prom_debug("starting device tree allocs at %x\n", alloc_bottom);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002495
2496 /* Now try to claim that */
2497 mem_start = (unsigned long)alloc_up(room, PAGE_SIZE);
2498 if (mem_start == 0)
2499 prom_panic("Can't allocate initial device-tree chunk\n");
Anton Blanchard966728d2011-07-25 20:47:07 +00002500 mem_end = mem_start + room;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002501
2502 /* Get root of tree */
2503 root = call_prom("peer", 1, 1, (phandle)0);
2504 if (root == (phandle)0)
2505 prom_panic ("couldn't get device tree root\n");
2506
2507 /* Build header and make room for mem rsv map */
2508 mem_start = _ALIGN(mem_start, 4);
2509 hdr = make_room(&mem_start, &mem_end,
2510 sizeof(struct boot_param_header), 4);
Anton Blanchard5827d412012-11-26 17:40:03 +00002511 dt_header_start = (unsigned long)hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002512 rsvmap = make_room(&mem_start, &mem_end, sizeof(mem_reserve_map), 8);
2513
2514 /* Start of strings */
2515 mem_start = PAGE_ALIGN(mem_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002516 dt_string_start = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002517 mem_start += 4; /* hole */
2518
2519 /* Add "linux,phandle" in there, we'll need it */
2520 namep = make_room(&mem_start, &mem_end, 16, 1);
Anton Blanchard5827d412012-11-26 17:40:03 +00002521 strcpy(namep, "linux,phandle");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002522 mem_start = (unsigned long)namep + strlen(namep) + 1;
2523
2524 /* Build string array */
2525 prom_printf("Building dt strings...\n");
2526 scan_dt_build_strings(root, &mem_start, &mem_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002527 dt_string_end = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002528
2529 /* Build structure */
2530 mem_start = PAGE_ALIGN(mem_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00002531 dt_struct_start = mem_start;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002532 prom_printf("Building dt structure...\n");
2533 scan_dt_build_struct(root, &mem_start, &mem_end);
2534 dt_push_token(OF_DT_END, &mem_start, &mem_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00002535 dt_struct_end = PAGE_ALIGN(mem_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002536
2537 /* Finish header */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002538 hdr->boot_cpuid_phys = cpu_to_be32(prom.cpu);
2539 hdr->magic = cpu_to_be32(OF_DT_HEADER);
2540 hdr->totalsize = cpu_to_be32(dt_struct_end - dt_header_start);
2541 hdr->off_dt_struct = cpu_to_be32(dt_struct_start - dt_header_start);
2542 hdr->off_dt_strings = cpu_to_be32(dt_string_start - dt_header_start);
2543 hdr->dt_strings_size = cpu_to_be32(dt_string_end - dt_string_start);
2544 hdr->off_mem_rsvmap = cpu_to_be32(((unsigned long)rsvmap) - dt_header_start);
2545 hdr->version = cpu_to_be32(OF_DT_VERSION);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002546 /* Version 16 is not backward compatible */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002547 hdr->last_comp_version = cpu_to_be32(0x10);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002548
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -05002549 /* Copy the reserve map in */
Anton Blanchard5827d412012-11-26 17:40:03 +00002550 memcpy(rsvmap, mem_reserve_map, sizeof(mem_reserve_map));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002551
2552#ifdef DEBUG_PROM
2553 {
2554 int i;
2555 prom_printf("reserved memory map:\n");
Anton Blanchard5827d412012-11-26 17:40:03 +00002556 for (i = 0; i < mem_reserve_cnt; i++)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002557 prom_printf(" %x - %x\n",
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002558 be64_to_cpu(mem_reserve_map[i].base),
2559 be64_to_cpu(mem_reserve_map[i].size));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002560 }
2561#endif
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -05002562 /* Bump mem_reserve_cnt to cause further reservations to fail
2563 * since it's too late.
2564 */
Anton Blanchard5827d412012-11-26 17:40:03 +00002565 mem_reserve_cnt = MEM_RESERVE_MAP_SIZE;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002566
2567 prom_printf("Device tree strings 0x%x -> 0x%x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002568 dt_string_start, dt_string_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002569 prom_printf("Device tree struct 0x%x -> 0x%x\n",
Anton Blanchard5827d412012-11-26 17:40:03 +00002570 dt_struct_start, dt_struct_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002571}
2572
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002573#ifdef CONFIG_PPC_MAPLE
2574/* PIBS Version 1.05.0000 04/26/2005 has an incorrect /ht/isa/ranges property.
2575 * The values are bad, and it doesn't even have the right number of cells. */
2576static void __init fixup_device_tree_maple(void)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002577{
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002578 phandle isa;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002579 u32 rloc = 0x01002000; /* IO space; PCI device = 4 */
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002580 u32 isa_ranges[6];
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002581 char *name;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002582
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002583 name = "/ht@0/isa@4";
2584 isa = call_prom("finddevice", 1, 1, ADDR(name));
2585 if (!PHANDLE_VALID(isa)) {
2586 name = "/ht@0/isa@6";
2587 isa = call_prom("finddevice", 1, 1, ADDR(name));
2588 rloc = 0x01003000; /* IO space; PCI device = 6 */
2589 }
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002590 if (!PHANDLE_VALID(isa))
2591 return;
2592
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002593 if (prom_getproplen(isa, "ranges") != 12)
2594 return;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002595 if (prom_getprop(isa, "ranges", isa_ranges, sizeof(isa_ranges))
2596 == PROM_ERROR)
2597 return;
2598
2599 if (isa_ranges[0] != 0x1 ||
2600 isa_ranges[1] != 0xf4000000 ||
2601 isa_ranges[2] != 0x00010000)
2602 return;
2603
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002604 prom_printf("Fixing up bogus ISA range on Maple/Apache...\n");
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002605
2606 isa_ranges[0] = 0x1;
2607 isa_ranges[1] = 0x0;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002608 isa_ranges[2] = rloc;
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002609 isa_ranges[3] = 0x0;
2610 isa_ranges[4] = 0x0;
2611 isa_ranges[5] = 0x00010000;
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +10002612 prom_setprop(isa, name, "ranges",
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002613 isa_ranges, sizeof(isa_ranges));
2614}
Harry Ciao8f101a052009-06-17 16:28:00 -07002615
2616#define CPC925_MC_START 0xf8000000
2617#define CPC925_MC_LENGTH 0x1000000
2618/* The values for memory-controller don't have right number of cells */
2619static void __init fixup_device_tree_maple_memory_controller(void)
2620{
2621 phandle mc;
2622 u32 mc_reg[4];
2623 char *name = "/hostbridge@f8000000";
Harry Ciao8f101a052009-06-17 16:28:00 -07002624 u32 ac, sc;
2625
2626 mc = call_prom("finddevice", 1, 1, ADDR(name));
2627 if (!PHANDLE_VALID(mc))
2628 return;
2629
2630 if (prom_getproplen(mc, "reg") != 8)
2631 return;
2632
Anton Blanchard5827d412012-11-26 17:40:03 +00002633 prom_getprop(prom.root, "#address-cells", &ac, sizeof(ac));
2634 prom_getprop(prom.root, "#size-cells", &sc, sizeof(sc));
Harry Ciao8f101a052009-06-17 16:28:00 -07002635 if ((ac != 2) || (sc != 2))
2636 return;
2637
2638 if (prom_getprop(mc, "reg", mc_reg, sizeof(mc_reg)) == PROM_ERROR)
2639 return;
2640
2641 if (mc_reg[0] != CPC925_MC_START || mc_reg[1] != CPC925_MC_LENGTH)
2642 return;
2643
2644 prom_printf("Fixing up bogus hostbridge on Maple...\n");
2645
2646 mc_reg[0] = 0x0;
2647 mc_reg[1] = CPC925_MC_START;
2648 mc_reg[2] = 0x0;
2649 mc_reg[3] = CPC925_MC_LENGTH;
2650 prom_setprop(mc, name, "reg", mc_reg, sizeof(mc_reg));
2651}
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002652#else
2653#define fixup_device_tree_maple()
Harry Ciao8f101a052009-06-17 16:28:00 -07002654#define fixup_device_tree_maple_memory_controller()
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002655#endif
2656
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002657#ifdef CONFIG_PPC_CHRP
Olaf Heringe4805922007-04-04 18:20:04 +02002658/*
2659 * Pegasos and BriQ lacks the "ranges" property in the isa node
2660 * Pegasos needs decimal IRQ 14/15, not hexadecimal
Olaf Hering556ecf92007-08-18 04:27:17 +10002661 * Pegasos has the IDE configured in legacy mode, but advertised as native
Olaf Heringe4805922007-04-04 18:20:04 +02002662 */
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002663static void __init fixup_device_tree_chrp(void)
2664{
Olaf Heringe4805922007-04-04 18:20:04 +02002665 phandle ph;
2666 u32 prop[6];
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002667 u32 rloc = 0x01006000; /* IO space; PCI device = 12 */
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002668 char *name;
2669 int rc;
2670
2671 name = "/pci@80000000/isa@c";
Olaf Heringe4805922007-04-04 18:20:04 +02002672 ph = call_prom("finddevice", 1, 1, ADDR(name));
2673 if (!PHANDLE_VALID(ph)) {
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002674 name = "/pci@ff500000/isa@6";
Olaf Heringe4805922007-04-04 18:20:04 +02002675 ph = call_prom("finddevice", 1, 1, ADDR(name));
Benjamin Herrenschmidt26c50322006-07-04 14:16:28 +10002676 rloc = 0x01003000; /* IO space; PCI device = 6 */
2677 }
Olaf Heringe4805922007-04-04 18:20:04 +02002678 if (PHANDLE_VALID(ph)) {
2679 rc = prom_getproplen(ph, "ranges");
2680 if (rc == 0 || rc == PROM_ERROR) {
2681 prom_printf("Fixing up missing ISA range on Pegasos...\n");
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002682
Olaf Heringe4805922007-04-04 18:20:04 +02002683 prop[0] = 0x1;
2684 prop[1] = 0x0;
2685 prop[2] = rloc;
2686 prop[3] = 0x0;
2687 prop[4] = 0x0;
2688 prop[5] = 0x00010000;
2689 prom_setprop(ph, name, "ranges", prop, sizeof(prop));
2690 }
2691 }
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002692
Olaf Heringe4805922007-04-04 18:20:04 +02002693 name = "/pci@80000000/ide@C,1";
2694 ph = call_prom("finddevice", 1, 1, ADDR(name));
2695 if (PHANDLE_VALID(ph)) {
2696 prom_printf("Fixing up IDE interrupt on Pegasos...\n");
2697 prop[0] = 14;
2698 prop[1] = 0x0;
Olaf Hering556ecf92007-08-18 04:27:17 +10002699 prom_setprop(ph, name, "interrupts", prop, 2*sizeof(u32));
2700 prom_printf("Fixing up IDE class-code on Pegasos...\n");
2701 rc = prom_getprop(ph, "class-code", prop, sizeof(u32));
2702 if (rc == sizeof(u32)) {
2703 prop[0] &= ~0x5;
2704 prom_setprop(ph, name, "class-code", prop, sizeof(u32));
2705 }
Olaf Heringe4805922007-04-04 18:20:04 +02002706 }
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002707}
2708#else
2709#define fixup_device_tree_chrp()
2710#endif
2711
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002712#if defined(CONFIG_PPC64) && defined(CONFIG_PPC_PMAC)
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002713static void __init fixup_device_tree_pmac(void)
2714{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002715 phandle u3, i2c, mpic;
2716 u32 u3_rev;
2717 u32 interrupts[2];
2718 u32 parent;
2719
2720 /* Some G5s have a missing interrupt definition, fix it up here */
2721 u3 = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000"));
2722 if (!PHANDLE_VALID(u3))
2723 return;
2724 i2c = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/i2c@f8001000"));
2725 if (!PHANDLE_VALID(i2c))
2726 return;
2727 mpic = call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/mpic@f8040000"));
2728 if (!PHANDLE_VALID(mpic))
2729 return;
2730
2731 /* check if proper rev of u3 */
2732 if (prom_getprop(u3, "device-rev", &u3_rev, sizeof(u3_rev))
2733 == PROM_ERROR)
2734 return;
Benjamin Herrenschmidt7d496972005-11-07 14:36:21 +11002735 if (u3_rev < 0x35 || u3_rev > 0x39)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002736 return;
2737 /* does it need fixup ? */
2738 if (prom_getproplen(i2c, "interrupts") > 0)
2739 return;
2740
2741 prom_printf("fixing up bogus interrupts for u3 i2c...\n");
2742
2743 /* interrupt on this revision of u3 is number 0 and level */
2744 interrupts[0] = 0;
2745 interrupts[1] = 1;
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002746 prom_setprop(i2c, "/u3@0,f8000000/i2c@f8001000", "interrupts",
2747 &interrupts, sizeof(interrupts));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002748 parent = (u32)mpic;
Paul Mackerrasa23414b2005-11-10 12:00:55 +11002749 prom_setprop(i2c, "/u3@0,f8000000/i2c@f8001000", "interrupt-parent",
2750 &parent, sizeof(parent));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002751}
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002752#else
2753#define fixup_device_tree_pmac()
2754#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002755
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002756#ifdef CONFIG_PPC_EFIKA
Grant Likely94d2dde2008-01-24 22:25:32 -07002757/*
2758 * The MPC5200 FEC driver requires an phy-handle property to tell it how
2759 * to talk to the phy. If the phy-handle property is missing, then this
2760 * function is called to add the appropriate nodes and link it to the
2761 * ethernet node.
2762 */
2763static void __init fixup_device_tree_efika_add_phy(void)
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002764{
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002765 u32 node;
2766 char prop[64];
Grant Likely94d2dde2008-01-24 22:25:32 -07002767 int rv;
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002768
Grant Likely94d2dde2008-01-24 22:25:32 -07002769 /* Check if /builtin/ethernet exists - bail if it doesn't */
2770 node = call_prom("finddevice", 1, 1, ADDR("/builtin/ethernet"));
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002771 if (!PHANDLE_VALID(node))
2772 return;
2773
Grant Likely94d2dde2008-01-24 22:25:32 -07002774 /* Check if the phy-handle property exists - bail if it does */
2775 rv = prom_getprop(node, "phy-handle", prop, sizeof(prop));
2776 if (!rv)
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002777 return;
2778
Grant Likely94d2dde2008-01-24 22:25:32 -07002779 /*
2780 * At this point the ethernet device doesn't have a phy described.
2781 * Now we need to add the missing phy node and linkage
2782 */
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002783
Grant Likely94d2dde2008-01-24 22:25:32 -07002784 /* Check for an MDIO bus node - if missing then create one */
Olaf Hering6f4347c2008-01-10 01:06:08 +11002785 node = call_prom("finddevice", 1, 1, ADDR("/builtin/mdio"));
2786 if (!PHANDLE_VALID(node)) {
2787 prom_printf("Adding Ethernet MDIO node\n");
2788 call_prom("interpret", 1, 1,
2789 " s\" /builtin\" find-device"
2790 " new-device"
2791 " 1 encode-int s\" #address-cells\" property"
2792 " 0 encode-int s\" #size-cells\" property"
Grant Likely94d2dde2008-01-24 22:25:32 -07002793 " s\" mdio\" device-name"
2794 " s\" fsl,mpc5200b-mdio\" encode-string"
Olaf Hering6f4347c2008-01-10 01:06:08 +11002795 " s\" compatible\" property"
2796 " 0xf0003000 0x400 reg"
2797 " 0x2 encode-int"
2798 " 0x5 encode-int encode+"
2799 " 0x3 encode-int encode+"
2800 " s\" interrupts\" property"
2801 " finish-device");
2802 };
2803
Grant Likely94d2dde2008-01-24 22:25:32 -07002804 /* Check for a PHY device node - if missing then create one and
2805 * give it's phandle to the ethernet node */
2806 node = call_prom("finddevice", 1, 1,
2807 ADDR("/builtin/mdio/ethernet-phy"));
Olaf Hering6f4347c2008-01-10 01:06:08 +11002808 if (!PHANDLE_VALID(node)) {
2809 prom_printf("Adding Ethernet PHY node\n");
2810 call_prom("interpret", 1, 1,
2811 " s\" /builtin/mdio\" find-device"
2812 " new-device"
2813 " s\" ethernet-phy\" device-name"
2814 " 0x10 encode-int s\" reg\" property"
2815 " my-self"
2816 " ihandle>phandle"
2817 " finish-device"
2818 " s\" /builtin/ethernet\" find-device"
2819 " encode-int"
2820 " s\" phy-handle\" property"
2821 " device-end");
2822 }
Grant Likely94d2dde2008-01-24 22:25:32 -07002823}
Olaf Hering6f4347c2008-01-10 01:06:08 +11002824
Grant Likely94d2dde2008-01-24 22:25:32 -07002825static void __init fixup_device_tree_efika(void)
2826{
2827 int sound_irq[3] = { 2, 2, 0 };
2828 int bcomm_irq[3*16] = { 3,0,0, 3,1,0, 3,2,0, 3,3,0,
2829 3,4,0, 3,5,0, 3,6,0, 3,7,0,
2830 3,8,0, 3,9,0, 3,10,0, 3,11,0,
2831 3,12,0, 3,13,0, 3,14,0, 3,15,0 };
2832 u32 node;
2833 char prop[64];
2834 int rv, len;
2835
2836 /* Check if we're really running on a EFIKA */
2837 node = call_prom("finddevice", 1, 1, ADDR("/"));
2838 if (!PHANDLE_VALID(node))
2839 return;
2840
2841 rv = prom_getprop(node, "model", prop, sizeof(prop));
2842 if (rv == PROM_ERROR)
2843 return;
2844 if (strcmp(prop, "EFIKA5K2"))
2845 return;
2846
2847 prom_printf("Applying EFIKA device tree fixups\n");
2848
2849 /* Claiming to be 'chrp' is death */
2850 node = call_prom("finddevice", 1, 1, ADDR("/"));
2851 rv = prom_getprop(node, "device_type", prop, sizeof(prop));
2852 if (rv != PROM_ERROR && (strcmp(prop, "chrp") == 0))
2853 prom_setprop(node, "/", "device_type", "efika", sizeof("efika"));
2854
David Woodhouse7f4392c2008-04-14 02:52:38 +10002855 /* CODEGEN,description is exposed in /proc/cpuinfo so
2856 fix that too */
2857 rv = prom_getprop(node, "CODEGEN,description", prop, sizeof(prop));
2858 if (rv != PROM_ERROR && (strstr(prop, "CHRP")))
2859 prom_setprop(node, "/", "CODEGEN,description",
2860 "Efika 5200B PowerPC System",
2861 sizeof("Efika 5200B PowerPC System"));
2862
Grant Likely94d2dde2008-01-24 22:25:32 -07002863 /* Fixup bestcomm interrupts property */
2864 node = call_prom("finddevice", 1, 1, ADDR("/builtin/bestcomm"));
2865 if (PHANDLE_VALID(node)) {
2866 len = prom_getproplen(node, "interrupts");
2867 if (len == 12) {
2868 prom_printf("Fixing bestcomm interrupts property\n");
2869 prom_setprop(node, "/builtin/bestcom", "interrupts",
2870 bcomm_irq, sizeof(bcomm_irq));
2871 }
2872 }
2873
2874 /* Fixup sound interrupts property */
2875 node = call_prom("finddevice", 1, 1, ADDR("/builtin/sound"));
2876 if (PHANDLE_VALID(node)) {
2877 rv = prom_getprop(node, "interrupts", prop, sizeof(prop));
2878 if (rv == PROM_ERROR) {
2879 prom_printf("Adding sound interrupts property\n");
2880 prom_setprop(node, "/builtin/sound", "interrupts",
2881 sound_irq, sizeof(sound_irq));
2882 }
2883 }
2884
2885 /* Make sure ethernet phy-handle property exists */
2886 fixup_device_tree_efika_add_phy();
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002887}
2888#else
2889#define fixup_device_tree_efika()
2890#endif
2891
Darren Stevens50246782016-08-31 13:24:40 +01002892#ifdef CONFIG_PPC_PASEMI_NEMO
2893/*
2894 * CFE supplied on Nemo is broken in several ways, biggest
2895 * problem is that it reassigns ISA interrupts to unused mpic ints.
2896 * Add an interrupt-controller property for the io-bridge to use
2897 * and correct the ints so we can attach them to an irq_domain
2898 */
2899static void __init fixup_device_tree_pasemi(void)
2900{
2901 u32 interrupts[2], parent, rval, val = 0;
2902 char *name, *pci_name;
2903 phandle iob, node;
2904
2905 /* Find the root pci node */
2906 name = "/pxp@0,e0000000";
2907 iob = call_prom("finddevice", 1, 1, ADDR(name));
2908 if (!PHANDLE_VALID(iob))
2909 return;
2910
2911 /* check if interrupt-controller node set yet */
2912 if (prom_getproplen(iob, "interrupt-controller") !=PROM_ERROR)
2913 return;
2914
2915 prom_printf("adding interrupt-controller property for SB600...\n");
2916
2917 prom_setprop(iob, name, "interrupt-controller", &val, 0);
2918
2919 pci_name = "/pxp@0,e0000000/pci@11";
2920 node = call_prom("finddevice", 1, 1, ADDR(pci_name));
2921 parent = ADDR(iob);
2922
2923 for( ; prom_next_node(&node); ) {
2924 /* scan each node for one with an interrupt */
2925 if (!PHANDLE_VALID(node))
2926 continue;
2927
2928 rval = prom_getproplen(node, "interrupts");
2929 if (rval == 0 || rval == PROM_ERROR)
2930 continue;
2931
2932 prom_getprop(node, "interrupts", &interrupts, sizeof(interrupts));
2933 if ((interrupts[0] < 212) || (interrupts[0] > 222))
2934 continue;
2935
2936 /* found a node, update both interrupts and interrupt-parent */
2937 if ((interrupts[0] >= 212) && (interrupts[0] <= 215))
2938 interrupts[0] -= 203;
2939 if ((interrupts[0] >= 216) && (interrupts[0] <= 220))
2940 interrupts[0] -= 213;
2941 if (interrupts[0] == 221)
2942 interrupts[0] = 14;
2943 if (interrupts[0] == 222)
2944 interrupts[0] = 8;
2945
2946 prom_setprop(node, pci_name, "interrupts", interrupts,
2947 sizeof(interrupts));
2948 prom_setprop(node, pci_name, "interrupt-parent", &parent,
2949 sizeof(parent));
2950 }
Darren Stevens687e16b2016-08-31 13:24:45 +01002951
2952 /*
2953 * The io-bridge has device_type set to 'io-bridge' change it to 'isa'
2954 * so that generic isa-bridge code can add the SB600 and its on-board
2955 * peripherals.
2956 */
2957 name = "/pxp@0,e0000000/io-bridge@0";
2958 iob = call_prom("finddevice", 1, 1, ADDR(name));
2959 if (!PHANDLE_VALID(iob))
2960 return;
2961
2962 /* device_type is already set, just change it. */
2963
2964 prom_printf("Changing device_type of SB600 node...\n");
2965
2966 prom_setprop(iob, name, "device_type", "isa", sizeof("isa"));
Darren Stevens50246782016-08-31 13:24:40 +01002967}
2968#else /* !CONFIG_PPC_PASEMI_NEMO */
2969static inline void fixup_device_tree_pasemi(void) { }
2970#endif
2971
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002972static void __init fixup_device_tree(void)
2973{
2974 fixup_device_tree_maple();
Harry Ciao8f101a052009-06-17 16:28:00 -07002975 fixup_device_tree_maple_memory_controller();
Benjamin Herrenschmidte8c0acf2006-07-04 14:06:29 +10002976 fixup_device_tree_chrp();
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002977 fixup_device_tree_pmac();
Sylvain Munaut88fd2a92007-02-12 23:13:20 +01002978 fixup_device_tree_efika();
Darren Stevens50246782016-08-31 13:24:40 +01002979 fixup_device_tree_pasemi();
Hollis Blanchard54f4ee12006-05-25 16:36:53 -05002980}
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002981
2982static void __init prom_find_boot_cpu(void)
2983{
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002984 __be32 rval;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002985 ihandle prom_cpu;
2986 phandle cpu_pkg;
2987
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002988 rval = 0;
2989 if (prom_getprop(prom.chosen, "cpu", &rval, sizeof(rval)) <= 0)
Paul Mackerrasa575b802005-10-23 17:23:21 +10002990 return;
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002991 prom_cpu = be32_to_cpu(rval);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002992
2993 cpu_pkg = call_prom("instance-to-package", 1, 1, prom_cpu);
2994
Darren Stevensaf2b7fa2017-01-23 19:42:54 +00002995 if (!PHANDLE_VALID(cpu_pkg))
2996 return;
2997
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10002998 prom_getprop(cpu_pkg, "reg", &rval, sizeof(rval));
2999 prom.cpu = be32_to_cpu(rval);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003000
Anton Blanchard5827d412012-11-26 17:40:03 +00003001 prom_debug("Booting CPU hw index = %lu\n", prom.cpu);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003002}
3003
3004static void __init prom_check_initrd(unsigned long r3, unsigned long r4)
3005{
3006#ifdef CONFIG_BLK_DEV_INITRD
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003007 if (r3 && r4 && r4 != 0xdeadbeef) {
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10003008 __be64 val;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003009
Anton Blanchard5827d412012-11-26 17:40:03 +00003010 prom_initrd_start = is_kernel_addr(r3) ? __pa(r3) : r3;
3011 prom_initrd_end = prom_initrd_start + r4;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003012
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10003013 val = cpu_to_be64(prom_initrd_start);
Anton Blanchard5827d412012-11-26 17:40:03 +00003014 prom_setprop(prom.chosen, "/chosen", "linux,initrd-start",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11003015 &val, sizeof(val));
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10003016 val = cpu_to_be64(prom_initrd_end);
Anton Blanchard5827d412012-11-26 17:40:03 +00003017 prom_setprop(prom.chosen, "/chosen", "linux,initrd-end",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11003018 &val, sizeof(val));
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003019
Anton Blanchard5827d412012-11-26 17:40:03 +00003020 reserve_mem(prom_initrd_start,
3021 prom_initrd_end - prom_initrd_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003022
Anton Blanchard5827d412012-11-26 17:40:03 +00003023 prom_debug("initrd_start=0x%x\n", prom_initrd_start);
3024 prom_debug("initrd_end=0x%x\n", prom_initrd_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003025 }
3026#endif /* CONFIG_BLK_DEV_INITRD */
3027}
3028
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003029#ifdef CONFIG_PPC64
3030#ifdef CONFIG_RELOCATABLE
3031static void reloc_toc(void)
3032{
3033}
3034
3035static void unreloc_toc(void)
3036{
3037}
3038#else
Anton Blanchard16744002013-03-12 01:51:51 +00003039static void __reloc_toc(unsigned long offset, unsigned long nr_entries)
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003040{
3041 unsigned long i;
Anton Blanchard16744002013-03-12 01:51:51 +00003042 unsigned long *toc_entry;
3043
3044 /* Get the start of the TOC by using r2 directly. */
3045 asm volatile("addi %0,2,-0x8000" : "=b" (toc_entry));
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003046
3047 for (i = 0; i < nr_entries; i++) {
3048 *toc_entry = *toc_entry + offset;
3049 toc_entry++;
3050 }
3051}
3052
3053static void reloc_toc(void)
3054{
3055 unsigned long offset = reloc_offset();
3056 unsigned long nr_entries =
3057 (__prom_init_toc_end - __prom_init_toc_start) / sizeof(long);
3058
Anton Blanchard16744002013-03-12 01:51:51 +00003059 __reloc_toc(offset, nr_entries);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003060
3061 mb();
3062}
3063
3064static void unreloc_toc(void)
3065{
3066 unsigned long offset = reloc_offset();
3067 unsigned long nr_entries =
3068 (__prom_init_toc_end - __prom_init_toc_start) / sizeof(long);
3069
3070 mb();
3071
Anton Blanchard16744002013-03-12 01:51:51 +00003072 __reloc_toc(-offset, nr_entries);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003073}
3074#endif
3075#endif
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003076
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003077/*
3078 * We enter here early on, when the Open Firmware prom is still
3079 * handling exceptions and the MMU hash table for us.
3080 */
3081
3082unsigned long __init prom_init(unsigned long r3, unsigned long r4,
3083 unsigned long pp,
Paul Mackerras549e8152008-08-30 11:43:47 +10003084 unsigned long r6, unsigned long r7,
3085 unsigned long kbase)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003086{
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003087 unsigned long hdr;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003088
3089#ifdef CONFIG_PPC32
Paul Mackerras549e8152008-08-30 11:43:47 +10003090 unsigned long offset = reloc_offset();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003091 reloc_got2(offset);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003092#else
3093 reloc_toc();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003094#endif
3095
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003096 /*
3097 * First zero the BSS
3098 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003099 memset(&__bss_start, 0, __bss_stop - __bss_start);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003100
3101 /*
3102 * Init interface to Open Firmware, get some node references,
3103 * like /chosen
3104 */
3105 prom_init_client_services(pp);
3106
3107 /*
Paul Mackerrasa23414b2005-11-10 12:00:55 +11003108 * See if this OF is old enough that we need to do explicit maps
3109 * and other workarounds
3110 */
3111 prom_find_mmu();
3112
3113 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003114 * Init prom stdout device
3115 */
3116 prom_init_stdout();
3117
Anton Blanchard5827d412012-11-26 17:40:03 +00003118 prom_printf("Preparing to boot %s", linux_banner);
Michael Ellermane7943fb2009-03-04 19:02:01 +00003119
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003120 /*
3121 * Get default machine type. At this point, we do not differentiate
3122 * between pSeries SMP and pSeries LPAR
3123 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003124 of_platform = prom_find_machine_type();
3125 prom_printf("Detected machine type: %x\n", of_platform);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003126
Suzuki Poulose0f890c82011-12-14 22:57:15 +00003127#ifndef CONFIG_NONSTATIC_KERNEL
Olaf Heringadd60ef2006-03-23 22:03:57 +01003128 /* Bail if this is a kdump kernel. */
3129 if (PHYSICAL_START > 0)
3130 prom_panic("Error: You can't boot a kdump kernel from OF!\n");
Paul Mackerras549e8152008-08-30 11:43:47 +10003131#endif
Olaf Heringadd60ef2006-03-23 22:03:57 +01003132
3133 /*
3134 * Check for an initrd
3135 */
3136 prom_check_initrd(r3, r4);
3137
Suraj Jitindar Singh12cc9fd2017-02-28 17:03:47 +11003138 /*
3139 * Do early parsing of command line
3140 */
3141 early_cmdline_parse();
3142
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003143#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003144 /*
3145 * On pSeries, inform the firmware about our capabilities
3146 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003147 if (of_platform == PLATFORM_PSERIES ||
3148 of_platform == PLATFORM_PSERIES_LPAR)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003149 prom_send_capabilities();
3150#endif
3151
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003152 /*
Arnd Bergmannf3f66f52005-10-31 20:08:37 -05003153 * Copy the CPU hold code
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003154 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003155 if (of_platform != PLATFORM_POWERMAC)
Paul Mackerras549e8152008-08-30 11:43:47 +10003156 copy_and_flush(0, kbase, 0x100, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003157
3158 /*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003159 * Initialize memory management within prom_init
3160 */
3161 prom_init_mem();
3162
3163 /*
3164 * Determine which cpu is actually running right _now_
3165 */
3166 prom_find_boot_cpu();
3167
3168 /*
3169 * Initialize display devices
3170 */
3171 prom_check_displays();
3172
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10003173#if defined(CONFIG_PPC64) && defined(__BIG_ENDIAN__)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003174 /*
3175 * Initialize IOMMU (TCE tables) on pSeries. Do that before anything else
3176 * that uses the allocator, we need to make sure we get the top of memory
3177 * available for us here...
3178 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003179 if (of_platform == PLATFORM_PSERIES)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003180 prom_initialize_tce_table();
3181#endif
3182
3183 /*
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003184 * On non-powermacs, try to instantiate RTAS. PowerMacs don't
3185 * have a usable RTAS implementation.
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003186 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003187 if (of_platform != PLATFORM_POWERMAC &&
3188 of_platform != PLATFORM_OPAL)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003189 prom_instantiate_rtas();
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003190
3191#ifdef CONFIG_PPC_POWERNV
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10003192 if (of_platform == PLATFORM_OPAL)
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00003193 prom_instantiate_opal();
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10003194#endif /* CONFIG_PPC_POWERNV */
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003195
Ashley Lai4a727422012-08-14 18:34:57 -05003196#ifdef CONFIG_PPC64
3197 /* instantiate sml */
3198 prom_instantiate_sml();
3199#endif
3200
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003201 /*
3202 * On non-powermacs, put all CPUs in spin-loops.
3203 *
3204 * PowerMacs use a different mechanism to spin CPUs
Benjamin Herrenschmidtdbe78b42013-09-25 14:02:50 +10003205 *
3206 * (This must be done after instanciating RTAS)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003207 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003208 if (of_platform != PLATFORM_POWERMAC &&
3209 of_platform != PLATFORM_OPAL)
Benjamin Herrenschmidt27f44882011-09-19 18:27:58 +00003210 prom_hold_cpus();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003211
3212 /*
3213 * Fill in some infos for use by the kernel later on
3214 */
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10003215 if (prom_memory_limit) {
3216 __be64 val = cpu_to_be64(prom_memory_limit);
Anton Blanchard5827d412012-11-26 17:40:03 +00003217 prom_setprop(prom.chosen, "/chosen", "linux,memory-limit",
Benjamin Herrenschmidt493adff2013-08-07 02:01:38 +10003218 &val, sizeof(val));
3219 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003220#ifdef CONFIG_PPC64
Anton Blanchard5827d412012-11-26 17:40:03 +00003221 if (prom_iommu_off)
3222 prom_setprop(prom.chosen, "/chosen", "linux,iommu-off",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11003223 NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003224
Anton Blanchard5827d412012-11-26 17:40:03 +00003225 if (prom_iommu_force_on)
3226 prom_setprop(prom.chosen, "/chosen", "linux,iommu-force-on",
Paul Mackerrasa23414b2005-11-10 12:00:55 +11003227 NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003228
Anton Blanchard5827d412012-11-26 17:40:03 +00003229 if (prom_tce_alloc_start) {
3230 prom_setprop(prom.chosen, "/chosen", "linux,tce-alloc-start",
3231 &prom_tce_alloc_start,
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003232 sizeof(prom_tce_alloc_start));
Anton Blanchard5827d412012-11-26 17:40:03 +00003233 prom_setprop(prom.chosen, "/chosen", "linux,tce-alloc-end",
3234 &prom_tce_alloc_end,
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003235 sizeof(prom_tce_alloc_end));
3236 }
3237#endif
3238
3239 /*
3240 * Fixup any known bugs in the device-tree
3241 */
3242 fixup_device_tree();
3243
3244 /*
3245 * Now finally create the flattened device-tree
3246 */
Anton Blanchard1f8737a2009-03-31 20:06:15 +00003247 prom_printf("copying OF device tree...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003248 flatten_device_tree();
3249
Paul Mackerras3825ac02005-11-08 22:48:08 +11003250 /*
3251 * in case stdin is USB and still active on IBM machines...
3252 * Unfortunately quiesce crashes on some powermacs if we have
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003253 * closed stdin already (in particular the powerbook 101). It
3254 * appears that the OPAL version of OFW doesn't like it either.
Paul Mackerras3825ac02005-11-08 22:48:08 +11003255 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003256 if (of_platform != PLATFORM_POWERMAC &&
3257 of_platform != PLATFORM_OPAL)
Paul Mackerras3825ac02005-11-08 22:48:08 +11003258 prom_close_stdin();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003259
3260 /*
3261 * Call OF "quiesce" method to shut down pending DMA's from
3262 * devices etc...
3263 */
Michael Ellerman7e862d72015-03-30 17:38:09 +11003264 prom_printf("Quiescing Open Firmware ...\n");
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003265 call_prom("quiesce", 0, 0);
3266
3267 /*
3268 * And finally, call the kernel passing it the flattened device
3269 * tree and NULL as r5, thus triggering the new entry point which
3270 * is common to us and kexec
3271 */
Anton Blanchard5827d412012-11-26 17:40:03 +00003272 hdr = dt_header_start;
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003273
3274 /* Don't print anything after quiesce under OPAL, it crashes OFW */
Anton Blanchard5827d412012-11-26 17:40:03 +00003275 if (of_platform != PLATFORM_OPAL) {
Benjamin Herrenschmidt7d70c632016-08-10 17:29:29 +10003276 prom_printf("Booting Linux via __start() @ 0x%lx ...\n", kbase);
Benjamin Herrenschmidt40dfef62011-11-29 18:22:56 +00003277 prom_debug("->dt_header_start=0x%x\n", hdr);
3278 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003279
3280#ifdef CONFIG_PPC32
3281 reloc_got2(-offset);
Anton Blanchard5ac47f72012-11-26 17:39:03 +00003282#else
3283 unreloc_toc();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003284#endif
3285
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00003286#ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
3287 /* OPAL early debug gets the OPAL base & entry in r8 and r9 */
3288 __start(hdr, kbase, 0, 0, 0,
Anton Blanchard5827d412012-11-26 17:40:03 +00003289 prom_opal_base, prom_opal_entry);
Benjamin Herrenschmidt6e35d5d2011-09-19 18:28:01 +00003290#else
3291 __start(hdr, kbase, 0, 0, 0, 0, 0);
3292#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10003293
3294 return 0;
3295}