blob: fce0066aa4a4aa89e596524666a0115fb5aabeb3 [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>
49#include <asm/system.h>
50#include <asm/cpu.h>
51#include <asm/delay.h>
52#include <asm/uaccess.h>
53#include <asm/processor.h>
54#include <asm/smp.h>
55#include <asm/acpi.h>
56
57#include <acpi/acpi_bus.h>
58#include <acpi/acpi_drivers.h>
59#include <acpi/processor.h>
60
Len Browna192a952009-07-28 16:45:54 -040061#define PREFIX "ACPI: "
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
65#define ACPI_PROCESSOR_FILE_INFO "info"
66#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
67#define ACPI_PROCESSOR_FILE_LIMIT "limit"
68#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
69#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
Luming Yu01854e62007-05-26 22:49:58 +080070#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
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},
Bjorn Helgaas9eccbc22009-04-27 16:33:46 -060091 {"ACPI0007", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020092 {"", 0},
93};
94MODULE_DEVICE_TABLE(acpi, processor_device_ids);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static struct acpi_driver acpi_processor_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050097 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -040098 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020099 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400100 .ops = {
101 .add = acpi_processor_add,
102 .remove = acpi_processor_remove,
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000103 .suspend = acpi_processor_suspend,
104 .resume = acpi_processor_resume,
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000105 .notify = acpi_processor_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400106 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
109#define INSTALL_NOTIFY_HANDLER 1
110#define UNINSTALL_NOTIFY_HANDLER 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Mike Travis706546d2008-06-09 16:22:23 -0700112DEFINE_PER_CPU(struct acpi_processor *, processors);
Naga Chumbalkar0f1d6832009-12-17 20:18:27 +0000113EXPORT_PER_CPU_SYMBOL(processors);
114
Andreas Mohr9f222712006-06-23 02:04:27 -0700115struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/* --------------------------------------------------------------------------
118 Errata Handling
119 -------------------------------------------------------------------------- */
120
Len Brown4be44fc2005-08-05 00:44:28 -0400121static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Len Brown4be44fc2005-08-05 00:44:28 -0400123 u8 value1 = 0;
124 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400128 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 /*
131 * Note that 'dev' references the PIIX4 ACPI Controller.
132 */
133
Auke Kok44c10132007-06-08 15:46:36 -0700134 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 case 0:
136 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
137 break;
138 case 1:
139 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
140 break;
141 case 2:
142 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
143 break;
144 case 3:
145 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
146 break;
147 default:
148 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
149 break;
150 }
151
Auke Kok44c10132007-06-08 15:46:36 -0700152 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 case 0: /* PIIX4 A-step */
155 case 1: /* PIIX4 B-step */
156 /*
157 * See specification changes #13 ("Manual Throttle Duty Cycle")
158 * and #14 ("Enabling and Disabling Manual Throttle"), plus
159 * erratum #5 ("STPCLK# Deassertion Time") from the January
160 * 2002 PIIX4 specification update. Applies to only older
161 * PIIX4 models.
162 */
163 errata.piix4.throttle = 1;
164
165 case 2: /* PIIX4E */
166 case 3: /* PIIX4M */
167 /*
168 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
169 * Livelock") from the January 2002 PIIX4 specification update.
170 * Applies to all PIIX4 models.
171 */
172
173 /*
174 * BM-IDE
175 * ------
176 * Find the PIIX4 IDE Controller and get the Bus Master IDE
177 * Status register address. We'll use this later to read
178 * each IDE controller's DMA status to make sure we catch all
179 * DMA activity.
180 */
181 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400182 PCI_DEVICE_ID_INTEL_82371AB,
183 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (dev) {
185 errata.piix4.bmisx = pci_resource_start(dev, 4);
186 pci_dev_put(dev);
187 }
188
189 /*
190 * Type-F DMA
191 * ----------
192 * Find the PIIX4 ISA Controller and read the Motherboard
193 * DMA controller's status to see if Type-F (Fast) DMA mode
194 * is enabled (bit 7) on either channel. Note that we'll
195 * disable C3 support if this is enabled, as some legacy
196 * devices won't operate well if fast DMA is disabled.
197 */
198 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400199 PCI_DEVICE_ID_INTEL_82371AB_0,
200 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (dev) {
202 pci_read_config_byte(dev, 0x76, &value1);
203 pci_read_config_byte(dev, 0x77, &value2);
204 if ((value1 & 0x80) || (value2 & 0x80))
205 errata.piix4.fdma = 1;
206 pci_dev_put(dev);
207 }
208
209 break;
210 }
211
212 if (errata.piix4.bmisx)
213 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400214 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (errata.piix4.fdma)
216 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400217 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Patrick Mocheld550d982006-06-27 00:41:40 -0400219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400222static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Len Brown4be44fc2005-08-05 00:44:28 -0400224 int result = 0;
225 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400229 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /*
232 * PIIX4
233 */
234 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400235 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
236 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (dev) {
238 result = acpi_processor_errata_piix4(dev);
239 pci_dev_put(dev);
240 }
241
Patrick Mocheld550d982006-06-27 00:41:40 -0400242 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/* --------------------------------------------------------------------------
246 Driver Interface
247 -------------------------------------------------------------------------- */
248
Myron Stoweb26e9282008-11-04 14:53:00 -0700249static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Len Brown4be44fc2005-08-05 00:44:28 -0400251 acpi_status status = 0;
252 union acpi_object object = { 0 };
253 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700254 struct acpi_processor *pr;
255 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400256 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Myron Stoweb26e9282008-11-04 14:53:00 -0700258 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400260 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 if (num_online_cpus() > 1)
263 errata.smp = TRUE;
264
265 acpi_processor_errata(pr);
266
267 /*
268 * Check to see if we have bus mastering arbitration control. This
269 * is required for proper C3 usage (to maintain cache coherency).
270 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300271 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 pr->flags.bm_control = 1;
273 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400274 "Bus mastering arbitration control present\n"));
275 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400277 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600279 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
280 /* Declared with "Processor" statement; match ProcessorID */
281 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
282 if (ACPI_FAILURE(status)) {
283 printk(KERN_ERR PREFIX "Evaluating processor object\n");
284 return -ENODEV;
285 }
286
287 /*
288 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
289 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
290 * arch/xxx/acpi.c
291 */
292 pr->acpi_id = object.processor.proc_id;
293 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700294 /*
295 * Declared with "Device" statement; match _UID.
296 * Note that we don't handle string _UIDs yet.
297 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400298 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300299 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
300 NULL, &value);
301 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700302 printk(KERN_ERR PREFIX
303 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300304 return -ENODEV;
305 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700306 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300307 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Alex Chiang2e9d5e42010-02-22 12:11:19 -0700309 cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Len Brown4be44fc2005-08-05 00:44:28 -0400311 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500312 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400313 (num_online_cpus() == 1)) {
314 cpu_index = 0;
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Len Brown4be44fc2005-08-05 00:44:28 -0400317 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Len Brown4be44fc2005-08-05 00:44:28 -0400319 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Len Brown4be44fc2005-08-05 00:44:28 -0400321 /*
322 * Extra Processor objects may be enumerated on MP systems with
323 * less than the max # of CPUs. They should be ignored _iff
324 * they are physically not present.
325 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300326 if (pr->id == -1) {
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100327 if (ACPI_FAILURE(acpi_processor_hotadd_init(pr)))
Patrick Mocheld550d982006-06-27 00:41:40 -0400328 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400329 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800330 /*
331 * On some boxes several processors use the same processor bus id.
332 * But they are located in different scope. For example:
333 * \_SB.SCK0.CPU0
334 * \_SB.SCK1.CPU0
335 * Rename the processor device bus id. And the new bus id will be
336 * generated as the following format:
337 * CPU+CPU ID.
338 */
339 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400341 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 if (!object.processor.pblk_address)
344 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
345 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400346 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
347 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 else {
349 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300350 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
351 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 pr->pblk = object.processor.pblk_address;
354
355 /*
356 * We don't care about error returns - we just try to mark
357 * these reserved so that nobody else is confused into thinking
358 * that this region might be unused..
359 *
360 * (In particular, allocating the IO range for Cardbus)
361 */
362 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
363 }
364
Alex Chiangfe086a72008-04-29 15:05:29 -0700365 /*
366 * If ACPI describes a slot number for this CPU, we can use it
367 * ensure we get the right value in the "physical id" field
368 * of /proc/cpuinfo
369 */
370 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
371 if (ACPI_SUCCESS(status))
372 arch_fix_phys_package_id(pr->id, object.integer.value);
373
Patrick Mocheld550d982006-06-27 00:41:40 -0400374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
Mike Travis706546d2008-06-09 16:22:23 -0700377static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400378
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000379static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000381 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300382 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400385 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 switch (event) {
388 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300389 saved = pr->performance_platform_limit;
Zhao Yakuid81c45e2009-10-16 09:20:41 +0800390 acpi_processor_ppc_has_changed(pr, 1);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300391 if (saved == pr->performance_platform_limit)
392 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400393 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400394 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800395 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100396 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800397 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 break;
399 case ACPI_PROCESSOR_NOTIFY_POWER:
400 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400401 acpi_bus_generate_proc_event(device, event, 0);
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, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 break;
Luming Yu01854e62007-05-26 22:49:58 +0800405 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
406 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400407 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800408 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100409 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 default:
411 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400412 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 break;
414 }
415
Patrick Mocheld550d982006-06-27 00:41:40 -0400416 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200419static int acpi_cpu_soft_notify(struct notifier_block *nfb,
420 unsigned long action, void *hcpu)
421{
422 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700423 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200424
425 if (action == CPU_ONLINE && pr) {
Thomas Renninger99b72502012-01-19 18:18:43 +0100426 /* CPU got physically hotplugged and onlined the first time:
427 * Initialize missing things
428 */
429 if (pr->flags.need_hotplug_init) {
430 struct cpuidle_driver *idle_driver =
431 cpuidle_get_driver();
432
433 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;
438 if (idle_driver && !strcmp(idle_driver->name,
439 "intel_idle")) {
440 intel_idle_cpu_init(pr->id);
441 }
442 /* Normal CPU soft online event */
443 } else {
444 acpi_processor_ppc_has_changed(pr, 0);
445 acpi_processor_cst_has_changed(pr);
446 acpi_processor_reevaluate_tstate(pr, action);
447 acpi_processor_tstate_has_changed(pr);
448 }
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200449 }
Zhao Yakui5a344a52011-01-10 16:35:45 +0800450 if (action == CPU_DEAD && pr) {
451 /* invalidate the flag.throttling after one CPU is offline */
452 acpi_processor_reevaluate_tstate(pr, action);
453 }
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200454 return NOTIFY_OK;
455}
456
457static struct notifier_block acpi_cpu_notifier =
458{
459 .notifier_call = acpi_cpu_soft_notify,
460};
461
Thomas Renninger99b72502012-01-19 18:18:43 +0100462/*
463 * acpi_processor_start() is called by the cpu_hotplug_notifier func:
464 * acpi_cpu_soft_notify(). Getting it __cpuinit{data} is difficult, the
465 * root cause seem to be that acpi_processor_uninstall_hotplug_notify()
466 * is in the module_exit (__exit) func. Allowing acpi_processor_start()
467 * to not be in __cpuinit section, but being called from __cpuinit funcs
468 * via __ref looks like the right thing to do here.
469 */
470static __ref int acpi_processor_start(struct acpi_processor *pr)
Thomas Renninger54d5dcc2012-01-19 18:18:42 +0100471{
472 struct acpi_device *device = per_cpu(processor_device_array, pr->id);
473 int result = 0;
474
475#ifdef CONFIG_CPU_FREQ
476 acpi_processor_ppc_has_changed(pr, 0);
477#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)) {
Julia Lawallc80f5b32012-03-15 09:32:05 +0100538 result = -ENOMEM;
539 goto err_free_pr;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800540 }
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;
Julia Lawallc80f5b32012-03-15 09:32:05 +0100579 goto err_clear_processor;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000580 }
Thomas Renninger99b72502012-01-19 18:18:43 +0100581
582 /*
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");
Julia Lawallc80f5b32012-03-15 09:32:05 +0100597err_clear_processor:
598 /*
599 * processor_device_array is not cleared to allow checks for buggy BIOS
600 */
601 per_cpu(processors, pr->id) = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000602err_free_cpumask:
603 free_cpumask_var(pr->throttling.shared_cpu_map);
Julia Lawallc80f5b32012-03-15 09:32:05 +0100604err_free_pr:
605 kfree(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Len Brown4be44fc2005-08-05 00:44:28 -0400609static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Len Brown4be44fc2005-08-05 00:44:28 -0400611 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400615 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200617 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800619 if (pr->id >= nr_cpu_ids)
620 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (type == ACPI_BUS_REMOVAL_EJECT) {
623 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400624 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 acpi_processor_power_exit(pr, device);
628
Zhang Rui9f1eb992008-04-29 02:36:07 -0400629 sysfs_remove_link(&device->dev.kobj, "sysdev");
630
Zhao Yakuif28bb452008-02-15 08:34:37 +0800631 if (pr->cdev) {
632 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
633 sysfs_remove_link(&pr->cdev->device.kobj, "device");
634 thermal_cooling_device_unregister(pr->cdev);
635 pr->cdev = NULL;
636 }
Zhang Ruid9460fd222008-01-17 15:51:23 +0800637
Mike Travis706546d2008-06-09 16:22:23 -0700638 per_cpu(processors, pr->id) = NULL;
639 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800640
641free:
642 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 kfree(pr);
644
Patrick Mocheld550d982006-06-27 00:41:40 -0400645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
648#ifdef CONFIG_ACPI_HOTPLUG_CPU
649/****************************************************************************
650 * Acpi processor hotplug support *
651 ****************************************************************************/
652
Len Brown4be44fc2005-08-05 00:44:28 -0400653static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Len Brown4be44fc2005-08-05 00:44:28 -0400655 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400656 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500660
661 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
662 return 1;
663
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500664 /*
665 * _STA is mandatory for a processor that supports hot plug
666 */
667 if (status == AE_NOT_FOUND)
668 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
669 "Processor does not support hot plug\n"));
670 else
671 ACPI_EXCEPTION((AE_INFO, status,
672 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676static
Len Brown4be44fc2005-08-05 00:44:28 -0400677int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Len Brown4be44fc2005-08-05 00:44:28 -0400679 acpi_handle phandle;
680 struct acpi_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400684 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
687 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400688 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
691 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400692 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
Patrick Mocheld550d982006-06-27 00:41:40 -0400695 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Jan Beulich6430c9c2011-02-17 16:33:53 +0000698static void acpi_processor_hotplug_notify(acpi_handle handle,
699 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Len Brown4be44fc2005-08-05 00:44:28 -0400701 struct acpi_processor *pr;
702 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 int result;
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 switch (event) {
707 case ACPI_NOTIFY_BUS_CHECK:
708 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800709 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
710 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400711 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800712 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 if (!is_processor_present(handle))
715 break;
716
717 if (acpi_bus_get_device(handle, &device)) {
718 result = acpi_processor_device_add(handle, &device);
719 if (result)
Len Brown64684632006-06-26 23:41:38 -0400720 printk(KERN_ERR PREFIX
721 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 break;
723 }
Len Brown4be44fc2005-08-05 00:44:28 -0400724 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400726 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
727 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400730 printk(KERN_ERR PREFIX
731 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 break;
733 }
734 pr = acpi_driver_data(device);
735 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400736 printk(KERN_ERR PREFIX
737 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400738 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 break;
741 default:
742 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400743 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 break;
745 }
746
Patrick Mocheld550d982006-06-27 00:41:40 -0400747 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750static acpi_status
751processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400752 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Len Brown4be44fc2005-08-05 00:44:28 -0400754 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400756 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 status = acpi_get_type(handle, &type);
759 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400760 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400763 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Len Brown4be44fc2005-08-05 00:44:28 -0400765 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 case INSTALL_NOTIFY_HANDLER:
767 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400768 ACPI_SYSTEM_NOTIFY,
769 acpi_processor_hotplug_notify,
770 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 break;
772 case UNINSTALL_NOTIFY_HANDLER:
773 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400774 ACPI_SYSTEM_NOTIFY,
775 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 break;
777 default:
778 break;
779 }
780
Len Brown4be44fc2005-08-05 00:44:28 -0400781 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100784static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100786 acpi_handle handle = pr->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400789 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100792 if (acpi_map_lsapic(handle, &pr->id))
Patrick Mocheld550d982006-06-27 00:41:40 -0400793 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100795 if (arch_register_cpu(pr->id)) {
796 acpi_unmap_lsapic(pr->id);
Patrick Mocheld550d982006-06-27 00:41:40 -0400797 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
Thomas Renninger99b72502012-01-19 18:18:43 +0100800 /* CPU got hot-plugged, but cpu_data is not initialized yet
801 * Set flag to delay cpu_idle/throttling initialization
802 * in:
803 * acpi_processor_add()
804 * acpi_processor_get_info()
805 * and do it when the CPU gets online the first time
806 * TBD: Cleanup above functions and try to do this more elegant.
807 */
808 printk(KERN_INFO "CPU %d got hotplugged\n", pr->id);
809 pr->flags.need_hotplug_init = 1;
810
Patrick Mocheld550d982006-06-27 00:41:40 -0400811 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Len Brown4be44fc2005-08-05 00:44:28 -0400814static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Zhang Ruib62b8ef2008-04-29 02:35:56 -0400816 if (cpu_online(pr->id))
817 cpu_down(pr->id);
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 arch_unregister_cpu(pr->id);
820 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400821 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823#else
Thomas Renninger3bd81a82012-01-17 22:40:07 +0100824static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 return AE_ERROR;
827}
Len Brown4be44fc2005-08-05 00:44:28 -0400828static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Len Brown4be44fc2005-08-05 00:44:28 -0400830 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832#endif
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834static
835void acpi_processor_install_hotplug_notify(void)
836{
837#ifdef CONFIG_ACPI_HOTPLUG_CPU
838 int action = INSTALL_NOTIFY_HANDLER;
839 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400840 ACPI_ROOT_OBJECT,
841 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800842 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200844 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847static
848void acpi_processor_uninstall_hotplug_notify(void)
849{
850#ifdef CONFIG_ACPI_HOTPLUG_CPU
851 int action = UNINSTALL_NOTIFY_HANDLER;
852 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400853 ACPI_ROOT_OBJECT,
854 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800855 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200857 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
860/*
861 * We keep the driver loaded even when ACPI is not running.
862 * This is needed for the powernow-k8 driver, that works even without
863 * ACPI, but needs symbols from this driver
864 */
865
Len Brown4be44fc2005-08-05 00:44:28 -0400866static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Len Brown4be44fc2005-08-05 00:44:28 -0400868 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Yinghai Luce8442b2009-08-26 14:29:26 -0700870 if (acpi_disabled)
871 return 0;
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 memset(&errata, 0, sizeof(errata));
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -0400876 if (result < 0)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530877 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 acpi_processor_install_hotplug_notify();
880
881 acpi_thermal_cpufreq_init();
882
883 acpi_processor_ppc_init();
884
Zhao Yakui11805092008-01-28 13:53:42 +0800885 acpi_processor_throttling_init();
886
Patrick Mocheld550d982006-06-27 00:41:40 -0400887 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Len Brown4be44fc2005-08-05 00:44:28 -0400890static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Yinghai Luce8442b2009-08-26 14:29:26 -0700892 if (acpi_disabled)
893 return;
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 acpi_processor_ppc_exit();
896
897 acpi_thermal_cpufreq_exit();
898
899 acpi_processor_uninstall_hotplug_notify();
900
901 acpi_bus_unregister_driver(&acpi_processor_driver);
902
Patrick Mocheld550d982006-06-27 00:41:40 -0400903 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906module_init(acpi_processor_init);
907module_exit(acpi_processor_exit);
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909MODULE_ALIAS("processor");