ftrace: fix printout
[linux-2.6/mini2440.git] / arch / sparc64 / prom / misc.c
blob9b0c0760901e09a9ed1ff9b776eea4f1eab39acd
1 /*
2 * misc.c: Miscellaneous prom functions that don't belong
3 * anywhere else.
5 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
6 * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
7 */
9 #include <linux/types.h>
10 #include <linux/kernel.h>
11 #include <linux/sched.h>
12 #include <linux/interrupt.h>
13 #include <linux/delay.h>
14 #include <asm/openprom.h>
15 #include <asm/oplib.h>
16 #include <asm/system.h>
17 #include <asm/ldc.h>
19 int prom_service_exists(const char *service_name)
21 int err = p1275_cmd("test", P1275_ARG(0, P1275_ARG_IN_STRING) |
22 P1275_INOUT(1, 1), service_name);
24 if (err)
25 return 0;
26 return 1;
29 void prom_sun4v_guest_soft_state(void)
31 const char *svc = "SUNW,soft-state-supported";
33 if (!prom_service_exists(svc))
34 return;
35 p1275_cmd(svc, P1275_INOUT(0, 0));
38 /* Reset and reboot the machine with the command 'bcommand'. */
39 void prom_reboot(const char *bcommand)
41 #ifdef CONFIG_SUN_LDOMS
42 if (ldom_domaining_enabled)
43 ldom_reboot(bcommand);
44 #endif
45 p1275_cmd("boot", P1275_ARG(0, P1275_ARG_IN_STRING) |
46 P1275_INOUT(1, 0), bcommand);
49 /* Forth evaluate the expression contained in 'fstring'. */
50 void prom_feval(const char *fstring)
52 if (!fstring || fstring[0] == 0)
53 return;
54 p1275_cmd("interpret", P1275_ARG(0, P1275_ARG_IN_STRING) |
55 P1275_INOUT(1, 1), fstring);
58 #ifdef CONFIG_SMP
59 extern void smp_capture(void);
60 extern void smp_release(void);
61 #endif
63 /* Drop into the prom, with the chance to continue with the 'go'
64 * prom command.
66 void prom_cmdline(void)
68 unsigned long flags;
70 local_irq_save(flags);
72 #ifdef CONFIG_SMP
73 smp_capture();
74 #endif
76 p1275_cmd("enter", P1275_INOUT(0, 0));
78 #ifdef CONFIG_SMP
79 smp_release();
80 #endif
82 local_irq_restore(flags);
85 /* Drop into the prom, but completely terminate the program.
86 * No chance of continuing.
88 void prom_halt(void)
90 #ifdef CONFIG_SUN_LDOMS
91 if (ldom_domaining_enabled)
92 ldom_power_off();
93 #endif
94 again:
95 p1275_cmd("exit", P1275_INOUT(0, 0));
96 goto again; /* PROM is out to get me -DaveM */
99 void prom_halt_power_off(void)
101 #ifdef CONFIG_SUN_LDOMS
102 if (ldom_domaining_enabled)
103 ldom_power_off();
104 #endif
105 p1275_cmd("SUNW,power-off", P1275_INOUT(0, 0));
107 /* if nothing else helps, we just halt */
108 prom_halt();
111 /* Set prom sync handler to call function 'funcp'. */
112 void prom_setcallback(callback_func_t funcp)
114 if (!funcp)
115 return;
116 p1275_cmd("set-callback", P1275_ARG(0, P1275_ARG_IN_FUNCTION) |
117 P1275_INOUT(1, 1), funcp);
120 /* Get the idprom and stuff it into buffer 'idbuf'. Returns the
121 * format type. 'num_bytes' is the number of bytes that your idbuf
122 * has space for. Returns 0xff on error.
124 unsigned char prom_get_idprom(char *idbuf, int num_bytes)
126 int len;
128 len = prom_getproplen(prom_root_node, "idprom");
129 if ((len >num_bytes) || (len == -1))
130 return 0xff;
131 if (!prom_getproperty(prom_root_node, "idprom", idbuf, num_bytes))
132 return idbuf[0];
134 return 0xff;
137 int prom_get_mmu_ihandle(void)
139 int node, ret;
141 if (prom_mmu_ihandle_cache != 0)
142 return prom_mmu_ihandle_cache;
144 node = prom_finddevice(prom_chosen_path);
145 ret = prom_getint(node, prom_mmu_name);
146 if (ret == -1 || ret == 0)
147 prom_mmu_ihandle_cache = -1;
148 else
149 prom_mmu_ihandle_cache = ret;
151 return ret;
154 static int prom_get_memory_ihandle(void)
156 static int memory_ihandle_cache;
157 int node, ret;
159 if (memory_ihandle_cache != 0)
160 return memory_ihandle_cache;
162 node = prom_finddevice("/chosen");
163 ret = prom_getint(node, "memory");
164 if (ret == -1 || ret == 0)
165 memory_ihandle_cache = -1;
166 else
167 memory_ihandle_cache = ret;
169 return ret;
172 /* Load explicit I/D TLB entries. */
173 long prom_itlb_load(unsigned long index,
174 unsigned long tte_data,
175 unsigned long vaddr)
177 return p1275_cmd(prom_callmethod_name,
178 (P1275_ARG(0, P1275_ARG_IN_STRING) |
179 P1275_ARG(2, P1275_ARG_IN_64B) |
180 P1275_ARG(3, P1275_ARG_IN_64B) |
181 P1275_INOUT(5, 1)),
182 "SUNW,itlb-load",
183 prom_get_mmu_ihandle(),
184 /* And then our actual args are pushed backwards. */
185 vaddr,
186 tte_data,
187 index);
190 long prom_dtlb_load(unsigned long index,
191 unsigned long tte_data,
192 unsigned long vaddr)
194 return p1275_cmd(prom_callmethod_name,
195 (P1275_ARG(0, P1275_ARG_IN_STRING) |
196 P1275_ARG(2, P1275_ARG_IN_64B) |
197 P1275_ARG(3, P1275_ARG_IN_64B) |
198 P1275_INOUT(5, 1)),
199 "SUNW,dtlb-load",
200 prom_get_mmu_ihandle(),
201 /* And then our actual args are pushed backwards. */
202 vaddr,
203 tte_data,
204 index);
207 int prom_map(int mode, unsigned long size,
208 unsigned long vaddr, unsigned long paddr)
210 int ret = p1275_cmd(prom_callmethod_name,
211 (P1275_ARG(0, P1275_ARG_IN_STRING) |
212 P1275_ARG(3, P1275_ARG_IN_64B) |
213 P1275_ARG(4, P1275_ARG_IN_64B) |
214 P1275_ARG(6, P1275_ARG_IN_64B) |
215 P1275_INOUT(7, 1)),
216 prom_map_name,
217 prom_get_mmu_ihandle(),
218 mode,
219 size,
220 vaddr,
222 paddr);
224 if (ret == 0)
225 ret = -1;
226 return ret;
229 void prom_unmap(unsigned long size, unsigned long vaddr)
231 p1275_cmd(prom_callmethod_name,
232 (P1275_ARG(0, P1275_ARG_IN_STRING) |
233 P1275_ARG(2, P1275_ARG_IN_64B) |
234 P1275_ARG(3, P1275_ARG_IN_64B) |
235 P1275_INOUT(4, 0)),
236 prom_unmap_name,
237 prom_get_mmu_ihandle(),
238 size,
239 vaddr);
242 /* Set aside physical memory which is not touched or modified
243 * across soft resets.
245 unsigned long prom_retain(const char *name,
246 unsigned long pa_low, unsigned long pa_high,
247 long size, long align)
249 /* XXX I don't think we return multiple values correctly.
250 * XXX OBP supposedly returns pa_low/pa_high here, how does
251 * XXX it work?
254 /* If align is zero, the pa_low/pa_high args are passed,
255 * else they are not.
257 if (align == 0)
258 return p1275_cmd("SUNW,retain",
259 (P1275_ARG(0, P1275_ARG_IN_BUF) | P1275_INOUT(5, 2)),
260 name, pa_low, pa_high, size, align);
261 else
262 return p1275_cmd("SUNW,retain",
263 (P1275_ARG(0, P1275_ARG_IN_BUF) | P1275_INOUT(3, 2)),
264 name, size, align);
267 /* Get "Unumber" string for the SIMM at the given
268 * memory address. Usually this will be of the form
269 * "Uxxxx" where xxxx is a decimal number which is
270 * etched into the motherboard next to the SIMM slot
271 * in question.
273 int prom_getunumber(int syndrome_code,
274 unsigned long phys_addr,
275 char *buf, int buflen)
277 return p1275_cmd(prom_callmethod_name,
278 (P1275_ARG(0, P1275_ARG_IN_STRING) |
279 P1275_ARG(3, P1275_ARG_OUT_BUF) |
280 P1275_ARG(6, P1275_ARG_IN_64B) |
281 P1275_INOUT(8, 2)),
282 "SUNW,get-unumber", prom_get_memory_ihandle(),
283 buflen, buf, P1275_SIZE(buflen),
284 0, phys_addr, syndrome_code);
287 /* Power management extensions. */
288 void prom_sleepself(void)
290 p1275_cmd("SUNW,sleep-self", P1275_INOUT(0, 0));
293 int prom_sleepsystem(void)
295 return p1275_cmd("SUNW,sleep-system", P1275_INOUT(0, 1));
298 int prom_wakeupsystem(void)
300 return p1275_cmd("SUNW,wakeup-system", P1275_INOUT(0, 1));
303 #ifdef CONFIG_SMP
304 void prom_startcpu(int cpunode, unsigned long pc, unsigned long arg)
306 p1275_cmd("SUNW,start-cpu", P1275_INOUT(3, 0), cpunode, pc, arg);
309 void prom_startcpu_cpuid(int cpuid, unsigned long pc, unsigned long arg)
311 p1275_cmd("SUNW,start-cpu-by-cpuid", P1275_INOUT(3, 0),
312 cpuid, pc, arg);
315 void prom_stopcpu_cpuid(int cpuid)
317 p1275_cmd("SUNW,stop-cpu-by-cpuid", P1275_INOUT(1, 0),
318 cpuid);
321 void prom_stopself(void)
323 p1275_cmd("SUNW,stop-self", P1275_INOUT(0, 0));
326 void prom_idleself(void)
328 p1275_cmd("SUNW,idle-self", P1275_INOUT(0, 0));
331 void prom_resumecpu(int cpunode)
333 p1275_cmd("SUNW,resume-cpu", P1275_INOUT(1, 0), cpunode);
335 #endif