blob: d4d9cb7e016a0b2d5ea5663f039ae905f77ce92c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#define ACPI_PROCESSOR_LIMIT_USER 0
72#define ACPI_PROCESSOR_LIMIT_THERMAL 1
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Alex Chiang0131aa32010-02-22 12:11:08 -070075ACPI_MODULE_NAME("processor_driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Len Brownf52fd662007-02-12 22:42:12 -050077MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050078MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_LICENSE("GPL");
80
Len Brown4be44fc2005-08-05 00:44:28 -040081static int acpi_processor_add(struct acpi_device *device);
Len Brown4be44fc2005-08-05 00:44:28 -040082static int acpi_processor_remove(struct acpi_device *device, int type);
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +000083static void acpi_processor_notify(struct acpi_device *device, u32 event);
Thomas Renninger3bd81a82012-01-17 22:40:07 +010084static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static int acpi_processor_handle_eject(struct acpi_processor *pr);
Thomas Renninger99b72502012-01-19 18:18:43 +010086static int acpi_processor_start(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Thomas Renninger1ba90e32007-07-23 14:44:41 +020088static const struct acpi_device_id processor_device_ids[] = {
Myron Stowead93a762008-11-04 14:52:55 -070089 {ACPI_PROCESSOR_OBJECT_HID, 0},
Bjorn Helgaas9eccbc22009-04-27 16:33:46 -060090 {"ACPI0007", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020091 {"", 0},
92};
93MODULE_DEVICE_TABLE(acpi, processor_device_ids);
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static struct acpi_driver acpi_processor_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050096 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -040097 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020098 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040099 .ops = {
100 .add = acpi_processor_add,
101 .remove = acpi_processor_remove,
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000102 .suspend = acpi_processor_suspend,
103 .resume = acpi_processor_resume,
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000104 .notify = acpi_processor_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400105 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
108#define INSTALL_NOTIFY_HANDLER 1
109#define UNINSTALL_NOTIFY_HANDLER 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Mike Travis706546d2008-06-09 16:22:23 -0700111DEFINE_PER_CPU(struct acpi_processor *, processors);
Naga Chumbalkar0f1d6832009-12-17 20:18:27 +0000112EXPORT_PER_CPU_SYMBOL(processors);
113
Andreas Mohr9f222712006-06-23 02:04:27 -0700114struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/* --------------------------------------------------------------------------
117 Errata Handling
118 -------------------------------------------------------------------------- */
119
Len Brown4be44fc2005-08-05 00:44:28 -0400120static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Len Brown4be44fc2005-08-05 00:44:28 -0400122 u8 value1 = 0;
123 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400127 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /*
130 * Note that 'dev' references the PIIX4 ACPI Controller.
131 */
132
Auke Kok44c10132007-06-08 15:46:36 -0700133 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 case 0:
135 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
136 break;
137 case 1:
138 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
139 break;
140 case 2:
141 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
142 break;
143 case 3:
144 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
145 break;
146 default:
147 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
148 break;
149 }
150
Auke Kok44c10132007-06-08 15:46:36 -0700151 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 case 0: /* PIIX4 A-step */
154 case 1: /* PIIX4 B-step */
155 /*
156 * See specification changes #13 ("Manual Throttle Duty Cycle")
157 * and #14 ("Enabling and Disabling Manual Throttle"), plus
158 * erratum #5 ("STPCLK# Deassertion Time") from the January
159 * 2002 PIIX4 specification update. Applies to only older
160 * PIIX4 models.
161 */
162 errata.piix4.throttle = 1;
163
164 case 2: /* PIIX4E */
165 case 3: /* PIIX4M */
166 /*
167 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
168 * Livelock") from the January 2002 PIIX4 specification update.
169 * Applies to all PIIX4 models.
170 */
171
172 /*
173 * BM-IDE
174 * ------
175 * Find the PIIX4 IDE Controller and get the Bus Master IDE
176 * Status register address. We'll use this later to read
177 * each IDE controller's DMA status to make sure we catch all
178 * DMA activity.
179 */
180 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400181 PCI_DEVICE_ID_INTEL_82371AB,
182 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (dev) {
184 errata.piix4.bmisx = pci_resource_start(dev, 4);
185 pci_dev_put(dev);
186 }
187
188 /*
189 * Type-F DMA
190 * ----------
191 * Find the PIIX4 ISA Controller and read the Motherboard
192 * DMA controller's status to see if Type-F (Fast) DMA mode
193 * is enabled (bit 7) on either channel. Note that we'll
194 * disable C3 support if this is enabled, as some legacy
195 * devices won't operate well if fast DMA is disabled.
196 */
197 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400198 PCI_DEVICE_ID_INTEL_82371AB_0,
199 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (dev) {
201 pci_read_config_byte(dev, 0x76, &value1);
202 pci_read_config_byte(dev, 0x77, &value2);
203 if ((value1 & 0x80) || (value2 & 0x80))
204 errata.piix4.fdma = 1;
205 pci_dev_put(dev);
206 }
207
208 break;
209 }
210
211 if (errata.piix4.bmisx)
212 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400213 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (errata.piix4.fdma)
215 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400216 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Patrick Mocheld550d982006-06-27 00:41:40 -0400218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400221static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Len Brown4be44fc2005-08-05 00:44:28 -0400223 int result = 0;
224 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400228 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /*
231 * PIIX4
232 */
233 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400234 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
235 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (dev) {
237 result = acpi_processor_errata_piix4(dev);
238 pci_dev_put(dev);
239 }
240
Patrick Mocheld550d982006-06-27 00:41:40 -0400241 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/* --------------------------------------------------------------------------
245 Driver Interface
246 -------------------------------------------------------------------------- */
247
Myron Stoweb26e9282008-11-04 14:53:00 -0700248static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Len Brown4be44fc2005-08-05 00:44:28 -0400250 acpi_status status = 0;
251 union acpi_object object = { 0 };
252 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700253 struct acpi_processor *pr;
254 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400255 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Myron Stoweb26e9282008-11-04 14:53:00 -0700257 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400259 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 if (num_online_cpus() > 1)
262 errata.smp = TRUE;
263
264 acpi_processor_errata(pr);
265
266 /*
267 * Check to see if we have bus mastering arbitration control. This
268 * is required for proper C3 usage (to maintain cache coherency).
269 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300270 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 pr->flags.bm_control = 1;
272 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400273 "Bus mastering arbitration control present\n"));
274 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400276 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600278 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
279 /* Declared with "Processor" statement; match ProcessorID */
280 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
281 if (ACPI_FAILURE(status)) {
282 printk(KERN_ERR PREFIX "Evaluating processor object\n");
283 return -ENODEV;
284 }
285
286 /*
287 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
288 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
289 * arch/xxx/acpi.c
290 */
291 pr->acpi_id = object.processor.proc_id;
292 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700293 /*
294 * Declared with "Device" statement; match _UID.
295 * Note that we don't handle string _UIDs yet.
296 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400297 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300298 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
299 NULL, &value);
300 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700301 printk(KERN_ERR PREFIX
302 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300303 return -ENODEV;
304 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700305 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300306 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Alex Chiang2e9d5e42010-02-22 12:11:19 -0700308 cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Len Brown4be44fc2005-08-05 00:44:28 -0400310 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500311 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400312 (num_online_cpus() == 1)) {
313 cpu_index = 0;
314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Len Brown4be44fc2005-08-05 00:44:28 -0400316 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Len Brown4be44fc2005-08-05 00:44:28 -0400320 /*
321 * Extra Processor objects may be enumerated on MP systems with
322 * less than the max # of CPUs. They should be ignored _iff
323 * they are physically not present.
324 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300325 if (pr->id == -1) {
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100326 if (ACPI_FAILURE(acpi_processor_hotadd_init(pr)))
Patrick Mocheld550d982006-06-27 00:41:40 -0400327 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400328 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800329 /*
330 * On some boxes several processors use the same processor bus id.
331 * But they are located in different scope. For example:
332 * \_SB.SCK0.CPU0
333 * \_SB.SCK1.CPU0
334 * Rename the processor device bus id. And the new bus id will be
335 * generated as the following format:
336 * CPU+CPU ID.
337 */
338 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400340 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 if (!object.processor.pblk_address)
343 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
344 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400345 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
346 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 else {
348 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300349 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
350 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 pr->pblk = object.processor.pblk_address;
353
354 /*
355 * We don't care about error returns - we just try to mark
356 * these reserved so that nobody else is confused into thinking
357 * that this region might be unused..
358 *
359 * (In particular, allocating the IO range for Cardbus)
360 */
361 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
362 }
363
Alex Chiangfe086a72008-04-29 15:05:29 -0700364 /*
365 * If ACPI describes a slot number for this CPU, we can use it
366 * ensure we get the right value in the "physical id" field
367 * of /proc/cpuinfo
368 */
369 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
370 if (ACPI_SUCCESS(status))
371 arch_fix_phys_package_id(pr->id, object.integer.value);
372
Patrick Mocheld550d982006-06-27 00:41:40 -0400373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Mike Travis706546d2008-06-09 16:22:23 -0700376static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400377
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000378static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000380 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300381 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400384 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 switch (event) {
387 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300388 saved = pr->performance_platform_limit;
Zhao Yakuid81c45e2009-10-16 09:20:41 +0800389 acpi_processor_ppc_has_changed(pr, 1);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300390 if (saved == pr->performance_platform_limit)
391 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400392 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400393 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800394 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100395 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800396 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 break;
398 case ACPI_PROCESSOR_NOTIFY_POWER:
399 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400400 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800401 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100402 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 break;
Luming Yu01854e62007-05-26 22:49:58 +0800404 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
405 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400406 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800407 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100408 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 default:
410 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400411 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 break;
413 }
414
Patrick Mocheld550d982006-06-27 00:41:40 -0400415 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200418static int acpi_cpu_soft_notify(struct notifier_block *nfb,
419 unsigned long action, void *hcpu)
420{
421 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700422 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200423
424 if (action == CPU_ONLINE && pr) {
Thomas Renninger99b72502012-01-19 18:18:43 +0100425 /* CPU got physically hotplugged and onlined the first time:
426 * Initialize missing things
427 */
428 if (pr->flags.need_hotplug_init) {
429 struct cpuidle_driver *idle_driver =
430 cpuidle_get_driver();
431
432 printk(KERN_INFO "Will online and init hotplugged "
433 "CPU: %d\n", pr->id);
434 WARN(acpi_processor_start(pr), "Failed to start CPU:"
435 " %d\n", pr->id);
436 pr->flags.need_hotplug_init = 0;
437 if (idle_driver && !strcmp(idle_driver->name,
438 "intel_idle")) {
439 intel_idle_cpu_init(pr->id);
440 }
441 /* Normal CPU soft online event */
442 } else {
443 acpi_processor_ppc_has_changed(pr, 0);
444 acpi_processor_cst_has_changed(pr);
445 acpi_processor_reevaluate_tstate(pr, action);
446 acpi_processor_tstate_has_changed(pr);
447 }
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200448 }
Zhao Yakui5a344a52011-01-10 16:35:45 +0800449 if (action == CPU_DEAD && pr) {
450 /* invalidate the flag.throttling after one CPU is offline */
451 acpi_processor_reevaluate_tstate(pr, action);
452 }
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200453 return NOTIFY_OK;
454}
455
456static struct notifier_block acpi_cpu_notifier =
457{
458 .notifier_call = acpi_cpu_soft_notify,
459};
460
Thomas Renninger99b72502012-01-19 18:18:43 +0100461/*
462 * acpi_processor_start() is called by the cpu_hotplug_notifier func:
463 * acpi_cpu_soft_notify(). Getting it __cpuinit{data} is difficult, the
464 * root cause seem to be that acpi_processor_uninstall_hotplug_notify()
465 * is in the module_exit (__exit) func. Allowing acpi_processor_start()
466 * to not be in __cpuinit section, but being called from __cpuinit funcs
467 * via __ref looks like the right thing to do here.
468 */
469static __ref int acpi_processor_start(struct acpi_processor *pr)
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100470{
471 struct acpi_device *device = per_cpu(processor_device_array, pr->id);
472 int result = 0;
473
474#ifdef CONFIG_CPU_FREQ
475 acpi_processor_ppc_has_changed(pr, 0);
Yinghai Lu976a0be2012-02-07 11:45:57 -0800476 acpi_processor_load_module(pr);
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100477#endif
478 acpi_processor_get_throttling_info(pr);
479 acpi_processor_get_limit_info(pr);
480
481 if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
482 acpi_processor_power_init(pr, device);
483
484 pr->cdev = thermal_cooling_device_register("Processor", device,
485 &processor_cooling_ops);
486 if (IS_ERR(pr->cdev)) {
487 result = PTR_ERR(pr->cdev);
488 goto err_power_exit;
489 }
490
491 dev_dbg(&device->dev, "registered as cooling_device%d\n",
492 pr->cdev->id);
493
494 result = sysfs_create_link(&device->dev.kobj,
495 &pr->cdev->device.kobj,
496 "thermal_cooling");
497 if (result) {
498 printk(KERN_ERR PREFIX "Create sysfs link\n");
499 goto err_thermal_unregister;
500 }
501 result = sysfs_create_link(&pr->cdev->device.kobj,
502 &device->dev.kobj,
503 "device");
504 if (result) {
505 printk(KERN_ERR PREFIX "Create sysfs link\n");
506 goto err_remove_sysfs_thermal;
507 }
508
509 return 0;
510
511err_remove_sysfs_thermal:
512 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
513err_thermal_unregister:
514 thermal_cooling_device_unregister(pr->cdev);
515err_power_exit:
516 acpi_processor_power_exit(pr, device);
517
518 return result;
519}
520
Thomas Renninger99b72502012-01-19 18:18:43 +0100521/*
522 * Do not put anything in here which needs the core to be online.
523 * For example MSR access or setting up things which check for cpuinfo_x86
524 * (cpu_data(cpu)) values, like CPU feature flags, family, model, etc.
525 * Such things have to be put in and set up above in acpi_processor_start()
526 */
Rakib Mullick941b10f2009-11-05 16:51:40 -0500527static int __cpuinit acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Len Brown4be44fc2005-08-05 00:44:28 -0400529 struct acpi_processor *pr = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000530 int result = 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800531 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Burman Yan36bcbec2006-12-19 12:56:11 -0800533 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400535 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Yinghai Lueaa958402009-06-06 14:51:36 -0700537 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800538 kfree(pr);
539 return -ENOMEM;
540 }
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 pr->handle = device->handle;
543 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
544 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700545 device->driver_data = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 result = acpi_processor_get_info(device);
548 if (result) {
549 /* Processor is physically not present */
550 return 0;
551 }
552
Thomas Renninger75cbfb92010-05-26 17:03:33 +0200553#ifdef CONFIG_SMP
554 if (pr->id >= setup_max_cpus && pr->id != 0)
555 return 0;
556#endif
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
559
560 /*
561 * Buggy BIOS check
562 * ACPI id of processors can be reported wrongly by the BIOS.
563 * Don't trust it blindly
564 */
565 if (per_cpu(processor_device_array, pr->id) != NULL &&
566 per_cpu(processor_device_array, pr->id) != device) {
567 printk(KERN_WARNING "BIOS reported wrong ACPI id "
568 "for the processor\n");
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000569 result = -ENODEV;
570 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572 per_cpu(processor_device_array, pr->id) = device;
573
574 per_cpu(processors, pr->id) = pr;
575
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800576 dev = get_cpu_device(pr->id);
577 if (sysfs_create_link(&device->dev.kobj, &dev->kobj, "sysdev")) {
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000578 result = -EFAULT;
Zhang Ruicef6e8a2010-12-06 15:04:15 +0800579 goto err_free_cpumask;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Thomas Renninger99b72502012-01-19 18:18:43 +0100582 /*
583 * Do not start hotplugged CPUs now, but when they
584 * are onlined the first time
585 */
586 if (pr->flags.need_hotplug_init)
587 return 0;
588
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100589 result = acpi_processor_start(pr);
590 if (result)
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000591 goto err_remove_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Patrick Mocheld550d982006-06-27 00:41:40 -0400593 return 0;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000594
595err_remove_sysfs:
Thomas Renninger3333ea72011-11-17 23:37:00 +0100596 sysfs_remove_link(&device->dev.kobj, "sysdev");
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000597err_free_cpumask:
598 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Len Brown4be44fc2005-08-05 00:44:28 -0400603static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Len Brown4be44fc2005-08-05 00:44:28 -0400605 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400609 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200611 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800613 if (pr->id >= nr_cpu_ids)
614 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 if (type == ACPI_BUS_REMOVAL_EJECT) {
617 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400618 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620
621 acpi_processor_power_exit(pr, device);
622
Zhang Rui9f1eb992008-04-29 02:36:07 -0400623 sysfs_remove_link(&device->dev.kobj, "sysdev");
624
Zhao Yakuif28bb452008-02-15 08:34:37 +0800625 if (pr->cdev) {
626 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
627 sysfs_remove_link(&pr->cdev->device.kobj, "device");
628 thermal_cooling_device_unregister(pr->cdev);
629 pr->cdev = NULL;
630 }
Zhang Ruid9460fd222008-01-17 15:51:23 +0800631
Mike Travis706546d2008-06-09 16:22:23 -0700632 per_cpu(processors, pr->id) = NULL;
633 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800634
635free:
636 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 kfree(pr);
638
Patrick Mocheld550d982006-06-27 00:41:40 -0400639 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642#ifdef CONFIG_ACPI_HOTPLUG_CPU
643/****************************************************************************
644 * Acpi processor hotplug support *
645 ****************************************************************************/
646
Len Brown4be44fc2005-08-05 00:44:28 -0400647static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Len Brown4be44fc2005-08-05 00:44:28 -0400649 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400650 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500654
655 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
656 return 1;
657
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500658 /*
659 * _STA is mandatory for a processor that supports hot plug
660 */
661 if (status == AE_NOT_FOUND)
662 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
663 "Processor does not support hot plug\n"));
664 else
665 ACPI_EXCEPTION((AE_INFO, status,
666 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500667 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670static
Len Brown4be44fc2005-08-05 00:44:28 -0400671int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Len Brown4be44fc2005-08-05 00:44:28 -0400673 acpi_handle phandle;
674 struct acpi_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400678 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
681 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400682 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684
685 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400686 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Jan Beulich6430c9c2011-02-17 16:33:53 +0000692static void acpi_processor_hotplug_notify(acpi_handle handle,
693 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Len Brown4be44fc2005-08-05 00:44:28 -0400695 struct acpi_processor *pr;
696 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 int result;
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 switch (event) {
701 case ACPI_NOTIFY_BUS_CHECK:
702 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800703 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
704 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400705 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800706 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 if (!is_processor_present(handle))
709 break;
710
711 if (acpi_bus_get_device(handle, &device)) {
712 result = acpi_processor_device_add(handle, &device);
713 if (result)
Len Brown64684632006-06-26 23:41:38 -0400714 printk(KERN_ERR PREFIX
715 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 break;
717 }
Len Brown4be44fc2005-08-05 00:44:28 -0400718 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400720 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
721 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400724 printk(KERN_ERR PREFIX
725 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 break;
727 }
728 pr = acpi_driver_data(device);
729 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400730 printk(KERN_ERR PREFIX
731 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400732 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 break;
735 default:
736 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400737 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 break;
739 }
740
Patrick Mocheld550d982006-06-27 00:41:40 -0400741 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744static acpi_status
745processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400746 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Len Brown4be44fc2005-08-05 00:44:28 -0400748 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400750 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 status = acpi_get_type(handle, &type);
753 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400754 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400757 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Len Brown4be44fc2005-08-05 00:44:28 -0400759 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 case INSTALL_NOTIFY_HANDLER:
761 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400762 ACPI_SYSTEM_NOTIFY,
763 acpi_processor_hotplug_notify,
764 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 break;
766 case UNINSTALL_NOTIFY_HANDLER:
767 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400768 ACPI_SYSTEM_NOTIFY,
769 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 break;
771 default:
772 break;
773 }
774
Len Brown4be44fc2005-08-05 00:44:28 -0400775 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100778static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100780 acpi_handle handle = pr->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400783 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100786 if (acpi_map_lsapic(handle, &pr->id))
Patrick Mocheld550d982006-06-27 00:41:40 -0400787 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100789 if (arch_register_cpu(pr->id)) {
790 acpi_unmap_lsapic(pr->id);
Patrick Mocheld550d982006-06-27 00:41:40 -0400791 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793
Thomas Renninger99b72502012-01-19 18:18:43 +0100794 /* CPU got hot-plugged, but cpu_data is not initialized yet
795 * Set flag to delay cpu_idle/throttling initialization
796 * in:
797 * acpi_processor_add()
798 * acpi_processor_get_info()
799 * and do it when the CPU gets online the first time
800 * TBD: Cleanup above functions and try to do this more elegant.
801 */
802 printk(KERN_INFO "CPU %d got hotplugged\n", pr->id);
803 pr->flags.need_hotplug_init = 1;
804
Patrick Mocheld550d982006-06-27 00:41:40 -0400805 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Len Brown4be44fc2005-08-05 00:44:28 -0400808static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Zhang Ruib62b8ef2008-04-29 02:35:56 -0400810 if (cpu_online(pr->id))
811 cpu_down(pr->id);
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 arch_unregister_cpu(pr->id);
814 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400815 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817#else
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100818static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 return AE_ERROR;
821}
Len Brown4be44fc2005-08-05 00:44:28 -0400822static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Len Brown4be44fc2005-08-05 00:44:28 -0400824 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826#endif
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828static
829void acpi_processor_install_hotplug_notify(void)
830{
831#ifdef CONFIG_ACPI_HOTPLUG_CPU
832 int action = INSTALL_NOTIFY_HANDLER;
833 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400834 ACPI_ROOT_OBJECT,
835 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800836 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200838 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841static
842void acpi_processor_uninstall_hotplug_notify(void)
843{
844#ifdef CONFIG_ACPI_HOTPLUG_CPU
845 int action = UNINSTALL_NOTIFY_HANDLER;
846 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400847 ACPI_ROOT_OBJECT,
848 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800849 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200851 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
854/*
855 * We keep the driver loaded even when ACPI is not running.
856 * This is needed for the powernow-k8 driver, that works even without
857 * ACPI, but needs symbols from this driver
858 */
859
Len Brown4be44fc2005-08-05 00:44:28 -0400860static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Len Brown4be44fc2005-08-05 00:44:28 -0400862 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Yinghai Luce8442b2009-08-26 14:29:26 -0700864 if (acpi_disabled)
865 return 0;
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 memset(&errata, 0, sizeof(errata));
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -0400870 if (result < 0)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530871 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 acpi_processor_install_hotplug_notify();
874
875 acpi_thermal_cpufreq_init();
876
877 acpi_processor_ppc_init();
878
Zhao Yakui11805092008-01-28 13:53:42 +0800879 acpi_processor_throttling_init();
880
Patrick Mocheld550d982006-06-27 00:41:40 -0400881 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
Len Brown4be44fc2005-08-05 00:44:28 -0400884static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Yinghai Luce8442b2009-08-26 14:29:26 -0700886 if (acpi_disabled)
887 return;
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 acpi_processor_ppc_exit();
890
891 acpi_thermal_cpufreq_exit();
892
893 acpi_processor_uninstall_hotplug_notify();
894
895 acpi_bus_unregister_driver(&acpi_processor_driver);
896
Patrick Mocheld550d982006-06-27 00:41:40 -0400897 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900module_init(acpi_processor_init);
901module_exit(acpi_processor_exit);
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903MODULE_ALIAS("processor");