blob: 9f11dc296cdd7bc29f5545cd8524eb03ede594e3 [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>
47
48#include <asm/io.h>
49#include <asm/system.h>
50#include <asm/cpu.h>
51#include <asm/delay.h>
52#include <asm/uaccess.h>
53#include <asm/processor.h>
54#include <asm/smp.h>
55#include <asm/acpi.h>
56
57#include <acpi/acpi_bus.h>
58#include <acpi/acpi_drivers.h>
59#include <acpi/processor.h>
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define ACPI_PROCESSOR_COMPONENT 0x01000000
62#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
64#define ACPI_PROCESSOR_FILE_INFO "info"
65#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
66#define ACPI_PROCESSOR_FILE_LIMIT "limit"
67#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
68#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
Luming Yu01854e62007-05-26 22:49:58 +080069#define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#define ACPI_PROCESSOR_LIMIT_USER 0
72#define ACPI_PROCESSOR_LIMIT_THERMAL 1
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050075ACPI_MODULE_NAME("processor_core");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Len Brownf52fd662007-02-12 22:42:12 -050077MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050078MODULE_DESCRIPTION("ACPI Processor Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_LICENSE("GPL");
80
Len Brown4be44fc2005-08-05 00:44:28 -040081static int acpi_processor_add(struct acpi_device *device);
82static int acpi_processor_start(struct acpi_device *device);
83static int acpi_processor_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040085static void acpi_processor_notify(acpi_handle handle, u32 event, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
87static int acpi_processor_handle_eject(struct acpi_processor *pr);
Luming Yu01854e62007-05-26 22:49:58 +080088extern int acpi_processor_tstate_has_changed(struct acpi_processor *pr);
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Thomas Renninger1ba90e32007-07-23 14:44:41 +020091static const struct acpi_device_id processor_device_ids[] = {
92 {ACPI_PROCESSOR_HID, 0},
93 {"", 0},
94};
95MODULE_DEVICE_TABLE(acpi, processor_device_ids);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static struct acpi_driver acpi_processor_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -050098 .name = "processor",
Len Brown4be44fc2005-08-05 00:44:28 -040099 .class = ACPI_PROCESSOR_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200100 .ids = processor_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400101 .ops = {
102 .add = acpi_processor_add,
103 .remove = acpi_processor_remove,
104 .start = acpi_processor_start,
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000105 .suspend = acpi_processor_suspend,
106 .resume = acpi_processor_resume,
Len Brown4be44fc2005-08-05 00:44:28 -0400107 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110#define INSTALL_NOTIFY_HANDLER 1
111#define UNINSTALL_NOTIFY_HANDLER 2
112
Arjan van de Vend7508032006-07-04 13:06:00 -0400113static const struct file_operations acpi_processor_info_fops = {
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
Len Brown4be44fc2005-08-05 00:44:28 -0400120struct acpi_processor *processors[NR_CPUS];
Andreas Mohr9f222712006-06-23 02:04:27 -0700121struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/* --------------------------------------------------------------------------
124 Errata Handling
125 -------------------------------------------------------------------------- */
126
Len Brown4be44fc2005-08-05 00:44:28 -0400127static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Len Brown4be44fc2005-08-05 00:44:28 -0400129 u8 value1 = 0;
130 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400134 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /*
137 * Note that 'dev' references the PIIX4 ACPI Controller.
138 */
139
Auke Kok44c10132007-06-08 15:46:36 -0700140 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 case 0:
142 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
143 break;
144 case 1:
145 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
146 break;
147 case 2:
148 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
149 break;
150 case 3:
151 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
152 break;
153 default:
154 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
155 break;
156 }
157
Auke Kok44c10132007-06-08 15:46:36 -0700158 switch (dev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 case 0: /* PIIX4 A-step */
161 case 1: /* PIIX4 B-step */
162 /*
163 * See specification changes #13 ("Manual Throttle Duty Cycle")
164 * and #14 ("Enabling and Disabling Manual Throttle"), plus
165 * erratum #5 ("STPCLK# Deassertion Time") from the January
166 * 2002 PIIX4 specification update. Applies to only older
167 * PIIX4 models.
168 */
169 errata.piix4.throttle = 1;
170
171 case 2: /* PIIX4E */
172 case 3: /* PIIX4M */
173 /*
174 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
175 * Livelock") from the January 2002 PIIX4 specification update.
176 * Applies to all PIIX4 models.
177 */
178
179 /*
180 * BM-IDE
181 * ------
182 * Find the PIIX4 IDE Controller and get the Bus Master IDE
183 * Status register address. We'll use this later to read
184 * each IDE controller's DMA status to make sure we catch all
185 * DMA activity.
186 */
187 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400188 PCI_DEVICE_ID_INTEL_82371AB,
189 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (dev) {
191 errata.piix4.bmisx = pci_resource_start(dev, 4);
192 pci_dev_put(dev);
193 }
194
195 /*
196 * Type-F DMA
197 * ----------
198 * Find the PIIX4 ISA Controller and read the Motherboard
199 * DMA controller's status to see if Type-F (Fast) DMA mode
200 * is enabled (bit 7) on either channel. Note that we'll
201 * disable C3 support if this is enabled, as some legacy
202 * devices won't operate well if fast DMA is disabled.
203 */
204 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400205 PCI_DEVICE_ID_INTEL_82371AB_0,
206 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (dev) {
208 pci_read_config_byte(dev, 0x76, &value1);
209 pci_read_config_byte(dev, 0x77, &value2);
210 if ((value1 & 0x80) || (value2 & 0x80))
211 errata.piix4.fdma = 1;
212 pci_dev_put(dev);
213 }
214
215 break;
216 }
217
218 if (errata.piix4.bmisx)
219 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400220 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (errata.piix4.fdma)
222 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400223 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Patrick Mocheld550d982006-06-27 00:41:40 -0400225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400228static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Len Brown4be44fc2005-08-05 00:44:28 -0400230 int result = 0;
231 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400235 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 /*
238 * PIIX4
239 */
240 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400241 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
242 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (dev) {
244 result = acpi_processor_errata_piix4(dev);
245 pci_dev_put(dev);
246 }
247
Patrick Mocheld550d982006-06-27 00:41:40 -0400248 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800252 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400253 -------------------------------------------------------------------------- */
254
255/*
256 * _PDC is required for a BIOS-OS handshake for most of the newer
257 * ACPI processor features.
258 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400259static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400260{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400261 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400262 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400263
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400264
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400265 if (!pdc_in)
Patrick Mocheld550d982006-06-27 00:41:40 -0400266 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400267
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400268 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400269
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400270 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400271 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400272 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400273
Patrick Mocheld550d982006-06-27 00:41:40 -0400274 return status;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400275}
276
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400277/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 FS Interface (/proc)
279 -------------------------------------------------------------------------- */
280
Len Brown4be44fc2005-08-05 00:44:28 -0400281static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
284{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200285 struct acpi_processor *pr = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (!pr)
289 goto end;
290
291 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400292 "acpi id: %d\n"
293 "bus mastering control: %s\n"
294 "power management: %s\n"
295 "throttling control: %s\n"
296 "limit interface: %s\n",
297 pr->id,
298 pr->acpi_id,
299 pr->flags.bm_control ? "yes" : "no",
300 pr->flags.power ? "yes" : "no",
301 pr->flags.throttling ? "yes" : "no",
302 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400305 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
309{
310 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400311 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Len Brown4be44fc2005-08-05 00:44:28 -0400314static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Len Brown4be44fc2005-08-05 00:44:28 -0400316 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (!acpi_device_dir(device)) {
320 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400321 acpi_processor_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400323 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325 acpi_device_dir(device)->owner = THIS_MODULE;
326
327 /* 'info' [R] */
328 entry = create_proc_entry(ACPI_PROCESSOR_FILE_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400329 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400331 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 else {
333 entry->proc_fops = &acpi_processor_info_fops;
334 entry->data = acpi_driver_data(device);
335 entry->owner = THIS_MODULE;
336 }
337
338 /* 'throttling' [R/W] */
339 entry = create_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400340 S_IFREG | S_IRUGO | S_IWUSR,
341 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400343 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 else {
345 entry->proc_fops = &acpi_processor_throttling_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 entry->data = acpi_driver_data(device);
347 entry->owner = THIS_MODULE;
348 }
349
350 /* 'limit' [R/W] */
351 entry = create_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
Len Brown4be44fc2005-08-05 00:44:28 -0400352 S_IFREG | S_IRUGO | S_IWUSR,
353 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400355 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 else {
357 entry->proc_fops = &acpi_processor_limit_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 entry->data = acpi_driver_data(device);
359 entry->owner = THIS_MODULE;
360 }
361
Patrick Mocheld550d982006-06-27 00:41:40 -0400362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Len Brown4be44fc2005-08-05 00:44:28 -0400365static int acpi_processor_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400369 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
370 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400372 acpi_device_dir(device));
373 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
374 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
376 acpi_device_dir(device) = NULL;
377 }
378
Patrick Mocheld550d982006-06-27 00:41:40 -0400379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
382/* Use the acpiid in MADT to map cpus in case of SMP */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#ifndef CONFIG_SMP
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300385static int get_cpu_id(acpi_handle handle, u32 acpi_id) {return -1;}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#else
387
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300388static struct acpi_table_madt *madt;
389
390static int map_lapic_id(struct acpi_subtable_header *entry,
391 u32 acpi_id, int *apic_id)
392{
393 struct acpi_madt_local_apic *lapic =
394 (struct acpi_madt_local_apic *)entry;
395 if ((lapic->lapic_flags & ACPI_MADT_ENABLED) &&
396 lapic->processor_id == acpi_id) {
397 *apic_id = lapic->id;
398 return 1;
399 }
400 return 0;
401}
402
403static int map_lsapic_id(struct acpi_subtable_header *entry,
404 u32 acpi_id, int *apic_id)
405{
406 struct acpi_madt_local_sapic *lsapic =
407 (struct acpi_madt_local_sapic *)entry;
408 /* Only check enabled APICs*/
409 if (lsapic->lapic_flags & ACPI_MADT_ENABLED) {
410 /* First check against id */
411 if (lsapic->processor_id == acpi_id) {
Alexey Starikovskiy615d5f22007-02-12 10:51:23 -0500412 *apic_id = (lsapic->id << 8) | lsapic->eid;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300413 return 1;
414 /* Check against optional uid */
415 } else if (entry->length >= 16 &&
416 lsapic->uid == acpi_id) {
417 *apic_id = lsapic->uid;
418 return 1;
419 }
420 }
421 return 0;
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#ifdef CONFIG_IA64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#define arch_cpu_to_apicid ia64_cpu_to_sapicid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#define arch_cpu_to_apicid x86_cpu_to_apicid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#endif
429
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300430static int map_madt_entry(u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300432 unsigned long madt_end, entry;
433 int apic_id = -1;
434
435 if (!madt)
436 return apic_id;
437
438 entry = (unsigned long)madt;
439 madt_end = entry + madt->header.length;
440
441 /* Parse all entries looking for a match. */
442
443 entry += sizeof(struct acpi_table_madt);
444 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
445 struct acpi_subtable_header *header =
446 (struct acpi_subtable_header *)entry;
447 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
448 if (map_lapic_id(header, acpi_id, &apic_id))
449 break;
450 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
451 if (map_lsapic_id(header, acpi_id, &apic_id))
452 break;
453 }
454 entry += header->length;
455 }
456 return apic_id;
457}
458
459static int map_mat_entry(acpi_handle handle, u32 acpi_id)
460{
461 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
462 union acpi_object *obj;
463 struct acpi_subtable_header *header;
464 int apic_id = -1;
465
466 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
467 goto exit;
468
469 if (!buffer.length || !buffer.pointer)
470 goto exit;
471
472 obj = buffer.pointer;
473 if (obj->type != ACPI_TYPE_BUFFER ||
474 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
475 goto exit;
476 }
477
478 header = (struct acpi_subtable_header *)obj->buffer.pointer;
479 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
480 map_lapic_id(header, acpi_id, &apic_id);
481 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
482 map_lsapic_id(header, acpi_id, &apic_id);
483 }
484
485exit:
486 if (buffer.pointer)
487 kfree(buffer.pointer);
488 return apic_id;
489}
490
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300491static int get_cpu_id(acpi_handle handle, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300492{
Len Brown4a35a462005-09-03 12:40:06 -0400493 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300494 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300496 apic_id = map_mat_entry(handle, acpi_id);
497 if (apic_id == -1)
498 apic_id = map_madt_entry(acpi_id);
499 if (apic_id == -1)
500 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300502 for (i = 0; i < NR_CPUS; ++i) {
Len Brown4a35a462005-09-03 12:40:06 -0400503 if (arch_cpu_to_apicid[i] == apic_id)
504 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506 return -1;
507}
508#endif
509
510/* --------------------------------------------------------------------------
511 Driver Interface
512 -------------------------------------------------------------------------- */
513
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300514static int acpi_processor_get_info(struct acpi_processor *pr, unsigned has_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Len Brown4be44fc2005-08-05 00:44:28 -0400516 acpi_status status = 0;
517 union acpi_object object = { 0 };
518 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Ashok Rajdf42baa2006-03-28 17:04:00 -0500519 int cpu_index;
Len Brown4be44fc2005-08-05 00:44:28 -0400520 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400524 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if (num_online_cpus() > 1)
527 errata.smp = TRUE;
528
529 acpi_processor_errata(pr);
530
531 /*
532 * Check to see if we have bus mastering arbitration control. This
533 * is required for proper C3 usage (to maintain cache coherency).
534 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300535 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 pr->flags.bm_control = 1;
537 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400538 "Bus mastering arbitration control present\n"));
539 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400541 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300543 /* Check if it is a Device with HID and UID */
544 if (has_uid) {
545 unsigned long value;
546 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
547 NULL, &value);
548 if (ACPI_FAILURE(status)) {
549 printk(KERN_ERR PREFIX "Evaluating processor _UID\n");
550 return -ENODEV;
551 }
552 pr->acpi_id = value;
553 } else {
554 /*
555 * Evalute the processor object. Note that it is common on SMP to
556 * have the first (boot) processor with a valid PBLK address while
557 * all others have a NULL address.
558 */
559 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
560 if (ACPI_FAILURE(status)) {
561 printk(KERN_ERR PREFIX "Evaluating processor object\n");
562 return -ENODEV;
563 }
564
565 /*
566 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
567 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
568 */
569 pr->acpi_id = object.processor.proc_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300571 cpu_index = get_cpu_id(pr->handle, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Len Brown4be44fc2005-08-05 00:44:28 -0400573 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500574 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400575 (num_online_cpus() == 1)) {
576 cpu_index = 0;
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Len Brown4be44fc2005-08-05 00:44:28 -0400579 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Len Brown4be44fc2005-08-05 00:44:28 -0400581 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Len Brown4be44fc2005-08-05 00:44:28 -0400583 /*
584 * Extra Processor objects may be enumerated on MP systems with
585 * less than the max # of CPUs. They should be ignored _iff
586 * they are physically not present.
587 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300588 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400589 if (ACPI_FAILURE
590 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400591 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400592 }
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400596 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 if (!object.processor.pblk_address)
599 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
600 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400601 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
602 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 else {
604 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300605 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
606 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 pr->pblk = object.processor.pblk_address;
609
610 /*
611 * We don't care about error returns - we just try to mark
612 * these reserved so that nobody else is confused into thinking
613 * that this region might be unused..
614 *
615 * (In particular, allocating the IO range for Cardbus)
616 */
617 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
618 }
619
620#ifdef CONFIG_CPU_FREQ
621 acpi_processor_ppc_has_changed(pr);
622#endif
623 acpi_processor_get_throttling_info(pr);
624 acpi_processor_get_limit_info(pr);
625
Patrick Mocheld550d982006-06-27 00:41:40 -0400626 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400629static void *processor_device_array[NR_CPUS];
630
Pierre Ossman7af8b662006-10-10 14:20:31 -0700631static int __cpuinit acpi_processor_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Len Brown4be44fc2005-08-05 00:44:28 -0400633 int result = 0;
634 acpi_status status = AE_OK;
635 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 pr = acpi_driver_data(device);
639
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300640 result = acpi_processor_get_info(pr, device->flags.unique_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (result) {
642 /* Processor is physically not present */
Patrick Mocheld550d982006-06-27 00:41:40 -0400643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
646 BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
647
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400648 /*
649 * Buggy BIOS check
650 * ACPI id of processors can be reported wrongly by the BIOS.
651 * Don't trust it blindly
652 */
653 if (processor_device_array[pr->id] != NULL &&
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200654 processor_device_array[pr->id] != device) {
Len Brown0eacee52006-03-31 00:37:23 -0500655 printk(KERN_WARNING "BIOS reported wrong ACPI id"
656 "for the processor\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400657 return -ENODEV;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400658 }
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200659 processor_device_array[pr->id] = device;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 processors[pr->id] = pr;
662
663 result = acpi_processor_add_fs(device);
664 if (result)
665 goto end;
666
667 status = acpi_install_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400668 acpi_processor_notify, pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400670 /* _PDC call should be done before doing anything else (if reqd.). */
671 arch_acpi_processor_init_pdc(pr);
672 acpi_processor_set_pdc(pr);
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 acpi_processor_power_init(pr, device);
675
676 if (pr->flags.throttling) {
677 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400678 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 printk(" %d throttling states", pr->throttling.state_count);
680 printk(")\n");
681 }
682
Len Brown4be44fc2005-08-05 00:44:28 -0400683 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Patrick Mocheld550d982006-06-27 00:41:40 -0400685 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Len Brown4be44fc2005-08-05 00:44:28 -0400688static void acpi_processor_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200690 struct acpi_processor *pr = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400691 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400695 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (acpi_bus_get_device(pr->handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400698 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 switch (event) {
701 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
702 acpi_processor_ppc_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400703 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400704 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800705 acpi_bus_generate_netlink_event(device->pnp.device_class,
706 device->dev.bus_id, event,
707 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 break;
709 case ACPI_PROCESSOR_NOTIFY_POWER:
710 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400711 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800712 acpi_bus_generate_netlink_event(device->pnp.device_class,
713 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 break;
Luming Yu01854e62007-05-26 22:49:58 +0800715 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
716 acpi_processor_tstate_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400717 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800718 acpi_bus_generate_netlink_event(device->pnp.device_class,
719 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 default:
721 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400722 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 break;
724 }
725
Patrick Mocheld550d982006-06-27 00:41:40 -0400726 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200729static int acpi_cpu_soft_notify(struct notifier_block *nfb,
730 unsigned long action, void *hcpu)
731{
732 unsigned int cpu = (unsigned long)hcpu;
733 struct acpi_processor *pr = processors[cpu];
734
735 if (action == CPU_ONLINE && pr) {
736 acpi_processor_ppc_has_changed(pr);
737 acpi_processor_cst_has_changed(pr);
738 acpi_processor_tstate_has_changed(pr);
739 }
740 return NOTIFY_OK;
741}
742
743static struct notifier_block acpi_cpu_notifier =
744{
745 .notifier_call = acpi_cpu_soft_notify,
746};
747
Len Brown4be44fc2005-08-05 00:44:28 -0400748static int acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Len Brown4be44fc2005-08-05 00:44:28 -0400750 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400754 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Burman Yan36bcbec2006-12-19 12:56:11 -0800756 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400758 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 pr->handle = device->handle;
761 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
762 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
763 acpi_driver_data(device) = pr;
764
Patrick Mocheld550d982006-06-27 00:41:40 -0400765 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Len Brown4be44fc2005-08-05 00:44:28 -0400768static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Len Brown4be44fc2005-08-05 00:44:28 -0400770 acpi_status status = AE_OK;
771 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400775 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200777 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 if (pr->id >= NR_CPUS) {
780 kfree(pr);
Patrick Mocheld550d982006-06-27 00:41:40 -0400781 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783
784 if (type == ACPI_BUS_REMOVAL_EJECT) {
785 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400786 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
789 acpi_processor_power_exit(pr, device);
790
791 status = acpi_remove_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400792 acpi_processor_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 acpi_processor_remove_fs(device);
795
796 processors[pr->id] = NULL;
797
798 kfree(pr);
799
Patrick Mocheld550d982006-06-27 00:41:40 -0400800 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
803#ifdef CONFIG_ACPI_HOTPLUG_CPU
804/****************************************************************************
805 * Acpi processor hotplug support *
806 ****************************************************************************/
807
808static int is_processor_present(acpi_handle handle);
809
Len Brown4be44fc2005-08-05 00:44:28 -0400810static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Len Brown4be44fc2005-08-05 00:44:28 -0400812 acpi_status status;
813 unsigned long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Bjorn Helgaasa0bd4ac2007-04-25 14:17:39 -0400817 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_DEVICE_PRESENT)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400818 ACPI_EXCEPTION((AE_INFO, status, "Processor Device is not present"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400821 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824static
Len Brown4be44fc2005-08-05 00:44:28 -0400825int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Len Brown4be44fc2005-08-05 00:44:28 -0400827 acpi_handle phandle;
828 struct acpi_device *pdev;
829 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400833 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835
836 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400837 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839
840 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400841 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
Rajesh Shah3fb02732005-04-28 00:25:52 -0700844 acpi_bus_start(*device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 pr = acpi_driver_data(*device);
847 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400848 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Len Brown4be44fc2005-08-05 00:44:28 -0400850 if ((pr->id >= 0) && (pr->id < NR_CPUS)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800851 kobject_uevent(&(*device)->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400853 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856static void
Len Brown4be44fc2005-08-05 00:44:28 -0400857acpi_processor_hotplug_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Len Brown4be44fc2005-08-05 00:44:28 -0400859 struct acpi_processor *pr;
860 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 int result;
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 switch (event) {
865 case ACPI_NOTIFY_BUS_CHECK:
866 case ACPI_NOTIFY_DEVICE_CHECK:
867 printk("Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400868 (event == ACPI_NOTIFY_BUS_CHECK) ?
869 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 if (!is_processor_present(handle))
872 break;
873
874 if (acpi_bus_get_device(handle, &device)) {
875 result = acpi_processor_device_add(handle, &device);
876 if (result)
Len Brown64684632006-06-26 23:41:38 -0400877 printk(KERN_ERR PREFIX
878 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 break;
880 }
881
882 pr = acpi_driver_data(device);
883 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400884 printk(KERN_ERR PREFIX "Driver data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 break;
886 }
887
888 if (pr->id >= 0 && (pr->id < NR_CPUS)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800889 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 break;
891 }
892
893 result = acpi_processor_start(device);
Len Brown4be44fc2005-08-05 00:44:28 -0400894 if ((!result) && ((pr->id >= 0) && (pr->id < NR_CPUS))) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800895 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 } else {
Len Brown64684632006-06-26 23:41:38 -0400897 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
898 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
Len Brown4be44fc2005-08-05 00:44:28 -0400900 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400902 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
903 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400906 printk(KERN_ERR PREFIX
907 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 break;
909 }
910 pr = acpi_driver_data(device);
911 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400912 printk(KERN_ERR PREFIX
913 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400914 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
917 if ((pr->id < NR_CPUS) && (cpu_present(pr->id)))
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800918 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 break;
920 default:
921 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400922 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 break;
924 }
925
Patrick Mocheld550d982006-06-27 00:41:40 -0400926 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
929static acpi_status
930processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400931 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Len Brown4be44fc2005-08-05 00:44:28 -0400933 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400935 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 status = acpi_get_type(handle, &type);
938 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400939 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400942 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Len Brown4be44fc2005-08-05 00:44:28 -0400944 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 case INSTALL_NOTIFY_HANDLER:
946 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400947 ACPI_SYSTEM_NOTIFY,
948 acpi_processor_hotplug_notify,
949 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 break;
951 case UNINSTALL_NOTIFY_HANDLER:
952 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400953 ACPI_SYSTEM_NOTIFY,
954 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 break;
956 default:
957 break;
958 }
959
Len Brown4be44fc2005-08-05 00:44:28 -0400960 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Len Brown4be44fc2005-08-05 00:44:28 -0400963static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400967 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
969
970 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -0400971 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 if (arch_register_cpu(*p_cpu)) {
974 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -0400975 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977
Patrick Mocheld550d982006-06-27 00:41:40 -0400978 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Len Brown4be44fc2005-08-05 00:44:28 -0400981static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 if (cpu_online(pr->id)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400984 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986 arch_unregister_cpu(pr->id);
987 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400988 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990#else
Len Brown4be44fc2005-08-05 00:44:28 -0400991static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 return AE_ERROR;
994}
Len Brown4be44fc2005-08-05 00:44:28 -0400995static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Len Brown4be44fc2005-08-05 00:44:28 -0400997 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999#endif
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001static
1002void acpi_processor_install_hotplug_notify(void)
1003{
1004#ifdef CONFIG_ACPI_HOTPLUG_CPU
1005 int action = INSTALL_NOTIFY_HANDLER;
1006 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001007 ACPI_ROOT_OBJECT,
1008 ACPI_UINT32_MAX,
1009 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001011 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014static
1015void acpi_processor_uninstall_hotplug_notify(void)
1016{
1017#ifdef CONFIG_ACPI_HOTPLUG_CPU
1018 int action = UNINSTALL_NOTIFY_HANDLER;
1019 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001020 ACPI_ROOT_OBJECT,
1021 ACPI_UINT32_MAX,
1022 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001024 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027/*
1028 * We keep the driver loaded even when ACPI is not running.
1029 * This is needed for the powernow-k8 driver, that works even without
1030 * ACPI, but needs symbols from this driver
1031 */
1032
Len Brown4be44fc2005-08-05 00:44:28 -04001033static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Len Brown4be44fc2005-08-05 00:44:28 -04001035 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 memset(&processors, 0, sizeof(processors));
1039 memset(&errata, 0, sizeof(errata));
1040
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001041#ifdef CONFIG_SMP
1042 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1043 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001044 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001045#endif
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1048 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001049 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 acpi_processor_dir->owner = THIS_MODULE;
1051
1052 result = acpi_bus_register_driver(&acpi_processor_driver);
1053 if (result < 0) {
1054 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Akinobu Mita83822fc2006-12-19 12:56:10 -08001055 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057
1058 acpi_processor_install_hotplug_notify();
1059
1060 acpi_thermal_cpufreq_init();
1061
1062 acpi_processor_ppc_init();
1063
Patrick Mocheld550d982006-06-27 00:41:40 -04001064 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Len Brown4be44fc2005-08-05 00:44:28 -04001067static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 acpi_processor_ppc_exit();
1071
1072 acpi_thermal_cpufreq_exit();
1073
1074 acpi_processor_uninstall_hotplug_notify();
1075
1076 acpi_bus_unregister_driver(&acpi_processor_driver);
1077
1078 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1079
Patrick Mocheld550d982006-06-27 00:41:40 -04001080 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083module_init(acpi_processor_init);
1084module_exit(acpi_processor_exit);
1085
1086EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1087
1088MODULE_ALIAS("processor");