blob: b4a1ab297e7b95cdad2a7b0306ee4f812c5de0cd [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);
84static int acpi_processor_start(struct acpi_device *device);
85static int acpi_processor_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +000087static void acpi_processor_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
89static int acpi_processor_handle_eject(struct acpi_processor *pr);
Luming Yu01854e62007-05-26 22:49:58 +080090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Thomas Renninger1ba90e32007-07-23 14:44:41 +020092static const struct acpi_device_id processor_device_ids[] = {
Myron Stowead93a762008-11-04 14:52:55 -070093 {ACPI_PROCESSOR_OBJECT_HID, 0},
Bjorn Helgaas9eccbc22009-04-27 16:33:46 -060094 {"ACPI0007", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020095 {"", 0},
96};
97MODULE_DEVICE_TABLE(acpi, processor_device_ids);
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static struct acpi_driver acpi_processor_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -0500100 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -0400101 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200102 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400103 .ops = {
104 .add = acpi_processor_add,
105 .remove = acpi_processor_remove,
106 .start = acpi_processor_start,
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
115
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};
123
Mike Travis706546d2008-06-09 16:22:23 -0700124DEFINE_PER_CPU(struct acpi_processor *, processors);
Andreas Mohr9f222712006-06-23 02:04:27 -0700125struct acpi_processor_errata errata __read_mostly;
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800126static int set_no_mwait(const struct dmi_system_id *id)
127{
128 printk(KERN_NOTICE PREFIX "%s detected - "
Pavel Machekd0057412008-08-12 12:24:34 +0200129 "disabling mwait for CPU C-states\n", id->ident);
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800130 idle_nomwait = 1;
131 return 0;
132}
133
134static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = {
135 {
136 set_no_mwait, "IFL91 board", {
137 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
138 DMI_MATCH(DMI_SYS_VENDOR, "ZEPTO"),
139 DMI_MATCH(DMI_PRODUCT_VERSION, "3215W"),
140 DMI_MATCH(DMI_BOARD_NAME, "IFL91") }, NULL},
141 {
142 set_no_mwait, "Extensa 5220", {
143 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
Dennis Jansen3df8a902008-08-15 01:28:57 +0200144 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800145 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
146 DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL},
147 {},
148};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/* --------------------------------------------------------------------------
151 Errata Handling
152 -------------------------------------------------------------------------- */
153
Len Brown4be44fc2005-08-05 00:44:28 -0400154static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Len Brown4be44fc2005-08-05 00:44:28 -0400156 u8 value1 = 0;
157 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400161 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /*
164 * Note that 'dev' references the PIIX4 ACPI Controller.
165 */
166
Auke Kok44c10132007-06-08 15:46:36 -0700167 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 case 0:
169 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
170 break;
171 case 1:
172 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
173 break;
174 case 2:
175 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
176 break;
177 case 3:
178 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
179 break;
180 default:
181 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
182 break;
183 }
184
Auke Kok44c10132007-06-08 15:46:36 -0700185 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 case 0: /* PIIX4 A-step */
188 case 1: /* PIIX4 B-step */
189 /*
190 * See specification changes #13 ("Manual Throttle Duty Cycle")
191 * and #14 ("Enabling and Disabling Manual Throttle"), plus
192 * erratum #5 ("STPCLK# Deassertion Time") from the January
193 * 2002 PIIX4 specification update. Applies to only older
194 * PIIX4 models.
195 */
196 errata.piix4.throttle = 1;
197
198 case 2: /* PIIX4E */
199 case 3: /* PIIX4M */
200 /*
201 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
202 * Livelock") from the January 2002 PIIX4 specification update.
203 * Applies to all PIIX4 models.
204 */
205
206 /*
207 * BM-IDE
208 * ------
209 * Find the PIIX4 IDE Controller and get the Bus Master IDE
210 * Status register address. We'll use this later to read
211 * each IDE controller's DMA status to make sure we catch all
212 * DMA activity.
213 */
214 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400215 PCI_DEVICE_ID_INTEL_82371AB,
216 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (dev) {
218 errata.piix4.bmisx = pci_resource_start(dev, 4);
219 pci_dev_put(dev);
220 }
221
222 /*
223 * Type-F DMA
224 * ----------
225 * Find the PIIX4 ISA Controller and read the Motherboard
226 * DMA controller's status to see if Type-F (Fast) DMA mode
227 * is enabled (bit 7) on either channel. Note that we'll
228 * disable C3 support if this is enabled, as some legacy
229 * devices won't operate well if fast DMA is disabled.
230 */
231 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400232 PCI_DEVICE_ID_INTEL_82371AB_0,
233 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (dev) {
235 pci_read_config_byte(dev, 0x76, &value1);
236 pci_read_config_byte(dev, 0x77, &value2);
237 if ((value1 & 0x80) || (value2 & 0x80))
238 errata.piix4.fdma = 1;
239 pci_dev_put(dev);
240 }
241
242 break;
243 }
244
245 if (errata.piix4.bmisx)
246 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400247 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (errata.piix4.fdma)
249 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400250 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Patrick Mocheld550d982006-06-27 00:41:40 -0400252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400255static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Len Brown4be44fc2005-08-05 00:44:28 -0400257 int result = 0;
258 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400262 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /*
265 * PIIX4
266 */
267 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400268 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
269 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (dev) {
271 result = acpi_processor_errata_piix4(dev);
272 pci_dev_put(dev);
273 }
274
Patrick Mocheld550d982006-06-27 00:41:40 -0400275 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800279 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400280 -------------------------------------------------------------------------- */
281
282/*
283 * _PDC is required for a BIOS-OS handshake for most of the newer
284 * ACPI processor features.
285 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400286static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400287{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400288 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400289 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400290
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400291
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400292 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400293 return status;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800294 if (idle_nomwait) {
295 /*
296 * If mwait is disabled for CPU C-states, the C2C3_FFH access
297 * mode will be disabled in the parameter of _PDC object.
298 * Of course C1_FFH access mode will also be disabled.
299 */
300 union acpi_object *obj;
301 u32 *buffer = NULL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400302
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800303 obj = pdc_in->pointer;
304 buffer = (u32 *)(obj->buffer.pointer);
305 buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH);
306
307 }
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400308 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400309
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400310 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400311 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400312 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400313
Patrick Mocheld550d982006-06-27 00:41:40 -0400314 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400315}
316
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400317/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 FS Interface (/proc)
319 -------------------------------------------------------------------------- */
320
Len Brown4be44fc2005-08-05 00:44:28 -0400321static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
324{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200325 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 if (!pr)
329 goto end;
330
331 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400332 "acpi id: %d\n"
333 "bus mastering control: %s\n"
334 "power management: %s\n"
335 "throttling control: %s\n"
336 "limit interface: %s\n",
337 pr->id,
338 pr->acpi_id,
339 pr->flags.bm_control ? "yes" : "no",
340 pr->flags.power ? "yes" : "no",
341 pr->flags.throttling ? "yes" : "no",
342 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Len Brown4be44fc2005-08-05 00:44:28 -0400344 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400345 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
349{
350 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400351 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Len Brown4be44fc2005-08-05 00:44:28 -0400354static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Len Brown4be44fc2005-08-05 00:44:28 -0400356 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 if (!acpi_device_dir(device)) {
360 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400361 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400363 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700367 entry = proc_create_data(ACPI_PROCESSOR_FILE_INFO,
368 S_IRUGO, acpi_device_dir(device),
369 &acpi_processor_info_fops,
370 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400372 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* 'throttling' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700375 entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING,
376 S_IFREG | S_IRUGO | S_IWUSR,
377 acpi_device_dir(device),
378 &acpi_processor_throttling_fops,
379 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400381 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* 'limit' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700384 entry = proc_create_data(ACPI_PROCESSOR_FILE_LIMIT,
385 S_IFREG | S_IRUGO | S_IWUSR,
386 acpi_device_dir(device),
387 &acpi_processor_limit_fops,
388 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400390 return -EIO;
Patrick Mocheld550d982006-06-27 00:41:40 -0400391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Len Brown4be44fc2005-08-05 00:44:28 -0400394static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400398 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
399 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400401 acpi_device_dir(device));
402 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
403 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
405 acpi_device_dir(device) = NULL;
406 }
407
Patrick Mocheld550d982006-06-27 00:41:40 -0400408 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
411/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#ifndef CONFIG_SMP
Myron Stoweb26e9282008-11-04 14:53:00 -0700414static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id) { return -1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415#else
416
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300417static struct acpi_table_madt *madt;
418
419static int map_lapic_id(struct acpi_subtable_header *entry,
420 u32 acpi_id, int *apic_id)
421{
422 struct acpi_madt_local_apic *lapic =
423 (struct acpi_madt_local_apic *)entry;
424 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
425 lapic->processor_id == acpi_id) {
426 *apic_id = lapic->id;
427 return 1;
428 }
429 return 0;
430}
431
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800432static int map_x2apic_id(struct acpi_subtable_header *entry,
433 int device_declaration, u32 acpi_id, int *apic_id)
434{
435 struct acpi_madt_local_x2apic *apic =
436 (struct acpi_madt_local_x2apic *)entry;
437 u32 tmp = apic->local_apic_id;
438
439 /* Only check enabled APICs*/
440 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
441 return 0;
442
443 /* Device statement declaration type */
444 if (device_declaration) {
445 if (apic->uid == acpi_id)
446 goto found;
447 }
448
449 return 0;
450found:
451 *apic_id = tmp;
452 return 1;
453}
454
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300455static int map_lsapic_id(struct acpi_subtable_header *entry,
Myron Stoweb26e9282008-11-04 14:53:00 -0700456 int device_declaration, u32 acpi_id, int *apic_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300457{
458 struct acpi_madt_local_sapic *lsapic =
459 (struct acpi_madt_local_sapic *)entry;
Myron Stoweb26e9282008-11-04 14:53:00 -0700460 u32 tmp = (lsapic->id << 8) | lsapic->eid;
461
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300462 /* Only check enabled APICs*/
Myron Stoweb26e9282008-11-04 14:53:00 -0700463 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
464 return 0;
465
466 /* Device statement declaration type */
467 if (device_declaration) {
468 if (entry->length < 16)
469 printk(KERN_ERR PREFIX
470 "Invalid LSAPIC with Device type processor (SAPIC ID %#x)\n",
471 tmp);
472 else if (lsapic->uid == acpi_id)
473 goto found;
474 /* Processor statement declaration type */
475 } else if (lsapic->processor_id == acpi_id)
476 goto found;
477
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300478 return 0;
Myron Stoweb26e9282008-11-04 14:53:00 -0700479found:
480 *apic_id = tmp;
481 return 1;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300482}
483
Myron Stoweb26e9282008-11-04 14:53:00 -0700484static int map_madt_entry(int type, u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300486 unsigned long madt_end, entry;
487 int apic_id = -1;
488
489 if (!madt)
490 return apic_id;
491
492 entry = (unsigned long)madt;
493 madt_end = entry + madt->header.length;
494
495 /* Parse all entries looking for a match. */
496
497 entry += sizeof(struct acpi_table_madt);
498 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
499 struct acpi_subtable_header *header =
500 (struct acpi_subtable_header *)entry;
501 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
502 if (map_lapic_id(header, acpi_id, &apic_id))
503 break;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800504 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
505 if (map_x2apic_id(header, type, acpi_id, &apic_id))
506 break;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300507 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700508 if (map_lsapic_id(header, type, acpi_id, &apic_id))
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300509 break;
510 }
511 entry += header->length;
512 }
513 return apic_id;
514}
515
Myron Stoweb26e9282008-11-04 14:53:00 -0700516static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300517{
518 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
519 union acpi_object *obj;
520 struct acpi_subtable_header *header;
521 int apic_id = -1;
522
523 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
524 goto exit;
525
526 if (!buffer.length || !buffer.pointer)
527 goto exit;
528
529 obj = buffer.pointer;
530 if (obj->type != ACPI_TYPE_BUFFER ||
531 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
532 goto exit;
533 }
534
535 header = (struct acpi_subtable_header *)obj->buffer.pointer;
536 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
537 map_lapic_id(header, acpi_id, &apic_id);
538 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700539 map_lsapic_id(header, type, acpi_id, &apic_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300540 }
541
542exit:
543 if (buffer.pointer)
544 kfree(buffer.pointer);
545 return apic_id;
546}
547
Myron Stoweb26e9282008-11-04 14:53:00 -0700548static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300549{
Len Brown4a35a462005-09-03 12:40:06 -0400550 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300551 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Myron Stoweb26e9282008-11-04 14:53:00 -0700553 apic_id = map_mat_entry(handle, type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300554 if (apic_id == -1)
Myron Stoweb26e9282008-11-04 14:53:00 -0700555 apic_id = map_madt_entry(type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300556 if (apic_id == -1)
557 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800559 for_each_possible_cpu(i) {
Mike Travis71b31232007-10-19 20:35:03 +0200560 if (cpu_physical_id(i) == apic_id)
Len Brown4a35a462005-09-03 12:40:06 -0400561 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563 return -1;
564}
565#endif
566
567/* --------------------------------------------------------------------------
568 Driver Interface
569 -------------------------------------------------------------------------- */
570
Myron Stoweb26e9282008-11-04 14:53:00 -0700571static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Len Brown4be44fc2005-08-05 00:44:28 -0400573 acpi_status status = 0;
574 union acpi_object object = { 0 };
575 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700576 struct acpi_processor *pr;
577 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400578 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Myron Stoweb26e9282008-11-04 14:53:00 -0700580 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400582 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 if (num_online_cpus() > 1)
585 errata.smp = TRUE;
586
587 acpi_processor_errata(pr);
588
589 /*
590 * Check to see if we have bus mastering arbitration control. This
591 * is required for proper C3 usage (to maintain cache coherency).
592 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300593 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 pr->flags.bm_control = 1;
595 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400596 "Bus mastering arbitration control present\n"));
597 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400599 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600601 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
602 /* Declared with "Processor" statement; match ProcessorID */
603 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
604 if (ACPI_FAILURE(status)) {
605 printk(KERN_ERR PREFIX "Evaluating processor object\n");
606 return -ENODEV;
607 }
608
609 /*
610 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
611 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
612 * arch/xxx/acpi.c
613 */
614 pr->acpi_id = object.processor.proc_id;
615 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700616 /*
617 * Declared with "Device" statement; match _UID.
618 * Note that we don't handle string _UIDs yet.
619 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400620 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300621 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
622 NULL, &value);
623 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700624 printk(KERN_ERR PREFIX
625 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300626 return -ENODEV;
627 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700628 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300629 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700631 cpu_index = get_cpu_id(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Len Brown4be44fc2005-08-05 00:44:28 -0400633 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500634 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400635 (num_online_cpus() == 1)) {
636 cpu_index = 0;
637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Len Brown4be44fc2005-08-05 00:44:28 -0400639 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Len Brown4be44fc2005-08-05 00:44:28 -0400641 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Len Brown4be44fc2005-08-05 00:44:28 -0400643 /*
644 * Extra Processor objects may be enumerated on MP systems with
645 * less than the max # of CPUs. They should be ignored _iff
646 * they are physically not present.
647 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300648 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400649 if (ACPI_FAILURE
650 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400651 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400652 }
653 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800654 /*
655 * On some boxes several processors use the same processor bus id.
656 * But they are located in different scope. For example:
657 * \_SB.SCK0.CPU0
658 * \_SB.SCK1.CPU0
659 * Rename the processor device bus id. And the new bus id will be
660 * generated as the following format:
661 * CPU+CPU ID.
662 */
663 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400665 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 if (!object.processor.pblk_address)
668 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
669 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400670 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
671 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 else {
673 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300674 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
675 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 pr->pblk = object.processor.pblk_address;
678
679 /*
680 * We don't care about error returns - we just try to mark
681 * these reserved so that nobody else is confused into thinking
682 * that this region might be unused..
683 *
684 * (In particular, allocating the IO range for Cardbus)
685 */
686 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
687 }
688
Alex Chiangfe086a72008-04-29 15:05:29 -0700689 /*
690 * If ACPI describes a slot number for this CPU, we can use it
691 * ensure we get the right value in the "physical id" field
692 * of /proc/cpuinfo
693 */
694 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
695 if (ACPI_SUCCESS(status))
696 arch_fix_phys_package_id(pr->id, object.integer.value);
697
Patrick Mocheld550d982006-06-27 00:41:40 -0400698 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Mike Travis706546d2008-06-09 16:22:23 -0700701static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400702
Pierre Ossman7af8b662006-10-10 14:20:31 -0700703static int __cpuinit acpi_processor_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Len Brown4be44fc2005-08-05 00:44:28 -0400705 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400706 struct acpi_processor *pr;
Zhang Rui9f1eb992008-04-29 02:36:07 -0400707 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 pr = acpi_driver_data(device);
710
Myron Stoweb26e9282008-11-04 14:53:00 -0700711 result = acpi_processor_get_info(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (result) {
713 /* Processor is physically not present */
Patrick Mocheld550d982006-06-27 00:41:40 -0400714 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800717 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400719 /*
720 * Buggy BIOS check
721 * ACPI id of processors can be reported wrongly by the BIOS.
722 * Don't trust it blindly
723 */
Mike Travis706546d2008-06-09 16:22:23 -0700724 if (per_cpu(processor_device_array, pr->id) != NULL &&
725 per_cpu(processor_device_array, pr->id) != device) {
Joe Perches4fdb2a02007-11-19 17:48:02 -0800726 printk(KERN_WARNING "BIOS reported wrong ACPI id "
Len Brown0eacee52006-03-31 00:37:23 -0500727 "for the processor\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400728 return -ENODEV;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400729 }
Mike Travis706546d2008-06-09 16:22:23 -0700730 per_cpu(processor_device_array, pr->id) = device;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400731
Mike Travis706546d2008-06-09 16:22:23 -0700732 per_cpu(processors, pr->id) = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 result = acpi_processor_add_fs(device);
735 if (result)
736 goto end;
737
Zhang Rui9f1eb992008-04-29 02:36:07 -0400738 sysdev = get_cpu_sysdev(pr->id);
739 if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev"))
740 return -EFAULT;
741
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);
760 goto end;
761 }
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");
769 if (result)
770 printk(KERN_ERR PREFIX "Create sysfs link\n");
771 result = sysfs_create_link(&pr->cdev->device.kobj,
772 &device->dev.kobj,
773 "device");
774 if (result)
775 printk(KERN_ERR PREFIX "Create sysfs link\n");
Zhang Ruid9460fd22008-01-17 15:51:23 +0800776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (pr->flags.throttling) {
778 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400779 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 printk(" %d throttling states", pr->throttling.state_count);
781 printk(")\n");
782 }
783
Len Brown4be44fc2005-08-05 00:44:28 -0400784 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Patrick Mocheld550d982006-06-27 00:41:40 -0400786 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000789static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000791 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300792 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400795 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 switch (event) {
798 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300799 saved = pr->performance_platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 acpi_processor_ppc_has_changed(pr);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300801 if (saved == pr->performance_platform_limit)
802 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400803 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400804 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800805 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100806 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800807 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 break;
809 case ACPI_PROCESSOR_NOTIFY_POWER:
810 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400811 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800812 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100813 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 break;
Luming Yu01854e62007-05-26 22:49:58 +0800815 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
816 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400817 acpi_bus_generate_proc_event(device, event, 0);
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, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 default:
821 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400822 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 break;
824 }
825
Patrick Mocheld550d982006-06-27 00:41:40 -0400826 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200829static int acpi_cpu_soft_notify(struct notifier_block *nfb,
830 unsigned long action, void *hcpu)
831{
832 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700833 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200834
835 if (action == CPU_ONLINE && pr) {
836 acpi_processor_ppc_has_changed(pr);
837 acpi_processor_cst_has_changed(pr);
838 acpi_processor_tstate_has_changed(pr);
839 }
840 return NOTIFY_OK;
841}
842
843static struct notifier_block acpi_cpu_notifier =
844{
845 .notifier_call = acpi_cpu_soft_notify,
846};
847
Len Brown4be44fc2005-08-05 00:44:28 -0400848static int acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Len Brown4be44fc2005-08-05 00:44:28 -0400850 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400854 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Burman Yan36bcbec2006-12-19 12:56:11 -0800856 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400858 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Yinghai Lueaa95842009-06-06 14:51:36 -0700860 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800861 kfree(pr);
862 return -ENOMEM;
863 }
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 pr->handle = device->handle;
866 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
867 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700868 device->driver_data = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Patrick Mocheld550d982006-06-27 00:41:40 -0400870 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Len Brown4be44fc2005-08-05 00:44:28 -0400873static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Len Brown4be44fc2005-08-05 00:44:28 -0400875 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400879 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200881 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800883 if (pr->id >= nr_cpu_ids)
884 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 if (type == ACPI_BUS_REMOVAL_EJECT) {
887 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400888 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890
891 acpi_processor_power_exit(pr, device);
892
Zhang Rui9f1eb992008-04-29 02:36:07 -0400893 sysfs_remove_link(&device->dev.kobj, "sysdev");
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 acpi_processor_remove_fs(device);
896
Zhao Yakuif28bb452008-02-15 08:34:37 +0800897 if (pr->cdev) {
898 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
899 sysfs_remove_link(&pr->cdev->device.kobj, "device");
900 thermal_cooling_device_unregister(pr->cdev);
901 pr->cdev = NULL;
902 }
Zhang Ruid9460fd22008-01-17 15:51:23 +0800903
Mike Travis706546d2008-06-09 16:22:23 -0700904 per_cpu(processors, pr->id) = NULL;
905 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800906
907free:
908 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 kfree(pr);
910
Patrick Mocheld550d982006-06-27 00:41:40 -0400911 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
914#ifdef CONFIG_ACPI_HOTPLUG_CPU
915/****************************************************************************
916 * Acpi processor hotplug support *
917 ****************************************************************************/
918
Len Brown4be44fc2005-08-05 00:44:28 -0400919static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Len Brown4be44fc2005-08-05 00:44:28 -0400921 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400922 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500926
927 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
928 return 1;
929
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500930 /*
931 * _STA is mandatory for a processor that supports hot plug
932 */
933 if (status == AE_NOT_FOUND)
934 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
935 "Processor does not support hot plug\n"));
936 else
937 ACPI_EXCEPTION((AE_INFO, status,
938 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500939 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942static
Len Brown4be44fc2005-08-05 00:44:28 -0400943int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Len Brown4be44fc2005-08-05 00:44:28 -0400945 acpi_handle phandle;
946 struct acpi_device *pdev;
947 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400951 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953
954 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400955 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957
958 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400959 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961
Rajesh Shah3fb02732005-04-28 00:25:52 -0700962 acpi_bus_start(*device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 pr = acpi_driver_data(*device);
965 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400966 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800968 if ((pr->id >= 0) && (pr->id < nr_cpu_ids)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800969 kobject_uevent(&(*device)->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400971 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Sam Ravnborgb95e9e82008-02-17 13:22:48 +0100974static void __ref acpi_processor_hotplug_notify(acpi_handle handle,
975 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Len Brown4be44fc2005-08-05 00:44:28 -0400977 struct acpi_processor *pr;
978 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 int result;
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 switch (event) {
983 case ACPI_NOTIFY_BUS_CHECK:
984 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800985 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
986 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400987 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800988 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 if (!is_processor_present(handle))
991 break;
992
993 if (acpi_bus_get_device(handle, &device)) {
994 result = acpi_processor_device_add(handle, &device);
995 if (result)
Len Brown64684632006-06-26 23:41:38 -0400996 printk(KERN_ERR PREFIX
997 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 break;
999 }
1000
1001 pr = acpi_driver_data(device);
1002 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -04001003 printk(KERN_ERR PREFIX "Driver data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 break;
1005 }
1006
Christoph Lameterfbb43ab2007-11-28 16:22:08 -08001007 if (pr->id >= 0 && (pr->id < nr_cpu_ids)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +08001008 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 break;
1010 }
1011
1012 result = acpi_processor_start(device);
Christoph Lameterfbb43ab2007-11-28 16:22:08 -08001013 if ((!result) && ((pr->id >= 0) && (pr->id < nr_cpu_ids))) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +08001014 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 } else {
Len Brown64684632006-06-26 23:41:38 -04001016 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
1017 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
Len Brown4be44fc2005-08-05 00:44:28 -04001019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -04001021 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1022 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -04001025 printk(KERN_ERR PREFIX
1026 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 break;
1028 }
1029 pr = acpi_driver_data(device);
1030 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -04001031 printk(KERN_ERR PREFIX
1032 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001033 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035
Christoph Lameterfbb43ab2007-11-28 16:22:08 -08001036 if ((pr->id < nr_cpu_ids) && (cpu_present(pr->id)))
Patrick Mochelf883d9d2006-12-07 20:56:38 +08001037 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 break;
1039 default:
1040 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001041 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 break;
1043 }
1044
Patrick Mocheld550d982006-06-27 00:41:40 -04001045 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048static acpi_status
1049processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001050 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Len Brown4be44fc2005-08-05 00:44:28 -04001052 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -04001054 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 status = acpi_get_type(handle, &type);
1057 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -04001058 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -04001061 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Len Brown4be44fc2005-08-05 00:44:28 -04001063 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 case INSTALL_NOTIFY_HANDLER:
1065 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001066 ACPI_SYSTEM_NOTIFY,
1067 acpi_processor_hotplug_notify,
1068 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 break;
1070 case UNINSTALL_NOTIFY_HANDLER:
1071 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001072 ACPI_SYSTEM_NOTIFY,
1073 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 break;
1075 default:
1076 break;
1077 }
1078
Len Brown4be44fc2005-08-05 00:44:28 -04001079 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Len Brown4be44fc2005-08-05 00:44:28 -04001082static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -04001086 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088
1089 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -04001090 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 if (arch_register_cpu(*p_cpu)) {
1093 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -04001094 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
1096
Patrick Mocheld550d982006-06-27 00:41:40 -04001097 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
Len Brown4be44fc2005-08-05 00:44:28 -04001100static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Zhang Ruib62b8ef2008-04-29 02:35:56 -04001102 if (cpu_online(pr->id))
1103 cpu_down(pr->id);
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 arch_unregister_cpu(pr->id);
1106 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -04001107 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109#else
Len Brown4be44fc2005-08-05 00:44:28 -04001110static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 return AE_ERROR;
1113}
Len Brown4be44fc2005-08-05 00:44:28 -04001114static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Len Brown4be44fc2005-08-05 00:44:28 -04001116 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118#endif
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120static
1121void acpi_processor_install_hotplug_notify(void)
1122{
1123#ifdef CONFIG_ACPI_HOTPLUG_CPU
1124 int action = INSTALL_NOTIFY_HANDLER;
1125 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001126 ACPI_ROOT_OBJECT,
1127 ACPI_UINT32_MAX,
1128 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001130 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133static
1134void acpi_processor_uninstall_hotplug_notify(void)
1135{
1136#ifdef CONFIG_ACPI_HOTPLUG_CPU
1137 int action = UNINSTALL_NOTIFY_HANDLER;
1138 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001139 ACPI_ROOT_OBJECT,
1140 ACPI_UINT32_MAX,
1141 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001143 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
1146/*
1147 * We keep the driver loaded even when ACPI is not running.
1148 * This is needed for the powernow-k8 driver, that works even without
1149 * ACPI, but needs symbols from this driver
1150 */
1151
Len Brown4be44fc2005-08-05 00:44:28 -04001152static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Len Brown4be44fc2005-08-05 00:44:28 -04001154 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Yinghai Luce8442b2009-08-26 14:29:26 -07001156 if (acpi_disabled)
1157 return 0;
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 memset(&errata, 0, sizeof(errata));
1160
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001161#ifdef CONFIG_SMP
1162 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1163 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001164 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001165#endif
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1168 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001169 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Zhao Yakui2a2a6472008-06-24 18:02:57 +08001171 /*
1172 * Check whether the system is DMI table. If yes, OSPM
1173 * should not use mwait for CPU-states.
1174 */
1175 dmi_check_system(processor_idle_dmi_table);
Len Brown4f86d3a2007-10-03 18:58:00 -04001176 result = cpuidle_register_driver(&acpi_idle_driver);
1177 if (result < 0)
1178 goto out_proc;
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -04001181 if (result < 0)
1182 goto out_cpuidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 acpi_processor_install_hotplug_notify();
1185
1186 acpi_thermal_cpufreq_init();
1187
1188 acpi_processor_ppc_init();
1189
Zhao Yakui11805092008-01-28 13:53:42 +08001190 acpi_processor_throttling_init();
1191
Patrick Mocheld550d982006-06-27 00:41:40 -04001192 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -04001193
1194out_cpuidle:
1195 cpuidle_unregister_driver(&acpi_idle_driver);
1196
1197out_proc:
1198 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1199
1200 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Len Brown4be44fc2005-08-05 00:44:28 -04001203static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Yinghai Luce8442b2009-08-26 14:29:26 -07001205 if (acpi_disabled)
1206 return;
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 acpi_processor_ppc_exit();
1209
1210 acpi_thermal_cpufreq_exit();
1211
1212 acpi_processor_uninstall_hotplug_notify();
1213
1214 acpi_bus_unregister_driver(&acpi_processor_driver);
1215
Len Brown4f86d3a2007-10-03 18:58:00 -04001216 cpuidle_unregister_driver(&acpi_idle_driver);
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1219
Patrick Mocheld550d982006-06-27 00:41:40 -04001220 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223module_init(acpi_processor_init);
1224module_exit(acpi_processor_exit);
1225
1226EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1227
1228MODULE_ALIAS("processor");