1 // SPDX-License-Identifier: GPL-2.0
3 * acpi.c - Architecture-Specific Low-Level ACPI Boot Support
5 * Author: Jianmin Lv <lvjianmin@loongson.cn>
6 * Huacai Chen <chenhuacai@loongson.cn>
7 * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
10 #include <linux/init.h>
11 #include <linux/acpi.h>
12 #include <linux/irq.h>
13 #include <linux/irqdomain.h>
14 #include <linux/memblock.h>
15 #include <linux/of_fdt.h>
16 #include <linux/serial_core.h>
19 #include <asm/loongson.h>
22 EXPORT_SYMBOL(acpi_disabled);
24 int acpi_pci_disabled;
25 EXPORT_SYMBOL(acpi_pci_disabled);
26 int acpi_strict = 1; /* We have no workarounds on LoongArch */
32 #define MAX_CORE_PIC 256
34 #define PREFIX "ACPI: "
36 struct acpi_madt_core_pic acpi_core_pic[NR_CPUS];
38 void __init __iomem * __acpi_map_table(unsigned long phys, unsigned long size)
44 return early_memremap(phys, size);
46 void __init __acpi_unmap_table(void __iomem *map, unsigned long size)
51 early_memunmap(map, size);
54 void __iomem *acpi_os_ioremap(acpi_physical_address phys, acpi_size size)
56 if (!memblock_is_memory(phys))
57 return ioremap(phys, size);
59 return ioremap_cache(phys, size);
63 static int set_processor_mask(u32 id, u32 flags)
68 if (num_processors >= nr_cpu_ids) {
69 pr_warn(PREFIX "nr_cpus/possible_cpus limit of %i reached."
70 " processor 0x%x ignored.\n", nr_cpu_ids, cpuid);
75 if (cpuid == loongson_sysconf.boot_cpu_id)
78 cpu = cpumask_next_zero(-1, cpu_present_mask);
80 if (flags & ACPI_MADT_ENABLED) {
82 set_cpu_possible(cpu, true);
83 set_cpu_present(cpu, true);
84 __cpu_number_map[cpuid] = cpu;
85 __cpu_logical_map[cpu] = cpuid;
94 acpi_parse_processor(union acpi_subtable_headers *header, const unsigned long end)
96 struct acpi_madt_core_pic *processor = NULL;
98 processor = (struct acpi_madt_core_pic *)header;
99 if (BAD_MADT_ENTRY(processor, end))
102 acpi_table_print_madt_entry(&header->common);
104 acpi_core_pic[processor->core_id] = *processor;
105 set_processor_mask(processor->core_id, processor->flags);
112 acpi_parse_eio_master(union acpi_subtable_headers *header, const unsigned long end)
115 struct acpi_madt_eio_pic *eiointc = NULL;
117 eiointc = (struct acpi_madt_eio_pic *)header;
118 if (BAD_MADT_ENTRY(eiointc, end))
121 core = eiointc->node * CORES_PER_EIO_NODE;
122 set_bit(core, &(loongson_sysconf.cores_io_master));
127 static void __init acpi_process_madt(void)
132 for (i = 0; i < NR_CPUS; i++) {
133 __cpu_number_map[i] = -1;
134 __cpu_logical_map[i] = -1;
137 acpi_table_parse_madt(ACPI_MADT_TYPE_CORE_PIC,
138 acpi_parse_processor, MAX_CORE_PIC);
140 acpi_table_parse_madt(ACPI_MADT_TYPE_EIO_PIC,
141 acpi_parse_eio_master, MAX_IO_PICS);
143 loongson_sysconf.nr_cpus = num_processors;
148 int __init parse_acpi_topology(void)
150 int cpu, topology_id;
152 for_each_possible_cpu(cpu) {
153 topology_id = find_acpi_cpu_topology(cpu, 0);
154 if (topology_id < 0) {
155 pr_warn("Invalid BIOS PPTT\n");
159 if (acpi_pptt_cpu_is_thread(cpu) <= 0)
160 cpu_data[cpu].core = topology_id;
162 topology_id = find_acpi_cpu_topology(cpu, 1);
166 cpu_data[cpu].core = topology_id;
175 #ifndef CONFIG_SUSPEND
176 int (*acpi_suspend_lowlevel)(void);
178 int (*acpi_suspend_lowlevel)(void) = loongarch_acpi_suspend;
181 void __init acpi_boot_table_init(void)
184 * If acpi_disabled, bail out
190 * Initialize the ACPI boot-time table parser.
192 if (acpi_table_init()) {
197 loongson_sysconf.boot_cpu_id = read_csr_cpuid();
200 * Process the Multiple APIC Description Table (MADT), if present
204 /* Do not enable ACPI SPCR console by default */
205 acpi_parse_spcr(earlycon_acpi_spcr_enable, false);
210 if (earlycon_acpi_spcr_enable)
211 early_init_dt_scan_chosen_stdout();
214 #ifdef CONFIG_ACPI_NUMA
216 static __init int setup_node(int pxm)
218 return acpi_map_pxm_to_node(pxm);
222 * Callback for SLIT parsing. pxm_to_node() returns NUMA_NO_NODE for
223 * I/O localities since SRAT does not list them. I/O localities are
224 * not supported at this point.
226 unsigned int numa_distance_cnt;
228 static inline unsigned int get_numa_distances_cnt(struct acpi_table_slit *slit)
230 return slit->locality_count;
233 void __init numa_set_distance(int from, int to, int distance)
235 if ((u8)distance != distance || (from == to && distance != LOCAL_DISTANCE)) {
236 pr_warn_once("Warning: invalid distance parameter, from=%d to=%d distance=%d\n",
241 node_distances[from][to] = distance;
244 /* Callback for Proximity Domain -> CPUID mapping */
246 acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa)
252 if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) {
256 if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
258 pxm = pa->proximity_domain_lo;
259 if (acpi_srat_revision >= 2) {
260 pxm |= (pa->proximity_domain_hi[0] << 8);
261 pxm |= (pa->proximity_domain_hi[1] << 16);
262 pxm |= (pa->proximity_domain_hi[2] << 24);
264 node = setup_node(pxm);
266 pr_err("SRAT: Too many proximity domains %x\n", pxm);
271 if (pa->apic_id >= CONFIG_NR_CPUS) {
272 pr_info("SRAT: PXM %u -> CPU 0x%02x -> Node %u skipped apicid that is too big\n",
273 pxm, pa->apic_id, node);
277 early_numa_add_cpu(pa->apic_id, node);
279 set_cpuid_to_node(pa->apic_id, node);
280 node_set(node, numa_nodes_parsed);
281 pr_info("SRAT: PXM %u -> CPU 0x%02x -> Node %u\n", pxm, pa->apic_id, node);
286 void __init arch_reserve_mem_area(acpi_physical_address addr, size_t size)
288 memblock_reserve(addr, size);
291 #ifdef CONFIG_ACPI_HOTPLUG_CPU
293 #include <acpi/processor.h>
295 static int __ref acpi_map_cpu2node(acpi_handle handle, int cpu, int physid)
297 #ifdef CONFIG_ACPI_NUMA
300 nid = acpi_get_node(handle);
301 if (nid != NUMA_NO_NODE) {
302 set_cpuid_to_node(physid, nid);
303 node_set(nid, numa_nodes_parsed);
304 set_cpu_numa_node(cpu, nid);
305 cpumask_set_cpu(cpu, cpumask_of_node(nid));
311 int acpi_map_cpu(acpi_handle handle, phys_cpuid_t physid, u32 acpi_id, int *pcpu)
315 cpu = set_processor_mask(physid, ACPI_MADT_ENABLED);
317 pr_info(PREFIX "Unable to map lapic to logical cpu number\n");
321 acpi_map_cpu2node(handle, cpu, physid);
327 EXPORT_SYMBOL(acpi_map_cpu);
329 int acpi_unmap_cpu(int cpu)
331 #ifdef CONFIG_ACPI_NUMA
332 set_cpuid_to_node(cpu_logical_map(cpu), NUMA_NO_NODE);
334 set_cpu_present(cpu, false);
337 pr_info("cpu%d hot remove!\n", cpu);
341 EXPORT_SYMBOL(acpi_unmap_cpu);
343 #endif /* CONFIG_ACPI_HOTPLUG_CPU */