blob: 8014e2a3b261cd124e46e46ad4314ab911e46e3f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_processor.c - ACPI Processor Driver ($Revision: 71 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de>
7 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 * - Added processor hotplug support
9 *
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or (at
15 * your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 *
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 * TBD:
28 * 1. Make # power states dynamic.
29 * 2. Support duty_cycle values that span bit 4.
30 * 3. Optimize by having scheduler determine business instead of
31 * having us try to calculate it here.
32 * 4. Need C1 timing -- must modify kernel (IRQ handler) to get this.
33 */
34
35#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/init.h>
38#include <linux/types.h>
39#include <linux/pci.h>
40#include <linux/pm.h>
41#include <linux/cpufreq.h>
42#include <linux/cpu.h>
43#include <linux/proc_fs.h>
44#include <linux/seq_file.h>
45#include <linux/dmi.h>
46#include <linux/moduleparam.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040047#include <linux/cpuidle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <asm/io.h>
50#include <asm/system.h>
51#include <asm/cpu.h>
52#include <asm/delay.h>
53#include <asm/uaccess.h>
54#include <asm/processor.h>
55#include <asm/smp.h>
56#include <asm/acpi.h>
57
58#include <acpi/acpi_bus.h>
59#include <acpi/acpi_drivers.h>
60#include <acpi/processor.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
64#define ACPI_PROCESSOR_FILE_INFO "info"
65#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
66#define ACPI_PROCESSOR_FILE_LIMIT "limit"
67#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
68#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
Luming Yu01854e62007-05-26 22:49:58 +080069#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#define ACPI_PROCESSOR_LIMIT_USER 0
72#define ACPI_PROCESSOR_LIMIT_THERMAL 1
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050075ACPI_MODULE_NAME("processor_core");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Len Brownf52fd662007-02-12 22:42:12 -050077MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050078MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_LICENSE("GPL");
80
Len Brown4be44fc2005-08-05 00:44:28 -040081static int acpi_processor_add(struct acpi_device *device);
Len Brown4be44fc2005-08-05 00:44:28 -040082static int acpi_processor_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +000084static void acpi_processor_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
86static int acpi_processor_handle_eject(struct acpi_processor *pr);
Luming Yu01854e62007-05-26 22:49:58 +080087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Thomas Renninger1ba90e32007-07-23 14:44:41 +020089static const struct acpi_device_id processor_device_ids[] = {
Myron Stowead93a762008-11-04 14:52:55 -070090 {ACPI_PROCESSOR_OBJECT_HID, 0},
Bjorn Helgaas9eccbc22009-04-27 16:33:46 -060091 {"ACPI0007", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020092 {"", 0},
93};
94MODULE_DEVICE_TABLE(acpi, processor_device_ids);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static struct acpi_driver acpi_processor_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -050097 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -040098 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020099 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400100 .ops = {
101 .add = acpi_processor_add,
102 .remove = acpi_processor_remove,
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000103 .suspend = acpi_processor_suspend,
104 .resume = acpi_processor_resume,
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000105 .notify = acpi_processor_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400106 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
109#define INSTALL_NOTIFY_HANDLER 1
110#define UNINSTALL_NOTIFY_HANDLER 2
111
Arjan van de Vend7508032006-07-04 13:06:00 -0400112static const struct file_operations acpi_processor_info_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700113 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400114 .open = acpi_processor_info_open_fs,
115 .read = seq_read,
116 .llseek = seq_lseek,
117 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
Mike Travis706546d2008-06-09 16:22:23 -0700120DEFINE_PER_CPU(struct acpi_processor *, processors);
Andreas Mohr9f222712006-06-23 02:04:27 -0700121struct acpi_processor_errata errata __read_mostly;
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800122static int set_no_mwait(const struct dmi_system_id *id)
123{
124 printk(KERN_NOTICE PREFIX "%s detected - "
Pavel Machekd0057412008-08-12 12:24:34 +0200125 "disabling mwait for CPU C-states\n", id->ident);
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800126 idle_nomwait = 1;
127 return 0;
128}
129
130static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = {
131 {
132 set_no_mwait, "IFL91 board", {
133 DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),
134 DMI_MATCH(DMI_SYS_VENDOR, "ZEPTO"),
135 DMI_MATCH(DMI_PRODUCT_VERSION, "3215W"),
136 DMI_MATCH(DMI_BOARD_NAME, "IFL91") }, NULL},
137 {
138 set_no_mwait, "Extensa 5220", {
139 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
Dennis Jansen3df8a902008-08-15 01:28:57 +0200140 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
Zhao Yakui2a2a6472008-06-24 18:02:57 +0800141 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
142 DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL},
143 {},
144};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/* --------------------------------------------------------------------------
147 Errata Handling
148 -------------------------------------------------------------------------- */
149
Len Brown4be44fc2005-08-05 00:44:28 -0400150static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Len Brown4be44fc2005-08-05 00:44:28 -0400152 u8 value1 = 0;
153 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400157 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /*
160 * Note that 'dev' references the PIIX4 ACPI Controller.
161 */
162
Auke Kok44c10132007-06-08 15:46:36 -0700163 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 case 0:
165 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
166 break;
167 case 1:
168 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
169 break;
170 case 2:
171 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
172 break;
173 case 3:
174 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
175 break;
176 default:
177 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
178 break;
179 }
180
Auke Kok44c10132007-06-08 15:46:36 -0700181 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 case 0: /* PIIX4 A-step */
184 case 1: /* PIIX4 B-step */
185 /*
186 * See specification changes #13 ("Manual Throttle Duty Cycle")
187 * and #14 ("Enabling and Disabling Manual Throttle"), plus
188 * erratum #5 ("STPCLK# Deassertion Time") from the January
189 * 2002 PIIX4 specification update. Applies to only older
190 * PIIX4 models.
191 */
192 errata.piix4.throttle = 1;
193
194 case 2: /* PIIX4E */
195 case 3: /* PIIX4M */
196 /*
197 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
198 * Livelock") from the January 2002 PIIX4 specification update.
199 * Applies to all PIIX4 models.
200 */
201
202 /*
203 * BM-IDE
204 * ------
205 * Find the PIIX4 IDE Controller and get the Bus Master IDE
206 * Status register address. We'll use this later to read
207 * each IDE controller's DMA status to make sure we catch all
208 * DMA activity.
209 */
210 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400211 PCI_DEVICE_ID_INTEL_82371AB,
212 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (dev) {
214 errata.piix4.bmisx = pci_resource_start(dev, 4);
215 pci_dev_put(dev);
216 }
217
218 /*
219 * Type-F DMA
220 * ----------
221 * Find the PIIX4 ISA Controller and read the Motherboard
222 * DMA controller's status to see if Type-F (Fast) DMA mode
223 * is enabled (bit 7) on either channel. Note that we'll
224 * disable C3 support if this is enabled, as some legacy
225 * devices won't operate well if fast DMA is disabled.
226 */
227 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400228 PCI_DEVICE_ID_INTEL_82371AB_0,
229 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (dev) {
231 pci_read_config_byte(dev, 0x76, &value1);
232 pci_read_config_byte(dev, 0x77, &value2);
233 if ((value1 & 0x80) || (value2 & 0x80))
234 errata.piix4.fdma = 1;
235 pci_dev_put(dev);
236 }
237
238 break;
239 }
240
241 if (errata.piix4.bmisx)
242 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400243 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (errata.piix4.fdma)
245 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400246 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Patrick Mocheld550d982006-06-27 00:41:40 -0400248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400251static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Len Brown4be44fc2005-08-05 00:44:28 -0400253 int result = 0;
254 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400258 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 /*
261 * PIIX4
262 */
263 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400264 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
265 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (dev) {
267 result = acpi_processor_errata_piix4(dev);
268 pci_dev_put(dev);
269 }
270
Patrick Mocheld550d982006-06-27 00:41:40 -0400271 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800275 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400276 -------------------------------------------------------------------------- */
277
278/*
279 * _PDC is required for a BIOS-OS handshake for most of the newer
280 * ACPI processor features.
281 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400282static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400283{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400284 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400285 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400286
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400287
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400288 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400289 return status;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800290 if (idle_nomwait) {
291 /*
292 * If mwait is disabled for CPU C-states, the C2C3_FFH access
293 * mode will be disabled in the parameter of _PDC object.
294 * Of course C1_FFH access mode will also be disabled.
295 */
296 union acpi_object *obj;
297 u32 *buffer = NULL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400298
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800299 obj = pdc_in->pointer;
300 buffer = (u32 *)(obj->buffer.pointer);
301 buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH);
302
303 }
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400304 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400305
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400306 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400307 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400308 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400309
Patrick Mocheld550d982006-06-27 00:41:40 -0400310 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400311}
312
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400313/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 FS Interface (/proc)
315 -------------------------------------------------------------------------- */
316
Len Brown4be44fc2005-08-05 00:44:28 -0400317static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
320{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200321 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 if (!pr)
325 goto end;
326
327 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400328 "acpi id: %d\n"
329 "bus mastering control: %s\n"
330 "power management: %s\n"
331 "throttling control: %s\n"
332 "limit interface: %s\n",
333 pr->id,
334 pr->acpi_id,
335 pr->flags.bm_control ? "yes" : "no",
336 pr->flags.power ? "yes" : "no",
337 pr->flags.throttling ? "yes" : "no",
338 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Len Brown4be44fc2005-08-05 00:44:28 -0400340 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
345{
346 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400347 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Len Brown4be44fc2005-08-05 00:44:28 -0400350static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Len Brown4be44fc2005-08-05 00:44:28 -0400352 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if (!acpi_device_dir(device)) {
356 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400357 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400359 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700363 entry = proc_create_data(ACPI_PROCESSOR_FILE_INFO,
364 S_IRUGO, acpi_device_dir(device),
365 &acpi_processor_info_fops,
366 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400368 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 /* 'throttling' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700371 entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING,
372 S_IFREG | S_IRUGO | S_IWUSR,
373 acpi_device_dir(device),
374 &acpi_processor_throttling_fops,
375 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400377 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 /* 'limit' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700380 entry = proc_create_data(ACPI_PROCESSOR_FILE_LIMIT,
381 S_IFREG | S_IRUGO | S_IWUSR,
382 acpi_device_dir(device),
383 &acpi_processor_limit_fops,
384 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400386 return -EIO;
Patrick Mocheld550d982006-06-27 00:41:40 -0400387 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Len Brown4be44fc2005-08-05 00:44:28 -0400390static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400394 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
395 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400397 acpi_device_dir(device));
398 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
399 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
401 acpi_device_dir(device) = NULL;
402 }
403
Patrick Mocheld550d982006-06-27 00:41:40 -0400404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#ifndef CONFIG_SMP
Myron Stoweb26e9282008-11-04 14:53:00 -0700410static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id) { return -1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#else
412
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300413static struct acpi_table_madt *madt;
414
415static int map_lapic_id(struct acpi_subtable_header *entry,
416 u32 acpi_id, int *apic_id)
417{
418 struct acpi_madt_local_apic *lapic =
419 (struct acpi_madt_local_apic *)entry;
420 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
421 lapic->processor_id == acpi_id) {
422 *apic_id = lapic->id;
423 return 1;
424 }
425 return 0;
426}
427
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800428static int map_x2apic_id(struct acpi_subtable_header *entry,
429 int device_declaration, u32 acpi_id, int *apic_id)
430{
431 struct acpi_madt_local_x2apic *apic =
432 (struct acpi_madt_local_x2apic *)entry;
433 u32 tmp = apic->local_apic_id;
434
435 /* Only check enabled APICs*/
436 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
437 return 0;
438
439 /* Device statement declaration type */
440 if (device_declaration) {
441 if (apic->uid == acpi_id)
442 goto found;
443 }
444
445 return 0;
446found:
447 *apic_id = tmp;
448 return 1;
449}
450
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300451static int map_lsapic_id(struct acpi_subtable_header *entry,
Myron Stoweb26e9282008-11-04 14:53:00 -0700452 int device_declaration, u32 acpi_id, int *apic_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300453{
454 struct acpi_madt_local_sapic *lsapic =
455 (struct acpi_madt_local_sapic *)entry;
Myron Stoweb26e9282008-11-04 14:53:00 -0700456 u32 tmp = (lsapic->id << 8) | lsapic->eid;
457
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300458 /* Only check enabled APICs*/
Myron Stoweb26e9282008-11-04 14:53:00 -0700459 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
460 return 0;
461
462 /* Device statement declaration type */
463 if (device_declaration) {
464 if (entry->length < 16)
465 printk(KERN_ERR PREFIX
466 "Invalid LSAPIC with Device type processor (SAPIC ID %#x)\n",
467 tmp);
468 else if (lsapic->uid == acpi_id)
469 goto found;
470 /* Processor statement declaration type */
471 } else if (lsapic->processor_id == acpi_id)
472 goto found;
473
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300474 return 0;
Myron Stoweb26e9282008-11-04 14:53:00 -0700475found:
476 *apic_id = tmp;
477 return 1;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300478}
479
Myron Stoweb26e9282008-11-04 14:53:00 -0700480static int map_madt_entry(int type, u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300482 unsigned long madt_end, entry;
483 int apic_id = -1;
484
485 if (!madt)
486 return apic_id;
487
488 entry = (unsigned long)madt;
489 madt_end = entry + madt->header.length;
490
491 /* Parse all entries looking for a match. */
492
493 entry += sizeof(struct acpi_table_madt);
494 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
495 struct acpi_subtable_header *header =
496 (struct acpi_subtable_header *)entry;
497 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
498 if (map_lapic_id(header, acpi_id, &apic_id))
499 break;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800500 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
501 if (map_x2apic_id(header, type, acpi_id, &apic_id))
502 break;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300503 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700504 if (map_lsapic_id(header, type, acpi_id, &apic_id))
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300505 break;
506 }
507 entry += header->length;
508 }
509 return apic_id;
510}
511
Myron Stoweb26e9282008-11-04 14:53:00 -0700512static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300513{
514 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
515 union acpi_object *obj;
516 struct acpi_subtable_header *header;
517 int apic_id = -1;
518
519 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
520 goto exit;
521
522 if (!buffer.length || !buffer.pointer)
523 goto exit;
524
525 obj = buffer.pointer;
526 if (obj->type != ACPI_TYPE_BUFFER ||
527 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
528 goto exit;
529 }
530
531 header = (struct acpi_subtable_header *)obj->buffer.pointer;
532 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
533 map_lapic_id(header, acpi_id, &apic_id);
534 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700535 map_lsapic_id(header, type, acpi_id, &apic_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300536 }
537
538exit:
539 if (buffer.pointer)
540 kfree(buffer.pointer);
541 return apic_id;
542}
543
Myron Stoweb26e9282008-11-04 14:53:00 -0700544static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300545{
Len Brown4a35a462005-09-03 12:40:06 -0400546 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300547 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Myron Stoweb26e9282008-11-04 14:53:00 -0700549 apic_id = map_mat_entry(handle, type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300550 if (apic_id == -1)
Myron Stoweb26e9282008-11-04 14:53:00 -0700551 apic_id = map_madt_entry(type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300552 if (apic_id == -1)
553 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800555 for_each_possible_cpu(i) {
Mike Travis71b31232007-10-19 20:35:03 +0200556 if (cpu_physical_id(i) == apic_id)
Len Brown4a35a462005-09-03 12:40:06 -0400557 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 return -1;
560}
561#endif
562
563/* --------------------------------------------------------------------------
564 Driver Interface
565 -------------------------------------------------------------------------- */
566
Myron Stoweb26e9282008-11-04 14:53:00 -0700567static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Len Brown4be44fc2005-08-05 00:44:28 -0400569 acpi_status status = 0;
570 union acpi_object object = { 0 };
571 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700572 struct acpi_processor *pr;
573 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400574 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Myron Stoweb26e9282008-11-04 14:53:00 -0700576 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400578 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if (num_online_cpus() > 1)
581 errata.smp = TRUE;
582
583 acpi_processor_errata(pr);
584
585 /*
586 * Check to see if we have bus mastering arbitration control. This
587 * is required for proper C3 usage (to maintain cache coherency).
588 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300589 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 pr->flags.bm_control = 1;
591 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400592 "Bus mastering arbitration control present\n"));
593 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400595 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600597 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
598 /* Declared with "Processor" statement; match ProcessorID */
599 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
600 if (ACPI_FAILURE(status)) {
601 printk(KERN_ERR PREFIX "Evaluating processor object\n");
602 return -ENODEV;
603 }
604
605 /*
606 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
607 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
608 * arch/xxx/acpi.c
609 */
610 pr->acpi_id = object.processor.proc_id;
611 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700612 /*
613 * Declared with "Device" statement; match _UID.
614 * Note that we don't handle string _UIDs yet.
615 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400616 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300617 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
618 NULL, &value);
619 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700620 printk(KERN_ERR PREFIX
621 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300622 return -ENODEV;
623 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700624 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300625 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700627 cpu_index = get_cpu_id(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Len Brown4be44fc2005-08-05 00:44:28 -0400629 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500630 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400631 (num_online_cpus() == 1)) {
632 cpu_index = 0;
633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Len Brown4be44fc2005-08-05 00:44:28 -0400635 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Len Brown4be44fc2005-08-05 00:44:28 -0400637 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Len Brown4be44fc2005-08-05 00:44:28 -0400639 /*
640 * Extra Processor objects may be enumerated on MP systems with
641 * less than the max # of CPUs. They should be ignored _iff
642 * they are physically not present.
643 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300644 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400645 if (ACPI_FAILURE
646 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400647 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400648 }
649 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800650 /*
651 * On some boxes several processors use the same processor bus id.
652 * But they are located in different scope. For example:
653 * \_SB.SCK0.CPU0
654 * \_SB.SCK1.CPU0
655 * Rename the processor device bus id. And the new bus id will be
656 * generated as the following format:
657 * CPU+CPU ID.
658 */
659 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400661 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (!object.processor.pblk_address)
664 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
665 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400666 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
667 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 else {
669 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300670 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
671 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 pr->pblk = object.processor.pblk_address;
674
675 /*
676 * We don't care about error returns - we just try to mark
677 * these reserved so that nobody else is confused into thinking
678 * that this region might be unused..
679 *
680 * (In particular, allocating the IO range for Cardbus)
681 */
682 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
683 }
684
Alex Chiangfe086a72008-04-29 15:05:29 -0700685 /*
686 * If ACPI describes a slot number for this CPU, we can use it
687 * ensure we get the right value in the "physical id" field
688 * of /proc/cpuinfo
689 */
690 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
691 if (ACPI_SUCCESS(status))
692 arch_fix_phys_package_id(pr->id, object.integer.value);
693
Patrick Mocheld550d982006-06-27 00:41:40 -0400694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Mike Travis706546d2008-06-09 16:22:23 -0700697static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400698
Bjorn Helgaasddcd62d2009-06-22 20:41:14 +0000699static void acpi_processor_notify(struct acpi_device *device, u32 event)
700{
701 struct acpi_processor *pr = acpi_driver_data(device);
702 int saved;
703
704 if (!pr)
705 return;
706
707 switch (event) {
708 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
709 saved = pr->performance_platform_limit;
710 acpi_processor_ppc_has_changed(pr);
711 if (saved == pr->performance_platform_limit)
712 break;
713 acpi_bus_generate_proc_event(device, event,
714 pr->performance_platform_limit);
715 acpi_bus_generate_netlink_event(device->pnp.device_class,
716 dev_name(&device->dev), event,
717 pr->performance_platform_limit);
718 break;
719 case ACPI_PROCESSOR_NOTIFY_POWER:
720 acpi_processor_cst_has_changed(pr);
721 acpi_bus_generate_proc_event(device, event, 0);
722 acpi_bus_generate_netlink_event(device->pnp.device_class,
723 dev_name(&device->dev), event, 0);
724 break;
725 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
726 acpi_processor_tstate_has_changed(pr);
727 acpi_bus_generate_proc_event(device, event, 0);
728 acpi_bus_generate_netlink_event(device->pnp.device_class,
729 dev_name(&device->dev), event, 0);
730 default:
731 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
732 "Unsupported event [0x%x]\n", event));
733 break;
734 }
735
736 return;
737}
738
739static int acpi_cpu_soft_notify(struct notifier_block *nfb,
740 unsigned long action, void *hcpu)
741{
742 unsigned int cpu = (unsigned long)hcpu;
743 struct acpi_processor *pr = per_cpu(processors, cpu);
744
745 if (action == CPU_ONLINE && pr) {
746 acpi_processor_ppc_has_changed(pr);
747 acpi_processor_cst_has_changed(pr);
748 acpi_processor_tstate_has_changed(pr);
749 }
750 return NOTIFY_OK;
751}
752
753static struct notifier_block acpi_cpu_notifier =
754{
755 .notifier_call = acpi_cpu_soft_notify,
756};
757
758static int acpi_processor_add(struct acpi_device *device)
759{
760 struct acpi_processor *pr = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000761 int result = 0;
762 struct sys_device *sysdev;
Bjorn Helgaasddcd62d2009-06-22 20:41:14 +0000763
764 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
765 if (!pr)
766 return -ENOMEM;
767
768 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
769 kfree(pr);
770 return -ENOMEM;
771 }
772
773 pr->handle = device->handle;
774 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
775 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
776 device->driver_data = pr;
777
Myron Stoweb26e9282008-11-04 14:53:00 -0700778 result = acpi_processor_get_info(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (result) {
780 /* Processor is physically not present */
Patrick Mocheld550d982006-06-27 00:41:40 -0400781 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800784 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400786 /*
787 * Buggy BIOS check
788 * ACPI id of processors can be reported wrongly by the BIOS.
789 * Don't trust it blindly
790 */
Mike Travis706546d2008-06-09 16:22:23 -0700791 if (per_cpu(processor_device_array, pr->id) != NULL &&
792 per_cpu(processor_device_array, pr->id) != device) {
Joe Perches4fdb2a02007-11-19 17:48:02 -0800793 printk(KERN_WARNING "BIOS reported wrong ACPI id "
Len Brown0eacee52006-03-31 00:37:23 -0500794 "for the processor\n");
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000795 result = -ENODEV;
796 goto err_free_cpumask;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400797 }
Mike Travis706546d2008-06-09 16:22:23 -0700798 per_cpu(processor_device_array, pr->id) = device;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400799
Mike Travis706546d2008-06-09 16:22:23 -0700800 per_cpu(processors, pr->id) = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 result = acpi_processor_add_fs(device);
803 if (result)
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000804 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Zhang Rui9f1eb992008-04-29 02:36:07 -0400806 sysdev = get_cpu_sysdev(pr->id);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000807 if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev")) {
808 result = -EFAULT;
809 goto err_remove_fs;
810 }
Zhang Rui9f1eb992008-04-29 02:36:07 -0400811
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400812 /* _PDC call should be done before doing anything else (if reqd.). */
813 arch_acpi_processor_init_pdc(pr);
814 acpi_processor_set_pdc(pr);
Pallipadi, Venkatesh7b768f02009-06-19 17:14:59 -0700815 arch_acpi_processor_cleanup_pdc(pr);
816
Zhao Yakui0ac3c572007-11-15 17:05:46 +0800817#ifdef CONFIG_CPU_FREQ
818 acpi_processor_ppc_has_changed(pr);
819#endif
820 acpi_processor_get_throttling_info(pr);
821 acpi_processor_get_limit_info(pr);
822
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 acpi_processor_power_init(pr, device);
825
Zhang Ruid9460fd22008-01-17 15:51:23 +0800826 pr->cdev = thermal_cooling_device_register("Processor", device,
827 &processor_cooling_ops);
Thomas Sujithd76628c2008-02-15 18:26:54 -0500828 if (IS_ERR(pr->cdev)) {
829 result = PTR_ERR(pr->cdev);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000830 goto err_power_exit;
Thomas Sujithd76628c2008-02-15 18:26:54 -0500831 }
Zhang Ruid9460fd22008-01-17 15:51:23 +0800832
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200833 dev_info(&device->dev, "registered as cooling_device%d\n",
834 pr->cdev->id);
Julia Lawall90300622008-04-11 10:09:24 +0800835
836 result = sysfs_create_link(&device->dev.kobj,
837 &pr->cdev->device.kobj,
838 "thermal_cooling");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000839 if (result) {
Julia Lawall90300622008-04-11 10:09:24 +0800840 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000841 goto err_thermal_unregister;
842 }
Julia Lawall90300622008-04-11 10:09:24 +0800843 result = sysfs_create_link(&pr->cdev->device.kobj,
844 &device->dev.kobj,
845 "device");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000846 if (result) {
Julia Lawall90300622008-04-11 10:09:24 +0800847 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000848 goto err_remove_sysfs;
849 }
Zhang Ruid9460fd22008-01-17 15:51:23 +0800850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (pr->flags.throttling) {
852 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400853 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 printk(" %d throttling states", pr->throttling.state_count);
855 printk(")\n");
856 }
857
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000858 return 0;
859
860err_remove_sysfs:
861 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
862err_thermal_unregister:
863 thermal_cooling_device_unregister(pr->cdev);
864err_power_exit:
865 acpi_processor_power_exit(pr, device);
866err_remove_fs:
867 acpi_processor_remove_fs(device);
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000868err_free_cpumask:
869 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Patrick Mocheld550d982006-06-27 00:41:40 -0400871 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
Len Brown4be44fc2005-08-05 00:44:28 -0400874static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Len Brown4be44fc2005-08-05 00:44:28 -0400876 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400880 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200882 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800884 if (pr->id >= nr_cpu_ids)
885 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (type == ACPI_BUS_REMOVAL_EJECT) {
888 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400889 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891
892 acpi_processor_power_exit(pr, device);
893
Zhang Rui9f1eb992008-04-29 02:36:07 -0400894 sysfs_remove_link(&device->dev.kobj, "sysdev");
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 acpi_processor_remove_fs(device);
897
Zhao Yakuif28bb452008-02-15 08:34:37 +0800898 if (pr->cdev) {
899 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
900 sysfs_remove_link(&pr->cdev->device.kobj, "device");
901 thermal_cooling_device_unregister(pr->cdev);
902 pr->cdev = NULL;
903 }
Zhang Ruid9460fd22008-01-17 15:51:23 +0800904
Mike Travis706546d2008-06-09 16:22:23 -0700905 per_cpu(processors, pr->id) = NULL;
906 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800907
908free:
909 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 kfree(pr);
911
Patrick Mocheld550d982006-06-27 00:41:40 -0400912 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915#ifdef CONFIG_ACPI_HOTPLUG_CPU
916/****************************************************************************
917 * Acpi processor hotplug support *
918 ****************************************************************************/
919
Len Brown4be44fc2005-08-05 00:44:28 -0400920static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Len Brown4be44fc2005-08-05 00:44:28 -0400922 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400923 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500927
928 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
929 return 1;
930
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500931 /*
932 * _STA is mandatory for a processor that supports hot plug
933 */
934 if (status == AE_NOT_FOUND)
935 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
936 "Processor does not support hot plug\n"));
937 else
938 ACPI_EXCEPTION((AE_INFO, status,
939 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500940 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943static
Len Brown4be44fc2005-08-05 00:44:28 -0400944int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Len Brown4be44fc2005-08-05 00:44:28 -0400946 acpi_handle phandle;
947 struct acpi_device *pdev;
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
Patrick Mocheld550d982006-06-27 00:41:40 -0400962 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Sam Ravnborgb95e9e82008-02-17 13:22:48 +0100965static void __ref acpi_processor_hotplug_notify(acpi_handle handle,
966 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Len Brown4be44fc2005-08-05 00:44:28 -0400968 struct acpi_processor *pr;
969 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int result;
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 switch (event) {
974 case ACPI_NOTIFY_BUS_CHECK:
975 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800976 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
977 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400978 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800979 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 if (!is_processor_present(handle))
982 break;
983
984 if (acpi_bus_get_device(handle, &device)) {
985 result = acpi_processor_device_add(handle, &device);
986 if (result)
Len Brown64684632006-06-26 23:41:38 -0400987 printk(KERN_ERR PREFIX
988 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 break;
990 }
Len Brown4be44fc2005-08-05 00:44:28 -0400991 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400993 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
994 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400997 printk(KERN_ERR PREFIX
998 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 break;
1000 }
1001 pr = acpi_driver_data(device);
1002 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -04001003 printk(KERN_ERR PREFIX
1004 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001005 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 break;
1008 default:
1009 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001010 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 break;
1012 }
1013
Patrick Mocheld550d982006-06-27 00:41:40 -04001014 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
1017static acpi_status
1018processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001019 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Len Brown4be44fc2005-08-05 00:44:28 -04001021 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -04001023 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 status = acpi_get_type(handle, &type);
1026 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -04001027 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -04001030 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Len Brown4be44fc2005-08-05 00:44:28 -04001032 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 case INSTALL_NOTIFY_HANDLER:
1034 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001035 ACPI_SYSTEM_NOTIFY,
1036 acpi_processor_hotplug_notify,
1037 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 break;
1039 case UNINSTALL_NOTIFY_HANDLER:
1040 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001041 ACPI_SYSTEM_NOTIFY,
1042 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 break;
1044 default:
1045 break;
1046 }
1047
Len Brown4be44fc2005-08-05 00:44:28 -04001048 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
Len Brown4be44fc2005-08-05 00:44:28 -04001051static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -04001055 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057
1058 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -04001059 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 if (arch_register_cpu(*p_cpu)) {
1062 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -04001063 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065
Patrick Mocheld550d982006-06-27 00:41:40 -04001066 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
Len Brown4be44fc2005-08-05 00:44:28 -04001069static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Zhang Ruib62b8ef2008-04-29 02:35:56 -04001071 if (cpu_online(pr->id))
1072 cpu_down(pr->id);
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 arch_unregister_cpu(pr->id);
1075 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -04001076 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078#else
Len Brown4be44fc2005-08-05 00:44:28 -04001079static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 return AE_ERROR;
1082}
Len Brown4be44fc2005-08-05 00:44:28 -04001083static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Len Brown4be44fc2005-08-05 00:44:28 -04001085 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087#endif
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089static
1090void acpi_processor_install_hotplug_notify(void)
1091{
1092#ifdef CONFIG_ACPI_HOTPLUG_CPU
1093 int action = INSTALL_NOTIFY_HANDLER;
1094 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001095 ACPI_ROOT_OBJECT,
1096 ACPI_UINT32_MAX,
1097 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001099 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102static
1103void acpi_processor_uninstall_hotplug_notify(void)
1104{
1105#ifdef CONFIG_ACPI_HOTPLUG_CPU
1106 int action = UNINSTALL_NOTIFY_HANDLER;
1107 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001108 ACPI_ROOT_OBJECT,
1109 ACPI_UINT32_MAX,
1110 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001112 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
1115/*
1116 * We keep the driver loaded even when ACPI is not running.
1117 * This is needed for the powernow-k8 driver, that works even without
1118 * ACPI, but needs symbols from this driver
1119 */
1120
Len Brown4be44fc2005-08-05 00:44:28 -04001121static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Len Brown4be44fc2005-08-05 00:44:28 -04001123 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 memset(&errata, 0, sizeof(errata));
1126
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001127#ifdef CONFIG_SMP
1128 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1129 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001130 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001131#endif
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1134 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001135 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Zhao Yakui2a2a6472008-06-24 18:02:57 +08001137 /*
1138 * Check whether the system is DMI table. If yes, OSPM
1139 * should not use mwait for CPU-states.
1140 */
1141 dmi_check_system(processor_idle_dmi_table);
Len Brown4f86d3a2007-10-03 18:58:00 -04001142 result = cpuidle_register_driver(&acpi_idle_driver);
1143 if (result < 0)
1144 goto out_proc;
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -04001147 if (result < 0)
1148 goto out_cpuidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 acpi_processor_install_hotplug_notify();
1151
1152 acpi_thermal_cpufreq_init();
1153
1154 acpi_processor_ppc_init();
1155
Zhao Yakui11805092008-01-28 13:53:42 +08001156 acpi_processor_throttling_init();
1157
Patrick Mocheld550d982006-06-27 00:41:40 -04001158 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -04001159
1160out_cpuidle:
1161 cpuidle_unregister_driver(&acpi_idle_driver);
1162
1163out_proc:
1164 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1165
1166 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Len Brown4be44fc2005-08-05 00:44:28 -04001169static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 acpi_processor_ppc_exit();
1172
1173 acpi_thermal_cpufreq_exit();
1174
1175 acpi_processor_uninstall_hotplug_notify();
1176
1177 acpi_bus_unregister_driver(&acpi_processor_driver);
1178
Len Brown4f86d3a2007-10-03 18:58:00 -04001179 cpuidle_unregister_driver(&acpi_idle_driver);
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1182
Patrick Mocheld550d982006-06-27 00:41:40 -04001183 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186module_init(acpi_processor_init);
1187module_exit(acpi_processor_exit);
1188
1189EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1190
1191MODULE_ALIAS("processor");