Merge branch 'x86/ras' into x86/core, to fix conflicts
[deliverable/linux.git] / arch / x86 / platform / sfi / sfi.c
CommitLineData
efafc8b2
FT
1/*
2 * sfi.c - x86 architecture SFI support.
3 *
4 * Copyright (c) 2009, Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#define KMSG_COMPONENT "SFI"
22#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
23
efafc8b2
FT
24#include <linux/acpi.h>
25#include <linux/init.h>
efafc8b2
FT
26#include <linux/sfi.h>
27#include <linux/io.h>
28
f7a0c786 29#include <asm/irqdomain.h>
efafc8b2 30#include <asm/io_apic.h>
efafc8b2
FT
31#include <asm/mpspec.h>
32#include <asm/setup.h>
33#include <asm/apic.h>
efafc8b2
FT
34
35#ifdef CONFIG_X86_LOCAL_APIC
36static unsigned long sfi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
37
efafc8b2 38/* All CPUs enumerated by SFI must be present and enabled */
9611dc7a 39static void __init mp_sfi_register_lapic(u8 id)
efafc8b2 40{
cb2ded37 41 if (MAX_LOCAL_APIC - id <= 0) {
efafc8b2 42 pr_warning("Processor #%d invalid (max %d)\n",
cb2ded37 43 id, MAX_LOCAL_APIC);
efafc8b2
FT
44 return;
45 }
46
efafc8b2
FT
47 pr_info("registering lapic[%d]\n", id);
48
49 generic_processor_info(id, GET_APIC_VERSION(apic_read(APIC_LVR)));
50}
51
52static int __init sfi_parse_cpus(struct sfi_table_header *table)
53{
54 struct sfi_table_simple *sb;
55 struct sfi_cpu_table_entry *pentry;
56 int i;
57 int cpu_num;
58
59 sb = (struct sfi_table_simple *)table;
60 cpu_num = SFI_GET_NUM_ENTRIES(sb, struct sfi_cpu_table_entry);
61 pentry = (struct sfi_cpu_table_entry *)sb->pentry;
62
63 for (i = 0; i < cpu_num; i++) {
64 mp_sfi_register_lapic(pentry->apic_id);
65 pentry++;
66 }
67
68 smp_found_config = 1;
69 return 0;
70}
71#endif /* CONFIG_X86_LOCAL_APIC */
72
73#ifdef CONFIG_X86_IO_APIC
efafc8b2
FT
74
75static int __init sfi_parse_ioapic(struct sfi_table_header *table)
76{
77 struct sfi_table_simple *sb;
78 struct sfi_apic_table_entry *pentry;
79 int i, num;
1b5d3e00
JL
80 struct ioapic_domain_cfg cfg = {
81 .type = IOAPIC_DOMAIN_STRICT,
f7a0c786 82 .ops = &mp_ioapic_irqdomain_ops,
1b5d3e00 83 };
efafc8b2
FT
84
85 sb = (struct sfi_table_simple *)table;
86 num = SFI_GET_NUM_ENTRIES(sb, struct sfi_apic_table_entry);
87 pentry = (struct sfi_apic_table_entry *)sb->pentry;
88
89 for (i = 0; i < num; i++) {
1b5d3e00 90 mp_register_ioapic(i, pentry->phys_addr, gsi_top, &cfg);
efafc8b2
FT
91 pentry++;
92 }
93
94 WARN(pic_mode, KERN_WARNING
95 "SFI: pic_mod shouldn't be 1 when IOAPIC table is present\n");
96 pic_mode = 0;
97 return 0;
98}
99#endif /* CONFIG_X86_IO_APIC */
100
101/*
102 * sfi_platform_init(): register lapics & io-apics
103 */
104int __init sfi_platform_init(void)
105{
106#ifdef CONFIG_X86_LOCAL_APIC
53301f36 107 register_lapic_address(sfi_lapic_addr);
efafc8b2
FT
108 sfi_table_parse(SFI_SIG_CPUS, NULL, NULL, sfi_parse_cpus);
109#endif
110#ifdef CONFIG_X86_IO_APIC
111 sfi_table_parse(SFI_SIG_APIC, NULL, NULL, sfi_parse_ioapic);
112#endif
113 return 0;
114}
This page took 0.436293 seconds and 5 git commands to generate.