blob: ec742a4e563505704dbc3e92137aecf324d04aaa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_processor.c - ACPI Processor Driver ($Revision: 71 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de>
7 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 * - Added processor hotplug support
9 *
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or (at
15 * your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 *
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 * TBD:
28 * 1. Make # power states dynamic.
29 * 2. Support duty_cycle values that span bit 4.
30 * 3. Optimize by having scheduler determine business instead of
31 * having us try to calculate it here.
32 * 4. Need C1 timing -- must modify kernel (IRQ handler) to get this.
33 */
34
35#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/init.h>
38#include <linux/types.h>
39#include <linux/pci.h>
40#include <linux/pm.h>
41#include <linux/cpufreq.h>
42#include <linux/cpu.h>
43#include <linux/proc_fs.h>
44#include <linux/seq_file.h>
45#include <linux/dmi.h>
46#include <linux/moduleparam.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040047#include <linux/cpuidle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <asm/io.h>
50#include <asm/system.h>
51#include <asm/cpu.h>
52#include <asm/delay.h>
53#include <asm/uaccess.h>
54#include <asm/processor.h>
55#include <asm/smp.h>
56#include <asm/acpi.h>
57
58#include <acpi/acpi_bus.h>
59#include <acpi/acpi_drivers.h>
60#include <acpi/processor.h>
61
Len Browna192a952009-07-28 16:45:54 -040062#define PREFIX "ACPI: "
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
66#define ACPI_PROCESSOR_FILE_INFO "info"
67#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
68#define ACPI_PROCESSOR_FILE_LIMIT "limit"
69#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
70#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
Luming Yu01854e62007-05-26 22:49:58 +080071#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#define ACPI_PROCESSOR_LIMIT_USER 0
74#define ACPI_PROCESSOR_LIMIT_THERMAL 1
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050077ACPI_MODULE_NAME("processor_core");
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Len Brownf52fd662007-02-12 22:42:12 -050079MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050080MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081MODULE_LICENSE("GPL");
82
Len Brown4be44fc2005-08-05 00:44:28 -040083static int acpi_processor_add(struct acpi_device *device);
Len Brown4be44fc2005-08-05 00:44:28 -040084static int acpi_processor_remove(struct acpi_device *device, int type);
Zhao Yakui74cad4e2009-06-24 11:49:49 +080085#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Zhao Yakui74cad4e2009-06-24 11:49:49 +080087#endif
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +000088static void acpi_processor_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
90static int acpi_processor_handle_eject(struct acpi_processor *pr);
Luming Yu01854e62007-05-26 22:49:58 +080091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Thomas Renninger1ba90e32007-07-23 14:44:41 +020093static const struct acpi_device_id processor_device_ids[] = {
Myron Stowead93a762008-11-04 14:52:55 -070094 {ACPI_PROCESSOR_OBJECT_HID, 0},
Bjorn Helgaas9eccbc22009-04-27 16:33:46 -060095 {"ACPI0007", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020096 {"", 0},
97};
98MODULE_DEVICE_TABLE(acpi, processor_device_ids);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static struct acpi_driver acpi_processor_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500101 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -0400102 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200103 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400104 .ops = {
105 .add = acpi_processor_add,
106 .remove = acpi_processor_remove,
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000107 .suspend = acpi_processor_suspend,
108 .resume = acpi_processor_resume,
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000109 .notify = acpi_processor_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400110 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113#define INSTALL_NOTIFY_HANDLER 1
114#define UNINSTALL_NOTIFY_HANDLER 2
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800115#ifdef CONFIG_ACPI_PROCFS
Arjan van de Vend7508032006-07-04 13:06:00 -0400116static const struct file_operations acpi_processor_info_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700117 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400118 .open = acpi_processor_info_open_fs,
119 .read = seq_read,
120 .llseek = seq_lseek,
121 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Mike Travis706546d2008-06-09 16:22:23 -0700125DEFINE_PER_CPU(struct acpi_processor *, processors);
Andreas Mohr9f222712006-06-23 02:04:27 -0700126struct acpi_processor_errata errata __read_mostly;
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800127static int set_no_mwait(const struct dmi_system_id *id)
128{
129 printk(KERN_NOTICE PREFIX "%s detected - "
Pavel Machekd0057412008-08-12 12:24:34 +0200130 "disabling mwait for CPU C-states\n", id->ident);
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800131 idle_nomwait = 1;
132 return 0;
133}
134
135static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = {
136 {
137 set_no_mwait, "IFL91 board", {
138 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
139 DMI_MATCH(DMI_SYS_VENDOR, "ZEPTO"),
140 DMI_MATCH(DMI_PRODUCT_VERSION, "3215W"),
141 DMI_MATCH(DMI_BOARD_NAME, "IFL91") }, NULL},
142 {
143 set_no_mwait, "Extensa 5220", {
144 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
Dennis Jansen3df8a902008-08-15 01:28:57 +0200145 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800146 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
147 DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL},
148 {},
149};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* --------------------------------------------------------------------------
152 Errata Handling
153 -------------------------------------------------------------------------- */
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Len Brown4be44fc2005-08-05 00:44:28 -0400157 u8 value1 = 0;
158 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400162 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /*
165 * Note that 'dev' references the PIIX4 ACPI Controller.
166 */
167
Auke Kok44c10132007-06-08 15:46:36 -0700168 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 case 0:
170 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
171 break;
172 case 1:
173 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
174 break;
175 case 2:
176 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
177 break;
178 case 3:
179 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
180 break;
181 default:
182 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
183 break;
184 }
185
Auke Kok44c10132007-06-08 15:46:36 -0700186 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 case 0: /* PIIX4 A-step */
189 case 1: /* PIIX4 B-step */
190 /*
191 * See specification changes #13 ("Manual Throttle Duty Cycle")
192 * and #14 ("Enabling and Disabling Manual Throttle"), plus
193 * erratum #5 ("STPCLK# Deassertion Time") from the January
194 * 2002 PIIX4 specification update. Applies to only older
195 * PIIX4 models.
196 */
197 errata.piix4.throttle = 1;
198
199 case 2: /* PIIX4E */
200 case 3: /* PIIX4M */
201 /*
202 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
203 * Livelock") from the January 2002 PIIX4 specification update.
204 * Applies to all PIIX4 models.
205 */
206
207 /*
208 * BM-IDE
209 * ------
210 * Find the PIIX4 IDE Controller and get the Bus Master IDE
211 * Status register address. We'll use this later to read
212 * each IDE controller's DMA status to make sure we catch all
213 * DMA activity.
214 */
215 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400216 PCI_DEVICE_ID_INTEL_82371AB,
217 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (dev) {
219 errata.piix4.bmisx = pci_resource_start(dev, 4);
220 pci_dev_put(dev);
221 }
222
223 /*
224 * Type-F DMA
225 * ----------
226 * Find the PIIX4 ISA Controller and read the Motherboard
227 * DMA controller's status to see if Type-F (Fast) DMA mode
228 * is enabled (bit 7) on either channel. Note that we'll
229 * disable C3 support if this is enabled, as some legacy
230 * devices won't operate well if fast DMA is disabled.
231 */
232 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400233 PCI_DEVICE_ID_INTEL_82371AB_0,
234 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (dev) {
236 pci_read_config_byte(dev, 0x76, &value1);
237 pci_read_config_byte(dev, 0x77, &value2);
238 if ((value1 & 0x80) || (value2 & 0x80))
239 errata.piix4.fdma = 1;
240 pci_dev_put(dev);
241 }
242
243 break;
244 }
245
246 if (errata.piix4.bmisx)
247 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400248 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (errata.piix4.fdma)
250 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400251 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Patrick Mocheld550d982006-06-27 00:41:40 -0400253 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400256static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Len Brown4be44fc2005-08-05 00:44:28 -0400258 int result = 0;
259 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400263 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 /*
266 * PIIX4
267 */
268 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400269 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
270 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (dev) {
272 result = acpi_processor_errata_piix4(dev);
273 pci_dev_put(dev);
274 }
275
Patrick Mocheld550d982006-06-27 00:41:40 -0400276 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800280 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400281 -------------------------------------------------------------------------- */
282
283/*
284 * _PDC is required for a BIOS-OS handshake for most of the newer
285 * ACPI processor features.
286 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400287static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400288{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400289 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400290 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400291
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400292
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400293 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return status;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800295 if (idle_nomwait) {
296 /*
297 * If mwait is disabled for CPU C-states, the C2C3_FFH access
298 * mode will be disabled in the parameter of _PDC object.
299 * Of course C1_FFH access mode will also be disabled.
300 */
301 union acpi_object *obj;
302 u32 *buffer = NULL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400303
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800304 obj = pdc_in->pointer;
305 buffer = (u32 *)(obj->buffer.pointer);
306 buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH);
307
308 }
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400309 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400310
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400311 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400312 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400313 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400314
Patrick Mocheld550d982006-06-27 00:41:40 -0400315 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400316}
317
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400318/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 FS Interface (/proc)
320 -------------------------------------------------------------------------- */
321
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800322#ifdef CONFIG_ACPI_PROCFS
Len Brown4be44fc2005-08-05 00:44:28 -0400323static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
326{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200327 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 if (!pr)
331 goto end;
332
333 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400334 "acpi id: %d\n"
335 "bus mastering control: %s\n"
336 "power management: %s\n"
337 "throttling control: %s\n"
338 "limit interface: %s\n",
339 pr->id,
340 pr->acpi_id,
341 pr->flags.bm_control ? "yes" : "no",
342 pr->flags.power ? "yes" : "no",
343 pr->flags.throttling ? "yes" : "no",
344 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Len Brown4be44fc2005-08-05 00:44:28 -0400346 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
351{
352 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400353 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Len Brown4be44fc2005-08-05 00:44:28 -0400356static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Len Brown4be44fc2005-08-05 00:44:28 -0400358 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 if (!acpi_device_dir(device)) {
362 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400363 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400365 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700369 entry = proc_create_data(ACPI_PROCESSOR_FILE_INFO,
370 S_IRUGO, acpi_device_dir(device),
371 &acpi_processor_info_fops,
372 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400374 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 /* 'throttling' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700377 entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING,
378 S_IFREG | S_IRUGO | S_IWUSR,
379 acpi_device_dir(device),
380 &acpi_processor_throttling_fops,
381 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400383 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 /* 'limit' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700386 entry = proc_create_data(ACPI_PROCESSOR_FILE_LIMIT,
387 S_IFREG | S_IRUGO | S_IWUSR,
388 acpi_device_dir(device),
389 &acpi_processor_limit_fops,
390 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400392 return -EIO;
Patrick Mocheld550d982006-06-27 00:41:40 -0400393 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
Len Brown4be44fc2005-08-05 00:44:28 -0400395static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400399 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
400 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400402 acpi_device_dir(device));
403 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
404 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
406 acpi_device_dir(device) = NULL;
407 }
408
Patrick Mocheld550d982006-06-27 00:41:40 -0400409 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800411#else
412static inline int acpi_processor_add_fs(struct acpi_device *device)
413{
414 return 0;
415}
416static inline int acpi_processor_remove_fs(struct acpi_device *device)
417{
418 return 0;
419}
420#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#ifndef CONFIG_SMP
Myron Stoweb26e9282008-11-04 14:53:00 -0700425static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id) { return -1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#else
427
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300428static struct acpi_table_madt *madt;
429
430static int map_lapic_id(struct acpi_subtable_header *entry,
431 u32 acpi_id, int *apic_id)
432{
433 struct acpi_madt_local_apic *lapic =
434 (struct acpi_madt_local_apic *)entry;
435 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
436 lapic->processor_id == acpi_id) {
437 *apic_id = lapic->id;
438 return 1;
439 }
440 return 0;
441}
442
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800443static int map_x2apic_id(struct acpi_subtable_header *entry,
444 int device_declaration, u32 acpi_id, int *apic_id)
445{
446 struct acpi_madt_local_x2apic *apic =
447 (struct acpi_madt_local_x2apic *)entry;
448 u32 tmp = apic->local_apic_id;
449
450 /* Only check enabled APICs*/
451 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
452 return 0;
453
454 /* Device statement declaration type */
455 if (device_declaration) {
456 if (apic->uid == acpi_id)
457 goto found;
458 }
459
460 return 0;
461found:
462 *apic_id = tmp;
463 return 1;
464}
465
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300466static int map_lsapic_id(struct acpi_subtable_header *entry,
Myron Stoweb26e9282008-11-04 14:53:00 -0700467 int device_declaration, u32 acpi_id, int *apic_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300468{
469 struct acpi_madt_local_sapic *lsapic =
470 (struct acpi_madt_local_sapic *)entry;
Myron Stoweb26e9282008-11-04 14:53:00 -0700471 u32 tmp = (lsapic->id << 8) | lsapic->eid;
472
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300473 /* Only check enabled APICs*/
Myron Stoweb26e9282008-11-04 14:53:00 -0700474 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
475 return 0;
476
477 /* Device statement declaration type */
478 if (device_declaration) {
479 if (entry->length < 16)
480 printk(KERN_ERR PREFIX
481 "Invalid LSAPIC with Device type processor (SAPIC ID %#x)\n",
482 tmp);
483 else if (lsapic->uid == acpi_id)
484 goto found;
485 /* Processor statement declaration type */
486 } else if (lsapic->processor_id == acpi_id)
487 goto found;
488
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300489 return 0;
Myron Stoweb26e9282008-11-04 14:53:00 -0700490found:
491 *apic_id = tmp;
492 return 1;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300493}
494
Myron Stoweb26e9282008-11-04 14:53:00 -0700495static int map_madt_entry(int type, u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300497 unsigned long madt_end, entry;
498 int apic_id = -1;
499
500 if (!madt)
501 return apic_id;
502
503 entry = (unsigned long)madt;
504 madt_end = entry + madt->header.length;
505
506 /* Parse all entries looking for a match. */
507
508 entry += sizeof(struct acpi_table_madt);
509 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
510 struct acpi_subtable_header *header =
511 (struct acpi_subtable_header *)entry;
512 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
513 if (map_lapic_id(header, acpi_id, &apic_id))
514 break;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800515 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
516 if (map_x2apic_id(header, type, acpi_id, &apic_id))
517 break;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300518 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700519 if (map_lsapic_id(header, type, acpi_id, &apic_id))
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300520 break;
521 }
522 entry += header->length;
523 }
524 return apic_id;
525}
526
Myron Stoweb26e9282008-11-04 14:53:00 -0700527static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300528{
529 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
530 union acpi_object *obj;
531 struct acpi_subtable_header *header;
532 int apic_id = -1;
533
534 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
535 goto exit;
536
537 if (!buffer.length || !buffer.pointer)
538 goto exit;
539
540 obj = buffer.pointer;
541 if (obj->type != ACPI_TYPE_BUFFER ||
542 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
543 goto exit;
544 }
545
546 header = (struct acpi_subtable_header *)obj->buffer.pointer;
547 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
548 map_lapic_id(header, acpi_id, &apic_id);
549 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700550 map_lsapic_id(header, type, acpi_id, &apic_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300551 }
552
553exit:
554 if (buffer.pointer)
555 kfree(buffer.pointer);
556 return apic_id;
557}
558
Myron Stoweb26e9282008-11-04 14:53:00 -0700559static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300560{
Len Brown4a35a462005-09-03 12:40:06 -0400561 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300562 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Myron Stoweb26e9282008-11-04 14:53:00 -0700564 apic_id = map_mat_entry(handle, type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300565 if (apic_id == -1)
Myron Stoweb26e9282008-11-04 14:53:00 -0700566 apic_id = map_madt_entry(type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300567 if (apic_id == -1)
568 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800570 for_each_possible_cpu(i) {
Mike Travis71b31232007-10-19 20:35:03 +0200571 if (cpu_physical_id(i) == apic_id)
Len Brown4a35a462005-09-03 12:40:06 -0400572 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574 return -1;
575}
576#endif
577
578/* --------------------------------------------------------------------------
579 Driver Interface
580 -------------------------------------------------------------------------- */
581
Myron Stoweb26e9282008-11-04 14:53:00 -0700582static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Len Brown4be44fc2005-08-05 00:44:28 -0400584 acpi_status status = 0;
585 union acpi_object object = { 0 };
586 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700587 struct acpi_processor *pr;
588 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400589 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Myron Stoweb26e9282008-11-04 14:53:00 -0700591 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400593 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 if (num_online_cpus() > 1)
596 errata.smp = TRUE;
597
598 acpi_processor_errata(pr);
599
600 /*
601 * Check to see if we have bus mastering arbitration control. This
602 * is required for proper C3 usage (to maintain cache coherency).
603 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300604 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 pr->flags.bm_control = 1;
606 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400607 "Bus mastering arbitration control present\n"));
608 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400610 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600612 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
613 /* Declared with "Processor" statement; match ProcessorID */
614 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
615 if (ACPI_FAILURE(status)) {
616 printk(KERN_ERR PREFIX "Evaluating processor object\n");
617 return -ENODEV;
618 }
619
620 /*
621 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
622 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
623 * arch/xxx/acpi.c
624 */
625 pr->acpi_id = object.processor.proc_id;
626 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700627 /*
628 * Declared with "Device" statement; match _UID.
629 * Note that we don't handle string _UIDs yet.
630 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400631 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300632 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
633 NULL, &value);
634 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700635 printk(KERN_ERR PREFIX
636 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300637 return -ENODEV;
638 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700639 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300640 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700642 cpu_index = get_cpu_id(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Len Brown4be44fc2005-08-05 00:44:28 -0400644 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500645 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400646 (num_online_cpus() == 1)) {
647 cpu_index = 0;
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Len Brown4be44fc2005-08-05 00:44:28 -0400650 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Len Brown4be44fc2005-08-05 00:44:28 -0400652 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Len Brown4be44fc2005-08-05 00:44:28 -0400654 /*
655 * Extra Processor objects may be enumerated on MP systems with
656 * less than the max # of CPUs. They should be ignored _iff
657 * they are physically not present.
658 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300659 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400660 if (ACPI_FAILURE
661 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400662 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400663 }
664 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800665 /*
666 * On some boxes several processors use the same processor bus id.
667 * But they are located in different scope. For example:
668 * \_SB.SCK0.CPU0
669 * \_SB.SCK1.CPU0
670 * Rename the processor device bus id. And the new bus id will be
671 * generated as the following format:
672 * CPU+CPU ID.
673 */
674 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400676 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 if (!object.processor.pblk_address)
679 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
680 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400681 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
682 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 else {
684 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300685 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
686 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 pr->pblk = object.processor.pblk_address;
689
690 /*
691 * We don't care about error returns - we just try to mark
692 * these reserved so that nobody else is confused into thinking
693 * that this region might be unused..
694 *
695 * (In particular, allocating the IO range for Cardbus)
696 */
697 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
698 }
699
Alex Chiangfe086a72008-04-29 15:05:29 -0700700 /*
701 * If ACPI describes a slot number for this CPU, we can use it
702 * ensure we get the right value in the "physical id" field
703 * of /proc/cpuinfo
704 */
705 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
706 if (ACPI_SUCCESS(status))
707 arch_fix_phys_package_id(pr->id, object.integer.value);
708
Patrick Mocheld550d982006-06-27 00:41:40 -0400709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Mike Travis706546d2008-06-09 16:22:23 -0700712static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400713
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000714static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000716 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300717 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400720 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 switch (event) {
723 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300724 saved = pr->performance_platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 acpi_processor_ppc_has_changed(pr);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300726 if (saved == pr->performance_platform_limit)
727 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400728 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400729 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800730 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100731 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800732 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
734 case ACPI_PROCESSOR_NOTIFY_POWER:
735 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400736 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800737 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100738 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 break;
Luming Yu01854e62007-05-26 22:49:58 +0800740 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
741 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400742 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800743 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100744 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 default:
746 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400747 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
749 }
750
Patrick Mocheld550d982006-06-27 00:41:40 -0400751 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200754static int acpi_cpu_soft_notify(struct notifier_block *nfb,
755 unsigned long action, void *hcpu)
756{
757 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700758 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200759
760 if (action == CPU_ONLINE && pr) {
761 acpi_processor_ppc_has_changed(pr);
762 acpi_processor_cst_has_changed(pr);
763 acpi_processor_tstate_has_changed(pr);
764 }
765 return NOTIFY_OK;
766}
767
768static struct notifier_block acpi_cpu_notifier =
769{
770 .notifier_call = acpi_cpu_soft_notify,
771};
772
Rakib Mullick941b10f2009-11-05 16:51:40 -0500773static int __cpuinit acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Len Brown4be44fc2005-08-05 00:44:28 -0400775 struct acpi_processor *pr = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000776 int result = 0;
777 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Burman Yan36bcbec2006-12-19 12:56:11 -0800779 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400781 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Yinghai Lueaa95842009-06-06 14:51:36 -0700783 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800784 kfree(pr);
785 return -ENOMEM;
786 }
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 pr->handle = device->handle;
789 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
790 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700791 device->driver_data = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 result = acpi_processor_get_info(device);
794 if (result) {
795 /* Processor is physically not present */
796 return 0;
797 }
798
799 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
800
801 /*
802 * Buggy BIOS check
803 * ACPI id of processors can be reported wrongly by the BIOS.
804 * Don't trust it blindly
805 */
806 if (per_cpu(processor_device_array, pr->id) != NULL &&
807 per_cpu(processor_device_array, pr->id) != device) {
808 printk(KERN_WARNING "BIOS reported wrong ACPI id "
809 "for the processor\n");
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000810 result = -ENODEV;
811 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813 per_cpu(processor_device_array, pr->id) = device;
814
815 per_cpu(processors, pr->id) = pr;
816
817 result = acpi_processor_add_fs(device);
818 if (result)
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000819 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 sysdev = get_cpu_sysdev(pr->id);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000822 if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev")) {
823 result = -EFAULT;
824 goto err_remove_fs;
825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* _PDC call should be done before doing anything else (if reqd.). */
828 arch_acpi_processor_init_pdc(pr);
829 acpi_processor_set_pdc(pr);
830 arch_acpi_processor_cleanup_pdc(pr);
831
832#ifdef CONFIG_CPU_FREQ
833 acpi_processor_ppc_has_changed(pr);
834#endif
835 acpi_processor_get_throttling_info(pr);
836 acpi_processor_get_limit_info(pr);
837
838
839 acpi_processor_power_init(pr, device);
840
841 pr->cdev = thermal_cooling_device_register("Processor", device,
842 &processor_cooling_ops);
843 if (IS_ERR(pr->cdev)) {
844 result = PTR_ERR(pr->cdev);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000845 goto err_power_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847
848 dev_info(&device->dev, "registered as cooling_device%d\n",
849 pr->cdev->id);
850
851 result = sysfs_create_link(&device->dev.kobj,
852 &pr->cdev->device.kobj,
853 "thermal_cooling");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000854 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000856 goto err_thermal_unregister;
857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 result = sysfs_create_link(&pr->cdev->device.kobj,
859 &device->dev.kobj,
860 "device");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000861 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000863 goto err_remove_sysfs;
864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Patrick Mocheld550d982006-06-27 00:41:40 -0400866 return 0;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000867
868err_remove_sysfs:
869 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
870err_thermal_unregister:
871 thermal_cooling_device_unregister(pr->cdev);
872err_power_exit:
873 acpi_processor_power_exit(pr, device);
874err_remove_fs:
875 acpi_processor_remove_fs(device);
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000876err_free_cpumask:
877 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Len Brown4be44fc2005-08-05 00:44:28 -0400882static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Len Brown4be44fc2005-08-05 00:44:28 -0400884 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400888 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200890 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800892 if (pr->id >= nr_cpu_ids)
893 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (type == ACPI_BUS_REMOVAL_EJECT) {
896 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400897 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899
900 acpi_processor_power_exit(pr, device);
901
Zhang Rui9f1eb992008-04-29 02:36:07 -0400902 sysfs_remove_link(&device->dev.kobj, "sysdev");
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 acpi_processor_remove_fs(device);
905
Zhao Yakuif28bb452008-02-15 08:34:37 +0800906 if (pr->cdev) {
907 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
908 sysfs_remove_link(&pr->cdev->device.kobj, "device");
909 thermal_cooling_device_unregister(pr->cdev);
910 pr->cdev = NULL;
911 }
Zhang Ruid9460fd222008-01-17 15:51:23 +0800912
Mike Travis706546d2008-06-09 16:22:23 -0700913 per_cpu(processors, pr->id) = NULL;
914 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800915
916free:
917 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 kfree(pr);
919
Patrick Mocheld550d982006-06-27 00:41:40 -0400920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923#ifdef CONFIG_ACPI_HOTPLUG_CPU
924/****************************************************************************
925 * Acpi processor hotplug support *
926 ****************************************************************************/
927
Len Brown4be44fc2005-08-05 00:44:28 -0400928static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Len Brown4be44fc2005-08-05 00:44:28 -0400930 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400931 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500935
936 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
937 return 1;
938
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500939 /*
940 * _STA is mandatory for a processor that supports hot plug
941 */
942 if (status == AE_NOT_FOUND)
943 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
944 "Processor does not support hot plug\n"));
945 else
946 ACPI_EXCEPTION((AE_INFO, status,
947 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951static
Len Brown4be44fc2005-08-05 00:44:28 -0400952int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Len Brown4be44fc2005-08-05 00:44:28 -0400954 acpi_handle phandle;
955 struct acpi_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400959 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961
962 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400963 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965
966 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400967 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
969
Patrick Mocheld550d982006-06-27 00:41:40 -0400970 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Sam Ravnborgb95e9e82008-02-17 13:22:48 +0100973static void __ref acpi_processor_hotplug_notify(acpi_handle handle,
974 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Len Brown4be44fc2005-08-05 00:44:28 -0400976 struct acpi_processor *pr;
977 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 int result;
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 switch (event) {
982 case ACPI_NOTIFY_BUS_CHECK:
983 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800984 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
985 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400986 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800987 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 if (!is_processor_present(handle))
990 break;
991
992 if (acpi_bus_get_device(handle, &device)) {
993 result = acpi_processor_device_add(handle, &device);
994 if (result)
Len Brown64684632006-06-26 23:41:38 -0400995 printk(KERN_ERR PREFIX
996 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 break;
998 }
Len Brown4be44fc2005-08-05 00:44:28 -0400999 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -04001001 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1002 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -04001005 printk(KERN_ERR PREFIX
1006 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 break;
1008 }
1009 pr = acpi_driver_data(device);
1010 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -04001011 printk(KERN_ERR PREFIX
1012 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001013 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 break;
1016 default:
1017 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001018 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 break;
1020 }
1021
Patrick Mocheld550d982006-06-27 00:41:40 -04001022 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
1025static acpi_status
1026processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001027 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Len Brown4be44fc2005-08-05 00:44:28 -04001029 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -04001031 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 status = acpi_get_type(handle, &type);
1034 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -04001035 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -04001038 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Len Brown4be44fc2005-08-05 00:44:28 -04001040 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 case INSTALL_NOTIFY_HANDLER:
1042 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001043 ACPI_SYSTEM_NOTIFY,
1044 acpi_processor_hotplug_notify,
1045 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 break;
1047 case UNINSTALL_NOTIFY_HANDLER:
1048 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001049 ACPI_SYSTEM_NOTIFY,
1050 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 break;
1052 default:
1053 break;
1054 }
1055
Len Brown4be44fc2005-08-05 00:44:28 -04001056 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
Len Brown4be44fc2005-08-05 00:44:28 -04001059static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -04001063 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065
1066 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -04001067 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 if (arch_register_cpu(*p_cpu)) {
1070 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -04001071 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073
Patrick Mocheld550d982006-06-27 00:41:40 -04001074 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
Len Brown4be44fc2005-08-05 00:44:28 -04001077static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Zhang Ruib62b8ef2008-04-29 02:35:56 -04001079 if (cpu_online(pr->id))
1080 cpu_down(pr->id);
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 arch_unregister_cpu(pr->id);
1083 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -04001084 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086#else
Len Brown4be44fc2005-08-05 00:44:28 -04001087static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 return AE_ERROR;
1090}
Len Brown4be44fc2005-08-05 00:44:28 -04001091static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
Len Brown4be44fc2005-08-05 00:44:28 -04001093 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095#endif
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097static
1098void acpi_processor_install_hotplug_notify(void)
1099{
1100#ifdef CONFIG_ACPI_HOTPLUG_CPU
1101 int action = INSTALL_NOTIFY_HANDLER;
1102 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001103 ACPI_ROOT_OBJECT,
1104 ACPI_UINT32_MAX,
1105 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001107 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110static
1111void acpi_processor_uninstall_hotplug_notify(void)
1112{
1113#ifdef CONFIG_ACPI_HOTPLUG_CPU
1114 int action = UNINSTALL_NOTIFY_HANDLER;
1115 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001116 ACPI_ROOT_OBJECT,
1117 ACPI_UINT32_MAX,
1118 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001120 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
1123/*
1124 * We keep the driver loaded even when ACPI is not running.
1125 * This is needed for the powernow-k8 driver, that works even without
1126 * ACPI, but needs symbols from this driver
1127 */
1128
Len Brown4be44fc2005-08-05 00:44:28 -04001129static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Len Brown4be44fc2005-08-05 00:44:28 -04001131 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Yinghai Luce8442b2009-08-26 14:29:26 -07001133 if (acpi_disabled)
1134 return 0;
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 memset(&errata, 0, sizeof(errata));
1137
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001138#ifdef CONFIG_SMP
1139 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1140 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001141 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001142#endif
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001143#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1145 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001146 return -ENOMEM;
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001147#endif
Zhao Yakui2a2a6472008-06-24 18:02:57 +08001148 /*
1149 * Check whether the system is DMI table. If yes, OSPM
1150 * should not use mwait for CPU-states.
1151 */
1152 dmi_check_system(processor_idle_dmi_table);
Len Brown4f86d3a2007-10-03 18:58:00 -04001153 result = cpuidle_register_driver(&acpi_idle_driver);
1154 if (result < 0)
1155 goto out_proc;
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -04001158 if (result < 0)
1159 goto out_cpuidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 acpi_processor_install_hotplug_notify();
1162
1163 acpi_thermal_cpufreq_init();
1164
1165 acpi_processor_ppc_init();
1166
Zhao Yakui11805092008-01-28 13:53:42 +08001167 acpi_processor_throttling_init();
1168
Patrick Mocheld550d982006-06-27 00:41:40 -04001169 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -04001170
1171out_cpuidle:
1172 cpuidle_unregister_driver(&acpi_idle_driver);
1173
1174out_proc:
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001175#ifdef CONFIG_ACPI_PROCFS
Len Brown4f86d3a2007-10-03 18:58:00 -04001176 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001177#endif
Len Brown4f86d3a2007-10-03 18:58:00 -04001178
1179 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
Len Brown4be44fc2005-08-05 00:44:28 -04001182static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Yinghai Luce8442b2009-08-26 14:29:26 -07001184 if (acpi_disabled)
1185 return;
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 acpi_processor_ppc_exit();
1188
1189 acpi_thermal_cpufreq_exit();
1190
1191 acpi_processor_uninstall_hotplug_notify();
1192
1193 acpi_bus_unregister_driver(&acpi_processor_driver);
1194
Len Brown4f86d3a2007-10-03 18:58:00 -04001195 cpuidle_unregister_driver(&acpi_idle_driver);
1196
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001197#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001199#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Patrick Mocheld550d982006-06-27 00:41:40 -04001201 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204module_init(acpi_processor_init);
1205module_exit(acpi_processor_exit);
1206
1207EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1208
1209MODULE_ALIAS("processor");