1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) Paul Mackerras 1997.
15 typedef u32 prom_arg_t
;
17 /* The following structure is used to communicate with open firmware.
18 * All arguments in and out are in big endian format. */
20 __be32 service
; /* Address of service name string. */
21 __be32 nargs
; /* Number of input arguments. */
22 __be32 nret
; /* Number of output arguments. */
23 __be32 args
[10]; /* Input/output arguments. */
27 extern int prom(void *);
29 static int (*prom
) (void *);
32 void of_init(void *promptr
)
35 prom
= (int (*)(void *))promptr
;
39 #define ADDR(x) (u32)(unsigned long)(x)
41 int of_call_prom(const char *service
, int nargs
, int nret
, ...)
44 struct prom_args args
;
47 args
.service
= cpu_to_be32(ADDR(service
));
48 args
.nargs
= cpu_to_be32(nargs
);
49 args
.nret
= cpu_to_be32(nret
);
52 for (i
= 0; i
< nargs
; i
++)
53 args
.args
[i
] = cpu_to_be32(va_arg(list
, prom_arg_t
));
56 for (i
= 0; i
< nret
; i
++)
57 args
.args
[nargs
+i
] = 0;
62 return (nret
> 0) ? be32_to_cpu(args
.args
[nargs
]) : 0;
65 static int of_call_prom_ret(const char *service
, int nargs
, int nret
,
66 prom_arg_t
*rets
, ...)
69 struct prom_args args
;
72 args
.service
= cpu_to_be32(ADDR(service
));
73 args
.nargs
= cpu_to_be32(nargs
);
74 args
.nret
= cpu_to_be32(nret
);
77 for (i
= 0; i
< nargs
; i
++)
78 args
.args
[i
] = cpu_to_be32(va_arg(list
, prom_arg_t
));
81 for (i
= 0; i
< nret
; i
++)
82 args
.args
[nargs
+i
] = 0;
88 for (i
= 1; i
< nret
; ++i
)
89 rets
[i
-1] = be32_to_cpu(args
.args
[nargs
+i
]);
91 return (nret
> 0) ? be32_to_cpu(args
.args
[nargs
]) : 0;
94 /* returns true if s2 is a prefix of s1 */
95 static int string_match(const char *s1
, const char *s2
)
104 * Older OF's require that when claiming a specific range of addresses,
105 * we claim the physical space in the /memory node and the virtual
106 * space in the chosen mmu node, and then do a map operation to
107 * map virtual to physical.
109 static int need_map
= -1;
110 static ihandle chosen_mmu
;
111 static ihandle memory
;
113 static int check_of_version(void)
115 phandle oprom
, chosen
;
118 oprom
= of_finddevice("/openprom");
119 if (oprom
== (phandle
) -1)
121 if (of_getprop(oprom
, "model", version
, sizeof(version
)) <= 0)
123 version
[sizeof(version
)-1] = 0;
124 printf("OF version = '%s'\r\n", version
);
125 if (!string_match(version
, "Open Firmware, 1.")
126 && !string_match(version
, "FirmWorks,3."))
128 chosen
= of_finddevice("/chosen");
129 if (chosen
== (phandle
) -1) {
130 chosen
= of_finddevice("/chosen@0");
131 if (chosen
== (phandle
) -1) {
132 printf("no chosen\n");
136 if (of_getprop(chosen
, "mmu", &chosen_mmu
, sizeof(chosen_mmu
)) <= 0) {
140 memory
= of_call_prom("open", 1, 1, "/memory");
141 if (memory
== PROM_ERROR
) {
142 memory
= of_call_prom("open", 1, 1, "/memory@0");
143 if (memory
== PROM_ERROR
) {
144 printf("no memory node\n");
148 printf("old OF detected\r\n");
152 unsigned int of_claim(unsigned long virt
, unsigned long size
,
159 need_map
= check_of_version();
160 if (align
|| !need_map
)
161 return of_call_prom("claim", 3, 1, virt
, size
, align
);
163 ret
= of_call_prom_ret("call-method", 5, 2, &result
, "claim", memory
,
165 if (ret
!= 0 || result
== -1)
167 ret
= of_call_prom_ret("call-method", 5, 2, &result
, "claim", chosen_mmu
,
169 /* 0x12 == coherent + read/write */
170 ret
= of_call_prom("call-method", 6, 1, "map", chosen_mmu
,
171 0x12, size
, virt
, virt
);
175 void *of_vmlinux_alloc(unsigned long size
)
177 unsigned long start
= (unsigned long)_start
, end
= (unsigned long)_end
;
181 /* With some older POWER4 firmware we need to claim the area the kernel
182 * will reside in. Newer firmwares don't need this so we just ignore
185 addr
= (unsigned long) of_claim(start
, end
- start
, 0);
186 printf("Trying to claim from 0x%lx to 0x%lx (0x%lx) got %lx\r\n",
187 start
, end
, end
- start
, addr
);
191 fatal("Can't allocate memory for kernel image!\n\r");
198 of_call_prom("exit", 0, 0);
202 * OF device tree routines
204 void *of_finddevice(const char *name
)
206 return (void *) (unsigned long) of_call_prom("finddevice", 1, 1, name
);
209 int of_getprop(const void *phandle
, const char *name
, void *buf
,
212 return of_call_prom("getprop", 4, 1, phandle
, name
, buf
, buflen
);
215 int of_setprop(const void *phandle
, const char *name
, const void *buf
,
218 return of_call_prom("setprop", 4, 1, phandle
, name
, buf
, buflen
);