blob: 7fe413cc7d9959122833285960a09947b6631066 [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>
Len Brown4f86d3a2007-10-03 18:58:00 -040047#include <linux/cpuidle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <asm/io.h>
50#include <asm/system.h>
51#include <asm/cpu.h>
52#include <asm/delay.h>
53#include <asm/uaccess.h>
54#include <asm/processor.h>
55#include <asm/smp.h>
56#include <asm/acpi.h>
57
58#include <acpi/acpi_bus.h>
59#include <acpi/acpi_drivers.h>
60#include <acpi/processor.h>
61
Len Browna192a952009-07-28 16:45:54 -040062#define PREFIX "ACPI: "
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
66#define ACPI_PROCESSOR_FILE_INFO "info"
67#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
68#define ACPI_PROCESSOR_FILE_LIMIT "limit"
69#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
70#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
Luming Yu01854e62007-05-26 22:49:58 +080071#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#define ACPI_PROCESSOR_LIMIT_USER 0
74#define ACPI_PROCESSOR_LIMIT_THERMAL 1
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050077ACPI_MODULE_NAME("processor_core");
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Len Brownf52fd662007-02-12 22:42:12 -050079MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050080MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081MODULE_LICENSE("GPL");
82
Len Brown4be44fc2005-08-05 00:44:28 -040083static int acpi_processor_add(struct acpi_device *device);
Len Brown4be44fc2005-08-05 00:44:28 -040084static int acpi_processor_remove(struct acpi_device *device, int type);
Zhao Yakui74cad4e2009-06-24 11:49:49 +080085#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Zhao Yakui74cad4e2009-06-24 11:49:49 +080087#endif
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +000088static void acpi_processor_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
90static int acpi_processor_handle_eject(struct acpi_processor *pr);
Luming Yu01854e62007-05-26 22:49:58 +080091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Thomas Renninger1ba90e32007-07-23 14:44:41 +020093static const struct acpi_device_id processor_device_ids[] = {
Myron Stowead93a762008-11-04 14:52:55 -070094 {ACPI_PROCESSOR_OBJECT_HID, 0},
Bjorn Helgaas9eccbc22009-04-27 16:33:46 -060095 {"ACPI0007", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020096 {"", 0},
97};
98MODULE_DEVICE_TABLE(acpi, processor_device_ids);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static struct acpi_driver acpi_processor_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -0500101 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -0400102 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200103 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400104 .ops = {
105 .add = acpi_processor_add,
106 .remove = acpi_processor_remove,
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000107 .suspend = acpi_processor_suspend,
108 .resume = acpi_processor_resume,
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000109 .notify = acpi_processor_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400110 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113#define INSTALL_NOTIFY_HANDLER 1
114#define UNINSTALL_NOTIFY_HANDLER 2
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800115#ifdef CONFIG_ACPI_PROCFS
Arjan van de Vend7508032006-07-04 13:06:00 -0400116static const struct file_operations acpi_processor_info_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700117 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400118 .open = acpi_processor_info_open_fs,
119 .read = seq_read,
120 .llseek = seq_lseek,
121 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Mike Travis706546d2008-06-09 16:22:23 -0700125DEFINE_PER_CPU(struct acpi_processor *, processors);
Naga Chumbalkar0f1d6832009-12-17 20:18:27 +0000126EXPORT_PER_CPU_SYMBOL(processors);
127
Andreas Mohr9f222712006-06-23 02:04:27 -0700128struct acpi_processor_errata errata __read_mostly;
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800129static int set_no_mwait(const struct dmi_system_id *id)
130{
131 printk(KERN_NOTICE PREFIX "%s detected - "
Pavel Machekd0057412008-08-12 12:24:34 +0200132 "disabling mwait for CPU C-states\n", id->ident);
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800133 idle_nomwait = 1;
134 return 0;
135}
136
137static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = {
138 {
139 set_no_mwait, "IFL91 board", {
140 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
141 DMI_MATCH(DMI_SYS_VENDOR, "ZEPTO"),
142 DMI_MATCH(DMI_PRODUCT_VERSION, "3215W"),
143 DMI_MATCH(DMI_BOARD_NAME, "IFL91") }, NULL},
144 {
145 set_no_mwait, "Extensa 5220", {
146 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
Dennis Jansen3df8a902008-08-15 01:28:57 +0200147 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800148 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
149 DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL},
150 {},
151};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/* --------------------------------------------------------------------------
154 Errata Handling
155 -------------------------------------------------------------------------- */
156
Len Brown4be44fc2005-08-05 00:44:28 -0400157static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Len Brown4be44fc2005-08-05 00:44:28 -0400159 u8 value1 = 0;
160 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400164 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /*
167 * Note that 'dev' references the PIIX4 ACPI Controller.
168 */
169
Auke Kok44c10132007-06-08 15:46:36 -0700170 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 case 0:
172 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
173 break;
174 case 1:
175 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
176 break;
177 case 2:
178 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
179 break;
180 case 3:
181 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
182 break;
183 default:
184 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
185 break;
186 }
187
Auke Kok44c10132007-06-08 15:46:36 -0700188 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 case 0: /* PIIX4 A-step */
191 case 1: /* PIIX4 B-step */
192 /*
193 * See specification changes #13 ("Manual Throttle Duty Cycle")
194 * and #14 ("Enabling and Disabling Manual Throttle"), plus
195 * erratum #5 ("STPCLK# Deassertion Time") from the January
196 * 2002 PIIX4 specification update. Applies to only older
197 * PIIX4 models.
198 */
199 errata.piix4.throttle = 1;
200
201 case 2: /* PIIX4E */
202 case 3: /* PIIX4M */
203 /*
204 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
205 * Livelock") from the January 2002 PIIX4 specification update.
206 * Applies to all PIIX4 models.
207 */
208
209 /*
210 * BM-IDE
211 * ------
212 * Find the PIIX4 IDE Controller and get the Bus Master IDE
213 * Status register address. We'll use this later to read
214 * each IDE controller's DMA status to make sure we catch all
215 * DMA activity.
216 */
217 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400218 PCI_DEVICE_ID_INTEL_82371AB,
219 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (dev) {
221 errata.piix4.bmisx = pci_resource_start(dev, 4);
222 pci_dev_put(dev);
223 }
224
225 /*
226 * Type-F DMA
227 * ----------
228 * Find the PIIX4 ISA Controller and read the Motherboard
229 * DMA controller's status to see if Type-F (Fast) DMA mode
230 * is enabled (bit 7) on either channel. Note that we'll
231 * disable C3 support if this is enabled, as some legacy
232 * devices won't operate well if fast DMA is disabled.
233 */
234 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400235 PCI_DEVICE_ID_INTEL_82371AB_0,
236 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (dev) {
238 pci_read_config_byte(dev, 0x76, &value1);
239 pci_read_config_byte(dev, 0x77, &value2);
240 if ((value1 & 0x80) || (value2 & 0x80))
241 errata.piix4.fdma = 1;
242 pci_dev_put(dev);
243 }
244
245 break;
246 }
247
248 if (errata.piix4.bmisx)
249 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400250 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (errata.piix4.fdma)
252 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400253 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Patrick Mocheld550d982006-06-27 00:41:40 -0400255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400258static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Len Brown4be44fc2005-08-05 00:44:28 -0400260 int result = 0;
261 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400265 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /*
268 * PIIX4
269 */
270 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400271 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
272 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (dev) {
274 result = acpi_processor_errata_piix4(dev);
275 pci_dev_put(dev);
276 }
277
Patrick Mocheld550d982006-06-27 00:41:40 -0400278 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800282 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400283 -------------------------------------------------------------------------- */
284
285/*
286 * _PDC is required for a BIOS-OS handshake for most of the newer
287 * ACPI processor features.
288 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400289static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400290{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400291 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400292 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400293
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400294
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400295 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400296 return status;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800297 if (idle_nomwait) {
298 /*
299 * If mwait is disabled for CPU C-states, the C2C3_FFH access
300 * mode will be disabled in the parameter of _PDC object.
301 * Of course C1_FFH access mode will also be disabled.
302 */
303 union acpi_object *obj;
304 u32 *buffer = NULL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400305
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800306 obj = pdc_in->pointer;
307 buffer = (u32 *)(obj->buffer.pointer);
308 buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH);
309
310 }
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400311 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400312
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400313 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400314 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400315 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400316
Patrick Mocheld550d982006-06-27 00:41:40 -0400317 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400318}
319
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400320/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 FS Interface (/proc)
322 -------------------------------------------------------------------------- */
323
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800324#ifdef CONFIG_ACPI_PROCFS
Len Brown4be44fc2005-08-05 00:44:28 -0400325static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
328{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200329 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 if (!pr)
333 goto end;
334
335 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400336 "acpi id: %d\n"
337 "bus mastering control: %s\n"
338 "power management: %s\n"
339 "throttling control: %s\n"
340 "limit interface: %s\n",
341 pr->id,
342 pr->acpi_id,
343 pr->flags.bm_control ? "yes" : "no",
344 pr->flags.power ? "yes" : "no",
345 pr->flags.throttling ? "yes" : "no",
346 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Len Brown4be44fc2005-08-05 00:44:28 -0400348 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
353{
354 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400355 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
Thomas Renningerbf8b4542009-10-26 17:44:18 +0100358static int __cpuinit acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Len Brown4be44fc2005-08-05 00:44:28 -0400360 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 if (!acpi_device_dir(device)) {
364 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400365 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400367 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700371 entry = proc_create_data(ACPI_PROCESSOR_FILE_INFO,
372 S_IRUGO, acpi_device_dir(device),
373 &acpi_processor_info_fops,
374 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400376 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 /* 'throttling' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700379 entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING,
380 S_IFREG | S_IRUGO | S_IWUSR,
381 acpi_device_dir(device),
382 &acpi_processor_throttling_fops,
383 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400385 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /* 'limit' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700388 entry = proc_create_data(ACPI_PROCESSOR_FILE_LIMIT,
389 S_IFREG | S_IRUGO | S_IWUSR,
390 acpi_device_dir(device),
391 &acpi_processor_limit_fops,
392 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400394 return -EIO;
Patrick Mocheld550d982006-06-27 00:41:40 -0400395 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
Len Brown4be44fc2005-08-05 00:44:28 -0400397static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400401 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
402 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400404 acpi_device_dir(device));
405 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
406 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
408 acpi_device_dir(device) = NULL;
409 }
410
Patrick Mocheld550d982006-06-27 00:41:40 -0400411 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800413#else
414static inline int acpi_processor_add_fs(struct acpi_device *device)
415{
416 return 0;
417}
418static inline int acpi_processor_remove_fs(struct acpi_device *device)
419{
420 return 0;
421}
422#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#ifndef CONFIG_SMP
Myron Stoweb26e9282008-11-04 14:53:00 -0700427static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id) { return -1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#else
429
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300430static struct acpi_table_madt *madt;
431
432static int map_lapic_id(struct acpi_subtable_header *entry,
433 u32 acpi_id, int *apic_id)
434{
435 struct acpi_madt_local_apic *lapic =
436 (struct acpi_madt_local_apic *)entry;
437 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
438 lapic->processor_id == acpi_id) {
439 *apic_id = lapic->id;
440 return 1;
441 }
442 return 0;
443}
444
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800445static int map_x2apic_id(struct acpi_subtable_header *entry,
446 int device_declaration, u32 acpi_id, int *apic_id)
447{
448 struct acpi_madt_local_x2apic *apic =
449 (struct acpi_madt_local_x2apic *)entry;
450 u32 tmp = apic->local_apic_id;
451
452 /* Only check enabled APICs*/
453 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
454 return 0;
455
456 /* Device statement declaration type */
457 if (device_declaration) {
458 if (apic->uid == acpi_id)
459 goto found;
460 }
461
462 return 0;
463found:
464 *apic_id = tmp;
465 return 1;
466}
467
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300468static int map_lsapic_id(struct acpi_subtable_header *entry,
Myron Stoweb26e9282008-11-04 14:53:00 -0700469 int device_declaration, u32 acpi_id, int *apic_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300470{
471 struct acpi_madt_local_sapic *lsapic =
472 (struct acpi_madt_local_sapic *)entry;
Myron Stoweb26e9282008-11-04 14:53:00 -0700473 u32 tmp = (lsapic->id << 8) | lsapic->eid;
474
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300475 /* Only check enabled APICs*/
Myron Stoweb26e9282008-11-04 14:53:00 -0700476 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
477 return 0;
478
479 /* Device statement declaration type */
480 if (device_declaration) {
481 if (entry->length < 16)
482 printk(KERN_ERR PREFIX
483 "Invalid LSAPIC with Device type processor (SAPIC ID %#x)\n",
484 tmp);
485 else if (lsapic->uid == acpi_id)
486 goto found;
487 /* Processor statement declaration type */
488 } else if (lsapic->processor_id == acpi_id)
489 goto found;
490
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300491 return 0;
Myron Stoweb26e9282008-11-04 14:53:00 -0700492found:
493 *apic_id = tmp;
494 return 1;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300495}
496
Myron Stoweb26e9282008-11-04 14:53:00 -0700497static int map_madt_entry(int type, u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300499 unsigned long madt_end, entry;
500 int apic_id = -1;
501
502 if (!madt)
503 return apic_id;
504
505 entry = (unsigned long)madt;
506 madt_end = entry + madt->header.length;
507
508 /* Parse all entries looking for a match. */
509
510 entry += sizeof(struct acpi_table_madt);
511 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
512 struct acpi_subtable_header *header =
513 (struct acpi_subtable_header *)entry;
514 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
515 if (map_lapic_id(header, acpi_id, &apic_id))
516 break;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800517 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
518 if (map_x2apic_id(header, type, acpi_id, &apic_id))
519 break;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300520 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700521 if (map_lsapic_id(header, type, acpi_id, &apic_id))
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300522 break;
523 }
524 entry += header->length;
525 }
526 return apic_id;
527}
528
Myron Stoweb26e9282008-11-04 14:53:00 -0700529static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300530{
531 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
532 union acpi_object *obj;
533 struct acpi_subtable_header *header;
534 int apic_id = -1;
535
536 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
537 goto exit;
538
539 if (!buffer.length || !buffer.pointer)
540 goto exit;
541
542 obj = buffer.pointer;
543 if (obj->type != ACPI_TYPE_BUFFER ||
544 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
545 goto exit;
546 }
547
548 header = (struct acpi_subtable_header *)obj->buffer.pointer;
549 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
550 map_lapic_id(header, acpi_id, &apic_id);
551 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700552 map_lsapic_id(header, type, acpi_id, &apic_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300553 }
554
555exit:
556 if (buffer.pointer)
557 kfree(buffer.pointer);
558 return apic_id;
559}
560
Myron Stoweb26e9282008-11-04 14:53:00 -0700561static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300562{
Len Brown4a35a462005-09-03 12:40:06 -0400563 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300564 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Myron Stoweb26e9282008-11-04 14:53:00 -0700566 apic_id = map_mat_entry(handle, type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300567 if (apic_id == -1)
Myron Stoweb26e9282008-11-04 14:53:00 -0700568 apic_id = map_madt_entry(type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300569 if (apic_id == -1)
570 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800572 for_each_possible_cpu(i) {
Mike Travis71b31232007-10-19 20:35:03 +0200573 if (cpu_physical_id(i) == apic_id)
Len Brown4a35a462005-09-03 12:40:06 -0400574 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 return -1;
577}
578#endif
579
580/* --------------------------------------------------------------------------
581 Driver Interface
582 -------------------------------------------------------------------------- */
583
Myron Stoweb26e9282008-11-04 14:53:00 -0700584static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Len Brown4be44fc2005-08-05 00:44:28 -0400586 acpi_status status = 0;
587 union acpi_object object = { 0 };
588 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700589 struct acpi_processor *pr;
590 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400591 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Myron Stoweb26e9282008-11-04 14:53:00 -0700593 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400595 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 if (num_online_cpus() > 1)
598 errata.smp = TRUE;
599
600 acpi_processor_errata(pr);
601
602 /*
603 * Check to see if we have bus mastering arbitration control. This
604 * is required for proper C3 usage (to maintain cache coherency).
605 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300606 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 pr->flags.bm_control = 1;
608 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400609 "Bus mastering arbitration control present\n"));
610 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400612 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600614 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
615 /* Declared with "Processor" statement; match ProcessorID */
616 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
617 if (ACPI_FAILURE(status)) {
618 printk(KERN_ERR PREFIX "Evaluating processor object\n");
619 return -ENODEV;
620 }
621
622 /*
623 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
624 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
625 * arch/xxx/acpi.c
626 */
627 pr->acpi_id = object.processor.proc_id;
628 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700629 /*
630 * Declared with "Device" statement; match _UID.
631 * Note that we don't handle string _UIDs yet.
632 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400633 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300634 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
635 NULL, &value);
636 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700637 printk(KERN_ERR PREFIX
638 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300639 return -ENODEV;
640 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700641 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300642 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700644 cpu_index = get_cpu_id(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Len Brown4be44fc2005-08-05 00:44:28 -0400646 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500647 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400648 (num_online_cpus() == 1)) {
649 cpu_index = 0;
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Len Brown4be44fc2005-08-05 00:44:28 -0400652 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Len Brown4be44fc2005-08-05 00:44:28 -0400654 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Len Brown4be44fc2005-08-05 00:44:28 -0400656 /*
657 * Extra Processor objects may be enumerated on MP systems with
658 * less than the max # of CPUs. They should be ignored _iff
659 * they are physically not present.
660 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300661 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400662 if (ACPI_FAILURE
663 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400664 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400665 }
666 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800667 /*
668 * On some boxes several processors use the same processor bus id.
669 * But they are located in different scope. For example:
670 * \_SB.SCK0.CPU0
671 * \_SB.SCK1.CPU0
672 * Rename the processor device bus id. And the new bus id will be
673 * generated as the following format:
674 * CPU+CPU ID.
675 */
676 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400678 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 if (!object.processor.pblk_address)
681 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
682 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400683 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
684 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 else {
686 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300687 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
688 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 pr->pblk = object.processor.pblk_address;
691
692 /*
693 * We don't care about error returns - we just try to mark
694 * these reserved so that nobody else is confused into thinking
695 * that this region might be unused..
696 *
697 * (In particular, allocating the IO range for Cardbus)
698 */
699 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
700 }
701
Alex Chiangfe086a72008-04-29 15:05:29 -0700702 /*
703 * If ACPI describes a slot number for this CPU, we can use it
704 * ensure we get the right value in the "physical id" field
705 * of /proc/cpuinfo
706 */
707 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
708 if (ACPI_SUCCESS(status))
709 arch_fix_phys_package_id(pr->id, object.integer.value);
710
Patrick Mocheld550d982006-06-27 00:41:40 -0400711 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Mike Travis706546d2008-06-09 16:22:23 -0700714static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400715
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000716static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000718 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300719 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400722 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 switch (event) {
725 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300726 saved = pr->performance_platform_limit;
Zhao Yakuid81c45e2009-10-16 09:20:41 +0800727 acpi_processor_ppc_has_changed(pr, 1);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300728 if (saved == pr->performance_platform_limit)
729 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400730 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400731 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800732 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100733 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800734 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 break;
736 case ACPI_PROCESSOR_NOTIFY_POWER:
737 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400738 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800739 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100740 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 break;
Luming Yu01854e62007-05-26 22:49:58 +0800742 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
743 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400744 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800745 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100746 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 default:
748 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400749 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 break;
751 }
752
Patrick Mocheld550d982006-06-27 00:41:40 -0400753 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200756static int acpi_cpu_soft_notify(struct notifier_block *nfb,
757 unsigned long action, void *hcpu)
758{
759 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700760 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200761
762 if (action == CPU_ONLINE && pr) {
Zhao Yakuid81c45e2009-10-16 09:20:41 +0800763 acpi_processor_ppc_has_changed(pr, 0);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200764 acpi_processor_cst_has_changed(pr);
765 acpi_processor_tstate_has_changed(pr);
766 }
767 return NOTIFY_OK;
768}
769
770static struct notifier_block acpi_cpu_notifier =
771{
772 .notifier_call = acpi_cpu_soft_notify,
773};
774
Rakib Mullick941b10f2009-11-05 16:51:40 -0500775static int __cpuinit acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Len Brown4be44fc2005-08-05 00:44:28 -0400777 struct acpi_processor *pr = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000778 int result = 0;
779 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Burman Yan36bcbec2006-12-19 12:56:11 -0800781 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400783 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Yinghai Lueaa95842009-06-06 14:51:36 -0700785 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800786 kfree(pr);
787 return -ENOMEM;
788 }
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 pr->handle = device->handle;
791 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
792 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700793 device->driver_data = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 result = acpi_processor_get_info(device);
796 if (result) {
797 /* Processor is physically not present */
798 return 0;
799 }
800
801 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
802
803 /*
804 * Buggy BIOS check
805 * ACPI id of processors can be reported wrongly by the BIOS.
806 * Don't trust it blindly
807 */
808 if (per_cpu(processor_device_array, pr->id) != NULL &&
809 per_cpu(processor_device_array, pr->id) != device) {
810 printk(KERN_WARNING "BIOS reported wrong ACPI id "
811 "for the processor\n");
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000812 result = -ENODEV;
813 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815 per_cpu(processor_device_array, pr->id) = device;
816
817 per_cpu(processors, pr->id) = pr;
818
819 result = acpi_processor_add_fs(device);
820 if (result)
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000821 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 sysdev = get_cpu_sysdev(pr->id);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000824 if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev")) {
825 result = -EFAULT;
826 goto err_remove_fs;
827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 /* _PDC call should be done before doing anything else (if reqd.). */
830 arch_acpi_processor_init_pdc(pr);
831 acpi_processor_set_pdc(pr);
832 arch_acpi_processor_cleanup_pdc(pr);
833
834#ifdef CONFIG_CPU_FREQ
Zhao Yakuid81c45e2009-10-16 09:20:41 +0800835 acpi_processor_ppc_has_changed(pr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836#endif
837 acpi_processor_get_throttling_info(pr);
838 acpi_processor_get_limit_info(pr);
839
840
841 acpi_processor_power_init(pr, device);
842
843 pr->cdev = thermal_cooling_device_register("Processor", device,
844 &processor_cooling_ops);
845 if (IS_ERR(pr->cdev)) {
846 result = PTR_ERR(pr->cdev);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000847 goto err_power_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
Mike Travis13c41152009-12-14 13:38:30 -0800850 dev_dbg(&device->dev, "registered as cooling_device%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 pr->cdev->id);
852
853 result = sysfs_create_link(&device->dev.kobj,
854 &pr->cdev->device.kobj,
855 "thermal_cooling");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000856 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000858 goto err_thermal_unregister;
859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 result = sysfs_create_link(&pr->cdev->device.kobj,
861 &device->dev.kobj,
862 "device");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000863 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000865 goto err_remove_sysfs;
866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Patrick Mocheld550d982006-06-27 00:41:40 -0400868 return 0;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000869
870err_remove_sysfs:
871 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
872err_thermal_unregister:
873 thermal_cooling_device_unregister(pr->cdev);
874err_power_exit:
875 acpi_processor_power_exit(pr, device);
876err_remove_fs:
877 acpi_processor_remove_fs(device);
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000878err_free_cpumask:
879 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
Len Brown4be44fc2005-08-05 00:44:28 -0400884static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Len Brown4be44fc2005-08-05 00:44:28 -0400886 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400890 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200892 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800894 if (pr->id >= nr_cpu_ids)
895 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (type == ACPI_BUS_REMOVAL_EJECT) {
898 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400899 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
902 acpi_processor_power_exit(pr, device);
903
Zhang Rui9f1eb992008-04-29 02:36:07 -0400904 sysfs_remove_link(&device->dev.kobj, "sysdev");
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 acpi_processor_remove_fs(device);
907
Zhao Yakuif28bb452008-02-15 08:34:37 +0800908 if (pr->cdev) {
909 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
910 sysfs_remove_link(&pr->cdev->device.kobj, "device");
911 thermal_cooling_device_unregister(pr->cdev);
912 pr->cdev = NULL;
913 }
Zhang Ruid9460fd22008-01-17 15:51:23 +0800914
Mike Travis706546d2008-06-09 16:22:23 -0700915 per_cpu(processors, pr->id) = NULL;
916 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800917
918free:
919 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 kfree(pr);
921
Patrick Mocheld550d982006-06-27 00:41:40 -0400922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
925#ifdef CONFIG_ACPI_HOTPLUG_CPU
926/****************************************************************************
927 * Acpi processor hotplug support *
928 ****************************************************************************/
929
Len Brown4be44fc2005-08-05 00:44:28 -0400930static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Len Brown4be44fc2005-08-05 00:44:28 -0400932 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400933 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500937
938 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
939 return 1;
940
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500941 /*
942 * _STA is mandatory for a processor that supports hot plug
943 */
944 if (status == AE_NOT_FOUND)
945 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
946 "Processor does not support hot plug\n"));
947 else
948 ACPI_EXCEPTION((AE_INFO, status,
949 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500950 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953static
Len Brown4be44fc2005-08-05 00:44:28 -0400954int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Len Brown4be44fc2005-08-05 00:44:28 -0400956 acpi_handle phandle;
957 struct acpi_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400961 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963
964 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400965 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967
968 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400969 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
971
Patrick Mocheld550d982006-06-27 00:41:40 -0400972 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Sam Ravnborgb95e9e82008-02-17 13:22:48 +0100975static void __ref acpi_processor_hotplug_notify(acpi_handle handle,
976 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Len Brown4be44fc2005-08-05 00:44:28 -0400978 struct acpi_processor *pr;
979 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 int result;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 switch (event) {
984 case ACPI_NOTIFY_BUS_CHECK:
985 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800986 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
987 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400988 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800989 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 if (!is_processor_present(handle))
992 break;
993
994 if (acpi_bus_get_device(handle, &device)) {
995 result = acpi_processor_device_add(handle, &device);
996 if (result)
Len Brown64684632006-06-26 23:41:38 -0400997 printk(KERN_ERR PREFIX
998 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 break;
1000 }
Len Brown4be44fc2005-08-05 00:44:28 -04001001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -04001003 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1004 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -04001007 printk(KERN_ERR PREFIX
1008 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 break;
1010 }
1011 pr = acpi_driver_data(device);
1012 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -04001013 printk(KERN_ERR PREFIX
1014 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001015 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 break;
1018 default:
1019 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001020 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 break;
1022 }
1023
Patrick Mocheld550d982006-06-27 00:41:40 -04001024 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027static acpi_status
1028processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001029 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Len Brown4be44fc2005-08-05 00:44:28 -04001031 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -04001033 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 status = acpi_get_type(handle, &type);
1036 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -04001037 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -04001040 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Len Brown4be44fc2005-08-05 00:44:28 -04001042 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 case INSTALL_NOTIFY_HANDLER:
1044 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001045 ACPI_SYSTEM_NOTIFY,
1046 acpi_processor_hotplug_notify,
1047 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 break;
1049 case UNINSTALL_NOTIFY_HANDLER:
1050 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001051 ACPI_SYSTEM_NOTIFY,
1052 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 break;
1054 default:
1055 break;
1056 }
1057
Len Brown4be44fc2005-08-05 00:44:28 -04001058 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
Len Brown4be44fc2005-08-05 00:44:28 -04001061static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -04001065 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 }
1067
1068 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -04001069 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 if (arch_register_cpu(*p_cpu)) {
1072 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -04001073 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075
Patrick Mocheld550d982006-06-27 00:41:40 -04001076 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
Len Brown4be44fc2005-08-05 00:44:28 -04001079static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Zhang Ruib62b8ef2008-04-29 02:35:56 -04001081 if (cpu_online(pr->id))
1082 cpu_down(pr->id);
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 arch_unregister_cpu(pr->id);
1085 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -04001086 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088#else
Len Brown4be44fc2005-08-05 00:44:28 -04001089static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
1091 return AE_ERROR;
1092}
Len Brown4be44fc2005-08-05 00:44:28 -04001093static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Len Brown4be44fc2005-08-05 00:44:28 -04001095 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097#endif
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099static
1100void acpi_processor_install_hotplug_notify(void)
1101{
1102#ifdef CONFIG_ACPI_HOTPLUG_CPU
1103 int action = INSTALL_NOTIFY_HANDLER;
1104 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001105 ACPI_ROOT_OBJECT,
1106 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +08001107 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001109 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112static
1113void acpi_processor_uninstall_hotplug_notify(void)
1114{
1115#ifdef CONFIG_ACPI_HOTPLUG_CPU
1116 int action = UNINSTALL_NOTIFY_HANDLER;
1117 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001118 ACPI_ROOT_OBJECT,
1119 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +08001120 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001122 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
1125/*
1126 * We keep the driver loaded even when ACPI is not running.
1127 * This is needed for the powernow-k8 driver, that works even without
1128 * ACPI, but needs symbols from this driver
1129 */
1130
Len Brown4be44fc2005-08-05 00:44:28 -04001131static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Len Brown4be44fc2005-08-05 00:44:28 -04001133 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Yinghai Luce8442b2009-08-26 14:29:26 -07001135 if (acpi_disabled)
1136 return 0;
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 memset(&errata, 0, sizeof(errata));
1139
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001140#ifdef CONFIG_SMP
1141 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1142 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001143 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001144#endif
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001145#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1147 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001148 return -ENOMEM;
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001149#endif
Zhao Yakui2a2a6472008-06-24 18:02:57 +08001150 /*
1151 * Check whether the system is DMI table. If yes, OSPM
1152 * should not use mwait for CPU-states.
1153 */
1154 dmi_check_system(processor_idle_dmi_table);
Len Brown4f86d3a2007-10-03 18:58:00 -04001155 result = cpuidle_register_driver(&acpi_idle_driver);
1156 if (result < 0)
1157 goto out_proc;
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -04001160 if (result < 0)
1161 goto out_cpuidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 acpi_processor_install_hotplug_notify();
1164
1165 acpi_thermal_cpufreq_init();
1166
1167 acpi_processor_ppc_init();
1168
Zhao Yakui11805092008-01-28 13:53:42 +08001169 acpi_processor_throttling_init();
1170
Patrick Mocheld550d982006-06-27 00:41:40 -04001171 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -04001172
1173out_cpuidle:
1174 cpuidle_unregister_driver(&acpi_idle_driver);
1175
1176out_proc:
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001177#ifdef CONFIG_ACPI_PROCFS
Len Brown4f86d3a2007-10-03 18:58:00 -04001178 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001179#endif
Len Brown4f86d3a2007-10-03 18:58:00 -04001180
1181 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
Len Brown4be44fc2005-08-05 00:44:28 -04001184static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Yinghai Luce8442b2009-08-26 14:29:26 -07001186 if (acpi_disabled)
1187 return;
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 acpi_processor_ppc_exit();
1190
1191 acpi_thermal_cpufreq_exit();
1192
1193 acpi_processor_uninstall_hotplug_notify();
1194
1195 acpi_bus_unregister_driver(&acpi_processor_driver);
1196
Len Brown4f86d3a2007-10-03 18:58:00 -04001197 cpuidle_unregister_driver(&acpi_idle_driver);
1198
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001199#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Patrick Mocheld550d982006-06-27 00:41:40 -04001203 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206module_init(acpi_processor_init);
1207module_exit(acpi_processor_exit);
1208
1209EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1210
1211MODULE_ALIAS("processor");