blob: bf6016f8db4ea493921d589394bf2d5aa01aa0fc [file] [log] [blame]
Thomas Gleixnera61127c2019-05-29 16:57:49 -07001// SPDX-License-Identifier: GPL-2.0-only
Feng Tangefafc8b2009-08-14 15:23:29 -04002/*
3 * sfi.c - x86 architecture SFI support.
4 *
5 * Copyright (c) 2009, Intel Corporation.
Feng Tangefafc8b2009-08-14 15:23:29 -04006 */
7
8#define KMSG_COMPONENT "SFI"
9#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10
Feng Tangefafc8b2009-08-14 15:23:29 -040011#include <linux/acpi.h>
12#include <linux/init.h>
Feng Tangefafc8b2009-08-14 15:23:29 -040013#include <linux/sfi.h>
14#include <linux/io.h>
15
Thomas Gleixnerf7a0c782015-04-14 10:30:08 +080016#include <asm/irqdomain.h>
Feng Tangefafc8b2009-08-14 15:23:29 -040017#include <asm/io_apic.h>
Feng Tangefafc8b2009-08-14 15:23:29 -040018#include <asm/mpspec.h>
19#include <asm/setup.h>
20#include <asm/apic.h>
Feng Tangefafc8b2009-08-14 15:23:29 -040021
22#ifdef CONFIG_X86_LOCAL_APIC
23static unsigned long sfi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
24
Feng Tangefafc8b2009-08-14 15:23:29 -040025/* All CPUs enumerated by SFI must be present and enabled */
Jan Beulich9611dc72012-11-23 16:33:05 +000026static void __init mp_sfi_register_lapic(u8 id)
Feng Tangefafc8b2009-08-14 15:23:29 -040027{
Yinghai Lucb2ded32011-01-04 16:38:52 -080028 if (MAX_LOCAL_APIC - id <= 0) {
Feng Tangefafc8b2009-08-14 15:23:29 -040029 pr_warning("Processor #%d invalid (max %d)\n",
Yinghai Lucb2ded32011-01-04 16:38:52 -080030 id, MAX_LOCAL_APIC);
Feng Tangefafc8b2009-08-14 15:23:29 -040031 return;
32 }
33
Feng Tangefafc8b2009-08-14 15:23:29 -040034 pr_info("registering lapic[%d]\n", id);
35
36 generic_processor_info(id, GET_APIC_VERSION(apic_read(APIC_LVR)));
37}
38
39static int __init sfi_parse_cpus(struct sfi_table_header *table)
40{
41 struct sfi_table_simple *sb;
42 struct sfi_cpu_table_entry *pentry;
43 int i;
44 int cpu_num;
45
46 sb = (struct sfi_table_simple *)table;
47 cpu_num = SFI_GET_NUM_ENTRIES(sb, struct sfi_cpu_table_entry);
48 pentry = (struct sfi_cpu_table_entry *)sb->pentry;
49
50 for (i = 0; i < cpu_num; i++) {
51 mp_sfi_register_lapic(pentry->apic_id);
52 pentry++;
53 }
54
55 smp_found_config = 1;
56 return 0;
57}
58#endif /* CONFIG_X86_LOCAL_APIC */
59
60#ifdef CONFIG_X86_IO_APIC
Feng Tangefafc8b2009-08-14 15:23:29 -040061
62static int __init sfi_parse_ioapic(struct sfi_table_header *table)
63{
64 struct sfi_table_simple *sb;
65 struct sfi_apic_table_entry *pentry;
66 int i, num;
Jiang Liu1b5d3e02014-06-09 16:19:56 +080067 struct ioapic_domain_cfg cfg = {
68 .type = IOAPIC_DOMAIN_STRICT,
Thomas Gleixnerf7a0c782015-04-14 10:30:08 +080069 .ops = &mp_ioapic_irqdomain_ops,
Jiang Liu1b5d3e02014-06-09 16:19:56 +080070 };
Feng Tangefafc8b2009-08-14 15:23:29 -040071
72 sb = (struct sfi_table_simple *)table;
73 num = SFI_GET_NUM_ENTRIES(sb, struct sfi_apic_table_entry);
74 pentry = (struct sfi_apic_table_entry *)sb->pentry;
75
76 for (i = 0; i < num; i++) {
Jiang Liu1b5d3e02014-06-09 16:19:56 +080077 mp_register_ioapic(i, pentry->phys_addr, gsi_top, &cfg);
Feng Tangefafc8b2009-08-14 15:23:29 -040078 pentry++;
79 }
80
81 WARN(pic_mode, KERN_WARNING
82 "SFI: pic_mod shouldn't be 1 when IOAPIC table is present\n");
83 pic_mode = 0;
84 return 0;
85}
86#endif /* CONFIG_X86_IO_APIC */
87
88/*
89 * sfi_platform_init(): register lapics & io-apics
90 */
91int __init sfi_platform_init(void)
92{
93#ifdef CONFIG_X86_LOCAL_APIC
Yinghai Lu53301f32010-12-07 00:55:47 -080094 register_lapic_address(sfi_lapic_addr);
Feng Tangefafc8b2009-08-14 15:23:29 -040095 sfi_table_parse(SFI_SIG_CPUS, NULL, NULL, sfi_parse_cpus);
96#endif
97#ifdef CONFIG_X86_IO_APIC
98 sfi_table_parse(SFI_SIG_APIC, NULL, NULL, sfi_parse_ioapic);
99#endif
100 return 0;
101}