blob: fd48110f084e199fdc02743761ef2f46b9dc1d55 [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
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300424static int map_madt_entry(u32 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300426 unsigned long madt_end, entry;
427 int apic_id = -1;
428
429 if (!madt)
430 return apic_id;
431
432 entry = (unsigned long)madt;
433 madt_end = entry + madt->header.length;
434
435 /* Parse all entries looking for a match. */
436
437 entry += sizeof(struct acpi_table_madt);
438 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
439 struct acpi_subtable_header *header =
440 (struct acpi_subtable_header *)entry;
441 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
442 if (map_lapic_id(header, acpi_id, &apic_id))
443 break;
444 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
445 if (map_lsapic_id(header, acpi_id, &apic_id))
446 break;
447 }
448 entry += header->length;
449 }
450 return apic_id;
451}
452
453static int map_mat_entry(acpi_handle handle, u32 acpi_id)
454{
455 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
456 union acpi_object *obj;
457 struct acpi_subtable_header *header;
458 int apic_id = -1;
459
460 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
461 goto exit;
462
463 if (!buffer.length || !buffer.pointer)
464 goto exit;
465
466 obj = buffer.pointer;
467 if (obj->type != ACPI_TYPE_BUFFER ||
468 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
469 goto exit;
470 }
471
472 header = (struct acpi_subtable_header *)obj->buffer.pointer;
473 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
474 map_lapic_id(header, acpi_id, &apic_id);
475 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
476 map_lsapic_id(header, acpi_id, &apic_id);
477 }
478
479exit:
480 if (buffer.pointer)
481 kfree(buffer.pointer);
482 return apic_id;
483}
484
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300485static int get_cpu_id(acpi_handle handle, u32 acpi_id)
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300486{
Len Brown4a35a462005-09-03 12:40:06 -0400487 int i;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300488 int apic_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300490 apic_id = map_mat_entry(handle, acpi_id);
491 if (apic_id == -1)
492 apic_id = map_madt_entry(acpi_id);
493 if (apic_id == -1)
494 return apic_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300496 for (i = 0; i < NR_CPUS; ++i) {
Mike Travis71b31232007-10-19 20:35:03 +0200497 if (cpu_physical_id(i) == apic_id)
Len Brown4a35a462005-09-03 12:40:06 -0400498 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500 return -1;
501}
502#endif
503
504/* --------------------------------------------------------------------------
505 Driver Interface
506 -------------------------------------------------------------------------- */
507
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300508static int acpi_processor_get_info(struct acpi_processor *pr, unsigned has_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Len Brown4be44fc2005-08-05 00:44:28 -0400510 acpi_status status = 0;
511 union acpi_object object = { 0 };
512 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Ashok Rajdf42baa2006-03-28 17:04:00 -0500513 int cpu_index;
Len Brown4be44fc2005-08-05 00:44:28 -0400514 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400518 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (num_online_cpus() > 1)
521 errata.smp = TRUE;
522
523 acpi_processor_errata(pr);
524
525 /*
526 * Check to see if we have bus mastering arbitration control. This
527 * is required for proper C3 usage (to maintain cache coherency).
528 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300529 if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 pr->flags.bm_control = 1;
531 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400532 "Bus mastering arbitration control present\n"));
533 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400535 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300537 /* Check if it is a Device with HID and UID */
538 if (has_uid) {
539 unsigned long value;
540 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
541 NULL, &value);
542 if (ACPI_FAILURE(status)) {
543 printk(KERN_ERR PREFIX "Evaluating processor _UID\n");
544 return -ENODEV;
545 }
546 pr->acpi_id = value;
547 } else {
548 /*
549 * Evalute the processor object. Note that it is common on SMP to
550 * have the first (boot) processor with a valid PBLK address while
551 * all others have a NULL address.
552 */
553 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
554 if (ACPI_FAILURE(status)) {
555 printk(KERN_ERR PREFIX "Evaluating processor object\n");
556 return -ENODEV;
557 }
558
559 /*
560 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
561 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
562 */
563 pr->acpi_id = object.processor.proc_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300565 cpu_index = get_cpu_id(pr->handle, pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500568 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400569 (num_online_cpus() == 1)) {
570 cpu_index = 0;
571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Len Brown4be44fc2005-08-05 00:44:28 -0400573 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Len Brown4be44fc2005-08-05 00:44:28 -0400575 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Len Brown4be44fc2005-08-05 00:44:28 -0400577 /*
578 * Extra Processor objects may be enumerated on MP systems with
579 * less than the max # of CPUs. They should be ignored _iff
580 * they are physically not present.
581 */
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +0300582 if (pr->id == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400583 if (ACPI_FAILURE
584 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400585 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400586 }
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400590 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (!object.processor.pblk_address)
593 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
594 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400595 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
596 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 else {
598 pr->throttling.address = object.processor.pblk_address;
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300599 pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset;
600 pr->throttling.duty_width = acpi_gbl_FADT.duty_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 pr->pblk = object.processor.pblk_address;
603
604 /*
605 * We don't care about error returns - we just try to mark
606 * these reserved so that nobody else is confused into thinking
607 * that this region might be unused..
608 *
609 * (In particular, allocating the IO range for Cardbus)
610 */
611 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
612 }
613
614#ifdef CONFIG_CPU_FREQ
615 acpi_processor_ppc_has_changed(pr);
616#endif
617 acpi_processor_get_throttling_info(pr);
618 acpi_processor_get_limit_info(pr);
619
Patrick Mocheld550d982006-06-27 00:41:40 -0400620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400623static void *processor_device_array[NR_CPUS];
624
Pierre Ossman7af8b662006-10-10 14:20:31 -0700625static int __cpuinit acpi_processor_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Len Brown4be44fc2005-08-05 00:44:28 -0400627 int result = 0;
628 acpi_status status = AE_OK;
629 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 pr = acpi_driver_data(device);
633
Alexey Starikovskiy11bf04c2007-02-02 19:48:23 +0300634 result = acpi_processor_get_info(pr, device->flags.unique_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (result) {
636 /* Processor is physically not present */
Patrick Mocheld550d982006-06-27 00:41:40 -0400637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
640 BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
641
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400642 /*
643 * Buggy BIOS check
644 * ACPI id of processors can be reported wrongly by the BIOS.
645 * Don't trust it blindly
646 */
647 if (processor_device_array[pr->id] != NULL &&
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200648 processor_device_array[pr->id] != device) {
Len Brown0eacee52006-03-31 00:37:23 -0500649 printk(KERN_WARNING "BIOS reported wrong ACPI id"
650 "for the processor\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400651 return -ENODEV;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400652 }
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200653 processor_device_array[pr->id] = device;
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 processors[pr->id] = pr;
656
657 result = acpi_processor_add_fs(device);
658 if (result)
659 goto end;
660
661 status = acpi_install_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400662 acpi_processor_notify, pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400664 /* _PDC call should be done before doing anything else (if reqd.). */
665 arch_acpi_processor_init_pdc(pr);
666 acpi_processor_set_pdc(pr);
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 acpi_processor_power_init(pr, device);
669
670 if (pr->flags.throttling) {
671 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400672 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 printk(" %d throttling states", pr->throttling.state_count);
674 printk(")\n");
675 }
676
Len Brown4be44fc2005-08-05 00:44:28 -0400677 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Patrick Mocheld550d982006-06-27 00:41:40 -0400679 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Len Brown4be44fc2005-08-05 00:44:28 -0400682static void acpi_processor_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200684 struct acpi_processor *pr = data;
Len Brown4be44fc2005-08-05 00:44:28 -0400685 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 if (acpi_bus_get_device(pr->handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400692 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 switch (event) {
695 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
696 acpi_processor_ppc_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400697 acpi_bus_generate_proc_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400698 pr->performance_platform_limit);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800699 acpi_bus_generate_netlink_event(device->pnp.device_class,
700 device->dev.bus_id, event,
701 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 break;
703 case ACPI_PROCESSOR_NOTIFY_POWER:
704 acpi_processor_cst_has_changed(pr);
Len Brown14e04fb2007-08-23 15:20:26 -0400705 acpi_bus_generate_proc_event(device, event, 0);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800706 acpi_bus_generate_netlink_event(device->pnp.device_class,
707 device->dev.bus_id, event, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 break;
Luming Yu01854e62007-05-26 22:49:58 +0800709 case ACPI_PROCESSOR_NOTIFY_THROTTLING:
710 acpi_processor_tstate_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 default:
715 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400716 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 break;
718 }
719
Patrick Mocheld550d982006-06-27 00:41:40 -0400720 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +0200723static int acpi_cpu_soft_notify(struct notifier_block *nfb,
724 unsigned long action, void *hcpu)
725{
726 unsigned int cpu = (unsigned long)hcpu;
727 struct acpi_processor *pr = processors[cpu];
728
729 if (action == CPU_ONLINE && pr) {
730 acpi_processor_ppc_has_changed(pr);
731 acpi_processor_cst_has_changed(pr);
732 acpi_processor_tstate_has_changed(pr);
733 }
734 return NOTIFY_OK;
735}
736
737static struct notifier_block acpi_cpu_notifier =
738{
739 .notifier_call = acpi_cpu_soft_notify,
740};
741
Len Brown4be44fc2005-08-05 00:44:28 -0400742static int acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Len Brown4be44fc2005-08-05 00:44:28 -0400744 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400748 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Burman Yan36bcbec2006-12-19 12:56:11 -0800750 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400752 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 pr->handle = device->handle;
755 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
756 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
757 acpi_driver_data(device) = pr;
758
Patrick Mocheld550d982006-06-27 00:41:40 -0400759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Len Brown4be44fc2005-08-05 00:44:28 -0400762static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Len Brown4be44fc2005-08-05 00:44:28 -0400764 acpi_status status = AE_OK;
765 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400769 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200771 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 if (pr->id >= NR_CPUS) {
774 kfree(pr);
Patrick Mocheld550d982006-06-27 00:41:40 -0400775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
778 if (type == ACPI_BUS_REMOVAL_EJECT) {
779 if (acpi_processor_handle_eject(pr))
Patrick Mocheld550d982006-06-27 00:41:40 -0400780 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
783 acpi_processor_power_exit(pr, device);
784
785 status = acpi_remove_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400786 acpi_processor_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 acpi_processor_remove_fs(device);
789
790 processors[pr->id] = NULL;
791
792 kfree(pr);
793
Patrick Mocheld550d982006-06-27 00:41:40 -0400794 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797#ifdef CONFIG_ACPI_HOTPLUG_CPU
798/****************************************************************************
799 * Acpi processor hotplug support *
800 ****************************************************************************/
801
802static int is_processor_present(acpi_handle handle);
803
Len Brown4be44fc2005-08-05 00:44:28 -0400804static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Len Brown4be44fc2005-08-05 00:44:28 -0400806 acpi_status status;
807 unsigned long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Bjorn Helgaasa0bd4ac2007-04-25 14:17:39 -0400811 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_DEVICE_PRESENT)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400812 ACPI_EXCEPTION((AE_INFO, status, "Processor Device is not present"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400815 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818static
Len Brown4be44fc2005-08-05 00:44:28 -0400819int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Len Brown4be44fc2005-08-05 00:44:28 -0400821 acpi_handle phandle;
822 struct acpi_device *pdev;
823 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 if (acpi_get_parent(handle, &phandle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400827 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829
830 if (acpi_bus_get_device(phandle, &pdev)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400831 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833
834 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400835 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Rajesh Shah3fb02732005-04-28 00:25:52 -0700838 acpi_bus_start(*device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 pr = acpi_driver_data(*device);
841 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400842 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Len Brown4be44fc2005-08-05 00:44:28 -0400844 if ((pr->id >= 0) && (pr->id < NR_CPUS)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800845 kobject_uevent(&(*device)->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400847 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850static void
Len Brown4be44fc2005-08-05 00:44:28 -0400851acpi_processor_hotplug_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Len Brown4be44fc2005-08-05 00:44:28 -0400853 struct acpi_processor *pr;
854 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 int result;
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 switch (event) {
859 case ACPI_NOTIFY_BUS_CHECK:
860 case ACPI_NOTIFY_DEVICE_CHECK:
861 printk("Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400862 (event == ACPI_NOTIFY_BUS_CHECK) ?
863 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (!is_processor_present(handle))
866 break;
867
868 if (acpi_bus_get_device(handle, &device)) {
869 result = acpi_processor_device_add(handle, &device);
870 if (result)
Len Brown64684632006-06-26 23:41:38 -0400871 printk(KERN_ERR PREFIX
872 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 break;
874 }
875
876 pr = acpi_driver_data(device);
877 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400878 printk(KERN_ERR PREFIX "Driver data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 break;
880 }
881
882 if (pr->id >= 0 && (pr->id < NR_CPUS)) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800883 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
885 }
886
887 result = acpi_processor_start(device);
Len Brown4be44fc2005-08-05 00:44:28 -0400888 if ((!result) && ((pr->id >= 0) && (pr->id < NR_CPUS))) {
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800889 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 } else {
Len Brown64684632006-06-26 23:41:38 -0400891 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
892 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
Len Brown4be44fc2005-08-05 00:44:28 -0400894 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400896 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
897 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400900 printk(KERN_ERR PREFIX
901 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 break;
903 }
904 pr = acpi_driver_data(device);
905 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400906 printk(KERN_ERR PREFIX
907 "Driver data is NULL, dropping EJECT\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400908 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
911 if ((pr->id < NR_CPUS) && (cpu_present(pr->id)))
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800912 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 break;
914 default:
915 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400916 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 break;
918 }
919
Patrick Mocheld550d982006-06-27 00:41:40 -0400920 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923static acpi_status
924processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400925 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Len Brown4be44fc2005-08-05 00:44:28 -0400927 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400929 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 status = acpi_get_type(handle, &type);
932 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400933 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400936 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Len Brown4be44fc2005-08-05 00:44:28 -0400938 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 case INSTALL_NOTIFY_HANDLER:
940 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400941 ACPI_SYSTEM_NOTIFY,
942 acpi_processor_hotplug_notify,
943 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 break;
945 case UNINSTALL_NOTIFY_HANDLER:
946 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400947 ACPI_SYSTEM_NOTIFY,
948 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 break;
950 default:
951 break;
952 }
953
Len Brown4be44fc2005-08-05 00:44:28 -0400954 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Len Brown4be44fc2005-08-05 00:44:28 -0400957static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 if (!is_processor_present(handle)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400961 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963
964 if (acpi_map_lsapic(handle, p_cpu))
Patrick Mocheld550d982006-06-27 00:41:40 -0400965 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 if (arch_register_cpu(*p_cpu)) {
968 acpi_unmap_lsapic(*p_cpu);
Patrick Mocheld550d982006-06-27 00:41:40 -0400969 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
971
Patrick Mocheld550d982006-06-27 00:41:40 -0400972 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Len Brown4be44fc2005-08-05 00:44:28 -0400975static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 if (cpu_online(pr->id)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400978 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980 arch_unregister_cpu(pr->id);
981 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400982 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984#else
Len Brown4be44fc2005-08-05 00:44:28 -0400985static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 return AE_ERROR;
988}
Len Brown4be44fc2005-08-05 00:44:28 -0400989static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Len Brown4be44fc2005-08-05 00:44:28 -0400991 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993#endif
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995static
996void acpi_processor_install_hotplug_notify(void)
997{
998#ifdef CONFIG_ACPI_HOTPLUG_CPU
999 int action = INSTALL_NOTIFY_HANDLER;
1000 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001001 ACPI_ROOT_OBJECT,
1002 ACPI_UINT32_MAX,
1003 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001005 register_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008static
1009void acpi_processor_uninstall_hotplug_notify(void)
1010{
1011#ifdef CONFIG_ACPI_HOTPLUG_CPU
1012 int action = UNINSTALL_NOTIFY_HANDLER;
1013 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -04001014 ACPI_ROOT_OBJECT,
1015 ACPI_UINT32_MAX,
1016 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017#endif
Venkatesh Pallipadi729c6ba2007-09-16 15:36:43 +02001018 unregister_hotcpu_notifier(&acpi_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
1021/*
1022 * We keep the driver loaded even when ACPI is not running.
1023 * This is needed for the powernow-k8 driver, that works even without
1024 * ACPI, but needs symbols from this driver
1025 */
1026
Len Brown4be44fc2005-08-05 00:44:28 -04001027static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Len Brown4be44fc2005-08-05 00:44:28 -04001029 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 memset(&processors, 0, sizeof(processors));
1033 memset(&errata, 0, sizeof(errata));
1034
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001035#ifdef CONFIG_SMP
1036 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
1037 (struct acpi_table_header **)&madt)))
Randy Dunlap70c08462007-02-13 16:11:36 -08001038 madt = NULL;
Alexey Starikovskiyf18c5a02007-02-02 19:48:23 +03001039#endif
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1042 if (!acpi_processor_dir)
Akinobu Mita83822fc2006-12-19 12:56:10 -08001043 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 acpi_processor_dir->owner = THIS_MODULE;
1045
1046 result = acpi_bus_register_driver(&acpi_processor_driver);
1047 if (result < 0) {
1048 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Akinobu Mita83822fc2006-12-19 12:56:10 -08001049 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
1052 acpi_processor_install_hotplug_notify();
1053
1054 acpi_thermal_cpufreq_init();
1055
1056 acpi_processor_ppc_init();
1057
Patrick Mocheld550d982006-06-27 00:41:40 -04001058 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
Len Brown4be44fc2005-08-05 00:44:28 -04001061static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 acpi_processor_ppc_exit();
1065
1066 acpi_thermal_cpufreq_exit();
1067
1068 acpi_processor_uninstall_hotplug_notify();
1069
1070 acpi_bus_unregister_driver(&acpi_processor_driver);
1071
1072 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
1073
Patrick Mocheld550d982006-06-27 00:41:40 -04001074 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077module_init(acpi_processor_init);
1078module_exit(acpi_processor_exit);
1079
1080EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
1081
1082MODULE_ALIAS("processor");