blob: 39248d3adf5d8b2858a9e01aa92209e70f78772b [file] [log] [blame]
Al Stone37655162015-03-24 14:02:37 +00001/*
2 * Copyright (C) 2013-2014, Linaro Ltd.
3 * Author: Al Stone <al.stone@linaro.org>
4 * Author: Graeme Gregory <graeme.gregory@linaro.org>
5 * Author: Hanjun Guo <hanjun.guo@linaro.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation;
10 */
11
12#ifndef _ASM_ACPI_H
13#define _ASM_ACPI_H
14
Mark Salter652261a2015-03-24 14:02:38 +000015#include <linux/mm.h>
Tomasz Nowickid60fc382015-03-24 14:02:49 +000016#include <linux/irqchip/arm-gic-acpi.h>
17
Hanjun Guo020295b2015-03-24 14:02:47 +000018#include <asm/cputype.h>
Mark Rutlandc5a13302015-04-30 14:22:04 +010019#include <asm/psci.h>
Hanjun Guo020295b2015-03-24 14:02:47 +000020#include <asm/smp_plat.h>
Mark Salter652261a2015-03-24 14:02:38 +000021
Al Stone37655162015-03-24 14:02:37 +000022/* Basic configuration for ACPI */
23#ifdef CONFIG_ACPI
Mark Salter652261a2015-03-24 14:02:38 +000024/* ACPI table mapping after acpi_gbl_permanent_mmap is set */
25static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
26 acpi_size size)
27{
28 if (!page_is_ram(phys >> PAGE_SHIFT))
29 return ioremap(phys, size);
30
31 return ioremap_cache(phys, size);
32}
33#define acpi_os_ioremap acpi_os_ioremap
34
Hanjun Guo020295b2015-03-24 14:02:47 +000035typedef u64 phys_cpuid_t;
36#define PHYS_CPUID_INVALID INVALID_HWID
37
Al Stone37655162015-03-24 14:02:37 +000038#define acpi_strict 1 /* No out-of-spec workarounds on ARM64 */
39extern int acpi_disabled;
40extern int acpi_noirq;
41extern int acpi_pci_disabled;
42
43static inline void disable_acpi(void)
44{
45 acpi_disabled = 1;
46 acpi_pci_disabled = 1;
47 acpi_noirq = 1;
48}
49
Al Stoneb10d79f2015-03-24 14:02:41 +000050static inline void enable_acpi(void)
51{
52 acpi_disabled = 0;
53 acpi_pci_disabled = 0;
54 acpi_noirq = 0;
55}
56
Al Stone37655162015-03-24 14:02:37 +000057/*
Hanjun Guo020295b2015-03-24 14:02:47 +000058 * The ACPI processor driver for ACPI core code needs this macro
59 * to find out this cpu was already mapped (mapping from CPU hardware
60 * ID to CPU logical ID) or not.
61 */
62#define cpu_physical_id(cpu) cpu_logical_map(cpu)
63
64/*
Al Stone37655162015-03-24 14:02:37 +000065 * It's used from ACPI core in kdump to boot UP system with SMP kernel,
66 * with this check the ACPI core will not override the CPU index
67 * obtained from GICC with 0 and not print some error message as well.
68 * Since MADT must provide at least one GICC structure for GIC
69 * initialization, CPU will be always available in MADT on ARM64.
70 */
71static inline bool acpi_has_cpu_in_madt(void)
72{
73 return true;
74}
75
76static inline void arch_fix_phys_package_id(int num, u32 slot) { }
Hanjun Guofccb9a82015-03-24 22:02:45 +080077void __init acpi_init_cpus(void);
Al Stone37655162015-03-24 14:02:37 +000078
Graeme Gregory7c59a3d2015-03-24 14:02:43 +000079#else
Hanjun Guofccb9a82015-03-24 22:02:45 +080080static inline void acpi_init_cpus(void) { }
Al Stone37655162015-03-24 14:02:37 +000081#endif /* CONFIG_ACPI */
82
Lorenzo Pieralisi0f078332015-05-13 14:12:47 +010083static inline const char *acpi_get_enable_method(int cpu)
84{
85 return acpi_psci_present() ? "psci" : NULL;
86}
Al Stone37655162015-03-24 14:02:37 +000087#endif /*_ASM_ACPI_H*/