blob: e1ca86dfdd661fa2a53fbf78d3207296795ea165 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050074ACPI_MODULE_NAME("processor_core");
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Len Brownf52fd662007-02-12 22:42:12 -050076MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050077MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070078MODULE_LICENSE("GPL");
79
Len Brown4be44fc2005-08-05 00:44:28 -040080static int acpi_processor_add(struct acpi_device *device);
81static int acpi_processor_start(struct acpi_device *device);
82static int acpi_processor_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040084static void acpi_processor_notify(acpi_handle handle, u32 event, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
86static int acpi_processor_handle_eject(struct acpi_processor *pr);
87
88static struct acpi_driver acpi_processor_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050089 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -040090 .class = ACPI_PROCESSOR_CLASS,
91 .ids = ACPI_PROCESSOR_HID,
92 .ops = {
93 .add = acpi_processor_add,
94 .remove = acpi_processor_remove,
95 .start = acpi_processor_start,
96 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070097};
98
99#define INSTALL_NOTIFY_HANDLER 1
100#define UNINSTALL_NOTIFY_HANDLER 2
101
Arjan van de Vend7508032006-07-04 13:06:00 -0400102static const struct file_operations acpi_processor_info_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400103 .open = acpi_processor_info_open_fs,
104 .read = seq_read,
105 .llseek = seq_lseek,
106 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
Len Brown4be44fc2005-08-05 00:44:28 -0400109struct acpi_processor *processors[NR_CPUS];
Andreas Mohr9f222712006-06-23 02:04:27 -0700110struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* --------------------------------------------------------------------------
113 Errata Handling
114 -------------------------------------------------------------------------- */
115
Len Brown4be44fc2005-08-05 00:44:28 -0400116static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Len Brown4be44fc2005-08-05 00:44:28 -0400118 u8 value1 = 0;
119 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400123 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 /*
126 * Note that 'dev' references the PIIX4 ACPI Controller.
127 */
128
Auke Kok44c10132007-06-08 15:46:36 -0700129 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 case 0:
131 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
132 break;
133 case 1:
134 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
135 break;
136 case 2:
137 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
138 break;
139 case 3:
140 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
141 break;
142 default:
143 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
144 break;
145 }
146
Auke Kok44c10132007-06-08 15:46:36 -0700147 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 case 0: /* PIIX4 A-step */
150 case 1: /* PIIX4 B-step */
151 /*
152 * See specification changes #13 ("Manual Throttle Duty Cycle")
153 * and #14 ("Enabling and Disabling Manual Throttle"), plus
154 * erratum #5 ("STPCLK# Deassertion Time") from the January
155 * 2002 PIIX4 specification update. Applies to only older
156 * PIIX4 models.
157 */
158 errata.piix4.throttle = 1;
159
160 case 2: /* PIIX4E */
161 case 3: /* PIIX4M */
162 /*
163 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
164 * Livelock") from the January 2002 PIIX4 specification update.
165 * Applies to all PIIX4 models.
166 */
167
168 /*
169 * BM-IDE
170 * ------
171 * Find the PIIX4 IDE Controller and get the Bus Master IDE
172 * Status register address. We'll use this later to read
173 * each IDE controller's DMA status to make sure we catch all
174 * DMA activity.
175 */
176 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400177 PCI_DEVICE_ID_INTEL_82371AB,
178 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (dev) {
180 errata.piix4.bmisx = pci_resource_start(dev, 4);
181 pci_dev_put(dev);
182 }
183
184 /*
185 * Type-F DMA
186 * ----------
187 * Find the PIIX4 ISA Controller and read the Motherboard
188 * DMA controller's status to see if Type-F (Fast) DMA mode
189 * is enabled (bit 7) on either channel. Note that we'll
190 * disable C3 support if this is enabled, as some legacy
191 * devices won't operate well if fast DMA is disabled.
192 */
193 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400194 PCI_DEVICE_ID_INTEL_82371AB_0,
195 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (dev) {
197 pci_read_config_byte(dev, 0x76, &value1);
198 pci_read_config_byte(dev, 0x77, &value2);
199 if ((value1 & 0x80) || (value2 & 0x80))
200 errata.piix4.fdma = 1;
201 pci_dev_put(dev);
202 }
203
204 break;
205 }
206
207 if (errata.piix4.bmisx)
208 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400209 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (errata.piix4.fdma)
211 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400212 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Patrick Mocheld550d982006-06-27 00:41:40 -0400214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400217static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Len Brown4be44fc2005-08-05 00:44:28 -0400219 int result = 0;
220 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400224 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /*
227 * PIIX4
228 */
229 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400230 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
231 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (dev) {
233 result = acpi_processor_errata_piix4(dev);
234 pci_dev_put(dev);
235 }
236
Patrick Mocheld550d982006-06-27 00:41:40 -0400237 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800241 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400242 -------------------------------------------------------------------------- */
243
244/*
245 * _PDC is required for a BIOS-OS handshake for most of the newer
246 * ACPI processor features.
247 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400248static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400249{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400250 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400251 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400252
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400253
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400254 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400255 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400256
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400257 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400258
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400259 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400260 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400261 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400262
Patrick Mocheld550d982006-06-27 00:41:40 -0400263 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400264}
265
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400266/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 FS Interface (/proc)
268 -------------------------------------------------------------------------- */
269
Len Brown4be44fc2005-08-05 00:44:28 -0400270static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
273{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200274 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if (!pr)
278 goto end;
279
280 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400281 "acpi id: %d\n"
282 "bus mastering control: %s\n"
283 "power management: %s\n"
284 "throttling control: %s\n"
285 "limit interface: %s\n",
286 pr->id,
287 pr->acpi_id,
288 pr->flags.bm_control ? "yes" : "no",
289 pr->flags.power ? "yes" : "no",
290 pr->flags.throttling ? "yes" : "no",
291 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Len Brown4be44fc2005-08-05 00:44:28 -0400293 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
298{
299 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400300 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Len Brown4be44fc2005-08-05 00:44:28 -0400305 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 if (!acpi_device_dir(device)) {
309 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400310 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400312 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314 acpi_device_dir(device)->owner = THIS_MODULE;
315
316 /* 'info' [R] */
317 entry = create_proc_entry(ACPI_PROCESSOR_FILE_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400318 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400320 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 else {
322 entry->proc_fops = &acpi_processor_info_fops;
323 entry->data = acpi_driver_data(device);
324 entry->owner = THIS_MODULE;
325 }
326
327 /* 'throttling' [R/W] */
328 entry = create_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400329 S_IFREG | S_IRUGO | S_IWUSR,
330 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400332 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 else {
334 entry->proc_fops = &acpi_processor_throttling_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 entry->data = acpi_driver_data(device);
336 entry->owner = THIS_MODULE;
337 }
338
339 /* 'limit' [R/W] */
340 entry = create_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
Len Brown4be44fc2005-08-05 00:44:28 -0400341 S_IFREG | S_IRUGO | S_IWUSR,
342 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400344 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 else {
346 entry->proc_fops = &acpi_processor_limit_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 entry->data = acpi_driver_data(device);
348 entry->owner = THIS_MODULE;
349 }
350
Patrick Mocheld550d982006-06-27 00:41:40 -0400351 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Len Brown4be44fc2005-08-05 00:44:28 -0400354static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400358 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
359 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400361 acpi_device_dir(device));
362 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
363 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
365 acpi_device_dir(device) = NULL;
366 }
367
Patrick Mocheld550d982006-06-27 00:41:40 -0400368 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373#ifndef CONFIG_SMP
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300374static int get_cpu_id(acpi_handle handle, u32 acpi_id) {return -1;}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375#else
376
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300377static struct acpi_table_madt *madt;
378
379static int map_lapic_id(struct acpi_subtable_header *entry,
380 u32 acpi_id, int *apic_id)
381{
382 struct acpi_madt_local_apic *lapic =
383 (struct acpi_madt_local_apic *)entry;
384 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
385 lapic->processor_id == acpi_id) {
386 *apic_id = lapic->id;
387 return 1;
388 }
389 return 0;
390}
391
392static int map_lsapic_id(struct acpi_subtable_header *entry,
393 u32 acpi_id, int *apic_id)
394{
395 struct acpi_madt_local_sapic *lsapic =
396 (struct acpi_madt_local_sapic *)entry;
397 /* Only check enabled APICs*/
398 if (lsapic->lapic_flags & ACPI_MADT_ENABLED) {
399 /* First check against id */
400 if (lsapic->processor_id == acpi_id) {
Alexey Starikovskiy615d5f22007-02-12 10:51:23 -0500401 *apic_id = (lsapic->id << 8) | lsapic->eid;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300402 return 1;
403 /* Check against optional uid */
404 } else if (entry->length >= 16 &&
405 lsapic->uid == acpi_id) {
406 *apic_id = lsapic->uid;
407 return 1;
408 }
409 }
410 return 0;
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#ifdef CONFIG_IA64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414#define arch_cpu_to_apicid ia64_cpu_to_sapicid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416#define arch_cpu_to_apicid x86_cpu_to_apicid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#endif
418
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300419static int map_madt_entry(u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300421 unsigned long madt_end, entry;
422 int apic_id = -1;
423
424 if (!madt)
425 return apic_id;
426
427 entry = (unsigned long)madt;
428 madt_end = entry + madt->header.length;
429
430 /* Parse all entries looking for a match. */
431
432 entry += sizeof(struct acpi_table_madt);
433 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
434 struct acpi_subtable_header *header =
435 (struct acpi_subtable_header *)entry;
436 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
437 if (map_lapic_id(header, acpi_id, &apic_id))
438 break;
439 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
440 if (map_lsapic_id(header, acpi_id, &apic_id))
441 break;
442 }
443 entry += header->length;
444 }
445 return apic_id;
446}
447
448static int map_mat_entry(acpi_handle handle, u32 acpi_id)
449{
450 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
451 union acpi_object *obj;
452 struct acpi_subtable_header *header;
453 int apic_id = -1;
454
455 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
456 goto exit;
457
458 if (!buffer.length || !buffer.pointer)
459 goto exit;
460
461 obj = buffer.pointer;
462 if (obj->type != ACPI_TYPE_BUFFER ||
463 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
464 goto exit;
465 }
466
467 header = (struct acpi_subtable_header *)obj->buffer.pointer;
468 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
469 map_lapic_id(header, acpi_id, &apic_id);
470 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
471 map_lsapic_id(header, acpi_id, &apic_id);
472 }
473
474exit:
475 if (buffer.pointer)
476 kfree(buffer.pointer);
477 return apic_id;
478}
479
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300480static int get_cpu_id(acpi_handle handle, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300481{
Len Brown4a35a462005-09-03 12:40:06 -0400482 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300483 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300485 apic_id = map_mat_entry(handle, acpi_id);
486 if (apic_id == -1)
487 apic_id = map_madt_entry(acpi_id);
488 if (apic_id == -1)
489 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300491 for (i = 0; i < NR_CPUS; ++i) {
Len Brown4a35a462005-09-03 12:40:06 -0400492 if (arch_cpu_to_apicid[i] == apic_id)
493 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495 return -1;
496}
497#endif
498
499/* --------------------------------------------------------------------------
500 Driver Interface
501 -------------------------------------------------------------------------- */
502
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300503static int acpi_processor_get_info(struct acpi_processor *pr, unsigned has_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Len Brown4be44fc2005-08-05 00:44:28 -0400505 acpi_status status = 0;
506 union acpi_object object = { 0 };
507 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Ashok Rajdf42baa2006-03-28 17:04:00 -0500508 int cpu_index;
Len Brown4be44fc2005-08-05 00:44:28 -0400509 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400513 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 if (num_online_cpus() > 1)
516 errata.smp = TRUE;
517
518 acpi_processor_errata(pr);
519
520 /*
521 * Check to see if we have bus mastering arbitration control. This
522 * is required for proper C3 usage (to maintain cache coherency).
523 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300524 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 pr->flags.bm_control = 1;
526 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400527 "Bus mastering arbitration control present\n"));
528 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400530 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300532 /* Check if it is a Device with HID and UID */
533 if (has_uid) {
534 unsigned long value;
535 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
536 NULL, &value);
537 if (ACPI_FAILURE(status)) {
538 printk(KERN_ERR PREFIX "Evaluating processor _UID\n");
539 return -ENODEV;
540 }
541 pr->acpi_id = value;
542 } else {
543 /*
544 * Evalute the processor object. Note that it is common on SMP to
545 * have the first (boot) processor with a valid PBLK address while
546 * all others have a NULL address.
547 */
548 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
549 if (ACPI_FAILURE(status)) {
550 printk(KERN_ERR PREFIX "Evaluating processor object\n");
551 return -ENODEV;
552 }
553
554 /*
555 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
556 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
557 */
558 pr->acpi_id = object.processor.proc_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300560 cpu_index = get_cpu_id(pr->handle, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Len Brown4be44fc2005-08-05 00:44:28 -0400562 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500563 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400564 (num_online_cpus() == 1)) {
565 cpu_index = 0;
566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Len Brown4be44fc2005-08-05 00:44:28 -0400568 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Len Brown4be44fc2005-08-05 00:44:28 -0400570 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Len Brown4be44fc2005-08-05 00:44:28 -0400572 /*
573 * Extra Processor objects may be enumerated on MP systems with
574 * less than the max # of CPUs. They should be ignored _iff
575 * they are physically not present.
576 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300577 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400578 if (ACPI_FAILURE
579 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400580 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400581 }
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400585 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 if (!object.processor.pblk_address)
588 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
589 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400590 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
591 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 else {
593 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300594 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
595 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 pr->pblk = object.processor.pblk_address;
598
599 /*
600 * We don't care about error returns - we just try to mark
601 * these reserved so that nobody else is confused into thinking
602 * that this region might be unused..
603 *
604 * (In particular, allocating the IO range for Cardbus)
605 */
606 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
607 }
608
609#ifdef CONFIG_CPU_FREQ
610 acpi_processor_ppc_has_changed(pr);
611#endif
612 acpi_processor_get_throttling_info(pr);
613 acpi_processor_get_limit_info(pr);
614
Patrick Mocheld550d982006-06-27 00:41:40 -0400615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400618static void *processor_device_array[NR_CPUS];
619
Pierre Ossman7af8b662006-10-10 14:20:31 -0700620static int __cpuinit acpi_processor_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Len Brown4be44fc2005-08-05 00:44:28 -0400622 int result = 0;
623 acpi_status status = AE_OK;
624 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 pr = acpi_driver_data(device);
628
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300629 result = acpi_processor_get_info(pr, device->flags.unique_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (result) {
631 /* Processor is physically not present */
Patrick Mocheld550d982006-06-27 00:41:40 -0400632 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
635 BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
636
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400637 /*
638 * Buggy BIOS check
639 * ACPI id of processors can be reported wrongly by the BIOS.
640 * Don't trust it blindly
641 */
642 if (processor_device_array[pr->id] != NULL &&
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200643 processor_device_array[pr->id] != device) {
Len Brown0eacee52006-03-31 00:37:23 -0500644 printk(KERN_WARNING "BIOS reported wrong ACPI id"
645 "for the processor\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400646 return -ENODEV;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400647 }
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200648 processor_device_array[pr->id] = device;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 processors[pr->id] = pr;
651
652 result = acpi_processor_add_fs(device);
653 if (result)
654 goto end;
655
656 status = acpi_install_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400657 acpi_processor_notify, pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400659 /* _PDC call should be done before doing anything else (if reqd.). */
660 arch_acpi_processor_init_pdc(pr);
661 acpi_processor_set_pdc(pr);
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 acpi_processor_power_init(pr, device);
664
665 if (pr->flags.throttling) {
666 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400667 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 printk(" %d throttling states", pr->throttling.state_count);
669 printk(")\n");
670 }
671
Len Brown4be44fc2005-08-05 00:44:28 -0400672 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Patrick Mocheld550d982006-06-27 00:41:40 -0400674 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Len Brown4be44fc2005-08-05 00:44:28 -0400677static void acpi_processor_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200679 struct acpi_processor *pr = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400680 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400684 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 if (acpi_bus_get_device(pr->handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400687 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 switch (event) {
690 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
691 acpi_processor_ppc_has_changed(pr);
692 acpi_bus_generate_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400693 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 break;
695 case ACPI_PROCESSOR_NOTIFY_POWER:
696 acpi_processor_cst_has_changed(pr);
697 acpi_bus_generate_event(device, event, 0);
698 break;
699 default:
700 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400701 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 break;
703 }
704
Patrick Mocheld550d982006-06-27 00:41:40 -0400705 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Len Brown4be44fc2005-08-05 00:44:28 -0400708static int acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Len Brown4be44fc2005-08-05 00:44:28 -0400710 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400714 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Burman Yan36bcbec2006-12-19 12:56:11 -0800716 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400718 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 pr->handle = device->handle;
721 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
722 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
723 acpi_driver_data(device) = pr;
724
Patrick Mocheld550d982006-06-27 00:41:40 -0400725 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Len Brown4be44fc2005-08-05 00:44:28 -0400728static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Len Brown4be44fc2005-08-05 00:44:28 -0400730 acpi_status status = AE_OK;
731 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400735 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200737 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 if (pr->id >= NR_CPUS) {
740 kfree(pr);
Patrick Mocheld550d982006-06-27 00:41:40 -0400741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743
744 if (type == ACPI_BUS_REMOVAL_EJECT) {
745 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400746 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
749 acpi_processor_power_exit(pr, device);
750
751 status = acpi_remove_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400752 acpi_processor_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 acpi_processor_remove_fs(device);
755
756 processors[pr->id] = NULL;
757
758 kfree(pr);
759
Patrick Mocheld550d982006-06-27 00:41:40 -0400760 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
763#ifdef CONFIG_ACPI_HOTPLUG_CPU
764/****************************************************************************
765 * Acpi processor hotplug support *
766 ****************************************************************************/
767
768static int is_processor_present(acpi_handle handle);
769
Len Brown4be44fc2005-08-05 00:44:28 -0400770static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Len Brown4be44fc2005-08-05 00:44:28 -0400772 acpi_status status;
773 unsigned long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Bjorn Helgaasa0bd4ac2007-04-25 14:17:39 -0400777 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_DEVICE_PRESENT)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400778 ACPI_EXCEPTION((AE_INFO, status, "Processor Device is not present"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400781 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784static
Len Brown4be44fc2005-08-05 00:44:28 -0400785int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Len Brown4be44fc2005-08-05 00:44:28 -0400787 acpi_handle phandle;
788 struct acpi_device *pdev;
789 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400793 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
796 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400797 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
800 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400801 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
Rajesh Shah3fb02732005-04-28 00:25:52 -0700804 acpi_bus_start(*device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 pr = acpi_driver_data(*device);
807 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400808 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Len Brown4be44fc2005-08-05 00:44:28 -0400810 if ((pr->id >= 0) && (pr->id < NR_CPUS)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800811 kobject_uevent(&(*device)->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816static void
Len Brown4be44fc2005-08-05 00:44:28 -0400817acpi_processor_hotplug_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Len Brown4be44fc2005-08-05 00:44:28 -0400819 struct acpi_processor *pr;
820 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 int result;
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 switch (event) {
825 case ACPI_NOTIFY_BUS_CHECK:
826 case ACPI_NOTIFY_DEVICE_CHECK:
827 printk("Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400828 (event == ACPI_NOTIFY_BUS_CHECK) ?
829 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 if (!is_processor_present(handle))
832 break;
833
834 if (acpi_bus_get_device(handle, &device)) {
835 result = acpi_processor_device_add(handle, &device);
836 if (result)
Len Brown64684632006-06-26 23:41:38 -0400837 printk(KERN_ERR PREFIX
838 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 break;
840 }
841
842 pr = acpi_driver_data(device);
843 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400844 printk(KERN_ERR PREFIX "Driver data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 break;
846 }
847
848 if (pr->id >= 0 && (pr->id < NR_CPUS)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800849 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 break;
851 }
852
853 result = acpi_processor_start(device);
Len Brown4be44fc2005-08-05 00:44:28 -0400854 if ((!result) && ((pr->id >= 0) && (pr->id < NR_CPUS))) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800855 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 } else {
Len Brown64684632006-06-26 23:41:38 -0400857 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
858 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
Len Brown4be44fc2005-08-05 00:44:28 -0400860 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400862 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
863 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400866 printk(KERN_ERR PREFIX
867 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 break;
869 }
870 pr = acpi_driver_data(device);
871 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400872 printk(KERN_ERR PREFIX
873 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400874 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
877 if ((pr->id < NR_CPUS) && (cpu_present(pr->id)))
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800878 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 break;
880 default:
881 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400882 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 break;
884 }
885
Patrick Mocheld550d982006-06-27 00:41:40 -0400886 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
889static acpi_status
890processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400891 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Len Brown4be44fc2005-08-05 00:44:28 -0400893 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400895 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 status = acpi_get_type(handle, &type);
898 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400899 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400902 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Len Brown4be44fc2005-08-05 00:44:28 -0400904 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 case INSTALL_NOTIFY_HANDLER:
906 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400907 ACPI_SYSTEM_NOTIFY,
908 acpi_processor_hotplug_notify,
909 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 break;
911 case UNINSTALL_NOTIFY_HANDLER:
912 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400913 ACPI_SYSTEM_NOTIFY,
914 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 break;
916 default:
917 break;
918 }
919
Len Brown4be44fc2005-08-05 00:44:28 -0400920 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
Len Brown4be44fc2005-08-05 00:44:28 -0400923static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400927 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929
930 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -0400931 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 if (arch_register_cpu(*p_cpu)) {
934 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -0400935 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
Patrick Mocheld550d982006-06-27 00:41:40 -0400938 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Len Brown4be44fc2005-08-05 00:44:28 -0400941static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 if (cpu_online(pr->id)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400944 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946 arch_unregister_cpu(pr->id);
947 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400948 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950#else
Len Brown4be44fc2005-08-05 00:44:28 -0400951static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
953 return AE_ERROR;
954}
Len Brown4be44fc2005-08-05 00:44:28 -0400955static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Len Brown4be44fc2005-08-05 00:44:28 -0400957 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959#endif
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961static
962void acpi_processor_install_hotplug_notify(void)
963{
964#ifdef CONFIG_ACPI_HOTPLUG_CPU
965 int action = INSTALL_NOTIFY_HANDLER;
966 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400967 ACPI_ROOT_OBJECT,
968 ACPI_UINT32_MAX,
969 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970#endif
971}
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973static
974void acpi_processor_uninstall_hotplug_notify(void)
975{
976#ifdef CONFIG_ACPI_HOTPLUG_CPU
977 int action = UNINSTALL_NOTIFY_HANDLER;
978 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400979 ACPI_ROOT_OBJECT,
980 ACPI_UINT32_MAX,
981 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982#endif
983}
984
985/*
986 * We keep the driver loaded even when ACPI is not running.
987 * This is needed for the powernow-k8 driver, that works even without
988 * ACPI, but needs symbols from this driver
989 */
990
Len Brown4be44fc2005-08-05 00:44:28 -0400991static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Len Brown4be44fc2005-08-05 00:44:28 -0400993 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 memset(&processors, 0, sizeof(processors));
997 memset(&errata, 0, sizeof(errata));
998
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300999#ifdef CONFIG_SMP
1000 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1001 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001002 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001003#endif
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1006 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001007 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 acpi_processor_dir->owner = THIS_MODULE;
1009
1010 result = acpi_bus_register_driver(&acpi_processor_driver);
1011 if (result < 0) {
1012 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Akinobu Mita83822fc2006-12-19 12:56:10 -08001013 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015
1016 acpi_processor_install_hotplug_notify();
1017
1018 acpi_thermal_cpufreq_init();
1019
1020 acpi_processor_ppc_init();
1021
Patrick Mocheld550d982006-06-27 00:41:40 -04001022 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Len Brown4be44fc2005-08-05 00:44:28 -04001025static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 acpi_processor_ppc_exit();
1029
1030 acpi_thermal_cpufreq_exit();
1031
1032 acpi_processor_uninstall_hotplug_notify();
1033
1034 acpi_bus_unregister_driver(&acpi_processor_driver);
1035
1036 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1037
Patrick Mocheld550d982006-06-27 00:41:40 -04001038 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041module_init(acpi_processor_init);
1042module_exit(acpi_processor_exit);
1043
1044EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1045
1046MODULE_ALIAS("processor");