Linux Audio

Check our new training course

Loading...
v5.4
  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 */
  8
  9#ifndef _ASM_ACPI_H
 10#define _ASM_ACPI_H
 11
 
 12#include <linux/efi.h>
 13#include <linux/memblock.h>
 14#include <linux/psci.h>
 
 15
 16#include <asm/cputype.h>
 17#include <asm/io.h>
 18#include <asm/ptrace.h>
 19#include <asm/smp_plat.h>
 20#include <asm/tlbflush.h>
 21
 22/* Macros for consistency checks of the GICC subtable of MADT */
 23
 24/*
 25 * MADT GICC minimum length refers to the MADT GICC structure table length as
 26 * defined in the earliest ACPI version supported on arm64, ie ACPI 5.1.
 27 *
 28 * The efficiency_class member was added to the
 29 * struct acpi_madt_generic_interrupt to represent the MADT GICC structure
 30 * "Processor Power Efficiency Class" field, added in ACPI 6.0 whose offset
 31 * is therefore used to delimit the MADT GICC structure minimum length
 32 * appropriately.
 33 */
 34#define ACPI_MADT_GICC_MIN_LENGTH   ACPI_OFFSET(  \
 35	struct acpi_madt_generic_interrupt, efficiency_class)
 36
 37#define BAD_MADT_GICC_ENTRY(entry, end)					\
 38	(!(entry) || (entry)->header.length < ACPI_MADT_GICC_MIN_LENGTH || \
 39	(unsigned long)(entry) + (entry)->header.length > (end))
 40
 41#define ACPI_MADT_GICC_SPE  (ACPI_OFFSET(struct acpi_madt_generic_interrupt, \
 42	spe_interrupt) + sizeof(u16))
 43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 44/* Basic configuration for ACPI */
 45#ifdef	CONFIG_ACPI
 46pgprot_t __acpi_get_mem_attribute(phys_addr_t addr);
 47
 48/* ACPI table mapping after acpi_permanent_mmap is set */
 49static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
 50					    acpi_size size)
 51{
 52	/* For normal memory we already have a cacheable mapping. */
 53	if (memblock_is_map_memory(phys))
 54		return (void __iomem *)__phys_to_virt(phys);
 55
 56	/*
 57	 * We should still honor the memory's attribute here because
 58	 * crash dump kernel possibly excludes some ACPI (reclaim)
 59	 * regions from memblock list.
 60	 */
 61	return __ioremap(phys, size, __acpi_get_mem_attribute(phys));
 62}
 63#define acpi_os_ioremap acpi_os_ioremap
 64
 65typedef u64 phys_cpuid_t;
 66#define PHYS_CPUID_INVALID INVALID_HWID
 67
 68#define acpi_strict 1	/* No out-of-spec workarounds on ARM64 */
 69extern int acpi_disabled;
 70extern int acpi_noirq;
 71extern int acpi_pci_disabled;
 72
 73static inline void disable_acpi(void)
 74{
 75	acpi_disabled = 1;
 76	acpi_pci_disabled = 1;
 77	acpi_noirq = 1;
 78}
 79
 80static inline void enable_acpi(void)
 81{
 82	acpi_disabled = 0;
 83	acpi_pci_disabled = 0;
 84	acpi_noirq = 0;
 85}
 86
 87/*
 88 * The ACPI processor driver for ACPI core code needs this macro
 89 * to find out this cpu was already mapped (mapping from CPU hardware
 90 * ID to CPU logical ID) or not.
 91 */
 92#define cpu_physical_id(cpu) cpu_logical_map(cpu)
 93
 94/*
 95 * It's used from ACPI core in kdump to boot UP system with SMP kernel,
 96 * with this check the ACPI core will not override the CPU index
 97 * obtained from GICC with 0 and not print some error message as well.
 98 * Since MADT must provide at least one GICC structure for GIC
 99 * initialization, CPU will be always available in MADT on ARM64.
100 */
101static inline bool acpi_has_cpu_in_madt(void)
102{
103	return true;
104}
105
106struct acpi_madt_generic_interrupt *acpi_cpu_get_madt_gicc(int cpu);
107static inline u32 get_acpi_id_for_cpu(unsigned int cpu)
108{
109	return	acpi_cpu_get_madt_gicc(cpu)->uid;
110}
111
112static inline void arch_fix_phys_package_id(int num, u32 slot) { }
113void __init acpi_init_cpus(void);
114int apei_claim_sea(struct pt_regs *regs);
115#else
116static inline void acpi_init_cpus(void) { }
117static inline int apei_claim_sea(struct pt_regs *regs) { return -ENOENT; }
118#endif /* CONFIG_ACPI */
119
120#ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
121bool acpi_parking_protocol_valid(int cpu);
122void __init
123acpi_set_mailbox_entry(int cpu, struct acpi_madt_generic_interrupt *processor);
124#else
125static inline bool acpi_parking_protocol_valid(int cpu) { return false; }
126static inline void
127acpi_set_mailbox_entry(int cpu, struct acpi_madt_generic_interrupt *processor)
128{}
129#endif
130
131static inline const char *acpi_get_enable_method(int cpu)
132{
133	if (acpi_psci_present())
134		return "psci";
135
136	if (acpi_parking_protocol_valid(cpu))
137		return "parking-protocol";
138
139	return NULL;
140}
141
142#ifdef	CONFIG_ACPI_APEI
143/*
144 * acpi_disable_cmcff is used in drivers/acpi/apei/hest.c for disabling
145 * IA-32 Architecture Corrected Machine Check (CMC) Firmware-First mode
146 * with a kernel command line parameter "acpi=nocmcoff". But we don't
147 * have this IA-32 specific feature on ARM64, this definition is only
148 * for compatibility.
149 */
150#define acpi_disable_cmcff 1
151static inline pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr)
152{
153	return __acpi_get_mem_attribute(addr);
154}
155#endif /* CONFIG_ACPI_APEI */
156
157#ifdef CONFIG_ACPI_NUMA
158int arm64_acpi_numa_init(void);
159int acpi_numa_get_nid(unsigned int cpu);
160void acpi_map_cpus_to_nodes(void);
161#else
162static inline int arm64_acpi_numa_init(void) { return -ENOSYS; }
163static inline int acpi_numa_get_nid(unsigned int cpu) { return NUMA_NO_NODE; }
164static inline void acpi_map_cpus_to_nodes(void) { }
165#endif /* CONFIG_ACPI_NUMA */
166
167#define ACPI_TABLE_UPGRADE_MAX_PHYS MEMBLOCK_ALLOC_ACCESSIBLE
168
169#endif /*_ASM_ACPI_H*/
v6.8
  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 */
  8
  9#ifndef _ASM_ACPI_H
 10#define _ASM_ACPI_H
 11
 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>
 17
 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>
 23
 24/* Macros for consistency checks of the GICC subtable of MADT */
 25
 26/*
 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.
 29 *
 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.
 35 */
 36#define ACPI_MADT_GICC_MIN_LENGTH   offsetof(  \
 37	struct acpi_madt_generic_interrupt, efficiency_class)
 38
 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))
 42
 43#define ACPI_MADT_GICC_SPE  (offsetof(struct acpi_madt_generic_interrupt, \
 44	spe_interrupt) + sizeof(u16))
 45
 46#define ACPI_MADT_GICC_TRBE  (offsetof(struct acpi_madt_generic_interrupt, \
 47	trbe_interrupt) + sizeof(u16))
 48/*
 49 * ArmĀ® Functional Fixed Hardware Specification Version 1.2.
 50 * Table 2: Arm Architecture context loss flags
 51 */
 52#define CPUIDLE_CORE_CTXT		BIT(0) /* Core context Lost */
 53
 54static inline unsigned int arch_get_idle_state_flags(u32 arch_flags)
 55{
 56	if (arch_flags & CPUIDLE_CORE_CTXT)
 57		return CPUIDLE_FLAG_TIMER_STOP;
 58
 59	return 0;
 60}
 61#define arch_get_idle_state_flags arch_get_idle_state_flags
 62
 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 */
 66
 67/* Basic configuration for ACPI */
 68#ifdef	CONFIG_ACPI
 69pgprot_t __acpi_get_mem_attribute(phys_addr_t addr);
 70
 71/* ACPI table mapping after acpi_permanent_mmap is set */
 72void __iomem *acpi_os_ioremap(acpi_physical_address phys, acpi_size size);
 
 
 
 
 
 
 
 
 
 
 
 
 
 73#define acpi_os_ioremap acpi_os_ioremap
 74
 75typedef u64 phys_cpuid_t;
 76#define PHYS_CPUID_INVALID INVALID_HWID
 77
 78#define acpi_strict 1	/* No out-of-spec workarounds on ARM64 */
 79extern int acpi_disabled;
 80extern int acpi_noirq;
 81extern int acpi_pci_disabled;
 82
 83static inline void disable_acpi(void)
 84{
 85	acpi_disabled = 1;
 86	acpi_pci_disabled = 1;
 87	acpi_noirq = 1;
 88}
 89
 90static inline void enable_acpi(void)
 91{
 92	acpi_disabled = 0;
 93	acpi_pci_disabled = 0;
 94	acpi_noirq = 0;
 95}
 96
 97/*
 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.
101 */
102#define cpu_physical_id(cpu) cpu_logical_map(cpu)
103
104/*
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.
110 */
111static inline bool acpi_has_cpu_in_madt(void)
112{
113	return true;
114}
115
116struct acpi_madt_generic_interrupt *acpi_cpu_get_madt_gicc(int cpu);
117static inline u32 get_acpi_id_for_cpu(unsigned int cpu)
118{
119	return	acpi_cpu_get_madt_gicc(cpu)->uid;
120}
121
122static inline void arch_fix_phys_package_id(int num, u32 slot) { }
123void __init acpi_init_cpus(void);
124int apei_claim_sea(struct pt_regs *regs);
125#else
126static inline void acpi_init_cpus(void) { }
127static inline int apei_claim_sea(struct pt_regs *regs) { return -ENOENT; }
128#endif /* CONFIG_ACPI */
129
130#ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
131bool acpi_parking_protocol_valid(int cpu);
132void __init
133acpi_set_mailbox_entry(int cpu, struct acpi_madt_generic_interrupt *processor);
134#else
135static inline bool acpi_parking_protocol_valid(int cpu) { return false; }
136static inline void
137acpi_set_mailbox_entry(int cpu, struct acpi_madt_generic_interrupt *processor)
138{}
139#endif
140
141static inline const char *acpi_get_enable_method(int cpu)
142{
143	if (acpi_psci_present())
144		return "psci";
145
146	if (acpi_parking_protocol_valid(cpu))
147		return "parking-protocol";
148
149	return NULL;
150}
151
152#ifdef	CONFIG_ACPI_APEI
153/*
154 * acpi_disable_cmcff is used in drivers/acpi/apei/hest.c for disabling
155 * IA-32 Architecture Corrected Machine Check (CMC) Firmware-First mode
156 * with a kernel command line parameter "acpi=nocmcoff". But we don't
157 * have this IA-32 specific feature on ARM64, this definition is only
158 * for compatibility.
159 */
160#define acpi_disable_cmcff 1
161static inline pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr)
162{
163	return __acpi_get_mem_attribute(addr);
164}
165#endif /* CONFIG_ACPI_APEI */
166
167#ifdef CONFIG_ACPI_NUMA
168int arm64_acpi_numa_init(void);
169int acpi_numa_get_nid(unsigned int cpu);
170void acpi_map_cpus_to_nodes(void);
171#else
172static inline int arm64_acpi_numa_init(void) { return -ENOSYS; }
173static inline int acpi_numa_get_nid(unsigned int cpu) { return NUMA_NO_NODE; }
174static inline void acpi_map_cpus_to_nodes(void) { }
175#endif /* CONFIG_ACPI_NUMA */
176
177#define ACPI_TABLE_UPGRADE_MAX_PHYS MEMBLOCK_ALLOC_ACCESSIBLE
178
179#endif /*_ASM_ACPI_H*/