blob: bd4e5dca3ff7e81f4ce754cbaad3856bb4948a6a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/cpu.h>
50#include <asm/delay.h>
51#include <asm/uaccess.h>
52#include <asm/processor.h>
53#include <asm/smp.h>
54#include <asm/acpi.h>
55
56#include <acpi/acpi_bus.h>
57#include <acpi/acpi_drivers.h>
58#include <acpi/processor.h>
59
Len Browna192a952009-07-28 16:45:54 -040060#define PREFIX "ACPI: "
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
64#define ACPI_PROCESSOR_FILE_INFO "info"
65#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
66#define ACPI_PROCESSOR_FILE_LIMIT "limit"
67#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
68#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
Luming Yu01854e62007-05-26 22:49:58 +080069#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
Toshi Kani9f324bd2012-03-19 13:08:02 -060070#define ACPI_PROCESSOR_DEVICE_HID "ACPI0007"
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#define ACPI_PROCESSOR_LIMIT_USER 0
73#define ACPI_PROCESSOR_LIMIT_THERMAL 1
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Alex Chiang0131aa32010-02-22 12:11:08 -070076ACPI_MODULE_NAME("processor_driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Len Brownf52fd662007-02-12 22:42:12 -050078MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050079MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080MODULE_LICENSE("GPL");
81
Len Brown4be44fc2005-08-05 00:44:28 -040082static int acpi_processor_add(struct acpi_device *device);
Len Brown4be44fc2005-08-05 00:44:28 -040083static int acpi_processor_remove(struct acpi_device *device, int type);
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +000084static void acpi_processor_notify(struct acpi_device *device, u32 event);
Thomas Renninger3bd81a82012-01-17 22:40:07 +010085static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int acpi_processor_handle_eject(struct acpi_processor *pr);
Thomas Renninger99b72502012-01-19 18:18:43 +010087static int acpi_processor_start(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Thomas Renninger1ba90e32007-07-23 14:44:41 +020089static const struct acpi_device_id processor_device_ids[] = {
Myron Stowead93a762008-11-04 14:52:55 -070090 {ACPI_PROCESSOR_OBJECT_HID, 0},
Toshi Kani9f324bd2012-03-19 13:08:02 -060091 {ACPI_PROCESSOR_DEVICE_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020092 {"", 0},
93};
94MODULE_DEVICE_TABLE(acpi, processor_device_ids);
95
Rafael J. Wysockie8110b62012-06-27 23:26:26 +020096static SIMPLE_DEV_PM_OPS(acpi_processor_pm,
97 acpi_processor_suspend, acpi_processor_resume);
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static struct acpi_driver acpi_processor_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500100 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -0400101 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200102 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400103 .ops = {
104 .add = acpi_processor_add,
105 .remove = acpi_processor_remove,
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000106 .notify = acpi_processor_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400107 },
Rafael J. Wysockie8110b62012-06-27 23:26:26 +0200108 .drv.pm = &acpi_processor_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
111#define INSTALL_NOTIFY_HANDLER 1
112#define UNINSTALL_NOTIFY_HANDLER 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Mike Travis706546d2008-06-09 16:22:23 -0700114DEFINE_PER_CPU(struct acpi_processor *, processors);
Naga Chumbalkar0f1d6832009-12-17 20:18:27 +0000115EXPORT_PER_CPU_SYMBOL(processors);
116
Andreas Mohr9f222712006-06-23 02:04:27 -0700117struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/* --------------------------------------------------------------------------
120 Errata Handling
121 -------------------------------------------------------------------------- */
122
Len Brown4be44fc2005-08-05 00:44:28 -0400123static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Len Brown4be44fc2005-08-05 00:44:28 -0400125 u8 value1 = 0;
126 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400130 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /*
133 * Note that 'dev' references the PIIX4 ACPI Controller.
134 */
135
Auke Kok44c10132007-06-08 15:46:36 -0700136 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 case 0:
138 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
139 break;
140 case 1:
141 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
142 break;
143 case 2:
144 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
145 break;
146 case 3:
147 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
148 break;
149 default:
150 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
151 break;
152 }
153
Auke Kok44c10132007-06-08 15:46:36 -0700154 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 case 0: /* PIIX4 A-step */
157 case 1: /* PIIX4 B-step */
158 /*
159 * See specification changes #13 ("Manual Throttle Duty Cycle")
160 * and #14 ("Enabling and Disabling Manual Throttle"), plus
161 * erratum #5 ("STPCLK# Deassertion Time") from the January
162 * 2002 PIIX4 specification update. Applies to only older
163 * PIIX4 models.
164 */
165 errata.piix4.throttle = 1;
166
167 case 2: /* PIIX4E */
168 case 3: /* PIIX4M */
169 /*
170 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
171 * Livelock") from the January 2002 PIIX4 specification update.
172 * Applies to all PIIX4 models.
173 */
174
175 /*
176 * BM-IDE
177 * ------
178 * Find the PIIX4 IDE Controller and get the Bus Master IDE
179 * Status register address. We'll use this later to read
180 * each IDE controller's DMA status to make sure we catch all
181 * DMA activity.
182 */
183 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400184 PCI_DEVICE_ID_INTEL_82371AB,
185 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (dev) {
187 errata.piix4.bmisx = pci_resource_start(dev, 4);
188 pci_dev_put(dev);
189 }
190
191 /*
192 * Type-F DMA
193 * ----------
194 * Find the PIIX4 ISA Controller and read the Motherboard
195 * DMA controller's status to see if Type-F (Fast) DMA mode
196 * is enabled (bit 7) on either channel. Note that we'll
197 * disable C3 support if this is enabled, as some legacy
198 * devices won't operate well if fast DMA is disabled.
199 */
200 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400201 PCI_DEVICE_ID_INTEL_82371AB_0,
202 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (dev) {
204 pci_read_config_byte(dev, 0x76, &value1);
205 pci_read_config_byte(dev, 0x77, &value2);
206 if ((value1 & 0x80) || (value2 & 0x80))
207 errata.piix4.fdma = 1;
208 pci_dev_put(dev);
209 }
210
211 break;
212 }
213
214 if (errata.piix4.bmisx)
215 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400216 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (errata.piix4.fdma)
218 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400219 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Patrick Mocheld550d982006-06-27 00:41:40 -0400221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400224static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Len Brown4be44fc2005-08-05 00:44:28 -0400226 int result = 0;
227 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400231 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /*
234 * PIIX4
235 */
236 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400237 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
238 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (dev) {
240 result = acpi_processor_errata_piix4(dev);
241 pci_dev_put(dev);
242 }
243
Patrick Mocheld550d982006-06-27 00:41:40 -0400244 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/* --------------------------------------------------------------------------
248 Driver Interface
249 -------------------------------------------------------------------------- */
250
Myron Stoweb26e9282008-11-04 14:53:00 -0700251static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Len Brown4be44fc2005-08-05 00:44:28 -0400253 acpi_status status = 0;
254 union acpi_object object = { 0 };
255 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700256 struct acpi_processor *pr;
257 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400258 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Myron Stoweb26e9282008-11-04 14:53:00 -0700260 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400262 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 if (num_online_cpus() > 1)
265 errata.smp = TRUE;
266
267 acpi_processor_errata(pr);
268
269 /*
270 * Check to see if we have bus mastering arbitration control. This
271 * is required for proper C3 usage (to maintain cache coherency).
272 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300273 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 pr->flags.bm_control = 1;
275 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400276 "Bus mastering arbitration control present\n"));
277 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400279 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600281 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
282 /* Declared with "Processor" statement; match ProcessorID */
283 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
284 if (ACPI_FAILURE(status)) {
285 printk(KERN_ERR PREFIX "Evaluating processor object\n");
286 return -ENODEV;
287 }
288
289 /*
290 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
291 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
292 * arch/xxx/acpi.c
293 */
294 pr->acpi_id = object.processor.proc_id;
295 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700296 /*
297 * Declared with "Device" statement; match _UID.
298 * Note that we don't handle string _UIDs yet.
299 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400300 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300301 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
302 NULL, &value);
303 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700304 printk(KERN_ERR PREFIX
305 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300306 return -ENODEV;
307 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700308 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300309 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Alex Chiang2e9d5e42010-02-22 12:11:19 -0700311 cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Len Brown4be44fc2005-08-05 00:44:28 -0400313 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500314 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400315 (num_online_cpus() == 1)) {
316 cpu_index = 0;
317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Len Brown4be44fc2005-08-05 00:44:28 -0400319 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Len Brown4be44fc2005-08-05 00:44:28 -0400321 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Len Brown4be44fc2005-08-05 00:44:28 -0400323 /*
324 * Extra Processor objects may be enumerated on MP systems with
325 * less than the max # of CPUs. They should be ignored _iff
326 * they are physically not present.
327 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300328 if (pr->id == -1) {
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100329 if (ACPI_FAILURE(acpi_processor_hotadd_init(pr)))
Patrick Mocheld550d982006-06-27 00:41:40 -0400330 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400331 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800332 /*
333 * On some boxes several processors use the same processor bus id.
334 * But they are located in different scope. For example:
335 * \_SB.SCK0.CPU0
336 * \_SB.SCK1.CPU0
337 * Rename the processor device bus id. And the new bus id will be
338 * generated as the following format:
339 * CPU+CPU ID.
340 */
341 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400343 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 if (!object.processor.pblk_address)
346 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
347 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400348 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
349 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 else {
351 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300352 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
353 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 pr->pblk = object.processor.pblk_address;
356
357 /*
358 * We don't care about error returns - we just try to mark
359 * these reserved so that nobody else is confused into thinking
360 * that this region might be unused..
361 *
362 * (In particular, allocating the IO range for Cardbus)
363 */
364 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
365 }
366
Alex Chiangfe086a72008-04-29 15:05:29 -0700367 /*
368 * If ACPI describes a slot number for this CPU, we can use it
369 * ensure we get the right value in the "physical id" field
370 * of /proc/cpuinfo
371 */
372 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
373 if (ACPI_SUCCESS(status))
374 arch_fix_phys_package_id(pr->id, object.integer.value);
375
Patrick Mocheld550d982006-06-27 00:41:40 -0400376 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Mike Travis706546d2008-06-09 16:22:23 -0700379static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400380
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000381static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000383 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300384 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400387 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 switch (event) {
390 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300391 saved = pr->performance_platform_limit;
Zhao Yakuid81c45e12009-10-16 09:20:41 +0800392 acpi_processor_ppc_has_changed(pr, 1);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300393 if (saved == pr->performance_platform_limit)
394 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400395 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400396 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800397 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100398 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800399 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 break;
401 case ACPI_PROCESSOR_NOTIFY_POWER:
402 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400403 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800404 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100405 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 break;
Luming Yu01854e62007-05-26 22:49:58 +0800407 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
408 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400409 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800410 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100411 dev_name(&device->dev), event, 0);
Alan Cox879dca02012-10-26 01:05:56 +0200412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 default:
414 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400415 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 break;
417 }
418
Patrick Mocheld550d982006-06-27 00:41:40 -0400419 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200422static int acpi_cpu_soft_notify(struct notifier_block *nfb,
423 unsigned long action, void *hcpu)
424{
425 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700426 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200427
428 if (action == CPU_ONLINE && pr) {
Thomas Renninger99b72502012-01-19 18:18:43 +0100429 /* CPU got physically hotplugged and onlined the first time:
430 * Initialize missing things
431 */
432 if (pr->flags.need_hotplug_init) {
Thomas Renninger99b72502012-01-19 18:18:43 +0100433 printk(KERN_INFO "Will online and init hotplugged "
434 "CPU: %d\n", pr->id);
435 WARN(acpi_processor_start(pr), "Failed to start CPU:"
436 " %d\n", pr->id);
437 pr->flags.need_hotplug_init = 0;
Thomas Renninger99b72502012-01-19 18:18:43 +0100438 /* Normal CPU soft online event */
439 } else {
440 acpi_processor_ppc_has_changed(pr, 0);
Feng Tangb7db60f2012-07-31 12:44:43 +0800441 acpi_processor_hotplug(pr);
Thomas Renninger99b72502012-01-19 18:18:43 +0100442 acpi_processor_reevaluate_tstate(pr, action);
443 acpi_processor_tstate_has_changed(pr);
444 }
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200445 }
Zhao Yakui5a344a52011-01-10 16:35:45 +0800446 if (action == CPU_DEAD && pr) {
447 /* invalidate the flag.throttling after one CPU is offline */
448 acpi_processor_reevaluate_tstate(pr, action);
449 }
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200450 return NOTIFY_OK;
451}
452
453static struct notifier_block acpi_cpu_notifier =
454{
455 .notifier_call = acpi_cpu_soft_notify,
456};
457
Thomas Renninger99b72502012-01-19 18:18:43 +0100458/*
459 * acpi_processor_start() is called by the cpu_hotplug_notifier func:
460 * acpi_cpu_soft_notify(). Getting it __cpuinit{data} is difficult, the
461 * root cause seem to be that acpi_processor_uninstall_hotplug_notify()
462 * is in the module_exit (__exit) func. Allowing acpi_processor_start()
463 * to not be in __cpuinit section, but being called from __cpuinit funcs
464 * via __ref looks like the right thing to do here.
465 */
466static __ref int acpi_processor_start(struct acpi_processor *pr)
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100467{
468 struct acpi_device *device = per_cpu(processor_device_array, pr->id);
469 int result = 0;
470
471#ifdef CONFIG_CPU_FREQ
472 acpi_processor_ppc_has_changed(pr, 0);
Yinghai Lu976a0be2012-02-07 11:45:57 -0800473 acpi_processor_load_module(pr);
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100474#endif
475 acpi_processor_get_throttling_info(pr);
476 acpi_processor_get_limit_info(pr);
477
478 if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
Daniel Lezcano38a991b2012-09-15 22:42:54 +0200479 acpi_processor_power_init(pr);
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100480
481 pr->cdev = thermal_cooling_device_register("Processor", device,
482 &processor_cooling_ops);
483 if (IS_ERR(pr->cdev)) {
484 result = PTR_ERR(pr->cdev);
485 goto err_power_exit;
486 }
487
488 dev_dbg(&device->dev, "registered as cooling_device%d\n",
489 pr->cdev->id);
490
491 result = sysfs_create_link(&device->dev.kobj,
492 &pr->cdev->device.kobj,
493 "thermal_cooling");
494 if (result) {
495 printk(KERN_ERR PREFIX "Create sysfs link\n");
496 goto err_thermal_unregister;
497 }
498 result = sysfs_create_link(&pr->cdev->device.kobj,
499 &device->dev.kobj,
500 "device");
501 if (result) {
502 printk(KERN_ERR PREFIX "Create sysfs link\n");
503 goto err_remove_sysfs_thermal;
504 }
505
506 return 0;
507
508err_remove_sysfs_thermal:
509 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
510err_thermal_unregister:
511 thermal_cooling_device_unregister(pr->cdev);
512err_power_exit:
Daniel Lezcano38a991b2012-09-15 22:42:54 +0200513 acpi_processor_power_exit(pr);
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100514
515 return result;
516}
517
Thomas Renninger99b72502012-01-19 18:18:43 +0100518/*
519 * Do not put anything in here which needs the core to be online.
520 * For example MSR access or setting up things which check for cpuinfo_x86
521 * (cpu_data(cpu)) values, like CPU feature flags, family, model, etc.
522 * Such things have to be put in and set up above in acpi_processor_start()
523 */
Rakib Mullick941b10f2009-11-05 16:51:40 -0500524static int __cpuinit acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Len Brown4be44fc2005-08-05 00:44:28 -0400526 struct acpi_processor *pr = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000527 int result = 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800528 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Burman Yan36bcbec2006-12-19 12:56:11 -0800530 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400532 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Yinghai Lueaa95842009-06-06 14:51:36 -0700534 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
Julia Lawallc80f5b32012-03-15 09:32:05 +0100535 result = -ENOMEM;
536 goto err_free_pr;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800537 }
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 pr->handle = device->handle;
540 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
541 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700542 device->driver_data = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 result = acpi_processor_get_info(device);
545 if (result) {
546 /* Processor is physically not present */
547 return 0;
548 }
549
Thomas Renninger75cbfb92010-05-26 17:03:33 +0200550#ifdef CONFIG_SMP
551 if (pr->id >= setup_max_cpus && pr->id != 0)
552 return 0;
553#endif
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
556
557 /*
558 * Buggy BIOS check
559 * ACPI id of processors can be reported wrongly by the BIOS.
560 * Don't trust it blindly
561 */
562 if (per_cpu(processor_device_array, pr->id) != NULL &&
563 per_cpu(processor_device_array, pr->id) != device) {
564 printk(KERN_WARNING "BIOS reported wrong ACPI id "
565 "for the processor\n");
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000566 result = -ENODEV;
567 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569 per_cpu(processor_device_array, pr->id) = device;
570
571 per_cpu(processors, pr->id) = pr;
572
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800573 dev = get_cpu_device(pr->id);
574 if (sysfs_create_link(&device->dev.kobj, &dev->kobj, "sysdev")) {
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000575 result = -EFAULT;
Julia Lawallc80f5b32012-03-15 09:32:05 +0100576 goto err_clear_processor;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Thomas Renninger99b72502012-01-19 18:18:43 +0100579 /*
580 * Do not start hotplugged CPUs now, but when they
581 * are onlined the first time
582 */
583 if (pr->flags.need_hotplug_init)
584 return 0;
585
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100586 result = acpi_processor_start(pr);
587 if (result)
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000588 goto err_remove_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Patrick Mocheld550d982006-06-27 00:41:40 -0400590 return 0;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000591
592err_remove_sysfs:
Thomas Renninger3333ea72011-11-17 23:37:00 +0100593 sysfs_remove_link(&device->dev.kobj, "sysdev");
Julia Lawallc80f5b32012-03-15 09:32:05 +0100594err_clear_processor:
595 /*
596 * processor_device_array is not cleared to allow checks for buggy BIOS
597 */
598 per_cpu(processors, pr->id) = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000599err_free_cpumask:
600 free_cpumask_var(pr->throttling.shared_cpu_map);
Julia Lawallc80f5b32012-03-15 09:32:05 +0100601err_free_pr:
602 kfree(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Len Brown4be44fc2005-08-05 00:44:28 -0400606static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Len Brown4be44fc2005-08-05 00:44:28 -0400608 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400612 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200614 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800616 if (pr->id >= nr_cpu_ids)
617 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 if (type == ACPI_BUS_REMOVAL_EJECT) {
620 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400621 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
Daniel Lezcano38a991b2012-09-15 22:42:54 +0200624 acpi_processor_power_exit(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Zhang Rui9f1eb992008-04-29 02:36:07 -0400626 sysfs_remove_link(&device->dev.kobj, "sysdev");
627
Zhao Yakuif28bb452008-02-15 08:34:37 +0800628 if (pr->cdev) {
629 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
630 sysfs_remove_link(&pr->cdev->device.kobj, "device");
631 thermal_cooling_device_unregister(pr->cdev);
632 pr->cdev = NULL;
633 }
Zhang Ruid9460fd222008-01-17 15:51:23 +0800634
Mike Travis706546d2008-06-09 16:22:23 -0700635 per_cpu(processors, pr->id) = NULL;
636 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800637
638free:
639 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 kfree(pr);
641
Patrick Mocheld550d982006-06-27 00:41:40 -0400642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645#ifdef CONFIG_ACPI_HOTPLUG_CPU
646/****************************************************************************
647 * Acpi processor hotplug support *
648 ****************************************************************************/
649
Len Brown4be44fc2005-08-05 00:44:28 -0400650static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Len Brown4be44fc2005-08-05 00:44:28 -0400652 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400653 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500657
658 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
659 return 1;
660
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500661 /*
662 * _STA is mandatory for a processor that supports hot plug
663 */
664 if (status == AE_NOT_FOUND)
665 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
666 "Processor does not support hot plug\n"));
667 else
668 ACPI_EXCEPTION((AE_INFO, status,
669 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500670 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673static
Len Brown4be44fc2005-08-05 00:44:28 -0400674int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Len Brown4be44fc2005-08-05 00:44:28 -0400676 acpi_handle phandle;
677 struct acpi_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400681 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
684 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400685 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
688 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691
Patrick Mocheld550d982006-06-27 00:41:40 -0400692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Jan Beulich6430c9c2011-02-17 16:33:53 +0000695static void acpi_processor_hotplug_notify(acpi_handle handle,
696 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Len Brown4be44fc2005-08-05 00:44:28 -0400698 struct acpi_processor *pr;
699 struct acpi_device *device = NULL;
Toshi Kani51af3b92012-05-23 20:25:21 -0600700 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 int result;
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 switch (event) {
704 case ACPI_NOTIFY_BUS_CHECK:
705 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800706 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
707 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400708 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800709 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (!is_processor_present(handle))
712 break;
713
Toshi Kani51af3b92012-05-23 20:25:21 -0600714 if (!acpi_bus_get_device(handle, &device))
715 break;
716
717 result = acpi_processor_device_add(handle, &device);
718 if (result) {
719 printk(KERN_ERR PREFIX "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 break;
721 }
Toshi Kani51af3b92012-05-23 20:25:21 -0600722
723 ost_code = ACPI_OST_SC_SUCCESS;
Len Brown4be44fc2005-08-05 00:44:28 -0400724 break;
Toshi Kani51af3b92012-05-23 20:25:21 -0600725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400727 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
728 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400731 printk(KERN_ERR PREFIX
732 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
734 }
735 pr = acpi_driver_data(device);
736 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400737 printk(KERN_ERR PREFIX
738 "Driver data is NULL, dropping EJECT\n");
Toshi Kani51af3b92012-05-23 20:25:21 -0600739 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Toshi Kani51af3b92012-05-23 20:25:21 -0600741
742 /* REVISIT: update when eject is supported */
743 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 break;
Toshi Kani51af3b92012-05-23 20:25:21 -0600745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 default:
747 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400748 "Unsupported event [0x%x]\n", event));
Toshi Kani51af3b92012-05-23 20:25:21 -0600749
750 /* non-hotplug event; possibly handled by other handler */
751 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
Toshi Kani51af3b92012-05-23 20:25:21 -0600754 /* Inform firmware that the hotplug operation has completed */
755 (void) acpi_evaluate_hotplug_ost(handle, event, ost_code, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -0400756 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Toshi Kani9f324bd2012-03-19 13:08:02 -0600759static acpi_status is_processor_device(acpi_handle handle)
760{
761 struct acpi_device_info *info;
762 char *hid;
763 acpi_status status;
764
765 status = acpi_get_object_info(handle, &info);
766 if (ACPI_FAILURE(status))
767 return status;
768
769 if (info->type == ACPI_TYPE_PROCESSOR) {
770 kfree(info);
771 return AE_OK; /* found a processor object */
772 }
773
774 if (!(info->valid & ACPI_VALID_HID)) {
775 kfree(info);
776 return AE_ERROR;
777 }
778
779 hid = info->hardware_id.string;
780 if ((hid == NULL) || strcmp(hid, ACPI_PROCESSOR_DEVICE_HID)) {
781 kfree(info);
782 return AE_ERROR;
783 }
784
785 kfree(info);
786 return AE_OK; /* found a processor device object */
787}
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789static acpi_status
790processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400791 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Len Brown4be44fc2005-08-05 00:44:28 -0400793 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int *action = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Toshi Kani9f324bd2012-03-19 13:08:02 -0600796 status = is_processor_device(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (ACPI_FAILURE(status))
Toshi Kani9f324bd2012-03-19 13:08:02 -0600798 return AE_OK; /* not a processor; continue to walk */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Len Brown4be44fc2005-08-05 00:44:28 -0400800 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 case INSTALL_NOTIFY_HANDLER:
802 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400803 ACPI_SYSTEM_NOTIFY,
804 acpi_processor_hotplug_notify,
805 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 break;
807 case UNINSTALL_NOTIFY_HANDLER:
808 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400809 ACPI_SYSTEM_NOTIFY,
810 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 break;
812 default:
813 break;
814 }
815
Toshi Kani9f324bd2012-03-19 13:08:02 -0600816 /* found a processor; skip walking underneath */
817 return AE_CTRL_DEPTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100820static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100822 acpi_handle handle = pr->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400825 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100828 if (acpi_map_lsapic(handle, &pr->id))
Patrick Mocheld550d982006-06-27 00:41:40 -0400829 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100831 if (arch_register_cpu(pr->id)) {
832 acpi_unmap_lsapic(pr->id);
Patrick Mocheld550d982006-06-27 00:41:40 -0400833 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835
Thomas Renninger99b72502012-01-19 18:18:43 +0100836 /* CPU got hot-plugged, but cpu_data is not initialized yet
837 * Set flag to delay cpu_idle/throttling initialization
838 * in:
839 * acpi_processor_add()
840 * acpi_processor_get_info()
841 * and do it when the CPU gets online the first time
842 * TBD: Cleanup above functions and try to do this more elegant.
843 */
844 printk(KERN_INFO "CPU %d got hotplugged\n", pr->id);
845 pr->flags.need_hotplug_init = 1;
846
Patrick Mocheld550d982006-06-27 00:41:40 -0400847 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Len Brown4be44fc2005-08-05 00:44:28 -0400850static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Zhang Ruib62b8ef2008-04-29 02:35:56 -0400852 if (cpu_online(pr->id))
853 cpu_down(pr->id);
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 arch_unregister_cpu(pr->id);
856 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400857 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859#else
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100860static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 return AE_ERROR;
863}
Len Brown4be44fc2005-08-05 00:44:28 -0400864static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Len Brown4be44fc2005-08-05 00:44:28 -0400866 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868#endif
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870static
871void acpi_processor_install_hotplug_notify(void)
872{
873#ifdef CONFIG_ACPI_HOTPLUG_CPU
874 int action = INSTALL_NOTIFY_HANDLER;
Toshi Kani9f324bd2012-03-19 13:08:02 -0600875 acpi_walk_namespace(ACPI_TYPE_ANY,
Len Brown4be44fc2005-08-05 00:44:28 -0400876 ACPI_ROOT_OBJECT,
877 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800878 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200880 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883static
884void acpi_processor_uninstall_hotplug_notify(void)
885{
886#ifdef CONFIG_ACPI_HOTPLUG_CPU
887 int action = UNINSTALL_NOTIFY_HANDLER;
Toshi Kani9f324bd2012-03-19 13:08:02 -0600888 acpi_walk_namespace(ACPI_TYPE_ANY,
Len Brown4be44fc2005-08-05 00:44:28 -0400889 ACPI_ROOT_OBJECT,
890 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800891 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200893 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
896/*
897 * We keep the driver loaded even when ACPI is not running.
898 * This is needed for the powernow-k8 driver, that works even without
899 * ACPI, but needs symbols from this driver
900 */
901
Len Brown4be44fc2005-08-05 00:44:28 -0400902static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Len Brown4be44fc2005-08-05 00:44:28 -0400904 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Yinghai Luce8442b2009-08-26 14:29:26 -0700906 if (acpi_disabled)
907 return 0;
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -0400910 if (result < 0)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530911 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 acpi_processor_install_hotplug_notify();
914
915 acpi_thermal_cpufreq_init();
916
917 acpi_processor_ppc_init();
918
Zhao Yakui11805092008-01-28 13:53:42 +0800919 acpi_processor_throttling_init();
920
Patrick Mocheld550d982006-06-27 00:41:40 -0400921 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Len Brown4be44fc2005-08-05 00:44:28 -0400924static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Yinghai Luce8442b2009-08-26 14:29:26 -0700926 if (acpi_disabled)
927 return;
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 acpi_processor_ppc_exit();
930
931 acpi_thermal_cpufreq_exit();
932
933 acpi_processor_uninstall_hotplug_notify();
934
935 acpi_bus_unregister_driver(&acpi_processor_driver);
936
Patrick Mocheld550d982006-06-27 00:41:40 -0400937 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940module_init(acpi_processor_init);
941module_exit(acpi_processor_exit);
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943MODULE_ALIAS("processor");