blob: eacf9a252019546d52ccd76b413fc7f17df8986d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_processor.c - ACPI Processor Driver ($Revision: 71 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de>
7 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 * - Added processor hotplug support
9 *
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or (at
15 * your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 *
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 * TBD:
28 * 1. Make # power states dynamic.
29 * 2. Support duty_cycle values that span bit 4.
30 * 3. Optimize by having scheduler determine business instead of
31 * having us try to calculate it here.
32 * 4. Need C1 timing -- must modify kernel (IRQ handler) to get this.
33 */
34
35#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/init.h>
38#include <linux/types.h>
39#include <linux/pci.h>
40#include <linux/pm.h>
41#include <linux/cpufreq.h>
42#include <linux/cpu.h>
43#include <linux/proc_fs.h>
44#include <linux/seq_file.h>
45#include <linux/dmi.h>
46#include <linux/moduleparam.h>
47
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>
56
57#include <acpi/acpi_bus.h>
58#include <acpi/acpi_drivers.h>
59#include <acpi/processor.h>
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#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
70
71#define ACPI_PROCESSOR_LIMIT_USER 0
72#define ACPI_PROCESSOR_LIMIT_THERMAL 1
73
74#define ACPI_STA_PRESENT 0x00000001
75
76#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040077ACPI_MODULE_NAME("acpi_processor")
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Len Brown4be44fc2005-08-05 00:44:28 -040079 MODULE_AUTHOR("Paul Diefenbaugh");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080MODULE_DESCRIPTION(ACPI_PROCESSOR_DRIVER_NAME);
81MODULE_LICENSE("GPL");
82
Len Brown4be44fc2005-08-05 00:44:28 -040083static int acpi_processor_add(struct acpi_device *device);
84static int acpi_processor_start(struct acpi_device *device);
85static int acpi_processor_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040087static void acpi_processor_notify(acpi_handle handle, u32 event, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
89static int acpi_processor_handle_eject(struct acpi_processor *pr);
90
91static struct acpi_driver acpi_processor_driver = {
Len Brown4be44fc2005-08-05 00:44:28 -040092 .name = ACPI_PROCESSOR_DRIVER_NAME,
93 .class = ACPI_PROCESSOR_CLASS,
94 .ids = ACPI_PROCESSOR_HID,
95 .ops = {
96 .add = acpi_processor_add,
97 .remove = acpi_processor_remove,
98 .start = acpi_processor_start,
99 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
102#define INSTALL_NOTIFY_HANDLER 1
103#define UNINSTALL_NOTIFY_HANDLER 2
104
Arjan van de Vend7508032006-07-04 13:06:00 -0400105static const struct file_operations acpi_processor_info_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400106 .open = acpi_processor_info_open_fs,
107 .read = seq_read,
108 .llseek = seq_lseek,
109 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
Len Brown4be44fc2005-08-05 00:44:28 -0400112struct acpi_processor *processors[NR_CPUS];
Andreas Mohr9f222712006-06-23 02:04:27 -0700113struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* --------------------------------------------------------------------------
116 Errata Handling
117 -------------------------------------------------------------------------- */
118
Len Brown4be44fc2005-08-05 00:44:28 -0400119static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Len Brown4be44fc2005-08-05 00:44:28 -0400121 u8 rev = 0;
122 u8 value1 = 0;
123 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400127 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /*
130 * Note that 'dev' references the PIIX4 ACPI Controller.
131 */
132
133 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
134
135 switch (rev) {
136 case 0:
137 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
138 break;
139 case 1:
140 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
141 break;
142 case 2:
143 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
144 break;
145 case 3:
146 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
147 break;
148 default:
149 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
150 break;
151 }
152
153 switch (rev) {
154
155 case 0: /* PIIX4 A-step */
156 case 1: /* PIIX4 B-step */
157 /*
158 * See specification changes #13 ("Manual Throttle Duty Cycle")
159 * and #14 ("Enabling and Disabling Manual Throttle"), plus
160 * erratum #5 ("STPCLK# Deassertion Time") from the January
161 * 2002 PIIX4 specification update. Applies to only older
162 * PIIX4 models.
163 */
164 errata.piix4.throttle = 1;
165
166 case 2: /* PIIX4E */
167 case 3: /* PIIX4M */
168 /*
169 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
170 * Livelock") from the January 2002 PIIX4 specification update.
171 * Applies to all PIIX4 models.
172 */
173
174 /*
175 * BM-IDE
176 * ------
177 * Find the PIIX4 IDE Controller and get the Bus Master IDE
178 * Status register address. We'll use this later to read
179 * each IDE controller's DMA status to make sure we catch all
180 * DMA activity.
181 */
182 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400183 PCI_DEVICE_ID_INTEL_82371AB,
184 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (dev) {
186 errata.piix4.bmisx = pci_resource_start(dev, 4);
187 pci_dev_put(dev);
188 }
189
190 /*
191 * Type-F DMA
192 * ----------
193 * Find the PIIX4 ISA Controller and read the Motherboard
194 * DMA controller's status to see if Type-F (Fast) DMA mode
195 * is enabled (bit 7) on either channel. Note that we'll
196 * disable C3 support if this is enabled, as some legacy
197 * devices won't operate well if fast DMA is disabled.
198 */
199 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400200 PCI_DEVICE_ID_INTEL_82371AB_0,
201 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (dev) {
203 pci_read_config_byte(dev, 0x76, &value1);
204 pci_read_config_byte(dev, 0x77, &value2);
205 if ((value1 & 0x80) || (value2 & 0x80))
206 errata.piix4.fdma = 1;
207 pci_dev_put(dev);
208 }
209
210 break;
211 }
212
213 if (errata.piix4.bmisx)
214 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400215 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (errata.piix4.fdma)
217 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400218 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Patrick Mocheld550d982006-06-27 00:41:40 -0400220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400223static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Len Brown4be44fc2005-08-05 00:44:28 -0400225 int result = 0;
226 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400230 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /*
233 * PIIX4
234 */
235 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400236 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
237 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (dev) {
239 result = acpi_processor_errata_piix4(dev);
240 pci_dev_put(dev);
241 }
242
Patrick Mocheld550d982006-06-27 00:41:40 -0400243 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800247 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400248 -------------------------------------------------------------------------- */
249
250/*
251 * _PDC is required for a BIOS-OS handshake for most of the newer
252 * ACPI processor features.
253 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400254static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400255{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400256 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400257 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400258
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400259
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400260 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400261 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400262
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400263 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400264
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400265 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400266 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400267 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400268
Patrick Mocheld550d982006-06-27 00:41:40 -0400269 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400270}
271
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400272/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 FS Interface (/proc)
274 -------------------------------------------------------------------------- */
275
Len Brown4be44fc2005-08-05 00:44:28 -0400276static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
279{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200280 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 if (!pr)
284 goto end;
285
286 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400287 "acpi id: %d\n"
288 "bus mastering control: %s\n"
289 "power management: %s\n"
290 "throttling control: %s\n"
291 "limit interface: %s\n",
292 pr->id,
293 pr->acpi_id,
294 pr->flags.bm_control ? "yes" : "no",
295 pr->flags.power ? "yes" : "no",
296 pr->flags.throttling ? "yes" : "no",
297 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Len Brown4be44fc2005-08-05 00:44:28 -0400299 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
304{
305 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400306 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Len Brown4be44fc2005-08-05 00:44:28 -0400309static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Len Brown4be44fc2005-08-05 00:44:28 -0400311 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 if (!acpi_device_dir(device)) {
315 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400316 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400318 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320 acpi_device_dir(device)->owner = THIS_MODULE;
321
322 /* 'info' [R] */
323 entry = create_proc_entry(ACPI_PROCESSOR_FILE_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400324 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400326 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 else {
328 entry->proc_fops = &acpi_processor_info_fops;
329 entry->data = acpi_driver_data(device);
330 entry->owner = THIS_MODULE;
331 }
332
333 /* 'throttling' [R/W] */
334 entry = create_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400335 S_IFREG | S_IRUGO | S_IWUSR,
336 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400338 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 else {
340 entry->proc_fops = &acpi_processor_throttling_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 entry->data = acpi_driver_data(device);
342 entry->owner = THIS_MODULE;
343 }
344
345 /* 'limit' [R/W] */
346 entry = create_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
Len Brown4be44fc2005-08-05 00:44:28 -0400347 S_IFREG | S_IRUGO | S_IWUSR,
348 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400350 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 else {
352 entry->proc_fops = &acpi_processor_limit_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 entry->data = acpi_driver_data(device);
354 entry->owner = THIS_MODULE;
355 }
356
Patrick Mocheld550d982006-06-27 00:41:40 -0400357 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Len Brown4be44fc2005-08-05 00:44:28 -0400360static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400364 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
365 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400367 acpi_device_dir(device));
368 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
369 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
371 acpi_device_dir(device) = NULL;
372 }
373
Patrick Mocheld550d982006-06-27 00:41:40 -0400374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#ifndef CONFIG_SMP
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300380static int get_cpu_id(acpi_handle handle, u32 acpi_id) {return -1;}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381#else
382
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300383static struct acpi_table_madt *madt;
384
385static int map_lapic_id(struct acpi_subtable_header *entry,
386 u32 acpi_id, int *apic_id)
387{
388 struct acpi_madt_local_apic *lapic =
389 (struct acpi_madt_local_apic *)entry;
390 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
391 lapic->processor_id == acpi_id) {
392 *apic_id = lapic->id;
393 return 1;
394 }
395 return 0;
396}
397
398static int map_lsapic_id(struct acpi_subtable_header *entry,
399 u32 acpi_id, int *apic_id)
400{
401 struct acpi_madt_local_sapic *lsapic =
402 (struct acpi_madt_local_sapic *)entry;
403 /* Only check enabled APICs*/
404 if (lsapic->lapic_flags & ACPI_MADT_ENABLED) {
405 /* First check against id */
406 if (lsapic->processor_id == acpi_id) {
407 *apic_id = lsapic->id;
408 return 1;
409 /* Check against optional uid */
410 } else if (entry->length >= 16 &&
411 lsapic->uid == acpi_id) {
412 *apic_id = lsapic->uid;
413 return 1;
414 }
415 }
416 return 0;
417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#ifdef CONFIG_IA64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#define arch_cpu_to_apicid ia64_cpu_to_sapicid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422#define arch_cpu_to_apicid x86_cpu_to_apicid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423#endif
424
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300425static int map_madt_entry(u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300427 unsigned long madt_end, entry;
428 int apic_id = -1;
429
430 if (!madt)
431 return apic_id;
432
433 entry = (unsigned long)madt;
434 madt_end = entry + madt->header.length;
435
436 /* Parse all entries looking for a match. */
437
438 entry += sizeof(struct acpi_table_madt);
439 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
440 struct acpi_subtable_header *header =
441 (struct acpi_subtable_header *)entry;
442 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
443 if (map_lapic_id(header, acpi_id, &apic_id))
444 break;
445 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
446 if (map_lsapic_id(header, acpi_id, &apic_id))
447 break;
448 }
449 entry += header->length;
450 }
451 return apic_id;
452}
453
454static int map_mat_entry(acpi_handle handle, u32 acpi_id)
455{
456 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
457 union acpi_object *obj;
458 struct acpi_subtable_header *header;
459 int apic_id = -1;
460
461 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
462 goto exit;
463
464 if (!buffer.length || !buffer.pointer)
465 goto exit;
466
467 obj = buffer.pointer;
468 if (obj->type != ACPI_TYPE_BUFFER ||
469 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
470 goto exit;
471 }
472
473 header = (struct acpi_subtable_header *)obj->buffer.pointer;
474 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
475 map_lapic_id(header, acpi_id, &apic_id);
476 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
477 map_lsapic_id(header, acpi_id, &apic_id);
478 }
479
480exit:
481 if (buffer.pointer)
482 kfree(buffer.pointer);
483 return apic_id;
484}
485
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300486static int get_cpu_id(acpi_handle handle, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300487{
Len Brown4a35a462005-09-03 12:40:06 -0400488 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300489 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300491 apic_id = map_mat_entry(handle, acpi_id);
492 if (apic_id == -1)
493 apic_id = map_madt_entry(acpi_id);
494 if (apic_id == -1)
495 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300497 for (i = 0; i < NR_CPUS; ++i) {
Len Brown4a35a462005-09-03 12:40:06 -0400498 if (arch_cpu_to_apicid[i] == apic_id)
499 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501 return -1;
502}
503#endif
504
505/* --------------------------------------------------------------------------
506 Driver Interface
507 -------------------------------------------------------------------------- */
508
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300509static int acpi_processor_get_info(struct acpi_processor *pr, unsigned has_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Len Brown4be44fc2005-08-05 00:44:28 -0400511 acpi_status status = 0;
512 union acpi_object object = { 0 };
513 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Ashok Rajdf42baa2006-03-28 17:04:00 -0500514 int cpu_index;
Len Brown4be44fc2005-08-05 00:44:28 -0400515 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400519 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 if (num_online_cpus() > 1)
522 errata.smp = TRUE;
523
524 acpi_processor_errata(pr);
525
526 /*
527 * Check to see if we have bus mastering arbitration control. This
528 * is required for proper C3 usage (to maintain cache coherency).
529 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300530 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 pr->flags.bm_control = 1;
532 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400533 "Bus mastering arbitration control present\n"));
534 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400536 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300538 /* Check if it is a Device with HID and UID */
539 if (has_uid) {
540 unsigned long value;
541 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
542 NULL, &value);
543 if (ACPI_FAILURE(status)) {
544 printk(KERN_ERR PREFIX "Evaluating processor _UID\n");
545 return -ENODEV;
546 }
547 pr->acpi_id = value;
548 } else {
549 /*
550 * Evalute the processor object. Note that it is common on SMP to
551 * have the first (boot) processor with a valid PBLK address while
552 * all others have a NULL address.
553 */
554 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
555 if (ACPI_FAILURE(status)) {
556 printk(KERN_ERR PREFIX "Evaluating processor object\n");
557 return -ENODEV;
558 }
559
560 /*
561 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
562 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
563 */
564 pr->acpi_id = object.processor.proc_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300566 cpu_index = get_cpu_id(pr->handle, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Len Brown4be44fc2005-08-05 00:44:28 -0400568 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500569 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400570 (num_online_cpus() == 1)) {
571 cpu_index = 0;
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Len Brown4be44fc2005-08-05 00:44:28 -0400574 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Len Brown4be44fc2005-08-05 00:44:28 -0400576 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Len Brown4be44fc2005-08-05 00:44:28 -0400578 /*
579 * Extra Processor objects may be enumerated on MP systems with
580 * less than the max # of CPUs. They should be ignored _iff
581 * they are physically not present.
582 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300583 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400584 if (ACPI_FAILURE
585 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400586 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400587 }
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400591 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 if (!object.processor.pblk_address)
594 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
595 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400596 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
597 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 else {
599 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300600 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
601 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 pr->pblk = object.processor.pblk_address;
604
605 /*
606 * We don't care about error returns - we just try to mark
607 * these reserved so that nobody else is confused into thinking
608 * that this region might be unused..
609 *
610 * (In particular, allocating the IO range for Cardbus)
611 */
612 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
613 }
614
615#ifdef CONFIG_CPU_FREQ
616 acpi_processor_ppc_has_changed(pr);
617#endif
618 acpi_processor_get_throttling_info(pr);
619 acpi_processor_get_limit_info(pr);
620
Patrick Mocheld550d982006-06-27 00:41:40 -0400621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400624static void *processor_device_array[NR_CPUS];
625
Pierre Ossman7af8b662006-10-10 14:20:31 -0700626static int __cpuinit acpi_processor_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Len Brown4be44fc2005-08-05 00:44:28 -0400628 int result = 0;
629 acpi_status status = AE_OK;
630 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 pr = acpi_driver_data(device);
634
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300635 result = acpi_processor_get_info(pr, device->flags.unique_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (result) {
637 /* Processor is physically not present */
Patrick Mocheld550d982006-06-27 00:41:40 -0400638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
641 BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
642
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400643 /*
644 * Buggy BIOS check
645 * ACPI id of processors can be reported wrongly by the BIOS.
646 * Don't trust it blindly
647 */
648 if (processor_device_array[pr->id] != NULL &&
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200649 processor_device_array[pr->id] != device) {
Len Brown0eacee52006-03-31 00:37:23 -0500650 printk(KERN_WARNING "BIOS reported wrong ACPI id"
651 "for the processor\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400652 return -ENODEV;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400653 }
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200654 processor_device_array[pr->id] = device;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 processors[pr->id] = pr;
657
658 result = acpi_processor_add_fs(device);
659 if (result)
660 goto end;
661
662 status = acpi_install_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400663 acpi_processor_notify, pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400665 /* _PDC call should be done before doing anything else (if reqd.). */
666 arch_acpi_processor_init_pdc(pr);
667 acpi_processor_set_pdc(pr);
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 acpi_processor_power_init(pr, device);
670
671 if (pr->flags.throttling) {
672 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400673 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 printk(" %d throttling states", pr->throttling.state_count);
675 printk(")\n");
676 }
677
Len Brown4be44fc2005-08-05 00:44:28 -0400678 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Patrick Mocheld550d982006-06-27 00:41:40 -0400680 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Len Brown4be44fc2005-08-05 00:44:28 -0400683static void acpi_processor_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200685 struct acpi_processor *pr = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400686 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400690 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 if (acpi_bus_get_device(pr->handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400693 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 switch (event) {
696 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
697 acpi_processor_ppc_has_changed(pr);
698 acpi_bus_generate_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400699 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 break;
701 case ACPI_PROCESSOR_NOTIFY_POWER:
702 acpi_processor_cst_has_changed(pr);
703 acpi_bus_generate_event(device, event, 0);
704 break;
705 default:
706 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400707 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 break;
709 }
710
Patrick Mocheld550d982006-06-27 00:41:40 -0400711 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Len Brown4be44fc2005-08-05 00:44:28 -0400714static int acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Len Brown4be44fc2005-08-05 00:44:28 -0400716 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400720 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Burman Yan36bcbec2006-12-19 12:56:11 -0800722 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400724 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 pr->handle = device->handle;
727 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
728 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
729 acpi_driver_data(device) = pr;
730
Patrick Mocheld550d982006-06-27 00:41:40 -0400731 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Len Brown4be44fc2005-08-05 00:44:28 -0400734static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Len Brown4be44fc2005-08-05 00:44:28 -0400736 acpi_status status = AE_OK;
737 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400741 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200743 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 if (pr->id >= NR_CPUS) {
746 kfree(pr);
Patrick Mocheld550d982006-06-27 00:41:40 -0400747 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
750 if (type == ACPI_BUS_REMOVAL_EJECT) {
751 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400752 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754
755 acpi_processor_power_exit(pr, device);
756
757 status = acpi_remove_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400758 acpi_processor_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 acpi_processor_remove_fs(device);
761
762 processors[pr->id] = NULL;
763
764 kfree(pr);
765
Patrick Mocheld550d982006-06-27 00:41:40 -0400766 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769#ifdef CONFIG_ACPI_HOTPLUG_CPU
770/****************************************************************************
771 * Acpi processor hotplug support *
772 ****************************************************************************/
773
774static int is_processor_present(acpi_handle handle);
775
Len Brown4be44fc2005-08-05 00:44:28 -0400776static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Len Brown4be44fc2005-08-05 00:44:28 -0400778 acpi_status status;
779 unsigned long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
783 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_PRESENT)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400784 ACPI_EXCEPTION((AE_INFO, status, "Processor Device is not present"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400785 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400787 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790static
Len Brown4be44fc2005-08-05 00:44:28 -0400791int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Len Brown4be44fc2005-08-05 00:44:28 -0400793 acpi_handle phandle;
794 struct acpi_device *pdev;
795 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400799 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801
802 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
806 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400807 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809
Rajesh Shah3fb02732005-04-28 00:25:52 -0700810 acpi_bus_start(*device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 pr = acpi_driver_data(*device);
813 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400814 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Len Brown4be44fc2005-08-05 00:44:28 -0400816 if ((pr->id >= 0) && (pr->id < NR_CPUS)) {
Kay Sievers312c0042005-11-16 09:00:00 +0100817 kobject_uevent(&(*device)->kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822static void
Len Brown4be44fc2005-08-05 00:44:28 -0400823acpi_processor_hotplug_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Len Brown4be44fc2005-08-05 00:44:28 -0400825 struct acpi_processor *pr;
826 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 int result;
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 switch (event) {
831 case ACPI_NOTIFY_BUS_CHECK:
832 case ACPI_NOTIFY_DEVICE_CHECK:
833 printk("Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400834 (event == ACPI_NOTIFY_BUS_CHECK) ?
835 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if (!is_processor_present(handle))
838 break;
839
840 if (acpi_bus_get_device(handle, &device)) {
841 result = acpi_processor_device_add(handle, &device);
842 if (result)
Len Brown64684632006-06-26 23:41:38 -0400843 printk(KERN_ERR PREFIX
844 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 break;
846 }
847
848 pr = acpi_driver_data(device);
849 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400850 printk(KERN_ERR PREFIX "Driver data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 break;
852 }
853
854 if (pr->id >= 0 && (pr->id < NR_CPUS)) {
Kay Sievers312c0042005-11-16 09:00:00 +0100855 kobject_uevent(&device->kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 break;
857 }
858
859 result = acpi_processor_start(device);
Len Brown4be44fc2005-08-05 00:44:28 -0400860 if ((!result) && ((pr->id >= 0) && (pr->id < NR_CPUS))) {
Kay Sievers312c0042005-11-16 09:00:00 +0100861 kobject_uevent(&device->kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 } else {
Len Brown64684632006-06-26 23:41:38 -0400863 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
864 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
Len Brown4be44fc2005-08-05 00:44:28 -0400866 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400868 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
869 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400872 printk(KERN_ERR PREFIX
873 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 break;
875 }
876 pr = acpi_driver_data(device);
877 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400878 printk(KERN_ERR PREFIX
879 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400880 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882
883 if ((pr->id < NR_CPUS) && (cpu_present(pr->id)))
Kay Sievers312c0042005-11-16 09:00:00 +0100884 kobject_uevent(&device->kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 break;
886 default:
887 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400888 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 break;
890 }
891
Patrick Mocheld550d982006-06-27 00:41:40 -0400892 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
895static acpi_status
896processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400897 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Len Brown4be44fc2005-08-05 00:44:28 -0400899 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400901 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 status = acpi_get_type(handle, &type);
904 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400905 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400908 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Len Brown4be44fc2005-08-05 00:44:28 -0400910 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 case INSTALL_NOTIFY_HANDLER:
912 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400913 ACPI_SYSTEM_NOTIFY,
914 acpi_processor_hotplug_notify,
915 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 break;
917 case UNINSTALL_NOTIFY_HANDLER:
918 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400919 ACPI_SYSTEM_NOTIFY,
920 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 break;
922 default:
923 break;
924 }
925
Len Brown4be44fc2005-08-05 00:44:28 -0400926 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Len Brown4be44fc2005-08-05 00:44:28 -0400929static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400933 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935
936 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -0400937 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if (arch_register_cpu(*p_cpu)) {
940 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -0400941 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 }
943
Patrick Mocheld550d982006-06-27 00:41:40 -0400944 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Len Brown4be44fc2005-08-05 00:44:28 -0400947static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 if (cpu_online(pr->id)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400950 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952 arch_unregister_cpu(pr->id);
953 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400954 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956#else
Len Brown4be44fc2005-08-05 00:44:28 -0400957static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 return AE_ERROR;
960}
Len Brown4be44fc2005-08-05 00:44:28 -0400961static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Len Brown4be44fc2005-08-05 00:44:28 -0400963 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965#endif
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967static
968void acpi_processor_install_hotplug_notify(void)
969{
970#ifdef CONFIG_ACPI_HOTPLUG_CPU
971 int action = INSTALL_NOTIFY_HANDLER;
972 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400973 ACPI_ROOT_OBJECT,
974 ACPI_UINT32_MAX,
975 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976#endif
977}
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979static
980void acpi_processor_uninstall_hotplug_notify(void)
981{
982#ifdef CONFIG_ACPI_HOTPLUG_CPU
983 int action = UNINSTALL_NOTIFY_HANDLER;
984 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400985 ACPI_ROOT_OBJECT,
986 ACPI_UINT32_MAX,
987 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988#endif
989}
990
991/*
992 * We keep the driver loaded even when ACPI is not running.
993 * This is needed for the powernow-k8 driver, that works even without
994 * ACPI, but needs symbols from this driver
995 */
996
Len Brown4be44fc2005-08-05 00:44:28 -0400997static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Len Brown4be44fc2005-08-05 00:44:28 -0400999 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 memset(&processors, 0, sizeof(processors));
1003 memset(&errata, 0, sizeof(errata));
1004
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001005#ifdef CONFIG_SMP
1006 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1007 (struct acpi_table_header **)&madt)))
1008 madt = 0;
1009#endif
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1012 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001013 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 acpi_processor_dir->owner = THIS_MODULE;
1015
1016 result = acpi_bus_register_driver(&acpi_processor_driver);
1017 if (result < 0) {
1018 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Akinobu Mita83822fc2006-12-19 12:56:10 -08001019 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021
1022 acpi_processor_install_hotplug_notify();
1023
1024 acpi_thermal_cpufreq_init();
1025
1026 acpi_processor_ppc_init();
1027
Patrick Mocheld550d982006-06-27 00:41:40 -04001028 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Len Brown4be44fc2005-08-05 00:44:28 -04001031static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 acpi_processor_ppc_exit();
1035
1036 acpi_thermal_cpufreq_exit();
1037
1038 acpi_processor_uninstall_hotplug_notify();
1039
1040 acpi_bus_unregister_driver(&acpi_processor_driver);
1041
1042 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1043
Patrick Mocheld550d982006-06-27 00:41:40 -04001044 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047module_init(acpi_processor_init);
1048module_exit(acpi_processor_exit);
1049
1050EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1051
1052MODULE_ALIAS("processor");