This source file includes following definitions.
- default_machine_kexec_prepare
- copy_segments
- kexec_copy_flush
- kexec_smp_down
- kexec_prepare_cpus_wait
- wake_offline_cpus
- kexec_prepare_cpus
- kexec_prepare_cpus
- kexec_sequence
- export_htab_values
1
2
3
4
5
6
7
8
9
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
20 #include <asm/page.h>
21 #include <asm/current.h>
22 #include <asm/machdep.h>
23 #include <asm/cacheflush.h>
24 #include <asm/firmware.h>
25 #include <asm/paca.h>
26 #include <asm/mmu.h>
27 #include <asm/sections.h>
28 #include <asm/prom.h>
29 #include <asm/smp.h>
30 #include <asm/hw_breakpoint.h>
31 #include <asm/asm-prototypes.h>
32 #include <asm/svm.h>
33 #include <asm/ultravisor.h>
34
35 int default_machine_kexec_prepare(struct kimage *image)
36 {
37 int i;
38 unsigned long begin, end;
39 unsigned long low, high;
40 struct device_node *node;
41 const unsigned long *basep;
42 const unsigned int *sizep;
43
44
45
46
47
48
49 for (i = 0; i < image->nr_segments; i++)
50 if (image->segment[i].mem < __pa(_end))
51 return -ETXTBSY;
52
53
54 for_each_node_by_type(node, "pci") {
55 basep = of_get_property(node, "linux,tce-base", NULL);
56 sizep = of_get_property(node, "linux,tce-size", NULL);
57 if (basep == NULL || sizep == NULL)
58 continue;
59
60 low = *basep;
61 high = low + (*sizep);
62
63 for (i = 0; i < image->nr_segments; i++) {
64 begin = image->segment[i].mem;
65 end = begin + image->segment[i].memsz;
66
67 if ((begin < high) && (end > low))
68 return -ETXTBSY;
69 }
70 }
71
72 return 0;
73 }
74
75 static void copy_segments(unsigned long ind)
76 {
77 unsigned long entry;
78 unsigned long *ptr;
79 void *dest;
80 void *addr;
81
82
83
84
85
86
87
88 ptr = NULL;
89 dest = NULL;
90
91 for (entry = ind; !(entry & IND_DONE); entry = *ptr++) {
92 addr = __va(entry & PAGE_MASK);
93
94 switch (entry & IND_FLAGS) {
95 case IND_DESTINATION:
96 dest = addr;
97 break;
98 case IND_INDIRECTION:
99 ptr = addr;
100 break;
101 case IND_SOURCE:
102 copy_page(dest, addr);
103 dest += PAGE_SIZE;
104 }
105 }
106 }
107
108 void kexec_copy_flush(struct kimage *image)
109 {
110 long i, nr_segments = image->nr_segments;
111 struct kexec_segment ranges[KEXEC_SEGMENT_MAX];
112
113
114 memcpy(ranges, image->segment, sizeof(ranges));
115
116
117
118
119
120
121
122 copy_segments(image->head);
123
124
125
126
127
128 for (i = 0; i < nr_segments; i++)
129 flush_icache_range((unsigned long)__va(ranges[i].mem),
130 (unsigned long)__va(ranges[i].mem + ranges[i].memsz));
131 }
132
133 #ifdef CONFIG_SMP
134
135 static int kexec_all_irq_disabled = 0;
136
137 static void kexec_smp_down(void *arg)
138 {
139 local_irq_disable();
140 hard_irq_disable();
141
142 mb();
143 get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF;
144 while(kexec_all_irq_disabled == 0)
145 cpu_relax();
146 mb();
147 hw_breakpoint_disable();
148
149
150
151
152 if (ppc_md.kexec_cpu_down)
153 ppc_md.kexec_cpu_down(0, 1);
154
155 kexec_smp_wait();
156
157 }
158
159 static void kexec_prepare_cpus_wait(int wait_state)
160 {
161 int my_cpu, i, notified=-1;
162
163 hw_breakpoint_disable();
164 my_cpu = get_cpu();
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180 for_each_online_cpu(i) {
181 if (i == my_cpu)
182 continue;
183
184 while (paca_ptrs[i]->kexec_state < wait_state) {
185 barrier();
186 if (i != notified) {
187 printk(KERN_INFO "kexec: waiting for cpu %d "
188 "(physical %d) to enter %i state\n",
189 i, paca_ptrs[i]->hw_cpu_id, wait_state);
190 notified = i;
191 }
192 }
193 }
194 mb();
195 }
196
197
198
199
200
201
202
203
204
205
206
207 static void wake_offline_cpus(void)
208 {
209 int cpu = 0;
210
211 for_each_present_cpu(cpu) {
212 if (!cpu_online(cpu)) {
213 printk(KERN_INFO "kexec: Waking offline cpu %d.\n",
214 cpu);
215 WARN_ON(cpu_up(cpu));
216 }
217 }
218 }
219
220 static void kexec_prepare_cpus(void)
221 {
222 wake_offline_cpus();
223 smp_call_function(kexec_smp_down, NULL, 0);
224 local_irq_disable();
225 hard_irq_disable();
226
227 mb();
228 get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF;
229
230 kexec_prepare_cpus_wait(KEXEC_STATE_IRQS_OFF);
231
232 kexec_all_irq_disabled = 1;
233
234
235
236
237
238 kexec_prepare_cpus_wait(KEXEC_STATE_REAL_MODE);
239
240
241 if (ppc_md.kexec_cpu_down)
242 ppc_md.kexec_cpu_down(0, 0);
243
244 put_cpu();
245 }
246
247 #else
248
249 static void kexec_prepare_cpus(void)
250 {
251
252
253
254
255
256
257
258
259
260 smp_release_cpus();
261 if (ppc_md.kexec_cpu_down)
262 ppc_md.kexec_cpu_down(0, 0);
263 local_irq_disable();
264 hard_irq_disable();
265 }
266
267 #endif
268
269
270
271
272
273
274
275
276
277
278
279
280
281 static union thread_union kexec_stack __init_task_data =
282 { };
283
284
285
286
287
288 struct paca_struct kexec_paca;
289
290
291 extern void kexec_sequence(void *newstack, unsigned long start,
292 void *image, void *control,
293 void (*clear_all)(void),
294 bool copy_with_mmu_off) __noreturn;
295
296
297 void default_machine_kexec(struct kimage *image)
298 {
299 bool copy_with_mmu_off;
300
301
302
303
304
305
306
307
308
309
310
311 if (!kdump_in_progress())
312 kexec_prepare_cpus();
313
314 printk("kexec: Starting switchover sequence.\n");
315
316
317
318
319
320 current_thread_info()->flags = 0;
321 current_thread_info()->preempt_count = HARDIRQ_OFFSET;
322
323
324
325
326
327 memcpy(&kexec_paca, get_paca(), sizeof(struct paca_struct));
328 kexec_paca.data_offset = 0xedeaddeadeeeeeeeUL;
329 #ifdef CONFIG_PPC_PSERIES
330 kexec_paca.lppaca_ptr = NULL;
331 #endif
332
333 if (is_secure_guest() && !(image->preserve_context ||
334 image->type == KEXEC_TYPE_CRASH)) {
335 uv_unshare_all_pages();
336 printk("kexec: Unshared all shared pages.\n");
337 }
338
339 paca_ptrs[kexec_paca.paca_index] = &kexec_paca;
340
341 setup_paca(&kexec_paca);
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358 #ifdef CONFIG_PPC_BOOK3E
359 copy_with_mmu_off = false;
360 #else
361 copy_with_mmu_off = radix_enabled() ||
362 !(firmware_has_feature(FW_FEATURE_LPAR) ||
363 firmware_has_feature(FW_FEATURE_PS3_LV1));
364 #endif
365
366
367
368
369 kexec_sequence(&kexec_stack, image->start, image,
370 page_address(image->control_code_page),
371 mmu_cleanup_all, copy_with_mmu_off);
372
373 }
374
375 #ifdef CONFIG_PPC_BOOK3S_64
376
377 static unsigned long htab_base;
378 static unsigned long htab_size;
379
380 static struct property htab_base_prop = {
381 .name = "linux,htab-base",
382 .length = sizeof(unsigned long),
383 .value = &htab_base,
384 };
385
386 static struct property htab_size_prop = {
387 .name = "linux,htab-size",
388 .length = sizeof(unsigned long),
389 .value = &htab_size,
390 };
391
392 static int __init export_htab_values(void)
393 {
394 struct device_node *node;
395
396
397 if (!htab_address)
398 return -ENODEV;
399
400 node = of_find_node_by_path("/chosen");
401 if (!node)
402 return -ENODEV;
403
404
405 of_remove_property(node, of_find_property(node, htab_base_prop.name, NULL));
406 of_remove_property(node, of_find_property(node, htab_size_prop.name, NULL));
407
408 htab_base = cpu_to_be64(__pa(htab_address));
409 of_add_property(node, &htab_base_prop);
410 htab_size = cpu_to_be64(htab_size_bytes);
411 of_add_property(node, &htab_size_prop);
412
413 of_node_put(node);
414 return 0;
415 }
416 late_initcall(export_htab_values);
417 #endif