Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / arch / arm64 / include / asm / acpi.h
bloba407f9cd549edccfec14f476c7e53cf04912712b
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2013-2014, Linaro Ltd.
4 * Author: Al Stone <al.stone@linaro.org>
5 * Author: Graeme Gregory <graeme.gregory@linaro.org>
6 * Author: Hanjun Guo <hanjun.guo@linaro.org>
7 */
9 #ifndef _ASM_ACPI_H
10 #define _ASM_ACPI_H
12 #include <linux/cpuidle.h>
13 #include <linux/efi.h>
14 #include <linux/memblock.h>
15 #include <linux/psci.h>
16 #include <linux/stddef.h>
18 #include <asm/cputype.h>
19 #include <asm/io.h>
20 #include <asm/ptrace.h>
21 #include <asm/smp_plat.h>
22 #include <asm/tlbflush.h>
24 /* Macros for consistency checks of the GICC subtable of MADT */
27 * MADT GICC minimum length refers to the MADT GICC structure table length as
28 * defined in the earliest ACPI version supported on arm64, ie ACPI 5.1.
30 * The efficiency_class member was added to the
31 * struct acpi_madt_generic_interrupt to represent the MADT GICC structure
32 * "Processor Power Efficiency Class" field, added in ACPI 6.0 whose offset
33 * is therefore used to delimit the MADT GICC structure minimum length
34 * appropriately.
36 #define ACPI_MADT_GICC_MIN_LENGTH offsetof( \
37 struct acpi_madt_generic_interrupt, efficiency_class)
39 #define BAD_MADT_GICC_ENTRY(entry, end) \
40 (!(entry) || (entry)->header.length < ACPI_MADT_GICC_MIN_LENGTH || \
41 (unsigned long)(entry) + (entry)->header.length > (end))
43 #define ACPI_MADT_GICC_SPE (offsetof(struct acpi_madt_generic_interrupt, \
44 spe_interrupt) + sizeof(u16))
46 #define ACPI_MADT_GICC_TRBE (offsetof(struct acpi_madt_generic_interrupt, \
47 trbe_interrupt) + sizeof(u16))
49 * ArmĀ® Functional Fixed Hardware Specification Version 1.2.
50 * Table 2: Arm Architecture context loss flags
52 #define CPUIDLE_CORE_CTXT BIT(0) /* Core context Lost */
54 static inline unsigned int arch_get_idle_state_flags(u32 arch_flags)
56 if (arch_flags & CPUIDLE_CORE_CTXT)
57 return CPUIDLE_FLAG_TIMER_STOP;
59 return 0;
61 #define arch_get_idle_state_flags arch_get_idle_state_flags
63 #define CPUIDLE_TRACE_CTXT BIT(1) /* Trace context loss */
64 #define CPUIDLE_GICR_CTXT BIT(2) /* GICR */
65 #define CPUIDLE_GICD_CTXT BIT(3) /* GICD */
67 /* Basic configuration for ACPI */
68 #ifdef CONFIG_ACPI
69 pgprot_t __acpi_get_mem_attribute(phys_addr_t addr);
71 /* ACPI table mapping after acpi_permanent_mmap is set */
72 void __iomem *acpi_os_ioremap(acpi_physical_address phys, acpi_size size);
73 #define acpi_os_ioremap acpi_os_ioremap
75 typedef u64 phys_cpuid_t;
76 #define PHYS_CPUID_INVALID INVALID_HWID
78 #define acpi_strict 1 /* No out-of-spec workarounds on ARM64 */
79 extern int acpi_disabled;
80 extern int acpi_noirq;
81 extern int acpi_pci_disabled;
83 static inline void disable_acpi(void)
85 acpi_disabled = 1;
86 acpi_pci_disabled = 1;
87 acpi_noirq = 1;
90 static inline void enable_acpi(void)
92 acpi_disabled = 0;
93 acpi_pci_disabled = 0;
94 acpi_noirq = 0;
98 * The ACPI processor driver for ACPI core code needs this macro
99 * to find out this cpu was already mapped (mapping from CPU hardware
100 * ID to CPU logical ID) or not.
102 #define cpu_physical_id(cpu) cpu_logical_map(cpu)
105 * It's used from ACPI core in kdump to boot UP system with SMP kernel,
106 * with this check the ACPI core will not override the CPU index
107 * obtained from GICC with 0 and not print some error message as well.
108 * Since MADT must provide at least one GICC structure for GIC
109 * initialization, CPU will be always available in MADT on ARM64.
111 static inline bool acpi_has_cpu_in_madt(void)
113 return true;
116 struct acpi_madt_generic_interrupt *acpi_cpu_get_madt_gicc(int cpu);
117 static inline u32 get_acpi_id_for_cpu(unsigned int cpu)
119 return acpi_cpu_get_madt_gicc(cpu)->uid;
122 static inline int get_cpu_for_acpi_id(u32 uid)
124 int cpu;
126 for (cpu = 0; cpu < nr_cpu_ids; cpu++)
127 if (acpi_cpu_get_madt_gicc(cpu) &&
128 uid == get_acpi_id_for_cpu(cpu))
129 return cpu;
131 return -EINVAL;
134 static inline void arch_fix_phys_package_id(int num, u32 slot) { }
135 void __init acpi_init_cpus(void);
136 int apei_claim_sea(struct pt_regs *regs);
137 #else
138 static inline void acpi_init_cpus(void) { }
139 static inline int apei_claim_sea(struct pt_regs *regs) { return -ENOENT; }
140 #endif /* CONFIG_ACPI */
142 #ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
143 bool acpi_parking_protocol_valid(int cpu);
144 void __init
145 acpi_set_mailbox_entry(int cpu, struct acpi_madt_generic_interrupt *processor);
146 #else
147 static inline bool acpi_parking_protocol_valid(int cpu) { return false; }
148 static inline void
149 acpi_set_mailbox_entry(int cpu, struct acpi_madt_generic_interrupt *processor)
151 #endif
153 static inline const char *acpi_get_enable_method(int cpu)
155 if (acpi_psci_present())
156 return "psci";
158 if (acpi_parking_protocol_valid(cpu))
159 return "parking-protocol";
161 return NULL;
164 #ifdef CONFIG_ACPI_APEI
166 * acpi_disable_cmcff is used in drivers/acpi/apei/hest.c for disabling
167 * IA-32 Architecture Corrected Machine Check (CMC) Firmware-First mode
168 * with a kernel command line parameter "acpi=nocmcoff". But we don't
169 * have this IA-32 specific feature on ARM64, this definition is only
170 * for compatibility.
172 #define acpi_disable_cmcff 1
173 static inline pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr)
175 return __acpi_get_mem_attribute(addr);
177 #endif /* CONFIG_ACPI_APEI */
179 #ifdef CONFIG_ACPI_NUMA
180 int arm64_acpi_numa_init(void);
181 int acpi_numa_get_nid(unsigned int cpu);
182 void acpi_map_cpus_to_nodes(void);
183 #else
184 static inline int arm64_acpi_numa_init(void) { return -ENOSYS; }
185 static inline int acpi_numa_get_nid(unsigned int cpu) { return NUMA_NO_NODE; }
186 static inline void acpi_map_cpus_to_nodes(void) { }
187 #endif /* CONFIG_ACPI_NUMA */
189 #define ACPI_TABLE_UPGRADE_MAX_PHYS MEMBLOCK_ALLOC_ACCESSIBLE
191 #endif /*_ASM_ACPI_H*/