ACPI: processor: move acpi_processor_start() after acpi_processor_add()
[linux-2.6/mini2440.git] / drivers / acpi / processor_core.c
blob53de55e6f6b1a46254705887c2552b3db7420f9b
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/proc_fs.h>
44 #include <linux/seq_file.h>
45 #include <linux/dmi.h>
46 #include <linux/moduleparam.h>
47 #include <linux/cpuidle.h>
49 #include <asm/io.h>
50 #include <asm/system.h>
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>
58 #include <acpi/acpi_bus.h>
59 #include <acpi/acpi_drivers.h>
60 #include <acpi/processor.h>
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
69 #define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
71 #define ACPI_PROCESSOR_LIMIT_USER 0
72 #define ACPI_PROCESSOR_LIMIT_THERMAL 1
74 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
75 ACPI_MODULE_NAME("processor_core");
77 MODULE_AUTHOR("Paul Diefenbaugh");
78 MODULE_DESCRIPTION("ACPI Processor Driver");
79 MODULE_LICENSE("GPL");
81 static int acpi_processor_add(struct acpi_device *device);
82 static int acpi_processor_start(struct acpi_device *device);
83 static int acpi_processor_remove(struct acpi_device *device, int type);
84 static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
85 static void acpi_processor_notify(struct acpi_device *device, u32 event);
86 static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
87 static int acpi_processor_handle_eject(struct acpi_processor *pr);
90 static const struct acpi_device_id processor_device_ids[] = {
91 {ACPI_PROCESSOR_OBJECT_HID, 0},
92 {"ACPI0007", 0},
93 {"", 0},
95 MODULE_DEVICE_TABLE(acpi, processor_device_ids);
97 static struct acpi_driver acpi_processor_driver = {
98 .name = "processor",
99 .class = ACPI_PROCESSOR_CLASS,
100 .ids = processor_device_ids,
101 .ops = {
102 .add = acpi_processor_add,
103 .remove = acpi_processor_remove,
104 .start = acpi_processor_start,
105 .suspend = acpi_processor_suspend,
106 .resume = acpi_processor_resume,
107 .notify = acpi_processor_notify,
111 #define INSTALL_NOTIFY_HANDLER 1
112 #define UNINSTALL_NOTIFY_HANDLER 2
114 static const struct file_operations acpi_processor_info_fops = {
115 .owner = THIS_MODULE,
116 .open = acpi_processor_info_open_fs,
117 .read = seq_read,
118 .llseek = seq_lseek,
119 .release = single_release,
122 DEFINE_PER_CPU(struct acpi_processor *, processors);
123 struct acpi_processor_errata errata __read_mostly;
124 static int set_no_mwait(const struct dmi_system_id *id)
126 printk(KERN_NOTICE PREFIX "%s detected - "
127 "disabling mwait for CPU C-states\n", id->ident);
128 idle_nomwait = 1;
129 return 0;
132 static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = {
134 set_no_mwait, "IFL91 board", {
135 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
136 DMI_MATCH(DMI_SYS_VENDOR, "ZEPTO"),
137 DMI_MATCH(DMI_PRODUCT_VERSION, "3215W"),
138 DMI_MATCH(DMI_BOARD_NAME, "IFL91") }, NULL},
140 set_no_mwait, "Extensa 5220", {
141 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
142 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
143 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
144 DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL},
148 /* --------------------------------------------------------------------------
149 Errata Handling
150 -------------------------------------------------------------------------- */
152 static int acpi_processor_errata_piix4(struct pci_dev *dev)
154 u8 value1 = 0;
155 u8 value2 = 0;
158 if (!dev)
159 return -EINVAL;
162 * Note that 'dev' references the PIIX4 ACPI Controller.
165 switch (dev->revision) {
166 case 0:
167 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
168 break;
169 case 1:
170 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
171 break;
172 case 2:
173 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
174 break;
175 case 3:
176 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
177 break;
178 default:
179 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
180 break;
183 switch (dev->revision) {
185 case 0: /* PIIX4 A-step */
186 case 1: /* PIIX4 B-step */
188 * See specification changes #13 ("Manual Throttle Duty Cycle")
189 * and #14 ("Enabling and Disabling Manual Throttle"), plus
190 * erratum #5 ("STPCLK# Deassertion Time") from the January
191 * 2002 PIIX4 specification update. Applies to only older
192 * PIIX4 models.
194 errata.piix4.throttle = 1;
196 case 2: /* PIIX4E */
197 case 3: /* PIIX4M */
199 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
200 * Livelock") from the January 2002 PIIX4 specification update.
201 * Applies to all PIIX4 models.
205 * BM-IDE
206 * ------
207 * Find the PIIX4 IDE Controller and get the Bus Master IDE
208 * Status register address. We'll use this later to read
209 * each IDE controller's DMA status to make sure we catch all
210 * DMA activity.
212 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
213 PCI_DEVICE_ID_INTEL_82371AB,
214 PCI_ANY_ID, PCI_ANY_ID, NULL);
215 if (dev) {
216 errata.piix4.bmisx = pci_resource_start(dev, 4);
217 pci_dev_put(dev);
221 * Type-F DMA
222 * ----------
223 * Find the PIIX4 ISA Controller and read the Motherboard
224 * DMA controller's status to see if Type-F (Fast) DMA mode
225 * is enabled (bit 7) on either channel. Note that we'll
226 * disable C3 support if this is enabled, as some legacy
227 * devices won't operate well if fast DMA is disabled.
229 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
230 PCI_DEVICE_ID_INTEL_82371AB_0,
231 PCI_ANY_ID, PCI_ANY_ID, NULL);
232 if (dev) {
233 pci_read_config_byte(dev, 0x76, &value1);
234 pci_read_config_byte(dev, 0x77, &value2);
235 if ((value1 & 0x80) || (value2 & 0x80))
236 errata.piix4.fdma = 1;
237 pci_dev_put(dev);
240 break;
243 if (errata.piix4.bmisx)
244 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
245 "Bus master activity detection (BM-IDE) erratum enabled\n"));
246 if (errata.piix4.fdma)
247 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
248 "Type-F DMA livelock erratum (C3 disabled)\n"));
250 return 0;
253 static int acpi_processor_errata(struct acpi_processor *pr)
255 int result = 0;
256 struct pci_dev *dev = NULL;
259 if (!pr)
260 return -EINVAL;
263 * PIIX4
265 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
266 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
267 PCI_ANY_ID, NULL);
268 if (dev) {
269 result = acpi_processor_errata_piix4(dev);
270 pci_dev_put(dev);
273 return result;
276 /* --------------------------------------------------------------------------
277 Common ACPI processor functions
278 -------------------------------------------------------------------------- */
281 * _PDC is required for a BIOS-OS handshake for most of the newer
282 * ACPI processor features.
284 static int acpi_processor_set_pdc(struct acpi_processor *pr)
286 struct acpi_object_list *pdc_in = pr->pdc;
287 acpi_status status = AE_OK;
290 if (!pdc_in)
291 return status;
292 if (idle_nomwait) {
294 * If mwait is disabled for CPU C-states, the C2C3_FFH access
295 * mode will be disabled in the parameter of _PDC object.
296 * Of course C1_FFH access mode will also be disabled.
298 union acpi_object *obj;
299 u32 *buffer = NULL;
301 obj = pdc_in->pointer;
302 buffer = (u32 *)(obj->buffer.pointer);
303 buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH);
306 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
308 if (ACPI_FAILURE(status))
309 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
310 "Could not evaluate _PDC, using legacy perf. control...\n"));
312 return status;
315 /* --------------------------------------------------------------------------
316 FS Interface (/proc)
317 -------------------------------------------------------------------------- */
319 static struct proc_dir_entry *acpi_processor_dir = NULL;
321 static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
323 struct acpi_processor *pr = seq->private;
326 if (!pr)
327 goto end;
329 seq_printf(seq, "processor id: %d\n"
330 "acpi id: %d\n"
331 "bus mastering control: %s\n"
332 "power management: %s\n"
333 "throttling control: %s\n"
334 "limit interface: %s\n",
335 pr->id,
336 pr->acpi_id,
337 pr->flags.bm_control ? "yes" : "no",
338 pr->flags.power ? "yes" : "no",
339 pr->flags.throttling ? "yes" : "no",
340 pr->flags.limit ? "yes" : "no");
342 end:
343 return 0;
346 static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
348 return single_open(file, acpi_processor_info_seq_show,
349 PDE(inode)->data);
352 static int acpi_processor_add_fs(struct acpi_device *device)
354 struct proc_dir_entry *entry = NULL;
357 if (!acpi_device_dir(device)) {
358 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
359 acpi_processor_dir);
360 if (!acpi_device_dir(device))
361 return -ENODEV;
364 /* 'info' [R] */
365 entry = proc_create_data(ACPI_PROCESSOR_FILE_INFO,
366 S_IRUGO, acpi_device_dir(device),
367 &acpi_processor_info_fops,
368 acpi_driver_data(device));
369 if (!entry)
370 return -EIO;
372 /* 'throttling' [R/W] */
373 entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING,
374 S_IFREG | S_IRUGO | S_IWUSR,
375 acpi_device_dir(device),
376 &acpi_processor_throttling_fops,
377 acpi_driver_data(device));
378 if (!entry)
379 return -EIO;
381 /* 'limit' [R/W] */
382 entry = proc_create_data(ACPI_PROCESSOR_FILE_LIMIT,
383 S_IFREG | S_IRUGO | S_IWUSR,
384 acpi_device_dir(device),
385 &acpi_processor_limit_fops,
386 acpi_driver_data(device));
387 if (!entry)
388 return -EIO;
389 return 0;
392 static int acpi_processor_remove_fs(struct acpi_device *device)
395 if (acpi_device_dir(device)) {
396 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
397 acpi_device_dir(device));
398 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
399 acpi_device_dir(device));
400 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
401 acpi_device_dir(device));
402 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
403 acpi_device_dir(device) = NULL;
406 return 0;
409 /* Use the acpiid in MADT to map cpus in case of SMP */
411 #ifndef CONFIG_SMP
412 static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id) { return -1; }
413 #else
415 static struct acpi_table_madt *madt;
417 static int map_lapic_id(struct acpi_subtable_header *entry,
418 u32 acpi_id, int *apic_id)
420 struct acpi_madt_local_apic *lapic =
421 (struct acpi_madt_local_apic *)entry;
422 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
423 lapic->processor_id == acpi_id) {
424 *apic_id = lapic->id;
425 return 1;
427 return 0;
430 static int map_x2apic_id(struct acpi_subtable_header *entry,
431 int device_declaration, u32 acpi_id, int *apic_id)
433 struct acpi_madt_local_x2apic *apic =
434 (struct acpi_madt_local_x2apic *)entry;
435 u32 tmp = apic->local_apic_id;
437 /* Only check enabled APICs*/
438 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
439 return 0;
441 /* Device statement declaration type */
442 if (device_declaration) {
443 if (apic->uid == acpi_id)
444 goto found;
447 return 0;
448 found:
449 *apic_id = tmp;
450 return 1;
453 static int map_lsapic_id(struct acpi_subtable_header *entry,
454 int device_declaration, u32 acpi_id, int *apic_id)
456 struct acpi_madt_local_sapic *lsapic =
457 (struct acpi_madt_local_sapic *)entry;
458 u32 tmp = (lsapic->id << 8) | lsapic->eid;
460 /* Only check enabled APICs*/
461 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
462 return 0;
464 /* Device statement declaration type */
465 if (device_declaration) {
466 if (entry->length < 16)
467 printk(KERN_ERR PREFIX
468 "Invalid LSAPIC with Device type processor (SAPIC ID %#x)\n",
469 tmp);
470 else if (lsapic->uid == acpi_id)
471 goto found;
472 /* Processor statement declaration type */
473 } else if (lsapic->processor_id == acpi_id)
474 goto found;
476 return 0;
477 found:
478 *apic_id = tmp;
479 return 1;
482 static int map_madt_entry(int type, u32 acpi_id)
484 unsigned long madt_end, entry;
485 int apic_id = -1;
487 if (!madt)
488 return apic_id;
490 entry = (unsigned long)madt;
491 madt_end = entry + madt->header.length;
493 /* Parse all entries looking for a match. */
495 entry += sizeof(struct acpi_table_madt);
496 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
497 struct acpi_subtable_header *header =
498 (struct acpi_subtable_header *)entry;
499 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
500 if (map_lapic_id(header, acpi_id, &apic_id))
501 break;
502 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
503 if (map_x2apic_id(header, type, acpi_id, &apic_id))
504 break;
505 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
506 if (map_lsapic_id(header, type, acpi_id, &apic_id))
507 break;
509 entry += header->length;
511 return apic_id;
514 static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
516 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
517 union acpi_object *obj;
518 struct acpi_subtable_header *header;
519 int apic_id = -1;
521 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
522 goto exit;
524 if (!buffer.length || !buffer.pointer)
525 goto exit;
527 obj = buffer.pointer;
528 if (obj->type != ACPI_TYPE_BUFFER ||
529 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
530 goto exit;
533 header = (struct acpi_subtable_header *)obj->buffer.pointer;
534 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
535 map_lapic_id(header, acpi_id, &apic_id);
536 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
537 map_lsapic_id(header, type, acpi_id, &apic_id);
540 exit:
541 if (buffer.pointer)
542 kfree(buffer.pointer);
543 return apic_id;
546 static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id)
548 int i;
549 int apic_id = -1;
551 apic_id = map_mat_entry(handle, type, acpi_id);
552 if (apic_id == -1)
553 apic_id = map_madt_entry(type, acpi_id);
554 if (apic_id == -1)
555 return apic_id;
557 for_each_possible_cpu(i) {
558 if (cpu_physical_id(i) == apic_id)
559 return i;
561 return -1;
563 #endif
565 /* --------------------------------------------------------------------------
566 Driver Interface
567 -------------------------------------------------------------------------- */
569 static int acpi_processor_get_info(struct acpi_device *device)
571 acpi_status status = 0;
572 union acpi_object object = { 0 };
573 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
574 struct acpi_processor *pr;
575 int cpu_index, device_declaration = 0;
576 static int cpu0_initialized;
578 pr = acpi_driver_data(device);
579 if (!pr)
580 return -EINVAL;
582 if (num_online_cpus() > 1)
583 errata.smp = TRUE;
585 acpi_processor_errata(pr);
588 * Check to see if we have bus mastering arbitration control. This
589 * is required for proper C3 usage (to maintain cache coherency).
591 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
592 pr->flags.bm_control = 1;
593 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
594 "Bus mastering arbitration control present\n"));
595 } else
596 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
597 "No bus mastering arbitration control\n"));
599 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
600 /* Declared with "Processor" statement; match ProcessorID */
601 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
602 if (ACPI_FAILURE(status)) {
603 printk(KERN_ERR PREFIX "Evaluating processor object\n");
604 return -ENODEV;
608 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
609 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
610 * arch/xxx/acpi.c
612 pr->acpi_id = object.processor.proc_id;
613 } else {
615 * Declared with "Device" statement; match _UID.
616 * Note that we don't handle string _UIDs yet.
618 unsigned long long value;
619 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
620 NULL, &value);
621 if (ACPI_FAILURE(status)) {
622 printk(KERN_ERR PREFIX
623 "Evaluating processor _UID [%#x]\n", status);
624 return -ENODEV;
626 device_declaration = 1;
627 pr->acpi_id = value;
629 cpu_index = get_cpu_id(pr->handle, device_declaration, pr->acpi_id);
631 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
632 if (!cpu0_initialized && (cpu_index == -1) &&
633 (num_online_cpus() == 1)) {
634 cpu_index = 0;
637 cpu0_initialized = 1;
639 pr->id = cpu_index;
642 * Extra Processor objects may be enumerated on MP systems with
643 * less than the max # of CPUs. They should be ignored _iff
644 * they are physically not present.
646 if (pr->id == -1) {
647 if (ACPI_FAILURE
648 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
649 return -ENODEV;
653 * On some boxes several processors use the same processor bus id.
654 * But they are located in different scope. For example:
655 * \_SB.SCK0.CPU0
656 * \_SB.SCK1.CPU0
657 * Rename the processor device bus id. And the new bus id will be
658 * generated as the following format:
659 * CPU+CPU ID.
661 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
662 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
663 pr->acpi_id));
665 if (!object.processor.pblk_address)
666 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
667 else if (object.processor.pblk_length != 6)
668 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
669 object.processor.pblk_length);
670 else {
671 pr->throttling.address = object.processor.pblk_address;
672 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
673 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
675 pr->pblk = object.processor.pblk_address;
678 * We don't care about error returns - we just try to mark
679 * these reserved so that nobody else is confused into thinking
680 * that this region might be unused..
682 * (In particular, allocating the IO range for Cardbus)
684 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
688 * If ACPI describes a slot number for this CPU, we can use it
689 * ensure we get the right value in the "physical id" field
690 * of /proc/cpuinfo
692 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
693 if (ACPI_SUCCESS(status))
694 arch_fix_phys_package_id(pr->id, object.integer.value);
696 return 0;
699 static DEFINE_PER_CPU(void *, processor_device_array);
701 static void acpi_processor_notify(struct acpi_device *device, u32 event)
703 struct acpi_processor *pr = acpi_driver_data(device);
704 int saved;
706 if (!pr)
707 return;
709 switch (event) {
710 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
711 saved = pr->performance_platform_limit;
712 acpi_processor_ppc_has_changed(pr);
713 if (saved == pr->performance_platform_limit)
714 break;
715 acpi_bus_generate_proc_event(device, event,
716 pr->performance_platform_limit);
717 acpi_bus_generate_netlink_event(device->pnp.device_class,
718 dev_name(&device->dev), event,
719 pr->performance_platform_limit);
720 break;
721 case ACPI_PROCESSOR_NOTIFY_POWER:
722 acpi_processor_cst_has_changed(pr);
723 acpi_bus_generate_proc_event(device, event, 0);
724 acpi_bus_generate_netlink_event(device->pnp.device_class,
725 dev_name(&device->dev), event, 0);
726 break;
727 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
728 acpi_processor_tstate_has_changed(pr);
729 acpi_bus_generate_proc_event(device, event, 0);
730 acpi_bus_generate_netlink_event(device->pnp.device_class,
731 dev_name(&device->dev), event, 0);
732 default:
733 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
734 "Unsupported event [0x%x]\n", event));
735 break;
738 return;
741 static int acpi_cpu_soft_notify(struct notifier_block *nfb,
742 unsigned long action, void *hcpu)
744 unsigned int cpu = (unsigned long)hcpu;
745 struct acpi_processor *pr = per_cpu(processors, cpu);
747 if (action == CPU_ONLINE && pr) {
748 acpi_processor_ppc_has_changed(pr);
749 acpi_processor_cst_has_changed(pr);
750 acpi_processor_tstate_has_changed(pr);
752 return NOTIFY_OK;
755 static struct notifier_block acpi_cpu_notifier =
757 .notifier_call = acpi_cpu_soft_notify,
760 static int acpi_processor_add(struct acpi_device *device)
762 struct acpi_processor *pr = NULL;
765 if (!device)
766 return -EINVAL;
768 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
769 if (!pr)
770 return -ENOMEM;
772 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
773 kfree(pr);
774 return -ENOMEM;
777 pr->handle = device->handle;
778 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
779 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
780 device->driver_data = pr;
782 return 0;
785 static int __cpuinit acpi_processor_start(struct acpi_device *device)
787 int result = 0;
788 struct acpi_processor *pr;
789 struct sys_device *sysdev;
791 pr = acpi_driver_data(device);
793 result = acpi_processor_get_info(device);
794 if (result) {
795 /* Processor is physically not present */
796 return 0;
799 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
802 * Buggy BIOS check
803 * ACPI id of processors can be reported wrongly by the BIOS.
804 * Don't trust it blindly
806 if (per_cpu(processor_device_array, pr->id) != NULL &&
807 per_cpu(processor_device_array, pr->id) != device) {
808 printk(KERN_WARNING "BIOS reported wrong ACPI id "
809 "for the processor\n");
810 return -ENODEV;
812 per_cpu(processor_device_array, pr->id) = device;
814 per_cpu(processors, pr->id) = pr;
816 result = acpi_processor_add_fs(device);
817 if (result)
818 return result;
820 sysdev = get_cpu_sysdev(pr->id);
821 if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev")) {
822 result = -EFAULT;
823 goto err_remove_fs;
826 /* _PDC call should be done before doing anything else (if reqd.). */
827 arch_acpi_processor_init_pdc(pr);
828 acpi_processor_set_pdc(pr);
829 arch_acpi_processor_cleanup_pdc(pr);
831 #ifdef CONFIG_CPU_FREQ
832 acpi_processor_ppc_has_changed(pr);
833 #endif
834 acpi_processor_get_throttling_info(pr);
835 acpi_processor_get_limit_info(pr);
838 acpi_processor_power_init(pr, device);
840 pr->cdev = thermal_cooling_device_register("Processor", device,
841 &processor_cooling_ops);
842 if (IS_ERR(pr->cdev)) {
843 result = PTR_ERR(pr->cdev);
844 goto err_power_exit;
847 dev_info(&device->dev, "registered as cooling_device%d\n",
848 pr->cdev->id);
850 result = sysfs_create_link(&device->dev.kobj,
851 &pr->cdev->device.kobj,
852 "thermal_cooling");
853 if (result) {
854 printk(KERN_ERR PREFIX "Create sysfs link\n");
855 goto err_thermal_unregister;
857 result = sysfs_create_link(&pr->cdev->device.kobj,
858 &device->dev.kobj,
859 "device");
860 if (result) {
861 printk(KERN_ERR PREFIX "Create sysfs link\n");
862 goto err_remove_sysfs;
865 if (pr->flags.throttling) {
866 printk(KERN_INFO PREFIX "%s [%s] (supports",
867 acpi_device_name(device), acpi_device_bid(device));
868 printk(" %d throttling states", pr->throttling.state_count);
869 printk(")\n");
872 return 0;
874 err_remove_sysfs:
875 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
876 err_thermal_unregister:
877 thermal_cooling_device_unregister(pr->cdev);
878 err_power_exit:
879 acpi_processor_power_exit(pr, device);
880 err_remove_fs:
881 acpi_processor_remove_fs(device);
883 return result;
886 static int acpi_processor_remove(struct acpi_device *device, int type)
888 struct acpi_processor *pr = NULL;
891 if (!device || !acpi_driver_data(device))
892 return -EINVAL;
894 pr = acpi_driver_data(device);
896 if (pr->id >= nr_cpu_ids)
897 goto free;
899 if (type == ACPI_BUS_REMOVAL_EJECT) {
900 if (acpi_processor_handle_eject(pr))
901 return -EINVAL;
904 acpi_processor_power_exit(pr, device);
906 sysfs_remove_link(&device->dev.kobj, "sysdev");
908 acpi_processor_remove_fs(device);
910 if (pr->cdev) {
911 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
912 sysfs_remove_link(&pr->cdev->device.kobj, "device");
913 thermal_cooling_device_unregister(pr->cdev);
914 pr->cdev = NULL;
917 per_cpu(processors, pr->id) = NULL;
918 per_cpu(processor_device_array, pr->id) = NULL;
920 free:
921 free_cpumask_var(pr->throttling.shared_cpu_map);
922 kfree(pr);
924 return 0;
927 #ifdef CONFIG_ACPI_HOTPLUG_CPU
928 /****************************************************************************
929 * Acpi processor hotplug support *
930 ****************************************************************************/
932 static int is_processor_present(acpi_handle handle)
934 acpi_status status;
935 unsigned long long sta = 0;
938 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
940 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
941 return 1;
944 * _STA is mandatory for a processor that supports hot plug
946 if (status == AE_NOT_FOUND)
947 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
948 "Processor does not support hot plug\n"));
949 else
950 ACPI_EXCEPTION((AE_INFO, status,
951 "Processor Device is not present"));
952 return 0;
955 static
956 int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
958 acpi_handle phandle;
959 struct acpi_device *pdev;
960 struct acpi_processor *pr;
963 if (acpi_get_parent(handle, &phandle)) {
964 return -ENODEV;
967 if (acpi_bus_get_device(phandle, &pdev)) {
968 return -ENODEV;
971 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
972 return -ENODEV;
975 acpi_bus_start(*device);
977 pr = acpi_driver_data(*device);
978 if (!pr)
979 return -ENODEV;
981 return 0;
984 static void __ref acpi_processor_hotplug_notify(acpi_handle handle,
985 u32 event, void *data)
987 struct acpi_processor *pr;
988 struct acpi_device *device = NULL;
989 int result;
992 switch (event) {
993 case ACPI_NOTIFY_BUS_CHECK:
994 case ACPI_NOTIFY_DEVICE_CHECK:
995 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
996 "Processor driver received %s event\n",
997 (event == ACPI_NOTIFY_BUS_CHECK) ?
998 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
1000 if (!is_processor_present(handle))
1001 break;
1003 if (acpi_bus_get_device(handle, &device)) {
1004 result = acpi_processor_device_add(handle, &device);
1005 if (result)
1006 printk(KERN_ERR PREFIX
1007 "Unable to add the device\n");
1008 break;
1011 pr = acpi_driver_data(device);
1012 if (!pr) {
1013 printk(KERN_ERR PREFIX "Driver data is NULL\n");
1014 break;
1017 result = acpi_processor_start(device);
1018 if (result)
1019 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
1020 acpi_device_bid(device));
1021 break;
1022 case ACPI_NOTIFY_EJECT_REQUEST:
1023 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1024 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
1026 if (acpi_bus_get_device(handle, &device)) {
1027 printk(KERN_ERR PREFIX
1028 "Device don't exist, dropping EJECT\n");
1029 break;
1031 pr = acpi_driver_data(device);
1032 if (!pr) {
1033 printk(KERN_ERR PREFIX
1034 "Driver data is NULL, dropping EJECT\n");
1035 return;
1037 break;
1038 default:
1039 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1040 "Unsupported event [0x%x]\n", event));
1041 break;
1044 return;
1047 static acpi_status
1048 processor_walk_namespace_cb(acpi_handle handle,
1049 u32 lvl, void *context, void **rv)
1051 acpi_status status;
1052 int *action = context;
1053 acpi_object_type type = 0;
1055 status = acpi_get_type(handle, &type);
1056 if (ACPI_FAILURE(status))
1057 return (AE_OK);
1059 if (type != ACPI_TYPE_PROCESSOR)
1060 return (AE_OK);
1062 switch (*action) {
1063 case INSTALL_NOTIFY_HANDLER:
1064 acpi_install_notify_handler(handle,
1065 ACPI_SYSTEM_NOTIFY,
1066 acpi_processor_hotplug_notify,
1067 NULL);
1068 break;
1069 case UNINSTALL_NOTIFY_HANDLER:
1070 acpi_remove_notify_handler(handle,
1071 ACPI_SYSTEM_NOTIFY,
1072 acpi_processor_hotplug_notify);
1073 break;
1074 default:
1075 break;
1078 return (AE_OK);
1081 static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
1084 if (!is_processor_present(handle)) {
1085 return AE_ERROR;
1088 if (acpi_map_lsapic(handle, p_cpu))
1089 return AE_ERROR;
1091 if (arch_register_cpu(*p_cpu)) {
1092 acpi_unmap_lsapic(*p_cpu);
1093 return AE_ERROR;
1096 return AE_OK;
1099 static int acpi_processor_handle_eject(struct acpi_processor *pr)
1101 if (cpu_online(pr->id))
1102 cpu_down(pr->id);
1104 arch_unregister_cpu(pr->id);
1105 acpi_unmap_lsapic(pr->id);
1106 return (0);
1108 #else
1109 static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
1111 return AE_ERROR;
1113 static int acpi_processor_handle_eject(struct acpi_processor *pr)
1115 return (-EINVAL);
1117 #endif
1119 static
1120 void acpi_processor_install_hotplug_notify(void)
1122 #ifdef CONFIG_ACPI_HOTPLUG_CPU
1123 int action = INSTALL_NOTIFY_HANDLER;
1124 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
1125 ACPI_ROOT_OBJECT,
1126 ACPI_UINT32_MAX,
1127 processor_walk_namespace_cb, &action, NULL);
1128 #endif
1129 register_hotcpu_notifier(&acpi_cpu_notifier);
1132 static
1133 void acpi_processor_uninstall_hotplug_notify(void)
1135 #ifdef CONFIG_ACPI_HOTPLUG_CPU
1136 int action = UNINSTALL_NOTIFY_HANDLER;
1137 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
1138 ACPI_ROOT_OBJECT,
1139 ACPI_UINT32_MAX,
1140 processor_walk_namespace_cb, &action, NULL);
1141 #endif
1142 unregister_hotcpu_notifier(&acpi_cpu_notifier);
1146 * We keep the driver loaded even when ACPI is not running.
1147 * This is needed for the powernow-k8 driver, that works even without
1148 * ACPI, but needs symbols from this driver
1151 static int __init acpi_processor_init(void)
1153 int result = 0;
1155 memset(&errata, 0, sizeof(errata));
1157 #ifdef CONFIG_SMP
1158 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1159 (struct acpi_table_header **)&madt)))
1160 madt = NULL;
1161 #endif
1163 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1164 if (!acpi_processor_dir)
1165 return -ENOMEM;
1168 * Check whether the system is DMI table. If yes, OSPM
1169 * should not use mwait for CPU-states.
1171 dmi_check_system(processor_idle_dmi_table);
1172 result = cpuidle_register_driver(&acpi_idle_driver);
1173 if (result < 0)
1174 goto out_proc;
1176 result = acpi_bus_register_driver(&acpi_processor_driver);
1177 if (result < 0)
1178 goto out_cpuidle;
1180 acpi_processor_install_hotplug_notify();
1182 acpi_thermal_cpufreq_init();
1184 acpi_processor_ppc_init();
1186 acpi_processor_throttling_init();
1188 return 0;
1190 out_cpuidle:
1191 cpuidle_unregister_driver(&acpi_idle_driver);
1193 out_proc:
1194 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1196 return result;
1199 static void __exit acpi_processor_exit(void)
1201 acpi_processor_ppc_exit();
1203 acpi_thermal_cpufreq_exit();
1205 acpi_processor_uninstall_hotplug_notify();
1207 acpi_bus_unregister_driver(&acpi_processor_driver);
1209 cpuidle_unregister_driver(&acpi_idle_driver);
1211 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1213 return;
1216 module_init(acpi_processor_init);
1217 module_exit(acpi_processor_exit);
1219 EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1221 MODULE_ALIAS("processor");