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 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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>
41 #include <linux/cpufreq.h>
42 #include <linux/cpu.h>
43 #include <linux/proc_fs.h>
44 #include <linux/seq_file.h>
45 #include <linux/dmi.h>
46 #include <linux/moduleparam.h>
49 #include <asm/system.h>
51 #include <asm/delay.h>
52 #include <asm/uaccess.h>
53 #include <asm/processor.h>
57 #include <acpi/acpi_bus.h>
58 #include <acpi/acpi_drivers.h>
59 #include <acpi/processor.h>
61 #define ACPI_PROCESSOR_COMPONENT 0x01000000
62 #define ACPI_PROCESSOR_CLASS "processor"
63 #define ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver"
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
71 #define ACPI_PROCESSOR_LIMIT_USER 0
72 #define ACPI_PROCESSOR_LIMIT_THERMAL 1
74 #define ACPI_STA_PRESENT 0x00000001
76 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
77 ACPI_MODULE_NAME("acpi_processor")
79 MODULE_AUTHOR("Paul Diefenbaugh");
80 MODULE_DESCRIPTION(ACPI_PROCESSOR_DRIVER_NAME);
81 MODULE_LICENSE("GPL");
83 static int acpi_processor_add(struct acpi_device *device);
84 static int acpi_processor_start(struct acpi_device *device);
85 static int acpi_processor_remove(struct acpi_device *device, int type);
86 static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
87 static void acpi_processor_notify(acpi_handle handle, u32 event, void *data);
88 static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
89 static int acpi_processor_handle_eject(struct acpi_processor *pr);
91 static struct acpi_driver acpi_processor_driver = {
92 .name = ACPI_PROCESSOR_DRIVER_NAME,
93 .class = ACPI_PROCESSOR_CLASS,
94 .ids = ACPI_PROCESSOR_HID,
96 .add = acpi_processor_add,
97 .remove = acpi_processor_remove,
98 .start = acpi_processor_start,
102 #define INSTALL_NOTIFY_HANDLER 1
103 #define UNINSTALL_NOTIFY_HANDLER 2
105 static struct file_operations acpi_processor_info_fops = {
106 .open = acpi_processor_info_open_fs,
109 .release = single_release,
112 struct acpi_processor *processors[NR_CPUS];
113 struct acpi_processor_errata errata;
115 /* --------------------------------------------------------------------------
117 -------------------------------------------------------------------------- */
119 static int acpi_processor_errata_piix4(struct pci_dev *dev)
125 ACPI_FUNCTION_TRACE("acpi_processor_errata_piix4");
128 return_VALUE(-EINVAL);
131 * Note that 'dev' references the PIIX4 ACPI Controller.
134 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
138 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
141 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
144 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
147 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
150 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
156 case 0: /* PIIX4 A-step */
157 case 1: /* PIIX4 B-step */
159 * See specification changes #13 ("Manual Throttle Duty Cycle")
160 * and #14 ("Enabling and Disabling Manual Throttle"), plus
161 * erratum #5 ("STPCLK# Deassertion Time") from the January
162 * 2002 PIIX4 specification update. Applies to only older
165 errata.piix4.throttle = 1;
170 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
171 * Livelock") from the January 2002 PIIX4 specification update.
172 * Applies to all PIIX4 models.
178 * Find the PIIX4 IDE Controller and get the Bus Master IDE
179 * Status register address. We'll use this later to read
180 * each IDE controller's DMA status to make sure we catch all
183 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
184 PCI_DEVICE_ID_INTEL_82371AB,
185 PCI_ANY_ID, PCI_ANY_ID, NULL);
187 errata.piix4.bmisx = pci_resource_start(dev, 4);
194 * Find the PIIX4 ISA Controller and read the Motherboard
195 * DMA controller's status to see if Type-F (Fast) DMA mode
196 * is enabled (bit 7) on either channel. Note that we'll
197 * disable C3 support if this is enabled, as some legacy
198 * devices won't operate well if fast DMA is disabled.
200 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
201 PCI_DEVICE_ID_INTEL_82371AB_0,
202 PCI_ANY_ID, PCI_ANY_ID, NULL);
204 pci_read_config_byte(dev, 0x76, &value1);
205 pci_read_config_byte(dev, 0x77, &value2);
206 if ((value1 & 0x80) || (value2 & 0x80))
207 errata.piix4.fdma = 1;
214 if (errata.piix4.bmisx)
215 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
216 "Bus master activity detection (BM-IDE) erratum enabled\n"));
217 if (errata.piix4.fdma)
218 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
219 "Type-F DMA livelock erratum (C3 disabled)\n"));
224 static int acpi_processor_errata(struct acpi_processor *pr)
227 struct pci_dev *dev = NULL;
229 ACPI_FUNCTION_TRACE("acpi_processor_errata");
232 return_VALUE(-EINVAL);
237 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
238 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
241 result = acpi_processor_errata_piix4(dev);
245 return_VALUE(result);
248 /* --------------------------------------------------------------------------
249 Common ACPI processor fucntions
250 -------------------------------------------------------------------------- */
253 * _PDC is required for a BIOS-OS handshake for most of the newer
254 * ACPI processor features.
257 int acpi_processor_set_pdc(struct acpi_processor *pr,
258 struct acpi_object_list *pdc_in)
260 acpi_status status = AE_OK;
262 union acpi_object arg0 = { ACPI_TYPE_BUFFER };
263 struct acpi_object_list no_object = { 1, &arg0 };
264 struct acpi_object_list *pdc;
266 ACPI_FUNCTION_TRACE("acpi_processor_set_pdc");
268 arg0.buffer.length = 12;
269 arg0.buffer.pointer = (u8 *) arg0_buf;
270 arg0_buf[0] = ACPI_PDC_REVISION_ID;
274 pdc = (pdc_in) ? pdc_in : &no_object;
276 status = acpi_evaluate_object(pr->handle, "_PDC", pdc, NULL);
278 if ((ACPI_FAILURE(status)) && (pdc_in))
279 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
280 "Error evaluating _PDC, using legacy perf. control...\n"));
282 return_VALUE(status);
285 /* --------------------------------------------------------------------------
287 -------------------------------------------------------------------------- */
289 static struct proc_dir_entry *acpi_processor_dir = NULL;
291 static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
293 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
295 ACPI_FUNCTION_TRACE("acpi_processor_info_seq_show");
300 seq_printf(seq, "processor id: %d\n"
302 "bus mastering control: %s\n"
303 "power management: %s\n"
304 "throttling control: %s\n"
305 "limit interface: %s\n",
308 pr->flags.bm_control ? "yes" : "no",
309 pr->flags.power ? "yes" : "no",
310 pr->flags.throttling ? "yes" : "no",
311 pr->flags.limit ? "yes" : "no");
317 static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
319 return single_open(file, acpi_processor_info_seq_show,
323 static int acpi_processor_add_fs(struct acpi_device *device)
325 struct proc_dir_entry *entry = NULL;
327 ACPI_FUNCTION_TRACE("acpi_processor_add_fs");
329 if (!acpi_device_dir(device)) {
330 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
332 if (!acpi_device_dir(device))
333 return_VALUE(-ENODEV);
335 acpi_device_dir(device)->owner = THIS_MODULE;
338 entry = create_proc_entry(ACPI_PROCESSOR_FILE_INFO,
339 S_IRUGO, acpi_device_dir(device));
341 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
342 "Unable to create '%s' fs entry\n",
343 ACPI_PROCESSOR_FILE_INFO));
345 entry->proc_fops = &acpi_processor_info_fops;
346 entry->data = acpi_driver_data(device);
347 entry->owner = THIS_MODULE;
350 /* 'throttling' [R/W] */
351 entry = create_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
352 S_IFREG | S_IRUGO | S_IWUSR,
353 acpi_device_dir(device));
355 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
356 "Unable to create '%s' fs entry\n",
357 ACPI_PROCESSOR_FILE_THROTTLING));
359 entry->proc_fops = &acpi_processor_throttling_fops;
360 entry->proc_fops->write = acpi_processor_write_throttling;
361 entry->data = acpi_driver_data(device);
362 entry->owner = THIS_MODULE;
366 entry = create_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
367 S_IFREG | S_IRUGO | S_IWUSR,
368 acpi_device_dir(device));
370 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
371 "Unable to create '%s' fs entry\n",
372 ACPI_PROCESSOR_FILE_LIMIT));
374 entry->proc_fops = &acpi_processor_limit_fops;
375 entry->proc_fops->write = acpi_processor_write_limit;
376 entry->data = acpi_driver_data(device);
377 entry->owner = THIS_MODULE;
383 static int acpi_processor_remove_fs(struct acpi_device *device)
385 ACPI_FUNCTION_TRACE("acpi_processor_remove_fs");
387 if (acpi_device_dir(device)) {
388 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
389 acpi_device_dir(device));
390 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
391 acpi_device_dir(device));
392 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
393 acpi_device_dir(device));
394 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
395 acpi_device_dir(device) = NULL;
401 /* Use the acpiid in MADT to map cpus in case of SMP */
403 #define convert_acpiid_to_cpu(acpi_id, cpu_indexp) (0xff)
407 #define arch_acpiid_to_apicid ia64_acpiid_to_sapicid
408 #define arch_cpu_to_apicid ia64_cpu_to_sapicid
409 #define ARCH_BAD_APICID (0xffff)
411 #define arch_acpiid_to_apicid x86_acpiid_to_apicid
412 #define arch_cpu_to_apicid x86_cpu_to_apicid
413 #define ARCH_BAD_APICID (0xff)
416 static int convert_acpiid_to_cpu(u8 acpi_id, unsigned int *cpu_index)
421 apic_id = arch_acpiid_to_apicid[acpi_id];
422 if (apic_id == ARCH_BAD_APICID)
425 for (i = 0; i < NR_CPUS; i++) {
426 if (arch_cpu_to_apicid[i] == apic_id) {
435 /* --------------------------------------------------------------------------
437 -------------------------------------------------------------------------- */
439 static int acpi_processor_get_info(struct acpi_processor *pr)
441 acpi_status status = 0;
442 union acpi_object object = { 0 };
443 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
444 unsigned int cpu_index;
446 static int cpu0_initialized;
448 ACPI_FUNCTION_TRACE("acpi_processor_get_info");
451 return_VALUE(-EINVAL);
453 if (num_online_cpus() > 1)
456 acpi_processor_errata(pr);
459 * Check to see if we have bus mastering arbitration control. This
460 * is required for proper C3 usage (to maintain cache coherency).
462 if (acpi_fadt.V1_pm2_cnt_blk && acpi_fadt.pm2_cnt_len) {
463 pr->flags.bm_control = 1;
464 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
465 "Bus mastering arbitration control present\n"));
467 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
468 "No bus mastering arbitration control\n"));
471 * Evalute the processor object. Note that it is common on SMP to
472 * have the first (boot) processor with a valid PBLK address while
473 * all others have a NULL address.
475 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
476 if (ACPI_FAILURE(status)) {
477 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
478 "Error evaluating processor object\n"));
479 return_VALUE(-ENODEV);
483 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
484 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
486 pr->acpi_id = object.processor.proc_id;
488 retval = convert_acpiid_to_cpu(pr->acpi_id, &cpu_index);
490 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
491 if (!cpu0_initialized && retval &&
492 (num_online_cpus() == 1)) {
496 cpu0_initialized = 1;
501 * Extra Processor objects may be enumerated on MP systems with
502 * less than the max # of CPUs. They should be ignored _iff
503 * they are physically not present.
507 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
508 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
509 "Error getting cpuindex for acpiid 0x%x\n",
511 return_VALUE(-ENODEV);
515 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
518 if (!object.processor.pblk_address)
519 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
520 else if (object.processor.pblk_length != 6)
521 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid PBLK length [%d]\n",
522 object.processor.pblk_length));
524 pr->throttling.address = object.processor.pblk_address;
525 pr->throttling.duty_offset = acpi_fadt.duty_offset;
526 pr->throttling.duty_width = acpi_fadt.duty_width;
528 pr->pblk = object.processor.pblk_address;
531 * We don't care about error returns - we just try to mark
532 * these reserved so that nobody else is confused into thinking
533 * that this region might be unused..
535 * (In particular, allocating the IO range for Cardbus)
537 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
540 #ifdef CONFIG_CPU_FREQ
541 acpi_processor_ppc_has_changed(pr);
543 acpi_processor_get_throttling_info(pr);
544 acpi_processor_get_limit_info(pr);
549 static int acpi_processor_start(struct acpi_device *device)
552 acpi_status status = AE_OK;
553 struct acpi_processor *pr;
555 ACPI_FUNCTION_TRACE("acpi_processor_start");
557 pr = acpi_driver_data(device);
559 result = acpi_processor_get_info(pr);
561 /* Processor is physically not present */
565 BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
567 processors[pr->id] = pr;
569 result = acpi_processor_add_fs(device);
573 status = acpi_install_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
574 acpi_processor_notify, pr);
575 if (ACPI_FAILURE(status)) {
576 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
577 "Error installing device notify handler\n"));
580 acpi_processor_power_init(pr, device);
582 if (pr->flags.throttling) {
583 printk(KERN_INFO PREFIX "%s [%s] (supports",
584 acpi_device_name(device), acpi_device_bid(device));
585 printk(" %d throttling states", pr->throttling.state_count);
591 return_VALUE(result);
594 static void acpi_processor_notify(acpi_handle handle, u32 event, void *data)
596 struct acpi_processor *pr = (struct acpi_processor *)data;
597 struct acpi_device *device = NULL;
599 ACPI_FUNCTION_TRACE("acpi_processor_notify");
604 if (acpi_bus_get_device(pr->handle, &device))
608 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
609 acpi_processor_ppc_has_changed(pr);
610 acpi_bus_generate_event(device, event,
611 pr->performance_platform_limit);
613 case ACPI_PROCESSOR_NOTIFY_POWER:
614 acpi_processor_cst_has_changed(pr);
615 acpi_bus_generate_event(device, event, 0);
618 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
619 "Unsupported event [0x%x]\n", event));
626 static int acpi_processor_add(struct acpi_device *device)
628 struct acpi_processor *pr = NULL;
630 ACPI_FUNCTION_TRACE("acpi_processor_add");
633 return_VALUE(-EINVAL);
635 pr = kmalloc(sizeof(struct acpi_processor), GFP_KERNEL);
637 return_VALUE(-ENOMEM);
638 memset(pr, 0, sizeof(struct acpi_processor));
640 pr->handle = device->handle;
641 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
642 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
643 acpi_driver_data(device) = pr;
648 static int acpi_processor_remove(struct acpi_device *device, int type)
650 acpi_status status = AE_OK;
651 struct acpi_processor *pr = NULL;
653 ACPI_FUNCTION_TRACE("acpi_processor_remove");
655 if (!device || !acpi_driver_data(device))
656 return_VALUE(-EINVAL);
658 pr = (struct acpi_processor *)acpi_driver_data(device);
660 if (pr->id >= NR_CPUS) {
665 if (type == ACPI_BUS_REMOVAL_EJECT) {
666 if (acpi_processor_handle_eject(pr))
667 return_VALUE(-EINVAL);
670 acpi_processor_power_exit(pr, device);
672 status = acpi_remove_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
673 acpi_processor_notify);
674 if (ACPI_FAILURE(status)) {
675 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
676 "Error removing notify handler\n"));
679 acpi_processor_remove_fs(device);
681 processors[pr->id] = NULL;
688 #ifdef CONFIG_ACPI_HOTPLUG_CPU
689 /****************************************************************************
690 * Acpi processor hotplug support *
691 ****************************************************************************/
693 static int is_processor_present(acpi_handle handle);
695 static int is_processor_present(acpi_handle handle)
698 unsigned long sta = 0;
700 ACPI_FUNCTION_TRACE("is_processor_present");
702 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
703 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_PRESENT)) {
704 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
705 "Processor Device is not present\n"));
712 int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
715 struct acpi_device *pdev;
716 struct acpi_processor *pr;
718 ACPI_FUNCTION_TRACE("acpi_processor_device_add");
720 if (acpi_get_parent(handle, &phandle)) {
721 return_VALUE(-ENODEV);
724 if (acpi_bus_get_device(phandle, &pdev)) {
725 return_VALUE(-ENODEV);
728 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
729 return_VALUE(-ENODEV);
732 acpi_bus_start(*device);
734 pr = acpi_driver_data(*device);
736 return_VALUE(-ENODEV);
738 if ((pr->id >= 0) && (pr->id < NR_CPUS)) {
739 kobject_hotplug(&(*device)->kobj, KOBJ_ONLINE);
745 acpi_processor_hotplug_notify(acpi_handle handle, u32 event, void *data)
747 struct acpi_processor *pr;
748 struct acpi_device *device = NULL;
751 ACPI_FUNCTION_TRACE("acpi_processor_hotplug_notify");
754 case ACPI_NOTIFY_BUS_CHECK:
755 case ACPI_NOTIFY_DEVICE_CHECK:
756 printk("Processor driver received %s event\n",
757 (event == ACPI_NOTIFY_BUS_CHECK) ?
758 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
760 if (!is_processor_present(handle))
763 if (acpi_bus_get_device(handle, &device)) {
764 result = acpi_processor_device_add(handle, &device);
766 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
767 "Unable to add the device\n"));
771 pr = acpi_driver_data(device);
773 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
774 "Driver data is NULL\n"));
778 if (pr->id >= 0 && (pr->id < NR_CPUS)) {
779 kobject_hotplug(&device->kobj, KOBJ_OFFLINE);
783 result = acpi_processor_start(device);
784 if ((!result) && ((pr->id >= 0) && (pr->id < NR_CPUS))) {
785 kobject_hotplug(&device->kobj, KOBJ_ONLINE);
787 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
788 "Device [%s] failed to start\n",
789 acpi_device_bid(device)));
792 case ACPI_NOTIFY_EJECT_REQUEST:
793 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
794 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
796 if (acpi_bus_get_device(handle, &device)) {
797 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
798 "Device don't exist, dropping EJECT\n"));
801 pr = acpi_driver_data(device);
803 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
804 "Driver data is NULL, dropping EJECT\n"));
808 if ((pr->id < NR_CPUS) && (cpu_present(pr->id)))
809 kobject_hotplug(&device->kobj, KOBJ_OFFLINE);
812 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
813 "Unsupported event [0x%x]\n", event));
821 processor_walk_namespace_cb(acpi_handle handle,
822 u32 lvl, void *context, void **rv)
825 int *action = context;
826 acpi_object_type type = 0;
828 status = acpi_get_type(handle, &type);
829 if (ACPI_FAILURE(status))
832 if (type != ACPI_TYPE_PROCESSOR)
836 case INSTALL_NOTIFY_HANDLER:
837 acpi_install_notify_handler(handle,
839 acpi_processor_hotplug_notify,
842 case UNINSTALL_NOTIFY_HANDLER:
843 acpi_remove_notify_handler(handle,
845 acpi_processor_hotplug_notify);
854 static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
856 ACPI_FUNCTION_TRACE("acpi_processor_hotadd_init");
858 if (!is_processor_present(handle)) {
859 return_VALUE(AE_ERROR);
862 if (acpi_map_lsapic(handle, p_cpu))
863 return_VALUE(AE_ERROR);
865 if (arch_register_cpu(*p_cpu)) {
866 acpi_unmap_lsapic(*p_cpu);
867 return_VALUE(AE_ERROR);
873 static int acpi_processor_handle_eject(struct acpi_processor *pr)
875 if (cpu_online(pr->id)) {
878 arch_unregister_cpu(pr->id);
879 acpi_unmap_lsapic(pr->id);
883 static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
887 static int acpi_processor_handle_eject(struct acpi_processor *pr)
894 void acpi_processor_install_hotplug_notify(void)
896 #ifdef CONFIG_ACPI_HOTPLUG_CPU
897 int action = INSTALL_NOTIFY_HANDLER;
898 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
901 processor_walk_namespace_cb, &action, NULL);
906 void acpi_processor_uninstall_hotplug_notify(void)
908 #ifdef CONFIG_ACPI_HOTPLUG_CPU
909 int action = UNINSTALL_NOTIFY_HANDLER;
910 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
913 processor_walk_namespace_cb, &action, NULL);
918 * We keep the driver loaded even when ACPI is not running.
919 * This is needed for the powernow-k8 driver, that works even without
920 * ACPI, but needs symbols from this driver
923 static int __init acpi_processor_init(void)
927 ACPI_FUNCTION_TRACE("acpi_processor_init");
929 memset(&processors, 0, sizeof(processors));
930 memset(&errata, 0, sizeof(errata));
932 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
933 if (!acpi_processor_dir)
935 acpi_processor_dir->owner = THIS_MODULE;
937 result = acpi_bus_register_driver(&acpi_processor_driver);
939 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
943 acpi_processor_install_hotplug_notify();
945 acpi_thermal_cpufreq_init();
947 acpi_processor_ppc_init();
952 static void __exit acpi_processor_exit(void)
954 ACPI_FUNCTION_TRACE("acpi_processor_exit");
956 acpi_processor_ppc_exit();
958 acpi_thermal_cpufreq_exit();
960 acpi_processor_uninstall_hotplug_notify();
962 acpi_bus_unregister_driver(&acpi_processor_driver);
964 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
969 module_init(acpi_processor_init);
970 module_exit(acpi_processor_exit);
972 EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
974 MODULE_ALIAS("processor");