machine_kexec_64.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. /*
  2. * PPC64 code to handle Linux booting another kernel.
  3. *
  4. * Copyright (C) 2004-2005, IBM Corp.
  5. *
  6. * Created by: Milton D Miller II
  7. *
  8. * This source code is licensed under the GNU General Public License,
  9. * Version 2. See the file COPYING for more details.
  10. */
  11. #include <linux/kexec.h>
  12. #include <linux/smp.h>
  13. #include <linux/thread_info.h>
  14. #include <linux/init_task.h>
  15. #include <linux/errno.h>
  16. #include <linux/kernel.h>
  17. #include <linux/cpu.h>
  18. #include <linux/hardirq.h>
  19. #include <asm/page.h>
  20. #include <asm/current.h>
  21. #include <asm/machdep.h>
  22. #include <asm/cacheflush.h>
  23. #include <asm/paca.h>
  24. #include <asm/mmu.h>
  25. #include <asm/sections.h> /* _end */
  26. #include <asm/prom.h>
  27. #include <asm/smp.h>
  28. #include <asm/hw_breakpoint.h>
  29. #ifdef CONFIG_PPC_BOOK3E
  30. int default_machine_kexec_prepare(struct kimage *image)
  31. {
  32. int i;
  33. /*
  34. * Since we use the kernel fault handlers and paging code to
  35. * handle the virtual mode, we must make sure no destination
  36. * overlaps kernel static data or bss.
  37. */
  38. for (i = 0; i < image->nr_segments; i++)
  39. if (image->segment[i].mem < __pa(_end))
  40. return -ETXTBSY;
  41. return 0;
  42. }
  43. #else
  44. int default_machine_kexec_prepare(struct kimage *image)
  45. {
  46. int i;
  47. unsigned long begin, end; /* limits of segment */
  48. unsigned long low, high; /* limits of blocked memory range */
  49. struct device_node *node;
  50. const unsigned long *basep;
  51. const unsigned int *sizep;
  52. if (!ppc_md.hpte_clear_all)
  53. return -ENOENT;
  54. /*
  55. * Since we use the kernel fault handlers and paging code to
  56. * handle the virtual mode, we must make sure no destination
  57. * overlaps kernel static data or bss.
  58. */
  59. for (i = 0; i < image->nr_segments; i++)
  60. if (image->segment[i].mem < __pa(_end))
  61. return -ETXTBSY;
  62. /*
  63. * For non-LPAR, we absolutely can not overwrite the mmu hash
  64. * table, since we are still using the bolted entries in it to
  65. * do the copy. Check that here.
  66. *
  67. * It is safe if the end is below the start of the blocked
  68. * region (end <= low), or if the beginning is after the
  69. * end of the blocked region (begin >= high). Use the
  70. * boolean identity !(a || b) === (!a && !b).
  71. */
  72. if (htab_address) {
  73. low = __pa(htab_address);
  74. high = low + htab_size_bytes;
  75. for (i = 0; i < image->nr_segments; i++) {
  76. begin = image->segment[i].mem;
  77. end = begin + image->segment[i].memsz;
  78. if ((begin < high) && (end > low))
  79. return -ETXTBSY;
  80. }
  81. }
  82. /* We also should not overwrite the tce tables */
  83. for_each_node_by_type(node, "pci") {
  84. basep = of_get_property(node, "linux,tce-base", NULL);
  85. sizep = of_get_property(node, "linux,tce-size", NULL);
  86. if (basep == NULL || sizep == NULL)
  87. continue;
  88. low = *basep;
  89. high = low + (*sizep);
  90. for (i = 0; i < image->nr_segments; i++) {
  91. begin = image->segment[i].mem;
  92. end = begin + image->segment[i].memsz;
  93. if ((begin < high) && (end > low))
  94. return -ETXTBSY;
  95. }
  96. }
  97. return 0;
  98. }
  99. #endif /* !CONFIG_PPC_BOOK3E */
  100. static void copy_segments(unsigned long ind)
  101. {
  102. unsigned long entry;
  103. unsigned long *ptr;
  104. void *dest;
  105. void *addr;
  106. /*
  107. * We rely on kexec_load to create a lists that properly
  108. * initializes these pointers before they are used.
  109. * We will still crash if the list is wrong, but at least
  110. * the compiler will be quiet.
  111. */
  112. ptr = NULL;
  113. dest = NULL;
  114. for (entry = ind; !(entry & IND_DONE); entry = *ptr++) {
  115. addr = __va(entry & PAGE_MASK);
  116. switch (entry & IND_FLAGS) {
  117. case IND_DESTINATION:
  118. dest = addr;
  119. break;
  120. case IND_INDIRECTION:
  121. ptr = addr;
  122. break;
  123. case IND_SOURCE:
  124. copy_page(dest, addr);
  125. dest += PAGE_SIZE;
  126. }
  127. }
  128. }
  129. void kexec_copy_flush(struct kimage *image)
  130. {
  131. long i, nr_segments = image->nr_segments;
  132. struct kexec_segment ranges[KEXEC_SEGMENT_MAX];
  133. /* save the ranges on the stack to efficiently flush the icache */
  134. memcpy(ranges, image->segment, sizeof(ranges));
  135. /*
  136. * After this call we may not use anything allocated in dynamic
  137. * memory, including *image.
  138. *
  139. * Only globals and the stack are allowed.
  140. */
  141. copy_segments(image->head);
  142. /*
  143. * we need to clear the icache for all dest pages sometime,
  144. * including ones that were in place on the original copy
  145. */
  146. for (i = 0; i < nr_segments; i++)
  147. flush_icache_range((unsigned long)__va(ranges[i].mem),
  148. (unsigned long)__va(ranges[i].mem + ranges[i].memsz));
  149. }
  150. #ifdef CONFIG_SMP
  151. static int kexec_all_irq_disabled = 0;
  152. static void kexec_smp_down(void *arg)
  153. {
  154. local_irq_disable();
  155. hard_irq_disable();
  156. mb(); /* make sure our irqs are disabled before we say they are */
  157. get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF;
  158. while(kexec_all_irq_disabled == 0)
  159. cpu_relax();
  160. mb(); /* make sure all irqs are disabled before this */
  161. hw_breakpoint_disable();
  162. /*
  163. * Now every CPU has IRQs off, we can clear out any pending
  164. * IPIs and be sure that no more will come in after this.
  165. */
  166. if (ppc_md.kexec_cpu_down)
  167. ppc_md.kexec_cpu_down(0, 1);
  168. kexec_smp_wait();
  169. /* NOTREACHED */
  170. }
  171. static void kexec_prepare_cpus_wait(int wait_state)
  172. {
  173. int my_cpu, i, notified=-1;
  174. hw_breakpoint_disable();
  175. my_cpu = get_cpu();
  176. /* Make sure each CPU has at least made it to the state we need.
  177. *
  178. * FIXME: There is a (slim) chance of a problem if not all of the CPUs
  179. * are correctly onlined. If somehow we start a CPU on boot with RTAS
  180. * start-cpu, but somehow that CPU doesn't write callin_cpu_map[] in
  181. * time, the boot CPU will timeout. If it does eventually execute
  182. * stuff, the secondary will start up (paca[].cpu_start was written) and
  183. * get into a peculiar state. If the platform supports
  184. * smp_ops->take_timebase(), the secondary CPU will probably be spinning
  185. * in there. If not (i.e. pseries), the secondary will continue on and
  186. * try to online itself/idle/etc. If it survives that, we need to find
  187. * these possible-but-not-online-but-should-be CPUs and chaperone them
  188. * into kexec_smp_wait().
  189. */
  190. for_each_online_cpu(i) {
  191. if (i == my_cpu)
  192. continue;
  193. while (paca[i].kexec_state < wait_state) {
  194. barrier();
  195. if (i != notified) {
  196. printk(KERN_INFO "kexec: waiting for cpu %d "
  197. "(physical %d) to enter %i state\n",
  198. i, paca[i].hw_cpu_id, wait_state);
  199. notified = i;
  200. }
  201. }
  202. }
  203. mb();
  204. }
  205. /*
  206. * We need to make sure each present CPU is online. The next kernel will scan
  207. * the device tree and assume primary threads are online and query secondary
  208. * threads via RTAS to online them if required. If we don't online primary
  209. * threads, they will be stuck. However, we also online secondary threads as we
  210. * may be using 'cede offline'. In this case RTAS doesn't see the secondary
  211. * threads as offline -- and again, these CPUs will be stuck.
  212. *
  213. * So, we online all CPUs that should be running, including secondary threads.
  214. */
  215. static void wake_offline_cpus(void)
  216. {
  217. int cpu = 0;
  218. for_each_present_cpu(cpu) {
  219. if (!cpu_online(cpu)) {
  220. printk(KERN_INFO "kexec: Waking offline cpu %d.\n",
  221. cpu);
  222. WARN_ON(cpu_up(cpu));
  223. }
  224. }
  225. }
  226. static void kexec_prepare_cpus(void)
  227. {
  228. wake_offline_cpus();
  229. smp_call_function(kexec_smp_down, NULL, /* wait */0);
  230. local_irq_disable();
  231. hard_irq_disable();
  232. mb(); /* make sure IRQs are disabled before we say they are */
  233. get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF;
  234. kexec_prepare_cpus_wait(KEXEC_STATE_IRQS_OFF);
  235. /* we are sure every CPU has IRQs off at this point */
  236. kexec_all_irq_disabled = 1;
  237. /* after we tell the others to go down */
  238. if (ppc_md.kexec_cpu_down)
  239. ppc_md.kexec_cpu_down(0, 0);
  240. /*
  241. * Before removing MMU mappings make sure all CPUs have entered real
  242. * mode:
  243. */
  244. kexec_prepare_cpus_wait(KEXEC_STATE_REAL_MODE);
  245. put_cpu();
  246. }
  247. #else /* ! SMP */
  248. static void kexec_prepare_cpus(void)
  249. {
  250. /*
  251. * move the secondarys to us so that we can copy
  252. * the new kernel 0-0x100 safely
  253. *
  254. * do this if kexec in setup.c ?
  255. *
  256. * We need to release the cpus if we are ever going from an
  257. * UP to an SMP kernel.
  258. */
  259. smp_release_cpus();
  260. if (ppc_md.kexec_cpu_down)
  261. ppc_md.kexec_cpu_down(0, 0);
  262. local_irq_disable();
  263. hard_irq_disable();
  264. }
  265. #endif /* SMP */
  266. /*
  267. * kexec thread structure and stack.
  268. *
  269. * We need to make sure that this is 16384-byte aligned due to the
  270. * way process stacks are handled. It also must be statically allocated
  271. * or allocated as part of the kimage, because everything else may be
  272. * overwritten when we copy the kexec image. We piggyback on the
  273. * "init_task" linker section here to statically allocate a stack.
  274. *
  275. * We could use a smaller stack if we don't care about anything using
  276. * current, but that audit has not been performed.
  277. */
  278. static union thread_union kexec_stack __init_task_data =
  279. { };
  280. /*
  281. * For similar reasons to the stack above, the kexecing CPU needs to be on a
  282. * static PACA; we switch to kexec_paca.
  283. */
  284. struct paca_struct kexec_paca;
  285. /* Our assembly helper, in misc_64.S */
  286. extern void kexec_sequence(void *newstack, unsigned long start,
  287. void *image, void *control,
  288. void (*clear_all)(void)) __noreturn;
  289. /* too late to fail here */
  290. void default_machine_kexec(struct kimage *image)
  291. {
  292. /* prepare control code if any */
  293. /*
  294. * If the kexec boot is the normal one, need to shutdown other cpus
  295. * into our wait loop and quiesce interrupts.
  296. * Otherwise, in the case of crashed mode (crashing_cpu >= 0),
  297. * stopping other CPUs and collecting their pt_regs is done before
  298. * using debugger IPI.
  299. */
  300. if (!kdump_in_progress())
  301. kexec_prepare_cpus();
  302. pr_debug("kexec: Starting switchover sequence.\n");
  303. /* switch to a staticly allocated stack. Based on irq stack code.
  304. * We setup preempt_count to avoid using VMX in memcpy.
  305. * XXX: the task struct will likely be invalid once we do the copy!
  306. */
  307. kexec_stack.thread_info.task = current_thread_info()->task;
  308. kexec_stack.thread_info.flags = 0;
  309. kexec_stack.thread_info.preempt_count = HARDIRQ_OFFSET;
  310. kexec_stack.thread_info.cpu = current_thread_info()->cpu;
  311. /* We need a static PACA, too; copy this CPU's PACA over and switch to
  312. * it. Also poison per_cpu_offset to catch anyone using non-static
  313. * data.
  314. */
  315. memcpy(&kexec_paca, get_paca(), sizeof(struct paca_struct));
  316. kexec_paca.data_offset = 0xedeaddeadeeeeeeeUL;
  317. paca = (struct paca_struct *)RELOC_HIDE(&kexec_paca, 0) -
  318. kexec_paca.paca_index;
  319. setup_paca(&kexec_paca);
  320. /* XXX: If anyone does 'dynamic lppacas' this will also need to be
  321. * switched to a static version!
  322. */
  323. /* Some things are best done in assembly. Finding globals with
  324. * a toc is easier in C, so pass in what we can.
  325. */
  326. kexec_sequence(&kexec_stack, image->start, image,
  327. page_address(image->control_code_page),
  328. ppc_md.hpte_clear_all);
  329. /* NOTREACHED */
  330. }
  331. #ifndef CONFIG_PPC_BOOK3E
  332. /* Values we need to export to the second kernel via the device tree. */
  333. static unsigned long htab_base;
  334. static unsigned long htab_size;
  335. static struct property htab_base_prop = {
  336. .name = "linux,htab-base",
  337. .length = sizeof(unsigned long),
  338. .value = &htab_base,
  339. };
  340. static struct property htab_size_prop = {
  341. .name = "linux,htab-size",
  342. .length = sizeof(unsigned long),
  343. .value = &htab_size,
  344. };
  345. static int __init export_htab_values(void)
  346. {
  347. struct device_node *node;
  348. struct property *prop;
  349. /* On machines with no htab htab_address is NULL */
  350. if (!htab_address)
  351. return -ENODEV;
  352. node = of_find_node_by_path("/chosen");
  353. if (!node)
  354. return -ENODEV;
  355. /* remove any stale propertys so ours can be found */
  356. prop = of_find_property(node, htab_base_prop.name, NULL);
  357. if (prop)
  358. of_remove_property(node, prop);
  359. prop = of_find_property(node, htab_size_prop.name, NULL);
  360. if (prop)
  361. of_remove_property(node, prop);
  362. htab_base = cpu_to_be64(__pa(htab_address));
  363. of_add_property(node, &htab_base_prop);
  364. htab_size = cpu_to_be64(htab_size_bytes);
  365. of_add_property(node, &htab_size_prop);
  366. of_node_put(node);
  367. return 0;
  368. }
  369. late_initcall(export_htab_values);
  370. #endif /* !CONFIG_PPC_BOOK3E */