cregit-Linux how code gets into the kernel

Release 4.14 arch/arm64/include/asm/acpi.h

/*
 *  Copyright (C) 2013-2014, Linaro Ltd.
 *      Author: Al Stone <al.stone@linaro.org>
 *      Author: Graeme Gregory <graeme.gregory@linaro.org>
 *      Author: Hanjun Guo <hanjun.guo@linaro.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation;
 */

#ifndef _ASM_ACPI_H

#define _ASM_ACPI_H

#include <linux/memblock.h>
#include <linux/psci.h>

#include <asm/cputype.h>
#include <asm/smp_plat.h>
#include <asm/tlbflush.h>

/* Macros for consistency checks of the GICC subtable of MADT */

#define ACPI_MADT_GICC_LENGTH	\
	(acpi_gbl_FADT.header.revision < 6 ? 76 : 80)


#define BAD_MADT_GICC_ENTRY(entry, end)					\
	(!(entry) || (entry)->header.length != ACPI_MADT_GICC_LENGTH || \
        (unsigned long)(entry) + ACPI_MADT_GICC_LENGTH > (end))

/* Basic configuration for ACPI */
#ifdef	CONFIG_ACPI
/* ACPI table mapping after acpi_permanent_mmap is set */

static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys, acpi_size size) { /* * EFI's reserve_regions() call adds memory with the WB attribute * to memblock via early_init_dt_add_memory_arch(). */ if (!memblock_is_memory(phys)) return ioremap(phys, size); return ioremap_cache(phys, size); }

Contributors

PersonTokensPropCommitsCommitProp
Mark Salter3895.00%150.00%
AKASHI Takahiro25.00%150.00%
Total40100.00%2100.00%

#define acpi_os_ioremap acpi_os_ioremap typedef u64 phys_cpuid_t; #define PHYS_CPUID_INVALID INVALID_HWID #define acpi_strict 1 /* No out-of-spec workarounds on ARM64 */ extern int acpi_disabled; extern int acpi_noirq; extern int acpi_pci_disabled;
static inline void disable_acpi(void) { acpi_disabled = 1; acpi_pci_disabled = 1; acpi_noirq = 1; }

Contributors

PersonTokensPropCommitsCommitProp
Al Stone21100.00%1100.00%
Total21100.00%1100.00%


static inline void enable_acpi(void) { acpi_disabled = 0; acpi_pci_disabled = 0; acpi_noirq = 0; }

Contributors

PersonTokensPropCommitsCommitProp
Al Stone21100.00%1100.00%
Total21100.00%1100.00%

/* * The ACPI processor driver for ACPI core code needs this macro * to find out this cpu was already mapped (mapping from CPU hardware * ID to CPU logical ID) or not. */ #define cpu_physical_id(cpu) cpu_logical_map(cpu) /* * It's used from ACPI core in kdump to boot UP system with SMP kernel, * with this check the ACPI core will not override the CPU index * obtained from GICC with 0 and not print some error message as well. * Since MADT must provide at least one GICC structure for GIC * initialization, CPU will be always available in MADT on ARM64. */
static inline bool acpi_has_cpu_in_madt(void) { return true; }

Contributors

PersonTokensPropCommitsCommitProp
Al Stone12100.00%1100.00%
Total12100.00%1100.00%

struct acpi_madt_generic_interrupt *acpi_cpu_get_madt_gicc(int cpu);
static inline void arch_fix_phys_package_id(int num, u32 slot) { }

Contributors

PersonTokensPropCommitsCommitProp
Al Stone12100.00%1100.00%
Total12100.00%1100.00%

void __init acpi_init_cpus(void); #else
static inline void acpi_init_cpus(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Hanjun Guo8100.00%1100.00%
Total8100.00%1100.00%

#endif /* CONFIG_ACPI */ #ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL bool acpi_parking_protocol_valid(int cpu); void __init acpi_set_mailbox_entry(int cpu, struct acpi_madt_generic_interrupt *processor); #else
static inline bool acpi_parking_protocol_valid(int cpu) { return false; }

Contributors

PersonTokensPropCommitsCommitProp
Lorenzo Pieralisi13100.00%1100.00%
Total13100.00%1100.00%


static inline void acpi_set_mailbox_entry(int cpu, struct acpi_madt_generic_interrupt *processor) {}

Contributors

PersonTokensPropCommitsCommitProp
Lorenzo Pieralisi14100.00%1100.00%
Total14100.00%1100.00%

#endif
static inline const char *acpi_get_enable_method(int cpu) { if (acpi_psci_present()) return "psci"; if (acpi_parking_protocol_valid(cpu)) return "parking-protocol"; return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Lorenzo Pieralisi33100.00%2100.00%
Total33100.00%2100.00%

#ifdef CONFIG_ACPI_APEI /* * acpi_disable_cmcff is used in drivers/acpi/apei/hest.c for disabling * IA-32 Architecture Corrected Machine Check (CMC) Firmware-First mode * with a kernel command line parameter "acpi=nocmcoff". But we don't * have this IA-32 specific feature on ARM64, this definition is only * for compatibility. */ #define acpi_disable_cmcff 1 pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr); /* * Despite its name, this function must still broadcast the TLB * invalidation in order to ensure other CPUs don't end up with junk * entries as a result of speculation. Unusually, its also called in * IRQ context (ghes_iounmap_irq) so if we ever need to use IPIs for * TLB broadcasting, then we're in trouble here. */
static inline void arch_apei_flush_tlb_one(unsigned long addr) { flush_tlb_kernel_range(addr, addr + PAGE_SIZE); }

Contributors

PersonTokensPropCommitsCommitProp
Tomasz Nowicki20100.00%1100.00%
Total20100.00%1100.00%

#endif /* CONFIG_ACPI_APEI */ #ifdef CONFIG_ACPI_NUMA int arm64_acpi_numa_init(void); int acpi_numa_get_nid(unsigned int cpu, u64 hwid); #else
static inline int arm64_acpi_numa_init(void) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
Hanjun Guo13100.00%1100.00%
Total13100.00%1100.00%


static inline int acpi_numa_get_nid(unsigned int cpu, u64 hwid) { return NUMA_NO_NODE; }

Contributors

PersonTokensPropCommitsCommitProp
Hanjun Guo17100.00%1100.00%
Total17100.00%1100.00%

#endif /* CONFIG_ACPI_NUMA */ #define ACPI_TABLE_UPGRADE_MAX_PHYS MEMBLOCK_ALLOC_ACCESSIBLE #endif /*_ASM_ACPI_H*/

Overall Contributors

PersonTokensPropCommitsCommitProp
Al Stone11628.71%315.00%
Hanjun Guo8922.03%315.00%
Lorenzo Pieralisi8821.78%315.00%
Mark Salter4410.89%15.00%
Tomasz Nowicki327.92%210.00%
Mark Rutland133.22%315.00%
Jonathan (Zhixiong) Zhang122.97%15.00%
Jon Masters40.99%15.00%
AKASHI Takahiro30.74%15.00%
Graeme Gregory20.50%15.00%
Lv Zheng10.25%15.00%
Total404100.00%20100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.