2 * Procedures for interfacing to Open Firmware.
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
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.
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/init.h>
22 #include <linux/threads.h>
23 #include <linux/spinlock.h>
24 #include <linux/types.h>
25 #include <linux/pci.h>
26 #include <linux/proc_fs.h>
27 #include <linux/stringify.h>
28 #include <linux/delay.h>
29 #include <linux/initrd.h>
30 #include <linux/bitops.h>
34 #include <asm/processor.h>
39 #include <asm/pgtable.h>
40 #include <asm/iommu.h>
41 #include <asm/btext.h>
42 #include <asm/sections.h>
43 #include <asm/machdep.h>
45 #include <asm/asm-prototypes.h>
47 #include <linux/linux_logo.h>
50 * Eventually bump that one up
52 #define DEVTREE_CHUNK_SIZE 0x100000
55 * This is the size of the local memory reserve map that gets copied
56 * into the boot params passed to the kernel. That size is totally
57 * flexible as the kernel just reads the list until it encounters an
58 * entry with size 0, so it can be changed without breaking binary
61 #define MEM_RESERVE_MAP_SIZE 8
64 * prom_init() is called very early on, before the kernel text
65 * and data have been mapped to KERNELBASE. At this point the code
66 * is running at whatever address it has been loaded at.
67 * On ppc32 we compile with -mrelocatable, which means that references
68 * to extern and static variables get relocated automatically.
69 * ppc64 objects are always relocatable, we just need to relocate the
72 * Because OF may have mapped I/O devices into the area starting at
73 * KERNELBASE, particularly on CHRP machines, we can't safely call
74 * OF once the kernel has been mapped to KERNELBASE. Therefore all
75 * OF calls must be done within prom_init().
77 * ADDR is used in calls to call_prom. The 4th and following
78 * arguments to call_prom should be 32-bit values.
79 * On ppc64, 64 bit values are truncated to 32 bits (and
80 * fortunately don't get interpreted as two arguments).
82 #define ADDR(x) (u32)(unsigned long)(x)
85 #define OF_WORKAROUNDS 0
87 #define OF_WORKAROUNDS of_workarounds
91 #define OF_WA_CLAIM 1 /* do phys/virt claim separately, then map */
92 #define OF_WA_LONGTRAIL 2 /* work around longtrail bugs */
94 #define PROM_BUG() do { \
95 prom_printf("kernel BUG at %s line 0x%x!\n", \
96 __FILE__, __LINE__); \
97 __asm__ __volatile__(".long " BUG_ILLEGAL_INSTR); \
101 #define prom_debug(x...) prom_printf(x)
103 #define prom_debug(x...)
107 typedef u32 prom_arg_t
;
125 struct mem_map_entry
{
130 typedef __be32 cell_t
;
132 extern void __start(unsigned long r3
, unsigned long r4
, unsigned long r5
,
133 unsigned long r6
, unsigned long r7
, unsigned long r8
,
137 extern int enter_prom(struct prom_args
*args
, unsigned long entry
);
139 static inline int enter_prom(struct prom_args
*args
, unsigned long entry
)
141 return ((int (*)(struct prom_args
*))entry
)(args
);
145 extern void copy_and_flush(unsigned long dest
, unsigned long src
,
146 unsigned long size
, unsigned long offset
);
149 static struct prom_t __initdata prom
;
151 static unsigned long prom_entry __initdata
;
153 #define PROM_SCRATCH_SIZE 256
155 static char __initdata of_stdout_device
[256];
156 static char __initdata prom_scratch
[PROM_SCRATCH_SIZE
];
158 static unsigned long __initdata dt_header_start
;
159 static unsigned long __initdata dt_struct_start
, dt_struct_end
;
160 static unsigned long __initdata dt_string_start
, dt_string_end
;
162 static unsigned long __initdata prom_initrd_start
, prom_initrd_end
;
165 static int __initdata prom_iommu_force_on
;
166 static int __initdata prom_iommu_off
;
167 static unsigned long __initdata prom_tce_alloc_start
;
168 static unsigned long __initdata prom_tce_alloc_end
;
171 static bool __initdata prom_radix_disable
;
173 struct platform_support
{
179 /* Platforms codes are now obsolete in the kernel. Now only used within this
180 * file and ultimately gone too. Feel free to change them if you need, they
181 * are not shared with anything outside of this file anymore
183 #define PLATFORM_PSERIES 0x0100
184 #define PLATFORM_PSERIES_LPAR 0x0101
185 #define PLATFORM_LPAR 0x0001
186 #define PLATFORM_POWERMAC 0x0400
187 #define PLATFORM_GENERIC 0x0500
188 #define PLATFORM_OPAL 0x0600
190 static int __initdata of_platform
;
192 static char __initdata prom_cmd_line
[COMMAND_LINE_SIZE
];
194 static unsigned long __initdata prom_memory_limit
;
196 static unsigned long __initdata alloc_top
;
197 static unsigned long __initdata alloc_top_high
;
198 static unsigned long __initdata alloc_bottom
;
199 static unsigned long __initdata rmo_top
;
200 static unsigned long __initdata ram_top
;
202 static struct mem_map_entry __initdata mem_reserve_map
[MEM_RESERVE_MAP_SIZE
];
203 static int __initdata mem_reserve_cnt
;
205 static cell_t __initdata regbuf
[1024];
207 static bool rtas_has_query_cpu_stopped
;
211 * Error results ... some OF calls will return "-1" on error, some
212 * will return 0, some will return either. To simplify, here are
213 * macros to use with any ihandle or phandle return value to check if
217 #define PROM_ERROR (-1u)
218 #define PHANDLE_VALID(p) ((p) != 0 && (p) != PROM_ERROR)
219 #define IHANDLE_VALID(i) ((i) != 0 && (i) != PROM_ERROR)
222 /* This is the one and *ONLY* place where we actually call open
226 static int __init
call_prom(const char *service
, int nargs
, int nret
, ...)
229 struct prom_args args
;
232 args
.service
= cpu_to_be32(ADDR(service
));
233 args
.nargs
= cpu_to_be32(nargs
);
234 args
.nret
= cpu_to_be32(nret
);
236 va_start(list
, nret
);
237 for (i
= 0; i
< nargs
; i
++)
238 args
.args
[i
] = cpu_to_be32(va_arg(list
, prom_arg_t
));
241 for (i
= 0; i
< nret
; i
++)
242 args
.args
[nargs
+i
] = 0;
244 if (enter_prom(&args
, prom_entry
) < 0)
247 return (nret
> 0) ? be32_to_cpu(args
.args
[nargs
]) : 0;
250 static int __init
call_prom_ret(const char *service
, int nargs
, int nret
,
251 prom_arg_t
*rets
, ...)
254 struct prom_args args
;
257 args
.service
= cpu_to_be32(ADDR(service
));
258 args
.nargs
= cpu_to_be32(nargs
);
259 args
.nret
= cpu_to_be32(nret
);
261 va_start(list
, rets
);
262 for (i
= 0; i
< nargs
; i
++)
263 args
.args
[i
] = cpu_to_be32(va_arg(list
, prom_arg_t
));
266 for (i
= 0; i
< nret
; i
++)
267 args
.args
[nargs
+i
] = 0;
269 if (enter_prom(&args
, prom_entry
) < 0)
273 for (i
= 1; i
< nret
; ++i
)
274 rets
[i
-1] = be32_to_cpu(args
.args
[nargs
+i
]);
276 return (nret
> 0) ? be32_to_cpu(args
.args
[nargs
]) : 0;
280 static void __init
prom_print(const char *msg
)
284 if (prom
.stdout
== 0)
287 for (p
= msg
; *p
!= 0; p
= q
) {
288 for (q
= p
; *q
!= 0 && *q
!= '\n'; ++q
)
291 call_prom("write", 3, 1, prom
.stdout
, p
, q
- p
);
295 call_prom("write", 3, 1, prom
.stdout
, ADDR("\r\n"), 2);
300 static void __init
prom_print_hex(unsigned long val
)
302 int i
, nibbles
= sizeof(val
)*2;
303 char buf
[sizeof(val
)*2+1];
305 for (i
= nibbles
-1; i
>= 0; i
--) {
306 buf
[i
] = (val
& 0xf) + '0';
308 buf
[i
] += ('a'-'0'-10);
312 call_prom("write", 3, 1, prom
.stdout
, buf
, nibbles
);
315 /* max number of decimal digits in an unsigned long */
317 static void __init
prom_print_dec(unsigned long val
)
320 char buf
[UL_DIGITS
+1];
322 for (i
= UL_DIGITS
-1; i
>= 0; i
--) {
323 buf
[i
] = (val
% 10) + '0';
328 /* shift stuff down */
329 size
= UL_DIGITS
- i
;
330 call_prom("write", 3, 1, prom
.stdout
, buf
+i
, size
);
333 static void __init
prom_printf(const char *format
, ...)
335 const char *p
, *q
, *s
;
340 va_start(args
, format
);
341 for (p
= format
; *p
!= 0; p
= q
) {
342 for (q
= p
; *q
!= 0 && *q
!= '\n' && *q
!= '%'; ++q
)
345 call_prom("write", 3, 1, prom
.stdout
, p
, q
- p
);
350 call_prom("write", 3, 1, prom
.stdout
,
360 s
= va_arg(args
, const char *);
365 v
= va_arg(args
, unsigned long);
370 vs
= va_arg(args
, int);
381 else if (*q
== 'x') {
383 v
= va_arg(args
, unsigned long);
385 } else if (*q
== 'u') { /* '%lu' */
387 v
= va_arg(args
, unsigned long);
389 } else if (*q
== 'd') { /* %ld */
391 vs
= va_arg(args
, long);
405 static unsigned int __init
prom_claim(unsigned long virt
, unsigned long size
,
409 if (align
== 0 && (OF_WORKAROUNDS
& OF_WA_CLAIM
)) {
411 * Old OF requires we claim physical and virtual separately
412 * and then map explicitly (assuming virtual mode)
417 ret
= call_prom_ret("call-method", 5, 2, &result
,
418 ADDR("claim"), prom
.memory
,
420 if (ret
!= 0 || result
== -1)
422 ret
= call_prom_ret("call-method", 5, 2, &result
,
423 ADDR("claim"), prom
.mmumap
,
426 call_prom("call-method", 4, 1, ADDR("release"),
427 prom
.memory
, size
, virt
);
430 /* the 0x12 is M (coherence) + PP == read/write */
431 call_prom("call-method", 6, 1,
432 ADDR("map"), prom
.mmumap
, 0x12, size
, virt
, virt
);
435 return call_prom("claim", 3, 1, (prom_arg_t
)virt
, (prom_arg_t
)size
,
439 static void __init
__attribute__((noreturn
)) prom_panic(const char *reason
)
442 /* Do not call exit because it clears the screen on pmac
443 * it also causes some sort of double-fault on early pmacs */
444 if (of_platform
== PLATFORM_POWERMAC
)
447 /* ToDo: should put up an SRC here on pSeries */
448 call_prom("exit", 0, 0);
450 for (;;) /* should never get here */
455 static int __init
prom_next_node(phandle
*nodep
)
459 if ((node
= *nodep
) != 0
460 && (*nodep
= call_prom("child", 1, 1, node
)) != 0)
462 if ((*nodep
= call_prom("peer", 1, 1, node
)) != 0)
465 if ((node
= call_prom("parent", 1, 1, node
)) == 0)
467 if ((*nodep
= call_prom("peer", 1, 1, node
)) != 0)
472 static inline int prom_getprop(phandle node
, const char *pname
,
473 void *value
, size_t valuelen
)
475 return call_prom("getprop", 4, 1, node
, ADDR(pname
),
476 (u32
)(unsigned long) value
, (u32
) valuelen
);
479 static inline int prom_getproplen(phandle node
, const char *pname
)
481 return call_prom("getproplen", 2, 1, node
, ADDR(pname
));
484 static void add_string(char **str
, const char *q
)
494 static char *tohex(unsigned int x
)
496 static char digits
[] = "0123456789abcdef";
497 static char result
[9];
504 result
[i
] = digits
[x
& 0xf];
506 } while (x
!= 0 && i
> 0);
510 static int __init
prom_setprop(phandle node
, const char *nodename
,
511 const char *pname
, void *value
, size_t valuelen
)
515 if (!(OF_WORKAROUNDS
& OF_WA_LONGTRAIL
))
516 return call_prom("setprop", 4, 1, node
, ADDR(pname
),
517 (u32
)(unsigned long) value
, (u32
) valuelen
);
519 /* gah... setprop doesn't work on longtrail, have to use interpret */
521 add_string(&p
, "dev");
522 add_string(&p
, nodename
);
523 add_string(&p
, tohex((u32
)(unsigned long) value
));
524 add_string(&p
, tohex(valuelen
));
525 add_string(&p
, tohex(ADDR(pname
)));
526 add_string(&p
, tohex(strlen(pname
)));
527 add_string(&p
, "property");
529 return call_prom("interpret", 1, 1, (u32
)(unsigned long) cmd
);
532 /* We can't use the standard versions because of relocation headaches. */
533 #define isxdigit(c) (('0' <= (c) && (c) <= '9') \
534 || ('a' <= (c) && (c) <= 'f') \
535 || ('A' <= (c) && (c) <= 'F'))
537 #define isdigit(c) ('0' <= (c) && (c) <= '9')
538 #define islower(c) ('a' <= (c) && (c) <= 'z')
539 #define toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
541 static unsigned long prom_strtoul(const char *cp
, const char **endp
)
543 unsigned long result
= 0, base
= 10, value
;
548 if (toupper(*cp
) == 'X') {
554 while (isxdigit(*cp
) &&
555 (value
= isdigit(*cp
) ? *cp
- '0' : toupper(*cp
) - 'A' + 10) < base
) {
556 result
= result
* base
+ value
;
566 static unsigned long prom_memparse(const char *ptr
, const char **retptr
)
568 unsigned long ret
= prom_strtoul(ptr
, retptr
);
572 * We can't use a switch here because GCC *may* generate a
573 * jump table which won't work, because we're not running at
574 * the address we're linked at.
576 if ('G' == **retptr
|| 'g' == **retptr
)
579 if ('M' == **retptr
|| 'm' == **retptr
)
582 if ('K' == **retptr
|| 'k' == **retptr
)
594 * Early parsing of the command line passed to the kernel, used for
595 * "mem=x" and the options that affect the iommu
597 static void __init
early_cmdline_parse(void)
604 prom_cmd_line
[0] = 0;
606 if ((long)prom
.chosen
> 0)
607 l
= prom_getprop(prom
.chosen
, "bootargs", p
, COMMAND_LINE_SIZE
-1);
608 #ifdef CONFIG_CMDLINE
609 if (l
<= 0 || p
[0] == '\0') /* dbl check */
610 strlcpy(prom_cmd_line
,
611 CONFIG_CMDLINE
, sizeof(prom_cmd_line
));
612 #endif /* CONFIG_CMDLINE */
613 prom_printf("command line: %s\n", prom_cmd_line
);
616 opt
= strstr(prom_cmd_line
, "iommu=");
618 prom_printf("iommu opt is: %s\n", opt
);
620 while (*opt
&& *opt
== ' ')
622 if (!strncmp(opt
, "off", 3))
624 else if (!strncmp(opt
, "force", 5))
625 prom_iommu_force_on
= 1;
628 opt
= strstr(prom_cmd_line
, "mem=");
631 prom_memory_limit
= prom_memparse(opt
, (const char **)&opt
);
633 /* Align to 16 MB == size of ppc64 large page */
634 prom_memory_limit
= ALIGN(prom_memory_limit
, 0x1000000);
638 opt
= strstr(prom_cmd_line
, "disable_radix");
640 prom_debug("Radix disabled from cmdline\n");
641 prom_radix_disable
= true;
645 #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
647 * The architecture vector has an array of PVR mask/value pairs,
648 * followed by # option vectors - 1, followed by the option vectors.
650 * See prom.h for the definition of the bits specified in the
651 * architecture vector.
654 /* Firmware expects the value to be n - 1, where n is the # of vectors */
655 #define NUM_VECTORS(n) ((n) - 1)
658 * Firmware expects 1 + n - 2, where n is the length of the option vector in
659 * bytes. The 1 accounts for the length byte itself, the - 2 .. ?
661 #define VECTOR_LENGTH(n) (1 + (n) - 2)
663 struct option_vector1
{
669 struct option_vector2
{
683 struct option_vector3
{
688 struct option_vector4
{
693 struct option_vector5
{
705 u8 platform_facilities
;
716 struct option_vector6
{
722 struct ibm_arch_vec
{
723 struct { u32 mask
, val
; } pvrs
[12];
728 struct option_vector1 vec1
;
731 struct option_vector2 vec2
;
734 struct option_vector3 vec3
;
737 struct option_vector4 vec4
;
740 struct option_vector5 vec5
;
743 struct option_vector6 vec6
;
746 struct ibm_arch_vec __cacheline_aligned ibm_architecture_vec
= {
749 .mask
= cpu_to_be32(0xfffe0000), /* POWER5/POWER5+ */
750 .val
= cpu_to_be32(0x003a0000),
753 .mask
= cpu_to_be32(0xffff0000), /* POWER6 */
754 .val
= cpu_to_be32(0x003e0000),
757 .mask
= cpu_to_be32(0xffff0000), /* POWER7 */
758 .val
= cpu_to_be32(0x003f0000),
761 .mask
= cpu_to_be32(0xffff0000), /* POWER8E */
762 .val
= cpu_to_be32(0x004b0000),
765 .mask
= cpu_to_be32(0xffff0000), /* POWER8NVL */
766 .val
= cpu_to_be32(0x004c0000),
769 .mask
= cpu_to_be32(0xffff0000), /* POWER8 */
770 .val
= cpu_to_be32(0x004d0000),
773 .mask
= cpu_to_be32(0xffff0000), /* POWER9 */
774 .val
= cpu_to_be32(0x004e0000),
777 .mask
= cpu_to_be32(0xffffffff), /* all 3.00-compliant */
778 .val
= cpu_to_be32(0x0f000005),
781 .mask
= cpu_to_be32(0xffffffff), /* all 2.07-compliant */
782 .val
= cpu_to_be32(0x0f000004),
785 .mask
= cpu_to_be32(0xffffffff), /* all 2.06-compliant */
786 .val
= cpu_to_be32(0x0f000003),
789 .mask
= cpu_to_be32(0xffffffff), /* all 2.05-compliant */
790 .val
= cpu_to_be32(0x0f000002),
793 .mask
= cpu_to_be32(0xfffffffe), /* all 2.04-compliant and earlier */
794 .val
= cpu_to_be32(0x0f000001),
798 .num_vectors
= NUM_VECTORS(6),
800 .vec1_len
= VECTOR_LENGTH(sizeof(struct option_vector1
)),
803 .arch_versions
= OV1_PPC_2_00
| OV1_PPC_2_01
| OV1_PPC_2_02
| OV1_PPC_2_03
|
804 OV1_PPC_2_04
| OV1_PPC_2_05
| OV1_PPC_2_06
| OV1_PPC_2_07
,
805 .arch_versions3
= OV1_PPC_3_00
,
808 .vec2_len
= VECTOR_LENGTH(sizeof(struct option_vector2
)),
809 /* option vector 2: Open Firmware options supported */
811 .byte1
= OV2_REAL_MODE
,
813 .real_base
= cpu_to_be32(0xffffffff),
814 .real_size
= cpu_to_be32(0xffffffff),
815 .virt_base
= cpu_to_be32(0xffffffff),
816 .virt_size
= cpu_to_be32(0xffffffff),
817 .load_base
= cpu_to_be32(0xffffffff),
818 .min_rma
= cpu_to_be32(256), /* 256MB min RMA */
819 .min_load
= cpu_to_be32(0xffffffff), /* full client load */
820 .min_rma_percent
= 0, /* min RMA percentage of total RAM */
821 .max_pft_size
= 48, /* max log_2(hash table size) */
824 .vec3_len
= VECTOR_LENGTH(sizeof(struct option_vector3
)),
825 /* option vector 3: processor options supported */
827 .byte1
= 0, /* don't ignore, don't halt */
828 .byte2
= OV3_FP
| OV3_VMX
| OV3_DFP
,
831 .vec4_len
= VECTOR_LENGTH(sizeof(struct option_vector4
)),
832 /* option vector 4: IBM PAPR implementation */
834 .byte1
= 0, /* don't halt */
835 .min_vp_cap
= OV4_MIN_ENT_CAP
, /* minimum VP entitled capacity */
838 .vec5_len
= VECTOR_LENGTH(sizeof(struct option_vector5
)),
839 /* option vector 5: PAPR/OF options */
841 .byte1
= 0, /* don't ignore, don't halt */
842 .byte2
= OV5_FEAT(OV5_LPAR
) | OV5_FEAT(OV5_SPLPAR
) | OV5_FEAT(OV5_LARGE_PAGES
) |
843 OV5_FEAT(OV5_DRCONF_MEMORY
) | OV5_FEAT(OV5_DONATE_DEDICATE_CPU
) |
844 #ifdef CONFIG_PCI_MSI
845 /* PCIe/MSI support. Without MSI full PCIe is not supported */
852 #ifdef CONFIG_PPC_SMLPAR
853 OV5_FEAT(OV5_CMO
) | OV5_FEAT(OV5_XCMO
),
857 .associativity
= OV5_FEAT(OV5_TYPE1_AFFINITY
) | OV5_FEAT(OV5_PRRN
),
858 .bin_opts
= OV5_FEAT(OV5_RESIZE_HPT
) | OV5_FEAT(OV5_HP_EVT
),
859 .micro_checkpoint
= 0,
861 .max_cpus
= cpu_to_be32(NR_CPUS
), /* number of cores supported */
864 .platform_facilities
= OV5_FEAT(OV5_PFO_HW_RNG
) | OV5_FEAT(OV5_PFO_HW_ENCR
) | OV5_FEAT(OV5_PFO_HW_842
),
874 /* option vector 6: IBM PAPR hints */
875 .vec6_len
= VECTOR_LENGTH(sizeof(struct option_vector6
)),
879 .os_name
= OV6_LINUX
,
883 /* Old method - ELF header with PT_NOTE sections only works on BE */
884 #ifdef __BIG_ENDIAN__
885 static struct fake_elf
{
892 char name
[8]; /* "PowerPC" */
906 char name
[24]; /* "IBM,RPA-Client-Config" */
920 .e_ident
= { 0x7f, 'E', 'L', 'F',
921 ELFCLASS32
, ELFDATA2MSB
, EV_CURRENT
},
922 .e_type
= ET_EXEC
, /* yeah right */
924 .e_version
= EV_CURRENT
,
925 .e_phoff
= offsetof(struct fake_elf
, phdr
),
926 .e_phentsize
= sizeof(Elf32_Phdr
),
932 .p_offset
= offsetof(struct fake_elf
, chrpnote
),
933 .p_filesz
= sizeof(struct chrpnote
)
936 .p_offset
= offsetof(struct fake_elf
, rpanote
),
937 .p_filesz
= sizeof(struct rpanote
)
941 .namesz
= sizeof("PowerPC"),
942 .descsz
= sizeof(struct chrpdesc
),
946 .real_mode
= ~0U, /* ~0 means "don't care" */
955 .namesz
= sizeof("IBM,RPA-Client-Config"),
956 .descsz
= sizeof(struct rpadesc
),
958 .name
= "IBM,RPA-Client-Config",
961 .min_rmo_size
= 64, /* in megabytes */
962 .min_rmo_percent
= 0,
963 .max_pft_size
= 48, /* 2^48 bytes max PFT size */
970 #endif /* __BIG_ENDIAN__ */
972 static int __init
prom_count_smt_threads(void)
978 /* Pick up th first CPU node we can find */
979 for (node
= 0; prom_next_node(&node
); ) {
981 prom_getprop(node
, "device_type", type
, sizeof(type
));
983 if (strcmp(type
, "cpu"))
986 * There is an entry for each smt thread, each entry being
987 * 4 bytes long. All cpus should have the same number of
988 * smt threads, so return after finding the first.
990 plen
= prom_getproplen(node
, "ibm,ppc-interrupt-server#s");
991 if (plen
== PROM_ERROR
)
994 prom_debug("Found %lu smt threads per core\n", (unsigned long)plen
);
997 if (plen
< 1 || plen
> 64) {
998 prom_printf("Threads per core %lu out of bounds, assuming 1\n",
999 (unsigned long)plen
);
1004 prom_debug("No threads found, assuming 1 per core\n");
1010 static void __init
prom_parse_mmu_model(u8 val
,
1011 struct platform_support
*support
)
1014 case OV5_FEAT(OV5_MMU_DYNAMIC
):
1015 case OV5_FEAT(OV5_MMU_EITHER
): /* Either Available */
1016 prom_debug("MMU - either supported\n");
1017 support
->radix_mmu
= !prom_radix_disable
;
1018 support
->hash_mmu
= true;
1020 case OV5_FEAT(OV5_MMU_RADIX
): /* Only Radix */
1021 prom_debug("MMU - radix only\n");
1022 if (prom_radix_disable
) {
1024 * If we __have__ to do radix, we're better off ignoring
1025 * the command line rather than not booting.
1027 prom_printf("WARNING: Ignoring cmdline option disable_radix\n");
1029 support
->radix_mmu
= true;
1031 case OV5_FEAT(OV5_MMU_HASH
):
1032 prom_debug("MMU - hash only\n");
1033 support
->hash_mmu
= true;
1036 prom_debug("Unknown mmu support option: 0x%x\n", val
);
1041 static void __init
prom_parse_platform_support(u8 index
, u8 val
,
1042 struct platform_support
*support
)
1045 case OV5_INDX(OV5_MMU_SUPPORT
): /* MMU Model */
1046 prom_parse_mmu_model(val
& OV5_FEAT(OV5_MMU_SUPPORT
), support
);
1048 case OV5_INDX(OV5_RADIX_GTSE
): /* Radix Extensions */
1049 if (val
& OV5_FEAT(OV5_RADIX_GTSE
)) {
1050 prom_debug("Radix - GTSE supported\n");
1051 support
->radix_gtse
= true;
1057 static void __init
prom_check_platform_support(void)
1059 struct platform_support supported
= {
1064 int prop_len
= prom_getproplen(prom
.chosen
,
1065 "ibm,arch-vec-5-platform-support");
1069 prom_debug("Found ibm,arch-vec-5-platform-support, len: %d\n",
1071 prom_getprop(prom
.chosen
, "ibm,arch-vec-5-platform-support",
1073 for (i
= 0; i
< prop_len
; i
+= 2) {
1074 prom_debug("%d: index = 0x%x val = 0x%x\n", i
/ 2
1077 prom_parse_platform_support(vec
[i
], vec
[i
+ 1],
1082 if (supported
.radix_mmu
&& supported
.radix_gtse
) {
1083 /* Radix preferred - but we require GTSE for now */
1084 prom_debug("Asking for radix with GTSE\n");
1085 ibm_architecture_vec
.vec5
.mmu
= OV5_FEAT(OV5_MMU_RADIX
);
1086 ibm_architecture_vec
.vec5
.radix_ext
= OV5_FEAT(OV5_RADIX_GTSE
);
1087 } else if (supported
.hash_mmu
) {
1088 /* Default to hash mmu (if we can) */
1089 prom_debug("Asking for hash\n");
1090 ibm_architecture_vec
.vec5
.mmu
= OV5_FEAT(OV5_MMU_HASH
);
1092 /* We're probably on a legacy hypervisor */
1093 prom_debug("Assuming legacy hash support\n");
1097 static void __init
prom_send_capabilities(void)
1103 /* Check ibm,arch-vec-5-platform-support and fixup vec5 if required */
1104 prom_check_platform_support();
1106 root
= call_prom("open", 1, 1, ADDR("/"));
1108 /* We need to tell the FW about the number of cores we support.
1110 * To do that, we count the number of threads on the first core
1111 * (we assume this is the same for all cores) and use it to
1115 cores
= DIV_ROUND_UP(NR_CPUS
, prom_count_smt_threads());
1116 prom_printf("Max number of cores passed to firmware: %lu (NR_CPUS = %lu)\n",
1119 ibm_architecture_vec
.vec5
.max_cpus
= cpu_to_be32(cores
);
1121 /* try calling the ibm,client-architecture-support method */
1122 prom_printf("Calling ibm,client-architecture-support...");
1123 if (call_prom_ret("call-method", 3, 2, &ret
,
1124 ADDR("ibm,client-architecture-support"),
1126 ADDR(&ibm_architecture_vec
)) == 0) {
1127 /* the call exists... */
1129 prom_printf("\nWARNING: ibm,client-architecture"
1130 "-support call FAILED!\n");
1131 call_prom("close", 1, 0, root
);
1132 prom_printf(" done\n");
1135 call_prom("close", 1, 0, root
);
1136 prom_printf(" not implemented\n");
1139 #ifdef __BIG_ENDIAN__
1143 /* no ibm,client-architecture-support call, try the old way */
1144 elfloader
= call_prom("open", 1, 1,
1145 ADDR("/packages/elf-loader"));
1146 if (elfloader
== 0) {
1147 prom_printf("couldn't open /packages/elf-loader\n");
1150 call_prom("call-method", 3, 1, ADDR("process-elf-header"),
1151 elfloader
, ADDR(&fake_elf
));
1152 call_prom("close", 1, 0, elfloader
);
1154 #endif /* __BIG_ENDIAN__ */
1156 #endif /* #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) */
1159 * Memory allocation strategy... our layout is normally:
1161 * at 14Mb or more we have vmlinux, then a gap and initrd. In some
1162 * rare cases, initrd might end up being before the kernel though.
1163 * We assume this won't override the final kernel at 0, we have no
1164 * provision to handle that in this version, but it should hopefully
1167 * alloc_top is set to the top of RMO, eventually shrink down if the
1170 * alloc_bottom is set to the top of kernel/initrd
1172 * from there, allocations are done this way : rtas is allocated
1173 * topmost, and the device-tree is allocated from the bottom. We try
1174 * to grow the device-tree allocation as we progress. If we can't,
1175 * then we fail, we don't currently have a facility to restart
1176 * elsewhere, but that shouldn't be necessary.
1178 * Note that calls to reserve_mem have to be done explicitly, memory
1179 * allocated with either alloc_up or alloc_down isn't automatically
1185 * Allocates memory in the RMO upward from the kernel/initrd
1187 * When align is 0, this is a special case, it means to allocate in place
1188 * at the current location of alloc_bottom or fail (that is basically
1189 * extending the previous allocation). Used for the device-tree flattening
1191 static unsigned long __init
alloc_up(unsigned long size
, unsigned long align
)
1193 unsigned long base
= alloc_bottom
;
1194 unsigned long addr
= 0;
1197 base
= _ALIGN_UP(base
, align
);
1198 prom_debug("alloc_up(%x, %x)\n", size
, align
);
1200 prom_panic("alloc_up() called with mem not initialized\n");
1203 base
= _ALIGN_UP(alloc_bottom
, align
);
1205 base
= alloc_bottom
;
1207 for(; (base
+ size
) <= alloc_top
;
1208 base
= _ALIGN_UP(base
+ 0x100000, align
)) {
1209 prom_debug(" trying: 0x%x\n\r", base
);
1210 addr
= (unsigned long)prom_claim(base
, size
, 0);
1211 if (addr
!= PROM_ERROR
&& addr
!= 0)
1219 alloc_bottom
= addr
+ size
;
1221 prom_debug(" -> %x\n", addr
);
1222 prom_debug(" alloc_bottom : %x\n", alloc_bottom
);
1223 prom_debug(" alloc_top : %x\n", alloc_top
);
1224 prom_debug(" alloc_top_hi : %x\n", alloc_top_high
);
1225 prom_debug(" rmo_top : %x\n", rmo_top
);
1226 prom_debug(" ram_top : %x\n", ram_top
);
1232 * Allocates memory downward, either from top of RMO, or if highmem
1233 * is set, from the top of RAM. Note that this one doesn't handle
1234 * failures. It does claim memory if highmem is not set.
1236 static unsigned long __init
alloc_down(unsigned long size
, unsigned long align
,
1239 unsigned long base
, addr
= 0;
1241 prom_debug("alloc_down(%x, %x, %s)\n", size
, align
,
1242 highmem
? "(high)" : "(low)");
1244 prom_panic("alloc_down() called with mem not initialized\n");
1247 /* Carve out storage for the TCE table. */
1248 addr
= _ALIGN_DOWN(alloc_top_high
- size
, align
);
1249 if (addr
<= alloc_bottom
)
1251 /* Will we bump into the RMO ? If yes, check out that we
1252 * didn't overlap existing allocations there, if we did,
1253 * we are dead, we must be the first in town !
1255 if (addr
< rmo_top
) {
1256 /* Good, we are first */
1257 if (alloc_top
== rmo_top
)
1258 alloc_top
= rmo_top
= addr
;
1262 alloc_top_high
= addr
;
1266 base
= _ALIGN_DOWN(alloc_top
- size
, align
);
1267 for (; base
> alloc_bottom
;
1268 base
= _ALIGN_DOWN(base
- 0x100000, align
)) {
1269 prom_debug(" trying: 0x%x\n\r", base
);
1270 addr
= (unsigned long)prom_claim(base
, size
, 0);
1271 if (addr
!= PROM_ERROR
&& addr
!= 0)
1280 prom_debug(" -> %x\n", addr
);
1281 prom_debug(" alloc_bottom : %x\n", alloc_bottom
);
1282 prom_debug(" alloc_top : %x\n", alloc_top
);
1283 prom_debug(" alloc_top_hi : %x\n", alloc_top_high
);
1284 prom_debug(" rmo_top : %x\n", rmo_top
);
1285 prom_debug(" ram_top : %x\n", ram_top
);
1291 * Parse a "reg" cell
1293 static unsigned long __init
prom_next_cell(int s
, cell_t
**cellp
)
1296 unsigned long r
= 0;
1298 /* Ignore more than 2 cells */
1299 while (s
> sizeof(unsigned long) / 4) {
1303 r
= be32_to_cpu(*p
++);
1307 r
|= be32_to_cpu(*(p
++));
1315 * Very dumb function for adding to the memory reserve list, but
1316 * we don't need anything smarter at this point
1318 * XXX Eventually check for collisions. They should NEVER happen.
1319 * If problems seem to show up, it would be a good start to track
1322 static void __init
reserve_mem(u64 base
, u64 size
)
1324 u64 top
= base
+ size
;
1325 unsigned long cnt
= mem_reserve_cnt
;
1330 /* We need to always keep one empty entry so that we
1331 * have our terminator with "size" set to 0 since we are
1332 * dumb and just copy this entire array to the boot params
1334 base
= _ALIGN_DOWN(base
, PAGE_SIZE
);
1335 top
= _ALIGN_UP(top
, PAGE_SIZE
);
1338 if (cnt
>= (MEM_RESERVE_MAP_SIZE
- 1))
1339 prom_panic("Memory reserve map exhausted !\n");
1340 mem_reserve_map
[cnt
].base
= cpu_to_be64(base
);
1341 mem_reserve_map
[cnt
].size
= cpu_to_be64(size
);
1342 mem_reserve_cnt
= cnt
+ 1;
1346 * Initialize memory allocation mechanism, parse "memory" nodes and
1347 * obtain that way the top of memory and RMO to setup out local allocator
1349 static void __init
prom_init_mem(void)
1352 char *path
, type
[64];
1359 * We iterate the memory nodes to find
1360 * 1) top of RMO (first node)
1363 val
= cpu_to_be32(2);
1364 prom_getprop(prom
.root
, "#address-cells", &val
, sizeof(val
));
1365 rac
= be32_to_cpu(val
);
1366 val
= cpu_to_be32(1);
1367 prom_getprop(prom
.root
, "#size-cells", &val
, sizeof(rsc
));
1368 rsc
= be32_to_cpu(val
);
1369 prom_debug("root_addr_cells: %x\n", rac
);
1370 prom_debug("root_size_cells: %x\n", rsc
);
1372 prom_debug("scanning memory:\n");
1373 path
= prom_scratch
;
1375 for (node
= 0; prom_next_node(&node
); ) {
1377 prom_getprop(node
, "device_type", type
, sizeof(type
));
1381 * CHRP Longtrail machines have no device_type
1382 * on the memory node, so check the name instead...
1384 prom_getprop(node
, "name", type
, sizeof(type
));
1386 if (strcmp(type
, "memory"))
1389 plen
= prom_getprop(node
, "reg", regbuf
, sizeof(regbuf
));
1390 if (plen
> sizeof(regbuf
)) {
1391 prom_printf("memory node too large for buffer !\n");
1392 plen
= sizeof(regbuf
);
1395 endp
= p
+ (plen
/ sizeof(cell_t
));
1398 memset(path
, 0, PROM_SCRATCH_SIZE
);
1399 call_prom("package-to-path", 3, 1, node
, path
, PROM_SCRATCH_SIZE
-1);
1400 prom_debug(" node %s :\n", path
);
1401 #endif /* DEBUG_PROM */
1403 while ((endp
- p
) >= (rac
+ rsc
)) {
1404 unsigned long base
, size
;
1406 base
= prom_next_cell(rac
, &p
);
1407 size
= prom_next_cell(rsc
, &p
);
1411 prom_debug(" %x %x\n", base
, size
);
1412 if (base
== 0 && (of_platform
& PLATFORM_LPAR
))
1414 if ((base
+ size
) > ram_top
)
1415 ram_top
= base
+ size
;
1419 alloc_bottom
= PAGE_ALIGN((unsigned long)&_end
+ 0x4000);
1422 * If prom_memory_limit is set we reduce the upper limits *except* for
1423 * alloc_top_high. This must be the real top of RAM so we can put
1427 alloc_top_high
= ram_top
;
1429 if (prom_memory_limit
) {
1430 if (prom_memory_limit
<= alloc_bottom
) {
1431 prom_printf("Ignoring mem=%x <= alloc_bottom.\n",
1433 prom_memory_limit
= 0;
1434 } else if (prom_memory_limit
>= ram_top
) {
1435 prom_printf("Ignoring mem=%x >= ram_top.\n",
1437 prom_memory_limit
= 0;
1439 ram_top
= prom_memory_limit
;
1440 rmo_top
= min(rmo_top
, prom_memory_limit
);
1445 * Setup our top alloc point, that is top of RMO or top of
1446 * segment 0 when running non-LPAR.
1447 * Some RS64 machines have buggy firmware where claims up at
1448 * 1GB fail. Cap at 768MB as a workaround.
1449 * Since 768MB is plenty of room, and we need to cap to something
1450 * reasonable on 32-bit, cap at 768MB on all machines.
1454 rmo_top
= min(0x30000000ul
, rmo_top
);
1455 alloc_top
= rmo_top
;
1456 alloc_top_high
= ram_top
;
1459 * Check if we have an initrd after the kernel but still inside
1460 * the RMO. If we do move our bottom point to after it.
1462 if (prom_initrd_start
&&
1463 prom_initrd_start
< rmo_top
&&
1464 prom_initrd_end
> alloc_bottom
)
1465 alloc_bottom
= PAGE_ALIGN(prom_initrd_end
);
1467 prom_printf("memory layout at init:\n");
1468 prom_printf(" memory_limit : %x (16 MB aligned)\n", prom_memory_limit
);
1469 prom_printf(" alloc_bottom : %x\n", alloc_bottom
);
1470 prom_printf(" alloc_top : %x\n", alloc_top
);
1471 prom_printf(" alloc_top_hi : %x\n", alloc_top_high
);
1472 prom_printf(" rmo_top : %x\n", rmo_top
);
1473 prom_printf(" ram_top : %x\n", ram_top
);
1476 static void __init
prom_close_stdin(void)
1481 if (prom_getprop(prom
.chosen
, "stdin", &val
, sizeof(val
)) > 0) {
1482 stdin
= be32_to_cpu(val
);
1483 call_prom("close", 1, 0, stdin
);
1487 #ifdef CONFIG_PPC_POWERNV
1489 #ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
1490 static u64 __initdata prom_opal_base
;
1491 static u64 __initdata prom_opal_entry
;
1495 * Allocate room for and instantiate OPAL
1497 static void __init
prom_instantiate_opal(void)
1502 u64 size
= 0, align
= 0x10000;
1506 prom_debug("prom_instantiate_opal: start...\n");
1508 opal_node
= call_prom("finddevice", 1, 1, ADDR("/ibm,opal"));
1509 prom_debug("opal_node: %x\n", opal_node
);
1510 if (!PHANDLE_VALID(opal_node
))
1514 prom_getprop(opal_node
, "opal-runtime-size", &val64
, sizeof(val64
));
1515 size
= be64_to_cpu(val64
);
1519 prom_getprop(opal_node
, "opal-runtime-alignment", &val64
,sizeof(val64
));
1520 align
= be64_to_cpu(val64
);
1522 base
= alloc_down(size
, align
, 0);
1524 prom_printf("OPAL allocation failed !\n");
1528 opal_inst
= call_prom("open", 1, 1, ADDR("/ibm,opal"));
1529 if (!IHANDLE_VALID(opal_inst
)) {
1530 prom_printf("opening opal package failed (%x)\n", opal_inst
);
1534 prom_printf("instantiating opal at 0x%x...", base
);
1536 if (call_prom_ret("call-method", 4, 3, rets
,
1537 ADDR("load-opal-runtime"),
1539 base
>> 32, base
& 0xffffffff) != 0
1540 || (rets
[0] == 0 && rets
[1] == 0)) {
1541 prom_printf(" failed\n");
1544 entry
= (((u64
)rets
[0]) << 32) | rets
[1];
1546 prom_printf(" done\n");
1548 reserve_mem(base
, size
);
1550 prom_debug("opal base = 0x%x\n", base
);
1551 prom_debug("opal align = 0x%x\n", align
);
1552 prom_debug("opal entry = 0x%x\n", entry
);
1553 prom_debug("opal size = 0x%x\n", (long)size
);
1555 prom_setprop(opal_node
, "/ibm,opal", "opal-base-address",
1556 &base
, sizeof(base
));
1557 prom_setprop(opal_node
, "/ibm,opal", "opal-entry-address",
1558 &entry
, sizeof(entry
));
1560 #ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
1561 prom_opal_base
= base
;
1562 prom_opal_entry
= entry
;
1564 prom_debug("prom_instantiate_opal: end...\n");
1567 #endif /* CONFIG_PPC_POWERNV */
1570 * Allocate room for and instantiate RTAS
1572 static void __init
prom_instantiate_rtas(void)
1576 u32 base
, entry
= 0;
1580 prom_debug("prom_instantiate_rtas: start...\n");
1582 rtas_node
= call_prom("finddevice", 1, 1, ADDR("/rtas"));
1583 prom_debug("rtas_node: %x\n", rtas_node
);
1584 if (!PHANDLE_VALID(rtas_node
))
1588 prom_getprop(rtas_node
, "rtas-size", &val
, sizeof(size
));
1589 size
= be32_to_cpu(val
);
1593 base
= alloc_down(size
, PAGE_SIZE
, 0);
1595 prom_panic("Could not allocate memory for RTAS\n");
1597 rtas_inst
= call_prom("open", 1, 1, ADDR("/rtas"));
1598 if (!IHANDLE_VALID(rtas_inst
)) {
1599 prom_printf("opening rtas package failed (%x)\n", rtas_inst
);
1603 prom_printf("instantiating rtas at 0x%x...", base
);
1605 if (call_prom_ret("call-method", 3, 2, &entry
,
1606 ADDR("instantiate-rtas"),
1607 rtas_inst
, base
) != 0
1609 prom_printf(" failed\n");
1612 prom_printf(" done\n");
1614 reserve_mem(base
, size
);
1616 val
= cpu_to_be32(base
);
1617 prom_setprop(rtas_node
, "/rtas", "linux,rtas-base",
1619 val
= cpu_to_be32(entry
);
1620 prom_setprop(rtas_node
, "/rtas", "linux,rtas-entry",
1623 /* Check if it supports "query-cpu-stopped-state" */
1624 if (prom_getprop(rtas_node
, "query-cpu-stopped-state",
1625 &val
, sizeof(val
)) != PROM_ERROR
)
1626 rtas_has_query_cpu_stopped
= true;
1628 prom_debug("rtas base = 0x%x\n", base
);
1629 prom_debug("rtas entry = 0x%x\n", entry
);
1630 prom_debug("rtas size = 0x%x\n", (long)size
);
1632 prom_debug("prom_instantiate_rtas: end...\n");
1637 * Allocate room for and instantiate Stored Measurement Log (SML)
1639 static void __init
prom_instantiate_sml(void)
1641 phandle ibmvtpm_node
;
1642 ihandle ibmvtpm_inst
;
1643 u32 entry
= 0, size
= 0, succ
= 0;
1647 prom_debug("prom_instantiate_sml: start...\n");
1649 ibmvtpm_node
= call_prom("finddevice", 1, 1, ADDR("/vdevice/vtpm"));
1650 prom_debug("ibmvtpm_node: %x\n", ibmvtpm_node
);
1651 if (!PHANDLE_VALID(ibmvtpm_node
))
1654 ibmvtpm_inst
= call_prom("open", 1, 1, ADDR("/vdevice/vtpm"));
1655 if (!IHANDLE_VALID(ibmvtpm_inst
)) {
1656 prom_printf("opening vtpm package failed (%x)\n", ibmvtpm_inst
);
1660 if (prom_getprop(ibmvtpm_node
, "ibm,sml-efi-reformat-supported",
1661 &val
, sizeof(val
)) != PROM_ERROR
) {
1662 if (call_prom_ret("call-method", 2, 2, &succ
,
1663 ADDR("reformat-sml-to-efi-alignment"),
1664 ibmvtpm_inst
) != 0 || succ
== 0) {
1665 prom_printf("Reformat SML to EFI alignment failed\n");
1669 if (call_prom_ret("call-method", 2, 2, &size
,
1670 ADDR("sml-get-allocated-size"),
1671 ibmvtpm_inst
) != 0 || size
== 0) {
1672 prom_printf("SML get allocated size failed\n");
1676 if (call_prom_ret("call-method", 2, 2, &size
,
1677 ADDR("sml-get-handover-size"),
1678 ibmvtpm_inst
) != 0 || size
== 0) {
1679 prom_printf("SML get handover size failed\n");
1684 base
= alloc_down(size
, PAGE_SIZE
, 0);
1686 prom_panic("Could not allocate memory for sml\n");
1688 prom_printf("instantiating sml at 0x%x...", base
);
1690 memset((void *)base
, 0, size
);
1692 if (call_prom_ret("call-method", 4, 2, &entry
,
1693 ADDR("sml-handover"),
1694 ibmvtpm_inst
, size
, base
) != 0 || entry
== 0) {
1695 prom_printf("SML handover failed\n");
1698 prom_printf(" done\n");
1700 reserve_mem(base
, size
);
1702 prom_setprop(ibmvtpm_node
, "/vdevice/vtpm", "linux,sml-base",
1703 &base
, sizeof(base
));
1704 prom_setprop(ibmvtpm_node
, "/vdevice/vtpm", "linux,sml-size",
1705 &size
, sizeof(size
));
1707 prom_debug("sml base = 0x%x\n", base
);
1708 prom_debug("sml size = 0x%x\n", (long)size
);
1710 prom_debug("prom_instantiate_sml: end...\n");
1714 * Allocate room for and initialize TCE tables
1716 #ifdef __BIG_ENDIAN__
1717 static void __init
prom_initialize_tce_table(void)
1721 char compatible
[64], type
[64], model
[64];
1722 char *path
= prom_scratch
;
1724 u32 minalign
, minsize
;
1725 u64 tce_entry
, *tce_entryp
;
1726 u64 local_alloc_top
, local_alloc_bottom
;
1732 prom_debug("starting prom_initialize_tce_table\n");
1734 /* Cache current top of allocs so we reserve a single block */
1735 local_alloc_top
= alloc_top_high
;
1736 local_alloc_bottom
= local_alloc_top
;
1738 /* Search all nodes looking for PHBs. */
1739 for (node
= 0; prom_next_node(&node
); ) {
1743 prom_getprop(node
, "compatible",
1744 compatible
, sizeof(compatible
));
1745 prom_getprop(node
, "device_type", type
, sizeof(type
));
1746 prom_getprop(node
, "model", model
, sizeof(model
));
1748 if ((type
[0] == 0) || (strstr(type
, "pci") == NULL
))
1751 /* Keep the old logic intact to avoid regression. */
1752 if (compatible
[0] != 0) {
1753 if ((strstr(compatible
, "python") == NULL
) &&
1754 (strstr(compatible
, "Speedwagon") == NULL
) &&
1755 (strstr(compatible
, "Winnipeg") == NULL
))
1757 } else if (model
[0] != 0) {
1758 if ((strstr(model
, "ython") == NULL
) &&
1759 (strstr(model
, "peedwagon") == NULL
) &&
1760 (strstr(model
, "innipeg") == NULL
))
1764 if (prom_getprop(node
, "tce-table-minalign", &minalign
,
1765 sizeof(minalign
)) == PROM_ERROR
)
1767 if (prom_getprop(node
, "tce-table-minsize", &minsize
,
1768 sizeof(minsize
)) == PROM_ERROR
)
1769 minsize
= 4UL << 20;
1772 * Even though we read what OF wants, we just set the table
1773 * size to 4 MB. This is enough to map 2GB of PCI DMA space.
1774 * By doing this, we avoid the pitfalls of trying to DMA to
1775 * MMIO space and the DMA alias hole.
1777 * On POWER4, firmware sets the TCE region by assuming
1778 * each TCE table is 8MB. Using this memory for anything
1779 * else will impact performance, so we always allocate 8MB.
1782 if (pvr_version_is(PVR_POWER4
) || pvr_version_is(PVR_POWER4p
))
1783 minsize
= 8UL << 20;
1785 minsize
= 4UL << 20;
1787 /* Align to the greater of the align or size */
1788 align
= max(minalign
, minsize
);
1789 base
= alloc_down(minsize
, align
, 1);
1791 prom_panic("ERROR, cannot find space for TCE table.\n");
1792 if (base
< local_alloc_bottom
)
1793 local_alloc_bottom
= base
;
1795 /* It seems OF doesn't null-terminate the path :-( */
1796 memset(path
, 0, PROM_SCRATCH_SIZE
);
1797 /* Call OF to setup the TCE hardware */
1798 if (call_prom("package-to-path", 3, 1, node
,
1799 path
, PROM_SCRATCH_SIZE
-1) == PROM_ERROR
) {
1800 prom_printf("package-to-path failed\n");
1803 /* Save away the TCE table attributes for later use. */
1804 prom_setprop(node
, path
, "linux,tce-base", &base
, sizeof(base
));
1805 prom_setprop(node
, path
, "linux,tce-size", &minsize
, sizeof(minsize
));
1807 prom_debug("TCE table: %s\n", path
);
1808 prom_debug("\tnode = 0x%x\n", node
);
1809 prom_debug("\tbase = 0x%x\n", base
);
1810 prom_debug("\tsize = 0x%x\n", minsize
);
1812 /* Initialize the table to have a one-to-one mapping
1813 * over the allocated size.
1815 tce_entryp
= (u64
*)base
;
1816 for (i
= 0; i
< (minsize
>> 3) ;tce_entryp
++, i
++) {
1817 tce_entry
= (i
<< PAGE_SHIFT
);
1819 *tce_entryp
= tce_entry
;
1822 prom_printf("opening PHB %s", path
);
1823 phb_node
= call_prom("open", 1, 1, path
);
1825 prom_printf("... failed\n");
1827 prom_printf("... done\n");
1829 call_prom("call-method", 6, 0, ADDR("set-64-bit-addressing"),
1830 phb_node
, -1, minsize
,
1831 (u32
) base
, (u32
) (base
>> 32));
1832 call_prom("close", 1, 0, phb_node
);
1835 reserve_mem(local_alloc_bottom
, local_alloc_top
- local_alloc_bottom
);
1837 /* These are only really needed if there is a memory limit in
1838 * effect, but we don't know so export them always. */
1839 prom_tce_alloc_start
= local_alloc_bottom
;
1840 prom_tce_alloc_end
= local_alloc_top
;
1842 /* Flag the first invalid entry */
1843 prom_debug("ending prom_initialize_tce_table\n");
1845 #endif /* __BIG_ENDIAN__ */
1846 #endif /* CONFIG_PPC64 */
1849 * With CHRP SMP we need to use the OF to start the other processors.
1850 * We can't wait until smp_boot_cpus (the OF is trashed by then)
1851 * so we have to put the processors into a holding pattern controlled
1852 * by the kernel (not OF) before we destroy the OF.
1854 * This uses a chunk of low memory, puts some holding pattern
1855 * code there and sends the other processors off to there until
1856 * smp_boot_cpus tells them to do something. The holding pattern
1857 * checks that address until its cpu # is there, when it is that
1858 * cpu jumps to __secondary_start(). smp_boot_cpus() takes care
1859 * of setting those values.
1861 * We also use physical address 0x4 here to tell when a cpu
1862 * is in its holding pattern code.
1867 * We want to reference the copy of __secondary_hold_* in the
1868 * 0 - 0x100 address range
1870 #define LOW_ADDR(x) (((unsigned long) &(x)) & 0xff)
1872 static void __init
prom_hold_cpus(void)
1877 unsigned long *spinloop
1878 = (void *) LOW_ADDR(__secondary_hold_spinloop
);
1879 unsigned long *acknowledge
1880 = (void *) LOW_ADDR(__secondary_hold_acknowledge
);
1881 unsigned long secondary_hold
= LOW_ADDR(__secondary_hold
);
1884 * On pseries, if RTAS supports "query-cpu-stopped-state",
1885 * we skip this stage, the CPUs will be started by the
1886 * kernel using RTAS.
1888 if ((of_platform
== PLATFORM_PSERIES
||
1889 of_platform
== PLATFORM_PSERIES_LPAR
) &&
1890 rtas_has_query_cpu_stopped
) {
1891 prom_printf("prom_hold_cpus: skipped\n");
1895 prom_debug("prom_hold_cpus: start...\n");
1896 prom_debug(" 1) spinloop = 0x%x\n", (unsigned long)spinloop
);
1897 prom_debug(" 1) *spinloop = 0x%x\n", *spinloop
);
1898 prom_debug(" 1) acknowledge = 0x%x\n",
1899 (unsigned long)acknowledge
);
1900 prom_debug(" 1) *acknowledge = 0x%x\n", *acknowledge
);
1901 prom_debug(" 1) secondary_hold = 0x%x\n", secondary_hold
);
1903 /* Set the common spinloop variable, so all of the secondary cpus
1904 * will block when they are awakened from their OF spinloop.
1905 * This must occur for both SMP and non SMP kernels, since OF will
1906 * be trashed when we move the kernel.
1911 for (node
= 0; prom_next_node(&node
); ) {
1912 unsigned int cpu_no
;
1916 prom_getprop(node
, "device_type", type
, sizeof(type
));
1917 if (strcmp(type
, "cpu") != 0)
1920 /* Skip non-configured cpus. */
1921 if (prom_getprop(node
, "status", type
, sizeof(type
)) > 0)
1922 if (strcmp(type
, "okay") != 0)
1925 reg
= cpu_to_be32(-1); /* make sparse happy */
1926 prom_getprop(node
, "reg", ®
, sizeof(reg
));
1927 cpu_no
= be32_to_cpu(reg
);
1929 prom_debug("cpu hw idx = %lu\n", cpu_no
);
1931 /* Init the acknowledge var which will be reset by
1932 * the secondary cpu when it awakens from its OF
1935 *acknowledge
= (unsigned long)-1;
1937 if (cpu_no
!= prom
.cpu
) {
1938 /* Primary Thread of non-boot cpu or any thread */
1939 prom_printf("starting cpu hw idx %lu... ", cpu_no
);
1940 call_prom("start-cpu", 3, 0, node
,
1941 secondary_hold
, cpu_no
);
1943 for (i
= 0; (i
< 100000000) &&
1944 (*acknowledge
== ((unsigned long)-1)); i
++ )
1947 if (*acknowledge
== cpu_no
)
1948 prom_printf("done\n");
1950 prom_printf("failed: %x\n", *acknowledge
);
1954 prom_printf("boot cpu hw idx %lu\n", cpu_no
);
1955 #endif /* CONFIG_SMP */
1958 prom_debug("prom_hold_cpus: end...\n");
1962 static void __init
prom_init_client_services(unsigned long pp
)
1964 /* Get a handle to the prom entry point before anything else */
1967 /* get a handle for the stdout device */
1968 prom
.chosen
= call_prom("finddevice", 1, 1, ADDR("/chosen"));
1969 if (!PHANDLE_VALID(prom
.chosen
))
1970 prom_panic("cannot find chosen"); /* msg won't be printed :( */
1972 /* get device tree root */
1973 prom
.root
= call_prom("finddevice", 1, 1, ADDR("/"));
1974 if (!PHANDLE_VALID(prom
.root
))
1975 prom_panic("cannot find device tree root"); /* msg won't be printed :( */
1982 * For really old powermacs, we need to map things we claim.
1983 * For that, we need the ihandle of the mmu.
1984 * Also, on the longtrail, we need to work around other bugs.
1986 static void __init
prom_find_mmu(void)
1991 oprom
= call_prom("finddevice", 1, 1, ADDR("/openprom"));
1992 if (!PHANDLE_VALID(oprom
))
1994 if (prom_getprop(oprom
, "model", version
, sizeof(version
)) <= 0)
1996 version
[sizeof(version
) - 1] = 0;
1997 /* XXX might need to add other versions here */
1998 if (strcmp(version
, "Open Firmware, 1.0.5") == 0)
1999 of_workarounds
= OF_WA_CLAIM
;
2000 else if (strncmp(version
, "FirmWorks,3.", 12) == 0) {
2001 of_workarounds
= OF_WA_CLAIM
| OF_WA_LONGTRAIL
;
2002 call_prom("interpret", 1, 1, "dev /memory 0 to allow-reclaim");
2005 prom
.memory
= call_prom("open", 1, 1, ADDR("/memory"));
2006 prom_getprop(prom
.chosen
, "mmu", &prom
.mmumap
,
2007 sizeof(prom
.mmumap
));
2008 prom
.mmumap
= be32_to_cpu(prom
.mmumap
);
2009 if (!IHANDLE_VALID(prom
.memory
) || !IHANDLE_VALID(prom
.mmumap
))
2010 of_workarounds
&= ~OF_WA_CLAIM
; /* hmmm */
2013 #define prom_find_mmu()
2016 static void __init
prom_init_stdout(void)
2018 char *path
= of_stdout_device
;
2020 phandle stdout_node
;
2023 if (prom_getprop(prom
.chosen
, "stdout", &val
, sizeof(val
)) <= 0)
2024 prom_panic("cannot find stdout");
2026 prom
.stdout
= be32_to_cpu(val
);
2028 /* Get the full OF pathname of the stdout device */
2029 memset(path
, 0, 256);
2030 call_prom("instance-to-path", 3, 1, prom
.stdout
, path
, 255);
2031 prom_printf("OF stdout device is: %s\n", of_stdout_device
);
2032 prom_setprop(prom
.chosen
, "/chosen", "linux,stdout-path",
2033 path
, strlen(path
) + 1);
2035 /* instance-to-package fails on PA-Semi */
2036 stdout_node
= call_prom("instance-to-package", 1, 1, prom
.stdout
);
2037 if (stdout_node
!= PROM_ERROR
) {
2038 val
= cpu_to_be32(stdout_node
);
2039 prom_setprop(prom
.chosen
, "/chosen", "linux,stdout-package",
2042 /* If it's a display, note it */
2043 memset(type
, 0, sizeof(type
));
2044 prom_getprop(stdout_node
, "device_type", type
, sizeof(type
));
2045 if (strcmp(type
, "display") == 0)
2046 prom_setprop(stdout_node
, path
, "linux,boot-display", NULL
, 0);
2050 static int __init
prom_find_machine_type(void)
2059 /* Look for a PowerMac or a Cell */
2060 len
= prom_getprop(prom
.root
, "compatible",
2061 compat
, sizeof(compat
)-1);
2065 char *p
= &compat
[i
];
2069 if (strstr(p
, "Power Macintosh") ||
2070 strstr(p
, "MacRISC"))
2071 return PLATFORM_POWERMAC
;
2073 /* We must make sure we don't detect the IBM Cell
2074 * blades as pSeries due to some firmware issues,
2077 if (strstr(p
, "IBM,CBEA") ||
2078 strstr(p
, "IBM,CPBW-1.0"))
2079 return PLATFORM_GENERIC
;
2080 #endif /* CONFIG_PPC64 */
2085 /* Try to detect OPAL */
2086 if (PHANDLE_VALID(call_prom("finddevice", 1, 1, ADDR("/ibm,opal"))))
2087 return PLATFORM_OPAL
;
2089 /* Try to figure out if it's an IBM pSeries or any other
2090 * PAPR compliant platform. We assume it is if :
2091 * - /device_type is "chrp" (please, do NOT use that for future
2095 len
= prom_getprop(prom
.root
, "device_type",
2096 compat
, sizeof(compat
)-1);
2098 return PLATFORM_GENERIC
;
2099 if (strcmp(compat
, "chrp"))
2100 return PLATFORM_GENERIC
;
2102 /* Default to pSeries. We need to know if we are running LPAR */
2103 rtas
= call_prom("finddevice", 1, 1, ADDR("/rtas"));
2104 if (!PHANDLE_VALID(rtas
))
2105 return PLATFORM_GENERIC
;
2106 x
= prom_getproplen(rtas
, "ibm,hypertas-functions");
2107 if (x
!= PROM_ERROR
) {
2108 prom_debug("Hypertas detected, assuming LPAR !\n");
2109 return PLATFORM_PSERIES_LPAR
;
2111 return PLATFORM_PSERIES
;
2113 return PLATFORM_GENERIC
;
2117 static int __init
prom_set_color(ihandle ih
, int i
, int r
, int g
, int b
)
2119 return call_prom("call-method", 6, 1, ADDR("color!"), ih
, i
, b
, g
, r
);
2123 * If we have a display that we don't know how to drive,
2124 * we will want to try to execute OF's open method for it
2125 * later. However, OF will probably fall over if we do that
2126 * we've taken over the MMU.
2127 * So we check whether we will need to open the display,
2128 * and if so, open it now.
2130 static void __init
prom_check_displays(void)
2132 char type
[16], *path
;
2137 static unsigned char default_colors
[] = {
2155 const unsigned char *clut
;
2157 prom_debug("Looking for displays\n");
2158 for (node
= 0; prom_next_node(&node
); ) {
2159 memset(type
, 0, sizeof(type
));
2160 prom_getprop(node
, "device_type", type
, sizeof(type
));
2161 if (strcmp(type
, "display") != 0)
2164 /* It seems OF doesn't null-terminate the path :-( */
2165 path
= prom_scratch
;
2166 memset(path
, 0, PROM_SCRATCH_SIZE
);
2169 * leave some room at the end of the path for appending extra
2172 if (call_prom("package-to-path", 3, 1, node
, path
,
2173 PROM_SCRATCH_SIZE
-10) == PROM_ERROR
)
2175 prom_printf("found display : %s, opening... ", path
);
2177 ih
= call_prom("open", 1, 1, path
);
2179 prom_printf("failed\n");
2184 prom_printf("done\n");
2185 prom_setprop(node
, path
, "linux,opened", NULL
, 0);
2187 /* Setup a usable color table when the appropriate
2188 * method is available. Should update this to set-colors */
2189 clut
= default_colors
;
2190 for (i
= 0; i
< 16; i
++, clut
+= 3)
2191 if (prom_set_color(ih
, i
, clut
[0], clut
[1],
2195 #ifdef CONFIG_LOGO_LINUX_CLUT224
2196 clut
= PTRRELOC(logo_linux_clut224
.clut
);
2197 for (i
= 0; i
< logo_linux_clut224
.clutsize
; i
++, clut
+= 3)
2198 if (prom_set_color(ih
, i
+ 32, clut
[0], clut
[1],
2201 #endif /* CONFIG_LOGO_LINUX_CLUT224 */
2203 #ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX
2204 if (prom_getprop(node
, "linux,boot-display", NULL
, 0) !=
2206 u32 width
, height
, pitch
, addr
;
2208 prom_printf("Setting btext !\n");
2209 prom_getprop(node
, "width", &width
, 4);
2210 prom_getprop(node
, "height", &height
, 4);
2211 prom_getprop(node
, "linebytes", &pitch
, 4);
2212 prom_getprop(node
, "address", &addr
, 4);
2213 prom_printf("W=%d H=%d LB=%d addr=0x%x\n",
2214 width
, height
, pitch
, addr
);
2215 btext_setup_display(width
, height
, 8, pitch
, addr
);
2217 #endif /* CONFIG_PPC_EARLY_DEBUG_BOOTX */
2222 /* Return (relocated) pointer to this much memory: moves initrd if reqd. */
2223 static void __init
*make_room(unsigned long *mem_start
, unsigned long *mem_end
,
2224 unsigned long needed
, unsigned long align
)
2228 *mem_start
= _ALIGN(*mem_start
, align
);
2229 while ((*mem_start
+ needed
) > *mem_end
) {
2230 unsigned long room
, chunk
;
2232 prom_debug("Chunk exhausted, claiming more at %x...\n",
2234 room
= alloc_top
- alloc_bottom
;
2235 if (room
> DEVTREE_CHUNK_SIZE
)
2236 room
= DEVTREE_CHUNK_SIZE
;
2237 if (room
< PAGE_SIZE
)
2238 prom_panic("No memory for flatten_device_tree "
2240 chunk
= alloc_up(room
, 0);
2242 prom_panic("No memory for flatten_device_tree "
2243 "(claim failed)\n");
2244 *mem_end
= chunk
+ room
;
2247 ret
= (void *)*mem_start
;
2248 *mem_start
+= needed
;
2253 #define dt_push_token(token, mem_start, mem_end) do { \
2254 void *room = make_room(mem_start, mem_end, 4, 4); \
2255 *(__be32 *)room = cpu_to_be32(token); \
2258 static unsigned long __init
dt_find_string(char *str
)
2262 s
= os
= (char *)dt_string_start
;
2264 while (s
< (char *)dt_string_end
) {
2265 if (strcmp(s
, str
) == 0)
2273 * The Open Firmware 1275 specification states properties must be 31 bytes or
2274 * less, however not all firmwares obey this. Make it 64 bytes to be safe.
2276 #define MAX_PROPERTY_NAME 64
2278 static void __init
scan_dt_build_strings(phandle node
,
2279 unsigned long *mem_start
,
2280 unsigned long *mem_end
)
2282 char *prev_name
, *namep
, *sstart
;
2286 sstart
= (char *)dt_string_start
;
2288 /* get and store all property names */
2291 /* 64 is max len of name including nul. */
2292 namep
= make_room(mem_start
, mem_end
, MAX_PROPERTY_NAME
, 1);
2293 if (call_prom("nextprop", 3, 1, node
, prev_name
, namep
) != 1) {
2294 /* No more nodes: unwind alloc */
2295 *mem_start
= (unsigned long)namep
;
2300 if (strcmp(namep
, "name") == 0) {
2301 *mem_start
= (unsigned long)namep
;
2305 /* get/create string entry */
2306 soff
= dt_find_string(namep
);
2308 *mem_start
= (unsigned long)namep
;
2309 namep
= sstart
+ soff
;
2311 /* Trim off some if we can */
2312 *mem_start
= (unsigned long)namep
+ strlen(namep
) + 1;
2313 dt_string_end
= *mem_start
;
2318 /* do all our children */
2319 child
= call_prom("child", 1, 1, node
);
2320 while (child
!= 0) {
2321 scan_dt_build_strings(child
, mem_start
, mem_end
);
2322 child
= call_prom("peer", 1, 1, child
);
2326 static void __init
scan_dt_build_struct(phandle node
, unsigned long *mem_start
,
2327 unsigned long *mem_end
)
2330 char *namep
, *prev_name
, *sstart
, *p
, *ep
, *lp
, *path
;
2332 unsigned char *valp
;
2333 static char pname
[MAX_PROPERTY_NAME
];
2334 int l
, room
, has_phandle
= 0;
2336 dt_push_token(OF_DT_BEGIN_NODE
, mem_start
, mem_end
);
2338 /* get the node's full name */
2339 namep
= (char *)*mem_start
;
2340 room
= *mem_end
- *mem_start
;
2343 l
= call_prom("package-to-path", 3, 1, node
, namep
, room
);
2345 /* Didn't fit? Get more room. */
2347 if (l
>= *mem_end
- *mem_start
)
2348 namep
= make_room(mem_start
, mem_end
, l
+1, 1);
2349 call_prom("package-to-path", 3, 1, node
, namep
, l
);
2353 /* Fixup an Apple bug where they have bogus \0 chars in the
2354 * middle of the path in some properties, and extract
2355 * the unit name (everything after the last '/').
2357 for (lp
= p
= namep
, ep
= namep
+ l
; p
< ep
; p
++) {
2364 *mem_start
= _ALIGN((unsigned long)lp
+ 1, 4);
2367 /* get it again for debugging */
2368 path
= prom_scratch
;
2369 memset(path
, 0, PROM_SCRATCH_SIZE
);
2370 call_prom("package-to-path", 3, 1, node
, path
, PROM_SCRATCH_SIZE
-1);
2372 /* get and store all properties */
2374 sstart
= (char *)dt_string_start
;
2376 if (call_prom("nextprop", 3, 1, node
, prev_name
,
2381 if (strcmp(pname
, "name") == 0) {
2386 /* find string offset */
2387 soff
= dt_find_string(pname
);
2389 prom_printf("WARNING: Can't find string index for"
2390 " <%s>, node %s\n", pname
, path
);
2393 prev_name
= sstart
+ soff
;
2396 l
= call_prom("getproplen", 2, 1, node
, pname
);
2399 if (l
== PROM_ERROR
)
2402 /* push property head */
2403 dt_push_token(OF_DT_PROP
, mem_start
, mem_end
);
2404 dt_push_token(l
, mem_start
, mem_end
);
2405 dt_push_token(soff
, mem_start
, mem_end
);
2407 /* push property content */
2408 valp
= make_room(mem_start
, mem_end
, l
, 4);
2409 call_prom("getprop", 4, 1, node
, pname
, valp
, l
);
2410 *mem_start
= _ALIGN(*mem_start
, 4);
2412 if (!strcmp(pname
, "phandle"))
2416 /* Add a "linux,phandle" property if no "phandle" property already
2417 * existed (can happen with OPAL)
2420 soff
= dt_find_string("linux,phandle");
2422 prom_printf("WARNING: Can't find string index for"
2423 " <linux-phandle> node %s\n", path
);
2425 dt_push_token(OF_DT_PROP
, mem_start
, mem_end
);
2426 dt_push_token(4, mem_start
, mem_end
);
2427 dt_push_token(soff
, mem_start
, mem_end
);
2428 valp
= make_room(mem_start
, mem_end
, 4, 4);
2429 *(__be32
*)valp
= cpu_to_be32(node
);
2433 /* do all our children */
2434 child
= call_prom("child", 1, 1, node
);
2435 while (child
!= 0) {
2436 scan_dt_build_struct(child
, mem_start
, mem_end
);
2437 child
= call_prom("peer", 1, 1, child
);
2440 dt_push_token(OF_DT_END_NODE
, mem_start
, mem_end
);
2443 static void __init
flatten_device_tree(void)
2446 unsigned long mem_start
, mem_end
, room
;
2447 struct boot_param_header
*hdr
;
2452 * Check how much room we have between alloc top & bottom (+/- a
2453 * few pages), crop to 1MB, as this is our "chunk" size
2455 room
= alloc_top
- alloc_bottom
- 0x4000;
2456 if (room
> DEVTREE_CHUNK_SIZE
)
2457 room
= DEVTREE_CHUNK_SIZE
;
2458 prom_debug("starting device tree allocs at %x\n", alloc_bottom
);
2460 /* Now try to claim that */
2461 mem_start
= (unsigned long)alloc_up(room
, PAGE_SIZE
);
2463 prom_panic("Can't allocate initial device-tree chunk\n");
2464 mem_end
= mem_start
+ room
;
2466 /* Get root of tree */
2467 root
= call_prom("peer", 1, 1, (phandle
)0);
2468 if (root
== (phandle
)0)
2469 prom_panic ("couldn't get device tree root\n");
2471 /* Build header and make room for mem rsv map */
2472 mem_start
= _ALIGN(mem_start
, 4);
2473 hdr
= make_room(&mem_start
, &mem_end
,
2474 sizeof(struct boot_param_header
), 4);
2475 dt_header_start
= (unsigned long)hdr
;
2476 rsvmap
= make_room(&mem_start
, &mem_end
, sizeof(mem_reserve_map
), 8);
2478 /* Start of strings */
2479 mem_start
= PAGE_ALIGN(mem_start
);
2480 dt_string_start
= mem_start
;
2481 mem_start
+= 4; /* hole */
2483 /* Add "linux,phandle" in there, we'll need it */
2484 namep
= make_room(&mem_start
, &mem_end
, 16, 1);
2485 strcpy(namep
, "linux,phandle");
2486 mem_start
= (unsigned long)namep
+ strlen(namep
) + 1;
2488 /* Build string array */
2489 prom_printf("Building dt strings...\n");
2490 scan_dt_build_strings(root
, &mem_start
, &mem_end
);
2491 dt_string_end
= mem_start
;
2493 /* Build structure */
2494 mem_start
= PAGE_ALIGN(mem_start
);
2495 dt_struct_start
= mem_start
;
2496 prom_printf("Building dt structure...\n");
2497 scan_dt_build_struct(root
, &mem_start
, &mem_end
);
2498 dt_push_token(OF_DT_END
, &mem_start
, &mem_end
);
2499 dt_struct_end
= PAGE_ALIGN(mem_start
);
2502 hdr
->boot_cpuid_phys
= cpu_to_be32(prom
.cpu
);
2503 hdr
->magic
= cpu_to_be32(OF_DT_HEADER
);
2504 hdr
->totalsize
= cpu_to_be32(dt_struct_end
- dt_header_start
);
2505 hdr
->off_dt_struct
= cpu_to_be32(dt_struct_start
- dt_header_start
);
2506 hdr
->off_dt_strings
= cpu_to_be32(dt_string_start
- dt_header_start
);
2507 hdr
->dt_strings_size
= cpu_to_be32(dt_string_end
- dt_string_start
);
2508 hdr
->off_mem_rsvmap
= cpu_to_be32(((unsigned long)rsvmap
) - dt_header_start
);
2509 hdr
->version
= cpu_to_be32(OF_DT_VERSION
);
2510 /* Version 16 is not backward compatible */
2511 hdr
->last_comp_version
= cpu_to_be32(0x10);
2513 /* Copy the reserve map in */
2514 memcpy(rsvmap
, mem_reserve_map
, sizeof(mem_reserve_map
));
2519 prom_printf("reserved memory map:\n");
2520 for (i
= 0; i
< mem_reserve_cnt
; i
++)
2521 prom_printf(" %x - %x\n",
2522 be64_to_cpu(mem_reserve_map
[i
].base
),
2523 be64_to_cpu(mem_reserve_map
[i
].size
));
2526 /* Bump mem_reserve_cnt to cause further reservations to fail
2527 * since it's too late.
2529 mem_reserve_cnt
= MEM_RESERVE_MAP_SIZE
;
2531 prom_printf("Device tree strings 0x%x -> 0x%x\n",
2532 dt_string_start
, dt_string_end
);
2533 prom_printf("Device tree struct 0x%x -> 0x%x\n",
2534 dt_struct_start
, dt_struct_end
);
2537 #ifdef CONFIG_PPC_MAPLE
2538 /* PIBS Version 1.05.0000 04/26/2005 has an incorrect /ht/isa/ranges property.
2539 * The values are bad, and it doesn't even have the right number of cells. */
2540 static void __init
fixup_device_tree_maple(void)
2543 u32 rloc
= 0x01002000; /* IO space; PCI device = 4 */
2547 name
= "/ht@0/isa@4";
2548 isa
= call_prom("finddevice", 1, 1, ADDR(name
));
2549 if (!PHANDLE_VALID(isa
)) {
2550 name
= "/ht@0/isa@6";
2551 isa
= call_prom("finddevice", 1, 1, ADDR(name
));
2552 rloc
= 0x01003000; /* IO space; PCI device = 6 */
2554 if (!PHANDLE_VALID(isa
))
2557 if (prom_getproplen(isa
, "ranges") != 12)
2559 if (prom_getprop(isa
, "ranges", isa_ranges
, sizeof(isa_ranges
))
2563 if (isa_ranges
[0] != 0x1 ||
2564 isa_ranges
[1] != 0xf4000000 ||
2565 isa_ranges
[2] != 0x00010000)
2568 prom_printf("Fixing up bogus ISA range on Maple/Apache...\n");
2570 isa_ranges
[0] = 0x1;
2571 isa_ranges
[1] = 0x0;
2572 isa_ranges
[2] = rloc
;
2573 isa_ranges
[3] = 0x0;
2574 isa_ranges
[4] = 0x0;
2575 isa_ranges
[5] = 0x00010000;
2576 prom_setprop(isa
, name
, "ranges",
2577 isa_ranges
, sizeof(isa_ranges
));
2580 #define CPC925_MC_START 0xf8000000
2581 #define CPC925_MC_LENGTH 0x1000000
2582 /* The values for memory-controller don't have right number of cells */
2583 static void __init
fixup_device_tree_maple_memory_controller(void)
2587 char *name
= "/hostbridge@f8000000";
2590 mc
= call_prom("finddevice", 1, 1, ADDR(name
));
2591 if (!PHANDLE_VALID(mc
))
2594 if (prom_getproplen(mc
, "reg") != 8)
2597 prom_getprop(prom
.root
, "#address-cells", &ac
, sizeof(ac
));
2598 prom_getprop(prom
.root
, "#size-cells", &sc
, sizeof(sc
));
2599 if ((ac
!= 2) || (sc
!= 2))
2602 if (prom_getprop(mc
, "reg", mc_reg
, sizeof(mc_reg
)) == PROM_ERROR
)
2605 if (mc_reg
[0] != CPC925_MC_START
|| mc_reg
[1] != CPC925_MC_LENGTH
)
2608 prom_printf("Fixing up bogus hostbridge on Maple...\n");
2611 mc_reg
[1] = CPC925_MC_START
;
2613 mc_reg
[3] = CPC925_MC_LENGTH
;
2614 prom_setprop(mc
, name
, "reg", mc_reg
, sizeof(mc_reg
));
2617 #define fixup_device_tree_maple()
2618 #define fixup_device_tree_maple_memory_controller()
2621 #ifdef CONFIG_PPC_CHRP
2623 * Pegasos and BriQ lacks the "ranges" property in the isa node
2624 * Pegasos needs decimal IRQ 14/15, not hexadecimal
2625 * Pegasos has the IDE configured in legacy mode, but advertised as native
2627 static void __init
fixup_device_tree_chrp(void)
2631 u32 rloc
= 0x01006000; /* IO space; PCI device = 12 */
2635 name
= "/pci@80000000/isa@c";
2636 ph
= call_prom("finddevice", 1, 1, ADDR(name
));
2637 if (!PHANDLE_VALID(ph
)) {
2638 name
= "/pci@ff500000/isa@6";
2639 ph
= call_prom("finddevice", 1, 1, ADDR(name
));
2640 rloc
= 0x01003000; /* IO space; PCI device = 6 */
2642 if (PHANDLE_VALID(ph
)) {
2643 rc
= prom_getproplen(ph
, "ranges");
2644 if (rc
== 0 || rc
== PROM_ERROR
) {
2645 prom_printf("Fixing up missing ISA range on Pegasos...\n");
2652 prop
[5] = 0x00010000;
2653 prom_setprop(ph
, name
, "ranges", prop
, sizeof(prop
));
2657 name
= "/pci@80000000/ide@C,1";
2658 ph
= call_prom("finddevice", 1, 1, ADDR(name
));
2659 if (PHANDLE_VALID(ph
)) {
2660 prom_printf("Fixing up IDE interrupt on Pegasos...\n");
2663 prom_setprop(ph
, name
, "interrupts", prop
, 2*sizeof(u32
));
2664 prom_printf("Fixing up IDE class-code on Pegasos...\n");
2665 rc
= prom_getprop(ph
, "class-code", prop
, sizeof(u32
));
2666 if (rc
== sizeof(u32
)) {
2668 prom_setprop(ph
, name
, "class-code", prop
, sizeof(u32
));
2673 #define fixup_device_tree_chrp()
2676 #if defined(CONFIG_PPC64) && defined(CONFIG_PPC_PMAC)
2677 static void __init
fixup_device_tree_pmac(void)
2679 phandle u3
, i2c
, mpic
;
2684 /* Some G5s have a missing interrupt definition, fix it up here */
2685 u3
= call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000"));
2686 if (!PHANDLE_VALID(u3
))
2688 i2c
= call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/i2c@f8001000"));
2689 if (!PHANDLE_VALID(i2c
))
2691 mpic
= call_prom("finddevice", 1, 1, ADDR("/u3@0,f8000000/mpic@f8040000"));
2692 if (!PHANDLE_VALID(mpic
))
2695 /* check if proper rev of u3 */
2696 if (prom_getprop(u3
, "device-rev", &u3_rev
, sizeof(u3_rev
))
2699 if (u3_rev
< 0x35 || u3_rev
> 0x39)
2701 /* does it need fixup ? */
2702 if (prom_getproplen(i2c
, "interrupts") > 0)
2705 prom_printf("fixing up bogus interrupts for u3 i2c...\n");
2707 /* interrupt on this revision of u3 is number 0 and level */
2710 prom_setprop(i2c
, "/u3@0,f8000000/i2c@f8001000", "interrupts",
2711 &interrupts
, sizeof(interrupts
));
2713 prom_setprop(i2c
, "/u3@0,f8000000/i2c@f8001000", "interrupt-parent",
2714 &parent
, sizeof(parent
));
2717 #define fixup_device_tree_pmac()
2720 #ifdef CONFIG_PPC_EFIKA
2722 * The MPC5200 FEC driver requires an phy-handle property to tell it how
2723 * to talk to the phy. If the phy-handle property is missing, then this
2724 * function is called to add the appropriate nodes and link it to the
2727 static void __init
fixup_device_tree_efika_add_phy(void)
2733 /* Check if /builtin/ethernet exists - bail if it doesn't */
2734 node
= call_prom("finddevice", 1, 1, ADDR("/builtin/ethernet"));
2735 if (!PHANDLE_VALID(node
))
2738 /* Check if the phy-handle property exists - bail if it does */
2739 rv
= prom_getprop(node
, "phy-handle", prop
, sizeof(prop
));
2744 * At this point the ethernet device doesn't have a phy described.
2745 * Now we need to add the missing phy node and linkage
2748 /* Check for an MDIO bus node - if missing then create one */
2749 node
= call_prom("finddevice", 1, 1, ADDR("/builtin/mdio"));
2750 if (!PHANDLE_VALID(node
)) {
2751 prom_printf("Adding Ethernet MDIO node\n");
2752 call_prom("interpret", 1, 1,
2753 " s\" /builtin\" find-device"
2755 " 1 encode-int s\" #address-cells\" property"
2756 " 0 encode-int s\" #size-cells\" property"
2757 " s\" mdio\" device-name"
2758 " s\" fsl,mpc5200b-mdio\" encode-string"
2759 " s\" compatible\" property"
2760 " 0xf0003000 0x400 reg"
2762 " 0x5 encode-int encode+"
2763 " 0x3 encode-int encode+"
2764 " s\" interrupts\" property"
2768 /* Check for a PHY device node - if missing then create one and
2769 * give it's phandle to the ethernet node */
2770 node
= call_prom("finddevice", 1, 1,
2771 ADDR("/builtin/mdio/ethernet-phy"));
2772 if (!PHANDLE_VALID(node
)) {
2773 prom_printf("Adding Ethernet PHY node\n");
2774 call_prom("interpret", 1, 1,
2775 " s\" /builtin/mdio\" find-device"
2777 " s\" ethernet-phy\" device-name"
2778 " 0x10 encode-int s\" reg\" property"
2782 " s\" /builtin/ethernet\" find-device"
2784 " s\" phy-handle\" property"
2789 static void __init
fixup_device_tree_efika(void)
2791 int sound_irq
[3] = { 2, 2, 0 };
2792 int bcomm_irq
[3*16] = { 3,0,0, 3,1,0, 3,2,0, 3,3,0,
2793 3,4,0, 3,5,0, 3,6,0, 3,7,0,
2794 3,8,0, 3,9,0, 3,10,0, 3,11,0,
2795 3,12,0, 3,13,0, 3,14,0, 3,15,0 };
2800 /* Check if we're really running on a EFIKA */
2801 node
= call_prom("finddevice", 1, 1, ADDR("/"));
2802 if (!PHANDLE_VALID(node
))
2805 rv
= prom_getprop(node
, "model", prop
, sizeof(prop
));
2806 if (rv
== PROM_ERROR
)
2808 if (strcmp(prop
, "EFIKA5K2"))
2811 prom_printf("Applying EFIKA device tree fixups\n");
2813 /* Claiming to be 'chrp' is death */
2814 node
= call_prom("finddevice", 1, 1, ADDR("/"));
2815 rv
= prom_getprop(node
, "device_type", prop
, sizeof(prop
));
2816 if (rv
!= PROM_ERROR
&& (strcmp(prop
, "chrp") == 0))
2817 prom_setprop(node
, "/", "device_type", "efika", sizeof("efika"));
2819 /* CODEGEN,description is exposed in /proc/cpuinfo so
2821 rv
= prom_getprop(node
, "CODEGEN,description", prop
, sizeof(prop
));
2822 if (rv
!= PROM_ERROR
&& (strstr(prop
, "CHRP")))
2823 prom_setprop(node
, "/", "CODEGEN,description",
2824 "Efika 5200B PowerPC System",
2825 sizeof("Efika 5200B PowerPC System"));
2827 /* Fixup bestcomm interrupts property */
2828 node
= call_prom("finddevice", 1, 1, ADDR("/builtin/bestcomm"));
2829 if (PHANDLE_VALID(node
)) {
2830 len
= prom_getproplen(node
, "interrupts");
2832 prom_printf("Fixing bestcomm interrupts property\n");
2833 prom_setprop(node
, "/builtin/bestcom", "interrupts",
2834 bcomm_irq
, sizeof(bcomm_irq
));
2838 /* Fixup sound interrupts property */
2839 node
= call_prom("finddevice", 1, 1, ADDR("/builtin/sound"));
2840 if (PHANDLE_VALID(node
)) {
2841 rv
= prom_getprop(node
, "interrupts", prop
, sizeof(prop
));
2842 if (rv
== PROM_ERROR
) {
2843 prom_printf("Adding sound interrupts property\n");
2844 prom_setprop(node
, "/builtin/sound", "interrupts",
2845 sound_irq
, sizeof(sound_irq
));
2849 /* Make sure ethernet phy-handle property exists */
2850 fixup_device_tree_efika_add_phy();
2853 #define fixup_device_tree_efika()
2856 #ifdef CONFIG_PPC_PASEMI_NEMO
2858 * CFE supplied on Nemo is broken in several ways, biggest
2859 * problem is that it reassigns ISA interrupts to unused mpic ints.
2860 * Add an interrupt-controller property for the io-bridge to use
2861 * and correct the ints so we can attach them to an irq_domain
2863 static void __init
fixup_device_tree_pasemi(void)
2865 u32 interrupts
[2], parent
, rval
, val
= 0;
2866 char *name
, *pci_name
;
2869 /* Find the root pci node */
2870 name
= "/pxp@0,e0000000";
2871 iob
= call_prom("finddevice", 1, 1, ADDR(name
));
2872 if (!PHANDLE_VALID(iob
))
2875 /* check if interrupt-controller node set yet */
2876 if (prom_getproplen(iob
, "interrupt-controller") !=PROM_ERROR
)
2879 prom_printf("adding interrupt-controller property for SB600...\n");
2881 prom_setprop(iob
, name
, "interrupt-controller", &val
, 0);
2883 pci_name
= "/pxp@0,e0000000/pci@11";
2884 node
= call_prom("finddevice", 1, 1, ADDR(pci_name
));
2887 for( ; prom_next_node(&node
); ) {
2888 /* scan each node for one with an interrupt */
2889 if (!PHANDLE_VALID(node
))
2892 rval
= prom_getproplen(node
, "interrupts");
2893 if (rval
== 0 || rval
== PROM_ERROR
)
2896 prom_getprop(node
, "interrupts", &interrupts
, sizeof(interrupts
));
2897 if ((interrupts
[0] < 212) || (interrupts
[0] > 222))
2900 /* found a node, update both interrupts and interrupt-parent */
2901 if ((interrupts
[0] >= 212) && (interrupts
[0] <= 215))
2902 interrupts
[0] -= 203;
2903 if ((interrupts
[0] >= 216) && (interrupts
[0] <= 220))
2904 interrupts
[0] -= 213;
2905 if (interrupts
[0] == 221)
2907 if (interrupts
[0] == 222)
2910 prom_setprop(node
, pci_name
, "interrupts", interrupts
,
2911 sizeof(interrupts
));
2912 prom_setprop(node
, pci_name
, "interrupt-parent", &parent
,
2917 * The io-bridge has device_type set to 'io-bridge' change it to 'isa'
2918 * so that generic isa-bridge code can add the SB600 and its on-board
2921 name
= "/pxp@0,e0000000/io-bridge@0";
2922 iob
= call_prom("finddevice", 1, 1, ADDR(name
));
2923 if (!PHANDLE_VALID(iob
))
2926 /* device_type is already set, just change it. */
2928 prom_printf("Changing device_type of SB600 node...\n");
2930 prom_setprop(iob
, name
, "device_type", "isa", sizeof("isa"));
2932 #else /* !CONFIG_PPC_PASEMI_NEMO */
2933 static inline void fixup_device_tree_pasemi(void) { }
2936 static void __init
fixup_device_tree(void)
2938 fixup_device_tree_maple();
2939 fixup_device_tree_maple_memory_controller();
2940 fixup_device_tree_chrp();
2941 fixup_device_tree_pmac();
2942 fixup_device_tree_efika();
2943 fixup_device_tree_pasemi();
2946 static void __init
prom_find_boot_cpu(void)
2953 if (prom_getprop(prom
.chosen
, "cpu", &rval
, sizeof(rval
)) <= 0)
2955 prom_cpu
= be32_to_cpu(rval
);
2957 cpu_pkg
= call_prom("instance-to-package", 1, 1, prom_cpu
);
2959 if (!PHANDLE_VALID(cpu_pkg
))
2962 prom_getprop(cpu_pkg
, "reg", &rval
, sizeof(rval
));
2963 prom
.cpu
= be32_to_cpu(rval
);
2965 prom_debug("Booting CPU hw index = %lu\n", prom
.cpu
);
2968 static void __init
prom_check_initrd(unsigned long r3
, unsigned long r4
)
2970 #ifdef CONFIG_BLK_DEV_INITRD
2971 if (r3
&& r4
&& r4
!= 0xdeadbeef) {
2974 prom_initrd_start
= is_kernel_addr(r3
) ? __pa(r3
) : r3
;
2975 prom_initrd_end
= prom_initrd_start
+ r4
;
2977 val
= cpu_to_be64(prom_initrd_start
);
2978 prom_setprop(prom
.chosen
, "/chosen", "linux,initrd-start",
2980 val
= cpu_to_be64(prom_initrd_end
);
2981 prom_setprop(prom
.chosen
, "/chosen", "linux,initrd-end",
2984 reserve_mem(prom_initrd_start
,
2985 prom_initrd_end
- prom_initrd_start
);
2987 prom_debug("initrd_start=0x%x\n", prom_initrd_start
);
2988 prom_debug("initrd_end=0x%x\n", prom_initrd_end
);
2990 #endif /* CONFIG_BLK_DEV_INITRD */
2994 #ifdef CONFIG_RELOCATABLE
2995 static void reloc_toc(void)
2999 static void unreloc_toc(void)
3003 static void __reloc_toc(unsigned long offset
, unsigned long nr_entries
)
3006 unsigned long *toc_entry
;
3008 /* Get the start of the TOC by using r2 directly. */
3009 asm volatile("addi %0,2,-0x8000" : "=b" (toc_entry
));
3011 for (i
= 0; i
< nr_entries
; i
++) {
3012 *toc_entry
= *toc_entry
+ offset
;
3017 static void reloc_toc(void)
3019 unsigned long offset
= reloc_offset();
3020 unsigned long nr_entries
=
3021 (__prom_init_toc_end
- __prom_init_toc_start
) / sizeof(long);
3023 __reloc_toc(offset
, nr_entries
);
3028 static void unreloc_toc(void)
3030 unsigned long offset
= reloc_offset();
3031 unsigned long nr_entries
=
3032 (__prom_init_toc_end
- __prom_init_toc_start
) / sizeof(long);
3036 __reloc_toc(-offset
, nr_entries
);
3042 * We enter here early on, when the Open Firmware prom is still
3043 * handling exceptions and the MMU hash table for us.
3046 unsigned long __init
prom_init(unsigned long r3
, unsigned long r4
,
3048 unsigned long r6
, unsigned long r7
,
3049 unsigned long kbase
)
3054 unsigned long offset
= reloc_offset();
3061 * First zero the BSS
3063 memset(&__bss_start
, 0, __bss_stop
- __bss_start
);
3066 * Init interface to Open Firmware, get some node references,
3069 prom_init_client_services(pp
);
3072 * See if this OF is old enough that we need to do explicit maps
3073 * and other workarounds
3078 * Init prom stdout device
3082 prom_printf("Preparing to boot %s", linux_banner
);
3085 * Get default machine type. At this point, we do not differentiate
3086 * between pSeries SMP and pSeries LPAR
3088 of_platform
= prom_find_machine_type();
3089 prom_printf("Detected machine type: %x\n", of_platform
);
3091 #ifndef CONFIG_NONSTATIC_KERNEL
3092 /* Bail if this is a kdump kernel. */
3093 if (PHYSICAL_START
> 0)
3094 prom_panic("Error: You can't boot a kdump kernel from OF!\n");
3098 * Check for an initrd
3100 prom_check_initrd(r3
, r4
);
3103 * Do early parsing of command line
3105 early_cmdline_parse();
3107 #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
3109 * On pSeries, inform the firmware about our capabilities
3111 if (of_platform
== PLATFORM_PSERIES
||
3112 of_platform
== PLATFORM_PSERIES_LPAR
)
3113 prom_send_capabilities();
3117 * Copy the CPU hold code
3119 if (of_platform
!= PLATFORM_POWERMAC
)
3120 copy_and_flush(0, kbase
, 0x100, 0);
3123 * Initialize memory management within prom_init
3128 * Determine which cpu is actually running right _now_
3130 prom_find_boot_cpu();
3133 * Initialize display devices
3135 prom_check_displays();
3137 #if defined(CONFIG_PPC64) && defined(__BIG_ENDIAN__)
3139 * Initialize IOMMU (TCE tables) on pSeries. Do that before anything else
3140 * that uses the allocator, we need to make sure we get the top of memory
3141 * available for us here...
3143 if (of_platform
== PLATFORM_PSERIES
)
3144 prom_initialize_tce_table();
3148 * On non-powermacs, try to instantiate RTAS. PowerMacs don't
3149 * have a usable RTAS implementation.
3151 if (of_platform
!= PLATFORM_POWERMAC
&&
3152 of_platform
!= PLATFORM_OPAL
)
3153 prom_instantiate_rtas();
3155 #ifdef CONFIG_PPC_POWERNV
3156 if (of_platform
== PLATFORM_OPAL
)
3157 prom_instantiate_opal();
3158 #endif /* CONFIG_PPC_POWERNV */
3161 /* instantiate sml */
3162 prom_instantiate_sml();
3166 * On non-powermacs, put all CPUs in spin-loops.
3168 * PowerMacs use a different mechanism to spin CPUs
3170 * (This must be done after instanciating RTAS)
3172 if (of_platform
!= PLATFORM_POWERMAC
&&
3173 of_platform
!= PLATFORM_OPAL
)
3177 * Fill in some infos for use by the kernel later on
3179 if (prom_memory_limit
) {
3180 __be64 val
= cpu_to_be64(prom_memory_limit
);
3181 prom_setprop(prom
.chosen
, "/chosen", "linux,memory-limit",
3186 prom_setprop(prom
.chosen
, "/chosen", "linux,iommu-off",
3189 if (prom_iommu_force_on
)
3190 prom_setprop(prom
.chosen
, "/chosen", "linux,iommu-force-on",
3193 if (prom_tce_alloc_start
) {
3194 prom_setprop(prom
.chosen
, "/chosen", "linux,tce-alloc-start",
3195 &prom_tce_alloc_start
,
3196 sizeof(prom_tce_alloc_start
));
3197 prom_setprop(prom
.chosen
, "/chosen", "linux,tce-alloc-end",
3198 &prom_tce_alloc_end
,
3199 sizeof(prom_tce_alloc_end
));
3204 * Fixup any known bugs in the device-tree
3206 fixup_device_tree();
3209 * Now finally create the flattened device-tree
3211 prom_printf("copying OF device tree...\n");
3212 flatten_device_tree();
3215 * in case stdin is USB and still active on IBM machines...
3216 * Unfortunately quiesce crashes on some powermacs if we have
3217 * closed stdin already (in particular the powerbook 101). It
3218 * appears that the OPAL version of OFW doesn't like it either.
3220 if (of_platform
!= PLATFORM_POWERMAC
&&
3221 of_platform
!= PLATFORM_OPAL
)
3225 * Call OF "quiesce" method to shut down pending DMA's from
3228 prom_printf("Quiescing Open Firmware ...\n");
3229 call_prom("quiesce", 0, 0);
3232 * And finally, call the kernel passing it the flattened device
3233 * tree and NULL as r5, thus triggering the new entry point which
3234 * is common to us and kexec
3236 hdr
= dt_header_start
;
3238 /* Don't print anything after quiesce under OPAL, it crashes OFW */
3239 if (of_platform
!= PLATFORM_OPAL
) {
3240 prom_printf("Booting Linux via __start() @ 0x%lx ...\n", kbase
);
3241 prom_debug("->dt_header_start=0x%x\n", hdr
);
3245 reloc_got2(-offset
);
3250 #ifdef CONFIG_PPC_EARLY_DEBUG_OPAL
3251 /* OPAL early debug gets the OPAL base & entry in r8 and r9 */
3252 __start(hdr
, kbase
, 0, 0, 0,
3253 prom_opal_base
, prom_opal_entry
);
3255 __start(hdr
, kbase
, 0, 0, 0, 0, 0);