Skip to content

Commit ce3c8df

Browse files
AKASHI Takahirosimonliebold
authored andcommitted
arm64: acpi: fix alignment fault in accessing ACPI
This is a fix against the issue that crash dump kernel may hang up during booting, which can happen on any ACPI-based system with "ACPI Reclaim Memory." (kernel messages after panic kicked off kdump) (snip...) Bye! (snip...) ACPI: Core revision 20170728 pud=000000002e7d0003, *pmd=000000002e7c0003, *pte=00e8000039710707 Internal error: Oops: 96000021 [#1] SMP Modules linked in: CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.14.0-rc6 #1 task: ffff000008d05180 task.stack: ffff000008cc0000 PC is at acpi_ns_lookup+0x25c/0x3c0 LR is at acpi_ds_load1_begin_op+0xa4/0x294 (snip...) Process swapper/0 (pid: 0, stack limit = 0xffff000008cc0000) Call trace: (snip...) [<ffff0000084a6764>] acpi_ns_lookup+0x25c/0x3c0 [<ffff00000849b4f8>] acpi_ds_load1_begin_op+0xa4/0x294 [<ffff0000084ad4ac>] acpi_ps_build_named_op+0xc4/0x198 [<ffff0000084ad6cc>] acpi_ps_create_op+0x14c/0x270 [<ffff0000084acfa8>] acpi_ps_parse_loop+0x188/0x5c8 [<ffff0000084ae048>] acpi_ps_parse_aml+0xb0/0x2b8 [<ffff0000084a8e10>] acpi_ns_one_complete_parse+0x144/0x184 [<ffff0000084a8e98>] acpi_ns_parse_table+0x48/0x68 [<ffff0000084a82cc>] acpi_ns_load_table+0x4c/0xdc [<ffff0000084b32f8>] acpi_tb_load_namespace+0xe4/0x264 [<ffff000008baf9b4>] acpi_load_tables+0x48/0xc0 [<ffff000008badc20>] acpi_early_init+0x9c/0xd0 [<ffff000008b70d50>] start_kernel+0x3b4/0x43c Code: b9008fb9 2a000318 36380054 32190318 (b94002c0) ---[ end trace c46ed37f9651c58e ]--- Kernel panic - not syncing: Fatal exception Rebooting in 10 seconds.. (diagnosis) * This fault is a data abort, alignment fault (ESR=0x96000021) during reading out ACPI table. * Initial ACPI tables are normally stored in system ram and marked as "ACPI Reclaim memory" by the firmware. * After the commit f56ab9a ("efi/arm: Don't mark ACPI reclaim memory as MEMBLOCK_NOMAP"), those regions are differently handled as they are "memblock-reserved", without NOMAP bit. * So they are now excluded from device tree's "usable-memory-range" which kexec-tools determines based on a current view of /proc/iomem. * When crash dump kernel boots up, it tries to accesses ACPI tables by mapping them with ioremap(), not ioremap_cache(), in acpi_os_ioremap() since they are no longer part of mapped system ram. * Given that ACPI accessor/helper functions are compiled in without unaligned access support (ACPI_MISALIGNMENT_NOT_SUPPORTED), any unaligned access to ACPI tables can cause a fatal panic. With this patch, acpi_os_ioremap() always honors memory attribute information provided by the firmware (EFI) and retaining cacheability allows the kernel safe access to ACPI tables. [09ffcb0 with changes] Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Reviewed-by: James Morse <james.morse@arm.com> Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reported-by and Tested-by: Bhupesh Sharma <bhsharma@redhat.com> Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Balbir Singh <sblbir@amzn.com>
1 parent e8d10a2 commit ce3c8df

File tree

2 files changed

+17
-25
lines changed

2 files changed

+17
-25
lines changed

arch/arm64/include/asm/acpi.h

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
#ifndef _ASM_ACPI_H
1313
#define _ASM_ACPI_H
1414

15+
#include <linux/efi.h>
1516
#include <linux/memblock.h>
1617
#include <linux/psci.h>
1718

1819
#include <asm/cputype.h>
20+
#include <asm/io.h>
1921
#include <asm/smp_plat.h>
2022
#include <asm/tlbflush.h>
2123

@@ -29,18 +31,22 @@
2931

3032
/* Basic configuration for ACPI */
3133
#ifdef CONFIG_ACPI
34+
pgprot_t __acpi_get_mem_attribute(phys_addr_t addr);
35+
3236
/* ACPI table mapping after acpi_permanent_mmap is set */
3337
static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
3438
acpi_size size)
3539
{
40+
/* For normal memory we already have a cacheable mapping. */
41+
if (memblock_is_map_memory(phys))
42+
return (void __iomem *)__phys_to_virt(phys);
43+
3644
/*
37-
* EFI's reserve_regions() call adds memory with the WB attribute
38-
* to memblock via early_init_dt_add_memory_arch().
45+
* We should still honor the memory's attribute here because
46+
* crash dump kernel possibly excludes some ACPI (reclaim)
47+
* regions from memblock list.
3948
*/
40-
if (!memblock_is_memory(phys))
41-
return ioremap(phys, size);
42-
43-
return ioremap_cache(phys, size);
49+
return __ioremap(phys, size, __acpi_get_mem_attribute(phys));
4450
}
4551
#define acpi_os_ioremap acpi_os_ioremap
4652

@@ -125,18 +131,9 @@ static inline const char *acpi_get_enable_method(int cpu)
125131
* for compatibility.
126132
*/
127133
#define acpi_disable_cmcff 1
128-
pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr);
129-
130-
/*
131-
* Despite its name, this function must still broadcast the TLB
132-
* invalidation in order to ensure other CPUs don't end up with junk
133-
* entries as a result of speculation. Unusually, its also called in
134-
* IRQ context (ghes_iounmap_irq) so if we ever need to use IPIs for
135-
* TLB broadcasting, then we're in trouble here.
136-
*/
137-
static inline void arch_apei_flush_tlb_one(unsigned long addr)
134+
static inline pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr)
138135
{
139-
flush_tlb_kernel_range(addr, addr + PAGE_SIZE);
136+
return __acpi_get_mem_attribute(addr);
140137
}
141138
#endif /* CONFIG_ACPI_APEI */
142139

arch/arm64/kernel/acpi.c

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <linux/acpi.h>
1919
#include <linux/bootmem.h>
2020
#include <linux/cpumask.h>
21+
#include <linux/efi.h>
2122
#include <linux/efi-bgrt.h>
2223
#include <linux/init.h>
2324
#include <linux/irq.h>
@@ -29,13 +30,9 @@
2930

3031
#include <asm/cputype.h>
3132
#include <asm/cpu_ops.h>
33+
#include <asm/pgtable.h>
3234
#include <asm/smp_plat.h>
3335

34-
#ifdef CONFIG_ACPI_APEI
35-
# include <linux/efi.h>
36-
# include <asm/pgtable.h>
37-
#endif
38-
3936
int acpi_noirq = 1; /* skip ACPI IRQ initialization */
4037
int acpi_disabled = 1;
4138
EXPORT_SYMBOL(acpi_disabled);
@@ -243,8 +240,7 @@ void __init acpi_boot_table_init(void)
243240
}
244241
}
245242

246-
#ifdef CONFIG_ACPI_APEI
247-
pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr)
243+
pgprot_t __acpi_get_mem_attribute(phys_addr_t addr)
248244
{
249245
/*
250246
* According to "Table 8 Map: EFI memory types to AArch64 memory
@@ -265,4 +261,3 @@ pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr)
265261
return __pgprot(PROT_NORMAL_NC);
266262
return __pgprot(PROT_DEVICE_nGnRnE);
267263
}
268-
#endif

0 commit comments

Comments
 (0)