blob: d9a9974c69389539aea8898acf5bf58310bdccc6 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <asm/prom.h>
28#include <asm/rtas.h>
Michael Ellerman31a7f672006-01-31 17:17:47 +110029#include <asm/hvcall.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/machdep.h>
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110031#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/page.h>
33#include <asm/param.h>
34#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/delay.h>
36#include <asm/uaccess.h>
Michael Ellerman296167a2006-01-11 11:54:09 +110037#include <asm/udbg.h>
Arnd Bergmanna7f31842006-03-23 00:00:08 +010038#include <asm/syscalls.h>
Nathan Lynch8f5c7572007-11-14 03:15:13 +110039#include <asm/smp.h>
40#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Paul Mackerras033ef332005-10-26 17:05:24 +100042struct rtas_t rtas = {
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +000043 .lock = __RAW_SPIN_LOCK_UNLOCKED
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
Michael Ellermanab3ab742006-06-23 18:20:11 +100045EXPORT_SYMBOL(rtas);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Dave C Boutcher91dc1822006-01-13 18:39:24 -060047struct rtas_suspend_me_data {
Nathan Lynch8f5c7572007-11-14 03:15:13 +110048 atomic_t working; /* number of cpus accessing this struct */
Brian Kingf52862f2009-02-17 06:49:50 +000049 atomic_t done;
Nathan Lynch8f5c7572007-11-14 03:15:13 +110050 int token; /* ibm,suspend-me */
51 int error;
52 struct completion *complete; /* wait on this until working == 0 */
Dave C Boutcher91dc1822006-01-13 18:39:24 -060053};
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055DEFINE_SPINLOCK(rtas_data_buf_lock);
Michael Ellermanab3ab742006-06-23 18:20:11 +100056EXPORT_SYMBOL(rtas_data_buf_lock);
57
Paul Mackerras033ef332005-10-26 17:05:24 +100058char rtas_data_buf[RTAS_DATA_BUF_SIZE] __cacheline_aligned;
Michael Ellermanab3ab742006-06-23 18:20:11 +100059EXPORT_SYMBOL(rtas_data_buf);
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061unsigned long rtas_rmo_buf;
62
Paul Mackerras033ef332005-10-26 17:05:24 +100063/*
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +110064 * If non-NULL, this gets called when the kernel terminates.
65 * This is done like this so rtas_flash can be a module.
66 */
67void (*rtas_flash_term_hook)(int);
68EXPORT_SYMBOL(rtas_flash_term_hook);
69
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +000070/* RTAS use home made raw locking instead of spin_lock_irqsave
71 * because those can be called from within really nasty contexts
72 * such as having the timebase stopped which would lockup with
73 * normal locks and spinlock debugging enabled
74 */
75static unsigned long lock_rtas(void)
76{
77 unsigned long flags;
78
79 local_irq_save(flags);
80 preempt_disable();
81 __raw_spin_lock_flags(&rtas.lock, flags);
82 return flags;
83}
84
85static void unlock_rtas(unsigned long flags)
86{
87 __raw_spin_unlock(&rtas.lock);
88 local_irq_restore(flags);
89 preempt_enable();
90}
91
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +110092/*
Paul Mackerras033ef332005-10-26 17:05:24 +100093 * call_rtas_display_status and call_rtas_display_status_delay
94 * are designed only for very early low-level debugging, which
95 * is why the token is hard-coded to 10.
96 */
Michael Ellerman296167a2006-01-11 11:54:09 +110097static void call_rtas_display_status(char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct rtas_args *args = &rtas.args;
100 unsigned long s;
101
102 if (!rtas.base)
103 return;
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000104 s = lock_rtas();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 args->token = 10;
107 args->nargs = 1;
108 args->nret = 1;
109 args->rets = (rtas_arg_t *)&(args->args[1]);
Michael Ellerman296167a2006-01-11 11:54:09 +1100110 args->args[0] = (unsigned char)c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 enter_rtas(__pa(args));
113
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000114 unlock_rtas(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Michael Ellerman296167a2006-01-11 11:54:09 +1100117static void call_rtas_display_status_delay(char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 static int pending_newline = 0; /* did last write end with unprinted newline? */
120 static int width = 16;
121
122 if (c == '\n') {
123 while (width-- > 0)
124 call_rtas_display_status(' ');
125 width = 16;
Benjamin Herrenschmidt21fe3302005-11-07 16:41:59 +1100126 mdelay(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 pending_newline = 1;
128 } else {
129 if (pending_newline) {
130 call_rtas_display_status('\r');
131 call_rtas_display_status('\n');
132 }
133 pending_newline = 0;
134 if (width--) {
135 call_rtas_display_status(c);
136 udelay(10000);
137 }
138 }
139}
140
Michael Ellermancc46bb92006-06-23 18:20:16 +1000141void __init udbg_init_rtas_panel(void)
Michael Ellerman296167a2006-01-11 11:54:09 +1100142{
143 udbg_putc = call_rtas_display_status_delay;
144}
145
Michael Ellermancc46bb92006-06-23 18:20:16 +1000146#ifdef CONFIG_UDBG_RTAS_CONSOLE
147
148/* If you think you're dying before early_init_dt_scan_rtas() does its
149 * work, you can hard code the token values for your firmware here and
150 * hardcode rtas.base/entry etc.
151 */
152static unsigned int rtas_putchar_token = RTAS_UNKNOWN_SERVICE;
153static unsigned int rtas_getchar_token = RTAS_UNKNOWN_SERVICE;
154
155static void udbg_rtascon_putc(char c)
156{
157 int tries;
158
159 if (!rtas.base)
160 return;
161
162 /* Add CRs before LFs */
163 if (c == '\n')
164 udbg_rtascon_putc('\r');
165
166 /* if there is more than one character to be displayed, wait a bit */
167 for (tries = 0; tries < 16; tries++) {
168 if (rtas_call(rtas_putchar_token, 1, 1, NULL, c) == 0)
169 break;
170 udelay(1000);
171 }
172}
173
174static int udbg_rtascon_getc_poll(void)
175{
176 int c;
177
178 if (!rtas.base)
179 return -1;
180
181 if (rtas_call(rtas_getchar_token, 0, 2, &c))
182 return -1;
183
184 return c;
185}
186
187static int udbg_rtascon_getc(void)
188{
189 int c;
190
191 while ((c = udbg_rtascon_getc_poll()) == -1)
192 ;
193
194 return c;
195}
196
197
198void __init udbg_init_rtas_console(void)
199{
200 udbg_putc = udbg_rtascon_putc;
201 udbg_getc = udbg_rtascon_getc;
202 udbg_getc_poll = udbg_rtascon_getc_poll;
203}
204#endif /* CONFIG_UDBG_RTAS_CONSOLE */
205
Paul Mackerras033ef332005-10-26 17:05:24 +1000206void rtas_progress(char *s, unsigned short hex)
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000207{
208 struct device_node *root;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000209 int width;
210 const int *p;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000211 char *os;
212 static int display_character, set_indicator;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000213 static int display_width, display_lines, form_feed;
Tobias Klauserc5a69d52007-02-17 20:11:19 +0100214 static const int *row_width;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000215 static DEFINE_SPINLOCK(progress_lock);
Mike Strosaker8f586b22005-06-23 16:09:41 +1000216 static int current_line;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000217 static int pending_newline = 0; /* did last write end with unprinted newline? */
218
219 if (!rtas.base)
220 return;
221
Mike Strosaker8f586b22005-06-23 16:09:41 +1000222 if (display_width == 0) {
223 display_width = 0x10;
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000224 if ((root = of_find_node_by_path("/rtas"))) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000225 if ((p = of_get_property(root,
Mike Strosaker8f586b22005-06-23 16:09:41 +1000226 "ibm,display-line-length", NULL)))
227 display_width = *p;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000228 if ((p = of_get_property(root,
Mike Strosaker8f586b22005-06-23 16:09:41 +1000229 "ibm,form-feed", NULL)))
230 form_feed = *p;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000231 if ((p = of_get_property(root,
Mike Strosaker8f586b22005-06-23 16:09:41 +1000232 "ibm,display-number-of-lines", NULL)))
233 display_lines = *p;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000234 row_width = of_get_property(root,
Mike Strosaker8f586b22005-06-23 16:09:41 +1000235 "ibm,display-truncation-length", NULL);
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000236 of_node_put(root);
Mike Strosaker8f586b22005-06-23 16:09:41 +1000237 }
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000238 display_character = rtas_token("display-character");
239 set_indicator = rtas_token("set-indicator");
240 }
241
242 if (display_character == RTAS_UNKNOWN_SERVICE) {
243 /* use hex display if available */
244 if (set_indicator != RTAS_UNKNOWN_SERVICE)
245 rtas_call(set_indicator, 3, 1, NULL, 6, 0, hex);
246 return;
247 }
248
249 spin_lock(&progress_lock);
250
251 /*
252 * Last write ended with newline, but we didn't print it since
253 * it would just clear the bottom line of output. Print it now
254 * instead.
255 *
Mike Strosaker8f586b22005-06-23 16:09:41 +1000256 * If no newline is pending and form feed is supported, clear the
257 * display with a form feed; otherwise, print a CR to start output
258 * at the beginning of the line.
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000259 */
260 if (pending_newline) {
261 rtas_call(display_character, 1, 1, NULL, '\r');
262 rtas_call(display_character, 1, 1, NULL, '\n');
263 pending_newline = 0;
264 } else {
Mike Strosaker8f586b22005-06-23 16:09:41 +1000265 current_line = 0;
266 if (form_feed)
267 rtas_call(display_character, 1, 1, NULL,
268 (char)form_feed);
269 else
270 rtas_call(display_character, 1, 1, NULL, '\r');
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000271 }
272
Mike Strosaker8f586b22005-06-23 16:09:41 +1000273 if (row_width)
274 width = row_width[current_line];
275 else
276 width = display_width;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000277 os = s;
278 while (*os) {
279 if (*os == '\n' || *os == '\r') {
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000280 /* If newline is the last character, save it
281 * until next call to avoid bumping up the
282 * display output.
283 */
284 if (*os == '\n' && !os[1]) {
285 pending_newline = 1;
Mike Strosaker8f586b22005-06-23 16:09:41 +1000286 current_line++;
287 if (current_line > display_lines-1)
288 current_line = display_lines-1;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000289 spin_unlock(&progress_lock);
290 return;
291 }
292
293 /* RTAS wants CR-LF, not just LF */
294
295 if (*os == '\n') {
296 rtas_call(display_character, 1, 1, NULL, '\r');
297 rtas_call(display_character, 1, 1, NULL, '\n');
298 } else {
299 /* CR might be used to re-draw a line, so we'll
300 * leave it alone and not add LF.
301 */
302 rtas_call(display_character, 1, 1, NULL, *os);
303 }
304
Mike Strosaker8f586b22005-06-23 16:09:41 +1000305 if (row_width)
306 width = row_width[current_line];
307 else
308 width = display_width;
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000309 } else {
310 width--;
311 rtas_call(display_character, 1, 1, NULL, *os);
312 }
313
314 os++;
315
316 /* if we overwrite the screen length */
317 if (width <= 0)
318 while ((*os != 0) && (*os != '\n') && (*os != '\r'))
319 os++;
320 }
321
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000322 spin_unlock(&progress_lock);
323}
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100324EXPORT_SYMBOL(rtas_progress); /* needed by rtas_flash module */
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000325
Paul Mackerras033ef332005-10-26 17:05:24 +1000326int rtas_token(const char *service)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000328 const int *tokp;
Paul Mackerras033ef332005-10-26 17:05:24 +1000329 if (rtas.dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return RTAS_UNKNOWN_SERVICE;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000331 tokp = of_get_property(rtas.dev, service, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return tokp ? *tokp : RTAS_UNKNOWN_SERVICE;
333}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000334EXPORT_SYMBOL(rtas_token);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Nathan Lynchf2d6d2d2006-12-06 18:50:45 -0600336int rtas_service_present(const char *service)
337{
338 return rtas_token(service) != RTAS_UNKNOWN_SERVICE;
339}
340EXPORT_SYMBOL(rtas_service_present);
341
Paul Mackerras033ef332005-10-26 17:05:24 +1000342#ifdef CONFIG_RTAS_ERROR_LOGGING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343/*
344 * Return the firmware-specified size of the error log buffer
345 * for all rtas calls that require an error buffer argument.
346 * This includes 'check-exception' and 'rtas-last-error'.
347 */
348int rtas_get_error_log_max(void)
349{
350 static int rtas_error_log_max;
351 if (rtas_error_log_max)
352 return rtas_error_log_max;
353
354 rtas_error_log_max = rtas_token ("rtas-error-log-max");
355 if ((rtas_error_log_max == RTAS_UNKNOWN_SERVICE) ||
356 (rtas_error_log_max > RTAS_ERROR_LOG_MAX)) {
Paul Mackerras033ef332005-10-26 17:05:24 +1000357 printk (KERN_WARNING "RTAS: bad log buffer size %d\n",
358 rtas_error_log_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 rtas_error_log_max = RTAS_ERROR_LOG_MAX;
360 }
361 return rtas_error_log_max;
362}
Paul Mackerras033ef332005-10-26 17:05:24 +1000363EXPORT_SYMBOL(rtas_get_error_log_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365
Michael Ellerman1c21a292008-05-08 14:27:19 +1000366static char rtas_err_buf[RTAS_ERROR_LOG_MAX];
367static int rtas_last_error_token;
Paul Mackerras033ef332005-10-26 17:05:24 +1000368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369/** Return a copy of the detailed error text associated with the
370 * most recent failed call to rtas. Because the error text
371 * might go stale if there are any other intervening rtas calls,
372 * this routine must be called atomically with whatever produced
373 * the error (i.e. with rtas.lock still held from the previous call).
374 */
Paul Mackerras033ef332005-10-26 17:05:24 +1000375static char *__fetch_rtas_last_error(char *altbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 struct rtas_args err_args, save_args;
378 u32 bufsz;
Paul Mackerras033ef332005-10-26 17:05:24 +1000379 char *buf = NULL;
380
381 if (rtas_last_error_token == -1)
382 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 bufsz = rtas_get_error_log_max();
385
Paul Mackerras033ef332005-10-26 17:05:24 +1000386 err_args.token = rtas_last_error_token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 err_args.nargs = 2;
388 err_args.nret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 err_args.args[0] = (rtas_arg_t)__pa(rtas_err_buf);
390 err_args.args[1] = bufsz;
391 err_args.args[2] = 0;
392
393 save_args = rtas.args;
394 rtas.args = err_args;
395
396 enter_rtas(__pa(&rtas.args));
397
398 err_args = rtas.args;
399 rtas.args = save_args;
400
Paul Mackerras033ef332005-10-26 17:05:24 +1000401 /* Log the error in the unlikely case that there was one. */
402 if (unlikely(err_args.args[2] == 0)) {
403 if (altbuf) {
404 buf = altbuf;
405 } else {
406 buf = rtas_err_buf;
407 if (mem_init_done)
408 buf = kmalloc(RTAS_ERROR_LOG_MAX, GFP_ATOMIC);
409 }
410 if (buf)
411 memcpy(buf, rtas_err_buf, RTAS_ERROR_LOG_MAX);
412 }
413
414 return buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Paul Mackerras033ef332005-10-26 17:05:24 +1000417#define get_errorlog_buffer() kmalloc(RTAS_ERROR_LOG_MAX, GFP_KERNEL)
418
419#else /* CONFIG_RTAS_ERROR_LOGGING */
420#define __fetch_rtas_last_error(x) NULL
421#define get_errorlog_buffer() NULL
422#endif
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424int rtas_call(int token, int nargs, int nret, int *outputs, ...)
425{
426 va_list list;
Paul Mackerras033ef332005-10-26 17:05:24 +1000427 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 unsigned long s;
429 struct rtas_args *rtas_args;
Paul Mackerras033ef332005-10-26 17:05:24 +1000430 char *buff_copy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 int ret;
432
Michael Ellerman24da3dd2006-06-23 18:20:10 +1000433 if (!rtas.entry || token == RTAS_UNKNOWN_SERVICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return -1;
435
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000436 s = lock_rtas();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 rtas_args = &rtas.args;
438
439 rtas_args->token = token;
440 rtas_args->nargs = nargs;
441 rtas_args->nret = nret;
442 rtas_args->rets = (rtas_arg_t *)&(rtas_args->args[nargs]);
443 va_start(list, outputs);
Paul Mackerras033ef332005-10-26 17:05:24 +1000444 for (i = 0; i < nargs; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 rtas_args->args[i] = va_arg(list, rtas_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 va_end(list);
447
448 for (i = 0; i < nret; ++i)
449 rtas_args->rets[i] = 0;
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 enter_rtas(__pa(rtas_args));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 /* A -1 return code indicates that the last command couldn't
454 be completed due to a hardware error. */
455 if (rtas_args->rets[0] == -1)
Paul Mackerras033ef332005-10-26 17:05:24 +1000456 buff_copy = __fetch_rtas_last_error(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 if (nret > 1 && outputs != NULL)
459 for (i = 0; i < nret-1; ++i)
460 outputs[i] = rtas_args->rets[i+1];
461 ret = (nret > 0)? rtas_args->rets[0]: 0;
462
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000463 unlock_rtas(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (buff_copy) {
466 log_error(buff_copy, ERR_TYPE_RTAS_LOG, 0);
467 if (mem_init_done)
468 kfree(buff_copy);
469 }
470 return ret;
471}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000472EXPORT_SYMBOL(rtas_call);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
John Rose507279d2006-06-05 16:31:48 -0500474/* For RTAS_BUSY (-2), delay for 1 millisecond. For an extended busy status
475 * code of 990n, perform the hinted delay of 10^n (last digit) milliseconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 */
John Rose507279d2006-06-05 16:31:48 -0500477unsigned int rtas_busy_delay_time(int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
John Rose507279d2006-06-05 16:31:48 -0500479 int order;
480 unsigned int ms = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
John Rose507279d2006-06-05 16:31:48 -0500482 if (status == RTAS_BUSY) {
483 ms = 1;
484 } else if (status >= 9900 && status <= 9905) {
485 order = status - 9900;
486 for (ms = 1; order > 0; order--)
487 ms *= 10;
488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
John Rose507279d2006-06-05 16:31:48 -0500490 return ms;
491}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000492EXPORT_SYMBOL(rtas_busy_delay_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
John Rose507279d2006-06-05 16:31:48 -0500494/* For an RTAS busy status code, perform the hinted delay. */
495unsigned int rtas_busy_delay(int status)
496{
497 unsigned int ms;
498
499 might_sleep();
500 ms = rtas_busy_delay_time(status);
501 if (ms)
502 msleep(ms);
503
504 return ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000506EXPORT_SYMBOL(rtas_busy_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Michael Ellerman1c21a292008-05-08 14:27:19 +1000508static int rtas_error_rc(int rtas_rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 int rc;
511
512 switch (rtas_rc) {
513 case -1: /* Hardware Error */
514 rc = -EIO;
515 break;
516 case -3: /* Bad indicator/domain/etc */
517 rc = -EINVAL;
518 break;
519 case -9000: /* Isolation error */
520 rc = -EFAULT;
521 break;
522 case -9001: /* Outstanding TCE/PTE */
523 rc = -EEXIST;
524 break;
525 case -9002: /* No usable slot */
526 rc = -ENODEV;
527 break;
528 default:
529 printk(KERN_ERR "%s: unexpected RTAS error %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100530 __func__, rtas_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 rc = -ERANGE;
532 break;
533 }
534 return rc;
535}
536
537int rtas_get_power_level(int powerdomain, int *level)
538{
539 int token = rtas_token("get-power-level");
540 int rc;
541
542 if (token == RTAS_UNKNOWN_SERVICE)
543 return -ENOENT;
544
545 while ((rc = rtas_call(token, 1, 2, level, powerdomain)) == RTAS_BUSY)
546 udelay(1);
547
548 if (rc < 0)
549 return rtas_error_rc(rc);
550 return rc;
551}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000552EXPORT_SYMBOL(rtas_get_power_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554int rtas_set_power_level(int powerdomain, int level, int *setlevel)
555{
556 int token = rtas_token("set-power-level");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 int rc;
558
559 if (token == RTAS_UNKNOWN_SERVICE)
560 return -ENOENT;
561
John Rose507279d2006-06-05 16:31:48 -0500562 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 rc = rtas_call(token, 2, 2, setlevel, powerdomain, level);
John Rose507279d2006-06-05 16:31:48 -0500564 } while (rtas_busy_delay(rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 if (rc < 0)
567 return rtas_error_rc(rc);
568 return rc;
569}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000570EXPORT_SYMBOL(rtas_set_power_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572int rtas_get_sensor(int sensor, int index, int *state)
573{
574 int token = rtas_token("get-sensor-state");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int rc;
576
577 if (token == RTAS_UNKNOWN_SERVICE)
578 return -ENOENT;
579
John Rose507279d2006-06-05 16:31:48 -0500580 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 rc = rtas_call(token, 2, 2, state, sensor, index);
John Rose507279d2006-06-05 16:31:48 -0500582 } while (rtas_busy_delay(rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 if (rc < 0)
585 return rtas_error_rc(rc);
586 return rc;
587}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000588EXPORT_SYMBOL(rtas_get_sensor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Nathan Lynchedc72ac2008-12-11 09:14:25 +0000590bool rtas_indicator_present(int token, int *maxindex)
591{
592 int proplen, count, i;
593 const struct indicator_elem {
594 u32 token;
595 u32 maxindex;
596 } *indicators;
597
598 indicators = of_get_property(rtas.dev, "rtas-indicators", &proplen);
599 if (!indicators)
600 return false;
601
602 count = proplen / sizeof(struct indicator_elem);
603
604 for (i = 0; i < count; i++) {
605 if (indicators[i].token != token)
606 continue;
607 if (maxindex)
608 *maxindex = indicators[i].maxindex;
609 return true;
610 }
611
612 return false;
613}
614EXPORT_SYMBOL(rtas_indicator_present);
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616int rtas_set_indicator(int indicator, int index, int new_value)
617{
618 int token = rtas_token("set-indicator");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 int rc;
620
621 if (token == RTAS_UNKNOWN_SERVICE)
622 return -ENOENT;
623
John Rose507279d2006-06-05 16:31:48 -0500624 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 rc = rtas_call(token, 3, 1, NULL, indicator, index, new_value);
John Rose507279d2006-06-05 16:31:48 -0500626 } while (rtas_busy_delay(rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 if (rc < 0)
629 return rtas_error_rc(rc);
630 return rc;
631}
Michael Ellermanab3ab742006-06-23 18:20:11 +1000632EXPORT_SYMBOL(rtas_set_indicator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Haren Myneni81b73dd2006-07-27 14:29:00 -0700634/*
635 * Ignoring RTAS extended delay
636 */
637int rtas_set_indicator_fast(int indicator, int index, int new_value)
638{
639 int rc;
640 int token = rtas_token("set-indicator");
641
642 if (token == RTAS_UNKNOWN_SERVICE)
643 return -ENOENT;
644
645 rc = rtas_call(token, 3, 1, NULL, indicator, index, new_value);
646
647 WARN_ON(rc == -2 || (rc >= 9900 && rc <= 9905));
648
649 if (rc < 0)
650 return rtas_error_rc(rc);
651
652 return rc;
653}
654
Paul Mackerras033ef332005-10-26 17:05:24 +1000655void rtas_restart(char *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100657 if (rtas_flash_term_hook)
658 rtas_flash_term_hook(SYS_RESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 printk("RTAS system-reboot returned %d\n",
660 rtas_call(rtas_token("system-reboot"), 0, 1, NULL));
661 for (;;);
662}
663
Paul Mackerras033ef332005-10-26 17:05:24 +1000664void rtas_power_off(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100666 if (rtas_flash_term_hook)
667 rtas_flash_term_hook(SYS_POWER_OFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /* allow power on only with power button press */
669 printk("RTAS power-off returned %d\n",
670 rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1));
671 for (;;);
672}
673
Paul Mackerras033ef332005-10-26 17:05:24 +1000674void rtas_halt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Paul Mackerrasf4fcbbe2005-11-03 14:41:19 +1100676 if (rtas_flash_term_hook)
677 rtas_flash_term_hook(SYS_HALT);
678 /* allow power on only with power button press */
679 printk("RTAS power-off returned %d\n",
680 rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1));
681 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684/* Must be in the RMO region, so we place it here */
685static char rtas_os_term_buf[2048];
686
Paul Mackerras8f515062007-12-03 09:30:04 +1100687void rtas_os_term(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 int status;
690
Paul Mackerras8f515062007-12-03 09:30:04 +1100691 if (panic_timeout)
692 return;
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (RTAS_UNKNOWN_SERVICE == rtas_token("ibm,os-term"))
695 return;
696
Paul Mackerras8f515062007-12-03 09:30:04 +1100697 snprintf(rtas_os_term_buf, 2048, "OS panic: %s", str);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 do {
700 status = rtas_call(rtas_token("ibm,os-term"), 1, 1, NULL,
701 __pa(rtas_os_term_buf));
John Rose507279d2006-06-05 16:31:48 -0500702 } while (rtas_busy_delay(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
John Rose507279d2006-06-05 16:31:48 -0500704 if (status != 0)
705 printk(KERN_EMERG "ibm,os-term call failed %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600709static int ibm_suspend_me_token = RTAS_UNKNOWN_SERVICE;
710#ifdef CONFIG_PPC_PSERIES
711static void rtas_percpu_suspend_me(void *info)
712{
Brian Kingf52862f2009-02-17 06:49:50 +0000713 long rc = H_SUCCESS;
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100714 unsigned long msr_save;
715 int cpu;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600716 struct rtas_suspend_me_data *data =
717 (struct rtas_suspend_me_data *)info;
718
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100719 atomic_inc(&data->working);
720
721 /* really need to ensure MSR.EE is off for H_JOIN */
722 msr_save = mfmsr();
723 mtmsr(msr_save & ~(MSR_EE));
724
Brian Kingf52862f2009-02-17 06:49:50 +0000725 while (rc == H_SUCCESS && !atomic_read(&data->done))
726 rc = plpar_hcall_norets(H_JOIN);
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100727
728 mtmsr(msr_save);
729
730 if (rc == H_SUCCESS) {
731 /* This cpu was prodded and the suspend is complete. */
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600732 goto out;
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100733 } else if (rc == H_CONTINUE) {
734 /* All other cpus are in H_JOIN, this cpu does
735 * the suspend.
736 */
737 printk(KERN_DEBUG "calling ibm,suspend-me on cpu %i\n",
738 smp_processor_id());
739 data->error = rtas_call(data->token, 0, 1, NULL);
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600740
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100741 if (data->error)
742 printk(KERN_DEBUG "ibm,suspend-me returned %d\n",
743 data->error);
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600744 } else {
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100745 printk(KERN_ERR "H_JOIN on cpu %i failed with rc = %ld\n",
746 smp_processor_id(), rc);
747 data->error = rc;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600748 }
Brian Kingf52862f2009-02-17 06:49:50 +0000749
750 atomic_set(&data->done, 1);
751
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100752 /* This cpu did the suspend or got an error; in either case,
753 * we need to prod all other other cpus out of join state.
754 * Extra prods are harmless.
755 */
756 for_each_online_cpu(cpu)
757 plpar_hcall_norets(H_PROD, get_hard_smp_processor_id(cpu));
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600758out:
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100759 if (atomic_dec_return(&data->working) == 0)
760 complete(data->complete);
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600761}
762
763static int rtas_ibm_suspend_me(struct rtas_args *args)
764{
Dave C Boutcher368a6ba2006-06-12 19:49:20 -0500765 long state;
766 long rc;
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000767 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600768 struct rtas_suspend_me_data data;
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100769 DECLARE_COMPLETION_ONSTACK(done);
770
771 if (!rtas_service_present("ibm,suspend-me"))
772 return -ENOSYS;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600773
Dave C Boutcher368a6ba2006-06-12 19:49:20 -0500774 /* Make sure the state is valid */
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000775 rc = plpar_hcall(H_VASI_STATE, retbuf,
776 ((u64)args->args[0] << 32) | args->args[1]);
777
778 state = retbuf[0];
Dave C Boutcher368a6ba2006-06-12 19:49:20 -0500779
780 if (rc) {
781 printk(KERN_ERR "rtas_ibm_suspend_me: vasi_state returned %ld\n",rc);
782 return rc;
783 } else if (state == H_VASI_ENABLED) {
784 args->args[args->nargs] = RTAS_NOT_SUSPENDABLE;
785 return 0;
786 } else if (state != H_VASI_SUSPENDING) {
787 printk(KERN_ERR "rtas_ibm_suspend_me: vasi_state returned state %ld\n",
788 state);
789 args->args[args->nargs] = -1;
790 return 0;
791 }
792
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100793 atomic_set(&data.working, 0);
Brian Kingf52862f2009-02-17 06:49:50 +0000794 atomic_set(&data.done, 0);
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100795 data.token = rtas_token("ibm,suspend-me");
796 data.error = 0;
797 data.complete = &done;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600798
799 /* Call function on all CPUs. One of us will make the
800 * rtas call
801 */
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200802 if (on_each_cpu(rtas_percpu_suspend_me, &data, 0))
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100803 data.error = -EINVAL;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600804
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100805 wait_for_completion(&done);
806
807 if (data.error != 0)
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600808 printk(KERN_ERR "Error doing global join\n");
809
Nathan Lynch8f5c7572007-11-14 03:15:13 +1100810 return data.error;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600811}
812#else /* CONFIG_PPC_PSERIES */
813static int rtas_ibm_suspend_me(struct rtas_args *args)
814{
815 return -ENOSYS;
816}
817#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819asmlinkage int ppc_rtas(struct rtas_args __user *uargs)
820{
821 struct rtas_args args;
822 unsigned long flags;
Paul Mackerras033ef332005-10-26 17:05:24 +1000823 char *buff_copy, *errbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 int nargs;
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600825 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 if (!capable(CAP_SYS_ADMIN))
828 return -EPERM;
829
830 if (copy_from_user(&args, uargs, 3 * sizeof(u32)) != 0)
831 return -EFAULT;
832
833 nargs = args.nargs;
834 if (nargs > ARRAY_SIZE(args.args)
835 || args.nret > ARRAY_SIZE(args.args)
836 || nargs + args.nret > ARRAY_SIZE(args.args))
837 return -EINVAL;
838
839 /* Copy in args. */
840 if (copy_from_user(args.args, uargs->args,
841 nargs * sizeof(rtas_arg_t)) != 0)
842 return -EFAULT;
843
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600844 if (args.token == RTAS_UNKNOWN_SERVICE)
845 return -EINVAL;
846
Nathan Fontenotb79998f2008-07-31 02:23:27 +1000847 args.rets = &args.args[nargs];
848 memset(args.rets, 0, args.nret * sizeof(rtas_arg_t));
849
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600850 /* Need to handle ibm,suspend_me call specially */
851 if (args.token == ibm_suspend_me_token) {
852 rc = rtas_ibm_suspend_me(&args);
853 if (rc)
854 return rc;
855 goto copy_return;
856 }
857
Paul Mackerras033ef332005-10-26 17:05:24 +1000858 buff_copy = get_errorlog_buffer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000860 flags = lock_rtas();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 rtas.args = args;
863 enter_rtas(__pa(&rtas.args));
864 args = rtas.args;
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /* A -1 return code indicates that the last command couldn't
867 be completed due to a hardware error. */
Paul Mackerras033ef332005-10-26 17:05:24 +1000868 if (args.rets[0] == -1)
869 errbuf = __fetch_rtas_last_error(buff_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Benjamin Herrenschmidtf97bb362009-06-16 16:42:49 +0000871 unlock_rtas(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 if (buff_copy) {
Paul Mackerras033ef332005-10-26 17:05:24 +1000874 if (errbuf)
875 log_error(errbuf, ERR_TYPE_RTAS_LOG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 kfree(buff_copy);
877 }
878
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600879 copy_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 /* Copy out args. */
881 if (copy_to_user(uargs->args + nargs,
882 args.args + nargs,
883 args.nret * sizeof(rtas_arg_t)) != 0)
884 return -EFAULT;
885
886 return 0;
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889/*
Adrian Bunk943ffb52006-01-10 00:10:13 +0100890 * Call early during boot, before mem init or bootmem, to retrieve the RTAS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 * informations from the device-tree and allocate the RMO buffer for userland
892 * accesses.
893 */
894void __init rtas_initialize(void)
895{
Paul Mackerras033ef332005-10-26 17:05:24 +1000896 unsigned long rtas_region = RTAS_INSTANTIATE_MAX;
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 /* Get RTAS dev node and fill up our "rtas" structure with infos
899 * about it.
900 */
901 rtas.dev = of_find_node_by_name(NULL, "rtas");
902 if (rtas.dev) {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000903 const u32 *basep, *entryp, *sizep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000905 basep = of_get_property(rtas.dev, "linux,rtas-base", NULL);
906 sizep = of_get_property(rtas.dev, "rtas-size", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (basep != NULL && sizep != NULL) {
908 rtas.base = *basep;
909 rtas.size = *sizep;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000910 entryp = of_get_property(rtas.dev,
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000911 "linux,rtas-entry", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (entryp == NULL) /* Ugh */
913 rtas.entry = rtas.base;
914 else
915 rtas.entry = *entryp;
916 } else
917 rtas.dev = NULL;
918 }
Paul Mackerras033ef332005-10-26 17:05:24 +1000919 if (!rtas.dev)
920 return;
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 /* If RTAS was found, allocate the RMO buffer for it and look for
923 * the stop-self token if any
924 */
Paul Mackerras033ef332005-10-26 17:05:24 +1000925#ifdef CONFIG_PPC64
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100926 if (machine_is(pseries) && firmware_has_feature(FW_FEATURE_LPAR)) {
Paul Mackerras033ef332005-10-26 17:05:24 +1000927 rtas_region = min(lmb.rmo_size, RTAS_INSTANTIATE_MAX);
Dave C Boutcher91dc1822006-01-13 18:39:24 -0600928 ibm_suspend_me_token = rtas_token("ibm,suspend-me");
929 }
Paul Mackerras033ef332005-10-26 17:05:24 +1000930#endif
931 rtas_rmo_buf = lmb_alloc_base(RTAS_RMOBUF_MAX, PAGE_SIZE, rtas_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Paul Mackerras033ef332005-10-26 17:05:24 +1000933#ifdef CONFIG_RTAS_ERROR_LOGGING
934 rtas_last_error_token = rtas_token("rtas-last-error");
935#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
Michael Ellerman458148c2006-06-23 18:20:13 +1000937
938int __init early_init_dt_scan_rtas(unsigned long node,
939 const char *uname, int depth, void *data)
940{
941 u32 *basep, *entryp, *sizep;
942
943 if (depth != 1 || strcmp(uname, "rtas") != 0)
944 return 0;
945
946 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL);
947 entryp = of_get_flat_dt_prop(node, "linux,rtas-entry", NULL);
948 sizep = of_get_flat_dt_prop(node, "rtas-size", NULL);
949
950 if (basep && entryp && sizep) {
951 rtas.base = *basep;
952 rtas.entry = *entryp;
953 rtas.size = *sizep;
954 }
955
Michael Ellermancc46bb92006-06-23 18:20:16 +1000956#ifdef CONFIG_UDBG_RTAS_CONSOLE
957 basep = of_get_flat_dt_prop(node, "put-term-char", NULL);
958 if (basep)
959 rtas_putchar_token = *basep;
960
961 basep = of_get_flat_dt_prop(node, "get-term-char", NULL);
962 if (basep)
963 rtas_getchar_token = *basep;
Michael Neuling9a2ded52006-08-16 23:12:14 -0500964
965 if (rtas_putchar_token != RTAS_UNKNOWN_SERVICE &&
966 rtas_getchar_token != RTAS_UNKNOWN_SERVICE)
967 udbg_init_rtas_console();
968
Michael Ellermancc46bb92006-06-23 18:20:16 +1000969#endif
970
Michael Ellerman458148c2006-06-23 18:20:13 +1000971 /* break now */
972 return 1;
973}