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_DEVICE_NAME "Processor"
64 #define ACPI_PROCESSOR_FILE_INFO "info"
65 #define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
66 #define ACPI_PROCESSOR_FILE_LIMIT "limit"
67 #define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
68 #define ACPI_PROCESSOR_NOTIFY_POWER 0x81
70 #define ACPI_PROCESSOR_LIMIT_USER 0
71 #define ACPI_PROCESSOR_LIMIT_THERMAL 1
73 #define ACPI_STA_PRESENT 0x00000001
75 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
76 ACPI_MODULE_NAME("processor_core");
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_start(struct acpi_device
*device
);
84 static int acpi_processor_remove(struct acpi_device
*device
, int type
);
85 static int acpi_processor_info_open_fs(struct inode
*inode
, struct file
*file
);
86 static void acpi_processor_notify(acpi_handle handle
, u32 event
, void *data
);
87 static acpi_status
acpi_processor_hotadd_init(acpi_handle handle
, int *p_cpu
);
88 static int acpi_processor_handle_eject(struct acpi_processor
*pr
);
90 static struct acpi_driver acpi_processor_driver
= {
92 .class = ACPI_PROCESSOR_CLASS
,
93 .ids
= ACPI_PROCESSOR_HID
,
95 .add
= acpi_processor_add
,
96 .remove
= acpi_processor_remove
,
97 .start
= acpi_processor_start
,
101 #define INSTALL_NOTIFY_HANDLER 1
102 #define UNINSTALL_NOTIFY_HANDLER 2
104 static const struct file_operations acpi_processor_info_fops
= {
105 .open
= acpi_processor_info_open_fs
,
108 .release
= single_release
,
111 struct acpi_processor
*processors
[NR_CPUS
];
112 struct acpi_processor_errata errata __read_mostly
;
114 /* --------------------------------------------------------------------------
116 -------------------------------------------------------------------------- */
118 static int acpi_processor_errata_piix4(struct pci_dev
*dev
)
129 * Note that 'dev' references the PIIX4 ACPI Controller.
132 pci_read_config_byte(dev
, PCI_REVISION_ID
, &rev
);
136 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found PIIX4 A-step\n"));
139 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found PIIX4 B-step\n"));
142 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found PIIX4E\n"));
145 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found PIIX4M\n"));
148 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found unknown PIIX4\n"));
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
163 errata
.piix4
.throttle
= 1;
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.
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
181 dev
= pci_get_subsys(PCI_VENDOR_ID_INTEL
,
182 PCI_DEVICE_ID_INTEL_82371AB
,
183 PCI_ANY_ID
, PCI_ANY_ID
, NULL
);
185 errata
.piix4
.bmisx
= pci_resource_start(dev
, 4);
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
);
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;
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"));
222 static int acpi_processor_errata(struct acpi_processor
*pr
)
225 struct pci_dev
*dev
= NULL
;
234 dev
= pci_get_subsys(PCI_VENDOR_ID_INTEL
,
235 PCI_DEVICE_ID_INTEL_82371AB_3
, PCI_ANY_ID
,
238 result
= acpi_processor_errata_piix4(dev
);
245 /* --------------------------------------------------------------------------
246 Common ACPI processor functions
247 -------------------------------------------------------------------------- */
250 * _PDC is required for a BIOS-OS handshake for most of the newer
251 * ACPI processor features.
253 static int acpi_processor_set_pdc(struct acpi_processor
*pr
)
255 struct acpi_object_list
*pdc_in
= pr
->pdc
;
256 acpi_status status
= AE_OK
;
262 status
= acpi_evaluate_object(pr
->handle
, "_PDC", pdc_in
, NULL
);
264 if (ACPI_FAILURE(status
))
265 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
266 "Could not evaluate _PDC, using legacy perf. control...\n"));
271 /* --------------------------------------------------------------------------
273 -------------------------------------------------------------------------- */
275 static struct proc_dir_entry
*acpi_processor_dir
= NULL
;
277 static int acpi_processor_info_seq_show(struct seq_file
*seq
, void *offset
)
279 struct acpi_processor
*pr
= seq
->private;
285 seq_printf(seq
, "processor id: %d\n"
287 "bus mastering control: %s\n"
288 "power management: %s\n"
289 "throttling control: %s\n"
290 "limit interface: %s\n",
293 pr
->flags
.bm_control
? "yes" : "no",
294 pr
->flags
.power
? "yes" : "no",
295 pr
->flags
.throttling
? "yes" : "no",
296 pr
->flags
.limit
? "yes" : "no");
302 static int acpi_processor_info_open_fs(struct inode
*inode
, struct file
*file
)
304 return single_open(file
, acpi_processor_info_seq_show
,
308 static int acpi_processor_add_fs(struct acpi_device
*device
)
310 struct proc_dir_entry
*entry
= NULL
;
313 if (!acpi_device_dir(device
)) {
314 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
316 if (!acpi_device_dir(device
))
319 acpi_device_dir(device
)->owner
= THIS_MODULE
;
322 entry
= create_proc_entry(ACPI_PROCESSOR_FILE_INFO
,
323 S_IRUGO
, acpi_device_dir(device
));
327 entry
->proc_fops
= &acpi_processor_info_fops
;
328 entry
->data
= acpi_driver_data(device
);
329 entry
->owner
= THIS_MODULE
;
332 /* 'throttling' [R/W] */
333 entry
= create_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING
,
334 S_IFREG
| S_IRUGO
| S_IWUSR
,
335 acpi_device_dir(device
));
339 entry
->proc_fops
= &acpi_processor_throttling_fops
;
340 entry
->data
= acpi_driver_data(device
);
341 entry
->owner
= THIS_MODULE
;
345 entry
= create_proc_entry(ACPI_PROCESSOR_FILE_LIMIT
,
346 S_IFREG
| S_IRUGO
| S_IWUSR
,
347 acpi_device_dir(device
));
351 entry
->proc_fops
= &acpi_processor_limit_fops
;
352 entry
->data
= acpi_driver_data(device
);
353 entry
->owner
= THIS_MODULE
;
359 static int acpi_processor_remove_fs(struct acpi_device
*device
)
362 if (acpi_device_dir(device
)) {
363 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO
,
364 acpi_device_dir(device
));
365 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING
,
366 acpi_device_dir(device
));
367 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT
,
368 acpi_device_dir(device
));
369 remove_proc_entry(acpi_device_bid(device
), acpi_processor_dir
);
370 acpi_device_dir(device
) = NULL
;
376 /* Use the acpiid in MADT to map cpus in case of SMP */
379 static int get_cpu_id(acpi_handle handle
, u32 acpi_id
) {return -1;}
382 static struct acpi_table_madt
*madt
;
384 static int map_lapic_id(struct acpi_subtable_header
*entry
,
385 u32 acpi_id
, int *apic_id
)
387 struct acpi_madt_local_apic
*lapic
=
388 (struct acpi_madt_local_apic
*)entry
;
389 if ((lapic
->lapic_flags
& ACPI_MADT_ENABLED
) &&
390 lapic
->processor_id
== acpi_id
) {
391 *apic_id
= lapic
->id
;
397 static int map_lsapic_id(struct acpi_subtable_header
*entry
,
398 u32 acpi_id
, int *apic_id
)
400 struct acpi_madt_local_sapic
*lsapic
=
401 (struct acpi_madt_local_sapic
*)entry
;
402 /* Only check enabled APICs*/
403 if (lsapic
->lapic_flags
& ACPI_MADT_ENABLED
) {
404 /* First check against id */
405 if (lsapic
->processor_id
== acpi_id
) {
406 *apic_id
= (lsapic
->id
<< 8) | lsapic
->eid
;
408 /* Check against optional uid */
409 } else if (entry
->length
>= 16 &&
410 lsapic
->uid
== acpi_id
) {
411 *apic_id
= lsapic
->uid
;
419 #define arch_cpu_to_apicid ia64_cpu_to_sapicid
421 #define arch_cpu_to_apicid x86_cpu_to_apicid
424 static int map_madt_entry(u32 acpi_id
)
426 unsigned long madt_end
, entry
;
432 entry
= (unsigned long)madt
;
433 madt_end
= entry
+ madt
->header
.length
;
435 /* Parse all entries looking for a match. */
437 entry
+= sizeof(struct acpi_table_madt
);
438 while (entry
+ sizeof(struct acpi_subtable_header
) < madt_end
) {
439 struct acpi_subtable_header
*header
=
440 (struct acpi_subtable_header
*)entry
;
441 if (header
->type
== ACPI_MADT_TYPE_LOCAL_APIC
) {
442 if (map_lapic_id(header
, acpi_id
, &apic_id
))
444 } else if (header
->type
== ACPI_MADT_TYPE_LOCAL_SAPIC
) {
445 if (map_lsapic_id(header
, acpi_id
, &apic_id
))
448 entry
+= header
->length
;
453 static int map_mat_entry(acpi_handle handle
, u32 acpi_id
)
455 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
456 union acpi_object
*obj
;
457 struct acpi_subtable_header
*header
;
460 if (ACPI_FAILURE(acpi_evaluate_object(handle
, "_MAT", NULL
, &buffer
)))
463 if (!buffer
.length
|| !buffer
.pointer
)
466 obj
= buffer
.pointer
;
467 if (obj
->type
!= ACPI_TYPE_BUFFER
||
468 obj
->buffer
.length
< sizeof(struct acpi_subtable_header
)) {
472 header
= (struct acpi_subtable_header
*)obj
->buffer
.pointer
;
473 if (header
->type
== ACPI_MADT_TYPE_LOCAL_APIC
) {
474 map_lapic_id(header
, acpi_id
, &apic_id
);
475 } else if (header
->type
== ACPI_MADT_TYPE_LOCAL_SAPIC
) {
476 map_lsapic_id(header
, acpi_id
, &apic_id
);
481 kfree(buffer
.pointer
);
485 static int get_cpu_id(acpi_handle handle
, u32 acpi_id
)
490 apic_id
= map_mat_entry(handle
, acpi_id
);
492 apic_id
= map_madt_entry(acpi_id
);
496 for (i
= 0; i
< NR_CPUS
; ++i
) {
497 if (arch_cpu_to_apicid
[i
] == apic_id
)
504 /* --------------------------------------------------------------------------
506 -------------------------------------------------------------------------- */
508 static int acpi_processor_get_info(struct acpi_processor
*pr
, unsigned has_uid
)
510 acpi_status status
= 0;
511 union acpi_object object
= { 0 };
512 struct acpi_buffer buffer
= { sizeof(union acpi_object
), &object
};
514 static int cpu0_initialized
;
520 if (num_online_cpus() > 1)
523 acpi_processor_errata(pr
);
526 * Check to see if we have bus mastering arbitration control. This
527 * is required for proper C3 usage (to maintain cache coherency).
529 if (acpi_gbl_FADT
.pm2_control_block
&& acpi_gbl_FADT
.pm2_control_length
) {
530 pr
->flags
.bm_control
= 1;
531 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
532 "Bus mastering arbitration control present\n"));
534 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
535 "No bus mastering arbitration control\n"));
537 /* Check if it is a Device with HID and UID */
540 status
= acpi_evaluate_integer(pr
->handle
, METHOD_NAME__UID
,
542 if (ACPI_FAILURE(status
)) {
543 printk(KERN_ERR PREFIX
"Evaluating processor _UID\n");
549 * Evalute the processor object. Note that it is common on SMP to
550 * have the first (boot) processor with a valid PBLK address while
551 * all others have a NULL address.
553 status
= acpi_evaluate_object(pr
->handle
, NULL
, NULL
, &buffer
);
554 if (ACPI_FAILURE(status
)) {
555 printk(KERN_ERR PREFIX
"Evaluating processor object\n");
560 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
561 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
563 pr
->acpi_id
= object
.processor
.proc_id
;
565 cpu_index
= get_cpu_id(pr
->handle
, pr
->acpi_id
);
567 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
568 if (!cpu0_initialized
&& (cpu_index
== -1) &&
569 (num_online_cpus() == 1)) {
573 cpu0_initialized
= 1;
578 * Extra Processor objects may be enumerated on MP systems with
579 * less than the max # of CPUs. They should be ignored _iff
580 * they are physically not present.
584 (acpi_processor_hotadd_init(pr
->handle
, &pr
->id
))) {
589 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Processor [%d:%d]\n", pr
->id
,
592 if (!object
.processor
.pblk_address
)
593 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "No PBLK (NULL address)\n"));
594 else if (object
.processor
.pblk_length
!= 6)
595 printk(KERN_ERR PREFIX
"Invalid PBLK length [%d]\n",
596 object
.processor
.pblk_length
);
598 pr
->throttling
.address
= object
.processor
.pblk_address
;
599 pr
->throttling
.duty_offset
= acpi_gbl_FADT
.duty_offset
;
600 pr
->throttling
.duty_width
= acpi_gbl_FADT
.duty_width
;
602 pr
->pblk
= object
.processor
.pblk_address
;
605 * We don't care about error returns - we just try to mark
606 * these reserved so that nobody else is confused into thinking
607 * that this region might be unused..
609 * (In particular, allocating the IO range for Cardbus)
611 request_region(pr
->throttling
.address
, 6, "ACPI CPU throttle");
614 #ifdef CONFIG_CPU_FREQ
615 acpi_processor_ppc_has_changed(pr
);
617 acpi_processor_get_throttling_info(pr
);
618 acpi_processor_get_limit_info(pr
);
623 static void *processor_device_array
[NR_CPUS
];
625 static int __cpuinit
acpi_processor_start(struct acpi_device
*device
)
628 acpi_status status
= AE_OK
;
629 struct acpi_processor
*pr
;
632 pr
= acpi_driver_data(device
);
634 result
= acpi_processor_get_info(pr
, device
->flags
.unique_id
);
636 /* Processor is physically not present */
640 BUG_ON((pr
->id
>= NR_CPUS
) || (pr
->id
< 0));
644 * ACPI id of processors can be reported wrongly by the BIOS.
645 * Don't trust it blindly
647 if (processor_device_array
[pr
->id
] != NULL
&&
648 processor_device_array
[pr
->id
] != device
) {
649 printk(KERN_WARNING
"BIOS reported wrong ACPI id"
650 "for the processor\n");
653 processor_device_array
[pr
->id
] = device
;
655 processors
[pr
->id
] = pr
;
657 result
= acpi_processor_add_fs(device
);
661 status
= acpi_install_notify_handler(pr
->handle
, ACPI_DEVICE_NOTIFY
,
662 acpi_processor_notify
, pr
);
664 /* _PDC call should be done before doing anything else (if reqd.). */
665 arch_acpi_processor_init_pdc(pr
);
666 acpi_processor_set_pdc(pr
);
668 acpi_processor_power_init(pr
, device
);
670 if (pr
->flags
.throttling
) {
671 printk(KERN_INFO PREFIX
"%s [%s] (supports",
672 acpi_device_name(device
), acpi_device_bid(device
));
673 printk(" %d throttling states", pr
->throttling
.state_count
);
682 static void acpi_processor_notify(acpi_handle handle
, u32 event
, void *data
)
684 struct acpi_processor
*pr
= data
;
685 struct acpi_device
*device
= NULL
;
691 if (acpi_bus_get_device(pr
->handle
, &device
))
695 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE
:
696 acpi_processor_ppc_has_changed(pr
);
697 acpi_bus_generate_event(device
, event
,
698 pr
->performance_platform_limit
);
700 case ACPI_PROCESSOR_NOTIFY_POWER
:
701 acpi_processor_cst_has_changed(pr
);
702 acpi_bus_generate_event(device
, event
, 0);
705 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
706 "Unsupported event [0x%x]\n", event
));
713 static int acpi_processor_add(struct acpi_device
*device
)
715 struct acpi_processor
*pr
= NULL
;
721 pr
= kzalloc(sizeof(struct acpi_processor
), GFP_KERNEL
);
725 pr
->handle
= device
->handle
;
726 strcpy(acpi_device_name(device
), ACPI_PROCESSOR_DEVICE_NAME
);
727 strcpy(acpi_device_class(device
), ACPI_PROCESSOR_CLASS
);
728 acpi_driver_data(device
) = pr
;
733 static int acpi_processor_remove(struct acpi_device
*device
, int type
)
735 acpi_status status
= AE_OK
;
736 struct acpi_processor
*pr
= NULL
;
739 if (!device
|| !acpi_driver_data(device
))
742 pr
= acpi_driver_data(device
);
744 if (pr
->id
>= NR_CPUS
) {
749 if (type
== ACPI_BUS_REMOVAL_EJECT
) {
750 if (acpi_processor_handle_eject(pr
))
754 acpi_processor_power_exit(pr
, device
);
756 status
= acpi_remove_notify_handler(pr
->handle
, ACPI_DEVICE_NOTIFY
,
757 acpi_processor_notify
);
759 acpi_processor_remove_fs(device
);
761 processors
[pr
->id
] = NULL
;
768 #ifdef CONFIG_ACPI_HOTPLUG_CPU
769 /****************************************************************************
770 * Acpi processor hotplug support *
771 ****************************************************************************/
773 static int is_processor_present(acpi_handle handle
);
775 static int is_processor_present(acpi_handle handle
)
778 unsigned long sta
= 0;
781 status
= acpi_evaluate_integer(handle
, "_STA", NULL
, &sta
);
782 if (ACPI_FAILURE(status
) || !(sta
& ACPI_STA_PRESENT
)) {
783 ACPI_EXCEPTION((AE_INFO
, status
, "Processor Device is not present"));
790 int acpi_processor_device_add(acpi_handle handle
, struct acpi_device
**device
)
793 struct acpi_device
*pdev
;
794 struct acpi_processor
*pr
;
797 if (acpi_get_parent(handle
, &phandle
)) {
801 if (acpi_bus_get_device(phandle
, &pdev
)) {
805 if (acpi_bus_add(device
, pdev
, handle
, ACPI_BUS_TYPE_PROCESSOR
)) {
809 acpi_bus_start(*device
);
811 pr
= acpi_driver_data(*device
);
815 if ((pr
->id
>= 0) && (pr
->id
< NR_CPUS
)) {
816 kobject_uevent(&(*device
)->dev
.kobj
, KOBJ_ONLINE
);
822 acpi_processor_hotplug_notify(acpi_handle handle
, u32 event
, void *data
)
824 struct acpi_processor
*pr
;
825 struct acpi_device
*device
= NULL
;
830 case ACPI_NOTIFY_BUS_CHECK
:
831 case ACPI_NOTIFY_DEVICE_CHECK
:
832 printk("Processor driver received %s event\n",
833 (event
== ACPI_NOTIFY_BUS_CHECK
) ?
834 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
836 if (!is_processor_present(handle
))
839 if (acpi_bus_get_device(handle
, &device
)) {
840 result
= acpi_processor_device_add(handle
, &device
);
842 printk(KERN_ERR PREFIX
843 "Unable to add the device\n");
847 pr
= acpi_driver_data(device
);
849 printk(KERN_ERR PREFIX
"Driver data is NULL\n");
853 if (pr
->id
>= 0 && (pr
->id
< NR_CPUS
)) {
854 kobject_uevent(&device
->dev
.kobj
, KOBJ_OFFLINE
);
858 result
= acpi_processor_start(device
);
859 if ((!result
) && ((pr
->id
>= 0) && (pr
->id
< NR_CPUS
))) {
860 kobject_uevent(&device
->dev
.kobj
, KOBJ_ONLINE
);
862 printk(KERN_ERR PREFIX
"Device [%s] failed to start\n",
863 acpi_device_bid(device
));
866 case ACPI_NOTIFY_EJECT_REQUEST
:
867 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
868 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
870 if (acpi_bus_get_device(handle
, &device
)) {
871 printk(KERN_ERR PREFIX
872 "Device don't exist, dropping EJECT\n");
875 pr
= acpi_driver_data(device
);
877 printk(KERN_ERR PREFIX
878 "Driver data is NULL, dropping EJECT\n");
882 if ((pr
->id
< NR_CPUS
) && (cpu_present(pr
->id
)))
883 kobject_uevent(&device
->dev
.kobj
, KOBJ_OFFLINE
);
886 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
887 "Unsupported event [0x%x]\n", event
));
895 processor_walk_namespace_cb(acpi_handle handle
,
896 u32 lvl
, void *context
, void **rv
)
899 int *action
= context
;
900 acpi_object_type type
= 0;
902 status
= acpi_get_type(handle
, &type
);
903 if (ACPI_FAILURE(status
))
906 if (type
!= ACPI_TYPE_PROCESSOR
)
910 case INSTALL_NOTIFY_HANDLER
:
911 acpi_install_notify_handler(handle
,
913 acpi_processor_hotplug_notify
,
916 case UNINSTALL_NOTIFY_HANDLER
:
917 acpi_remove_notify_handler(handle
,
919 acpi_processor_hotplug_notify
);
928 static acpi_status
acpi_processor_hotadd_init(acpi_handle handle
, int *p_cpu
)
931 if (!is_processor_present(handle
)) {
935 if (acpi_map_lsapic(handle
, p_cpu
))
938 if (arch_register_cpu(*p_cpu
)) {
939 acpi_unmap_lsapic(*p_cpu
);
946 static int acpi_processor_handle_eject(struct acpi_processor
*pr
)
948 if (cpu_online(pr
->id
)) {
951 arch_unregister_cpu(pr
->id
);
952 acpi_unmap_lsapic(pr
->id
);
956 static acpi_status
acpi_processor_hotadd_init(acpi_handle handle
, int *p_cpu
)
960 static int acpi_processor_handle_eject(struct acpi_processor
*pr
)
967 void acpi_processor_install_hotplug_notify(void)
969 #ifdef CONFIG_ACPI_HOTPLUG_CPU
970 int action
= INSTALL_NOTIFY_HANDLER
;
971 acpi_walk_namespace(ACPI_TYPE_PROCESSOR
,
974 processor_walk_namespace_cb
, &action
, NULL
);
979 void acpi_processor_uninstall_hotplug_notify(void)
981 #ifdef CONFIG_ACPI_HOTPLUG_CPU
982 int action
= UNINSTALL_NOTIFY_HANDLER
;
983 acpi_walk_namespace(ACPI_TYPE_PROCESSOR
,
986 processor_walk_namespace_cb
, &action
, NULL
);
991 * We keep the driver loaded even when ACPI is not running.
992 * This is needed for the powernow-k8 driver, that works even without
993 * ACPI, but needs symbols from this driver
996 static int __init
acpi_processor_init(void)
1001 memset(&processors
, 0, sizeof(processors
));
1002 memset(&errata
, 0, sizeof(errata
));
1005 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT
, 0,
1006 (struct acpi_table_header
**)&madt
)))
1010 acpi_processor_dir
= proc_mkdir(ACPI_PROCESSOR_CLASS
, acpi_root_dir
);
1011 if (!acpi_processor_dir
)
1013 acpi_processor_dir
->owner
= THIS_MODULE
;
1015 result
= acpi_bus_register_driver(&acpi_processor_driver
);
1017 remove_proc_entry(ACPI_PROCESSOR_CLASS
, acpi_root_dir
);
1021 acpi_processor_install_hotplug_notify();
1023 acpi_thermal_cpufreq_init();
1025 acpi_processor_ppc_init();
1030 static void __exit
acpi_processor_exit(void)
1033 acpi_processor_ppc_exit();
1035 acpi_thermal_cpufreq_exit();
1037 acpi_processor_uninstall_hotplug_notify();
1039 acpi_bus_unregister_driver(&acpi_processor_driver
);
1041 remove_proc_entry(ACPI_PROCESSOR_CLASS
, acpi_root_dir
);
1046 module_init(acpi_processor_init
);
1047 module_exit(acpi_processor_exit
);
1049 EXPORT_SYMBOL(acpi_processor_set_thermal_limit
);
1051 MODULE_ALIAS("processor");