2 * Copyright (C) Paul Mackerras 1997.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
19 typedef u32 prom_arg_t
;
21 /* The following structure is used to communicate with open firmware.
22 * All arguments in and out are in big endian format. */
24 __be32 service
; /* Address of service name string. */
25 __be32 nargs
; /* Number of input arguments. */
26 __be32 nret
; /* Number of output arguments. */
27 __be32 args
[10]; /* Input/output arguments. */
31 extern int prom(void *);
33 static int (*prom
) (void *);
36 void of_init(void *promptr
)
39 prom
= (int (*)(void *))promptr
;
43 #define ADDR(x) (u32)(unsigned long)(x)
45 int of_call_prom(const char *service
, int nargs
, int nret
, ...)
48 struct prom_args args
;
51 args
.service
= cpu_to_be32(ADDR(service
));
52 args
.nargs
= cpu_to_be32(nargs
);
53 args
.nret
= cpu_to_be32(nret
);
56 for (i
= 0; i
< nargs
; i
++)
57 args
.args
[i
] = cpu_to_be32(va_arg(list
, prom_arg_t
));
60 for (i
= 0; i
< nret
; i
++)
61 args
.args
[nargs
+i
] = 0;
66 return (nret
> 0) ? be32_to_cpu(args
.args
[nargs
]) : 0;
69 static int of_call_prom_ret(const char *service
, int nargs
, int nret
,
70 prom_arg_t
*rets
, ...)
73 struct prom_args args
;
76 args
.service
= cpu_to_be32(ADDR(service
));
77 args
.nargs
= cpu_to_be32(nargs
);
78 args
.nret
= cpu_to_be32(nret
);
81 for (i
= 0; i
< nargs
; i
++)
82 args
.args
[i
] = cpu_to_be32(va_arg(list
, prom_arg_t
));
85 for (i
= 0; i
< nret
; i
++)
86 args
.args
[nargs
+i
] = 0;
92 for (i
= 1; i
< nret
; ++i
)
93 rets
[i
-1] = be32_to_cpu(args
.args
[nargs
+i
]);
95 return (nret
> 0) ? be32_to_cpu(args
.args
[nargs
]) : 0;
98 /* returns true if s2 is a prefix of s1 */
99 static int string_match(const char *s1
, const char *s2
)
108 * Older OF's require that when claiming a specific range of addresses,
109 * we claim the physical space in the /memory node and the virtual
110 * space in the chosen mmu node, and then do a map operation to
111 * map virtual to physical.
113 static int need_map
= -1;
114 static ihandle chosen_mmu
;
115 static ihandle memory
;
117 static int check_of_version(void)
119 phandle oprom
, chosen
;
122 oprom
= of_finddevice("/openprom");
123 if (oprom
== (phandle
) -1)
125 if (of_getprop(oprom
, "model", version
, sizeof(version
)) <= 0)
127 version
[sizeof(version
)-1] = 0;
128 printf("OF version = '%s'\r\n", version
);
129 if (!string_match(version
, "Open Firmware, 1.")
130 && !string_match(version
, "FirmWorks,3."))
132 chosen
= of_finddevice("/chosen");
133 if (chosen
== (phandle
) -1) {
134 chosen
= of_finddevice("/chosen@0");
135 if (chosen
== (phandle
) -1) {
136 printf("no chosen\n");
140 if (of_getprop(chosen
, "mmu", &chosen_mmu
, sizeof(chosen_mmu
)) <= 0) {
144 memory
= of_call_prom("open", 1, 1, "/memory");
145 if (memory
== PROM_ERROR
) {
146 memory
= of_call_prom("open", 1, 1, "/memory@0");
147 if (memory
== PROM_ERROR
) {
148 printf("no memory node\n");
152 printf("old OF detected\r\n");
156 unsigned int of_claim(unsigned long virt
, unsigned long size
,
163 need_map
= check_of_version();
164 if (align
|| !need_map
)
165 return of_call_prom("claim", 3, 1, virt
, size
, align
);
167 ret
= of_call_prom_ret("call-method", 5, 2, &result
, "claim", memory
,
169 if (ret
!= 0 || result
== -1)
171 ret
= of_call_prom_ret("call-method", 5, 2, &result
, "claim", chosen_mmu
,
173 /* 0x12 == coherent + read/write */
174 ret
= of_call_prom("call-method", 6, 1, "map", chosen_mmu
,
175 0x12, size
, virt
, virt
);
179 void *of_vmlinux_alloc(unsigned long size
)
181 unsigned long start
= (unsigned long)_start
, end
= (unsigned long)_end
;
185 /* With some older POWER4 firmware we need to claim the area the kernel
186 * will reside in. Newer firmwares don't need this so we just ignore
189 addr
= (unsigned long) of_claim(start
, end
- start
, 0);
190 printf("Trying to claim from 0x%lx to 0x%lx (0x%lx) got %lx\r\n",
191 start
, end
, end
- start
, addr
);
195 fatal("Can't allocate memory for kernel image!\n\r");
202 of_call_prom("exit", 0, 0);
206 * OF device tree routines
208 void *of_finddevice(const char *name
)
210 return (void *) (unsigned long) of_call_prom("finddevice", 1, 1, name
);
213 int of_getprop(const void *phandle
, const char *name
, void *buf
,
216 return of_call_prom("getprop", 4, 1, phandle
, name
, buf
, buflen
);
219 int of_setprop(const void *phandle
, const char *name
, const void *buf
,
222 return of_call_prom("setprop", 4, 1, phandle
, name
, buf
, buflen
);