blob: 98358251ce23aa2a2e6d96da467e738c617faf71 [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
Alex Chiang0131aa32010-02-22 12:11:08 -070077ACPI_MODULE_NAME("processor_driver");
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);
Naga Chumbalkar0f1d6832009-12-17 20:18:27 +0000126EXPORT_PER_CPU_SYMBOL(processors);
127
Andreas Mohr9f222712006-06-23 02:04:27 -0700128struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/* --------------------------------------------------------------------------
131 Errata Handling
132 -------------------------------------------------------------------------- */
133
Len Brown4be44fc2005-08-05 00:44:28 -0400134static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Len Brown4be44fc2005-08-05 00:44:28 -0400136 u8 value1 = 0;
137 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400141 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /*
144 * Note that 'dev' references the PIIX4 ACPI Controller.
145 */
146
Auke Kok44c10132007-06-08 15:46:36 -0700147 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 case 0:
149 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
150 break;
151 case 1:
152 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
153 break;
154 case 2:
155 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
156 break;
157 case 3:
158 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
159 break;
160 default:
161 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
162 break;
163 }
164
Auke Kok44c10132007-06-08 15:46:36 -0700165 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 case 0: /* PIIX4 A-step */
168 case 1: /* PIIX4 B-step */
169 /*
170 * See specification changes #13 ("Manual Throttle Duty Cycle")
171 * and #14 ("Enabling and Disabling Manual Throttle"), plus
172 * erratum #5 ("STPCLK# Deassertion Time") from the January
173 * 2002 PIIX4 specification update. Applies to only older
174 * PIIX4 models.
175 */
176 errata.piix4.throttle = 1;
177
178 case 2: /* PIIX4E */
179 case 3: /* PIIX4M */
180 /*
181 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
182 * Livelock") from the January 2002 PIIX4 specification update.
183 * Applies to all PIIX4 models.
184 */
185
186 /*
187 * BM-IDE
188 * ------
189 * Find the PIIX4 IDE Controller and get the Bus Master IDE
190 * Status register address. We'll use this later to read
191 * each IDE controller's DMA status to make sure we catch all
192 * DMA activity.
193 */
194 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400195 PCI_DEVICE_ID_INTEL_82371AB,
196 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (dev) {
198 errata.piix4.bmisx = pci_resource_start(dev, 4);
199 pci_dev_put(dev);
200 }
201
202 /*
203 * Type-F DMA
204 * ----------
205 * Find the PIIX4 ISA Controller and read the Motherboard
206 * DMA controller's status to see if Type-F (Fast) DMA mode
207 * is enabled (bit 7) on either channel. Note that we'll
208 * disable C3 support if this is enabled, as some legacy
209 * devices won't operate well if fast DMA is disabled.
210 */
211 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400212 PCI_DEVICE_ID_INTEL_82371AB_0,
213 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (dev) {
215 pci_read_config_byte(dev, 0x76, &value1);
216 pci_read_config_byte(dev, 0x77, &value2);
217 if ((value1 & 0x80) || (value2 & 0x80))
218 errata.piix4.fdma = 1;
219 pci_dev_put(dev);
220 }
221
222 break;
223 }
224
225 if (errata.piix4.bmisx)
226 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400227 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (errata.piix4.fdma)
229 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400230 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Patrick Mocheld550d982006-06-27 00:41:40 -0400232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400235static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Len Brown4be44fc2005-08-05 00:44:28 -0400237 int result = 0;
238 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400242 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 /*
245 * PIIX4
246 */
247 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400248 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
249 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (dev) {
251 result = acpi_processor_errata_piix4(dev);
252 pci_dev_put(dev);
253 }
254
Patrick Mocheld550d982006-06-27 00:41:40 -0400255 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/* --------------------------------------------------------------------------
259 FS Interface (/proc)
260 -------------------------------------------------------------------------- */
261
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800262#ifdef CONFIG_ACPI_PROCFS
Len Brown4be44fc2005-08-05 00:44:28 -0400263static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
266{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200267 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if (!pr)
271 goto end;
272
273 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400274 "acpi id: %d\n"
275 "bus mastering control: %s\n"
276 "power management: %s\n"
277 "throttling control: %s\n"
278 "limit interface: %s\n",
279 pr->id,
280 pr->acpi_id,
281 pr->flags.bm_control ? "yes" : "no",
282 pr->flags.power ? "yes" : "no",
283 pr->flags.throttling ? "yes" : "no",
284 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
291{
292 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400293 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Thomas Renningerbf8b4542009-10-26 17:44:18 +0100296static int __cpuinit acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Len Brown4be44fc2005-08-05 00:44:28 -0400298 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 if (!acpi_device_dir(device)) {
302 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400303 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400305 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700309 entry = proc_create_data(ACPI_PROCESSOR_FILE_INFO,
310 S_IRUGO, acpi_device_dir(device),
311 &acpi_processor_info_fops,
312 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400314 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /* 'throttling' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700317 entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING,
318 S_IFREG | S_IRUGO | S_IWUSR,
319 acpi_device_dir(device),
320 &acpi_processor_throttling_fops,
321 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400323 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 /* 'limit' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700326 entry = proc_create_data(ACPI_PROCESSOR_FILE_LIMIT,
327 S_IFREG | S_IRUGO | S_IWUSR,
328 acpi_device_dir(device),
329 &acpi_processor_limit_fops,
330 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400332 return -EIO;
Patrick Mocheld550d982006-06-27 00:41:40 -0400333 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
Len Brown4be44fc2005-08-05 00:44:28 -0400335static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400339 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
340 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400342 acpi_device_dir(device));
343 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
344 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
346 acpi_device_dir(device) = NULL;
347 }
348
Patrick Mocheld550d982006-06-27 00:41:40 -0400349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800351#else
352static inline int acpi_processor_add_fs(struct acpi_device *device)
353{
354 return 0;
355}
356static inline int acpi_processor_remove_fs(struct acpi_device *device)
357{
358 return 0;
359}
360#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300363
Alex Chiang2e9d5e42010-02-22 12:11:19 -0700364#ifdef CONFIG_SMP
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300365static struct acpi_table_madt *madt;
366
367static int map_lapic_id(struct acpi_subtable_header *entry,
368 u32 acpi_id, int *apic_id)
369{
370 struct acpi_madt_local_apic *lapic =
371 (struct acpi_madt_local_apic *)entry;
372 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
373 lapic->processor_id == acpi_id) {
374 *apic_id = lapic->id;
375 return 1;
376 }
377 return 0;
378}
379
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800380static int map_x2apic_id(struct acpi_subtable_header *entry,
381 int device_declaration, u32 acpi_id, int *apic_id)
382{
383 struct acpi_madt_local_x2apic *apic =
384 (struct acpi_madt_local_x2apic *)entry;
385 u32 tmp = apic->local_apic_id;
386
387 /* Only check enabled APICs*/
388 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
389 return 0;
390
391 /* Device statement declaration type */
392 if (device_declaration) {
393 if (apic->uid == acpi_id)
394 goto found;
395 }
396
397 return 0;
398found:
399 *apic_id = tmp;
400 return 1;
401}
402
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300403static int map_lsapic_id(struct acpi_subtable_header *entry,
Myron Stoweb26e9282008-11-04 14:53:00 -0700404 int device_declaration, u32 acpi_id, int *apic_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300405{
406 struct acpi_madt_local_sapic *lsapic =
407 (struct acpi_madt_local_sapic *)entry;
Myron Stoweb26e9282008-11-04 14:53:00 -0700408 u32 tmp = (lsapic->id << 8) | lsapic->eid;
409
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300410 /* Only check enabled APICs*/
Myron Stoweb26e9282008-11-04 14:53:00 -0700411 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
412 return 0;
413
414 /* Device statement declaration type */
415 if (device_declaration) {
416 if (entry->length < 16)
417 printk(KERN_ERR PREFIX
418 "Invalid LSAPIC with Device type processor (SAPIC ID %#x)\n",
419 tmp);
420 else if (lsapic->uid == acpi_id)
421 goto found;
422 /* Processor statement declaration type */
423 } else if (lsapic->processor_id == acpi_id)
424 goto found;
425
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300426 return 0;
Myron Stoweb26e9282008-11-04 14:53:00 -0700427found:
428 *apic_id = tmp;
429 return 1;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300430}
431
Myron Stoweb26e9282008-11-04 14:53:00 -0700432static int map_madt_entry(int type, u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300434 unsigned long madt_end, entry;
435 int apic_id = -1;
436
437 if (!madt)
438 return apic_id;
439
440 entry = (unsigned long)madt;
441 madt_end = entry + madt->header.length;
442
443 /* Parse all entries looking for a match. */
444
445 entry += sizeof(struct acpi_table_madt);
446 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
447 struct acpi_subtable_header *header =
448 (struct acpi_subtable_header *)entry;
449 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
450 if (map_lapic_id(header, acpi_id, &apic_id))
451 break;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800452 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
453 if (map_x2apic_id(header, type, acpi_id, &apic_id))
454 break;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300455 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700456 if (map_lsapic_id(header, type, acpi_id, &apic_id))
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300457 break;
458 }
459 entry += header->length;
460 }
461 return apic_id;
462}
463
Myron Stoweb26e9282008-11-04 14:53:00 -0700464static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300465{
466 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
467 union acpi_object *obj;
468 struct acpi_subtable_header *header;
469 int apic_id = -1;
470
471 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
472 goto exit;
473
474 if (!buffer.length || !buffer.pointer)
475 goto exit;
476
477 obj = buffer.pointer;
478 if (obj->type != ACPI_TYPE_BUFFER ||
479 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
480 goto exit;
481 }
482
483 header = (struct acpi_subtable_header *)obj->buffer.pointer;
484 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
485 map_lapic_id(header, acpi_id, &apic_id);
486 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700487 map_lsapic_id(header, type, acpi_id, &apic_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300488 }
489
490exit:
491 if (buffer.pointer)
492 kfree(buffer.pointer);
493 return apic_id;
494}
495
Alex Chiang2e9d5e42010-02-22 12:11:19 -0700496int acpi_get_cpuid(acpi_handle handle, int type, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300497{
Len Brown4a35a462005-09-03 12:40:06 -0400498 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300499 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Myron Stoweb26e9282008-11-04 14:53:00 -0700501 apic_id = map_mat_entry(handle, type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300502 if (apic_id == -1)
Myron Stoweb26e9282008-11-04 14:53:00 -0700503 apic_id = map_madt_entry(type, acpi_id);
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300504 if (apic_id == -1)
505 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Christoph Lameterfbb43ab2007-11-28 16:22:08 -0800507 for_each_possible_cpu(i) {
Mike Travis71b31232007-10-19 20:35:03 +0200508 if (cpu_physical_id(i) == apic_id)
Len Brown4a35a462005-09-03 12:40:06 -0400509 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 return -1;
512}
Alex Chiang2e9d5e42010-02-22 12:11:19 -0700513EXPORT_SYMBOL_GPL(acpi_get_cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514#endif
515
516/* --------------------------------------------------------------------------
517 Driver Interface
518 -------------------------------------------------------------------------- */
519
Myron Stoweb26e9282008-11-04 14:53:00 -0700520static int acpi_processor_get_info(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Len Brown4be44fc2005-08-05 00:44:28 -0400522 acpi_status status = 0;
523 union acpi_object object = { 0 };
524 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Myron Stoweb26e9282008-11-04 14:53:00 -0700525 struct acpi_processor *pr;
526 int cpu_index, device_declaration = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400527 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Myron Stoweb26e9282008-11-04 14:53:00 -0700529 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400531 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 if (num_online_cpus() > 1)
534 errata.smp = TRUE;
535
536 acpi_processor_errata(pr);
537
538 /*
539 * Check to see if we have bus mastering arbitration control. This
540 * is required for proper C3 usage (to maintain cache coherency).
541 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300542 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 pr->flags.bm_control = 1;
544 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400545 "Bus mastering arbitration control present\n"));
546 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400548 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Bjorn Helgaas6cc73b42009-04-27 16:33:41 -0600550 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
551 /* Declared with "Processor" statement; match ProcessorID */
552 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
553 if (ACPI_FAILURE(status)) {
554 printk(KERN_ERR PREFIX "Evaluating processor object\n");
555 return -ENODEV;
556 }
557
558 /*
559 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
560 * >>> 'acpi_get_processor_id(acpi_id, &id)' in
561 * arch/xxx/acpi.c
562 */
563 pr->acpi_id = object.processor.proc_id;
564 } else {
Myron Stoweb26e9282008-11-04 14:53:00 -0700565 /*
566 * Declared with "Device" statement; match _UID.
567 * Note that we don't handle string _UIDs yet.
568 */
Matthew Wilcox27663c52008-10-10 02:22:59 -0400569 unsigned long long value;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300570 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
571 NULL, &value);
572 if (ACPI_FAILURE(status)) {
Myron Stoweb26e9282008-11-04 14:53:00 -0700573 printk(KERN_ERR PREFIX
574 "Evaluating processor _UID [%#x]\n", status);
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300575 return -ENODEV;
576 }
Myron Stoweb26e9282008-11-04 14:53:00 -0700577 device_declaration = 1;
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300578 pr->acpi_id = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Alex Chiang2e9d5e42010-02-22 12:11:19 -0700580 cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Len Brown4be44fc2005-08-05 00:44:28 -0400582 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500583 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400584 (num_online_cpus() == 1)) {
585 cpu_index = 0;
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Len Brown4be44fc2005-08-05 00:44:28 -0400588 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Len Brown4be44fc2005-08-05 00:44:28 -0400590 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Len Brown4be44fc2005-08-05 00:44:28 -0400592 /*
593 * Extra Processor objects may be enumerated on MP systems with
594 * less than the max # of CPUs. They should be ignored _iff
595 * they are physically not present.
596 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300597 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400598 if (ACPI_FAILURE
599 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400600 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400601 }
602 }
Zhao Yakui7a04b842009-06-24 11:46:44 +0800603 /*
604 * On some boxes several processors use the same processor bus id.
605 * But they are located in different scope. For example:
606 * \_SB.SCK0.CPU0
607 * \_SB.SCK1.CPU0
608 * Rename the processor device bus id. And the new bus id will be
609 * generated as the following format:
610 * CPU+CPU ID.
611 */
612 sprintf(acpi_device_bid(device), "CPU%X", pr->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400614 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 if (!object.processor.pblk_address)
617 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
618 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400619 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
620 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 else {
622 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300623 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
624 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 pr->pblk = object.processor.pblk_address;
627
628 /*
629 * We don't care about error returns - we just try to mark
630 * these reserved so that nobody else is confused into thinking
631 * that this region might be unused..
632 *
633 * (In particular, allocating the IO range for Cardbus)
634 */
635 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
636 }
637
Alex Chiangfe086a72008-04-29 15:05:29 -0700638 /*
639 * If ACPI describes a slot number for this CPU, we can use it
640 * ensure we get the right value in the "physical id" field
641 * of /proc/cpuinfo
642 */
643 status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer);
644 if (ACPI_SUCCESS(status))
645 arch_fix_phys_package_id(pr->id, object.integer.value);
646
Patrick Mocheld550d982006-06-27 00:41:40 -0400647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Mike Travis706546d2008-06-09 16:22:23 -0700650static DEFINE_PER_CPU(void *, processor_device_array);
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400651
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000652static void acpi_processor_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Bjorn Helgaas7ec0a722009-03-30 17:48:24 +0000654 struct acpi_processor *pr = acpi_driver_data(device);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300655 int saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400658 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 switch (event) {
661 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300662 saved = pr->performance_platform_limit;
Zhao Yakuid81c45e12009-10-16 09:20:41 +0800663 acpi_processor_ppc_has_changed(pr, 1);
Alexey Starikovskiye790cc82007-11-21 03:23:32 +0300664 if (saved == pr->performance_platform_limit)
665 break;
Len Brown14e04fb2007-08-23 15:20:26 -0400666 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400667 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800668 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100669 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800670 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 break;
672 case ACPI_PROCESSOR_NOTIFY_POWER:
673 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400674 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800675 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100676 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
Luming Yu01854e62007-05-26 22:49:58 +0800678 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
679 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400680 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800681 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100682 dev_name(&device->dev), event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 default:
684 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400685 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 break;
687 }
688
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200692static int acpi_cpu_soft_notify(struct notifier_block *nfb,
693 unsigned long action, void *hcpu)
694{
695 unsigned int cpu = (unsigned long)hcpu;
Mike Travis706546d2008-06-09 16:22:23 -0700696 struct acpi_processor *pr = per_cpu(processors, cpu);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200697
698 if (action == CPU_ONLINE && pr) {
Zhao Yakuid81c45e12009-10-16 09:20:41 +0800699 acpi_processor_ppc_has_changed(pr, 0);
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200700 acpi_processor_cst_has_changed(pr);
701 acpi_processor_tstate_has_changed(pr);
702 }
703 return NOTIFY_OK;
704}
705
706static struct notifier_block acpi_cpu_notifier =
707{
708 .notifier_call = acpi_cpu_soft_notify,
709};
710
Rakib Mullick941b10f2009-11-05 16:51:40 -0500711static int __cpuinit acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Len Brown4be44fc2005-08-05 00:44:28 -0400713 struct acpi_processor *pr = NULL;
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000714 int result = 0;
715 struct sys_device *sysdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Burman Yan36bcbec2006-12-19 12:56:11 -0800717 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400719 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Yinghai Lueaa95842009-06-06 14:51:36 -0700721 if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800722 kfree(pr);
723 return -ENOMEM;
724 }
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 pr->handle = device->handle;
727 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
728 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700729 device->driver_data = pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 result = acpi_processor_get_info(device);
732 if (result) {
733 /* Processor is physically not present */
734 return 0;
735 }
736
737 BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
738
739 /*
740 * Buggy BIOS check
741 * ACPI id of processors can be reported wrongly by the BIOS.
742 * Don't trust it blindly
743 */
744 if (per_cpu(processor_device_array, pr->id) != NULL &&
745 per_cpu(processor_device_array, pr->id) != device) {
746 printk(KERN_WARNING "BIOS reported wrong ACPI id "
747 "for the processor\n");
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000748 result = -ENODEV;
749 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751 per_cpu(processor_device_array, pr->id) = device;
752
753 per_cpu(processors, pr->id) = pr;
754
755 result = acpi_processor_add_fs(device);
756 if (result)
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000757 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 sysdev = get_cpu_sysdev(pr->id);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000760 if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev")) {
761 result = -EFAULT;
762 goto err_remove_fs;
763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 /* _PDC call should be done before doing anything else (if reqd.). */
Alex Chiang43bab252009-12-20 12:23:16 -0700766 acpi_processor_set_pdc(pr->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768#ifdef CONFIG_CPU_FREQ
Zhao Yakuid81c45e12009-10-16 09:20:41 +0800769 acpi_processor_ppc_has_changed(pr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770#endif
771 acpi_processor_get_throttling_info(pr);
772 acpi_processor_get_limit_info(pr);
773
774
775 acpi_processor_power_init(pr, device);
776
777 pr->cdev = thermal_cooling_device_register("Processor", device,
778 &processor_cooling_ops);
779 if (IS_ERR(pr->cdev)) {
780 result = PTR_ERR(pr->cdev);
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000781 goto err_power_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783
Mike Travis13c41152009-12-14 13:38:30 -0800784 dev_dbg(&device->dev, "registered as cooling_device%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 pr->cdev->id);
786
787 result = sysfs_create_link(&device->dev.kobj,
788 &pr->cdev->device.kobj,
789 "thermal_cooling");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000790 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000792 goto err_thermal_unregister;
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 result = sysfs_create_link(&pr->cdev->device.kobj,
795 &device->dev.kobj,
796 "device");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000797 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 printk(KERN_ERR PREFIX "Create sysfs link\n");
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000799 goto err_remove_sysfs;
800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Patrick Mocheld550d982006-06-27 00:41:40 -0400802 return 0;
Bjorn Helgaasd4e05262009-06-22 20:41:09 +0000803
804err_remove_sysfs:
805 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
806err_thermal_unregister:
807 thermal_cooling_device_unregister(pr->cdev);
808err_power_exit:
809 acpi_processor_power_exit(pr, device);
810err_remove_fs:
811 acpi_processor_remove_fs(device);
Bjorn Helgaas970b0492009-06-22 20:41:19 +0000812err_free_cpumask:
813 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Len Brown4be44fc2005-08-05 00:44:28 -0400818static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Len Brown4be44fc2005-08-05 00:44:28 -0400820 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400824 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200826 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800828 if (pr->id >= nr_cpu_ids)
829 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 if (type == ACPI_BUS_REMOVAL_EJECT) {
832 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400833 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835
836 acpi_processor_power_exit(pr, device);
837
Zhang Rui9f1eb992008-04-29 02:36:07 -0400838 sysfs_remove_link(&device->dev.kobj, "sysdev");
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 acpi_processor_remove_fs(device);
841
Zhao Yakuif28bb452008-02-15 08:34:37 +0800842 if (pr->cdev) {
843 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
844 sysfs_remove_link(&pr->cdev->device.kobj, "device");
845 thermal_cooling_device_unregister(pr->cdev);
846 pr->cdev = NULL;
847 }
Zhang Ruid9460fd222008-01-17 15:51:23 +0800848
Mike Travis706546d2008-06-09 16:22:23 -0700849 per_cpu(processors, pr->id) = NULL;
850 per_cpu(processor_device_array, pr->id) = NULL;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800851
852free:
853 free_cpumask_var(pr->throttling.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 kfree(pr);
855
Patrick Mocheld550d982006-06-27 00:41:40 -0400856 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
859#ifdef CONFIG_ACPI_HOTPLUG_CPU
860/****************************************************************************
861 * Acpi processor hotplug support *
862 ****************************************************************************/
863
Len Brown4be44fc2005-08-05 00:44:28 -0400864static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Len Brown4be44fc2005-08-05 00:44:28 -0400866 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400867 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Zhang Ruicfaf3742008-01-09 02:17:47 -0500871
872 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
873 return 1;
874
Zhang Ruid0ce46f2008-02-23 01:53:09 -0500875 /*
876 * _STA is mandatory for a processor that supports hot plug
877 */
878 if (status == AE_NOT_FOUND)
879 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
880 "Processor does not support hot plug\n"));
881 else
882 ACPI_EXCEPTION((AE_INFO, status,
883 "Processor Device is not present"));
Zhang Ruicfaf3742008-01-09 02:17:47 -0500884 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887static
Len Brown4be44fc2005-08-05 00:44:28 -0400888int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Len Brown4be44fc2005-08-05 00:44:28 -0400890 acpi_handle phandle;
891 struct acpi_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400895 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
898 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400899 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
902 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400903 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905
Patrick Mocheld550d982006-06-27 00:41:40 -0400906 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Sam Ravnborgb95e9e82008-02-17 13:22:48 +0100909static void __ref acpi_processor_hotplug_notify(acpi_handle handle,
910 u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Len Brown4be44fc2005-08-05 00:44:28 -0400912 struct acpi_processor *pr;
913 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 int result;
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 switch (event) {
918 case ACPI_NOTIFY_BUS_CHECK:
919 case ACPI_NOTIFY_DEVICE_CHECK:
Glauber Costad6f882e2008-03-04 15:06:36 -0800920 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
921 "Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400922 (event == ACPI_NOTIFY_BUS_CHECK) ?
Glauber Costad6f882e2008-03-04 15:06:36 -0800923 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 if (!is_processor_present(handle))
926 break;
927
928 if (acpi_bus_get_device(handle, &device)) {
929 result = acpi_processor_device_add(handle, &device);
930 if (result)
Len Brown64684632006-06-26 23:41:38 -0400931 printk(KERN_ERR PREFIX
932 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 break;
934 }
Len Brown4be44fc2005-08-05 00:44:28 -0400935 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400937 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
938 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400941 printk(KERN_ERR PREFIX
942 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 break;
944 }
945 pr = acpi_driver_data(device);
946 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400947 printk(KERN_ERR PREFIX
948 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400949 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 break;
952 default:
953 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400954 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 break;
956 }
957
Patrick Mocheld550d982006-06-27 00:41:40 -0400958 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
961static acpi_status
962processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400963 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Len Brown4be44fc2005-08-05 00:44:28 -0400965 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400967 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 status = acpi_get_type(handle, &type);
970 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400971 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400974 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Len Brown4be44fc2005-08-05 00:44:28 -0400976 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 case INSTALL_NOTIFY_HANDLER:
978 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400979 ACPI_SYSTEM_NOTIFY,
980 acpi_processor_hotplug_notify,
981 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 break;
983 case UNINSTALL_NOTIFY_HANDLER:
984 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400985 ACPI_SYSTEM_NOTIFY,
986 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 break;
988 default:
989 break;
990 }
991
Len Brown4be44fc2005-08-05 00:44:28 -0400992 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Len Brown4be44fc2005-08-05 00:44:28 -0400995static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400999 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001
1002 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -04001003 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 if (arch_register_cpu(*p_cpu)) {
1006 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -04001007 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009
Patrick Mocheld550d982006-06-27 00:41:40 -04001010 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Len Brown4be44fc2005-08-05 00:44:28 -04001013static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Zhang Ruib62b8ef2008-04-29 02:35:56 -04001015 if (cpu_online(pr->id))
1016 cpu_down(pr->id);
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 arch_unregister_cpu(pr->id);
1019 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -04001020 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022#else
Len Brown4be44fc2005-08-05 00:44:28 -04001023static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
1025 return AE_ERROR;
1026}
Len Brown4be44fc2005-08-05 00:44:28 -04001027static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Len Brown4be44fc2005-08-05 00:44:28 -04001029 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031#endif
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033static
1034void acpi_processor_install_hotplug_notify(void)
1035{
1036#ifdef CONFIG_ACPI_HOTPLUG_CPU
1037 int action = INSTALL_NOTIFY_HANDLER;
1038 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001039 ACPI_ROOT_OBJECT,
1040 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +08001041 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001043 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046static
1047void acpi_processor_uninstall_hotplug_notify(void)
1048{
1049#ifdef CONFIG_ACPI_HOTPLUG_CPU
1050 int action = UNINSTALL_NOTIFY_HANDLER;
1051 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001052 ACPI_ROOT_OBJECT,
1053 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +08001054 processor_walk_namespace_cb, NULL, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001056 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
1059/*
1060 * We keep the driver loaded even when ACPI is not running.
1061 * This is needed for the powernow-k8 driver, that works even without
1062 * ACPI, but needs symbols from this driver
1063 */
1064
Len Brown4be44fc2005-08-05 00:44:28 -04001065static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Len Brown4be44fc2005-08-05 00:44:28 -04001067 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Yinghai Luce8442b2009-08-26 14:29:26 -07001069 if (acpi_disabled)
1070 return 0;
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 memset(&errata, 0, sizeof(errata));
1073
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001074#ifdef CONFIG_SMP
1075 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1076 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001077 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001078#endif
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001079#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1081 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001082 return -ENOMEM;
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001083#endif
Len Brown4f86d3a2007-10-03 18:58:00 -04001084 result = cpuidle_register_driver(&acpi_idle_driver);
1085 if (result < 0)
1086 goto out_proc;
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 result = acpi_bus_register_driver(&acpi_processor_driver);
Len Brown4f86d3a2007-10-03 18:58:00 -04001089 if (result < 0)
1090 goto out_cpuidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 acpi_processor_install_hotplug_notify();
1093
1094 acpi_thermal_cpufreq_init();
1095
1096 acpi_processor_ppc_init();
1097
Zhao Yakui11805092008-01-28 13:53:42 +08001098 acpi_processor_throttling_init();
1099
Patrick Mocheld550d982006-06-27 00:41:40 -04001100 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -04001101
1102out_cpuidle:
1103 cpuidle_unregister_driver(&acpi_idle_driver);
1104
1105out_proc:
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001106#ifdef CONFIG_ACPI_PROCFS
Len Brown4f86d3a2007-10-03 18:58:00 -04001107 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001108#endif
Len Brown4f86d3a2007-10-03 18:58:00 -04001109
1110 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
Len Brown4be44fc2005-08-05 00:44:28 -04001113static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Yinghai Luce8442b2009-08-26 14:29:26 -07001115 if (acpi_disabled)
1116 return;
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 acpi_processor_ppc_exit();
1119
1120 acpi_thermal_cpufreq_exit();
1121
1122 acpi_processor_uninstall_hotplug_notify();
1123
1124 acpi_bus_unregister_driver(&acpi_processor_driver);
1125
Len Brown4f86d3a2007-10-03 18:58:00 -04001126 cpuidle_unregister_driver(&acpi_idle_driver);
1127
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001128#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001130#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Patrick Mocheld550d982006-06-27 00:41:40 -04001132 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135module_init(acpi_processor_init);
1136module_exit(acpi_processor_exit);
1137
1138EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1139
1140MODULE_ALIAS("processor");