blob: a496a863edea6c089efdbdcb0658f0f35e115c2d [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#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
Luming Yu01854e62007-05-26 22:49:58 +080069#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#define ACPI_PROCESSOR_LIMIT_USER 0
72#define ACPI_PROCESSOR_LIMIT_THERMAL 1
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050075ACPI_MODULE_NAME("processor_core");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Len Brownf52fd662007-02-12 22:42:12 -050077MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050078MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_LICENSE("GPL");
80
Len Brown4be44fc2005-08-05 00:44:28 -040081static int acpi_processor_add(struct acpi_device *device);
82static int acpi_processor_start(struct acpi_device *device);
83static int acpi_processor_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +000085static void acpi_processor_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
87static int acpi_processor_handle_eject(struct acpi_processor *pr);
Luming Yu01854e62007-05-26 22:49:58 +080088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Thomas Renninger1ba90e32007-07-23 14:44:41 +020090static const struct acpi_device_id processor_device_ids[] = {
Myron Stowead93a762008-11-04 14:52:55 -070091 {ACPI_PROCESSOR_OBJECT_HID, 0},
Bjorn Helgaas9eccbc22009-04-27 16:33:46 -060092 {"ACPI0007", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020093 {"", 0},
94};
95MODULE_DEVICE_TABLE(acpi, processor_device_ids);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static struct acpi_driver acpi_processor_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -050098 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -040099 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200100 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400101 .ops = {
102 .add = acpi_processor_add,
103 .remove = acpi_processor_remove,
104 .start = acpi_processor_start,
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000105 .suspend = acpi_processor_suspend,
106 .resume = acpi_processor_resume,
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000107 .notify = acpi_processor_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400108 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
111#define INSTALL_NOTIFY_HANDLER 1
112#define UNINSTALL_NOTIFY_HANDLER 2
113
Arjan van de Vend7508032006-07-04 13:06:00 -0400114static const struct file_operations acpi_processor_info_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700115 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400116 .open = acpi_processor_info_open_fs,
117 .read = seq_read,
118 .llseek = seq_lseek,
119 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Mike Travis706546d2008-06-09 16:22:23 -0700122DEFINE_PER_CPU(struct acpi_processor *, processors);
Andreas Mohr9f222712006-06-23 02:04:27 -0700123struct acpi_processor_errata errata __read_mostly;
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800124static int set_no_mwait(const struct dmi_system_id *id)
125{
126 printk(KERN_NOTICE PREFIX "%s detected - "
Pavel Machekd0057412008-08-12 12:24:34 +0200127 "disabling mwait for CPU C-states\n", id->ident);
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800128 idle_nomwait = 1;
129 return 0;
130}
131
132static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = {
133 {
134 set_no_mwait, "IFL91 board", {
135 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
136 DMI_MATCH(DMI_SYS_VENDOR, "ZEPTO"),
137 DMI_MATCH(DMI_PRODUCT_VERSION, "3215W"),
138 DMI_MATCH(DMI_BOARD_NAME, "IFL91") }, NULL},
139 {
140 set_no_mwait, "Extensa 5220", {
141 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
Dennis Jansen3df8a902008-08-15 01:28:57 +0200142 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800143 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
144 DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL},
145 {},
146};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/* --------------------------------------------------------------------------
149 Errata Handling
150 -------------------------------------------------------------------------- */
151
Len Brown4be44fc2005-08-05 00:44:28 -0400152static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Len Brown4be44fc2005-08-05 00:44:28 -0400154 u8 value1 = 0;
155 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400159 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /*
162 * Note that 'dev' references the PIIX4 ACPI Controller.
163 */
164
Auke Kok44c10132007-06-08 15:46:36 -0700165 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 case 0:
167 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
168 break;
169 case 1:
170 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
171 break;
172 case 2:
173 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
174 break;
175 case 3:
176 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
177 break;
178 default:
179 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
180 break;
181 }
182
Auke Kok44c10132007-06-08 15:46:36 -0700183 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 case 0: /* PIIX4 A-step */
186 case 1: /* PIIX4 B-step */
187 /*
188 * See specification changes #13 ("Manual Throttle Duty Cycle")
189 * and #14 ("Enabling and Disabling Manual Throttle"), plus
190 * erratum #5 ("STPCLK# Deassertion Time") from the January
191 * 2002 PIIX4 specification update. Applies to only older
192 * PIIX4 models.
193 */
194 errata.piix4.throttle = 1;
195
196 case 2: /* PIIX4E */
197 case 3: /* PIIX4M */
198 /*
199 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
200 * Livelock") from the January 2002 PIIX4 specification update.
201 * Applies to all PIIX4 models.
202 */
203
204 /*
205 * BM-IDE
206 * ------
207 * Find the PIIX4 IDE Controller and get the Bus Master IDE
208 * Status register address. We'll use this later to read
209 * each IDE controller's DMA status to make sure we catch all
210 * DMA activity.
211 */
212 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400213 PCI_DEVICE_ID_INTEL_82371AB,
214 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (dev) {
216 errata.piix4.bmisx = pci_resource_start(dev, 4);
217 pci_dev_put(dev);
218 }
219
220 /*
221 * Type-F DMA
222 * ----------
223 * Find the PIIX4 ISA Controller and read the Motherboard
224 * DMA controller's status to see if Type-F (Fast) DMA mode
225 * is enabled (bit 7) on either channel. Note that we'll
226 * disable C3 support if this is enabled, as some legacy
227 * devices won't operate well if fast DMA is disabled.
228 */
229 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400230 PCI_DEVICE_ID_INTEL_82371AB_0,
231 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (dev) {
233 pci_read_config_byte(dev, 0x76, &value1);
234 pci_read_config_byte(dev, 0x77, &value2);
235 if ((value1 & 0x80) || (value2 & 0x80))
236 errata.piix4.fdma = 1;
237 pci_dev_put(dev);
238 }
239
240 break;
241 }
242
243 if (errata.piix4.bmisx)
244 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400245 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (errata.piix4.fdma)
247 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400248 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Patrick Mocheld550d982006-06-27 00:41:40 -0400250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400253static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Len Brown4be44fc2005-08-05 00:44:28 -0400255 int result = 0;
256 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400260 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /*
263 * PIIX4
264 */
265 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400266 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
267 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (dev) {
269 result = acpi_processor_errata_piix4(dev);
270 pci_dev_put(dev);
271 }
272
Patrick Mocheld550d982006-06-27 00:41:40 -0400273 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800277 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400278 -------------------------------------------------------------------------- */
279
280/*
281 * _PDC is required for a BIOS-OS handshake for most of the newer
282 * ACPI processor features.
283 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400284static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400285{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400286 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400287 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400288
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400289
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400290 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400291 return status;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800292 if (idle_nomwait) {
293 /*
294 * If mwait is disabled for CPU C-states, the C2C3_FFH access
295 * mode will be disabled in the parameter of _PDC object.
296 * Of course C1_FFH access mode will also be disabled.
297 */
298 union acpi_object *obj;
299 u32 *buffer = NULL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400300
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800301 obj = pdc_in->pointer;
302 buffer = (u32 *)(obj->buffer.pointer);
303 buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH);
304
305 }
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400306 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400307
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400308 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400309 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400310 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400311
Patrick Mocheld550d982006-06-27 00:41:40 -0400312 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400313}
314
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400315/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 FS Interface (/proc)
317 -------------------------------------------------------------------------- */
318
Len Brown4be44fc2005-08-05 00:44:28 -0400319static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
322{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200323 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (!pr)
327 goto end;
328
329 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400330 "acpi id: %d\n"
331 "bus mastering control: %s\n"
332 "power management: %s\n"
333 "throttling control: %s\n"
334 "limit interface: %s\n",
335 pr->id,
336 pr->acpi_id,
337 pr->flags.bm_control ? "yes" : "no",
338 pr->flags.power ? "yes" : "no",
339 pr->flags.throttling ? "yes" : "no",
340 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Len Brown4be44fc2005-08-05 00:44:28 -0400342 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400343 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
347{
348 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400349 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Len Brown4be44fc2005-08-05 00:44:28 -0400352static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Len Brown4be44fc2005-08-05 00:44:28 -0400354 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (!acpi_device_dir(device)) {
358 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400359 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400361 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700365 entry = proc_create_data(ACPI_PROCESSOR_FILE_INFO,
366 S_IRUGO, acpi_device_dir(device),
367 &acpi_processor_info_fops,
368 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400370 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 /* 'throttling' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700373 entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING,
374 S_IFREG | S_IRUGO | S_IWUSR,
375 acpi_device_dir(device),
376 &acpi_processor_throttling_fops,
377 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400379 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /* 'limit' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700382 entry = proc_create_data(ACPI_PROCESSOR_FILE_LIMIT,
383 S_IFREG | S_IRUGO | S_IWUSR,
384 acpi_device_dir(device),
385 &acpi_processor_limit_fops,
386 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400388 return -EIO;
Patrick Mocheld550d982006-06-27 00:41:40 -0400389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
Len Brown4be44fc2005-08-05 00:44:28 -0400392static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400396 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
397 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400399 acpi_device_dir(device));
400 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
401 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
403 acpi_device_dir(device) = NULL;
404 }
405
Patrick Mocheld550d982006-06-27 00:41:40 -0400406 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
409/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#ifndef CONFIG_SMP
Myron Stoweb26e9282008-11-04 14:53:00 -0700412static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id) { return -1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#else
414
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300415static struct acpi_table_madt *madt;
416
417static int map_lapic_id(struct acpi_subtable_header *entry,
418 u32 acpi_id, int *apic_id)
419{
420 struct acpi_madt_local_apic *lapic =
421 (struct acpi_madt_local_apic *)entry;
422 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
423 lapic->processor_id == acpi_id) {
424 *apic_id = lapic->id;
425 return 1;
426 }
427 return 0;
428}
429
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800430static int map_x2apic_id(struct acpi_subtable_header *entry,
431 int device_declaration, u32 acpi_id, int *apic_id)
432{
433 struct acpi_madt_local_x2apic *apic =
434 (struct acpi_madt_local_x2apic *)entry;
435 u32 tmp = apic->local_apic_id;
436
437 /* Only check enabled APICs*/
438 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
439 return 0;
440
441 /* Device statement declaration type */
442 if (device_declaration) {
443 if (apic->uid == acpi_id)
444 goto found;
445 }
446
447 return 0;
448found:
449 *apic_id = tmp;
450 return 1;
451}
452
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300453static int map_lsapic_id(struct acpi_subtable_header *entry,
Myron Stoweb26e9282008-11-04 14:53:00 -0700454 int device_declaration, u32 acpi_id, int *apic_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300455{
456 struct acpi_madt_local_sapic *lsapic =
457 (struct acpi_madt_local_sapic *)entry;
Myron Stoweb26e9282008-11-04 14:53:00 -0700458 u32 tmp = (lsapic->id << 8) | lsapic->eid;
459
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300460 /* Only check enabled APICs*/
Myron Stoweb26e9282008-11-04 14:53:00 -0700461 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
462 return 0;
463
464 /* Device statement declaration type */
465 if (device_declaration) {
466 if (entry->length < 16)
467 printk(KERN_ERR PREFIX
468 "Invalid LSAPIC with Device type processor (SAPIC ID %#x)\n",
469 tmp);
470 else if (lsapic->uid == acpi_id)
471 goto found;
472 /* Processor statement declaration type */
473 } else if (lsapic->processor_id == acpi_id)
474 goto found;
475
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300476 return 0;
Myron Stoweb26e9282008-11-04 14:53:00 -0700477found:
478 *apic_id = tmp;
479 return 1;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300480}
481
Myron Stoweb26e9282008-11-04 14:53:00 -0700482static int map_madt_entry(int type, u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300484 unsigned long madt_end, entry;
485 int apic_id = -1;
486
487 if (!madt)
488 return apic_id;
489
490 entry = (unsigned long)madt;
491 madt_end = entry + madt->header.length;
492
493 /* Parse all entries looking for a match. */
494
495 entry += sizeof(struct acpi_table_madt);
496 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
497 struct acpi_subtable_header *header =
498 (struct acpi_subtable_header *)entry;
499 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
500 if (map_lapic_id(header, acpi_id, &apic_id))
501 break;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800502 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
503 if (map_x2apic_id(header, type, acpi_id, &apic_id))
504 break;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300505 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700506 if (map_lsapic_id(header, type, acpi_id, &apic_id))
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300507 break;
508 }
509 entry += header->length;
510 }
511 return apic_id;
512}
513
Myron Stoweb26e9282008-11-04 14:53:00 -0700514static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300515{
516 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
517 union acpi_object *obj;
518 struct acpi_subtable_header *header;
519 int apic_id = -1;
520
521 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
522 goto exit;
523
524 if (!buffer.length || !buffer.pointer)
525 goto exit;
526
527 obj = buffer.pointer;
528 if (obj->type != ACPI_TYPE_BUFFER ||
529 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
530 goto exit;
531 }
532
533 header = (struct acpi_subtable_header *)obj->buffer.pointer;
534 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
535 map_lapic_id(header, acpi_id, &apic_id);
536 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700537 map_lsapic_id(header, type, acpi_id, &apic_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300538 }
539
540exit:
541 if (buffer.pointer)
542 kfree(buffer.pointer);
543 return apic_id;
544}
545
Myron Stoweb26e9282008-11-04 14:53:00 -0700546static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300547{
Len Brown4a35a462005-09-03 12:40:06 -0400548 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300549 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Myron Stoweb26e9282008-11-04 14:53:00 -0700551 apic_id = map_mat_entry(handle, type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300552 if (apic_id == -1)
Myron Stoweb26e9282008-11-04 14:53:00 -0700553 apic_id = map_madt_entry(type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300554 if (apic_id == -1)
555 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800557 for_each_possible_cpu(i) {
Mike Travis71b31232007-10-19 20:35:03 +0200558 if (cpu_physical_id(i) == apic_id)
Len Brown4a35a462005-09-03 12:40:06 -0400559 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
561 return -1;
562}
563#endif
564
565/* --------------------------------------------------------------------------
566 Driver Interface
567 -------------------------------------------------------------------------- */
568
Myron Stoweb26e9282008-11-04 14:53:00 -0700569static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Len Brown4be44fc2005-08-05 00:44:28 -0400571 acpi_status status = 0;
572 union acpi_object object = { 0 };
573 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700574 struct acpi_processor *pr;
575 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400576 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Myron Stoweb26e9282008-11-04 14:53:00 -0700578 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400580 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 if (num_online_cpus() > 1)
583 errata.smp = TRUE;
584
585 acpi_processor_errata(pr);
586
587 /*
588 * Check to see if we have bus mastering arbitration control. This
589 * is required for proper C3 usage (to maintain cache coherency).
590 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300591 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 pr->flags.bm_control = 1;
593 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400594 "Bus mastering arbitration control present\n"));
595 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400597 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600599 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
600 /* Declared with "Processor" statement; match ProcessorID */
601 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
602 if (ACPI_FAILURE(status)) {
603 printk(KERN_ERR PREFIX "Evaluating processor object\n");
604 return -ENODEV;
605 }
606
607 /*
608 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
609 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
610 * arch/xxx/acpi.c
611 */
612 pr->acpi_id = object.processor.proc_id;
613 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700614 /*
615 * Declared with "Device" statement; match _UID.
616 * Note that we don't handle string _UIDs yet.
617 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400618 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300619 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
620 NULL, &value);
621 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700622 printk(KERN_ERR PREFIX
623 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300624 return -ENODEV;
625 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700626 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300627 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700629 cpu_index = get_cpu_id(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Len Brown4be44fc2005-08-05 00:44:28 -0400631 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500632 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400633 (num_online_cpus() == 1)) {
634 cpu_index = 0;
635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Len Brown4be44fc2005-08-05 00:44:28 -0400637 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Len Brown4be44fc2005-08-05 00:44:28 -0400639 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Len Brown4be44fc2005-08-05 00:44:28 -0400641 /*
642 * Extra Processor objects may be enumerated on MP systems with
643 * less than the max # of CPUs. They should be ignored _iff
644 * they are physically not present.
645 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300646 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400647 if (ACPI_FAILURE
648 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400649 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400650 }
651 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800652 /*
653 * On some boxes several processors use the same processor bus id.
654 * But they are located in different scope. For example:
655 * \_SB.SCK0.CPU0
656 * \_SB.SCK1.CPU0
657 * Rename the processor device bus id. And the new bus id will be
658 * generated as the following format:
659 * CPU+CPU ID.
660 */
661 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400663 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 if (!object.processor.pblk_address)
666 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
667 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400668 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
669 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 else {
671 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300672 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
673 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 pr->pblk = object.processor.pblk_address;
676
677 /*
678 * We don't care about error returns - we just try to mark
679 * these reserved so that nobody else is confused into thinking
680 * that this region might be unused..
681 *
682 * (In particular, allocating the IO range for Cardbus)
683 */
684 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
685 }
686
Alex Chiangfe086a72008-04-29 15:05:29 -0700687 /*
688 * If ACPI describes a slot number for this CPU, we can use it
689 * ensure we get the right value in the "physical id" field
690 * of /proc/cpuinfo
691 */
692 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
693 if (ACPI_SUCCESS(status))
694 arch_fix_phys_package_id(pr->id, object.integer.value);
695
Patrick Mocheld550d982006-06-27 00:41:40 -0400696 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Mike Travis706546d2008-06-09 16:22:23 -0700699static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400700
Pierre Ossman7af8b662006-10-10 14:20:31 -0700701static int __cpuinit acpi_processor_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Len Brown4be44fc2005-08-05 00:44:28 -0400703 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400704 struct acpi_processor *pr;
Zhang Rui9f1eb992008-04-29 02:36:07 -0400705 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 pr = acpi_driver_data(device);
708
Myron Stoweb26e9282008-11-04 14:53:00 -0700709 result = acpi_processor_get_info(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (result) {
711 /* Processor is physically not present */
Patrick Mocheld550d982006-06-27 00:41:40 -0400712 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800715 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400717 /*
718 * Buggy BIOS check
719 * ACPI id of processors can be reported wrongly by the BIOS.
720 * Don't trust it blindly
721 */
Mike Travis706546d2008-06-09 16:22:23 -0700722 if (per_cpu(processor_device_array, pr->id) != NULL &&
723 per_cpu(processor_device_array, pr->id) != device) {
Joe Perches4fdb2a02007-11-19 17:48:02 -0800724 printk(KERN_WARNING "BIOS reported wrong ACPI id "
Len Brown0eacee52006-03-31 00:37:23 -0500725 "for the processor\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400726 return -ENODEV;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400727 }
Mike Travis706546d2008-06-09 16:22:23 -0700728 per_cpu(processor_device_array, pr->id) = device;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400729
Mike Travis706546d2008-06-09 16:22:23 -0700730 per_cpu(processors, pr->id) = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 result = acpi_processor_add_fs(device);
733 if (result)
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000734 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Zhang Rui9f1eb992008-04-29 02:36:07 -0400736 sysdev = get_cpu_sysdev(pr->id);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000737 if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev")) {
738 result = -EFAULT;
739 goto err_remove_fs;
740 }
Zhang Rui9f1eb992008-04-29 02:36:07 -0400741
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400742 /* _PDC call should be done before doing anything else (if reqd.). */
743 arch_acpi_processor_init_pdc(pr);
744 acpi_processor_set_pdc(pr);
Pallipadi, Venkatesh7b768f02009-06-19 17:14:59 -0700745 arch_acpi_processor_cleanup_pdc(pr);
746
Zhao Yakui0ac3c572007-11-15 17:05:46 +0800747#ifdef CONFIG_CPU_FREQ
748 acpi_processor_ppc_has_changed(pr);
749#endif
750 acpi_processor_get_throttling_info(pr);
751 acpi_processor_get_limit_info(pr);
752
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 acpi_processor_power_init(pr, device);
755
Zhang Ruid9460fd22008-01-17 15:51:23 +0800756 pr->cdev = thermal_cooling_device_register("Processor", device,
757 &processor_cooling_ops);
Thomas Sujithd76628c2008-02-15 18:26:54 -0500758 if (IS_ERR(pr->cdev)) {
759 result = PTR_ERR(pr->cdev);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000760 goto err_power_exit;
Thomas Sujithd76628c2008-02-15 18:26:54 -0500761 }
Zhang Ruid9460fd22008-01-17 15:51:23 +0800762
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200763 dev_info(&device->dev, "registered as cooling_device%d\n",
764 pr->cdev->id);
Julia Lawall90300622008-04-11 10:09:24 +0800765
766 result = sysfs_create_link(&device->dev.kobj,
767 &pr->cdev->device.kobj,
768 "thermal_cooling");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000769 if (result) {
Julia Lawall90300622008-04-11 10:09:24 +0800770 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000771 goto err_thermal_unregister;
772 }
Julia Lawall90300622008-04-11 10:09:24 +0800773 result = sysfs_create_link(&pr->cdev->device.kobj,
774 &device->dev.kobj,
775 "device");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000776 if (result) {
Julia Lawall90300622008-04-11 10:09:24 +0800777 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000778 goto err_remove_sysfs;
779 }
Zhang Ruid9460fd22008-01-17 15:51:23 +0800780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (pr->flags.throttling) {
782 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400783 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 printk(" %d throttling states", pr->throttling.state_count);
785 printk(")\n");
786 }
787
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000788 return 0;
789
790err_remove_sysfs:
791 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
792err_thermal_unregister:
793 thermal_cooling_device_unregister(pr->cdev);
794err_power_exit:
795 acpi_processor_power_exit(pr, device);
796err_remove_fs:
797 acpi_processor_remove_fs(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Patrick Mocheld550d982006-06-27 00:41:40 -0400799 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000802static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000804 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300805 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400808 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 switch (event) {
811 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300812 saved = pr->performance_platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 acpi_processor_ppc_has_changed(pr);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300814 if (saved == pr->performance_platform_limit)
815 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400816 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400817 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800818 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100819 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800820 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 break;
822 case ACPI_PROCESSOR_NOTIFY_POWER:
823 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400824 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800825 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100826 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 break;
Luming Yu01854e62007-05-26 22:49:58 +0800828 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
829 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400830 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800831 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100832 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 default:
834 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400835 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 break;
837 }
838
Patrick Mocheld550d982006-06-27 00:41:40 -0400839 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200842static int acpi_cpu_soft_notify(struct notifier_block *nfb,
843 unsigned long action, void *hcpu)
844{
845 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700846 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200847
848 if (action == CPU_ONLINE && pr) {
849 acpi_processor_ppc_has_changed(pr);
850 acpi_processor_cst_has_changed(pr);
851 acpi_processor_tstate_has_changed(pr);
852 }
853 return NOTIFY_OK;
854}
855
856static struct notifier_block acpi_cpu_notifier =
857{
858 .notifier_call = acpi_cpu_soft_notify,
859};
860
Len Brown4be44fc2005-08-05 00:44:28 -0400861static int acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Len Brown4be44fc2005-08-05 00:44:28 -0400863 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400867 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Burman Yan36bcbec2006-12-19 12:56:11 -0800869 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400871 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Yinghai Lueaa95842009-06-06 14:51:36 -0700873 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800874 kfree(pr);
875 return -ENOMEM;
876 }
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 pr->handle = device->handle;
879 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
880 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700881 device->driver_data = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Patrick Mocheld550d982006-06-27 00:41:40 -0400883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Len Brown4be44fc2005-08-05 00:44:28 -0400886static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Len Brown4be44fc2005-08-05 00:44:28 -0400888 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400892 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200894 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800896 if (pr->id >= nr_cpu_ids)
897 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 if (type == ACPI_BUS_REMOVAL_EJECT) {
900 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400901 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903
904 acpi_processor_power_exit(pr, device);
905
Zhang Rui9f1eb992008-04-29 02:36:07 -0400906 sysfs_remove_link(&device->dev.kobj, "sysdev");
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 acpi_processor_remove_fs(device);
909
Zhao Yakuif28bb452008-02-15 08:34:37 +0800910 if (pr->cdev) {
911 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
912 sysfs_remove_link(&pr->cdev->device.kobj, "device");
913 thermal_cooling_device_unregister(pr->cdev);
914 pr->cdev = NULL;
915 }
Zhang Ruid9460fd22008-01-17 15:51:23 +0800916
Mike Travis706546d2008-06-09 16:22:23 -0700917 per_cpu(processors, pr->id) = NULL;
918 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800919
920free:
921 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 kfree(pr);
923
Patrick Mocheld550d982006-06-27 00:41:40 -0400924 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
927#ifdef CONFIG_ACPI_HOTPLUG_CPU
928/****************************************************************************
929 * Acpi processor hotplug support *
930 ****************************************************************************/
931
Len Brown4be44fc2005-08-05 00:44:28 -0400932static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Len Brown4be44fc2005-08-05 00:44:28 -0400934 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400935 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500939
940 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
941 return 1;
942
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500943 /*
944 * _STA is mandatory for a processor that supports hot plug
945 */
946 if (status == AE_NOT_FOUND)
947 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
948 "Processor does not support hot plug\n"));
949 else
950 ACPI_EXCEPTION((AE_INFO, status,
951 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500952 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955static
Len Brown4be44fc2005-08-05 00:44:28 -0400956int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Len Brown4be44fc2005-08-05 00:44:28 -0400958 acpi_handle phandle;
959 struct acpi_device *pdev;
960 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400964 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
967 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400968 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
970
971 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400972 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
Rajesh Shah3fb02732005-04-28 00:25:52 -0700975 acpi_bus_start(*device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 pr = acpi_driver_data(*device);
978 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400979 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Patrick Mocheld550d982006-06-27 00:41:40 -0400981 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
Sam Ravnborgb95e9e82008-02-17 13:22:48 +0100984static void __ref acpi_processor_hotplug_notify(acpi_handle handle,
985 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Len Brown4be44fc2005-08-05 00:44:28 -0400987 struct acpi_processor *pr;
988 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 int result;
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 switch (event) {
993 case ACPI_NOTIFY_BUS_CHECK:
994 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800995 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
996 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400997 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800998 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (!is_processor_present(handle))
1001 break;
1002
1003 if (acpi_bus_get_device(handle, &device)) {
1004 result = acpi_processor_device_add(handle, &device);
1005 if (result)
Len Brown64684632006-06-26 23:41:38 -04001006 printk(KERN_ERR PREFIX
1007 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 break;
1009 }
1010
1011 pr = acpi_driver_data(device);
1012 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -04001013 printk(KERN_ERR PREFIX "Driver data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 break;
1015 }
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 result = acpi_processor_start(device);
Bjorn Helgaasc1815e02009-06-22 20:41:04 +00001018 if (result)
Len Brown64684632006-06-26 23:41:38 -04001019 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
1020 acpi_device_bid(device));
Len Brown4be44fc2005-08-05 00:44:28 -04001021 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -04001023 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1024 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -04001027 printk(KERN_ERR PREFIX
1028 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 break;
1030 }
1031 pr = acpi_driver_data(device);
1032 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -04001033 printk(KERN_ERR PREFIX
1034 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001035 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 break;
1038 default:
1039 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001040 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 break;
1042 }
1043
Patrick Mocheld550d982006-06-27 00:41:40 -04001044 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047static acpi_status
1048processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001049 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Len Brown4be44fc2005-08-05 00:44:28 -04001051 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -04001053 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 status = acpi_get_type(handle, &type);
1056 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -04001057 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -04001060 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Len Brown4be44fc2005-08-05 00:44:28 -04001062 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 case INSTALL_NOTIFY_HANDLER:
1064 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001065 ACPI_SYSTEM_NOTIFY,
1066 acpi_processor_hotplug_notify,
1067 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 break;
1069 case UNINSTALL_NOTIFY_HANDLER:
1070 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001071 ACPI_SYSTEM_NOTIFY,
1072 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 break;
1074 default:
1075 break;
1076 }
1077
Len Brown4be44fc2005-08-05 00:44:28 -04001078 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
Len Brown4be44fc2005-08-05 00:44:28 -04001081static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -04001085 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
1088 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -04001089 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 if (arch_register_cpu(*p_cpu)) {
1092 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -04001093 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
Patrick Mocheld550d982006-06-27 00:41:40 -04001096 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Len Brown4be44fc2005-08-05 00:44:28 -04001099static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Zhang Ruib62b8ef2008-04-29 02:35:56 -04001101 if (cpu_online(pr->id))
1102 cpu_down(pr->id);
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 arch_unregister_cpu(pr->id);
1105 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -04001106 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108#else
Len Brown4be44fc2005-08-05 00:44:28 -04001109static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 return AE_ERROR;
1112}
Len Brown4be44fc2005-08-05 00:44:28 -04001113static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Len Brown4be44fc2005-08-05 00:44:28 -04001115 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117#endif
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119static
1120void acpi_processor_install_hotplug_notify(void)
1121{
1122#ifdef CONFIG_ACPI_HOTPLUG_CPU
1123 int action = INSTALL_NOTIFY_HANDLER;
1124 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001125 ACPI_ROOT_OBJECT,
1126 ACPI_UINT32_MAX,
1127 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001129 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132static
1133void acpi_processor_uninstall_hotplug_notify(void)
1134{
1135#ifdef CONFIG_ACPI_HOTPLUG_CPU
1136 int action = UNINSTALL_NOTIFY_HANDLER;
1137 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001138 ACPI_ROOT_OBJECT,
1139 ACPI_UINT32_MAX,
1140 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001142 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
1145/*
1146 * We keep the driver loaded even when ACPI is not running.
1147 * This is needed for the powernow-k8 driver, that works even without
1148 * ACPI, but needs symbols from this driver
1149 */
1150
Len Brown4be44fc2005-08-05 00:44:28 -04001151static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Len Brown4be44fc2005-08-05 00:44:28 -04001153 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 memset(&errata, 0, sizeof(errata));
1156
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001157#ifdef CONFIG_SMP
1158 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1159 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001160 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001161#endif
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1164 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001165 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Zhao Yakui2a2a6472008-06-24 18:02:57 +08001167 /*
1168 * Check whether the system is DMI table. If yes, OSPM
1169 * should not use mwait for CPU-states.
1170 */
1171 dmi_check_system(processor_idle_dmi_table);
Len Brown4f86d3a2007-10-03 18:58:00 -04001172 result = cpuidle_register_driver(&acpi_idle_driver);
1173 if (result < 0)
1174 goto out_proc;
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -04001177 if (result < 0)
1178 goto out_cpuidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 acpi_processor_install_hotplug_notify();
1181
1182 acpi_thermal_cpufreq_init();
1183
1184 acpi_processor_ppc_init();
1185
Zhao Yakui11805092008-01-28 13:53:42 +08001186 acpi_processor_throttling_init();
1187
Patrick Mocheld550d982006-06-27 00:41:40 -04001188 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -04001189
1190out_cpuidle:
1191 cpuidle_unregister_driver(&acpi_idle_driver);
1192
1193out_proc:
1194 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1195
1196 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
Len Brown4be44fc2005-08-05 00:44:28 -04001199static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 acpi_processor_ppc_exit();
1202
1203 acpi_thermal_cpufreq_exit();
1204
1205 acpi_processor_uninstall_hotplug_notify();
1206
1207 acpi_bus_unregister_driver(&acpi_processor_driver);
1208
Len Brown4f86d3a2007-10-03 18:58:00 -04001209 cpuidle_unregister_driver(&acpi_idle_driver);
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1212
Patrick Mocheld550d982006-06-27 00:41:40 -04001213 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216module_init(acpi_processor_init);
1217module_exit(acpi_processor_exit);
1218
1219EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1220
1221MODULE_ALIAS("processor");