rtas.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  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. #include <stdarg.h>
  14. #include <linux/kernel.h>
  15. #include <linux/types.h>
  16. #include <linux/spinlock.h>
  17. #include <linux/fs.h>
  18. #include <asm/init.h>
  19. #include <asm/prom.h>
  20. #include <asm/rtas.h>
  21. #include <asm/semaphore.h>
  22. #include <asm/machdep.h>
  23. #include <asm/paca.h>
  24. #include <asm/page.h>
  25. #include <asm/system.h>
  26. #include <asm/abs_addr.h>
  27. #include <asm/udbg.h>
  28. struct proc_dir_entry *rtas_proc_dir; /* /proc/ppc64/rtas dir */
  29. struct flash_block_list_header rtas_firmware_flash_list = {0, 0};
  30. /*
  31.  * prom_init() is called very early on, before the kernel text
  32.  * and data have been mapped to KERNELBASE.  At this point the code
  33.  * is running at whatever address it has been loaded at, so
  34.  * references to extern and static variables must be relocated
  35.  * explicitly.  The procedure reloc_offset() returns the address
  36.  * we're currently running at minus the address we were linked at.
  37.  * (Note that strings count as static variables.)
  38.  *
  39.  * Because OF may have mapped I/O devices into the area starting at
  40.  * KERNELBASE, particularly on CHRP machines, we can't safely call
  41.  * OF once the kernel has been mapped to KERNELBASE.  Therefore all
  42.  * OF calls should be done within prom_init(), and prom_init()
  43.  * and all routines called within it must be careful to relocate
  44.  * references as necessary.
  45.  *
  46.  * Note that the bss is cleared *after* prom_init runs, so we have
  47.  * to make sure that any static or extern variables it accesses
  48.  * are put in the data segment.
  49.  */
  50. struct rtas_t rtas = { 
  51. lock: SPIN_LOCK_UNLOCKED
  52. };
  53. extern unsigned long reloc_offset(void);
  54. void
  55. phys_call_rtas(int token, int nargs, int nret, ...)
  56. {
  57. va_list list;
  58. unsigned long offset = reloc_offset();
  59. struct rtas_args *rtas = PTRRELOC(&(get_paca()->xRtas));
  60. int i;
  61. rtas->token = token;
  62. rtas->nargs = nargs;
  63. rtas->nret  = nret;
  64. rtas->rets  = (rtas_arg_t *)PTRRELOC(&(rtas->args[nargs]));
  65. va_start(list, nret);
  66. for (i = 0; i < nargs; i++)
  67.   rtas->args[i] = (rtas_arg_t)LONG_LSW(va_arg(list, ulong));
  68. va_end(list);
  69.         enter_rtas(rtas);
  70. }
  71. void
  72. phys_call_rtas_display_status(char c)
  73. {
  74. unsigned long offset = reloc_offset();
  75. struct rtas_args *rtas = PTRRELOC(&(get_paca()->xRtas));
  76. rtas->token = 10;
  77. rtas->nargs = 1;
  78. rtas->nret  = 1;
  79. rtas->rets  = (rtas_arg_t *)PTRRELOC(&(rtas->args[1]));
  80. rtas->args[0] = (int)c;
  81. enter_rtas(rtas);
  82. }
  83. void
  84. call_rtas_display_status(char c)
  85. {
  86. struct rtas_args *rtas = &(get_paca()->xRtas);
  87. rtas->token = 10;
  88. rtas->nargs = 1;
  89. rtas->nret  = 1;
  90. rtas->rets  = (rtas_arg_t *)&(rtas->args[1]);
  91. rtas->args[0] = (int)c;
  92. enter_rtas((void *)__pa((unsigned long)rtas));
  93. }
  94. __openfirmware
  95. int
  96. rtas_token(const char *service)
  97. {
  98. int *tokp;
  99. if (rtas.dev == NULL) {
  100. PPCDBG(PPCDBG_RTAS,"tNo rtas device in device-tree...n");
  101. return RTAS_UNKNOWN_SERVICE;
  102. }
  103. tokp = (int *) get_property(rtas.dev, service, NULL);
  104. return tokp ? *tokp : RTAS_UNKNOWN_SERVICE;
  105. }
  106. __openfirmware
  107. long
  108. rtas_call(int token, int nargs, int nret,
  109.   unsigned long *outputs, ...)
  110. {
  111. va_list list;
  112. int i;
  113. unsigned long s;
  114. struct rtas_args *rtas_args = &(get_paca()->xRtas);
  115. PPCDBG(PPCDBG_RTAS, "Entering rtas_calln");
  116. PPCDBG(PPCDBG_RTAS, "ttoken    = 0x%xn", token);
  117. PPCDBG(PPCDBG_RTAS, "tnargs    = %dn", nargs);
  118. PPCDBG(PPCDBG_RTAS, "tnret     = %dn", nret);
  119. PPCDBG(PPCDBG_RTAS, "t&outputs = 0x%lxn", outputs);
  120. if (token == RTAS_UNKNOWN_SERVICE)
  121. return -1;
  122. rtas_args->token = token;
  123. rtas_args->nargs = nargs;
  124. rtas_args->nret  = nret;
  125. rtas_args->rets  = (rtas_arg_t *)&(rtas_args->args[nargs]);
  126. va_start(list, outputs);
  127. for (i = 0; i < nargs; ++i) {
  128. rtas_args->args[i] = (rtas_arg_t)LONG_LSW(va_arg(list, ulong));
  129. PPCDBG(PPCDBG_RTAS, "tnarg[%d] = 0x%lxn", i, rtas_args->args[i]);
  130. }
  131. va_end(list);
  132. for (i = 0; i < nret; ++i)
  133.   rtas_args->rets[i] = 0;
  134. #if 0   /* Gotta do something different here, use global lock for now... */
  135. spin_lock_irqsave(&rtas_args->lock, s);
  136. #else
  137. spin_lock_irqsave(&rtas.lock, s);
  138. #endif
  139. PPCDBG(PPCDBG_RTAS, "tentering rtas with 0x%lxn",
  140. (void *)__pa((unsigned long)rtas_args));
  141. enter_rtas((void *)__pa((unsigned long)rtas_args));
  142. PPCDBG(PPCDBG_RTAS, "treturned from rtas ...n");
  143. #if 0   /* Gotta do something different here, use global lock for now... */
  144. spin_unlock_irqrestore(&rtas_args->lock, s);
  145. #else
  146. spin_unlock_irqrestore(&rtas.lock, s);
  147. #endif
  148. ifppcdebug(PPCDBG_RTAS) {
  149. for(i=0; i < nret ;i++)
  150. udbg_printf("tnret[%d] = 0x%lxn", i, (ulong)rtas_args->rets[i]);
  151. }
  152. if (nret > 1 && outputs != NULL)
  153. for (i = 0; i < nret-1; ++i)
  154. outputs[i] = rtas_args->rets[i+1];
  155. return (ulong)((nret > 0) ? rtas_args->rets[0] : 0);
  156. }
  157. #define FLASH_BLOCK_LIST_VERSION (1UL)
  158. static void
  159. rtas_flash_firmware(void)
  160. {
  161. unsigned long image_size;
  162. struct flash_block_list *f, *next, *flist;
  163. unsigned long rtas_block_list;
  164. int i, status, update_token;
  165. update_token = rtas_token("ibm,update-flash-64-and-reboot");
  166. if (update_token == RTAS_UNKNOWN_SERVICE) {
  167. printk(KERN_ALERT "FLASH: ibm,update-flash-64-and-reboot is not available -- not a service partition?n");
  168. printk(KERN_ALERT "FLASH: firmware will not be flashedn");
  169. return;
  170. }
  171. /* NOTE: the "first" block list is a global var with no data
  172.  * blocks in the kernel data segment.  We do this because
  173.  * we want to ensure this block_list addr is under 4GB.
  174.  */
  175. rtas_firmware_flash_list.num_blocks = 0;
  176. flist = (struct flash_block_list *)&rtas_firmware_flash_list;
  177. rtas_block_list = virt_to_absolute((unsigned long)flist);
  178. if (rtas_block_list >= (4UL << 20)) {
  179. printk(KERN_ALERT "FLASH: kernel bug...flash list header addr above 4GBn");
  180. return;
  181. }
  182. printk(KERN_ALERT "FLASH: preparing saved firmware image for flashn");
  183. /* Update the block_list in place. */
  184. image_size = 0;
  185. for (f = flist; f; f = next) {
  186. /* Translate data addrs to absolute */
  187. for (i = 0; i < f->num_blocks; i++) {
  188. f->blocks[i].data = (char *)virt_to_absolute((unsigned long)f->blocks[i].data);
  189. image_size += f->blocks[i].length;
  190. }
  191. next = f->next;
  192. f->next = (struct flash_block_list *)virt_to_absolute((unsigned long)f->next);
  193. /* make num_blocks into the version/length field */
  194. f->num_blocks = (FLASH_BLOCK_LIST_VERSION << 56) | ((f->num_blocks+1)*16);
  195. }
  196. printk(KERN_ALERT "FLASH: flash image is %ld bytesn", image_size);
  197. printk(KERN_ALERT "FLASH: performing flash and rebootn");
  198. ppc_md.progress("Flashing        n", 0x0);
  199. ppc_md.progress("Please Wait...  ", 0x0);
  200. printk(KERN_ALERT "FLASH: this will take several minutes.  Do not power off!n");
  201. status = rtas_call(update_token, 1, 1, NULL, rtas_block_list);
  202. switch (status) { /* should only get "bad" status */
  203.     case 0:
  204. printk(KERN_ALERT "FLASH: successn");
  205. break;
  206.     case -1:
  207. printk(KERN_ALERT "FLASH: hardware error.  Firmware may not be not flashedn");
  208. break;
  209.     case -3:
  210. printk(KERN_ALERT "FLASH: image is corrupt or not correct for this platform.  Firmware not flashedn");
  211. break;
  212.     case -4:
  213. printk(KERN_ALERT "FLASH: flash failed when partially complete.  System may not rebootn");
  214. break;
  215.     default:
  216. printk(KERN_ALERT "FLASH: unknown flash return code %dn", status);
  217. break;
  218. }
  219. }
  220. void rtas_flash_bypass_warning(void)
  221. {
  222. printk(KERN_ALERT "FLASH: firmware flash requires a rebootn");
  223. printk(KERN_ALERT "FLASH: the firmware image will NOT be flashedn");
  224. }
  225. void __chrp
  226. rtas_restart(char *cmd)
  227. {
  228. if (rtas_firmware_flash_list.next)
  229. rtas_flash_firmware();
  230.         printk("RTAS system-reboot returned %ldn",
  231.        rtas_call(rtas_token("system-reboot"), 0, 1, NULL));
  232.         for (;;);
  233. }
  234. void __chrp
  235. rtas_power_off(void)
  236. {
  237. if (rtas_firmware_flash_list.next)
  238. rtas_flash_bypass_warning();
  239.         /* allow power on only with power button press */
  240.         printk("RTAS power-off returned %ldn",
  241.                rtas_call(rtas_token("power-off"), 2, 1, NULL,0xffffffff,0xffffffff));
  242.         for (;;);
  243. }
  244. void __chrp
  245. rtas_halt(void)
  246. {
  247. if (rtas_firmware_flash_list.next)
  248. rtas_flash_bypass_warning();
  249.         rtas_power_off();
  250. }