treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441
[linux-block.git] / arch / x86 / platform / intel-mid / intel-mid.c
CommitLineData
b886d83c 1// SPDX-License-Identifier: GPL-2.0-only
3f4110a4 2/*
05454c26 3 * intel-mid.c: Intel MID platform setup code
3f4110a4 4 *
05454c26 5 * (C) Copyright 2008, 2012 Intel Corporation
3f4110a4 6 * Author: Jacob Pan (jacob.jun.pan@intel.com)
05454c26 7 * Author: Sathyanarayanan Kuppuswamy <sathyanarayanan.kuppuswamy@intel.com>
3f4110a4 8 */
1da4b1c6 9
712b6aa8 10#define pr_fmt(fmt) "intel_mid: " fmt
1da4b1c6 11
3f4110a4 12#include <linux/init.h>
16ab5395 13#include <linux/kernel.h>
efe3ed98 14#include <linux/interrupt.h>
a11836fa 15#include <linux/regulator/machine.h>
efe3ed98 16#include <linux/scatterlist.h>
16ab5395
JP
17#include <linux/sfi.h>
18#include <linux/irq.h>
cc3ae7b0 19#include <linux/export.h>
42c2544b 20#include <linux/notifier.h>
3f4110a4
TG
21
22#include <asm/setup.h>
16ab5395
JP
23#include <asm/mpspec_def.h>
24#include <asm/hw_irq.h>
25#include <asm/apic.h>
26#include <asm/io_apic.h>
05454c26
KS
27#include <asm/intel-mid.h>
28#include <asm/intel_mid_vrtc.h>
5b78b672
JP
29#include <asm/io.h>
30#include <asm/i8259.h>
1da4b1c6 31#include <asm/intel_scu_ipc.h>
3746c6b6 32#include <asm/apb_timer.h>
cfb505a7 33#include <asm/reboot.h>
3f4110a4 34
a875c019
JP
35/*
36 * the clockevent devices on Moorestown/Medfield can be APBT or LAPIC clock,
712b6aa8 37 * cmdline option x86_intel_mid_timer can be used to override the configuration
a875c019
JP
38 * to prefer one or the other.
39 * at runtime, there are basically three timer configurations:
40 * 1. per cpu apbt clock only
41 * 2. per cpu always-on lapic clocks only, this is Penwell/Medfield only
42 * 3. per cpu lapic clock (C3STOP) and one apbt clock, with broadcast.
43 *
44 * by default (without cmdline option), platform code first detects cpu type
45 * to see if we are on lincroft or penwell, then set up both lapic or apbt
46 * clocks accordingly.
47 * i.e. by default, medfield uses configuration #2, moorestown uses #1.
48 * config #3 is supported but not recommended on medfield.
49 *
50 * rating and feature summary:
51 * lapic (with C3STOP) --------- 100
52 * apbt (always-on) ------------ 110
53 * lapic (always-on,ARAT) ------ 150
54 */
55
712b6aa8 56enum intel_mid_timer_options intel_mid_timer_options;
a875c019 57
712b6aa8
KS
58enum intel_mid_cpu_type __intel_mid_cpu_chip;
59EXPORT_SYMBOL_GPL(__intel_mid_cpu_chip);
a0c173bd 60
85611e3f
KS
61static void intel_mid_power_off(void)
62{
bda7b072
AS
63 /* Shut down South Complex via PWRMU */
64 intel_mid_pwr_power_off();
65
66 /* Only for Tangier, the rest will ignore this command */
67 intel_scu_ipc_simple_command(IPCMSG_COLD_OFF, 1);
85611e3f
KS
68};
69
712b6aa8 70static void intel_mid_reboot(void)
48bc5562 71{
028091f8 72 intel_scu_ipc_simple_command(IPCMSG_COLD_RESET, 0);
48bc5562
JP
73}
74
6648d1b4
TG
75static void __init intel_mid_setup_bp_timer(void)
76{
77 apbt_time_init();
78 setup_boot_APIC_clock();
79}
80
712b6aa8 81static void __init intel_mid_time_init(void)
3746c6b6 82{
7f05dec3 83 sfi_table_parse(SFI_SIG_MTMR, NULL, NULL, sfi_parse_mtmr);
6648d1b4 84
712b6aa8
KS
85 switch (intel_mid_timer_options) {
86 case INTEL_MID_TIMER_APBT_ONLY:
a875c019 87 break;
712b6aa8 88 case INTEL_MID_TIMER_LAPIC_APBT:
6648d1b4
TG
89 /* Use apbt and local apic */
90 x86_init.timers.setup_percpu_clockev = intel_mid_setup_bp_timer;
a875c019 91 x86_cpuinit.setup_percpu_clockev = setup_secondary_APIC_clock;
6648d1b4 92 return;
a875c019
JP
93 default:
94 if (!boot_cpu_has(X86_FEATURE_ARAT))
95 break;
6648d1b4 96 /* Lapic only, no apbt */
a875c019
JP
97 x86_init.timers.setup_percpu_clockev = setup_boot_APIC_clock;
98 x86_cpuinit.setup_percpu_clockev = setup_secondary_APIC_clock;
99 return;
100 }
6648d1b4
TG
101
102 x86_init.timers.setup_percpu_clockev = apbt_time_init;
3746c6b6
JP
103}
104
aeeca404 105static void intel_mid_arch_setup(void)
3746c6b6 106{
85611e3f 107 if (boot_cpu_data.x86 != 6) {
1a8359e4 108 pr_err("Unknown Intel MID CPU (%d:%d), default to Penwell\n",
a0c173bd 109 boot_cpu_data.x86, boot_cpu_data.x86_model);
712b6aa8 110 __intel_mid_cpu_chip = INTEL_MID_CPU_CHIP_PENWELL;
85611e3f
KS
111 goto out;
112 }
113
114 switch (boot_cpu_data.x86_model) {
115 case 0x35:
116 __intel_mid_cpu_chip = INTEL_MID_CPU_CHIP_CLOVERVIEW;
117 break;
bc20aa48
DC
118 case 0x3C:
119 case 0x4A:
120 __intel_mid_cpu_chip = INTEL_MID_CPU_CHIP_TANGIER;
41afb1df 121 x86_platform.legacy.rtc = 1;
bc20aa48 122 break;
85611e3f
KS
123 case 0x27:
124 default:
125 __intel_mid_cpu_chip = INTEL_MID_CPU_CHIP_PENWELL;
126 break;
a0c173bd 127 }
85611e3f 128
85611e3f 129out:
a11836fa
AS
130 /*
131 * Intel MID platforms are using explicitly defined regulators.
132 *
133 * Let the regulator core know that we do not have any additional
134 * regulators left. This lets it substitute unprovided regulators with
135 * dummy ones:
136 */
137 regulator_has_full_constraints();
a0c173bd 138}
3746c6b6 139
064a59b6
JP
140/*
141 * Moorestown does not have external NMI source nor port 0x61 to report
142 * NMI status. The possible NMI sources are from pmu as a result of NMI
143 * watchdog or lock debug. Reading io port 0x61 results in 0xff which
144 * misled NMI handler.
145 */
712b6aa8 146static unsigned char intel_mid_get_nmi_reason(void)
064a59b6
JP
147{
148 return 0;
149}
150
3f4110a4
TG
151/*
152 * Moorestown specific x86_init function overrides and early setup
153 * calls.
154 */
712b6aa8 155void __init x86_intel_mid_early_setup(void)
3f4110a4
TG
156{
157 x86_init.resources.probe_roms = x86_init_noop;
158 x86_init.resources.reserve_resources = x86_init_noop;
5b78b672 159
712b6aa8 160 x86_init.timers.timer_init = intel_mid_time_init;
a875c019 161 x86_init.timers.setup_percpu_clockev = x86_init_noop;
b0ee9eff 162 x86_init.timers.wallclock_init = intel_mid_rtc_init;
3746c6b6
JP
163
164 x86_init.irqs.pre_vector_init = x86_init_noop;
165
712b6aa8 166 x86_init.oem.arch_setup = intel_mid_arch_setup;
a0c173bd 167
a875c019 168 x86_cpuinit.setup_percpu_clockev = apbt_setup_secondary_clock;
3746c6b6 169
712b6aa8 170 x86_platform.get_nmi_reason = intel_mid_get_nmi_reason;
064a59b6 171
a912a758 172 x86_init.pci.arch_init = intel_mid_pci_init;
af2730f6
JP
173 x86_init.pci.fixup_irqs = x86_init_noop;
174
5b78b672 175 legacy_pic = &null_legacy_pic;
fea24e28 176
02428742
AS
177 /*
178 * Do nothing for now as everything needed done in
179 * x86_intel_mid_early_setup() below.
180 */
181 x86_init.acpi.reduced_hw_early_init = x86_init_noop;
182
712b6aa8
KS
183 pm_power_off = intel_mid_power_off;
184 machine_ops.emergency_restart = intel_mid_reboot;
cfb505a7 185
fea24e28
JP
186 /* Avoid searching for BIOS MP tables */
187 x86_init.mpparse.find_smp_config = x86_init_noop;
188 x86_init.mpparse.get_smp_config = x86_init_uint_noop;
9d90e49d 189 set_bit(MP_BUS_ISA, mp_bus_not_pci);
3f4110a4 190}
a875c019
JP
191
192/*
193 * if user does not want to use per CPU apb timer, just give it a lower rating
194 * than local apic timer and skip the late per cpu timer init.
195 */
712b6aa8 196static inline int __init setup_x86_intel_mid_timer(char *arg)
a875c019
JP
197{
198 if (!arg)
199 return -EINVAL;
200
201 if (strcmp("apbt_only", arg) == 0)
712b6aa8 202 intel_mid_timer_options = INTEL_MID_TIMER_APBT_ONLY;
a875c019 203 else if (strcmp("lapic_and_apbt", arg) == 0)
712b6aa8 204 intel_mid_timer_options = INTEL_MID_TIMER_LAPIC_APBT;
a875c019 205 else {
b000de58
AS
206 pr_warn("X86 INTEL_MID timer option %s not recognised use x86_intel_mid_timer=apbt_only or lapic_and_apbt\n",
207 arg);
a875c019
JP
208 return -EINVAL;
209 }
210 return 0;
211}
712b6aa8 212__setup("x86_intel_mid_timer=", setup_x86_intel_mid_timer);