diff options
Diffstat (limited to 'arch/powerpc/kernel/machine_kexec.c')
| -rw-r--r-- | arch/powerpc/kernel/machine_kexec.c | 103 | 
1 files changed, 68 insertions, 35 deletions
diff --git a/arch/powerpc/kernel/machine_kexec.c b/arch/powerpc/kernel/machine_kexec.c index df7e20c191c..015ae55c186 100644 --- a/arch/powerpc/kernel/machine_kexec.c +++ b/arch/powerpc/kernel/machine_kexec.c @@ -15,39 +15,38 @@  #include <linux/memblock.h>  #include <linux/of.h>  #include <linux/irq.h> +#include <linux/ftrace.h>  #include <asm/machdep.h> +#include <asm/pgalloc.h>  #include <asm/prom.h>  #include <asm/sections.h>  void machine_kexec_mask_interrupts(void) {  	unsigned int i; +	struct irq_desc *desc; -	for_each_irq(i) { -		struct irq_desc *desc = irq_to_desc(i); +	for_each_irq_desc(i, desc) { +		struct irq_chip *chip; -		if (!desc || !desc->chip) +		chip = irq_desc_get_chip(desc); +		if (!chip)  			continue; -		if (desc->chip->eoi && -		    desc->status & IRQ_INPROGRESS) -			desc->chip->eoi(i); +		if (chip->irq_eoi && irqd_irq_inprogress(&desc->irq_data)) +			chip->irq_eoi(&desc->irq_data); -		if (desc->chip->mask) -			desc->chip->mask(i); +		if (chip->irq_mask) +			chip->irq_mask(&desc->irq_data); -		if (desc->chip->disable && -		    !(desc->status & IRQ_DISABLED)) -			desc->chip->disable(i); +		if (chip->irq_disable && !irqd_irq_disabled(&desc->irq_data)) +			chip->irq_disable(&desc->irq_data);  	}  }  void machine_crash_shutdown(struct pt_regs *regs)  { -	if (ppc_md.machine_crash_shutdown) -		ppc_md.machine_crash_shutdown(regs); -	else -		default_machine_crash_shutdown(regs); +	default_machine_crash_shutdown(regs);  }  /* @@ -65,8 +64,6 @@ int machine_kexec_prepare(struct kimage *image)  void machine_kexec_cleanup(struct kimage *image)  { -	if (ppc_md.machine_kexec_cleanup) -		ppc_md.machine_kexec_cleanup(image);  }  void arch_crash_save_vmcoreinfo(void) @@ -79,6 +76,17 @@ void arch_crash_save_vmcoreinfo(void)  #ifndef CONFIG_NEED_MULTIPLE_NODES  	VMCOREINFO_SYMBOL(contig_page_data);  #endif +#if defined(CONFIG_PPC64) && defined(CONFIG_SPARSEMEM_VMEMMAP) +	VMCOREINFO_SYMBOL(vmemmap_list); +	VMCOREINFO_SYMBOL(mmu_vmemmap_psize); +	VMCOREINFO_SYMBOL(mmu_psize_defs); +	VMCOREINFO_STRUCT_SIZE(vmemmap_backing); +	VMCOREINFO_OFFSET(vmemmap_backing, list); +	VMCOREINFO_OFFSET(vmemmap_backing, phys); +	VMCOREINFO_OFFSET(vmemmap_backing, virt_addr); +	VMCOREINFO_STRUCT_SIZE(mmu_psize_def); +	VMCOREINFO_OFFSET(mmu_psize_def, shift); +#endif  }  /* @@ -87,11 +95,17 @@ void arch_crash_save_vmcoreinfo(void)   */  void machine_kexec(struct kimage *image)  { +	int save_ftrace_enabled; + +	save_ftrace_enabled = __ftrace_enabled_save(); +  	if (ppc_md.machine_kexec)  		ppc_md.machine_kexec(image);  	else  		default_machine_kexec(image); +	__ftrace_enabled_restore(save_ftrace_enabled); +  	/* Fall back to normal restart if we're still alive. */  	machine_restart(NULL);  	for(;;); @@ -102,9 +116,6 @@ void __init reserve_crashkernel(void)  	unsigned long long crash_size, crash_base;  	int ret; -	/* this is necessary because of memblock_phys_mem_size() */ -	memblock_analyze(); -  	/* use common parsing */  	ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),  			&crash_size, &crash_base); @@ -121,9 +132,9 @@ void __init reserve_crashkernel(void)  	/* We might have got these values via the command line or the  	 * device tree, either way sanitise them now. */ -	crash_size = crashk_res.end - crashk_res.start + 1; +	crash_size = resource_size(&crashk_res); -#ifndef CONFIG_RELOCATABLE +#ifndef CONFIG_NONSTATIC_KERNEL  	if (crashk_res.start != KDUMP_KERNELBASE)  		printk("Crash kernel location must be 0x%x\n",  				KDUMP_KERNELBASE); @@ -131,12 +142,16 @@ void __init reserve_crashkernel(void)  	crashk_res.start = KDUMP_KERNELBASE;  #else  	if (!crashk_res.start) { +#ifdef CONFIG_PPC64  		/* -		 * unspecified address, choose a region of specified size -		 * can overlap with initrd (ignoring corruption when retained) -		 * ppc64 requires kernel and some stacks to be in first segemnt +		 * On 64bit we split the RMO in half but cap it at half of +		 * a small SLB (128MB) since the crash kernel needs to place +		 * itself and some stacks to be in the first segment.  		 */ +		crashk_res.start = min(0x8000000ULL, (ppc64_rma_size / 2)); +#else  		crashk_res.start = KDUMP_KERNELBASE; +#endif  	}  	crash_base = PAGE_ALIGN(crashk_res.start); @@ -162,7 +177,7 @@ void __init reserve_crashkernel(void)  	if (memory_limit && memory_limit <= crashk_res.end) {  		memory_limit = crashk_res.end + 1;  		printk("Adjusted memory limit for crashkernel, now 0x%llx\n", -		       (unsigned long long)memory_limit); +		       memory_limit);  	}  	printk(KERN_INFO "Reserving %ldMB of memory at %ldMB " @@ -181,7 +196,9 @@ int overlaps_crashkernel(unsigned long start, unsigned long size)  /* Values we need to export to the second kernel via the device tree. */  static phys_addr_t kernel_end; +static phys_addr_t crashk_base;  static phys_addr_t crashk_size; +static unsigned long long mem_limit;  static struct property kernel_end_prop = {  	.name = "linux,kernel-end", @@ -192,7 +209,7 @@ static struct property kernel_end_prop = {  static struct property crashk_base_prop = {  	.name = "linux,crashkernel-base",  	.length = sizeof(phys_addr_t), -	.value = &crashk_res.start, +	.value = &crashk_base  };  static struct property crashk_size_prop = { @@ -201,6 +218,14 @@ static struct property crashk_size_prop = {  	.value = &crashk_size,  }; +static struct property memory_limit_prop = { +	.name = "linux,memory-limit", +	.length = sizeof(unsigned long long), +	.value = &mem_limit, +}; + +#define cpu_to_be_ulong	__PASTE(cpu_to_be, BITS_PER_LONG) +  static void __init export_crashk_values(struct device_node *node)  {  	struct property *prop; @@ -209,17 +234,25 @@ static void __init export_crashk_values(struct device_node *node)  	 * be sure what's in them, so remove them. */  	prop = of_find_property(node, "linux,crashkernel-base", NULL);  	if (prop) -		prom_remove_property(node, prop); +		of_remove_property(node, prop);  	prop = of_find_property(node, "linux,crashkernel-size", NULL);  	if (prop) -		prom_remove_property(node, prop); +		of_remove_property(node, prop);  	if (crashk_res.start != 0) { -		prom_add_property(node, &crashk_base_prop); -		crashk_size = crashk_res.end - crashk_res.start + 1; -		prom_add_property(node, &crashk_size_prop); +		crashk_base = cpu_to_be_ulong(crashk_res.start), +		of_add_property(node, &crashk_base_prop); +		crashk_size = cpu_to_be_ulong(resource_size(&crashk_res)); +		of_add_property(node, &crashk_size_prop);  	} + +	/* +	 * memory_limit is required by the kexec-tools to limit the +	 * crash regions to the actual memory used. +	 */ +	mem_limit = cpu_to_be_ulong(memory_limit); +	of_update_property(node, &memory_limit_prop);  }  static int __init kexec_setup(void) @@ -234,11 +267,11 @@ static int __init kexec_setup(void)  	/* remove any stale properties so ours can be found */  	prop = of_find_property(node, kernel_end_prop.name, NULL);  	if (prop) -		prom_remove_property(node, prop); +		of_remove_property(node, prop);  	/* information needed by userspace when using default_machine_kexec */ -	kernel_end = __pa(_end); -	prom_add_property(node, &kernel_end_prop); +	kernel_end = cpu_to_be_ulong(__pa(_end)); +	of_add_property(node, &kernel_end_prop);  	export_crashk_values(node);  | 
