blob: e387a258d649790bb4d0a7f678d1999e965179f0 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * processor_idle - idle state submodule to the ACPI processor driver
4 *
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -04007 * Copyright (C) 2004, 2005 Dominik Brodowski <linux@brodo.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9 * - Added processor hotplug support
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -040010 * Copyright (C) 2005 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
11 * - Added support for C3 on SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
Sudeep Hollab6ec26f2015-12-02 14:10:44 +000013#define pr_fmt(fmt) "ACPI: " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/acpi.h>
17#include <linux/dmi.h>
Daniel Lezcanoe2668fb2013-02-04 22:44:41 +000018#include <linux/sched.h> /* need_resched() */
Thomas Gleixneree41eeb2015-04-03 02:02:00 +020019#include <linux/tick.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040020#include <linux/cpuidle.h>
Chris Metcalf6727ad92016-10-07 17:02:55 -070021#include <linux/cpu.h>
Lv Zheng8b484632013-12-03 08:49:16 +080022#include <acpi/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Thomas Gleixner34349332007-02-16 01:27:54 -080024/*
25 * Include the apic definitions for x86 to have the APIC timer related defines
26 * available also for UP (on SMP it gets magically included via linux/smp.h).
27 * asm/acpi.h is not an option, as it would require more include magic. Also
28 * creating an empty asm-ia64/apic.h would just trade pest vs. cholera.
29 */
30#ifdef CONFIG_X86
31#include <asm/apic.h>
32#endif
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050036ACPI_MODULE_NAME("processor_idle");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +020038#define ACPI_IDLE_STATE_START (IS_ENABLED(CONFIG_ARCH_HAS_CPU_RELAX) ? 1 : 0)
39
Len Brown4f86d3a2007-10-03 18:58:00 -040040static unsigned int max_cstate __read_mostly = ACPI_PROCESSOR_MAX_POWER;
41module_param(max_cstate, uint, 0000);
Andreas Mohrb6835052006-04-27 05:25:00 -040042static unsigned int nocst __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043module_param(nocst, uint, 0000);
Len Brownd3e7e992010-07-22 17:23:10 -040044static int bm_check_disable __read_mostly;
45module_param(bm_check_disable, uint, 0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Len Brown25de5712007-12-14 00:24:15 -050047static unsigned int latency_factor __read_mostly = 2;
Len Brown4963f622007-12-13 23:50:45 -050048module_param(latency_factor, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Daniel Lezcano3d339dc2012-09-17 23:01:56 +020050static DEFINE_PER_CPU(struct cpuidle_device *, acpi_cpuidle_device);
51
Sudeep Holla35ae7132016-07-19 18:52:53 +010052struct cpuidle_driver acpi_idle_driver = {
53 .name = "acpi_idle",
54 .owner = THIS_MODULE,
55};
56
57#ifdef CONFIG_ACPI_PROCESSOR_CSTATE
Peter Zijlstra25528212016-03-15 14:52:49 -070058static
59DEFINE_PER_CPU(struct acpi_processor_cx * [CPUIDLE_STATE_MAX], acpi_cstate);
Daniel Lezcanoac3ebaf2013-02-04 22:44:43 +000060
Thomas Renningerd1896042010-11-03 17:06:14 +010061static int disabled_by_idle_boot_param(void)
62{
63 return boot_option_idle_override == IDLE_POLL ||
Thomas Renningerd1896042010-11-03 17:06:14 +010064 boot_option_idle_override == IDLE_HALT;
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
69 * For now disable this. Probably a bug somewhere else.
70 *
71 * To skip this limit, boot/load with a large max_cstate limit.
72 */
Jeff Garzik18552562007-10-03 15:15:40 -040073static int set_max_cstate(const struct dmi_system_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
76 return 0;
77
Sudeep Hollab6ec26f2015-12-02 14:10:44 +000078 pr_notice("%s detected - limiting to C%ld max_cstate."
79 " Override with \"processor.max_cstate=%d\"\n", id->ident,
80 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Len Brown3d356002005-08-03 00:22:52 -040082 max_cstate = (long)id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 return 0;
85}
86
Mathias Krauseb0346682015-06-13 14:26:57 +020087static const struct dmi_system_id processor_power_dmi_table[] = {
Thomas Rosner876c1842006-01-06 01:31:00 -050088 { set_max_cstate, "Clevo 5600D", {
89 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
90 DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
Len Brown4be44fc2005-08-05 00:44:28 -040091 (void *)2},
Arjan van de Ven370d5cd2010-01-27 15:25:39 -080092 { set_max_cstate, "Pavilion zv5000", {
93 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
94 DMI_MATCH(DMI_PRODUCT_NAME,"Pavilion zv5000 (DS502A#ABA)")},
95 (void *)1},
96 { set_max_cstate, "Asus L8400B", {
97 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
98 DMI_MATCH(DMI_PRODUCT_NAME,"L8400B series Notebook PC")},
99 (void *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 {},
101};
102
Len Brown4f86d3a2007-10-03 18:58:00 -0400103
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800104/*
105 * Callers should disable interrupts before the call and enable
106 * interrupts after return.
107 */
Chris Metcalf6727ad92016-10-07 17:02:55 -0700108static void __cpuidle acpi_safe_halt(void)
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500109{
Peter Zijlstraea811742013-09-11 12:43:13 +0200110 if (!tif_need_resched()) {
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500111 safe_halt();
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700112 local_irq_disable();
113 }
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500114}
115
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800116#ifdef ARCH_APICTIMER_STOPS_ON_C3
117
118/*
119 * Some BIOS implementations switch to C3 in the published C2 state.
Linus Torvalds296d93c2007-03-23 08:03:47 -0700120 * This seems to be a common problem on AMD boxen, but other vendors
121 * are affected too. We pick the most conservative approach: we assume
122 * that the local APIC stops in both C2 and C3.
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800123 */
Len Brown7e275cc2009-05-15 02:08:44 -0400124static void lapic_timer_check_state(int state, struct acpi_processor *pr,
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800125 struct acpi_processor_cx *cx)
126{
127 struct acpi_processor_power *pwr = &pr->power;
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100128 u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800129
Venkatesh Pallipadidb954b52009-04-06 18:51:29 -0700130 if (cpu_has(&cpu_data(pr->id), X86_FEATURE_ARAT))
131 return;
132
Borislav Petkov07c94a32016-12-09 19:29:11 +0100133 if (boot_cpu_has_bug(X86_BUG_AMD_APIC_C1E))
Shaohua Li87ad57ba2009-05-19 16:09:42 +0800134 type = ACPI_STATE_C1;
135
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800136 /*
137 * Check, if one of the previous states already marked the lapic
138 * unstable
139 */
140 if (pwr->timer_broadcast_on_state < state)
141 return;
142
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100143 if (cx->type >= type)
Linus Torvalds296d93c2007-03-23 08:03:47 -0700144 pr->power.timer_broadcast_on_state = state;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800145}
146
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900147static void __lapic_timer_propagate_broadcast(void *arg)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800148{
Suresh Siddhaf833bab2009-08-17 14:34:59 -0700149 struct acpi_processor *pr = (struct acpi_processor *) arg;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800150
Thomas Gleixneree41eeb2015-04-03 02:02:00 +0200151 if (pr->power.timer_broadcast_on_state < INT_MAX)
152 tick_broadcast_enable();
153 else
154 tick_broadcast_disable();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800155}
156
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900157static void lapic_timer_propagate_broadcast(struct acpi_processor *pr)
158{
159 smp_call_function_single(pr->id, __lapic_timer_propagate_broadcast,
160 (void *)pr, 1);
161}
162
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800163/* Power(C) State timer broadcast control */
Len Brown7e275cc2009-05-15 02:08:44 -0400164static void lapic_timer_state_broadcast(struct acpi_processor *pr,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800165 struct acpi_processor_cx *cx,
166 int broadcast)
167{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800168 int state = cx - pr->power.states;
169
170 if (state >= pr->power.timer_broadcast_on_state) {
Thomas Gleixner78157012015-04-03 02:12:03 +0200171 if (broadcast)
172 tick_broadcast_enter();
173 else
174 tick_broadcast_exit();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800175 }
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800176}
177
178#else
179
Len Brown7e275cc2009-05-15 02:08:44 -0400180static void lapic_timer_check_state(int state, struct acpi_processor *pr,
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800181 struct acpi_processor_cx *cstate) { }
Len Brown7e275cc2009-05-15 02:08:44 -0400182static void lapic_timer_propagate_broadcast(struct acpi_processor *pr) { }
183static void lapic_timer_state_broadcast(struct acpi_processor *pr,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800184 struct acpi_processor_cx *cx,
185 int broadcast)
186{
187}
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800188
189#endif
190
John Stultz592913e2010-07-13 17:56:20 -0700191#if defined(CONFIG_X86)
Len Brown520daf72009-05-14 17:27:38 -0400192static void tsc_check_state(int state)
Andi Kleenddb25f92008-01-30 13:32:41 +0100193{
194 switch (boot_cpu_data.x86_vendor) {
Pu Wen7377ed42018-09-23 17:37:05 +0800195 case X86_VENDOR_HYGON:
Andi Kleenddb25f92008-01-30 13:32:41 +0100196 case X86_VENDOR_AMD:
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800197 case X86_VENDOR_INTEL:
davidwangfe6daab2018-01-22 18:14:17 +0800198 case X86_VENDOR_CENTAUR:
Andi Kleenddb25f92008-01-30 13:32:41 +0100199 /*
200 * AMD Fam10h TSC will tick in all
201 * C/P/S0/S1 states when this bit is set.
202 */
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800203 if (boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
Len Brown520daf72009-05-14 17:27:38 -0400204 return;
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800205
Andi Kleenddb25f92008-01-30 13:32:41 +0100206 /*FALL THROUGH*/
Andi Kleenddb25f92008-01-30 13:32:41 +0100207 default:
Len Brown520daf72009-05-14 17:27:38 -0400208 /* TSC could halt in idle, so notify users */
209 if (state > ACPI_STATE_C1)
210 mark_tsc_unstable("TSC halts in idle");
Andi Kleenddb25f92008-01-30 13:32:41 +0100211 }
212}
Len Brown520daf72009-05-14 17:27:38 -0400213#else
214static void tsc_check_state(int state) { return; }
Andi Kleenddb25f92008-01-30 13:32:41 +0100215#endif
216
Len Brown4be44fc2005-08-05 00:44:28 -0400217static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (!pr->pblk)
Patrick Mocheld550d982006-06-27 00:41:40 -0400221 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /* if info is obtained from pblk/fadt, type equals state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
225 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
226
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400227#ifndef CONFIG_HOTPLUG_CPU
228 /*
229 * Check for P_LVL2_UP flag before entering C2 and above on
Len Brown4f86d3a2007-10-03 18:58:00 -0400230 * an SMP system.
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400231 */
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300232 if ((num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300233 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400234 return -ENODEV;
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400235#endif
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* determine C2 and C3 address from pblk */
238 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
239 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
240
241 /* determine latencies from FADT */
Bob Mooreba494be2012-07-12 09:40:10 +0800242 pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.c2_latency;
243 pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.c3_latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Len Brown5d76b6f2010-01-19 22:41:14 -0500245 /*
246 * FADT specified C2 latency must be less than or equal to
247 * 100 microseconds.
248 */
Bob Mooreba494be2012-07-12 09:40:10 +0800249 if (acpi_gbl_FADT.c2_latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
Len Brown5d76b6f2010-01-19 22:41:14 -0500250 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreba494be2012-07-12 09:40:10 +0800251 "C2 latency too large [%d]\n", acpi_gbl_FADT.c2_latency));
Len Brown5d76b6f2010-01-19 22:41:14 -0500252 /* invalidate C2 */
253 pr->power.states[ACPI_STATE_C2].address = 0;
254 }
255
Len Browna6d72c12010-01-19 23:10:04 -0500256 /*
257 * FADT supplied C3 latency must be less than or equal to
258 * 1000 microseconds.
259 */
Bob Mooreba494be2012-07-12 09:40:10 +0800260 if (acpi_gbl_FADT.c3_latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
Len Browna6d72c12010-01-19 23:10:04 -0500261 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreba494be2012-07-12 09:40:10 +0800262 "C3 latency too large [%d]\n", acpi_gbl_FADT.c3_latency));
Len Browna6d72c12010-01-19 23:10:04 -0500263 /* invalidate C3 */
264 pr->power.states[ACPI_STATE_C3].address = 0;
265 }
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
268 "lvl2[0x%08x] lvl3[0x%08x]\n",
269 pr->power.states[ACPI_STATE_C2].address,
270 pr->power.states[ACPI_STATE_C3].address));
271
Yazen Ghannam34a62cd2019-02-18 01:33:49 +0000272 snprintf(pr->power.states[ACPI_STATE_C2].desc,
273 ACPI_CX_DESC_LEN, "ACPI P_LVL2 IOPORT 0x%x",
274 pr->power.states[ACPI_STATE_C2].address);
275 snprintf(pr->power.states[ACPI_STATE_C3].desc,
276 ACPI_CX_DESC_LEN, "ACPI P_LVL3 IOPORT 0x%x",
277 pr->power.states[ACPI_STATE_C3].address);
278
Patrick Mocheld550d982006-06-27 00:41:40 -0400279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700282static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500283{
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700284 if (!pr->power.states[ACPI_STATE_C1].valid) {
285 /* set the first C-State to C1 */
286 /* all processors need to support C1 */
287 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
288 pr->power.states[ACPI_STATE_C1].valid = 1;
Venkatesh Pallipadi0fda6b42008-04-09 21:31:46 -0400289 pr->power.states[ACPI_STATE_C1].entry_method = ACPI_CSTATE_HALT;
Yazen Ghannam248e8842018-01-29 14:22:49 -0600290
291 snprintf(pr->power.states[ACPI_STATE_C1].desc,
292 ACPI_CX_DESC_LEN, "ACPI HLT");
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700293 }
294 /* the C0 state only exists as a filler in our array */
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500295 pr->power.states[ACPI_STATE_C0].valid = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400296 return 0;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500297}
298
Len Brown4be44fc2005-08-05 00:44:28 -0400299static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Sudeep Holla6fd80502014-11-25 14:48:50 +0000301 acpi_status status;
Lin Ming439913f2010-01-28 10:53:19 +0800302 u64 count;
Janosch Machowinskicf824782005-08-20 08:02:00 -0400303 int current_count;
Sudeep Holla6fd80502014-11-25 14:48:50 +0000304 int i, ret = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400305 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
306 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (nocst)
Patrick Mocheld550d982006-06-27 00:41:40 -0400309 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700311 current_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
314 if (ACPI_FAILURE(status)) {
315 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400316 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200319 cst = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* There must be at least 2 elements */
322 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Sudeep Hollab6ec26f2015-12-02 14:10:44 +0000323 pr_err("not enough elements in _CST\n");
Sudeep Holla6fd80502014-11-25 14:48:50 +0000324 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 goto end;
326 }
327
328 count = cst->package.elements[0].integer.value;
329
330 /* Validate number of power states. */
331 if (count < 1 || count != cst->package.count - 1) {
Sudeep Hollab6ec26f2015-12-02 14:10:44 +0000332 pr_err("count given by _CST is not valid\n");
Sudeep Holla6fd80502014-11-25 14:48:50 +0000333 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 goto end;
335 }
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* Tell driver that at least _CST is supported. */
338 pr->flags.has_cst = 1;
339
340 for (i = 1; i <= count; i++) {
341 union acpi_object *element;
342 union acpi_object *obj;
343 struct acpi_power_register *reg;
344 struct acpi_processor_cx cx;
345
346 memset(&cx, 0, sizeof(cx));
347
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200348 element = &(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (element->type != ACPI_TYPE_PACKAGE)
350 continue;
351
352 if (element->package.count != 4)
353 continue;
354
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200355 obj = &(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (obj->type != ACPI_TYPE_BUFFER)
358 continue;
359
Len Brown4be44fc2005-08-05 00:44:28 -0400360 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400363 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 continue;
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /* There should be an easy way to extract an integer... */
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200367 obj = &(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (obj->type != ACPI_TYPE_INTEGER)
369 continue;
370
371 cx.type = obj->integer.value;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700372 /*
373 * Some buggy BIOSes won't list C1 in _CST -
374 * Let acpi_processor_get_power_info_default() handle them later
375 */
376 if (i == 1 && cx.type != ACPI_STATE_C1)
377 current_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700379 cx.address = reg->address;
380 cx.index = current_count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800382 cx.entry_method = ACPI_CSTATE_SYSTEMIO;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700383 if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
384 if (acpi_processor_ffh_cstate_probe
385 (pr->id, &cx, reg) == 0) {
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800386 cx.entry_method = ACPI_CSTATE_FFH;
387 } else if (cx.type == ACPI_STATE_C1) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700388 /*
389 * C1 is a special case where FIXED_HARDWARE
390 * can be handled in non-MWAIT way as well.
391 * In that case, save this _CST entry info.
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700392 * Otherwise, ignore this info and continue.
393 */
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800394 cx.entry_method = ACPI_CSTATE_HALT;
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800395 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT");
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800396 } else {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700397 continue;
398 }
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800399 if (cx.type == ACPI_STATE_C1 &&
Thomas Renningerd1896042010-11-03 17:06:14 +0100400 (boot_option_idle_override == IDLE_NOMWAIT)) {
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800401 /*
402 * In most cases the C1 space_id obtained from
403 * _CST object is FIXED_HARDWARE access mode.
404 * But when the option of idle=halt is added,
405 * the entry_method type should be changed from
406 * CSTATE_FFH to CSTATE_HALT.
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800407 * When the option of idle=nomwait is added,
408 * the C1 entry_method type should be
409 * CSTATE_HALT.
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800410 */
411 cx.entry_method = ACPI_CSTATE_HALT;
412 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT");
413 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800414 } else {
415 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI IOPORT 0x%x",
416 cx.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Venkatesh Pallipadi0fda6b42008-04-09 21:31:46 -0400419 if (cx.type == ACPI_STATE_C1) {
420 cx.valid = 1;
421 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800422
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200423 obj = &(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (obj->type != ACPI_TYPE_INTEGER)
425 continue;
426
427 cx.latency = obj->integer.value;
428
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200429 obj = &(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (obj->type != ACPI_TYPE_INTEGER)
431 continue;
432
Janosch Machowinskicf824782005-08-20 08:02:00 -0400433 current_count++;
434 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
435
436 /*
437 * We support total ACPI_PROCESSOR_MAX_POWER - 1
438 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
439 */
440 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
Sudeep Hollab6ec26f2015-12-02 14:10:44 +0000441 pr_warn("Limiting number of power states to max (%d)\n",
442 ACPI_PROCESSOR_MAX_POWER);
443 pr_warn("Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
Janosch Machowinskicf824782005-08-20 08:02:00 -0400444 break;
445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447
Len Brown4be44fc2005-08-05 00:44:28 -0400448 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
Janosch Machowinskicf824782005-08-20 08:02:00 -0400449 current_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* Validate number of power states discovered */
Janosch Machowinskicf824782005-08-20 08:02:00 -0400452 if (current_count < 2)
Sudeep Holla6fd80502014-11-25 14:48:50 +0000453 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Len Brown4be44fc2005-08-05 00:44:28 -0400455 end:
Len Brown02438d82006-06-30 03:19:10 -0400456 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Sudeep Holla6fd80502014-11-25 14:48:50 +0000458 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Len Brown4be44fc2005-08-05 00:44:28 -0400461static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
462 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700464 static int bm_check_flag = -1;
465 static int bm_control_flag = -1;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -0400469 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
473 * DMA transfers are used by any ISA device to avoid livelock.
474 * Note that we could disable Type-F DMA (as recommended by
475 * the erratum), but this is known to disrupt certain ISA
476 * devices thus we take the conservative approach.
477 */
478 else if (errata.piix4.fdma) {
479 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400480 "C3 not supported on PIIX4 with Type-F DMA\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400481 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400484 /* All the logic here assumes flags.bm_check is same across all CPUs */
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700485 if (bm_check_flag == -1) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400486 /* Determine whether bm_check is needed based on CPU */
487 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
488 bm_check_flag = pr->flags.bm_check;
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700489 bm_control_flag = pr->flags.bm_control;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400490 } else {
491 pr->flags.bm_check = bm_check_flag;
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700492 pr->flags.bm_control = bm_control_flag;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400493 }
494
495 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400496 if (!pr->flags.bm_control) {
Venki Pallipadied3110e2007-07-31 12:04:31 -0700497 if (pr->flags.has_cst != 1) {
498 /* bus mastering control is necessary */
499 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
500 "C3 support requires BM control\n"));
501 return;
502 } else {
503 /* Here we enter C3 without bus mastering */
504 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
505 "C3 support without BM control\n"));
506 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400507 }
508 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400509 /*
510 * WBINVD should be set in fadt, for C3 state to be
511 * supported on when bm_check is not required.
512 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300513 if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400514 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400515 "Cache invalidation should work properly"
516 " for C3 to be enabled on SMP systems\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400517 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400518 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400519 }
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /*
522 * Otherwise we've met all of our C3 requirements.
523 * Normalize the C3 latency to expidite policy. Enable
524 * checking of bus mastering status (bm_check) so we can
525 * use this in our C3 policy
526 */
527 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400528
Len Brown31878dd2009-01-28 18:28:09 -0500529 /*
530 * On older chipsets, BM_RLD needs to be set
531 * in order for Bus Master activity to wake the
532 * system from C3. Newer chipsets handle DMA
533 * during C3 automatically and BM_RLD is a NOP.
534 * In either case, the proper way to
535 * handle BM_RLD is to set it and leave it set.
536 */
Bob Moore50ffba12009-02-23 15:02:07 +0800537 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Patrick Mocheld550d982006-06-27 00:41:40 -0400539 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542static int acpi_processor_power_verify(struct acpi_processor *pr)
543{
544 unsigned int i;
545 unsigned int working = 0;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100546
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800547 pr->power.timer_broadcast_on_state = INT_MAX;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100548
Len Browna0bf2842009-05-15 01:29:31 -0400549 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct acpi_processor_cx *cx = &pr->power.states[i];
551
552 switch (cx->type) {
553 case ACPI_STATE_C1:
554 cx->valid = 1;
555 break;
556
557 case ACPI_STATE_C2:
Len Brownd22edd22010-01-19 23:29:09 -0500558 if (!cx->address)
559 break;
Al Stonecad15252013-12-04 12:59:11 -0700560 cx->valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 break;
562
563 case ACPI_STATE_C3:
564 acpi_processor_power_verify_c3(pr, cx);
565 break;
566 }
Len Brown7e275cc2009-05-15 02:08:44 -0400567 if (!cx->valid)
568 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Len Brown7e275cc2009-05-15 02:08:44 -0400570 lapic_timer_check_state(i, pr, cx);
571 tsc_check_state(cx->type);
572 working++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900575 lapic_timer_propagate_broadcast(pr);
Andi Kleenbd663342006-03-25 16:31:07 +0100576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return (working);
578}
579
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100580static int acpi_processor_get_cstate_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 unsigned int i;
583 int result;
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 /* NOTE: the idle thread may not be running while calling
587 * this function */
588
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700589 /* Zero initialize all the C-states info. */
590 memset(pr->power.states, 0, sizeof(pr->power.states));
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400593 if (result == -ENODEV)
Darrick J. Wongc5a114f2006-10-19 23:28:28 -0700594 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400595
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700596 if (result)
597 return result;
598
599 acpi_processor_get_power_info_default(pr);
600
Janosch Machowinskicf824782005-08-20 08:02:00 -0400601 pr->power.count = acpi_processor_power_verify(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /*
604 * if one state of type C2 or C3 is available, mark this
605 * CPU as being "idle manageable"
606 */
607 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500608 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800610 if (pr->power.states[i].type >= ACPI_STATE_C2)
611 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614
Patrick Mocheld550d982006-06-27 00:41:40 -0400615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Len Brown4f86d3a2007-10-03 18:58:00 -0400618/**
619 * acpi_idle_bm_check - checks if bus master activity was detected
620 */
621static int acpi_idle_bm_check(void)
622{
623 u32 bm_status = 0;
624
Len Brownd3e7e992010-07-22 17:23:10 -0400625 if (bm_check_disable)
626 return 0;
627
Bob Moore50ffba12009-02-23 15:02:07 +0800628 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
Len Brown4f86d3a2007-10-03 18:58:00 -0400629 if (bm_status)
Bob Moore50ffba12009-02-23 15:02:07 +0800630 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400631 /*
632 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
633 * the true state of bus mastering activity; forcing us to
634 * manually check the BMIDEA bit of each IDE channel.
635 */
636 else if (errata.piix4.bmisx) {
637 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
638 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
639 bm_status = 1;
640 }
641 return bm_status;
642}
643
644/**
Rafael J. Wysockib00783f2015-02-02 23:55:08 +0100645 * acpi_idle_do_entry - enter idle state using the appropriate method
Len Brown4f86d3a2007-10-03 18:58:00 -0400646 * @cx: cstate data
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800647 *
648 * Caller disables interrupt before call and enables interrupt after return.
Len Brown4f86d3a2007-10-03 18:58:00 -0400649 */
Chris Metcalf6727ad92016-10-07 17:02:55 -0700650static void __cpuidle acpi_idle_do_entry(struct acpi_processor_cx *cx)
Len Brown4f86d3a2007-10-03 18:58:00 -0400651{
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800652 if (cx->entry_method == ACPI_CSTATE_FFH) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400653 /* Call into architectural FFH based C-state */
654 acpi_processor_ffh_cstate_enter(cx);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800655 } else if (cx->entry_method == ACPI_CSTATE_HALT) {
656 acpi_safe_halt();
Len Brown4f86d3a2007-10-03 18:58:00 -0400657 } else {
Len Brown4f86d3a2007-10-03 18:58:00 -0400658 /* IO port based C-state */
659 inb(cx->address);
660 /* Dummy wait op - must do something useless after P_LVL2 read
661 because chipsets cannot guarantee that STPCLK# signal
662 gets asserted in time to freeze execution properly. */
Andi Kleencfa806f2010-07-20 15:18:36 -0700663 inl(acpi_gbl_FADT.xpm_timer_block.address);
Len Brown4f86d3a2007-10-03 18:58:00 -0400664 }
665}
666
667/**
Boris Ostrovsky1a022e32012-03-13 19:55:09 +0100668 * acpi_idle_play_dead - enters an ACPI state for long-term idle (i.e. off-lining)
669 * @dev: the target CPU
670 * @index: the index of suggested state
671 */
672static int acpi_idle_play_dead(struct cpuidle_device *dev, int index)
673{
Alex Shi6240a102013-04-02 01:56:54 +0200674 struct acpi_processor_cx *cx = per_cpu(acpi_cstate[index], dev->cpu);
Boris Ostrovsky1a022e32012-03-13 19:55:09 +0100675
676 ACPI_FLUSH_CPU_CACHE();
677
678 while (1) {
679
680 if (cx->entry_method == ACPI_CSTATE_HALT)
Luck, Tony54f70072012-04-03 09:37:28 -0700681 safe_halt();
Boris Ostrovsky1a022e32012-03-13 19:55:09 +0100682 else if (cx->entry_method == ACPI_CSTATE_SYSTEMIO) {
683 inb(cx->address);
684 /* See comment in acpi_idle_do_entry() */
685 inl(acpi_gbl_FADT.xpm_timer_block.address);
686 } else
687 return -ENODEV;
688 }
689
690 /* Never reached */
691 return 0;
692}
693
Rafael J. Wysockiadcb2622015-02-02 23:55:42 +0100694static bool acpi_idle_fallback_to_c1(struct acpi_processor *pr)
695{
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100696 return IS_ENABLED(CONFIG_HOTPLUG_CPU) && !pr->flags.has_cst &&
697 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED);
Rafael J. Wysockiadcb2622015-02-02 23:55:42 +0100698}
699
Len Brown4f86d3a2007-10-03 18:58:00 -0400700static int c3_cpu_count;
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200701static DEFINE_RAW_SPINLOCK(c3_lock);
Len Brown4f86d3a2007-10-03 18:58:00 -0400702
703/**
704 * acpi_idle_enter_bm - enters C3 with proper BM handling
Rafael J. Wysocki6491bc02015-02-03 21:55:11 +0100705 * @pr: Target processor
706 * @cx: Target state context
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100707 * @timer_bc: Whether or not to change timer mode to broadcast
Len Brown4f86d3a2007-10-03 18:58:00 -0400708 */
Rafael J. Wysocki6491bc02015-02-03 21:55:11 +0100709static void acpi_idle_enter_bm(struct acpi_processor *pr,
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100710 struct acpi_processor_cx *cx, bool timer_bc)
Len Brown4f86d3a2007-10-03 18:58:00 -0400711{
Andy Lutomirski67535732017-11-04 04:16:12 -0700712 acpi_unlazy_tlb(smp_processor_id());
713
Len Brown4f86d3a2007-10-03 18:58:00 -0400714 /*
715 * Must be done before busmaster disable as we might need to
716 * access HPET !
717 */
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100718 if (timer_bc)
719 lapic_timer_state_broadcast(pr, cx, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400720
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500721 /*
722 * disable bus master
723 * bm_check implies we need ARB_DIS
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500724 * bm_control implies whether we can do ARB_DIS
725 *
726 * That leaves a case where bm_check is set and bm_control is
727 * not set. In that case we cannot do much, we enter C3
728 * without doing anything.
729 */
Rafael J. Wysocki2a738352015-02-02 23:56:03 +0100730 if (pr->flags.bm_control) {
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200731 raw_spin_lock(&c3_lock);
Len Brown4f86d3a2007-10-03 18:58:00 -0400732 c3_cpu_count++;
733 /* Disable bus master arbitration when all CPUs are in C3 */
734 if (c3_cpu_count == num_online_cpus())
Bob Moore50ffba12009-02-23 15:02:07 +0800735 acpi_write_bit_register(ACPI_BITREG_ARB_DISABLE, 1);
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200736 raw_spin_unlock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500737 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400738
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500739 acpi_idle_do_entry(cx);
Len Brown4f86d3a2007-10-03 18:58:00 -0400740
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500741 /* Re-enable bus master arbitration */
Rafael J. Wysocki2a738352015-02-02 23:56:03 +0100742 if (pr->flags.bm_control) {
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200743 raw_spin_lock(&c3_lock);
Bob Moore50ffba12009-02-23 15:02:07 +0800744 acpi_write_bit_register(ACPI_BITREG_ARB_DISABLE, 0);
Len Brown4f86d3a2007-10-03 18:58:00 -0400745 c3_cpu_count--;
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200746 raw_spin_unlock(&c3_lock);
Len Brown4f86d3a2007-10-03 18:58:00 -0400747 }
748
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100749 if (timer_bc)
750 lapic_timer_state_broadcast(pr, cx, 0);
Rafael J. Wysocki6491bc02015-02-03 21:55:11 +0100751}
752
753static int acpi_idle_enter(struct cpuidle_device *dev,
754 struct cpuidle_driver *drv, int index)
755{
756 struct acpi_processor_cx *cx = per_cpu(acpi_cstate[index], dev->cpu);
757 struct acpi_processor *pr;
758
759 pr = __this_cpu_read(processors);
760 if (unlikely(!pr))
761 return -EINVAL;
762
763 if (cx->type != ACPI_STATE_C1) {
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100764 if (acpi_idle_fallback_to_c1(pr) && num_online_cpus() > 1) {
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200765 index = ACPI_IDLE_STATE_START;
Rafael J. Wysocki6491bc02015-02-03 21:55:11 +0100766 cx = per_cpu(acpi_cstate[index], dev->cpu);
767 } else if (cx->type == ACPI_STATE_C3 && pr->flags.bm_check) {
768 if (cx->bm_sts_skip || !acpi_idle_bm_check()) {
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100769 acpi_idle_enter_bm(pr, cx, true);
Rafael J. Wysocki6491bc02015-02-03 21:55:11 +0100770 return index;
771 } else if (drv->safe_state_index >= 0) {
772 index = drv->safe_state_index;
773 cx = per_cpu(acpi_cstate[index], dev->cpu);
774 } else {
775 acpi_safe_halt();
776 return -EBUSY;
777 }
778 }
779 }
780
781 lapic_timer_state_broadcast(pr, cx, 1);
782
783 if (cx->type == ACPI_STATE_C3)
784 ACPI_FLUSH_CPU_CACHE();
785
786 acpi_idle_do_entry(cx);
787
788 lapic_timer_state_broadcast(pr, cx, 0);
789
Deepthi Dharware978aa72011-10-28 16:20:09 +0530790 return index;
Len Brown4f86d3a2007-10-03 18:58:00 -0400791}
792
Rafael J. Wysocki28ba0862017-08-10 00:14:45 +0200793static void acpi_idle_enter_s2idle(struct cpuidle_device *dev,
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100794 struct cpuidle_driver *drv, int index)
795{
796 struct acpi_processor_cx *cx = per_cpu(acpi_cstate[index], dev->cpu);
797
798 if (cx->type == ACPI_STATE_C3) {
799 struct acpi_processor *pr = __this_cpu_read(processors);
800
801 if (unlikely(!pr))
802 return;
803
804 if (pr->flags.bm_check) {
805 acpi_idle_enter_bm(pr, cx, false);
806 return;
807 } else {
808 ACPI_FLUSH_CPU_CACHE();
809 }
810 }
811 acpi_idle_do_entry(cx);
812}
813
Daniel Lezcano6ef0f082013-02-04 22:44:42 +0000814static int acpi_processor_setup_cpuidle_cx(struct acpi_processor *pr,
815 struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400816{
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200817 int i, count = ACPI_IDLE_STATE_START;
Len Brown4f86d3a2007-10-03 18:58:00 -0400818 struct acpi_processor_cx *cx;
Len Brown4f86d3a2007-10-03 18:58:00 -0400819
Len Brown615dfd92009-04-23 23:21:29 -0400820 if (max_cstate == 0)
821 max_cstate = 1;
822
Len Brown4f86d3a2007-10-03 18:58:00 -0400823 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
824 cx = &pr->power.states[i];
Len Brown4f86d3a2007-10-03 18:58:00 -0400825
826 if (!cx->valid)
827 continue;
828
Alex Shi6240a102013-04-02 01:56:54 +0200829 per_cpu(acpi_cstate[count], dev->cpu) = cx;
Len Brown4f86d3a2007-10-03 18:58:00 -0400830
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530831 count++;
832 if (count == CPUIDLE_STATE_MAX)
833 break;
834 }
835
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530836 if (!count)
837 return -EINVAL;
838
839 return 0;
840}
841
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100842static int acpi_processor_setup_cstates(struct acpi_processor *pr)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530843{
Rafael J. Wysocki1b39e3f2017-08-29 03:14:37 +0200844 int i, count;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530845 struct acpi_processor_cx *cx;
846 struct cpuidle_state *state;
847 struct cpuidle_driver *drv = &acpi_idle_driver;
848
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530849 if (max_cstate == 0)
850 max_cstate = 1;
851
Rafael J. Wysocki1b39e3f2017-08-29 03:14:37 +0200852 if (IS_ENABLED(CONFIG_ARCH_HAS_CPU_RELAX)) {
853 cpuidle_poll_state_init(drv);
854 count = 1;
855 } else {
856 count = 0;
857 }
858
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530859 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
860 cx = &pr->power.states[i];
861
862 if (!cx->valid)
863 continue;
864
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530865 state = &drv->states[count];
Len Brown4f86d3a2007-10-03 18:58:00 -0400866 snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100867 strlcpy(state->desc, cx->desc, CPUIDLE_DESC_LEN);
Len Brown4f86d3a2007-10-03 18:58:00 -0400868 state->exit_latency = cx->latency;
Len Brown4963f622007-12-13 23:50:45 -0500869 state->target_residency = cx->latency * latency_factor;
Rafael J. Wysocki6491bc02015-02-03 21:55:11 +0100870 state->enter = acpi_idle_enter;
Len Brown4f86d3a2007-10-03 18:58:00 -0400871
872 state->flags = 0;
Rafael J. Wysocki6491bc02015-02-03 21:55:11 +0100873 if (cx->type == ACPI_STATE_C1 || cx->type == ACPI_STATE_C2) {
Boris Ostrovsky1a022e32012-03-13 19:55:09 +0100874 state->enter_dead = acpi_idle_play_dead;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530875 drv->safe_state_index = count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400876 }
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100877 /*
Rafael J. Wysocki28ba0862017-08-10 00:14:45 +0200878 * Halt-induced C1 is not good for ->enter_s2idle, because it
Rafael J. Wysocki5f508182015-02-11 05:04:57 +0100879 * re-enables interrupts on exit. Moreover, C1 is generally not
880 * particularly interesting from the suspend-to-idle angle, so
881 * avoid C1 and the situations in which we may need to fall back
882 * to it altogether.
883 */
884 if (cx->type != ACPI_STATE_C1 && !acpi_idle_fallback_to_c1(pr))
Rafael J. Wysocki28ba0862017-08-10 00:14:45 +0200885 state->enter_s2idle = acpi_idle_enter_s2idle;
Len Brown4f86d3a2007-10-03 18:58:00 -0400886
887 count++;
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -0800888 if (count == CPUIDLE_STATE_MAX)
889 break;
Len Brown4f86d3a2007-10-03 18:58:00 -0400890 }
891
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530892 drv->state_count = count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400893
894 if (!count)
895 return -EINVAL;
896
Len Brown4f86d3a2007-10-03 18:58:00 -0400897 return 0;
898}
899
Sudeep Holla35ae7132016-07-19 18:52:53 +0100900static inline void acpi_processor_cstate_first_run_checks(void)
901{
902 acpi_status status;
903 static int first_run;
904
905 if (first_run)
906 return;
907 dmi_check_system(processor_power_dmi_table);
908 max_cstate = acpi_processor_cstate_check(max_cstate);
909 if (max_cstate < ACPI_C_STATES_MAX)
910 pr_notice("ACPI: processor limited to max C-state %d\n",
911 max_cstate);
912 first_run++;
913
914 if (acpi_gbl_FADT.cst_control && !nocst) {
915 status = acpi_os_write_port(acpi_gbl_FADT.smi_command,
916 acpi_gbl_FADT.cst_control, 8);
917 if (ACPI_FAILURE(status))
918 ACPI_EXCEPTION((AE_INFO, status,
919 "Notifying BIOS of _CST ability failed"));
920 }
921}
922#else
923
924static inline int disabled_by_idle_boot_param(void) { return 0; }
925static inline void acpi_processor_cstate_first_run_checks(void) { }
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100926static int acpi_processor_get_cstate_info(struct acpi_processor *pr)
Sudeep Holla35ae7132016-07-19 18:52:53 +0100927{
928 return -ENODEV;
929}
930
931static int acpi_processor_setup_cpuidle_cx(struct acpi_processor *pr,
932 struct cpuidle_device *dev)
933{
934 return -EINVAL;
935}
936
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100937static int acpi_processor_setup_cstates(struct acpi_processor *pr)
Sudeep Holla35ae7132016-07-19 18:52:53 +0100938{
939 return -EINVAL;
940}
941
942#endif /* CONFIG_ACPI_PROCESSOR_CSTATE */
943
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100944struct acpi_lpi_states_array {
945 unsigned int size;
946 unsigned int composite_states_size;
947 struct acpi_lpi_state *entries;
948 struct acpi_lpi_state *composite_states[ACPI_PROCESSOR_MAX_POWER];
949};
950
951static int obj_get_integer(union acpi_object *obj, u32 *value)
952{
953 if (obj->type != ACPI_TYPE_INTEGER)
954 return -EINVAL;
955
956 *value = obj->integer.value;
957 return 0;
958}
959
960static int acpi_processor_evaluate_lpi(acpi_handle handle,
961 struct acpi_lpi_states_array *info)
962{
963 acpi_status status;
964 int ret = 0;
965 int pkg_count, state_idx = 1, loop;
966 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
967 union acpi_object *lpi_data;
968 struct acpi_lpi_state *lpi_state;
969
970 status = acpi_evaluate_object(handle, "_LPI", NULL, &buffer);
971 if (ACPI_FAILURE(status)) {
972 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _LPI, giving up\n"));
973 return -ENODEV;
974 }
975
976 lpi_data = buffer.pointer;
977
978 /* There must be at least 4 elements = 3 elements + 1 package */
979 if (!lpi_data || lpi_data->type != ACPI_TYPE_PACKAGE ||
980 lpi_data->package.count < 4) {
981 pr_debug("not enough elements in _LPI\n");
982 ret = -ENODATA;
983 goto end;
984 }
985
986 pkg_count = lpi_data->package.elements[2].integer.value;
987
988 /* Validate number of power states. */
989 if (pkg_count < 1 || pkg_count != lpi_data->package.count - 3) {
990 pr_debug("count given by _LPI is not valid\n");
991 ret = -ENODATA;
992 goto end;
993 }
994
995 lpi_state = kcalloc(pkg_count, sizeof(*lpi_state), GFP_KERNEL);
996 if (!lpi_state) {
997 ret = -ENOMEM;
998 goto end;
999 }
1000
1001 info->size = pkg_count;
1002 info->entries = lpi_state;
1003
1004 /* LPI States start at index 3 */
1005 for (loop = 3; state_idx <= pkg_count; loop++, state_idx++, lpi_state++) {
1006 union acpi_object *element, *pkg_elem, *obj;
1007
1008 element = &lpi_data->package.elements[loop];
1009 if (element->type != ACPI_TYPE_PACKAGE || element->package.count < 7)
1010 continue;
1011
1012 pkg_elem = element->package.elements;
1013
1014 obj = pkg_elem + 6;
1015 if (obj->type == ACPI_TYPE_BUFFER) {
1016 struct acpi_power_register *reg;
1017
1018 reg = (struct acpi_power_register *)obj->buffer.pointer;
1019 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
1020 reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)
1021 continue;
1022
1023 lpi_state->address = reg->address;
1024 lpi_state->entry_method =
1025 reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE ?
1026 ACPI_CSTATE_FFH : ACPI_CSTATE_SYSTEMIO;
1027 } else if (obj->type == ACPI_TYPE_INTEGER) {
1028 lpi_state->entry_method = ACPI_CSTATE_INTEGER;
1029 lpi_state->address = obj->integer.value;
1030 } else {
1031 continue;
1032 }
1033
1034 /* elements[7,8] skipped for now i.e. Residency/Usage counter*/
1035
1036 obj = pkg_elem + 9;
1037 if (obj->type == ACPI_TYPE_STRING)
1038 strlcpy(lpi_state->desc, obj->string.pointer,
1039 ACPI_CX_DESC_LEN);
1040
1041 lpi_state->index = state_idx;
1042 if (obj_get_integer(pkg_elem + 0, &lpi_state->min_residency)) {
1043 pr_debug("No min. residency found, assuming 10 us\n");
1044 lpi_state->min_residency = 10;
1045 }
1046
1047 if (obj_get_integer(pkg_elem + 1, &lpi_state->wake_latency)) {
1048 pr_debug("No wakeup residency found, assuming 10 us\n");
1049 lpi_state->wake_latency = 10;
1050 }
1051
1052 if (obj_get_integer(pkg_elem + 2, &lpi_state->flags))
1053 lpi_state->flags = 0;
1054
1055 if (obj_get_integer(pkg_elem + 3, &lpi_state->arch_flags))
1056 lpi_state->arch_flags = 0;
1057
1058 if (obj_get_integer(pkg_elem + 4, &lpi_state->res_cnt_freq))
1059 lpi_state->res_cnt_freq = 1;
1060
1061 if (obj_get_integer(pkg_elem + 5, &lpi_state->enable_parent_state))
1062 lpi_state->enable_parent_state = 0;
1063 }
1064
1065 acpi_handle_debug(handle, "Found %d power states\n", state_idx);
1066end:
1067 kfree(buffer.pointer);
1068 return ret;
1069}
1070
1071/*
1072 * flat_state_cnt - the number of composite LPI states after the process of flattening
1073 */
1074static int flat_state_cnt;
1075
1076/**
1077 * combine_lpi_states - combine local and parent LPI states to form a composite LPI state
1078 *
1079 * @local: local LPI state
1080 * @parent: parent LPI state
1081 * @result: composite LPI state
1082 */
1083static bool combine_lpi_states(struct acpi_lpi_state *local,
1084 struct acpi_lpi_state *parent,
1085 struct acpi_lpi_state *result)
1086{
1087 if (parent->entry_method == ACPI_CSTATE_INTEGER) {
1088 if (!parent->address) /* 0 means autopromotable */
1089 return false;
1090 result->address = local->address + parent->address;
1091 } else {
1092 result->address = parent->address;
1093 }
1094
1095 result->min_residency = max(local->min_residency, parent->min_residency);
1096 result->wake_latency = local->wake_latency + parent->wake_latency;
1097 result->enable_parent_state = parent->enable_parent_state;
1098 result->entry_method = local->entry_method;
1099
1100 result->flags = parent->flags;
1101 result->arch_flags = parent->arch_flags;
1102 result->index = parent->index;
1103
1104 strlcpy(result->desc, local->desc, ACPI_CX_DESC_LEN);
1105 strlcat(result->desc, "+", ACPI_CX_DESC_LEN);
1106 strlcat(result->desc, parent->desc, ACPI_CX_DESC_LEN);
1107 return true;
1108}
1109
1110#define ACPI_LPI_STATE_FLAGS_ENABLED BIT(0)
1111
1112static void stash_composite_state(struct acpi_lpi_states_array *curr_level,
1113 struct acpi_lpi_state *t)
1114{
1115 curr_level->composite_states[curr_level->composite_states_size++] = t;
1116}
1117
1118static int flatten_lpi_states(struct acpi_processor *pr,
1119 struct acpi_lpi_states_array *curr_level,
1120 struct acpi_lpi_states_array *prev_level)
1121{
1122 int i, j, state_count = curr_level->size;
1123 struct acpi_lpi_state *p, *t = curr_level->entries;
1124
1125 curr_level->composite_states_size = 0;
1126 for (j = 0; j < state_count; j++, t++) {
1127 struct acpi_lpi_state *flpi;
1128
1129 if (!(t->flags & ACPI_LPI_STATE_FLAGS_ENABLED))
1130 continue;
1131
1132 if (flat_state_cnt >= ACPI_PROCESSOR_MAX_POWER) {
1133 pr_warn("Limiting number of LPI states to max (%d)\n",
1134 ACPI_PROCESSOR_MAX_POWER);
1135 pr_warn("Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
1136 break;
1137 }
1138
1139 flpi = &pr->power.lpi_states[flat_state_cnt];
1140
1141 if (!prev_level) { /* leaf/processor node */
1142 memcpy(flpi, t, sizeof(*t));
1143 stash_composite_state(curr_level, flpi);
1144 flat_state_cnt++;
1145 continue;
1146 }
1147
1148 for (i = 0; i < prev_level->composite_states_size; i++) {
1149 p = prev_level->composite_states[i];
1150 if (t->index <= p->enable_parent_state &&
1151 combine_lpi_states(p, t, flpi)) {
1152 stash_composite_state(curr_level, flpi);
1153 flat_state_cnt++;
1154 flpi++;
1155 }
1156 }
1157 }
1158
1159 kfree(curr_level->entries);
1160 return 0;
1161}
1162
1163static int acpi_processor_get_lpi_info(struct acpi_processor *pr)
1164{
1165 int ret, i;
1166 acpi_status status;
1167 acpi_handle handle = pr->handle, pr_ahandle;
1168 struct acpi_device *d = NULL;
1169 struct acpi_lpi_states_array info[2], *tmp, *prev, *curr;
1170
1171 if (!osc_pc_lpi_support_confirmed)
1172 return -EOPNOTSUPP;
1173
1174 if (!acpi_has_method(handle, "_LPI"))
1175 return -EINVAL;
1176
1177 flat_state_cnt = 0;
1178 prev = &info[0];
1179 curr = &info[1];
1180 handle = pr->handle;
1181 ret = acpi_processor_evaluate_lpi(handle, prev);
1182 if (ret)
1183 return ret;
1184 flatten_lpi_states(pr, prev, NULL);
1185
1186 status = acpi_get_parent(handle, &pr_ahandle);
1187 while (ACPI_SUCCESS(status)) {
1188 acpi_bus_get_device(pr_ahandle, &d);
1189 handle = pr_ahandle;
1190
1191 if (strcmp(acpi_device_hid(d), ACPI_PROCESSOR_CONTAINER_HID))
1192 break;
1193
1194 /* can be optional ? */
1195 if (!acpi_has_method(handle, "_LPI"))
1196 break;
1197
1198 ret = acpi_processor_evaluate_lpi(handle, curr);
1199 if (ret)
1200 break;
1201
1202 /* flatten all the LPI states in this level of hierarchy */
1203 flatten_lpi_states(pr, curr, prev);
1204
1205 tmp = prev, prev = curr, curr = tmp;
1206
1207 status = acpi_get_parent(handle, &pr_ahandle);
1208 }
1209
1210 pr->power.count = flat_state_cnt;
1211 /* reset the index after flattening */
1212 for (i = 0; i < pr->power.count; i++)
1213 pr->power.lpi_states[i].index = i;
1214
1215 /* Tell driver that _LPI is supported. */
1216 pr->flags.has_lpi = 1;
1217 pr->flags.power = 1;
1218
1219 return 0;
1220}
1221
1222int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu)
1223{
1224 return -ENODEV;
1225}
1226
1227int __weak acpi_processor_ffh_lpi_enter(struct acpi_lpi_state *lpi)
1228{
1229 return -ENODEV;
1230}
1231
1232/**
1233 * acpi_idle_lpi_enter - enters an ACPI any LPI state
1234 * @dev: the target CPU
1235 * @drv: cpuidle driver containing cpuidle state info
1236 * @index: index of target state
1237 *
1238 * Return: 0 for success or negative value for error
1239 */
1240static int acpi_idle_lpi_enter(struct cpuidle_device *dev,
1241 struct cpuidle_driver *drv, int index)
1242{
1243 struct acpi_processor *pr;
1244 struct acpi_lpi_state *lpi;
1245
1246 pr = __this_cpu_read(processors);
1247
1248 if (unlikely(!pr))
1249 return -EINVAL;
1250
1251 lpi = &pr->power.lpi_states[index];
1252 if (lpi->entry_method == ACPI_CSTATE_FFH)
1253 return acpi_processor_ffh_lpi_enter(lpi);
1254
1255 return -EINVAL;
1256}
1257
1258static int acpi_processor_setup_lpi_states(struct acpi_processor *pr)
1259{
1260 int i;
1261 struct acpi_lpi_state *lpi;
1262 struct cpuidle_state *state;
1263 struct cpuidle_driver *drv = &acpi_idle_driver;
1264
1265 if (!pr->flags.has_lpi)
1266 return -EOPNOTSUPP;
1267
1268 for (i = 0; i < pr->power.count && i < CPUIDLE_STATE_MAX; i++) {
1269 lpi = &pr->power.lpi_states[i];
1270
1271 state = &drv->states[i];
1272 snprintf(state->name, CPUIDLE_NAME_LEN, "LPI-%d", i);
1273 strlcpy(state->desc, lpi->desc, CPUIDLE_DESC_LEN);
1274 state->exit_latency = lpi->wake_latency;
1275 state->target_residency = lpi->min_residency;
1276 if (lpi->arch_flags)
1277 state->flags |= CPUIDLE_FLAG_TIMER_STOP;
1278 state->enter = acpi_idle_lpi_enter;
1279 drv->safe_state_index = i;
1280 }
1281
1282 drv->state_count = i;
1283
1284 return 0;
1285}
1286
1287/**
1288 * acpi_processor_setup_cpuidle_states- prepares and configures cpuidle
1289 * global state data i.e. idle routines
1290 *
1291 * @pr: the ACPI processor
1292 */
1293static int acpi_processor_setup_cpuidle_states(struct acpi_processor *pr)
1294{
1295 int i;
1296 struct cpuidle_driver *drv = &acpi_idle_driver;
1297
1298 if (!pr->flags.power_setup_done || !pr->flags.power)
1299 return -EINVAL;
1300
1301 drv->safe_state_index = -1;
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +02001302 for (i = ACPI_IDLE_STATE_START; i < CPUIDLE_STATE_MAX; i++) {
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +01001303 drv->states[i].name[0] = '\0';
1304 drv->states[i].desc[0] = '\0';
1305 }
1306
1307 if (pr->flags.has_lpi)
1308 return acpi_processor_setup_lpi_states(pr);
1309
1310 return acpi_processor_setup_cstates(pr);
1311}
1312
1313/**
1314 * acpi_processor_setup_cpuidle_dev - prepares and configures CPUIDLE
1315 * device i.e. per-cpu data
1316 *
1317 * @pr: the ACPI processor
1318 * @dev : the cpuidle device
1319 */
1320static int acpi_processor_setup_cpuidle_dev(struct acpi_processor *pr,
1321 struct cpuidle_device *dev)
1322{
1323 if (!pr->flags.power_setup_done || !pr->flags.power || !dev)
1324 return -EINVAL;
1325
1326 dev->cpu = pr->id;
1327 if (pr->flags.has_lpi)
1328 return acpi_processor_ffh_lpi_probe(pr->id);
1329
1330 return acpi_processor_setup_cpuidle_cx(pr, dev);
1331}
1332
1333static int acpi_processor_get_power_info(struct acpi_processor *pr)
1334{
1335 int ret;
1336
1337 ret = acpi_processor_get_lpi_info(pr);
1338 if (ret)
1339 ret = acpi_processor_get_cstate_info(pr);
1340
1341 return ret;
1342}
1343
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301344int acpi_processor_hotplug(struct acpi_processor *pr)
Len Brown4f86d3a2007-10-03 18:58:00 -04001345{
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001346 int ret = 0;
Wei Yongjune8b1b592012-10-08 08:40:42 +08001347 struct cpuidle_device *dev;
Len Brown4f86d3a2007-10-03 18:58:00 -04001348
Thomas Renningerd1896042010-11-03 17:06:14 +01001349 if (disabled_by_idle_boot_param())
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001350 return 0;
1351
Len Brown4f86d3a2007-10-03 18:58:00 -04001352 if (!pr->flags.power_setup_done)
1353 return -ENODEV;
1354
Wei Yongjune8b1b592012-10-08 08:40:42 +08001355 dev = per_cpu(acpi_cpuidle_device, pr->id);
Len Brown4f86d3a2007-10-03 18:58:00 -04001356 cpuidle_pause_and_lock();
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001357 cpuidle_disable_device(dev);
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +01001358 ret = acpi_processor_get_power_info(pr);
1359 if (!ret && pr->flags.power) {
1360 acpi_processor_setup_cpuidle_dev(pr, dev);
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001361 ret = cpuidle_enable_device(dev);
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001362 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001363 cpuidle_resume_and_unlock();
1364
1365 return ret;
1366}
1367
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +01001368int acpi_processor_power_state_has_changed(struct acpi_processor *pr)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301369{
1370 int cpu;
1371 struct acpi_processor *_pr;
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001372 struct cpuidle_device *dev;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301373
1374 if (disabled_by_idle_boot_param())
1375 return 0;
1376
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301377 if (!pr->flags.power_setup_done)
1378 return -ENODEV;
1379
1380 /*
1381 * FIXME: Design the ACPI notification to make it once per
1382 * system instead of once per-cpu. This condition is a hack
1383 * to make the code that updates C-States be called once.
1384 */
1385
Paul E. McKenney95056262012-02-28 13:27:44 -08001386 if (pr->id == 0 && cpuidle_get_driver() == &acpi_idle_driver) {
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301387
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301388 /* Protect against cpu-hotplug */
1389 get_online_cpus();
Jiri Kosina67266552014-09-03 15:04:28 +02001390 cpuidle_pause_and_lock();
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301391
1392 /* Disable all cpuidle devices */
1393 for_each_online_cpu(cpu) {
1394 _pr = per_cpu(processors, cpu);
1395 if (!_pr || !_pr->flags.power_setup_done)
1396 continue;
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001397 dev = per_cpu(acpi_cpuidle_device, cpu);
1398 cpuidle_disable_device(dev);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301399 }
1400
1401 /* Populate Updated C-state information */
Thomas Schlichterf427e5f2013-01-19 00:28:22 +01001402 acpi_processor_get_power_info(pr);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301403 acpi_processor_setup_cpuidle_states(pr);
1404
1405 /* Enable all cpuidle devices */
1406 for_each_online_cpu(cpu) {
1407 _pr = per_cpu(processors, cpu);
1408 if (!_pr || !_pr->flags.power_setup_done)
1409 continue;
1410 acpi_processor_get_power_info(_pr);
1411 if (_pr->flags.power) {
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001412 dev = per_cpu(acpi_cpuidle_device, cpu);
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +01001413 acpi_processor_setup_cpuidle_dev(_pr, dev);
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001414 cpuidle_enable_device(dev);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301415 }
1416 }
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301417 cpuidle_resume_and_unlock();
Jiri Kosina67266552014-09-03 15:04:28 +02001418 put_online_cpus();
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301419 }
1420
1421 return 0;
1422}
1423
1424static int acpi_processor_registered;
1425
Paul Gortmakerfe7bf102013-06-19 14:30:58 -04001426int acpi_processor_power_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301428 int retval;
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001429 struct cpuidle_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Thomas Renningerd1896042010-11-03 17:06:14 +01001431 if (disabled_by_idle_boot_param())
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Sudeep Holla35ae7132016-07-19 18:52:53 +01001434 acpi_processor_cstate_first_run_checks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Sudeep Holla35ae7132016-07-19 18:52:53 +01001436 if (!acpi_processor_get_power_info(pr))
1437 pr->flags.power_setup_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 /*
1440 * Install the idle handler if processor power management is supported.
1441 * Note that we use previously set idle handler will be used on
1442 * platforms that only support C1.
1443 */
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001444 if (pr->flags.power) {
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301445 /* Register acpi_idle_driver if not already registered */
1446 if (!acpi_processor_registered) {
1447 acpi_processor_setup_cpuidle_states(pr);
1448 retval = cpuidle_register_driver(&acpi_idle_driver);
1449 if (retval)
1450 return retval;
Sudeep Hollab6ec26f2015-12-02 14:10:44 +00001451 pr_debug("%s registered with cpuidle\n",
1452 acpi_idle_driver.name);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301453 }
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001454
1455 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1456 if (!dev)
1457 return -ENOMEM;
1458 per_cpu(acpi_cpuidle_device, pr->id) = dev;
1459
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +01001460 acpi_processor_setup_cpuidle_dev(pr, dev);
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001461
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301462 /* Register per-cpu cpuidle_device. Cpuidle driver
1463 * must already be registered before registering device
1464 */
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001465 retval = cpuidle_register_device(dev);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301466 if (retval) {
1467 if (acpi_processor_registered == 0)
1468 cpuidle_unregister_driver(&acpi_idle_driver);
1469 return retval;
1470 }
1471 acpi_processor_registered++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474}
1475
Daniel Lezcano38a991b2012-09-15 22:42:54 +02001476int acpi_processor_power_exit(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001478 struct cpuidle_device *dev = per_cpu(acpi_cpuidle_device, pr->id);
1479
Thomas Renningerd1896042010-11-03 17:06:14 +01001480 if (disabled_by_idle_boot_param())
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001481 return 0;
1482
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301483 if (pr->flags.power) {
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001484 cpuidle_unregister_device(dev);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301485 acpi_processor_registered--;
1486 if (acpi_processor_registered == 0)
1487 cpuidle_unregister_driver(&acpi_idle_driver);
1488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301490 pr->flags.power_setup_done = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -04001491 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}