blob: 911fc8cae0c1daffbc22b17a01bdb7d03a85c455 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#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
70#define ACPI_PROCESSOR_LIMIT_USER 0
71#define ACPI_PROCESSOR_LIMIT_THERMAL 1
72
73#define ACPI_STA_PRESENT 0x00000001
74
75#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050076ACPI_MODULE_NAME("processor_core");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Len Brownf52fd662007-02-12 22:42:12 -050078MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050079MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080MODULE_LICENSE("GPL");
81
Len Brown4be44fc2005-08-05 00:44:28 -040082static int acpi_processor_add(struct acpi_device *device);
83static int acpi_processor_start(struct acpi_device *device);
84static int acpi_processor_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040086static void acpi_processor_notify(acpi_handle handle, u32 event, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
88static int acpi_processor_handle_eject(struct acpi_processor *pr);
89
90static struct acpi_driver acpi_processor_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050091 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -040092 .class = ACPI_PROCESSOR_CLASS,
93 .ids = ACPI_PROCESSOR_HID,
94 .ops = {
95 .add = acpi_processor_add,
96 .remove = acpi_processor_remove,
97 .start = acpi_processor_start,
98 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
101#define INSTALL_NOTIFY_HANDLER 1
102#define UNINSTALL_NOTIFY_HANDLER 2
103
Arjan van de Vend7508032006-07-04 13:06:00 -0400104static const struct file_operations acpi_processor_info_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400105 .open = acpi_processor_info_open_fs,
106 .read = seq_read,
107 .llseek = seq_lseek,
108 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
Len Brown4be44fc2005-08-05 00:44:28 -0400111struct acpi_processor *processors[NR_CPUS];
Andreas Mohr9f222712006-06-23 02:04:27 -0700112struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* --------------------------------------------------------------------------
115 Errata Handling
116 -------------------------------------------------------------------------- */
117
Len Brown4be44fc2005-08-05 00:44:28 -0400118static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Len Brown4be44fc2005-08-05 00:44:28 -0400120 u8 rev = 0;
121 u8 value1 = 0;
122 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400126 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 /*
129 * Note that 'dev' references the PIIX4 ACPI Controller.
130 */
131
132 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
133
134 switch (rev) {
135 case 0:
136 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
137 break;
138 case 1:
139 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
140 break;
141 case 2:
142 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
143 break;
144 case 3:
145 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
146 break;
147 default:
148 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
149 break;
150 }
151
152 switch (rev) {
153
154 case 0: /* PIIX4 A-step */
155 case 1: /* PIIX4 B-step */
156 /*
157 * See specification changes #13 ("Manual Throttle Duty Cycle")
158 * and #14 ("Enabling and Disabling Manual Throttle"), plus
159 * erratum #5 ("STPCLK# Deassertion Time") from the January
160 * 2002 PIIX4 specification update. Applies to only older
161 * PIIX4 models.
162 */
163 errata.piix4.throttle = 1;
164
165 case 2: /* PIIX4E */
166 case 3: /* PIIX4M */
167 /*
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.
171 */
172
173 /*
174 * BM-IDE
175 * ------
176 * Find the PIIX4 IDE Controller and get the Bus Master IDE
177 * Status register address. We'll use this later to read
178 * each IDE controller's DMA status to make sure we catch all
179 * DMA activity.
180 */
181 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400182 PCI_DEVICE_ID_INTEL_82371AB,
183 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (dev) {
185 errata.piix4.bmisx = pci_resource_start(dev, 4);
186 pci_dev_put(dev);
187 }
188
189 /*
190 * Type-F DMA
191 * ----------
192 * Find the PIIX4 ISA Controller and read the Motherboard
193 * DMA controller's status to see if Type-F (Fast) DMA mode
194 * is enabled (bit 7) on either channel. Note that we'll
195 * disable C3 support if this is enabled, as some legacy
196 * devices won't operate well if fast DMA is disabled.
197 */
198 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400199 PCI_DEVICE_ID_INTEL_82371AB_0,
200 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (dev) {
202 pci_read_config_byte(dev, 0x76, &value1);
203 pci_read_config_byte(dev, 0x77, &value2);
204 if ((value1 & 0x80) || (value2 & 0x80))
205 errata.piix4.fdma = 1;
206 pci_dev_put(dev);
207 }
208
209 break;
210 }
211
212 if (errata.piix4.bmisx)
213 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400214 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (errata.piix4.fdma)
216 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400217 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Patrick Mocheld550d982006-06-27 00:41:40 -0400219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400222static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Len Brown4be44fc2005-08-05 00:44:28 -0400224 int result = 0;
225 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400229 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /*
232 * PIIX4
233 */
234 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400235 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
236 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (dev) {
238 result = acpi_processor_errata_piix4(dev);
239 pci_dev_put(dev);
240 }
241
Patrick Mocheld550d982006-06-27 00:41:40 -0400242 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800246 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400247 -------------------------------------------------------------------------- */
248
249/*
250 * _PDC is required for a BIOS-OS handshake for most of the newer
251 * ACPI processor features.
252 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400253static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400254{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400255 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400256 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400257
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400258
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400259 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400260 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400261
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400262 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400263
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400264 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400265 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400266 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400267
Patrick Mocheld550d982006-06-27 00:41:40 -0400268 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400269}
270
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400271/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 FS Interface (/proc)
273 -------------------------------------------------------------------------- */
274
Len Brown4be44fc2005-08-05 00:44:28 -0400275static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
278{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200279 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 if (!pr)
283 goto end;
284
285 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400286 "acpi id: %d\n"
287 "bus mastering control: %s\n"
288 "power management: %s\n"
289 "throttling control: %s\n"
290 "limit interface: %s\n",
291 pr->id,
292 pr->acpi_id,
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");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Len Brown4be44fc2005-08-05 00:44:28 -0400298 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400299 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
303{
304 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400305 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Len Brown4be44fc2005-08-05 00:44:28 -0400308static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Len Brown4be44fc2005-08-05 00:44:28 -0400310 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 if (!acpi_device_dir(device)) {
314 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400315 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400317 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 acpi_device_dir(device)->owner = THIS_MODULE;
320
321 /* 'info' [R] */
322 entry = create_proc_entry(ACPI_PROCESSOR_FILE_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400323 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 else {
327 entry->proc_fops = &acpi_processor_info_fops;
328 entry->data = acpi_driver_data(device);
329 entry->owner = THIS_MODULE;
330 }
331
332 /* 'throttling' [R/W] */
333 entry = create_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400334 S_IFREG | S_IRUGO | S_IWUSR,
335 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400337 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 else {
339 entry->proc_fops = &acpi_processor_throttling_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 entry->data = acpi_driver_data(device);
341 entry->owner = THIS_MODULE;
342 }
343
344 /* 'limit' [R/W] */
345 entry = create_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
Len Brown4be44fc2005-08-05 00:44:28 -0400346 S_IFREG | S_IRUGO | S_IWUSR,
347 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400349 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 else {
351 entry->proc_fops = &acpi_processor_limit_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 entry->data = acpi_driver_data(device);
353 entry->owner = THIS_MODULE;
354 }
355
Patrick Mocheld550d982006-06-27 00:41:40 -0400356 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Len Brown4be44fc2005-08-05 00:44:28 -0400359static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400363 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
364 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400366 acpi_device_dir(device));
367 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
368 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
370 acpi_device_dir(device) = NULL;
371 }
372
Patrick Mocheld550d982006-06-27 00:41:40 -0400373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#ifndef CONFIG_SMP
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300379static int get_cpu_id(acpi_handle handle, u32 acpi_id) {return -1;}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#else
381
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300382static struct acpi_table_madt *madt;
383
384static int map_lapic_id(struct acpi_subtable_header *entry,
385 u32 acpi_id, int *apic_id)
386{
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;
392 return 1;
393 }
394 return 0;
395}
396
397static int map_lsapic_id(struct acpi_subtable_header *entry,
398 u32 acpi_id, int *apic_id)
399{
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;
407 return 1;
408 /* Check against optional uid */
409 } else if (entry->length >= 16 &&
410 lsapic->uid == acpi_id) {
411 *apic_id = lsapic->uid;
412 return 1;
413 }
414 }
415 return 0;
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#ifdef CONFIG_IA64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#define arch_cpu_to_apicid ia64_cpu_to_sapicid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421#define arch_cpu_to_apicid x86_cpu_to_apicid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422#endif
423
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300424static int map_madt_entry(u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300426 unsigned long madt_end, entry;
427 int apic_id = -1;
428
429 if (!madt)
430 return apic_id;
431
432 entry = (unsigned long)madt;
433 madt_end = entry + madt->header.length;
434
435 /* Parse all entries looking for a match. */
436
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))
443 break;
444 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
445 if (map_lsapic_id(header, acpi_id, &apic_id))
446 break;
447 }
448 entry += header->length;
449 }
450 return apic_id;
451}
452
453static int map_mat_entry(acpi_handle handle, u32 acpi_id)
454{
455 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
456 union acpi_object *obj;
457 struct acpi_subtable_header *header;
458 int apic_id = -1;
459
460 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
461 goto exit;
462
463 if (!buffer.length || !buffer.pointer)
464 goto exit;
465
466 obj = buffer.pointer;
467 if (obj->type != ACPI_TYPE_BUFFER ||
468 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
469 goto exit;
470 }
471
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);
477 }
478
479exit:
480 if (buffer.pointer)
481 kfree(buffer.pointer);
482 return apic_id;
483}
484
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300485static int get_cpu_id(acpi_handle handle, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300486{
Len Brown4a35a462005-09-03 12:40:06 -0400487 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300488 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300490 apic_id = map_mat_entry(handle, acpi_id);
491 if (apic_id == -1)
492 apic_id = map_madt_entry(acpi_id);
493 if (apic_id == -1)
494 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300496 for (i = 0; i < NR_CPUS; ++i) {
Len Brown4a35a462005-09-03 12:40:06 -0400497 if (arch_cpu_to_apicid[i] == apic_id)
498 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500 return -1;
501}
502#endif
503
504/* --------------------------------------------------------------------------
505 Driver Interface
506 -------------------------------------------------------------------------- */
507
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300508static int acpi_processor_get_info(struct acpi_processor *pr, unsigned has_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Len Brown4be44fc2005-08-05 00:44:28 -0400510 acpi_status status = 0;
511 union acpi_object object = { 0 };
512 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Ashok Rajdf42baa2006-03-28 17:04:00 -0500513 int cpu_index;
Len Brown4be44fc2005-08-05 00:44:28 -0400514 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400518 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (num_online_cpus() > 1)
521 errata.smp = TRUE;
522
523 acpi_processor_errata(pr);
524
525 /*
526 * Check to see if we have bus mastering arbitration control. This
527 * is required for proper C3 usage (to maintain cache coherency).
528 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300529 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 pr->flags.bm_control = 1;
531 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400532 "Bus mastering arbitration control present\n"));
533 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400535 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300537 /* Check if it is a Device with HID and UID */
538 if (has_uid) {
539 unsigned long value;
540 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
541 NULL, &value);
542 if (ACPI_FAILURE(status)) {
543 printk(KERN_ERR PREFIX "Evaluating processor _UID\n");
544 return -ENODEV;
545 }
546 pr->acpi_id = value;
547 } else {
548 /*
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.
552 */
553 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
554 if (ACPI_FAILURE(status)) {
555 printk(KERN_ERR PREFIX "Evaluating processor object\n");
556 return -ENODEV;
557 }
558
559 /*
560 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
561 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
562 */
563 pr->acpi_id = object.processor.proc_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300565 cpu_index = get_cpu_id(pr->handle, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500568 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400569 (num_online_cpus() == 1)) {
570 cpu_index = 0;
571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Len Brown4be44fc2005-08-05 00:44:28 -0400573 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Len Brown4be44fc2005-08-05 00:44:28 -0400575 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Len Brown4be44fc2005-08-05 00:44:28 -0400577 /*
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.
581 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300582 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400583 if (ACPI_FAILURE
584 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400585 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400586 }
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400590 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
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)
Len Brown64684632006-06-26 23:41:38 -0400595 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
596 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 else {
598 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300599 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
600 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 pr->pblk = object.processor.pblk_address;
603
604 /*
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..
608 *
609 * (In particular, allocating the IO range for Cardbus)
610 */
611 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
612 }
613
614#ifdef CONFIG_CPU_FREQ
615 acpi_processor_ppc_has_changed(pr);
616#endif
617 acpi_processor_get_throttling_info(pr);
618 acpi_processor_get_limit_info(pr);
619
Patrick Mocheld550d982006-06-27 00:41:40 -0400620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400623static void *processor_device_array[NR_CPUS];
624
Pierre Ossman7af8b662006-10-10 14:20:31 -0700625static int __cpuinit acpi_processor_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Len Brown4be44fc2005-08-05 00:44:28 -0400627 int result = 0;
628 acpi_status status = AE_OK;
629 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 pr = acpi_driver_data(device);
633
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300634 result = acpi_processor_get_info(pr, device->flags.unique_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (result) {
636 /* Processor is physically not present */
Patrick Mocheld550d982006-06-27 00:41:40 -0400637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
640 BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
641
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400642 /*
643 * Buggy BIOS check
644 * ACPI id of processors can be reported wrongly by the BIOS.
645 * Don't trust it blindly
646 */
647 if (processor_device_array[pr->id] != NULL &&
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200648 processor_device_array[pr->id] != device) {
Len Brown0eacee52006-03-31 00:37:23 -0500649 printk(KERN_WARNING "BIOS reported wrong ACPI id"
650 "for the processor\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400651 return -ENODEV;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400652 }
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200653 processor_device_array[pr->id] = device;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 processors[pr->id] = pr;
656
657 result = acpi_processor_add_fs(device);
658 if (result)
659 goto end;
660
661 status = acpi_install_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400662 acpi_processor_notify, pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400664 /* _PDC call should be done before doing anything else (if reqd.). */
665 arch_acpi_processor_init_pdc(pr);
666 acpi_processor_set_pdc(pr);
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 acpi_processor_power_init(pr, device);
669
670 if (pr->flags.throttling) {
671 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400672 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 printk(" %d throttling states", pr->throttling.state_count);
674 printk(")\n");
675 }
676
Len Brown4be44fc2005-08-05 00:44:28 -0400677 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Patrick Mocheld550d982006-06-27 00:41:40 -0400679 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Len Brown4be44fc2005-08-05 00:44:28 -0400682static void acpi_processor_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200684 struct acpi_processor *pr = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400685 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 if (acpi_bus_get_device(pr->handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400692 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 switch (event) {
695 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
696 acpi_processor_ppc_has_changed(pr);
697 acpi_bus_generate_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400698 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 break;
700 case ACPI_PROCESSOR_NOTIFY_POWER:
701 acpi_processor_cst_has_changed(pr);
702 acpi_bus_generate_event(device, event, 0);
703 break;
704 default:
705 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400706 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 break;
708 }
709
Patrick Mocheld550d982006-06-27 00:41:40 -0400710 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
Len Brown4be44fc2005-08-05 00:44:28 -0400713static int acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Len Brown4be44fc2005-08-05 00:44:28 -0400715 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400719 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Burman Yan36bcbec2006-12-19 12:56:11 -0800721 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400723 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
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;
729
Patrick Mocheld550d982006-06-27 00:41:40 -0400730 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Len Brown4be44fc2005-08-05 00:44:28 -0400733static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Len Brown4be44fc2005-08-05 00:44:28 -0400735 acpi_status status = AE_OK;
736 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400740 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200742 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 if (pr->id >= NR_CPUS) {
745 kfree(pr);
Patrick Mocheld550d982006-06-27 00:41:40 -0400746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
749 if (type == ACPI_BUS_REMOVAL_EJECT) {
750 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400751 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
754 acpi_processor_power_exit(pr, device);
755
756 status = acpi_remove_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400757 acpi_processor_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 acpi_processor_remove_fs(device);
760
761 processors[pr->id] = NULL;
762
763 kfree(pr);
764
Patrick Mocheld550d982006-06-27 00:41:40 -0400765 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768#ifdef CONFIG_ACPI_HOTPLUG_CPU
769/****************************************************************************
770 * Acpi processor hotplug support *
771 ****************************************************************************/
772
773static int is_processor_present(acpi_handle handle);
774
Len Brown4be44fc2005-08-05 00:44:28 -0400775static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Len Brown4be44fc2005-08-05 00:44:28 -0400777 acpi_status status;
778 unsigned long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
782 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_PRESENT)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400783 ACPI_EXCEPTION((AE_INFO, status, "Processor Device is not present"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400786 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789static
Len Brown4be44fc2005-08-05 00:44:28 -0400790int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Len Brown4be44fc2005-08-05 00:44:28 -0400792 acpi_handle phandle;
793 struct acpi_device *pdev;
794 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400798 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
801 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400802 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804
805 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
Rajesh Shah3fb02732005-04-28 00:25:52 -0700809 acpi_bus_start(*device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 pr = acpi_driver_data(*device);
812 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400813 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Len Brown4be44fc2005-08-05 00:44:28 -0400815 if ((pr->id >= 0) && (pr->id < NR_CPUS)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800816 kobject_uevent(&(*device)->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400818 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821static void
Len Brown4be44fc2005-08-05 00:44:28 -0400822acpi_processor_hotplug_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Len Brown4be44fc2005-08-05 00:44:28 -0400824 struct acpi_processor *pr;
825 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int result;
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 switch (event) {
830 case ACPI_NOTIFY_BUS_CHECK:
831 case ACPI_NOTIFY_DEVICE_CHECK:
832 printk("Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400833 (event == ACPI_NOTIFY_BUS_CHECK) ?
834 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if (!is_processor_present(handle))
837 break;
838
839 if (acpi_bus_get_device(handle, &device)) {
840 result = acpi_processor_device_add(handle, &device);
841 if (result)
Len Brown64684632006-06-26 23:41:38 -0400842 printk(KERN_ERR PREFIX
843 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 break;
845 }
846
847 pr = acpi_driver_data(device);
848 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400849 printk(KERN_ERR PREFIX "Driver data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 break;
851 }
852
853 if (pr->id >= 0 && (pr->id < NR_CPUS)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800854 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 break;
856 }
857
858 result = acpi_processor_start(device);
Len Brown4be44fc2005-08-05 00:44:28 -0400859 if ((!result) && ((pr->id >= 0) && (pr->id < NR_CPUS))) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800860 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 } else {
Len Brown64684632006-06-26 23:41:38 -0400862 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
863 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
Len Brown4be44fc2005-08-05 00:44:28 -0400865 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400867 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
868 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400871 printk(KERN_ERR PREFIX
872 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 break;
874 }
875 pr = acpi_driver_data(device);
876 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400877 printk(KERN_ERR PREFIX
878 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400879 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881
882 if ((pr->id < NR_CPUS) && (cpu_present(pr->id)))
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800883 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
885 default:
886 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400887 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 break;
889 }
890
Patrick Mocheld550d982006-06-27 00:41:40 -0400891 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
894static acpi_status
895processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400896 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Len Brown4be44fc2005-08-05 00:44:28 -0400898 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400900 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 status = acpi_get_type(handle, &type);
903 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400904 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400907 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Len Brown4be44fc2005-08-05 00:44:28 -0400909 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 case INSTALL_NOTIFY_HANDLER:
911 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400912 ACPI_SYSTEM_NOTIFY,
913 acpi_processor_hotplug_notify,
914 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 break;
916 case UNINSTALL_NOTIFY_HANDLER:
917 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400918 ACPI_SYSTEM_NOTIFY,
919 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 break;
921 default:
922 break;
923 }
924
Len Brown4be44fc2005-08-05 00:44:28 -0400925 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Len Brown4be44fc2005-08-05 00:44:28 -0400928static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400932 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
935 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -0400936 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if (arch_register_cpu(*p_cpu)) {
939 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -0400940 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942
Patrick Mocheld550d982006-06-27 00:41:40 -0400943 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Len Brown4be44fc2005-08-05 00:44:28 -0400946static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 if (cpu_online(pr->id)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400949 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951 arch_unregister_cpu(pr->id);
952 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400953 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955#else
Len Brown4be44fc2005-08-05 00:44:28 -0400956static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
958 return AE_ERROR;
959}
Len Brown4be44fc2005-08-05 00:44:28 -0400960static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Len Brown4be44fc2005-08-05 00:44:28 -0400962 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964#endif
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966static
967void acpi_processor_install_hotplug_notify(void)
968{
969#ifdef CONFIG_ACPI_HOTPLUG_CPU
970 int action = INSTALL_NOTIFY_HANDLER;
971 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400972 ACPI_ROOT_OBJECT,
973 ACPI_UINT32_MAX,
974 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975#endif
976}
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978static
979void acpi_processor_uninstall_hotplug_notify(void)
980{
981#ifdef CONFIG_ACPI_HOTPLUG_CPU
982 int action = UNINSTALL_NOTIFY_HANDLER;
983 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400984 ACPI_ROOT_OBJECT,
985 ACPI_UINT32_MAX,
986 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987#endif
988}
989
990/*
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
994 */
995
Len Brown4be44fc2005-08-05 00:44:28 -0400996static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Len Brown4be44fc2005-08-05 00:44:28 -0400998 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 memset(&processors, 0, sizeof(processors));
1002 memset(&errata, 0, sizeof(errata));
1003
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001004#ifdef CONFIG_SMP
1005 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1006 (struct acpi_table_header **)&madt)))
1007 madt = 0;
1008#endif
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1011 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001012 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 acpi_processor_dir->owner = THIS_MODULE;
1014
1015 result = acpi_bus_register_driver(&acpi_processor_driver);
1016 if (result < 0) {
1017 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Akinobu Mita83822fc2006-12-19 12:56:10 -08001018 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020
1021 acpi_processor_install_hotplug_notify();
1022
1023 acpi_thermal_cpufreq_init();
1024
1025 acpi_processor_ppc_init();
1026
Patrick Mocheld550d982006-06-27 00:41:40 -04001027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
Len Brown4be44fc2005-08-05 00:44:28 -04001030static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 acpi_processor_ppc_exit();
1034
1035 acpi_thermal_cpufreq_exit();
1036
1037 acpi_processor_uninstall_hotplug_notify();
1038
1039 acpi_bus_unregister_driver(&acpi_processor_driver);
1040
1041 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1042
Patrick Mocheld550d982006-06-27 00:41:40 -04001043 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046module_init(acpi_processor_init);
1047module_exit(acpi_processor_exit);
1048
1049EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1050
1051MODULE_ALIAS("processor");