blob: 74367841615a5ae3a31a2c2c9091916d79a0534c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * Procedures for interfacing to the RTAS on CHRP machines.
4 *
5 * Peter Bergner, IBM March 2001.
6 * Copyright (C) 2001 IBM.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#include <stdarg.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
17#include <linux/spinlock.h>
18#include <linux/module.h>
19#include <linux/init.h>
Randy Dunlapa9415642006-01-11 12:17:48 -080020#include <linux/capability.h>
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +110021#include <linux/delay.h>
Nathan Lynch8f5c7572007-11-14 03:15:13 +110022#include <linux/smp.h>
23#include <linux/completion.h>
24#include <linux/cpumask.h>
David S. Millerd9b2b2a2008-02-13 16:56:49 -080025#include <linux/lmb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/prom.h>
29#include <asm/rtas.h>
Michael Ellerman31a7f672006-01-31 17:17:47 +110030#include <asm/hvcall.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/machdep.h>
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110032#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/page.h>
34#include <asm/param.h>
35#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/delay.h>
37#include <asm/uaccess.h>
Michael Ellerman296167a2006-01-11 11:54:09 +110038#include <asm/udbg.h>
Arnd Bergmanna7f31842006-03-23 00:00:08 +010039#include <asm/syscalls.h>
Nathan Lynch8f5c7572007-11-14 03:15:13 +110040#include <asm/smp.h>
41#include <asm/atomic.h>
Benjamin Herrenschmidtc4007a22009-06-16 16:42:50 +000042#include <asm/time.h>
Brian King46db2f82009-08-28 12:06:29 +000043#include <asm/mmu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Paul Mackerras033ef332005-10-26 17:05:24 +100045struct rtas_t rtas = {
Thomas Gleixneredc35bd2009-12-03 12:38:57 +010046 .lock = __ARCH_SPIN_LOCK_UNLOCKED
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
Michael Ellermanab3ab742006-06-23 18:20:11 +100048EXPORT_SYMBOL(rtas);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Dave C Boutcher91dc1822006-01-13 18:39:24 -060050struct rtas_suspend_me_data {
Nathan Lynch8f5c7572007-11-14 03:15:13 +110051 atomic_t working; /* number of cpus accessing this struct */
Brian Kingf52862f2009-02-17 06:49:50 +000052 atomic_t done;
Nathan Lynch8f5c7572007-11-14 03:15:13 +110053 int token; /* ibm,suspend-me */
54 int error;
55 struct completion *complete; /* wait on this until working == 0 */
Dave C Boutcher91dc1822006-01-13 18:39:24 -060056};
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058DEFINE_SPINLOCK(rtas_data_buf_lock);
Michael Ellermanab3ab742006-06-23 18:20:11 +100059EXPORT_SYMBOL(rtas_data_buf_lock);
60
Paul Mackerras033ef332005-10-26 17:05:24 +100061char rtas_data_buf[RTAS_DATA_BUF_SIZE] __cacheline_aligned;
Michael Ellermanab3ab742006-06-23 18:20:11 +100062EXPORT_SYMBOL(rtas_data_buf);
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064unsigned long rtas_rmo_buf;
65
Paul Mackerras033ef332005-10-26 17:05:24 +100066/*
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +110067 * If non-NULL, this gets called when the kernel terminates.
68 * This is done like this so rtas_flash can be a module.
69 */
70void (*rtas_flash_term_hook)(int);
71EXPORT_SYMBOL(rtas_flash_term_hook);
72
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +000073/* RTAS use home made raw locking instead of spin_lock_irqsave
74 * because those can be called from within really nasty contexts
75 * such as having the timebase stopped which would lockup with
76 * normal locks and spinlock debugging enabled
77 */
78static unsigned long lock_rtas(void)
79{
80 unsigned long flags;
81
82 local_irq_save(flags);
83 preempt_disable();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010084 arch_spin_lock_flags(&rtas.lock, flags);
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +000085 return flags;
86}
87
88static void unlock_rtas(unsigned long flags)
89{
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010090 arch_spin_unlock(&rtas.lock);
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +000091 local_irq_restore(flags);
92 preempt_enable();
93}
94
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +110095/*
Paul Mackerras033ef332005-10-26 17:05:24 +100096 * call_rtas_display_status and call_rtas_display_status_delay
97 * are designed only for very early low-level debugging, which
98 * is why the token is hard-coded to 10.
99 */
Michael Ellerman296167a2006-01-11 11:54:09 +1100100static void call_rtas_display_status(char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 struct rtas_args *args = &rtas.args;
103 unsigned long s;
104
105 if (!rtas.base)
106 return;
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000107 s = lock_rtas();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 args->token = 10;
110 args->nargs = 1;
111 args->nret = 1;
112 args->rets = (rtas_arg_t *)&(args->args[1]);
Michael Ellerman296167a2006-01-11 11:54:09 +1100113 args->args[0] = (unsigned char)c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 enter_rtas(__pa(args));
116
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000117 unlock_rtas(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Michael Ellerman296167a2006-01-11 11:54:09 +1100120static void call_rtas_display_status_delay(char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 static int pending_newline = 0; /* did last write end with unprinted newline? */
123 static int width = 16;
124
125 if (c == '\n') {
126 while (width-- > 0)
127 call_rtas_display_status(' ');
128 width = 16;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +1100129 mdelay(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 pending_newline = 1;
131 } else {
132 if (pending_newline) {
133 call_rtas_display_status('\r');
134 call_rtas_display_status('\n');
135 }
136 pending_newline = 0;
137 if (width--) {
138 call_rtas_display_status(c);
139 udelay(10000);
140 }
141 }
142}
143
Michael Ellermancc46bb92006-06-23 18:20:16 +1000144void __init udbg_init_rtas_panel(void)
Michael Ellerman296167a2006-01-11 11:54:09 +1100145{
146 udbg_putc = call_rtas_display_status_delay;
147}
148
Michael Ellermancc46bb92006-06-23 18:20:16 +1000149#ifdef CONFIG_UDBG_RTAS_CONSOLE
150
151/* If you think you're dying before early_init_dt_scan_rtas() does its
152 * work, you can hard code the token values for your firmware here and
153 * hardcode rtas.base/entry etc.
154 */
155static unsigned int rtas_putchar_token = RTAS_UNKNOWN_SERVICE;
156static unsigned int rtas_getchar_token = RTAS_UNKNOWN_SERVICE;
157
158static void udbg_rtascon_putc(char c)
159{
160 int tries;
161
162 if (!rtas.base)
163 return;
164
165 /* Add CRs before LFs */
166 if (c == '\n')
167 udbg_rtascon_putc('\r');
168
169 /* if there is more than one character to be displayed, wait a bit */
170 for (tries = 0; tries < 16; tries++) {
171 if (rtas_call(rtas_putchar_token, 1, 1, NULL, c) == 0)
172 break;
173 udelay(1000);
174 }
175}
176
177static int udbg_rtascon_getc_poll(void)
178{
179 int c;
180
181 if (!rtas.base)
182 return -1;
183
184 if (rtas_call(rtas_getchar_token, 0, 2, &c))
185 return -1;
186
187 return c;
188}
189
190static int udbg_rtascon_getc(void)
191{
192 int c;
193
194 while ((c = udbg_rtascon_getc_poll()) == -1)
195 ;
196
197 return c;
198}
199
200
201void __init udbg_init_rtas_console(void)
202{
203 udbg_putc = udbg_rtascon_putc;
204 udbg_getc = udbg_rtascon_getc;
205 udbg_getc_poll = udbg_rtascon_getc_poll;
206}
207#endif /* CONFIG_UDBG_RTAS_CONSOLE */
208
Paul Mackerras033ef332005-10-26 17:05:24 +1000209void rtas_progress(char *s, unsigned short hex)
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000210{
211 struct device_node *root;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000212 int width;
213 const int *p;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000214 char *os;
215 static int display_character, set_indicator;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000216 static int display_width, display_lines, form_feed;
Tobias Klauserc5a69d52007-02-17 20:11:19 +0100217 static const int *row_width;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000218 static DEFINE_SPINLOCK(progress_lock);
Mike Strosaker8f586b22005-06-23 16:09:41 +1000219 static int current_line;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000220 static int pending_newline = 0; /* did last write end with unprinted newline? */
221
222 if (!rtas.base)
223 return;
224
Mike Strosaker8f586b22005-06-23 16:09:41 +1000225 if (display_width == 0) {
226 display_width = 0x10;
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000227 if ((root = of_find_node_by_path("/rtas"))) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000228 if ((p = of_get_property(root,
Mike Strosaker8f586b22005-06-23 16:09:41 +1000229 "ibm,display-line-length", NULL)))
230 display_width = *p;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000231 if ((p = of_get_property(root,
Mike Strosaker8f586b22005-06-23 16:09:41 +1000232 "ibm,form-feed", NULL)))
233 form_feed = *p;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000234 if ((p = of_get_property(root,
Mike Strosaker8f586b22005-06-23 16:09:41 +1000235 "ibm,display-number-of-lines", NULL)))
236 display_lines = *p;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000237 row_width = of_get_property(root,
Mike Strosaker8f586b22005-06-23 16:09:41 +1000238 "ibm,display-truncation-length", NULL);
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000239 of_node_put(root);
Mike Strosaker8f586b22005-06-23 16:09:41 +1000240 }
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000241 display_character = rtas_token("display-character");
242 set_indicator = rtas_token("set-indicator");
243 }
244
245 if (display_character == RTAS_UNKNOWN_SERVICE) {
246 /* use hex display if available */
247 if (set_indicator != RTAS_UNKNOWN_SERVICE)
248 rtas_call(set_indicator, 3, 1, NULL, 6, 0, hex);
249 return;
250 }
251
252 spin_lock(&progress_lock);
253
254 /*
255 * Last write ended with newline, but we didn't print it since
256 * it would just clear the bottom line of output. Print it now
257 * instead.
258 *
Mike Strosaker8f586b22005-06-23 16:09:41 +1000259 * If no newline is pending and form feed is supported, clear the
260 * display with a form feed; otherwise, print a CR to start output
261 * at the beginning of the line.
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000262 */
263 if (pending_newline) {
264 rtas_call(display_character, 1, 1, NULL, '\r');
265 rtas_call(display_character, 1, 1, NULL, '\n');
266 pending_newline = 0;
267 } else {
Mike Strosaker8f586b22005-06-23 16:09:41 +1000268 current_line = 0;
269 if (form_feed)
270 rtas_call(display_character, 1, 1, NULL,
271 (char)form_feed);
272 else
273 rtas_call(display_character, 1, 1, NULL, '\r');
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000274 }
275
Mike Strosaker8f586b22005-06-23 16:09:41 +1000276 if (row_width)
277 width = row_width[current_line];
278 else
279 width = display_width;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000280 os = s;
281 while (*os) {
282 if (*os == '\n' || *os == '\r') {
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000283 /* If newline is the last character, save it
284 * until next call to avoid bumping up the
285 * display output.
286 */
287 if (*os == '\n' && !os[1]) {
288 pending_newline = 1;
Mike Strosaker8f586b22005-06-23 16:09:41 +1000289 current_line++;
290 if (current_line > display_lines-1)
291 current_line = display_lines-1;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000292 spin_unlock(&progress_lock);
293 return;
294 }
295
296 /* RTAS wants CR-LF, not just LF */
297
298 if (*os == '\n') {
299 rtas_call(display_character, 1, 1, NULL, '\r');
300 rtas_call(display_character, 1, 1, NULL, '\n');
301 } else {
302 /* CR might be used to re-draw a line, so we'll
303 * leave it alone and not add LF.
304 */
305 rtas_call(display_character, 1, 1, NULL, *os);
306 }
307
Mike Strosaker8f586b22005-06-23 16:09:41 +1000308 if (row_width)
309 width = row_width[current_line];
310 else
311 width = display_width;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000312 } else {
313 width--;
314 rtas_call(display_character, 1, 1, NULL, *os);
315 }
316
317 os++;
318
319 /* if we overwrite the screen length */
320 if (width <= 0)
321 while ((*os != 0) && (*os != '\n') && (*os != '\r'))
322 os++;
323 }
324
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000325 spin_unlock(&progress_lock);
326}
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100327EXPORT_SYMBOL(rtas_progress); /* needed by rtas_flash module */
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000328
Paul Mackerras033ef332005-10-26 17:05:24 +1000329int rtas_token(const char *service)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000331 const int *tokp;
Paul Mackerras033ef332005-10-26 17:05:24 +1000332 if (rtas.dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return RTAS_UNKNOWN_SERVICE;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000334 tokp = of_get_property(rtas.dev, service, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return tokp ? *tokp : RTAS_UNKNOWN_SERVICE;
336}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000337EXPORT_SYMBOL(rtas_token);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Nathan Lynchf2d6d2d2006-12-06 18:50:45 -0600339int rtas_service_present(const char *service)
340{
341 return rtas_token(service) != RTAS_UNKNOWN_SERVICE;
342}
343EXPORT_SYMBOL(rtas_service_present);
344
Paul Mackerras033ef332005-10-26 17:05:24 +1000345#ifdef CONFIG_RTAS_ERROR_LOGGING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346/*
347 * Return the firmware-specified size of the error log buffer
348 * for all rtas calls that require an error buffer argument.
349 * This includes 'check-exception' and 'rtas-last-error'.
350 */
351int rtas_get_error_log_max(void)
352{
353 static int rtas_error_log_max;
354 if (rtas_error_log_max)
355 return rtas_error_log_max;
356
357 rtas_error_log_max = rtas_token ("rtas-error-log-max");
358 if ((rtas_error_log_max == RTAS_UNKNOWN_SERVICE) ||
359 (rtas_error_log_max > RTAS_ERROR_LOG_MAX)) {
Paul Mackerras033ef332005-10-26 17:05:24 +1000360 printk (KERN_WARNING "RTAS: bad log buffer size %d\n",
361 rtas_error_log_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 rtas_error_log_max = RTAS_ERROR_LOG_MAX;
363 }
364 return rtas_error_log_max;
365}
Paul Mackerras033ef332005-10-26 17:05:24 +1000366EXPORT_SYMBOL(rtas_get_error_log_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368
Michael Ellerman1c21a292008-05-08 14:27:19 +1000369static char rtas_err_buf[RTAS_ERROR_LOG_MAX];
370static int rtas_last_error_token;
Paul Mackerras033ef332005-10-26 17:05:24 +1000371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/** Return a copy of the detailed error text associated with the
373 * most recent failed call to rtas. Because the error text
374 * might go stale if there are any other intervening rtas calls,
375 * this routine must be called atomically with whatever produced
376 * the error (i.e. with rtas.lock still held from the previous call).
377 */
Paul Mackerras033ef332005-10-26 17:05:24 +1000378static char *__fetch_rtas_last_error(char *altbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 struct rtas_args err_args, save_args;
381 u32 bufsz;
Paul Mackerras033ef332005-10-26 17:05:24 +1000382 char *buf = NULL;
383
384 if (rtas_last_error_token == -1)
385 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 bufsz = rtas_get_error_log_max();
388
Paul Mackerras033ef332005-10-26 17:05:24 +1000389 err_args.token = rtas_last_error_token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 err_args.nargs = 2;
391 err_args.nret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 err_args.args[0] = (rtas_arg_t)__pa(rtas_err_buf);
393 err_args.args[1] = bufsz;
394 err_args.args[2] = 0;
395
396 save_args = rtas.args;
397 rtas.args = err_args;
398
399 enter_rtas(__pa(&rtas.args));
400
401 err_args = rtas.args;
402 rtas.args = save_args;
403
Paul Mackerras033ef332005-10-26 17:05:24 +1000404 /* Log the error in the unlikely case that there was one. */
405 if (unlikely(err_args.args[2] == 0)) {
406 if (altbuf) {
407 buf = altbuf;
408 } else {
409 buf = rtas_err_buf;
410 if (mem_init_done)
411 buf = kmalloc(RTAS_ERROR_LOG_MAX, GFP_ATOMIC);
412 }
413 if (buf)
414 memcpy(buf, rtas_err_buf, RTAS_ERROR_LOG_MAX);
415 }
416
417 return buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Paul Mackerras033ef332005-10-26 17:05:24 +1000420#define get_errorlog_buffer() kmalloc(RTAS_ERROR_LOG_MAX, GFP_KERNEL)
421
422#else /* CONFIG_RTAS_ERROR_LOGGING */
423#define __fetch_rtas_last_error(x) NULL
424#define get_errorlog_buffer() NULL
425#endif
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427int rtas_call(int token, int nargs, int nret, int *outputs, ...)
428{
429 va_list list;
Paul Mackerras033ef332005-10-26 17:05:24 +1000430 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 unsigned long s;
432 struct rtas_args *rtas_args;
Paul Mackerras033ef332005-10-26 17:05:24 +1000433 char *buff_copy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int ret;
435
Michael Ellerman24da3dd2006-06-23 18:20:10 +1000436 if (!rtas.entry || token == RTAS_UNKNOWN_SERVICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return -1;
438
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000439 s = lock_rtas();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 rtas_args = &rtas.args;
441
442 rtas_args->token = token;
443 rtas_args->nargs = nargs;
444 rtas_args->nret = nret;
445 rtas_args->rets = (rtas_arg_t *)&(rtas_args->args[nargs]);
446 va_start(list, outputs);
Paul Mackerras033ef332005-10-26 17:05:24 +1000447 for (i = 0; i < nargs; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 rtas_args->args[i] = va_arg(list, rtas_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 va_end(list);
450
451 for (i = 0; i < nret; ++i)
452 rtas_args->rets[i] = 0;
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 enter_rtas(__pa(rtas_args));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /* A -1 return code indicates that the last command couldn't
457 be completed due to a hardware error. */
458 if (rtas_args->rets[0] == -1)
Paul Mackerras033ef332005-10-26 17:05:24 +1000459 buff_copy = __fetch_rtas_last_error(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 if (nret > 1 && outputs != NULL)
462 for (i = 0; i < nret-1; ++i)
463 outputs[i] = rtas_args->rets[i+1];
464 ret = (nret > 0)? rtas_args->rets[0]: 0;
465
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000466 unlock_rtas(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 if (buff_copy) {
469 log_error(buff_copy, ERR_TYPE_RTAS_LOG, 0);
470 if (mem_init_done)
471 kfree(buff_copy);
472 }
473 return ret;
474}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000475EXPORT_SYMBOL(rtas_call);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
John Rose507279d2006-06-05 16:31:48 -0500477/* For RTAS_BUSY (-2), delay for 1 millisecond. For an extended busy status
478 * code of 990n, perform the hinted delay of 10^n (last digit) milliseconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 */
John Rose507279d2006-06-05 16:31:48 -0500480unsigned int rtas_busy_delay_time(int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
John Rose507279d2006-06-05 16:31:48 -0500482 int order;
483 unsigned int ms = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
John Rose507279d2006-06-05 16:31:48 -0500485 if (status == RTAS_BUSY) {
486 ms = 1;
487 } else if (status >= 9900 && status <= 9905) {
488 order = status - 9900;
489 for (ms = 1; order > 0; order--)
490 ms *= 10;
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
John Rose507279d2006-06-05 16:31:48 -0500493 return ms;
494}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000495EXPORT_SYMBOL(rtas_busy_delay_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
John Rose507279d2006-06-05 16:31:48 -0500497/* For an RTAS busy status code, perform the hinted delay. */
498unsigned int rtas_busy_delay(int status)
499{
500 unsigned int ms;
501
502 might_sleep();
503 ms = rtas_busy_delay_time(status);
504 if (ms)
505 msleep(ms);
506
507 return ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000509EXPORT_SYMBOL(rtas_busy_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Michael Ellerman1c21a292008-05-08 14:27:19 +1000511static int rtas_error_rc(int rtas_rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 int rc;
514
515 switch (rtas_rc) {
516 case -1: /* Hardware Error */
517 rc = -EIO;
518 break;
519 case -3: /* Bad indicator/domain/etc */
520 rc = -EINVAL;
521 break;
522 case -9000: /* Isolation error */
523 rc = -EFAULT;
524 break;
525 case -9001: /* Outstanding TCE/PTE */
526 rc = -EEXIST;
527 break;
528 case -9002: /* No usable slot */
529 rc = -ENODEV;
530 break;
531 default:
532 printk(KERN_ERR "%s: unexpected RTAS error %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100533 __func__, rtas_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 rc = -ERANGE;
535 break;
536 }
537 return rc;
538}
539
540int rtas_get_power_level(int powerdomain, int *level)
541{
542 int token = rtas_token("get-power-level");
543 int rc;
544
545 if (token == RTAS_UNKNOWN_SERVICE)
546 return -ENOENT;
547
548 while ((rc = rtas_call(token, 1, 2, level, powerdomain)) == RTAS_BUSY)
549 udelay(1);
550
551 if (rc < 0)
552 return rtas_error_rc(rc);
553 return rc;
554}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000555EXPORT_SYMBOL(rtas_get_power_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557int rtas_set_power_level(int powerdomain, int level, int *setlevel)
558{
559 int token = rtas_token("set-power-level");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int rc;
561
562 if (token == RTAS_UNKNOWN_SERVICE)
563 return -ENOENT;
564
John Rose507279d2006-06-05 16:31:48 -0500565 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 rc = rtas_call(token, 2, 2, setlevel, powerdomain, level);
John Rose507279d2006-06-05 16:31:48 -0500567 } while (rtas_busy_delay(rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 if (rc < 0)
570 return rtas_error_rc(rc);
571 return rc;
572}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000573EXPORT_SYMBOL(rtas_set_power_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575int rtas_get_sensor(int sensor, int index, int *state)
576{
577 int token = rtas_token("get-sensor-state");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 int rc;
579
580 if (token == RTAS_UNKNOWN_SERVICE)
581 return -ENOENT;
582
John Rose507279d2006-06-05 16:31:48 -0500583 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 rc = rtas_call(token, 2, 2, state, sensor, index);
John Rose507279d2006-06-05 16:31:48 -0500585 } while (rtas_busy_delay(rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 if (rc < 0)
588 return rtas_error_rc(rc);
589 return rc;
590}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000591EXPORT_SYMBOL(rtas_get_sensor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Nathan Lynchedc72ac2008-12-11 09:14:25 +0000593bool rtas_indicator_present(int token, int *maxindex)
594{
595 int proplen, count, i;
596 const struct indicator_elem {
597 u32 token;
598 u32 maxindex;
599 } *indicators;
600
601 indicators = of_get_property(rtas.dev, "rtas-indicators", &proplen);
602 if (!indicators)
603 return false;
604
605 count = proplen / sizeof(struct indicator_elem);
606
607 for (i = 0; i < count; i++) {
608 if (indicators[i].token != token)
609 continue;
610 if (maxindex)
611 *maxindex = indicators[i].maxindex;
612 return true;
613 }
614
615 return false;
616}
617EXPORT_SYMBOL(rtas_indicator_present);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619int rtas_set_indicator(int indicator, int index, int new_value)
620{
621 int token = rtas_token("set-indicator");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int rc;
623
624 if (token == RTAS_UNKNOWN_SERVICE)
625 return -ENOENT;
626
John Rose507279d2006-06-05 16:31:48 -0500627 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 rc = rtas_call(token, 3, 1, NULL, indicator, index, new_value);
John Rose507279d2006-06-05 16:31:48 -0500629 } while (rtas_busy_delay(rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if (rc < 0)
632 return rtas_error_rc(rc);
633 return rc;
634}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000635EXPORT_SYMBOL(rtas_set_indicator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Haren Myneni81b73dd2006-07-27 14:29:00 -0700637/*
638 * Ignoring RTAS extended delay
639 */
640int rtas_set_indicator_fast(int indicator, int index, int new_value)
641{
642 int rc;
643 int token = rtas_token("set-indicator");
644
645 if (token == RTAS_UNKNOWN_SERVICE)
646 return -ENOENT;
647
648 rc = rtas_call(token, 3, 1, NULL, indicator, index, new_value);
649
650 WARN_ON(rc == -2 || (rc >= 9900 && rc <= 9905));
651
652 if (rc < 0)
653 return rtas_error_rc(rc);
654
655 return rc;
656}
657
Paul Mackerras033ef332005-10-26 17:05:24 +1000658void rtas_restart(char *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100660 if (rtas_flash_term_hook)
661 rtas_flash_term_hook(SYS_RESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 printk("RTAS system-reboot returned %d\n",
663 rtas_call(rtas_token("system-reboot"), 0, 1, NULL));
664 for (;;);
665}
666
Paul Mackerras033ef332005-10-26 17:05:24 +1000667void rtas_power_off(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100669 if (rtas_flash_term_hook)
670 rtas_flash_term_hook(SYS_POWER_OFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /* allow power on only with power button press */
672 printk("RTAS power-off returned %d\n",
673 rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1));
674 for (;;);
675}
676
Paul Mackerras033ef332005-10-26 17:05:24 +1000677void rtas_halt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100679 if (rtas_flash_term_hook)
680 rtas_flash_term_hook(SYS_HALT);
681 /* allow power on only with power button press */
682 printk("RTAS power-off returned %d\n",
683 rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1));
684 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
687/* Must be in the RMO region, so we place it here */
688static char rtas_os_term_buf[2048];
689
Paul Mackerras8f515062007-12-03 09:30:04 +1100690void rtas_os_term(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 int status;
693
Paul Mackerras8f515062007-12-03 09:30:04 +1100694 if (panic_timeout)
695 return;
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (RTAS_UNKNOWN_SERVICE == rtas_token("ibm,os-term"))
698 return;
699
Paul Mackerras8f515062007-12-03 09:30:04 +1100700 snprintf(rtas_os_term_buf, 2048, "OS panic: %s", str);
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 do {
703 status = rtas_call(rtas_token("ibm,os-term"), 1, 1, NULL,
704 __pa(rtas_os_term_buf));
John Rose507279d2006-06-05 16:31:48 -0500705 } while (rtas_busy_delay(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
John Rose507279d2006-06-05 16:31:48 -0500707 if (status != 0)
708 printk(KERN_EMERG "ibm,os-term call failed %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600712static int ibm_suspend_me_token = RTAS_UNKNOWN_SERVICE;
713#ifdef CONFIG_PPC_PSERIES
714static void rtas_percpu_suspend_me(void *info)
715{
Brian Kingf52862f2009-02-17 06:49:50 +0000716 long rc = H_SUCCESS;
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100717 unsigned long msr_save;
Brian King46db2f82009-08-28 12:06:29 +0000718 u16 slb_size = mmu_slb_size;
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100719 int cpu;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600720 struct rtas_suspend_me_data *data =
721 (struct rtas_suspend_me_data *)info;
722
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100723 atomic_inc(&data->working);
724
725 /* really need to ensure MSR.EE is off for H_JOIN */
726 msr_save = mfmsr();
727 mtmsr(msr_save & ~(MSR_EE));
728
Brian Kingf52862f2009-02-17 06:49:50 +0000729 while (rc == H_SUCCESS && !atomic_read(&data->done))
730 rc = plpar_hcall_norets(H_JOIN);
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100731
732 mtmsr(msr_save);
733
734 if (rc == H_SUCCESS) {
735 /* This cpu was prodded and the suspend is complete. */
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600736 goto out;
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100737 } else if (rc == H_CONTINUE) {
738 /* All other cpus are in H_JOIN, this cpu does
739 * the suspend.
740 */
Brian King46db2f82009-08-28 12:06:29 +0000741 slb_set_size(SLB_MIN_SIZE);
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100742 printk(KERN_DEBUG "calling ibm,suspend-me on cpu %i\n",
743 smp_processor_id());
744 data->error = rtas_call(data->token, 0, 1, NULL);
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600745
Brian King46db2f82009-08-28 12:06:29 +0000746 if (data->error) {
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100747 printk(KERN_DEBUG "ibm,suspend-me returned %d\n",
748 data->error);
Brian King46db2f82009-08-28 12:06:29 +0000749 slb_set_size(slb_size);
750 }
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600751 } else {
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100752 printk(KERN_ERR "H_JOIN on cpu %i failed with rc = %ld\n",
753 smp_processor_id(), rc);
754 data->error = rc;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600755 }
Brian Kingf52862f2009-02-17 06:49:50 +0000756
757 atomic_set(&data->done, 1);
758
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100759 /* This cpu did the suspend or got an error; in either case,
760 * we need to prod all other other cpus out of join state.
761 * Extra prods are harmless.
762 */
763 for_each_online_cpu(cpu)
764 plpar_hcall_norets(H_PROD, get_hard_smp_processor_id(cpu));
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600765out:
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100766 if (atomic_dec_return(&data->working) == 0)
767 complete(data->complete);
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600768}
769
770static int rtas_ibm_suspend_me(struct rtas_args *args)
771{
Dave C Boutcher368a6ba2006-06-12 19:49:20 -0500772 long state;
773 long rc;
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000774 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600775 struct rtas_suspend_me_data data;
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100776 DECLARE_COMPLETION_ONSTACK(done);
777
778 if (!rtas_service_present("ibm,suspend-me"))
779 return -ENOSYS;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600780
Dave C Boutcher368a6ba2006-06-12 19:49:20 -0500781 /* Make sure the state is valid */
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000782 rc = plpar_hcall(H_VASI_STATE, retbuf,
783 ((u64)args->args[0] << 32) | args->args[1]);
784
785 state = retbuf[0];
Dave C Boutcher368a6ba2006-06-12 19:49:20 -0500786
787 if (rc) {
788 printk(KERN_ERR "rtas_ibm_suspend_me: vasi_state returned %ld\n",rc);
789 return rc;
790 } else if (state == H_VASI_ENABLED) {
791 args->args[args->nargs] = RTAS_NOT_SUSPENDABLE;
792 return 0;
793 } else if (state != H_VASI_SUSPENDING) {
794 printk(KERN_ERR "rtas_ibm_suspend_me: vasi_state returned state %ld\n",
795 state);
796 args->args[args->nargs] = -1;
797 return 0;
798 }
799
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100800 atomic_set(&data.working, 0);
Brian Kingf52862f2009-02-17 06:49:50 +0000801 atomic_set(&data.done, 0);
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100802 data.token = rtas_token("ibm,suspend-me");
803 data.error = 0;
804 data.complete = &done;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600805
806 /* Call function on all CPUs. One of us will make the
807 * rtas call
808 */
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200809 if (on_each_cpu(rtas_percpu_suspend_me, &data, 0))
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100810 data.error = -EINVAL;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600811
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100812 wait_for_completion(&done);
813
814 if (data.error != 0)
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600815 printk(KERN_ERR "Error doing global join\n");
816
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100817 return data.error;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600818}
819#else /* CONFIG_PPC_PSERIES */
820static int rtas_ibm_suspend_me(struct rtas_args *args)
821{
822 return -ENOSYS;
823}
824#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826asmlinkage int ppc_rtas(struct rtas_args __user *uargs)
827{
828 struct rtas_args args;
829 unsigned long flags;
Paul Mackerras033ef332005-10-26 17:05:24 +1000830 char *buff_copy, *errbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 int nargs;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600832 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 if (!capable(CAP_SYS_ADMIN))
835 return -EPERM;
836
837 if (copy_from_user(&args, uargs, 3 * sizeof(u32)) != 0)
838 return -EFAULT;
839
840 nargs = args.nargs;
841 if (nargs > ARRAY_SIZE(args.args)
842 || args.nret > ARRAY_SIZE(args.args)
843 || nargs + args.nret > ARRAY_SIZE(args.args))
844 return -EINVAL;
845
846 /* Copy in args. */
847 if (copy_from_user(args.args, uargs->args,
848 nargs * sizeof(rtas_arg_t)) != 0)
849 return -EFAULT;
850
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600851 if (args.token == RTAS_UNKNOWN_SERVICE)
852 return -EINVAL;
853
Nathan Fontenotb79998f2008-07-31 02:23:27 +1000854 args.rets = &args.args[nargs];
855 memset(args.rets, 0, args.nret * sizeof(rtas_arg_t));
856
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600857 /* Need to handle ibm,suspend_me call specially */
858 if (args.token == ibm_suspend_me_token) {
859 rc = rtas_ibm_suspend_me(&args);
860 if (rc)
861 return rc;
862 goto copy_return;
863 }
864
Paul Mackerras033ef332005-10-26 17:05:24 +1000865 buff_copy = get_errorlog_buffer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000867 flags = lock_rtas();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 rtas.args = args;
870 enter_rtas(__pa(&rtas.args));
871 args = rtas.args;
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* A -1 return code indicates that the last command couldn't
874 be completed due to a hardware error. */
Paul Mackerras033ef332005-10-26 17:05:24 +1000875 if (args.rets[0] == -1)
876 errbuf = __fetch_rtas_last_error(buff_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000878 unlock_rtas(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 if (buff_copy) {
Paul Mackerras033ef332005-10-26 17:05:24 +1000881 if (errbuf)
882 log_error(errbuf, ERR_TYPE_RTAS_LOG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 kfree(buff_copy);
884 }
885
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600886 copy_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /* Copy out args. */
888 if (copy_to_user(uargs->args + nargs,
889 args.args + nargs,
890 args.nret * sizeof(rtas_arg_t)) != 0)
891 return -EFAULT;
892
893 return 0;
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896/*
Adrian Bunk943ffb52006-01-10 00:10:13 +0100897 * Call early during boot, before mem init or bootmem, to retrieve the RTAS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 * informations from the device-tree and allocate the RMO buffer for userland
899 * accesses.
900 */
901void __init rtas_initialize(void)
902{
Paul Mackerras033ef332005-10-26 17:05:24 +1000903 unsigned long rtas_region = RTAS_INSTANTIATE_MAX;
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /* Get RTAS dev node and fill up our "rtas" structure with infos
906 * about it.
907 */
908 rtas.dev = of_find_node_by_name(NULL, "rtas");
909 if (rtas.dev) {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000910 const u32 *basep, *entryp, *sizep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000912 basep = of_get_property(rtas.dev, "linux,rtas-base", NULL);
913 sizep = of_get_property(rtas.dev, "rtas-size", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (basep != NULL && sizep != NULL) {
915 rtas.base = *basep;
916 rtas.size = *sizep;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000917 entryp = of_get_property(rtas.dev,
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000918 "linux,rtas-entry", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (entryp == NULL) /* Ugh */
920 rtas.entry = rtas.base;
921 else
922 rtas.entry = *entryp;
923 } else
924 rtas.dev = NULL;
925 }
Paul Mackerras033ef332005-10-26 17:05:24 +1000926 if (!rtas.dev)
927 return;
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* If RTAS was found, allocate the RMO buffer for it and look for
930 * the stop-self token if any
931 */
Paul Mackerras033ef332005-10-26 17:05:24 +1000932#ifdef CONFIG_PPC64
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100933 if (machine_is(pseries) && firmware_has_feature(FW_FEATURE_LPAR)) {
Paul Mackerras033ef332005-10-26 17:05:24 +1000934 rtas_region = min(lmb.rmo_size, RTAS_INSTANTIATE_MAX);
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600935 ibm_suspend_me_token = rtas_token("ibm,suspend-me");
936 }
Paul Mackerras033ef332005-10-26 17:05:24 +1000937#endif
938 rtas_rmo_buf = lmb_alloc_base(RTAS_RMOBUF_MAX, PAGE_SIZE, rtas_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Paul Mackerras033ef332005-10-26 17:05:24 +1000940#ifdef CONFIG_RTAS_ERROR_LOGGING
941 rtas_last_error_token = rtas_token("rtas-last-error");
942#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
Michael Ellerman458148c2006-06-23 18:20:13 +1000944
945int __init early_init_dt_scan_rtas(unsigned long node,
946 const char *uname, int depth, void *data)
947{
948 u32 *basep, *entryp, *sizep;
949
950 if (depth != 1 || strcmp(uname, "rtas") != 0)
951 return 0;
952
953 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL);
954 entryp = of_get_flat_dt_prop(node, "linux,rtas-entry", NULL);
955 sizep = of_get_flat_dt_prop(node, "rtas-size", NULL);
956
957 if (basep && entryp && sizep) {
958 rtas.base = *basep;
959 rtas.entry = *entryp;
960 rtas.size = *sizep;
961 }
962
Michael Ellermancc46bb92006-06-23 18:20:16 +1000963#ifdef CONFIG_UDBG_RTAS_CONSOLE
964 basep = of_get_flat_dt_prop(node, "put-term-char", NULL);
965 if (basep)
966 rtas_putchar_token = *basep;
967
968 basep = of_get_flat_dt_prop(node, "get-term-char", NULL);
969 if (basep)
970 rtas_getchar_token = *basep;
Michael Neuling9a2ded52006-08-16 23:12:14 -0500971
972 if (rtas_putchar_token != RTAS_UNKNOWN_SERVICE &&
973 rtas_getchar_token != RTAS_UNKNOWN_SERVICE)
974 udbg_init_rtas_console();
975
Michael Ellermancc46bb92006-06-23 18:20:16 +1000976#endif
977
Michael Ellerman458148c2006-06-23 18:20:13 +1000978 /* break now */
979 return 1;
980}
Benjamin Herrenschmidtc4007a22009-06-16 16:42:50 +0000981
Thomas Gleixner445c8952009-12-02 19:49:50 +0100982static arch_spinlock_t timebase_lock;
Benjamin Herrenschmidtc4007a22009-06-16 16:42:50 +0000983static u64 timebase = 0;
984
985void __cpuinit rtas_give_timebase(void)
986{
987 unsigned long flags;
988
989 local_irq_save(flags);
990 hard_irq_disable();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100991 arch_spin_lock(&timebase_lock);
Benjamin Herrenschmidtc4007a22009-06-16 16:42:50 +0000992 rtas_call(rtas_token("freeze-time-base"), 0, 1, NULL);
993 timebase = get_tb();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100994 arch_spin_unlock(&timebase_lock);
Benjamin Herrenschmidtc4007a22009-06-16 16:42:50 +0000995
996 while (timebase)
997 barrier();
998 rtas_call(rtas_token("thaw-time-base"), 0, 1, NULL);
999 local_irq_restore(flags);
1000}
1001
1002void __cpuinit rtas_take_timebase(void)
1003{
1004 while (!timebase)
1005 barrier();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001006 arch_spin_lock(&timebase_lock);
Benjamin Herrenschmidtc4007a22009-06-16 16:42:50 +00001007 set_tb(timebase >> 32, timebase & 0xffffffff);
1008 timebase = 0;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001009 arch_spin_unlock(&timebase_lock);
Benjamin Herrenschmidtc4007a22009-06-16 16:42:50 +00001010}