Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / processor_driver.c
blob2b805d7ef317723c61c96ffff9c8dbe99077fdba
1 /*
2 * acpi_processor.c - ACPI Processor Driver ($Revision: 71 $)
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
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
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.
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>
43 #include <linux/dmi.h>
44 #include <linux/moduleparam.h>
45 #include <linux/cpuidle.h>
46 #include <linux/slab.h>
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>
57 #include <acpi/acpi_bus.h>
58 #include <acpi/acpi_drivers.h>
59 #include <acpi/processor.h>
61 #define PREFIX "ACPI: "
63 #define ACPI_PROCESSOR_CLASS "processor"
64 #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
70 #define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
72 #define ACPI_PROCESSOR_LIMIT_USER 0
73 #define ACPI_PROCESSOR_LIMIT_THERMAL 1
75 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
76 ACPI_MODULE_NAME("processor_driver");
78 MODULE_AUTHOR("Paul Diefenbaugh");
79 MODULE_DESCRIPTION("ACPI Processor Driver");
80 MODULE_LICENSE("GPL");
82 static int acpi_processor_add(struct acpi_device *device);
83 static int acpi_processor_remove(struct acpi_device *device, int type);
84 static void acpi_processor_notify(struct acpi_device *device, u32 event);
85 static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr);
86 static int acpi_processor_handle_eject(struct acpi_processor *pr);
87 static int acpi_processor_start(struct acpi_processor *pr);
89 static const struct acpi_device_id processor_device_ids[] = {
90 {ACPI_PROCESSOR_OBJECT_HID, 0},
91 {"ACPI0007", 0},
92 {"", 0},
94 MODULE_DEVICE_TABLE(acpi, processor_device_ids);
96 static struct acpi_driver acpi_processor_driver = {
97 .name = "processor",
98 .class = ACPI_PROCESSOR_CLASS,
99 .ids = processor_device_ids,
100 .ops = {
101 .add = acpi_processor_add,
102 .remove = acpi_processor_remove,
103 .suspend = acpi_processor_suspend,
104 .resume = acpi_processor_resume,
105 .notify = acpi_processor_notify,
109 #define INSTALL_NOTIFY_HANDLER 1
110 #define UNINSTALL_NOTIFY_HANDLER 2
112 DEFINE_PER_CPU(struct acpi_processor *, processors);
113 EXPORT_PER_CPU_SYMBOL(processors);
115 struct acpi_processor_errata errata __read_mostly;
117 /* --------------------------------------------------------------------------
118 Errata Handling
119 -------------------------------------------------------------------------- */
121 static int acpi_processor_errata_piix4(struct pci_dev *dev)
123 u8 value1 = 0;
124 u8 value2 = 0;
127 if (!dev)
128 return -EINVAL;
131 * Note that 'dev' references the PIIX4 ACPI Controller.
134 switch (dev->revision) {
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;
152 switch (dev->revision) {
154 case 0: /* PIIX4 A-step */
155 case 1: /* PIIX4 B-step */
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.
163 errata.piix4.throttle = 1;
165 case 2: /* PIIX4E */
166 case 3: /* PIIX4M */
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.
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.
181 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
182 PCI_DEVICE_ID_INTEL_82371AB,
183 PCI_ANY_ID, PCI_ANY_ID, NULL);
184 if (dev) {
185 errata.piix4.bmisx = pci_resource_start(dev, 4);
186 pci_dev_put(dev);
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.
198 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
199 PCI_DEVICE_ID_INTEL_82371AB_0,
200 PCI_ANY_ID, PCI_ANY_ID, NULL);
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);
209 break;
212 if (errata.piix4.bmisx)
213 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
214 "Bus master activity detection (BM-IDE) erratum enabled\n"));
215 if (errata.piix4.fdma)
216 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
217 "Type-F DMA livelock erratum (C3 disabled)\n"));
219 return 0;
222 static int acpi_processor_errata(struct acpi_processor *pr)
224 int result = 0;
225 struct pci_dev *dev = NULL;
228 if (!pr)
229 return -EINVAL;
232 * PIIX4
234 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
235 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
236 PCI_ANY_ID, NULL);
237 if (dev) {
238 result = acpi_processor_errata_piix4(dev);
239 pci_dev_put(dev);
242 return result;
245 /* --------------------------------------------------------------------------
246 Driver Interface
247 -------------------------------------------------------------------------- */
249 static int acpi_processor_get_info(struct acpi_device *device)
251 acpi_status status = 0;
252 union acpi_object object = { 0 };
253 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
254 struct acpi_processor *pr;
255 int cpu_index, device_declaration = 0;
256 static int cpu0_initialized;
258 pr = acpi_driver_data(device);
259 if (!pr)
260 return -EINVAL;
262 if (num_online_cpus() > 1)
263 errata.smp = TRUE;
265 acpi_processor_errata(pr);
268 * Check to see if we have bus mastering arbitration control. This
269 * is required for proper C3 usage (to maintain cache coherency).
271 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
272 pr->flags.bm_control = 1;
273 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
274 "Bus mastering arbitration control present\n"));
275 } else
276 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
277 "No bus mastering arbitration control\n"));
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)) {
283 printk(KERN_ERR PREFIX "Evaluating processor object\n");
284 return -ENODEV;
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
292 pr->acpi_id = object.processor.proc_id;
293 } else {
295 * Declared with "Device" statement; match _UID.
296 * Note that we don't handle string _UIDs yet.
298 unsigned long long value;
299 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
300 NULL, &value);
301 if (ACPI_FAILURE(status)) {
302 printk(KERN_ERR PREFIX
303 "Evaluating processor _UID [%#x]\n", status);
304 return -ENODEV;
306 device_declaration = 1;
307 pr->acpi_id = value;
309 cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id);
311 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
312 if (!cpu0_initialized && (cpu_index == -1) &&
313 (num_online_cpus() == 1)) {
314 cpu_index = 0;
317 cpu0_initialized = 1;
319 pr->id = cpu_index;
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.
326 if (pr->id == -1) {
327 if (ACPI_FAILURE(acpi_processor_hotadd_init(pr)))
328 return -ENODEV;
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.
339 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
340 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
341 pr->acpi_id));
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)
346 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
347 object.processor.pblk_length);
348 else {
349 pr->throttling.address = object.processor.pblk_address;
350 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
351 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
353 pr->pblk = object.processor.pblk_address;
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..
360 * (In particular, allocating the IO range for Cardbus)
362 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
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
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);
374 return 0;
377 static DEFINE_PER_CPU(void *, processor_device_array);
379 static void acpi_processor_notify(struct acpi_device *device, u32 event)
381 struct acpi_processor *pr = acpi_driver_data(device);
382 int saved;
384 if (!pr)
385 return;
387 switch (event) {
388 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
389 saved = pr->performance_platform_limit;
390 acpi_processor_ppc_has_changed(pr, 1);
391 if (saved == pr->performance_platform_limit)
392 break;
393 acpi_bus_generate_proc_event(device, event,
394 pr->performance_platform_limit);
395 acpi_bus_generate_netlink_event(device->pnp.device_class,
396 dev_name(&device->dev), event,
397 pr->performance_platform_limit);
398 break;
399 case ACPI_PROCESSOR_NOTIFY_POWER:
400 acpi_processor_cst_has_changed(pr);
401 acpi_bus_generate_proc_event(device, event, 0);
402 acpi_bus_generate_netlink_event(device->pnp.device_class,
403 dev_name(&device->dev), event, 0);
404 break;
405 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
406 acpi_processor_tstate_has_changed(pr);
407 acpi_bus_generate_proc_event(device, event, 0);
408 acpi_bus_generate_netlink_event(device->pnp.device_class,
409 dev_name(&device->dev), event, 0);
410 default:
411 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
412 "Unsupported event [0x%x]\n", event));
413 break;
416 return;
419 static int acpi_cpu_soft_notify(struct notifier_block *nfb,
420 unsigned long action, void *hcpu)
422 unsigned int cpu = (unsigned long)hcpu;
423 struct acpi_processor *pr = per_cpu(processors, cpu);
425 if (action == CPU_ONLINE && pr) {
426 /* CPU got physically hotplugged and onlined the first time:
427 * Initialize missing things
429 if (pr->flags.need_hotplug_init) {
430 struct cpuidle_driver *idle_driver =
431 cpuidle_get_driver();
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);
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);
450 if (action == CPU_DEAD && pr) {
451 /* invalidate the flag.throttling after one CPU is offline */
452 acpi_processor_reevaluate_tstate(pr, action);
454 return NOTIFY_OK;
457 static struct notifier_block acpi_cpu_notifier =
459 .notifier_call = acpi_cpu_soft_notify,
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.
470 static __ref int acpi_processor_start(struct acpi_processor *pr)
472 struct acpi_device *device = per_cpu(processor_device_array, pr->id);
473 int result = 0;
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);
481 if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver)
482 acpi_processor_power_init(pr, device);
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;
491 dev_dbg(&device->dev, "registered as cooling_device%d\n",
492 pr->cdev->id);
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;
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;
509 return 0;
511 err_remove_sysfs_thermal:
512 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
513 err_thermal_unregister:
514 thermal_cooling_device_unregister(pr->cdev);
515 err_power_exit:
516 acpi_processor_power_exit(pr, device);
518 return result;
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()
527 static int __cpuinit acpi_processor_add(struct acpi_device *device)
529 struct acpi_processor *pr = NULL;
530 int result = 0;
531 struct device *dev;
533 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
534 if (!pr)
535 return -ENOMEM;
537 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
538 kfree(pr);
539 return -ENOMEM;
542 pr->handle = device->handle;
543 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
544 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
545 device->driver_data = pr;
547 result = acpi_processor_get_info(device);
548 if (result) {
549 /* Processor is physically not present */
550 return 0;
553 #ifdef CONFIG_SMP
554 if (pr->id >= setup_max_cpus && pr->id != 0)
555 return 0;
556 #endif
558 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
561 * Buggy BIOS check
562 * ACPI id of processors can be reported wrongly by the BIOS.
563 * Don't trust it blindly
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");
569 result = -ENODEV;
570 goto err_free_cpumask;
572 per_cpu(processor_device_array, pr->id) = device;
574 per_cpu(processors, pr->id) = pr;
576 dev = get_cpu_device(pr->id);
577 if (sysfs_create_link(&device->dev.kobj, &dev->kobj, "sysdev")) {
578 result = -EFAULT;
579 goto err_free_cpumask;
583 * Do not start hotplugged CPUs now, but when they
584 * are onlined the first time
586 if (pr->flags.need_hotplug_init)
587 return 0;
590 * Do not start hotplugged CPUs now, but when they
591 * are onlined the first time
593 if (pr->flags.need_hotplug_init)
594 return 0;
596 result = acpi_processor_start(pr);
597 if (result)
598 goto err_remove_sysfs;
600 return 0;
602 err_remove_sysfs:
603 sysfs_remove_link(&device->dev.kobj, "sysdev");
604 err_free_cpumask:
605 free_cpumask_var(pr->throttling.shared_cpu_map);
607 return result;
610 static int acpi_processor_remove(struct acpi_device *device, int type)
612 struct acpi_processor *pr = NULL;
615 if (!device || !acpi_driver_data(device))
616 return -EINVAL;
618 pr = acpi_driver_data(device);
620 if (pr->id >= nr_cpu_ids)
621 goto free;
623 if (type == ACPI_BUS_REMOVAL_EJECT) {
624 if (acpi_processor_handle_eject(pr))
625 return -EINVAL;
628 acpi_processor_power_exit(pr, device);
630 sysfs_remove_link(&device->dev.kobj, "sysdev");
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;
639 per_cpu(processors, pr->id) = NULL;
640 per_cpu(processor_device_array, pr->id) = NULL;
642 free:
643 free_cpumask_var(pr->throttling.shared_cpu_map);
644 kfree(pr);
646 return 0;
649 #ifdef CONFIG_ACPI_HOTPLUG_CPU
650 /****************************************************************************
651 * Acpi processor hotplug support *
652 ****************************************************************************/
654 static int is_processor_present(acpi_handle handle)
656 acpi_status status;
657 unsigned long long sta = 0;
660 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
662 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
663 return 1;
666 * _STA is mandatory for a processor that supports hot plug
668 if (status == AE_NOT_FOUND)
669 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
670 "Processor does not support hot plug\n"));
671 else
672 ACPI_EXCEPTION((AE_INFO, status,
673 "Processor Device is not present"));
674 return 0;
677 static
678 int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
680 acpi_handle phandle;
681 struct acpi_device *pdev;
684 if (acpi_get_parent(handle, &phandle)) {
685 return -ENODEV;
688 if (acpi_bus_get_device(phandle, &pdev)) {
689 return -ENODEV;
692 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
693 return -ENODEV;
696 return 0;
699 static void acpi_processor_hotplug_notify(acpi_handle handle,
700 u32 event, void *data)
702 struct acpi_processor *pr;
703 struct acpi_device *device = NULL;
704 int result;
707 switch (event) {
708 case ACPI_NOTIFY_BUS_CHECK:
709 case ACPI_NOTIFY_DEVICE_CHECK:
710 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
711 "Processor driver received %s event\n",
712 (event == ACPI_NOTIFY_BUS_CHECK) ?
713 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
715 if (!is_processor_present(handle))
716 break;
718 if (acpi_bus_get_device(handle, &device)) {
719 result = acpi_processor_device_add(handle, &device);
720 if (result)
721 printk(KERN_ERR PREFIX
722 "Unable to add the device\n");
723 break;
725 break;
726 case ACPI_NOTIFY_EJECT_REQUEST:
727 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
728 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
730 if (acpi_bus_get_device(handle, &device)) {
731 printk(KERN_ERR PREFIX
732 "Device don't exist, dropping EJECT\n");
733 break;
735 pr = acpi_driver_data(device);
736 if (!pr) {
737 printk(KERN_ERR PREFIX
738 "Driver data is NULL, dropping EJECT\n");
739 return;
741 break;
742 default:
743 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
744 "Unsupported event [0x%x]\n", event));
745 break;
748 return;
751 static acpi_status
752 processor_walk_namespace_cb(acpi_handle handle,
753 u32 lvl, void *context, void **rv)
755 acpi_status status;
756 int *action = context;
757 acpi_object_type type = 0;
759 status = acpi_get_type(handle, &type);
760 if (ACPI_FAILURE(status))
761 return (AE_OK);
763 if (type != ACPI_TYPE_PROCESSOR)
764 return (AE_OK);
766 switch (*action) {
767 case INSTALL_NOTIFY_HANDLER:
768 acpi_install_notify_handler(handle,
769 ACPI_SYSTEM_NOTIFY,
770 acpi_processor_hotplug_notify,
771 NULL);
772 break;
773 case UNINSTALL_NOTIFY_HANDLER:
774 acpi_remove_notify_handler(handle,
775 ACPI_SYSTEM_NOTIFY,
776 acpi_processor_hotplug_notify);
777 break;
778 default:
779 break;
782 return (AE_OK);
785 static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
787 acpi_handle handle = pr->handle;
789 if (!is_processor_present(handle)) {
790 return AE_ERROR;
793 if (acpi_map_lsapic(handle, &pr->id))
794 return AE_ERROR;
796 if (arch_register_cpu(pr->id)) {
797 acpi_unmap_lsapic(pr->id);
798 return AE_ERROR;
801 /* CPU got hot-plugged, but cpu_data is not initialized yet
802 * Set flag to delay cpu_idle/throttling initialization
803 * in:
804 * acpi_processor_add()
805 * acpi_processor_get_info()
806 * and do it when the CPU gets online the first time
807 * TBD: Cleanup above functions and try to do this more elegant.
809 printk(KERN_INFO "CPU %d got hotplugged\n", pr->id);
810 pr->flags.need_hotplug_init = 1;
812 return AE_OK;
815 static int acpi_processor_handle_eject(struct acpi_processor *pr)
817 if (cpu_online(pr->id))
818 cpu_down(pr->id);
820 arch_unregister_cpu(pr->id);
821 acpi_unmap_lsapic(pr->id);
822 return (0);
824 #else
825 static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr)
827 return AE_ERROR;
829 static int acpi_processor_handle_eject(struct acpi_processor *pr)
831 return (-EINVAL);
833 #endif
835 static
836 void acpi_processor_install_hotplug_notify(void)
838 #ifdef CONFIG_ACPI_HOTPLUG_CPU
839 int action = INSTALL_NOTIFY_HANDLER;
840 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
841 ACPI_ROOT_OBJECT,
842 ACPI_UINT32_MAX,
843 processor_walk_namespace_cb, NULL, &action, NULL);
844 #endif
845 register_hotcpu_notifier(&acpi_cpu_notifier);
848 static
849 void acpi_processor_uninstall_hotplug_notify(void)
851 #ifdef CONFIG_ACPI_HOTPLUG_CPU
852 int action = UNINSTALL_NOTIFY_HANDLER;
853 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
854 ACPI_ROOT_OBJECT,
855 ACPI_UINT32_MAX,
856 processor_walk_namespace_cb, NULL, &action, NULL);
857 #endif
858 unregister_hotcpu_notifier(&acpi_cpu_notifier);
862 * We keep the driver loaded even when ACPI is not running.
863 * This is needed for the powernow-k8 driver, that works even without
864 * ACPI, but needs symbols from this driver
867 static int __init acpi_processor_init(void)
869 int result = 0;
871 if (acpi_disabled)
872 return 0;
874 memset(&errata, 0, sizeof(errata));
876 result = acpi_bus_register_driver(&acpi_processor_driver);
877 if (result < 0)
878 return result;
880 acpi_processor_install_hotplug_notify();
882 acpi_thermal_cpufreq_init();
884 acpi_processor_ppc_init();
886 acpi_processor_throttling_init();
888 return 0;
891 static void __exit acpi_processor_exit(void)
893 if (acpi_disabled)
894 return;
896 acpi_processor_ppc_exit();
898 acpi_thermal_cpufreq_exit();
900 acpi_processor_uninstall_hotplug_notify();
902 acpi_bus_unregister_driver(&acpi_processor_driver);
904 return;
907 module_init(acpi_processor_init);
908 module_exit(acpi_processor_exit);
910 MODULE_ALIAS("processor");