aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm64/kernel/acpi.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/arm64/kernel/acpi.c b/arch/arm64/kernel/acpi.c
index cd60329da8c4..07649e413244 100644
--- a/arch/arm64/kernel/acpi.c
+++ b/arch/arm64/kernel/acpi.c
@@ -103,9 +103,12 @@ void __init __acpi_unmap_table(char *map, unsigned long size)
103 * 103 *
104 * Returns the logical cpu number which maps to MPIDR 104 * Returns the logical cpu number which maps to MPIDR
105 */ 105 */
106static int __init acpi_map_gic_cpu_interface(u64 mpidr, u8 enabled) 106static int __init
107acpi_map_gic_cpu_interface(struct acpi_madt_generic_interrupt *processor)
107{ 108{
108 int i; 109 int i;
110 u64 mpidr = processor->arm_mpidr & MPIDR_HWID_BITMASK;
111 bool enabled = !!(processor->flags & ACPI_MADT_ENABLED);
109 112
110 if (mpidr == INVALID_HWID) { 113 if (mpidr == INVALID_HWID) {
111 pr_info("Skip MADT cpu entry with invalid MPIDR\n"); 114 pr_info("Skip MADT cpu entry with invalid MPIDR\n");
@@ -178,11 +181,7 @@ acpi_parse_gic_cpu_interface(struct acpi_subtable_header *header,
178 return -EINVAL; 181 return -EINVAL;
179 182
180 acpi_table_print_madt_entry(header); 183 acpi_table_print_madt_entry(header);
181 184 return acpi_map_gic_cpu_interface(processor);
182 acpi_map_gic_cpu_interface(processor->arm_mpidr & MPIDR_HWID_BITMASK,
183 processor->flags & ACPI_MADT_ENABLED);
184
185 return 0;
186} 185}
187 186
188/* Parse GIC cpu interface entries in MADT for SMP init */ 187/* Parse GIC cpu interface entries in MADT for SMP init */