machine_kexec_64.c 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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/cpumask.h>
  12. #include <linux/kexec.h>
  13. #include <linux/smp.h>
  14. #include <linux/thread_info.h>
  15. #include <linux/errno.h>
  16. #include <asm/page.h>
  17. #include <asm/current.h>
  18. #include <asm/machdep.h>
  19. #include <asm/cacheflush.h>
  20. #include <asm/paca.h>
  21. #include <asm/mmu.h>
  22. #include <asm/sections.h> /* _end */
  23. #include <asm/prom.h>
  24. #include <asm/smp.h>
  25. #define HASH_GROUP_SIZE 0x80 /* size of each hash group, asm/mmu.h */
  26. int default_machine_kexec_prepare(struct kimage *image)
  27. {
  28. int i;
  29. unsigned long begin, end; /* limits of segment */
  30. unsigned long low, high; /* limits of blocked memory range */
  31. struct device_node *node;
  32. unsigned long *basep;
  33. unsigned int *sizep;
  34. if (!ppc_md.hpte_clear_all)
  35. return -ENOENT;
  36. /*
  37. * Since we use the kernel fault handlers and paging code to
  38. * handle the virtual mode, we must make sure no destination
  39. * overlaps kernel static data or bss.
  40. */
  41. for (i = 0; i < image->nr_segments; i++)
  42. if (image->segment[i].mem < __pa(_end))
  43. return -ETXTBSY;
  44. /*
  45. * For non-LPAR, we absolutely can not overwrite the mmu hash
  46. * table, since we are still using the bolted entries in it to
  47. * do the copy. Check that here.
  48. *
  49. * It is safe if the end is below the start of the blocked
  50. * region (end <= low), or if the beginning is after the
  51. * end of the blocked region (begin >= high). Use the
  52. * boolean identity !(a || b) === (!a && !b).
  53. */
  54. if (htab_address) {
  55. low = __pa(htab_address);
  56. high = low + (htab_hash_mask + 1) * HASH_GROUP_SIZE;
  57. for (i = 0; i < image->nr_segments; i++) {
  58. begin = image->segment[i].mem;
  59. end = begin + image->segment[i].memsz;
  60. if ((begin < high) && (end > low))
  61. return -ETXTBSY;
  62. }
  63. }
  64. /* We also should not overwrite the tce tables */
  65. for (node = of_find_node_by_type(NULL, "pci"); node != NULL;
  66. node = of_find_node_by_type(node, "pci")) {
  67. basep = (unsigned long *)get_property(node, "linux,tce-base",
  68. NULL);
  69. sizep = (unsigned int *)get_property(node, "linux,tce-size",
  70. NULL);
  71. if (basep == NULL || sizep == NULL)
  72. continue;
  73. low = *basep;
  74. high = low + (*sizep);
  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. return 0;
  83. }
  84. #define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE)
  85. static void copy_segments(unsigned long ind)
  86. {
  87. unsigned long entry;
  88. unsigned long *ptr;
  89. void *dest;
  90. void *addr;
  91. /*
  92. * We rely on kexec_load to create a lists that properly
  93. * initializes these pointers before they are used.
  94. * We will still crash if the list is wrong, but at least
  95. * the compiler will be quiet.
  96. */
  97. ptr = NULL;
  98. dest = NULL;
  99. for (entry = ind; !(entry & IND_DONE); entry = *ptr++) {
  100. addr = __va(entry & PAGE_MASK);
  101. switch (entry & IND_FLAGS) {
  102. case IND_DESTINATION:
  103. dest = addr;
  104. break;
  105. case IND_INDIRECTION:
  106. ptr = addr;
  107. break;
  108. case IND_SOURCE:
  109. copy_page(dest, addr);
  110. dest += PAGE_SIZE;
  111. }
  112. }
  113. }
  114. void kexec_copy_flush(struct kimage *image)
  115. {
  116. long i, nr_segments = image->nr_segments;
  117. struct kexec_segment ranges[KEXEC_SEGMENT_MAX];
  118. /* save the ranges on the stack to efficiently flush the icache */
  119. memcpy(ranges, image->segment, sizeof(ranges));
  120. /*
  121. * After this call we may not use anything allocated in dynamic
  122. * memory, including *image.
  123. *
  124. * Only globals and the stack are allowed.
  125. */
  126. copy_segments(image->head);
  127. /*
  128. * we need to clear the icache for all dest pages sometime,
  129. * including ones that were in place on the original copy
  130. */
  131. for (i = 0; i < nr_segments; i++)
  132. flush_icache_range((unsigned long)__va(ranges[i].mem),
  133. (unsigned long)__va(ranges[i].mem + ranges[i].memsz));
  134. }
  135. #ifdef CONFIG_SMP
  136. /* FIXME: we should schedule this function to be called on all cpus based
  137. * on calling the interrupts, but we would like to call it off irq level
  138. * so that the interrupt controller is clean.
  139. */
  140. void kexec_smp_down(void *arg)
  141. {
  142. if (ppc_md.kexec_cpu_down)
  143. ppc_md.kexec_cpu_down(0, 1);
  144. local_irq_disable();
  145. kexec_smp_wait();
  146. /* NOTREACHED */
  147. }
  148. static void kexec_prepare_cpus(void)
  149. {
  150. int my_cpu, i, notified=-1;
  151. smp_call_function(kexec_smp_down, NULL, 0, /* wait */0);
  152. my_cpu = get_cpu();
  153. /* check the others cpus are now down (via paca hw cpu id == -1) */
  154. for (i=0; i < NR_CPUS; i++) {
  155. if (i == my_cpu)
  156. continue;
  157. while (paca[i].hw_cpu_id != -1) {
  158. barrier();
  159. if (!cpu_possible(i)) {
  160. printk("kexec: cpu %d hw_cpu_id %d is not"
  161. " possible, ignoring\n",
  162. i, paca[i].hw_cpu_id);
  163. break;
  164. }
  165. if (!cpu_online(i)) {
  166. /* Fixme: this can be spinning in
  167. * pSeries_secondary_wait with a paca
  168. * waiting for it to go online.
  169. */
  170. printk("kexec: cpu %d hw_cpu_id %d is not"
  171. " online, ignoring\n",
  172. i, paca[i].hw_cpu_id);
  173. break;
  174. }
  175. if (i != notified) {
  176. printk( "kexec: waiting for cpu %d (physical"
  177. " %d) to go down\n",
  178. i, paca[i].hw_cpu_id);
  179. notified = i;
  180. }
  181. }
  182. }
  183. /* after we tell the others to go down */
  184. if (ppc_md.kexec_cpu_down)
  185. ppc_md.kexec_cpu_down(0, 0);
  186. put_cpu();
  187. local_irq_disable();
  188. }
  189. #else /* ! SMP */
  190. static void kexec_prepare_cpus(void)
  191. {
  192. /*
  193. * move the secondarys to us so that we can copy
  194. * the new kernel 0-0x100 safely
  195. *
  196. * do this if kexec in setup.c ?
  197. *
  198. * We need to release the cpus if we are ever going from an
  199. * UP to an SMP kernel.
  200. */
  201. smp_release_cpus();
  202. if (ppc_md.kexec_cpu_down)
  203. ppc_md.kexec_cpu_down(0, 0);
  204. local_irq_disable();
  205. }
  206. #endif /* SMP */
  207. /*
  208. * kexec thread structure and stack.
  209. *
  210. * We need to make sure that this is 16384-byte aligned due to the
  211. * way process stacks are handled. It also must be statically allocated
  212. * or allocated as part of the kimage, because everything else may be
  213. * overwritten when we copy the kexec image. We piggyback on the
  214. * "init_task" linker section here to statically allocate a stack.
  215. *
  216. * We could use a smaller stack if we don't care about anything using
  217. * current, but that audit has not been performed.
  218. */
  219. union thread_union kexec_stack
  220. __attribute__((__section__(".data.init_task"))) = { };
  221. /* Our assembly helper, in kexec_stub.S */
  222. extern NORET_TYPE void kexec_sequence(void *newstack, unsigned long start,
  223. void *image, void *control,
  224. void (*clear_all)(void)) ATTRIB_NORET;
  225. /* too late to fail here */
  226. void default_machine_kexec(struct kimage *image)
  227. {
  228. /* prepare control code if any */
  229. /*
  230. * If the kexec boot is the normal one, need to shutdown other cpus
  231. * into our wait loop and quiesce interrupts.
  232. * Otherwise, in the case of crashed mode (crashing_cpu >= 0),
  233. * stopping other CPUs and collecting their pt_regs is done before
  234. * using debugger IPI.
  235. */
  236. if (crashing_cpu == -1)
  237. kexec_prepare_cpus();
  238. /* switch to a staticly allocated stack. Based on irq stack code.
  239. * XXX: the task struct will likely be invalid once we do the copy!
  240. */
  241. kexec_stack.thread_info.task = current_thread_info()->task;
  242. kexec_stack.thread_info.flags = 0;
  243. /* Some things are best done in assembly. Finding globals with
  244. * a toc is easier in C, so pass in what we can.
  245. */
  246. kexec_sequence(&kexec_stack, image->start, image,
  247. page_address(image->control_code_page),
  248. ppc_md.hpte_clear_all);
  249. /* NOTREACHED */
  250. }
  251. /* Values we need to export to the second kernel via the device tree. */
  252. static unsigned long htab_base, htab_size, kernel_end;
  253. static struct property htab_base_prop = {
  254. .name = "linux,htab-base",
  255. .length = sizeof(unsigned long),
  256. .value = (unsigned char *)&htab_base,
  257. };
  258. static struct property htab_size_prop = {
  259. .name = "linux,htab-size",
  260. .length = sizeof(unsigned long),
  261. .value = (unsigned char *)&htab_size,
  262. };
  263. static struct property kernel_end_prop = {
  264. .name = "linux,kernel-end",
  265. .length = sizeof(unsigned long),
  266. .value = (unsigned char *)&kernel_end,
  267. };
  268. static void __init export_htab_values(void)
  269. {
  270. struct device_node *node;
  271. node = of_find_node_by_path("/chosen");
  272. if (!node)
  273. return;
  274. kernel_end = __pa(_end);
  275. prom_add_property(node, &kernel_end_prop);
  276. /* On machines with no htab htab_address is NULL */
  277. if (NULL == htab_address)
  278. goto out;
  279. htab_base = __pa(htab_address);
  280. prom_add_property(node, &htab_base_prop);
  281. htab_size = 1UL << ppc64_pft_size;
  282. prom_add_property(node, &htab_size_prop);
  283. out:
  284. of_node_put(node);
  285. }
  286. void __init kexec_setup(void)
  287. {
  288. export_htab_values();
  289. }