blob: bec717ffd25f5ff7c016f57365a380dc8e91b7fb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_processor.c - ACPI Processor Driver ($Revision: 71 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de>
7 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 * - Added processor hotplug support
9 *
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or (at
15 * your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 *
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 * TBD:
28 * 1. Make # power states dynamic.
29 * 2. Support duty_cycle values that span bit 4.
30 * 3. Optimize by having scheduler determine business instead of
31 * having us try to calculate it here.
32 * 4. Need C1 timing -- must modify kernel (IRQ handler) to get this.
33 */
34
35#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/init.h>
38#include <linux/types.h>
39#include <linux/pci.h>
40#include <linux/pm.h>
41#include <linux/cpufreq.h>
42#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/dmi.h>
44#include <linux/moduleparam.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040045#include <linux/cpuidle.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Toshi Kani47db4542012-11-20 23:42:27 +000047#include <linux/acpi.h>
Wen Congyang76bba142013-02-22 16:33:29 -080048#include <linux/memory_hotplug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/cpu.h>
52#include <asm/delay.h>
53#include <asm/uaccess.h>
54#include <asm/processor.h>
55#include <asm/smp.h>
56#include <asm/acpi.h>
57
58#include <acpi/acpi_bus.h>
59#include <acpi/acpi_drivers.h>
60#include <acpi/processor.h>
61
Len Browna192a952009-07-28 16:45:54 -040062#define PREFIX "ACPI: "
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
66#define ACPI_PROCESSOR_FILE_INFO "info"
67#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
68#define ACPI_PROCESSOR_FILE_LIMIT "limit"
69#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
70#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
Luming Yu01854e62007-05-26 22:49:58 +080071#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
Toshi Kani9f324bd2012-03-19 13:08:02 -060072#define ACPI_PROCESSOR_DEVICE_HID "ACPI0007"
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#define ACPI_PROCESSOR_LIMIT_USER 0
75#define ACPI_PROCESSOR_LIMIT_THERMAL 1
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Alex Chiang0131aa32010-02-22 12:11:08 -070078ACPI_MODULE_NAME("processor_driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Len Brownf52fd662007-02-12 22:42:12 -050080MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050081MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070082MODULE_LICENSE("GPL");
83
Len Brown4be44fc2005-08-05 00:44:28 -040084static int acpi_processor_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010085static int acpi_processor_remove(struct acpi_device *device);
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +000086static void acpi_processor_notify(struct acpi_device *device, u32 event);
Thomas Renninger3bd81a82012-01-17 22:40:07 +010087static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static int acpi_processor_handle_eject(struct acpi_processor *pr);
Thomas Renninger99b72502012-01-19 18:18:43 +010089static int acpi_processor_start(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Thomas Renninger1ba90e32007-07-23 14:44:41 +020091static const struct acpi_device_id processor_device_ids[] = {
Myron Stowead93a762008-11-04 14:52:55 -070092 {ACPI_PROCESSOR_OBJECT_HID, 0},
Toshi Kani9f324bd2012-03-19 13:08:02 -060093 {ACPI_PROCESSOR_DEVICE_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020094 {"", 0},
95};
96MODULE_DEVICE_TABLE(acpi, processor_device_ids);
97
Rafael J. Wysockie8110b62012-06-27 23:26:26 +020098static SIMPLE_DEV_PM_OPS(acpi_processor_pm,
99 acpi_processor_suspend, acpi_processor_resume);
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static struct acpi_driver acpi_processor_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500102 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -0400103 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200104 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400105 .ops = {
106 .add = acpi_processor_add,
107 .remove = acpi_processor_remove,
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000108 .notify = acpi_processor_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400109 },
Rafael J. Wysockie8110b62012-06-27 23:26:26 +0200110 .drv.pm = &acpi_processor_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113#define INSTALL_NOTIFY_HANDLER 1
114#define UNINSTALL_NOTIFY_HANDLER 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Mike Travis706546d2008-06-09 16:22:23 -0700116DEFINE_PER_CPU(struct acpi_processor *, processors);
Naga Chumbalkar0f1d6832009-12-17 20:18:27 +0000117EXPORT_PER_CPU_SYMBOL(processors);
118
Andreas Mohr9f222712006-06-23 02:04:27 -0700119struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* --------------------------------------------------------------------------
122 Errata Handling
123 -------------------------------------------------------------------------- */
124
Len Brown4be44fc2005-08-05 00:44:28 -0400125static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Len Brown4be44fc2005-08-05 00:44:28 -0400127 u8 value1 = 0;
128 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400132 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 /*
135 * Note that 'dev' references the PIIX4 ACPI Controller.
136 */
137
Auke Kok44c10132007-06-08 15:46:36 -0700138 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 case 0:
140 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
141 break;
142 case 1:
143 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
144 break;
145 case 2:
146 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
147 break;
148 case 3:
149 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
150 break;
151 default:
152 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
153 break;
154 }
155
Auke Kok44c10132007-06-08 15:46:36 -0700156 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 case 0: /* PIIX4 A-step */
159 case 1: /* PIIX4 B-step */
160 /*
161 * See specification changes #13 ("Manual Throttle Duty Cycle")
162 * and #14 ("Enabling and Disabling Manual Throttle"), plus
163 * erratum #5 ("STPCLK# Deassertion Time") from the January
164 * 2002 PIIX4 specification update. Applies to only older
165 * PIIX4 models.
166 */
167 errata.piix4.throttle = 1;
168
169 case 2: /* PIIX4E */
170 case 3: /* PIIX4M */
171 /*
172 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
173 * Livelock") from the January 2002 PIIX4 specification update.
174 * Applies to all PIIX4 models.
175 */
176
177 /*
178 * BM-IDE
179 * ------
180 * Find the PIIX4 IDE Controller and get the Bus Master IDE
181 * Status register address. We'll use this later to read
182 * each IDE controller's DMA status to make sure we catch all
183 * DMA activity.
184 */
185 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400186 PCI_DEVICE_ID_INTEL_82371AB,
187 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (dev) {
189 errata.piix4.bmisx = pci_resource_start(dev, 4);
190 pci_dev_put(dev);
191 }
192
193 /*
194 * Type-F DMA
195 * ----------
196 * Find the PIIX4 ISA Controller and read the Motherboard
197 * DMA controller's status to see if Type-F (Fast) DMA mode
198 * is enabled (bit 7) on either channel. Note that we'll
199 * disable C3 support if this is enabled, as some legacy
200 * devices won't operate well if fast DMA is disabled.
201 */
202 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400203 PCI_DEVICE_ID_INTEL_82371AB_0,
204 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (dev) {
206 pci_read_config_byte(dev, 0x76, &value1);
207 pci_read_config_byte(dev, 0x77, &value2);
208 if ((value1 & 0x80) || (value2 & 0x80))
209 errata.piix4.fdma = 1;
210 pci_dev_put(dev);
211 }
212
213 break;
214 }
215
216 if (errata.piix4.bmisx)
217 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400218 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (errata.piix4.fdma)
220 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400221 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Patrick Mocheld550d982006-06-27 00:41:40 -0400223 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400226static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Len Brown4be44fc2005-08-05 00:44:28 -0400228 int result = 0;
229 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400233 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 /*
236 * PIIX4
237 */
238 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400239 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
240 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (dev) {
242 result = acpi_processor_errata_piix4(dev);
243 pci_dev_put(dev);
244 }
245
Patrick Mocheld550d982006-06-27 00:41:40 -0400246 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/* --------------------------------------------------------------------------
250 Driver Interface
251 -------------------------------------------------------------------------- */
252
Myron Stoweb26e9282008-11-04 14:53:00 -0700253static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Len Brown4be44fc2005-08-05 00:44:28 -0400255 acpi_status status = 0;
256 union acpi_object object = { 0 };
257 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700258 struct acpi_processor *pr;
259 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400260 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Myron Stoweb26e9282008-11-04 14:53:00 -0700262 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400264 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (num_online_cpus() > 1)
267 errata.smp = TRUE;
268
269 acpi_processor_errata(pr);
270
271 /*
272 * Check to see if we have bus mastering arbitration control. This
273 * is required for proper C3 usage (to maintain cache coherency).
274 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300275 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 pr->flags.bm_control = 1;
277 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400278 "Bus mastering arbitration control present\n"));
279 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400281 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600283 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
284 /* Declared with "Processor" statement; match ProcessorID */
285 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
286 if (ACPI_FAILURE(status)) {
Toshi Kani47db4542012-11-20 23:42:27 +0000287 dev_err(&device->dev,
288 "Failed to evaluate processor object (0x%x)\n",
289 status);
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600290 return -ENODEV;
291 }
292
293 /*
294 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
295 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
296 * arch/xxx/acpi.c
297 */
298 pr->acpi_id = object.processor.proc_id;
299 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700300 /*
301 * Declared with "Device" statement; match _UID.
302 * Note that we don't handle string _UIDs yet.
303 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400304 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300305 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
306 NULL, &value);
307 if (ACPI_FAILURE(status)) {
Toshi Kani47db4542012-11-20 23:42:27 +0000308 dev_err(&device->dev,
309 "Failed to evaluate processor _UID (0x%x)\n",
310 status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300311 return -ENODEV;
312 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700313 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300314 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
Alex Chiang2e9d5e42010-02-22 12:11:19 -0700316 cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500319 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400320 (num_online_cpus() == 1)) {
321 cpu_index = 0;
322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Len Brown4be44fc2005-08-05 00:44:28 -0400324 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Len Brown4be44fc2005-08-05 00:44:28 -0400326 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Len Brown4be44fc2005-08-05 00:44:28 -0400328 /*
329 * Extra Processor objects may be enumerated on MP systems with
330 * less than the max # of CPUs. They should be ignored _iff
331 * they are physically not present.
332 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300333 if (pr->id == -1) {
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100334 if (ACPI_FAILURE(acpi_processor_hotadd_init(pr)))
Patrick Mocheld550d982006-06-27 00:41:40 -0400335 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400336 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800337 /*
338 * On some boxes several processors use the same processor bus id.
339 * But they are located in different scope. For example:
340 * \_SB.SCK0.CPU0
341 * \_SB.SCK1.CPU0
342 * Rename the processor device bus id. And the new bus id will be
343 * generated as the following format:
344 * CPU+CPU ID.
345 */
346 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400348 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 if (!object.processor.pblk_address)
351 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
352 else if (object.processor.pblk_length != 6)
Toshi Kani47db4542012-11-20 23:42:27 +0000353 dev_err(&device->dev, "Invalid PBLK length [%d]\n",
Len Brown64684632006-06-26 23:41:38 -0400354 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 else {
356 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300357 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
358 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 pr->pblk = object.processor.pblk_address;
361
362 /*
363 * We don't care about error returns - we just try to mark
364 * these reserved so that nobody else is confused into thinking
365 * that this region might be unused..
366 *
367 * (In particular, allocating the IO range for Cardbus)
368 */
369 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
370 }
371
Alex Chiangfe086a72008-04-29 15:05:29 -0700372 /*
373 * If ACPI describes a slot number for this CPU, we can use it
374 * ensure we get the right value in the "physical id" field
375 * of /proc/cpuinfo
376 */
377 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
378 if (ACPI_SUCCESS(status))
379 arch_fix_phys_package_id(pr->id, object.integer.value);
380
Patrick Mocheld550d982006-06-27 00:41:40 -0400381 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Mike Travis706546d2008-06-09 16:22:23 -0700384static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400385
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000386static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000388 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300389 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400392 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 switch (event) {
395 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300396 saved = pr->performance_platform_limit;
Zhao Yakuid81c45e12009-10-16 09:20:41 +0800397 acpi_processor_ppc_has_changed(pr, 1);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300398 if (saved == pr->performance_platform_limit)
399 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400400 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400401 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800402 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100403 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800404 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 break;
406 case ACPI_PROCESSOR_NOTIFY_POWER:
407 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400408 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800409 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100410 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 break;
Luming Yu01854e62007-05-26 22:49:58 +0800412 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
413 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400414 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800415 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100416 dev_name(&device->dev), event, 0);
Alan Cox879dca02012-10-26 01:05:56 +0200417 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 default:
419 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400420 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 break;
422 }
423
Patrick Mocheld550d982006-06-27 00:41:40 -0400424 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200427static int acpi_cpu_soft_notify(struct notifier_block *nfb,
428 unsigned long action, void *hcpu)
429{
430 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700431 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200432
433 if (action == CPU_ONLINE && pr) {
Thomas Renninger99b72502012-01-19 18:18:43 +0100434 /* CPU got physically hotplugged and onlined the first time:
435 * Initialize missing things
436 */
437 if (pr->flags.need_hotplug_init) {
Toshi Kani47db4542012-11-20 23:42:27 +0000438 pr_info("Will online and init hotplugged CPU: %d\n",
439 pr->id);
Thomas Renninger99b72502012-01-19 18:18:43 +0100440 WARN(acpi_processor_start(pr), "Failed to start CPU:"
441 " %d\n", pr->id);
442 pr->flags.need_hotplug_init = 0;
Thomas Renninger99b72502012-01-19 18:18:43 +0100443 /* Normal CPU soft online event */
444 } else {
445 acpi_processor_ppc_has_changed(pr, 0);
Feng Tangb7db60f2012-07-31 12:44:43 +0800446 acpi_processor_hotplug(pr);
Thomas Renninger99b72502012-01-19 18:18:43 +0100447 acpi_processor_reevaluate_tstate(pr, action);
448 acpi_processor_tstate_has_changed(pr);
449 }
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200450 }
Zhao Yakui5a344a52011-01-10 16:35:45 +0800451 if (action == CPU_DEAD && pr) {
452 /* invalidate the flag.throttling after one CPU is offline */
453 acpi_processor_reevaluate_tstate(pr, action);
454 }
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200455 return NOTIFY_OK;
456}
457
458static struct notifier_block acpi_cpu_notifier =
459{
460 .notifier_call = acpi_cpu_soft_notify,
461};
462
Thomas Renninger99b72502012-01-19 18:18:43 +0100463/*
464 * acpi_processor_start() is called by the cpu_hotplug_notifier func:
465 * acpi_cpu_soft_notify(). Getting it __cpuinit{data} is difficult, the
466 * root cause seem to be that acpi_processor_uninstall_hotplug_notify()
467 * is in the module_exit (__exit) func. Allowing acpi_processor_start()
468 * to not be in __cpuinit section, but being called from __cpuinit funcs
469 * via __ref looks like the right thing to do here.
470 */
471static __ref int acpi_processor_start(struct acpi_processor *pr)
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100472{
473 struct acpi_device *device = per_cpu(processor_device_array, pr->id);
474 int result = 0;
475
476#ifdef CONFIG_CPU_FREQ
477 acpi_processor_ppc_has_changed(pr, 0);
Yinghai Lu976a0be2012-02-07 11:45:57 -0800478 acpi_processor_load_module(pr);
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100479#endif
480 acpi_processor_get_throttling_info(pr);
481 acpi_processor_get_limit_info(pr);
482
483 if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
Daniel Lezcano38a991b2012-09-15 22:42:54 +0200484 acpi_processor_power_init(pr);
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100485
486 pr->cdev = thermal_cooling_device_register("Processor", device,
487 &processor_cooling_ops);
488 if (IS_ERR(pr->cdev)) {
489 result = PTR_ERR(pr->cdev);
490 goto err_power_exit;
491 }
492
493 dev_dbg(&device->dev, "registered as cooling_device%d\n",
494 pr->cdev->id);
495
496 result = sysfs_create_link(&device->dev.kobj,
497 &pr->cdev->device.kobj,
498 "thermal_cooling");
499 if (result) {
Toshi Kani47db4542012-11-20 23:42:27 +0000500 dev_err(&device->dev,
501 "Failed to create sysfs link 'thermal_cooling'\n");
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100502 goto err_thermal_unregister;
503 }
504 result = sysfs_create_link(&pr->cdev->device.kobj,
505 &device->dev.kobj,
506 "device");
507 if (result) {
Toshi Kani47db4542012-11-20 23:42:27 +0000508 dev_err(&pr->cdev->device,
509 "Failed to create sysfs link 'device'\n");
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100510 goto err_remove_sysfs_thermal;
511 }
512
513 return 0;
514
515err_remove_sysfs_thermal:
516 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
517err_thermal_unregister:
518 thermal_cooling_device_unregister(pr->cdev);
519err_power_exit:
Daniel Lezcano38a991b2012-09-15 22:42:54 +0200520 acpi_processor_power_exit(pr);
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100521
522 return result;
523}
524
Thomas Renninger99b72502012-01-19 18:18:43 +0100525/*
526 * Do not put anything in here which needs the core to be online.
527 * For example MSR access or setting up things which check for cpuinfo_x86
528 * (cpu_data(cpu)) values, like CPU feature flags, family, model, etc.
529 * Such things have to be put in and set up above in acpi_processor_start()
530 */
Rakib Mullick941b10f2009-11-05 16:51:40 -0500531static int __cpuinit acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Len Brown4be44fc2005-08-05 00:44:28 -0400533 struct acpi_processor *pr = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000534 int result = 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800535 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Burman Yan36bcbec2006-12-19 12:56:11 -0800537 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400539 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Yinghai Lueaa95842009-06-06 14:51:36 -0700541 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
Julia Lawallc80f5b32012-03-15 09:32:05 +0100542 result = -ENOMEM;
543 goto err_free_pr;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800544 }
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 pr->handle = device->handle;
547 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
548 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700549 device->driver_data = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 result = acpi_processor_get_info(device);
552 if (result) {
553 /* Processor is physically not present */
554 return 0;
555 }
556
Thomas Renninger75cbfb92010-05-26 17:03:33 +0200557#ifdef CONFIG_SMP
558 if (pr->id >= setup_max_cpus && pr->id != 0)
559 return 0;
560#endif
561
Chen Gang9b275162013-02-27 04:27:30 +0000562 BUG_ON(pr->id >= nr_cpu_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 /*
565 * Buggy BIOS check
566 * ACPI id of processors can be reported wrongly by the BIOS.
567 * Don't trust it blindly
568 */
569 if (per_cpu(processor_device_array, pr->id) != NULL &&
570 per_cpu(processor_device_array, pr->id) != device) {
Toshi Kani47db4542012-11-20 23:42:27 +0000571 dev_warn(&device->dev,
572 "BIOS reported wrong ACPI id %d for the processor\n",
573 pr->id);
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000574 result = -ENODEV;
575 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577 per_cpu(processor_device_array, pr->id) = device;
578
579 per_cpu(processors, pr->id) = pr;
580
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800581 dev = get_cpu_device(pr->id);
582 if (sysfs_create_link(&device->dev.kobj, &dev->kobj, "sysdev")) {
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000583 result = -EFAULT;
Julia Lawallc80f5b32012-03-15 09:32:05 +0100584 goto err_clear_processor;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Thomas Renninger99b72502012-01-19 18:18:43 +0100587 /*
588 * Do not start hotplugged CPUs now, but when they
589 * are onlined the first time
590 */
591 if (pr->flags.need_hotplug_init)
592 return 0;
593
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100594 result = acpi_processor_start(pr);
595 if (result)
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000596 goto err_remove_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Patrick Mocheld550d982006-06-27 00:41:40 -0400598 return 0;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000599
600err_remove_sysfs:
Thomas Renninger3333ea72011-11-17 23:37:00 +0100601 sysfs_remove_link(&device->dev.kobj, "sysdev");
Julia Lawallc80f5b32012-03-15 09:32:05 +0100602err_clear_processor:
603 /*
604 * processor_device_array is not cleared to allow checks for buggy BIOS
605 */
606 per_cpu(processors, pr->id) = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000607err_free_cpumask:
608 free_cpumask_var(pr->throttling.shared_cpu_map);
Julia Lawallc80f5b32012-03-15 09:32:05 +0100609err_free_pr:
610 kfree(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100614static int acpi_processor_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Len Brown4be44fc2005-08-05 00:44:28 -0400616 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400620 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200622 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800624 if (pr->id >= nr_cpu_ids)
625 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100627 if (device->removal_type == ACPI_BUS_REMOVAL_EJECT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400629 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
Daniel Lezcano38a991b2012-09-15 22:42:54 +0200632 acpi_processor_power_exit(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Zhang Rui9f1eb992008-04-29 02:36:07 -0400634 sysfs_remove_link(&device->dev.kobj, "sysdev");
635
Zhao Yakuif28bb452008-02-15 08:34:37 +0800636 if (pr->cdev) {
637 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
638 sysfs_remove_link(&pr->cdev->device.kobj, "device");
639 thermal_cooling_device_unregister(pr->cdev);
640 pr->cdev = NULL;
641 }
Zhang Ruid9460fd222008-01-17 15:51:23 +0800642
Mike Travis706546d2008-06-09 16:22:23 -0700643 per_cpu(processors, pr->id) = NULL;
644 per_cpu(processor_device_array, pr->id) = NULL;
Wen Congyang76bba142013-02-22 16:33:29 -0800645 try_offline_node(cpu_to_node(pr->id));
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800646
647free:
648 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 kfree(pr);
650
Patrick Mocheld550d982006-06-27 00:41:40 -0400651 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654#ifdef CONFIG_ACPI_HOTPLUG_CPU
655/****************************************************************************
656 * Acpi processor hotplug support *
657 ****************************************************************************/
658
Len Brown4be44fc2005-08-05 00:44:28 -0400659static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Len Brown4be44fc2005-08-05 00:44:28 -0400661 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400662 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500666
667 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
668 return 1;
669
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500670 /*
671 * _STA is mandatory for a processor that supports hot plug
672 */
673 if (status == AE_NOT_FOUND)
674 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
675 "Processor does not support hot plug\n"));
676 else
677 ACPI_EXCEPTION((AE_INFO, status,
678 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500679 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Jan Beulich6430c9c2011-02-17 16:33:53 +0000682static void acpi_processor_hotplug_notify(acpi_handle handle,
683 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Len Brown4be44fc2005-08-05 00:44:28 -0400685 struct acpi_device *device = NULL;
Toshi Kanic5b18e22012-11-01 14:42:13 +0000686 struct acpi_eject_event *ej_event = NULL;
Toshi Kani51af3b92012-05-23 20:25:21 -0600687 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100688 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 int result;
690
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100691 acpi_scan_lock_acquire();
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 switch (event) {
694 case ACPI_NOTIFY_BUS_CHECK:
695 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800696 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
697 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400698 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800699 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 if (!is_processor_present(handle))
702 break;
703
Toshi Kani51af3b92012-05-23 20:25:21 -0600704 if (!acpi_bus_get_device(handle, &device))
705 break;
706
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +0100707 result = acpi_bus_scan(handle);
Toshi Kani51af3b92012-05-23 20:25:21 -0600708 if (result) {
Toshi Kani47db4542012-11-20 23:42:27 +0000709 acpi_handle_err(handle, "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 break;
711 }
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +0100712 result = acpi_bus_get_device(handle, &device);
713 if (result) {
714 acpi_handle_err(handle, "Missing device object\n");
715 break;
716 }
Toshi Kani51af3b92012-05-23 20:25:21 -0600717 ost_code = ACPI_OST_SC_SUCCESS;
Len Brown4be44fc2005-08-05 00:44:28 -0400718 break;
Toshi Kani51af3b92012-05-23 20:25:21 -0600719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400721 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
722 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (acpi_bus_get_device(handle, &device)) {
Toshi Kani47db4542012-11-20 23:42:27 +0000725 acpi_handle_err(handle,
726 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 break;
728 }
Toshi Kanic5b18e22012-11-01 14:42:13 +0000729 if (!acpi_driver_data(device)) {
Toshi Kani47db4542012-11-20 23:42:27 +0000730 acpi_handle_err(handle,
731 "Driver data is NULL, dropping EJECT\n");
Toshi Kani51af3b92012-05-23 20:25:21 -0600732 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
Toshi Kani51af3b92012-05-23 20:25:21 -0600734
Toshi Kanic5b18e22012-11-01 14:42:13 +0000735 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
736 if (!ej_event) {
Toshi Kani47db4542012-11-20 23:42:27 +0000737 acpi_handle_err(handle, "No memory, dropping EJECT\n");
Toshi Kanic5b18e22012-11-01 14:42:13 +0000738 break;
739 }
740
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100741 get_device(&device->dev);
Yinghai Lu5993c462013-01-11 22:40:41 +0000742 ej_event->device = device;
Toshi Kanic5b18e22012-11-01 14:42:13 +0000743 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100744 /* The eject is carried out asynchronously. */
745 status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device,
746 ej_event);
747 if (ACPI_FAILURE(status)) {
748 put_device(&device->dev);
749 kfree(ej_event);
750 break;
751 }
752 goto out;
Toshi Kani51af3b92012-05-23 20:25:21 -0600753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 default:
755 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400756 "Unsupported event [0x%x]\n", event));
Toshi Kani51af3b92012-05-23 20:25:21 -0600757
758 /* non-hotplug event; possibly handled by other handler */
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100759 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761
Toshi Kani51af3b92012-05-23 20:25:21 -0600762 /* Inform firmware that the hotplug operation has completed */
763 (void) acpi_evaluate_hotplug_ost(handle, event, ost_code, NULL);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100764
765 out:
766 acpi_scan_lock_release();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Toshi Kani9f324bd2012-03-19 13:08:02 -0600769static acpi_status is_processor_device(acpi_handle handle)
770{
771 struct acpi_device_info *info;
772 char *hid;
773 acpi_status status;
774
775 status = acpi_get_object_info(handle, &info);
776 if (ACPI_FAILURE(status))
777 return status;
778
779 if (info->type == ACPI_TYPE_PROCESSOR) {
780 kfree(info);
781 return AE_OK; /* found a processor object */
782 }
783
784 if (!(info->valid & ACPI_VALID_HID)) {
785 kfree(info);
786 return AE_ERROR;
787 }
788
789 hid = info->hardware_id.string;
790 if ((hid == NULL) || strcmp(hid, ACPI_PROCESSOR_DEVICE_HID)) {
791 kfree(info);
792 return AE_ERROR;
793 }
794
795 kfree(info);
796 return AE_OK; /* found a processor device object */
797}
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799static acpi_status
800processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400801 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Len Brown4be44fc2005-08-05 00:44:28 -0400803 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 int *action = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Toshi Kani9f324bd2012-03-19 13:08:02 -0600806 status = is_processor_device(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (ACPI_FAILURE(status))
Toshi Kani9f324bd2012-03-19 13:08:02 -0600808 return AE_OK; /* not a processor; continue to walk */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Len Brown4be44fc2005-08-05 00:44:28 -0400810 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 case INSTALL_NOTIFY_HANDLER:
812 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400813 ACPI_SYSTEM_NOTIFY,
814 acpi_processor_hotplug_notify,
815 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 break;
817 case UNINSTALL_NOTIFY_HANDLER:
818 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400819 ACPI_SYSTEM_NOTIFY,
820 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 break;
822 default:
823 break;
824 }
825
Toshi Kani9f324bd2012-03-19 13:08:02 -0600826 /* found a processor; skip walking underneath */
827 return AE_CTRL_DEPTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100830static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100832 acpi_handle handle = pr->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400835 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100838 if (acpi_map_lsapic(handle, &pr->id))
Patrick Mocheld550d982006-06-27 00:41:40 -0400839 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100841 if (arch_register_cpu(pr->id)) {
842 acpi_unmap_lsapic(pr->id);
Patrick Mocheld550d982006-06-27 00:41:40 -0400843 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845
Thomas Renninger99b72502012-01-19 18:18:43 +0100846 /* CPU got hot-plugged, but cpu_data is not initialized yet
847 * Set flag to delay cpu_idle/throttling initialization
848 * in:
849 * acpi_processor_add()
850 * acpi_processor_get_info()
851 * and do it when the CPU gets online the first time
852 * TBD: Cleanup above functions and try to do this more elegant.
853 */
Toshi Kani47db4542012-11-20 23:42:27 +0000854 pr_info("CPU %d got hotplugged\n", pr->id);
Thomas Renninger99b72502012-01-19 18:18:43 +0100855 pr->flags.need_hotplug_init = 1;
856
Patrick Mocheld550d982006-06-27 00:41:40 -0400857 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Len Brown4be44fc2005-08-05 00:44:28 -0400860static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Zhang Ruib62b8ef2008-04-29 02:35:56 -0400862 if (cpu_online(pr->id))
863 cpu_down(pr->id);
864
Yasuaki Ishimatsu5e5041f2012-10-23 01:30:54 +0200865 get_online_cpus();
866 /*
867 * The cpu might become online again at this point. So we check whether
868 * the cpu has been onlined or not. If the cpu became online, it means
869 * that someone wants to use the cpu. So acpi_processor_handle_eject()
870 * returns -EAGAIN.
871 */
872 if (unlikely(cpu_online(pr->id))) {
873 put_online_cpus();
874 pr_warn("Failed to remove CPU %d, because other task "
875 "brought the CPU back online\n", pr->id);
876 return -EAGAIN;
877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 arch_unregister_cpu(pr->id);
879 acpi_unmap_lsapic(pr->id);
Yasuaki Ishimatsu5e5041f2012-10-23 01:30:54 +0200880 put_online_cpus();
Len Brown4be44fc2005-08-05 00:44:28 -0400881 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883#else
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100884static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 return AE_ERROR;
887}
Len Brown4be44fc2005-08-05 00:44:28 -0400888static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Len Brown4be44fc2005-08-05 00:44:28 -0400890 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892#endif
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894static
895void acpi_processor_install_hotplug_notify(void)
896{
897#ifdef CONFIG_ACPI_HOTPLUG_CPU
898 int action = INSTALL_NOTIFY_HANDLER;
Toshi Kani9f324bd2012-03-19 13:08:02 -0600899 acpi_walk_namespace(ACPI_TYPE_ANY,
Len Brown4be44fc2005-08-05 00:44:28 -0400900 ACPI_ROOT_OBJECT,
901 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800902 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200904 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907static
908void acpi_processor_uninstall_hotplug_notify(void)
909{
910#ifdef CONFIG_ACPI_HOTPLUG_CPU
911 int action = UNINSTALL_NOTIFY_HANDLER;
Toshi Kani9f324bd2012-03-19 13:08:02 -0600912 acpi_walk_namespace(ACPI_TYPE_ANY,
Len Brown4be44fc2005-08-05 00:44:28 -0400913 ACPI_ROOT_OBJECT,
914 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800915 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200917 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
920/*
921 * We keep the driver loaded even when ACPI is not running.
922 * This is needed for the powernow-k8 driver, that works even without
923 * ACPI, but needs symbols from this driver
924 */
925
Len Brown4be44fc2005-08-05 00:44:28 -0400926static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Len Brown4be44fc2005-08-05 00:44:28 -0400928 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Yinghai Luce8442b2009-08-26 14:29:26 -0700930 if (acpi_disabled)
931 return 0;
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -0400934 if (result < 0)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530935 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 acpi_processor_install_hotplug_notify();
938
939 acpi_thermal_cpufreq_init();
940
941 acpi_processor_ppc_init();
942
Zhao Yakui11805092008-01-28 13:53:42 +0800943 acpi_processor_throttling_init();
944
Patrick Mocheld550d982006-06-27 00:41:40 -0400945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Len Brown4be44fc2005-08-05 00:44:28 -0400948static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Yinghai Luce8442b2009-08-26 14:29:26 -0700950 if (acpi_disabled)
951 return;
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 acpi_processor_ppc_exit();
954
955 acpi_thermal_cpufreq_exit();
956
957 acpi_processor_uninstall_hotplug_notify();
958
959 acpi_bus_unregister_driver(&acpi_processor_driver);
960
Patrick Mocheld550d982006-06-27 00:41:40 -0400961 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964module_init(acpi_processor_init);
965module_exit(acpi_processor_exit);
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967MODULE_ALIAS("processor");