drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / acpi / processor_driver.c
CommitLineData
1da177e4
LT
1/*
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>
1da177e4
LT
43#include <linux/dmi.h>
44#include <linux/moduleparam.h>
4f86d3a8 45#include <linux/cpuidle.h>
5a0e3ad6 46#include <linux/slab.h>
47db4547 47#include <linux/acpi.h>
76bba142 48#include <linux/memory_hotplug.h>
1da177e4
LT
49
50#include <asm/io.h>
1da177e4
LT
51#include <asm/cpu.h>
52#include <asm/delay.h>
53#include <asm/uaccess.h>
54#include <asm/processor.h>
55#include <asm/smp.h>
56#include <asm/acpi.h>
57
58#include <acpi/acpi_bus.h>
59#include <acpi/acpi_drivers.h>
60#include <acpi/processor.h>
61
a192a958
LB
62#define PREFIX "ACPI: "
63
1da177e4 64#define ACPI_PROCESSOR_CLASS "processor"
1da177e4
LT
65#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
66#define ACPI_PROCESSOR_FILE_INFO "info"
67#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
68#define ACPI_PROCESSOR_FILE_LIMIT "limit"
69#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
70#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
01854e69 71#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
9f324bda 72#define ACPI_PROCESSOR_DEVICE_HID "ACPI0007"
1da177e4
LT
73
74#define ACPI_PROCESSOR_LIMIT_USER 0
75#define ACPI_PROCESSOR_LIMIT_THERMAL 1
76
1da177e4 77#define _COMPONENT ACPI_PROCESSOR_COMPONENT
0131aa3d 78ACPI_MODULE_NAME("processor_driver");
1da177e4 79
f52fd66d 80MODULE_AUTHOR("Paul Diefenbaugh");
7cda93e0 81MODULE_DESCRIPTION("ACPI Processor Driver");
1da177e4
LT
82MODULE_LICENSE("GPL");
83
4be44fcd 84static int acpi_processor_add(struct acpi_device *device);
51fac838 85static int acpi_processor_remove(struct acpi_device *device);
7ec0a729 86static void acpi_processor_notify(struct acpi_device *device, u32 event);
3bd81a87 87static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr);
1da177e4 88static int acpi_processor_handle_eject(struct acpi_processor *pr);
99b72508 89static int acpi_processor_start(struct acpi_processor *pr);
1da177e4 90
1ba90e3a 91static const struct acpi_device_id processor_device_ids[] = {
ad93a765 92 {ACPI_PROCESSOR_OBJECT_HID, 0},
9f324bda 93 {ACPI_PROCESSOR_DEVICE_HID, 0},
1ba90e3a
TR
94 {"", 0},
95};
96MODULE_DEVICE_TABLE(acpi, processor_device_ids);
97
1da177e4 98static struct acpi_driver acpi_processor_driver = {
c2b6705b 99 .name = "processor",
4be44fcd 100 .class = ACPI_PROCESSOR_CLASS,
1ba90e3a 101 .ids = processor_device_ids,
4be44fcd
LB
102 .ops = {
103 .add = acpi_processor_add,
104 .remove = acpi_processor_remove,
7ec0a729 105 .notify = acpi_processor_notify,
4be44fcd 106 },
1da177e4
LT
107};
108
109#define INSTALL_NOTIFY_HANDLER 1
110#define UNINSTALL_NOTIFY_HANDLER 2
1da177e4 111
706546d0 112DEFINE_PER_CPU(struct acpi_processor *, processors);
0f1d683f
NC
113EXPORT_PER_CPU_SYMBOL(processors);
114
9f222718 115struct acpi_processor_errata errata __read_mostly;
1da177e4 116
1da177e4
LT
117/* --------------------------------------------------------------------------
118 Errata Handling
119 -------------------------------------------------------------------------- */
120
4be44fcd 121static int acpi_processor_errata_piix4(struct pci_dev *dev)
1da177e4 122{
4be44fcd
LB
123 u8 value1 = 0;
124 u8 value2 = 0;
1da177e4 125
1da177e4
LT
126
127 if (!dev)
d550d98d 128 return -EINVAL;
1da177e4
LT
129
130 /*
131 * Note that 'dev' references the PIIX4 ACPI Controller.
132 */
133
44c10138 134 switch (dev->revision) {
1da177e4
LT
135 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
44c10138 152 switch (dev->revision) {
1da177e4
LT
153
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,
4be44fcd
LB
182 PCI_DEVICE_ID_INTEL_82371AB,
183 PCI_ANY_ID, PCI_ANY_ID, NULL);
1da177e4
LT
184 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,
4be44fcd
LB
199 PCI_DEVICE_ID_INTEL_82371AB_0,
200 PCI_ANY_ID, PCI_ANY_ID, NULL);
1da177e4
LT
201 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,
4be44fcd 214 "Bus master activity detection (BM-IDE) erratum enabled\n"));
1da177e4
LT
215 if (errata.piix4.fdma)
216 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 217 "Type-F DMA livelock erratum (C3 disabled)\n"));
1da177e4 218
d550d98d 219 return 0;
1da177e4
LT
220}
221
8713cbef 222static int acpi_processor_errata(struct acpi_processor *pr)
1da177e4 223{
4be44fcd
LB
224 int result = 0;
225 struct pci_dev *dev = NULL;
1da177e4 226
1da177e4
LT
227
228 if (!pr)
d550d98d 229 return -EINVAL;
1da177e4
LT
230
231 /*
232 * PIIX4
233 */
234 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
4be44fcd
LB
235 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
236 PCI_ANY_ID, NULL);
1da177e4
LT
237 if (dev) {
238 result = acpi_processor_errata_piix4(dev);
239 pci_dev_put(dev);
240 }
241
d550d98d 242 return result;
1da177e4
LT
243}
244
1da177e4
LT
245/* --------------------------------------------------------------------------
246 Driver Interface
247 -------------------------------------------------------------------------- */
248
b26e9286 249static int acpi_processor_get_info(struct acpi_device *device)
1da177e4 250{
4be44fcd
LB
251 acpi_status status = 0;
252 union acpi_object object = { 0 };
253 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
b26e9286
MS
254 struct acpi_processor *pr;
255 int cpu_index, device_declaration = 0;
4be44fcd 256 static int cpu0_initialized;
1da177e4 257
b26e9286 258 pr = acpi_driver_data(device);
1da177e4 259 if (!pr)
d550d98d 260 return -EINVAL;
1da177e4
LT
261
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 */
cee324b1 271 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
1da177e4
LT
272 pr->flags.bm_control = 1;
273 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
274 "Bus mastering arbitration control present\n"));
275 } else
1da177e4 276 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 277 "No bus mastering arbitration control\n"));
1da177e4 278
6cc73b48
BH
279 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)) {
47db4547
TK
283 dev_err(&device->dev,
284 "Failed to evaluate processor object (0x%x)\n",
285 status);
6cc73b48
BH
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 {
b26e9286
MS
296 /*
297 * Declared with "Device" statement; match _UID.
298 * Note that we don't handle string _UIDs yet.
299 */
27663c58 300 unsigned long long value;
11bf04c4
AS
301 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
302 NULL, &value);
303 if (ACPI_FAILURE(status)) {
47db4547
TK
304 dev_err(&device->dev,
305 "Failed to evaluate processor _UID (0x%x)\n",
306 status);
11bf04c4
AS
307 return -ENODEV;
308 }
b26e9286 309 device_declaration = 1;
11bf04c4 310 pr->acpi_id = value;
11bf04c4 311 }
2e9d5e4e 312 cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id);
1da177e4 313
4be44fcd 314 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
df42baa0 315 if (!cpu0_initialized && (cpu_index == -1) &&
4be44fcd
LB
316 (num_online_cpus() == 1)) {
317 cpu_index = 0;
318 }
319
320 cpu0_initialized = 1;
321
322 pr->id = cpu_index;
323
324 /*
325 * Extra Processor objects may be enumerated on MP systems with
326 * less than the max # of CPUs. They should be ignored _iff
327 * they are physically not present.
328 */
f18c5a08 329 if (pr->id == -1) {
3bd81a87 330 if (ACPI_FAILURE(acpi_processor_hotadd_init(pr)))
d550d98d 331 return -ENODEV;
4be44fcd 332 }
7a04b849
ZY
333 /*
334 * On some boxes several processors use the same processor bus id.
335 * But they are located in different scope. For example:
336 * \_SB.SCK0.CPU0
337 * \_SB.SCK1.CPU0
338 * Rename the processor device bus id. And the new bus id will be
339 * generated as the following format:
340 * CPU+CPU ID.
341 */
342 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
1da177e4 343 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
4be44fcd 344 pr->acpi_id));
1da177e4
LT
345
346 if (!object.processor.pblk_address)
347 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
348 else if (object.processor.pblk_length != 6)
47db4547 349 dev_err(&device->dev, "Invalid PBLK length [%d]\n",
6468463a 350 object.processor.pblk_length);
1da177e4
LT
351 else {
352 pr->throttling.address = object.processor.pblk_address;
cee324b1
AS
353 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
354 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
1da177e4
LT
355
356 pr->pblk = object.processor.pblk_address;
357
358 /*
359 * We don't care about error returns - we just try to mark
360 * these reserved so that nobody else is confused into thinking
361 * that this region might be unused..
362 *
363 * (In particular, allocating the IO range for Cardbus)
364 */
365 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
366 }
367
fe086a7b
AC
368 /*
369 * If ACPI describes a slot number for this CPU, we can use it
370 * ensure we get the right value in the "physical id" field
371 * of /proc/cpuinfo
372 */
373 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
374 if (ACPI_SUCCESS(status))
375 arch_fix_phys_package_id(pr->id, object.integer.value);
376
d550d98d 377 return 0;
1da177e4
LT
378}
379
706546d0 380static DEFINE_PER_CPU(void *, processor_device_array);
cd8e2b48 381
7ec0a729 382static void acpi_processor_notify(struct acpi_device *device, u32 event)
1da177e4 383{
7ec0a729 384 struct acpi_processor *pr = acpi_driver_data(device);
e790cc8b 385 int saved;
1da177e4
LT
386
387 if (!pr)
d550d98d 388 return;
1da177e4 389
1da177e4
LT
390 switch (event) {
391 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
e790cc8b 392 saved = pr->performance_platform_limit;
d81c45e1 393 acpi_processor_ppc_has_changed(pr, 1);
e790cc8b
AS
394 if (saved == pr->performance_platform_limit)
395 break;
14e04fb3 396 acpi_bus_generate_proc_event(device, event,
4be44fcd 397 pr->performance_platform_limit);
962ce8ca 398 acpi_bus_generate_netlink_event(device->pnp.device_class,
0794469d 399 dev_name(&device->dev), event,
962ce8ca 400 pr->performance_platform_limit);
1da177e4
LT
401 break;
402 case ACPI_PROCESSOR_NOTIFY_POWER:
403 acpi_processor_cst_has_changed(pr);
14e04fb3 404 acpi_bus_generate_proc_event(device, event, 0);
962ce8ca 405 acpi_bus_generate_netlink_event(device->pnp.device_class,
0794469d 406 dev_name(&device->dev), event, 0);
1da177e4 407 break;
01854e69
LY
408 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
409 acpi_processor_tstate_has_changed(pr);
14e04fb3 410 acpi_bus_generate_proc_event(device, event, 0);
962ce8ca 411 acpi_bus_generate_netlink_event(device->pnp.device_class,
0794469d 412 dev_name(&device->dev), event, 0);
879dca01 413 break;
1da177e4
LT
414 default:
415 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 416 "Unsupported event [0x%x]\n", event));
1da177e4
LT
417 break;
418 }
419
d550d98d 420 return;
1da177e4
LT
421}
422
729c6ba3
VP
423static int acpi_cpu_soft_notify(struct notifier_block *nfb,
424 unsigned long action, void *hcpu)
425{
426 unsigned int cpu = (unsigned long)hcpu;
706546d0 427 struct acpi_processor *pr = per_cpu(processors, cpu);
729c6ba3
VP
428
429 if (action == CPU_ONLINE && pr) {
99b72508
TR
430 /* CPU got physically hotplugged and onlined the first time:
431 * Initialize missing things
432 */
433 if (pr->flags.need_hotplug_init) {
47db4547
TK
434 pr_info("Will online and init hotplugged CPU: %d\n",
435 pr->id);
99b72508
TR
436 WARN(acpi_processor_start(pr), "Failed to start CPU:"
437 " %d\n", pr->id);
438 pr->flags.need_hotplug_init = 0;
99b72508
TR
439 /* Normal CPU soft online event */
440 } else {
441 acpi_processor_ppc_has_changed(pr, 0);
b7db60f4 442 acpi_processor_hotplug(pr);
99b72508
TR
443 acpi_processor_reevaluate_tstate(pr, action);
444 acpi_processor_tstate_has_changed(pr);
445 }
729c6ba3 446 }
5a344a50
ZY
447 if (action == CPU_DEAD && pr) {
448 /* invalidate the flag.throttling after one CPU is offline */
449 acpi_processor_reevaluate_tstate(pr, action);
450 }
729c6ba3
VP
451 return NOTIFY_OK;
452}
453
454static struct notifier_block acpi_cpu_notifier =
455{
456 .notifier_call = acpi_cpu_soft_notify,
457};
458
99b72508
TR
459/*
460 * acpi_processor_start() is called by the cpu_hotplug_notifier func:
461 * acpi_cpu_soft_notify(). Getting it __cpuinit{data} is difficult, the
462 * root cause seem to be that acpi_processor_uninstall_hotplug_notify()
463 * is in the module_exit (__exit) func. Allowing acpi_processor_start()
464 * to not be in __cpuinit section, but being called from __cpuinit funcs
465 * via __ref looks like the right thing to do here.
466 */
467static __ref int acpi_processor_start(struct acpi_processor *pr)
54d5dcc4
TR
468{
469 struct acpi_device *device = per_cpu(processor_device_array, pr->id);
470 int result = 0;
471
472#ifdef CONFIG_CPU_FREQ
473 acpi_processor_ppc_has_changed(pr, 0);
976a0be0 474 acpi_processor_load_module(pr);
54d5dcc4
TR
475#endif
476 acpi_processor_get_throttling_info(pr);
477 acpi_processor_get_limit_info(pr);
478
479 if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
38a991b6 480 acpi_processor_power_init(pr);
54d5dcc4
TR
481
482 pr->cdev = thermal_cooling_device_register("Processor", device,
483 &processor_cooling_ops);
484 if (IS_ERR(pr->cdev)) {
485 result = PTR_ERR(pr->cdev);
486 goto err_power_exit;
487 }
488
489 dev_dbg(&device->dev, "registered as cooling_device%d\n",
490 pr->cdev->id);
491
492 result = sysfs_create_link(&device->dev.kobj,
493 &pr->cdev->device.kobj,
494 "thermal_cooling");
495 if (result) {
47db4547
TK
496 dev_err(&device->dev,
497 "Failed to create sysfs link 'thermal_cooling'\n");
54d5dcc4
TR
498 goto err_thermal_unregister;
499 }
500 result = sysfs_create_link(&pr->cdev->device.kobj,
501 &device->dev.kobj,
502 "device");
503 if (result) {
47db4547
TK
504 dev_err(&pr->cdev->device,
505 "Failed to create sysfs link 'device'\n");
54d5dcc4
TR
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:
38a991b6 516 acpi_processor_power_exit(pr);
54d5dcc4
TR
517
518 return result;
519}
520
99b72508
TR
521/*
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 */
941b10fa 527static int __cpuinit acpi_processor_add(struct acpi_device *device)
1da177e4 528{
4be44fcd 529 struct acpi_processor *pr = NULL;
970b0492 530 int result = 0;
8a25a2fd 531 struct device *dev;
1da177e4 532
36bcbec7 533 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
1da177e4 534 if (!pr)
d550d98d 535 return -ENOMEM;
1da177e4 536
eaa95840 537 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
c80f5b31
JL
538 result = -ENOMEM;
539 goto err_free_pr;
2fdf66b4
RR
540 }
541
1da177e4
LT
542 pr->handle = device->handle;
543 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
544 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
db89b4f0 545 device->driver_data = pr;
1da177e4 546
b26e9286 547 result = acpi_processor_get_info(device);
1da177e4
LT
548 if (result) {
549 /* Processor is physically not present */
d550d98d 550 return 0;
1da177e4
LT
551 }
552
75cbfb97
TR
553#ifdef CONFIG_SMP
554 if (pr->id >= setup_max_cpus && pr->id != 0)
555 return 0;
556#endif
557
9b27516f 558 BUG_ON(pr->id >= nr_cpu_ids);
1da177e4 559
cd8e2b48
VP
560 /*
561 * Buggy BIOS check
562 * ACPI id of processors can be reported wrongly by the BIOS.
563 * Don't trust it blindly
564 */
706546d0
MT
565 if (per_cpu(processor_device_array, pr->id) != NULL &&
566 per_cpu(processor_device_array, pr->id) != device) {
47db4547
TK
567 dev_warn(&device->dev,
568 "BIOS reported wrong ACPI id %d for the processor\n",
569 pr->id);
970b0492
BH
570 result = -ENODEV;
571 goto err_free_cpumask;
cd8e2b48 572 }
706546d0 573 per_cpu(processor_device_array, pr->id) = device;
cd8e2b48 574
706546d0 575 per_cpu(processors, pr->id) = pr;
1da177e4 576
8a25a2fd
KS
577 dev = get_cpu_device(pr->id);
578 if (sysfs_create_link(&device->dev.kobj, &dev->kobj, "sysdev")) {
d4e05261 579 result = -EFAULT;
c80f5b31 580 goto err_clear_processor;
d4e05261 581 }
9f1eb99c 582
99b72508
TR
583 /*
584 * Do not start hotplugged CPUs now, but when they
585 * are onlined the first time
586 */
587 if (pr->flags.need_hotplug_init)
588 return 0;
9030062f 589
54d5dcc4
TR
590 result = acpi_processor_start(pr);
591 if (result)
d4e05261 592 goto err_remove_sysfs;
d9460fd2 593
d550d98d 594 return 0;
d4e05261
BH
595
596err_remove_sysfs:
3333ea78 597 sysfs_remove_link(&device->dev.kobj, "sysdev");
c80f5b31
JL
598err_clear_processor:
599 /*
600 * processor_device_array is not cleared to allow checks for buggy BIOS
601 */
602 per_cpu(processors, pr->id) = NULL;
970b0492
BH
603err_free_cpumask:
604 free_cpumask_var(pr->throttling.shared_cpu_map);
c80f5b31
JL
605err_free_pr:
606 kfree(pr);
d550d98d 607 return result;
1da177e4
LT
608}
609
51fac838 610static int acpi_processor_remove(struct acpi_device *device)
1da177e4 611{
4be44fcd 612 struct acpi_processor *pr = NULL;
1da177e4 613
1da177e4
LT
614
615 if (!device || !acpi_driver_data(device))
d550d98d 616 return -EINVAL;
1da177e4 617
50dd0969 618 pr = acpi_driver_data(device);
1da177e4 619
2fdf66b4
RR
620 if (pr->id >= nr_cpu_ids)
621 goto free;
1da177e4 622
51fac838 623 if (device->removal_type == ACPI_BUS_REMOVAL_EJECT) {
1da177e4 624 if (acpi_processor_handle_eject(pr))
d550d98d 625 return -EINVAL;
1da177e4
LT
626 }
627
38a991b6 628 acpi_processor_power_exit(pr);
1da177e4 629
9f1eb99c
ZR
630 sysfs_remove_link(&device->dev.kobj, "sysdev");
631
f28bb45e
ZY
632 if (pr->cdev) {
633 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
634 sysfs_remove_link(&pr->cdev->device.kobj, "device");
635 thermal_cooling_device_unregister(pr->cdev);
636 pr->cdev = NULL;
637 }
d9460fd2 638
706546d0
MT
639 per_cpu(processors, pr->id) = NULL;
640 per_cpu(processor_device_array, pr->id) = NULL;
76bba142 641 try_offline_node(cpu_to_node(pr->id));
2fdf66b4
RR
642
643free:
644 free_cpumask_var(pr->throttling.shared_cpu_map);
1da177e4
LT
645 kfree(pr);
646
d550d98d 647 return 0;
1da177e4
LT
648}
649
650#ifdef CONFIG_ACPI_HOTPLUG_CPU
651/****************************************************************************
652 * Acpi processor hotplug support *
653 ****************************************************************************/
654
4be44fcd 655static int is_processor_present(acpi_handle handle)
1da177e4 656{
4be44fcd 657 acpi_status status;
27663c58 658 unsigned long long sta = 0;
1da177e4 659
1da177e4
LT
660
661 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
cfaf3747
ZR
662
663 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
664 return 1;
665
d0ce46f5
ZR
666 /*
667 * _STA is mandatory for a processor that supports hot plug
668 */
669 if (status == AE_NOT_FOUND)
670 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
671 "Processor does not support hot plug\n"));
672 else
673 ACPI_EXCEPTION((AE_INFO, status,
674 "Processor Device is not present"));
cfaf3747 675 return 0;
1da177e4
LT
676}
677
6430c9c1
JB
678static void acpi_processor_hotplug_notify(acpi_handle handle,
679 u32 event, void *data)
1da177e4 680{
4be44fcd 681 struct acpi_device *device = NULL;
c5b18e22 682 struct acpi_eject_event *ej_event = NULL;
51af3b92 683 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
3757b948 684 acpi_status status;
1da177e4
LT
685 int result;
686
3757b948
RW
687 acpi_scan_lock_acquire();
688
1da177e4
LT
689 switch (event) {
690 case ACPI_NOTIFY_BUS_CHECK:
691 case ACPI_NOTIFY_DEVICE_CHECK:
d6f882e1
GC
692 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
693 "Processor driver received %s event\n",
4be44fcd 694 (event == ACPI_NOTIFY_BUS_CHECK) ?
d6f882e1 695 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
1da177e4
LT
696
697 if (!is_processor_present(handle))
698 break;
699
51af3b92
TK
700 if (!acpi_bus_get_device(handle, &device))
701 break;
702
b8bd759a 703 result = acpi_bus_scan(handle);
51af3b92 704 if (result) {
47db4547 705 acpi_handle_err(handle, "Unable to add the device\n");
1da177e4
LT
706 break;
707 }
0cd6ac52
RW
708 result = acpi_bus_get_device(handle, &device);
709 if (result) {
710 acpi_handle_err(handle, "Missing device object\n");
711 break;
712 }
51af3b92 713 ost_code = ACPI_OST_SC_SUCCESS;
4be44fcd 714 break;
51af3b92 715
1da177e4 716 case ACPI_NOTIFY_EJECT_REQUEST:
4be44fcd
LB
717 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
718 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
1da177e4
LT
719
720 if (acpi_bus_get_device(handle, &device)) {
47db4547
TK
721 acpi_handle_err(handle,
722 "Device don't exist, dropping EJECT\n");
1da177e4
LT
723 break;
724 }
c5b18e22 725 if (!acpi_driver_data(device)) {
47db4547
TK
726 acpi_handle_err(handle,
727 "Driver data is NULL, dropping EJECT\n");
51af3b92 728 break;
1da177e4 729 }
51af3b92 730
c5b18e22
TK
731 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
732 if (!ej_event) {
47db4547 733 acpi_handle_err(handle, "No memory, dropping EJECT\n");
c5b18e22
TK
734 break;
735 }
736
3757b948 737 get_device(&device->dev);
5993c467 738 ej_event->device = device;
c5b18e22 739 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
3757b948
RW
740 /* The eject is carried out asynchronously. */
741 status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device,
742 ej_event);
743 if (ACPI_FAILURE(status)) {
744 put_device(&device->dev);
745 kfree(ej_event);
746 break;
747 }
748 goto out;
51af3b92 749
1da177e4
LT
750 default:
751 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 752 "Unsupported event [0x%x]\n", event));
51af3b92
TK
753
754 /* non-hotplug event; possibly handled by other handler */
3757b948 755 goto out;
1da177e4
LT
756 }
757
51af3b92
TK
758 /* Inform firmware that the hotplug operation has completed */
759 (void) acpi_evaluate_hotplug_ost(handle, event, ost_code, NULL);
3757b948
RW
760
761 out:
762 acpi_scan_lock_release();
1da177e4
LT
763}
764
9f324bda
TK
765static acpi_status is_processor_device(acpi_handle handle)
766{
767 struct acpi_device_info *info;
768 char *hid;
769 acpi_status status;
770
771 status = acpi_get_object_info(handle, &info);
772 if (ACPI_FAILURE(status))
773 return status;
774
775 if (info->type == ACPI_TYPE_PROCESSOR) {
776 kfree(info);
777 return AE_OK; /* found a processor object */
778 }
779
780 if (!(info->valid & ACPI_VALID_HID)) {
781 kfree(info);
782 return AE_ERROR;
783 }
784
785 hid = info->hardware_id.string;
786 if ((hid == NULL) || strcmp(hid, ACPI_PROCESSOR_DEVICE_HID)) {
787 kfree(info);
788 return AE_ERROR;
789 }
790
791 kfree(info);
792 return AE_OK; /* found a processor device object */
793}
794
1da177e4
LT
795static acpi_status
796processor_walk_namespace_cb(acpi_handle handle,
4be44fcd 797 u32 lvl, void *context, void **rv)
1da177e4 798{
4be44fcd 799 acpi_status status;
1da177e4 800 int *action = context;
1da177e4 801
9f324bda 802 status = is_processor_device(handle);
1da177e4 803 if (ACPI_FAILURE(status))
9f324bda 804 return AE_OK; /* not a processor; continue to walk */
1da177e4 805
4be44fcd 806 switch (*action) {
1da177e4
LT
807 case INSTALL_NOTIFY_HANDLER:
808 acpi_install_notify_handler(handle,
4be44fcd
LB
809 ACPI_SYSTEM_NOTIFY,
810 acpi_processor_hotplug_notify,
811 NULL);
1da177e4
LT
812 break;
813 case UNINSTALL_NOTIFY_HANDLER:
814 acpi_remove_notify_handler(handle,
4be44fcd
LB
815 ACPI_SYSTEM_NOTIFY,
816 acpi_processor_hotplug_notify);
1da177e4
LT
817 break;
818 default:
819 break;
820 }
821
9f324bda
TK
822 /* found a processor; skip walking underneath */
823 return AE_CTRL_DEPTH;
1da177e4
LT
824}
825
3bd81a87 826static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
1da177e4 827{
3bd81a87 828 acpi_handle handle = pr->handle;
1da177e4
LT
829
830 if (!is_processor_present(handle)) {
d550d98d 831 return AE_ERROR;
1da177e4
LT
832 }
833
3bd81a87 834 if (acpi_map_lsapic(handle, &pr->id))
d550d98d 835 return AE_ERROR;
1da177e4 836
3bd81a87
TR
837 if (arch_register_cpu(pr->id)) {
838 acpi_unmap_lsapic(pr->id);
d550d98d 839 return AE_ERROR;
1da177e4
LT
840 }
841
99b72508
TR
842 /* CPU got hot-plugged, but cpu_data is not initialized yet
843 * Set flag to delay cpu_idle/throttling initialization
844 * in:
845 * acpi_processor_add()
846 * acpi_processor_get_info()
847 * and do it when the CPU gets online the first time
848 * TBD: Cleanup above functions and try to do this more elegant.
849 */
47db4547 850 pr_info("CPU %d got hotplugged\n", pr->id);
99b72508
TR
851 pr->flags.need_hotplug_init = 1;
852
d550d98d 853 return AE_OK;
1da177e4
LT
854}
855
4be44fcd 856static int acpi_processor_handle_eject(struct acpi_processor *pr)
1da177e4 857{
b62b8ef9
ZR
858 if (cpu_online(pr->id))
859 cpu_down(pr->id);
860
5e5041f3
YI
861 get_online_cpus();
862 /*
863 * The cpu might become online again at this point. So we check whether
864 * the cpu has been onlined or not. If the cpu became online, it means
865 * that someone wants to use the cpu. So acpi_processor_handle_eject()
866 * returns -EAGAIN.
867 */
868 if (unlikely(cpu_online(pr->id))) {
869 put_online_cpus();
870 pr_warn("Failed to remove CPU %d, because other task "
871 "brought the CPU back online\n", pr->id);
872 return -EAGAIN;
873 }
1da177e4
LT
874 arch_unregister_cpu(pr->id);
875 acpi_unmap_lsapic(pr->id);
5e5041f3 876 put_online_cpus();
4be44fcd 877 return (0);
1da177e4
LT
878}
879#else
3bd81a87 880static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
1da177e4
LT
881{
882 return AE_ERROR;
883}
4be44fcd 884static int acpi_processor_handle_eject(struct acpi_processor *pr)
1da177e4 885{
4be44fcd 886 return (-EINVAL);
1da177e4
LT
887}
888#endif
889
1da177e4
LT
890static
891void acpi_processor_install_hotplug_notify(void)
892{
893#ifdef CONFIG_ACPI_HOTPLUG_CPU
894 int action = INSTALL_NOTIFY_HANDLER;
9f324bda 895 acpi_walk_namespace(ACPI_TYPE_ANY,
4be44fcd
LB
896 ACPI_ROOT_OBJECT,
897 ACPI_UINT32_MAX,
2263576c 898 processor_walk_namespace_cb, NULL, &action, NULL);
1da177e4 899#endif
729c6ba3 900 register_hotcpu_notifier(&acpi_cpu_notifier);
1da177e4
LT
901}
902
1da177e4
LT
903static
904void acpi_processor_uninstall_hotplug_notify(void)
905{
906#ifdef CONFIG_ACPI_HOTPLUG_CPU
907 int action = UNINSTALL_NOTIFY_HANDLER;
9f324bda 908 acpi_walk_namespace(ACPI_TYPE_ANY,
4be44fcd
LB
909 ACPI_ROOT_OBJECT,
910 ACPI_UINT32_MAX,
2263576c 911 processor_walk_namespace_cb, NULL, &action, NULL);
1da177e4 912#endif
729c6ba3 913 unregister_hotcpu_notifier(&acpi_cpu_notifier);
1da177e4
LT
914}
915
916/*
917 * We keep the driver loaded even when ACPI is not running.
918 * This is needed for the powernow-k8 driver, that works even without
919 * ACPI, but needs symbols from this driver
920 */
921
4be44fcd 922static int __init acpi_processor_init(void)
1da177e4 923{
4be44fcd 924 int result = 0;
1da177e4 925
ce8442b5
YL
926 if (acpi_disabled)
927 return 0;
928
1da177e4 929 result = acpi_bus_register_driver(&acpi_processor_driver);
4f86d3a8 930 if (result < 0)
46bcfad7 931 return result;
1da177e4 932
0a3b15ac
RW
933 acpi_processor_syscore_init();
934
1da177e4
LT
935 acpi_processor_install_hotplug_notify();
936
937 acpi_thermal_cpufreq_init();
938
939 acpi_processor_ppc_init();
940
1180509f
ZY
941 acpi_processor_throttling_init();
942
d550d98d 943 return 0;
1da177e4
LT
944}
945
4be44fcd 946static void __exit acpi_processor_exit(void)
1da177e4 947{
ce8442b5
YL
948 if (acpi_disabled)
949 return;
950
1da177e4
LT
951 acpi_processor_ppc_exit();
952
953 acpi_thermal_cpufreq_exit();
954
955 acpi_processor_uninstall_hotplug_notify();
956
0a3b15ac
RW
957 acpi_processor_syscore_exit();
958
1da177e4
LT
959 acpi_bus_unregister_driver(&acpi_processor_driver);
960
d550d98d 961 return;
1da177e4
LT
962}
963
1da177e4
LT
964module_init(acpi_processor_init);
965module_exit(acpi_processor_exit);
966
1da177e4 967MODULE_ALIAS("processor");