blob: 80bbf187a37d537948d0fa47115fa5a3091105fb [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"
63#define ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver"
64#define ACPI_PROCESSOR_DEVICE_NAME "Processor"
65#define ACPI_PROCESSOR_FILE_INFO "info"
66#define ACPI_PROCESSOR_FILE_THROTTLING "throttling"
67#define ACPI_PROCESSOR_FILE_LIMIT "limit"
68#define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
69#define ACPI_PROCESSOR_NOTIFY_POWER 0x81
70
71#define ACPI_PROCESSOR_LIMIT_USER 0
72#define ACPI_PROCESSOR_LIMIT_THERMAL 1
73
74#define ACPI_STA_PRESENT 0x00000001
75
76#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040077ACPI_MODULE_NAME("acpi_processor")
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Len Brown4be44fc2005-08-05 00:44:28 -040079 MODULE_AUTHOR("Paul Diefenbaugh");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080MODULE_DESCRIPTION(ACPI_PROCESSOR_DRIVER_NAME);
81MODULE_LICENSE("GPL");
82
Len Brown4be44fc2005-08-05 00:44:28 -040083static int acpi_processor_add(struct acpi_device *device);
84static int acpi_processor_start(struct acpi_device *device);
85static int acpi_processor_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
Len Brown4be44fc2005-08-05 00:44:28 -040087static void acpi_processor_notify(acpi_handle handle, u32 event, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu);
89static int acpi_processor_handle_eject(struct acpi_processor *pr);
90
91static struct acpi_driver acpi_processor_driver = {
Len Brown4be44fc2005-08-05 00:44:28 -040092 .name = ACPI_PROCESSOR_DRIVER_NAME,
93 .class = ACPI_PROCESSOR_CLASS,
94 .ids = ACPI_PROCESSOR_HID,
95 .ops = {
96 .add = acpi_processor_add,
97 .remove = acpi_processor_remove,
98 .start = acpi_processor_start,
99 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
102#define INSTALL_NOTIFY_HANDLER 1
103#define UNINSTALL_NOTIFY_HANDLER 2
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static struct file_operations acpi_processor_info_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400106 .open = acpi_processor_info_open_fs,
107 .read = seq_read,
108 .llseek = seq_lseek,
109 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
Len Brown4be44fc2005-08-05 00:44:28 -0400112struct acpi_processor *processors[NR_CPUS];
Andreas Mohr9f222712006-06-23 02:04:27 -0700113struct acpi_processor_errata errata __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* --------------------------------------------------------------------------
116 Errata Handling
117 -------------------------------------------------------------------------- */
118
Len Brown4be44fc2005-08-05 00:44:28 -0400119static int acpi_processor_errata_piix4(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Len Brown4be44fc2005-08-05 00:44:28 -0400121 u8 rev = 0;
122 u8 value1 = 0;
123 u8 value2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 ACPI_FUNCTION_TRACE("acpi_processor_errata_piix4");
126
127 if (!dev)
128 return_VALUE(-EINVAL);
129
130 /*
131 * Note that 'dev' references the PIIX4 ACPI Controller.
132 */
133
134 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
135
136 switch (rev) {
137 case 0:
138 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n"));
139 break;
140 case 1:
141 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n"));
142 break;
143 case 2:
144 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n"));
145 break;
146 case 3:
147 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n"));
148 break;
149 default:
150 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n"));
151 break;
152 }
153
154 switch (rev) {
155
156 case 0: /* PIIX4 A-step */
157 case 1: /* PIIX4 B-step */
158 /*
159 * See specification changes #13 ("Manual Throttle Duty Cycle")
160 * and #14 ("Enabling and Disabling Manual Throttle"), plus
161 * erratum #5 ("STPCLK# Deassertion Time") from the January
162 * 2002 PIIX4 specification update. Applies to only older
163 * PIIX4 models.
164 */
165 errata.piix4.throttle = 1;
166
167 case 2: /* PIIX4E */
168 case 3: /* PIIX4M */
169 /*
170 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
171 * Livelock") from the January 2002 PIIX4 specification update.
172 * Applies to all PIIX4 models.
173 */
174
175 /*
176 * BM-IDE
177 * ------
178 * Find the PIIX4 IDE Controller and get the Bus Master IDE
179 * Status register address. We'll use this later to read
180 * each IDE controller's DMA status to make sure we catch all
181 * DMA activity.
182 */
183 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400184 PCI_DEVICE_ID_INTEL_82371AB,
185 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (dev) {
187 errata.piix4.bmisx = pci_resource_start(dev, 4);
188 pci_dev_put(dev);
189 }
190
191 /*
192 * Type-F DMA
193 * ----------
194 * Find the PIIX4 ISA Controller and read the Motherboard
195 * DMA controller's status to see if Type-F (Fast) DMA mode
196 * is enabled (bit 7) on either channel. Note that we'll
197 * disable C3 support if this is enabled, as some legacy
198 * devices won't operate well if fast DMA is disabled.
199 */
200 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400201 PCI_DEVICE_ID_INTEL_82371AB_0,
202 PCI_ANY_ID, PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (dev) {
204 pci_read_config_byte(dev, 0x76, &value1);
205 pci_read_config_byte(dev, 0x77, &value2);
206 if ((value1 & 0x80) || (value2 & 0x80))
207 errata.piix4.fdma = 1;
208 pci_dev_put(dev);
209 }
210
211 break;
212 }
213
214 if (errata.piix4.bmisx)
215 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400216 "Bus master activity detection (BM-IDE) erratum enabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (errata.piix4.fdma)
218 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400219 "Type-F DMA livelock erratum (C3 disabled)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 return_VALUE(0);
222}
223
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400224static int acpi_processor_errata(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Len Brown4be44fc2005-08-05 00:44:28 -0400226 int result = 0;
227 struct pci_dev *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 ACPI_FUNCTION_TRACE("acpi_processor_errata");
230
231 if (!pr)
232 return_VALUE(-EINVAL);
233
234 /*
235 * PIIX4
236 */
237 dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
Len Brown4be44fc2005-08-05 00:44:28 -0400238 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
239 PCI_ANY_ID, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (dev) {
241 result = acpi_processor_errata_piix4(dev);
242 pci_dev_put(dev);
243 }
244
245 return_VALUE(result);
246}
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/* --------------------------------------------------------------------------
Akinobu Mita0b280022006-03-26 01:38:58 -0800249 Common ACPI processor functions
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400250 -------------------------------------------------------------------------- */
251
252/*
253 * _PDC is required for a BIOS-OS handshake for most of the newer
254 * ACPI processor features.
255 */
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400256static int acpi_processor_set_pdc(struct acpi_processor *pr)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400257{
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400258 struct acpi_object_list *pdc_in = pr->pdc;
Len Brown4be44fc2005-08-05 00:44:28 -0400259 acpi_status status = AE_OK;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400260
261 ACPI_FUNCTION_TRACE("acpi_processor_set_pdc");
262
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400263 if (!pdc_in)
264 return_VALUE(status);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400265
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400266 status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400267
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400268 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400269 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400270 "Could not evaluate _PDC, using legacy perf. control...\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400271
272 return_VALUE(status);
273}
274
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400275/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 FS Interface (/proc)
277 -------------------------------------------------------------------------- */
278
Len Brown4be44fc2005-08-05 00:44:28 -0400279static struct proc_dir_entry *acpi_processor_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
282{
Len Brown4be44fc2005-08-05 00:44:28 -0400283 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 ACPI_FUNCTION_TRACE("acpi_processor_info_seq_show");
286
287 if (!pr)
288 goto end;
289
290 seq_printf(seq, "processor id: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400291 "acpi id: %d\n"
292 "bus mastering control: %s\n"
293 "power management: %s\n"
294 "throttling control: %s\n"
295 "limit interface: %s\n",
296 pr->id,
297 pr->acpi_id,
298 pr->flags.bm_control ? "yes" : "no",
299 pr->flags.power ? "yes" : "no",
300 pr->flags.throttling ? "yes" : "no",
301 pr->flags.limit ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return_VALUE(0);
305}
306
307static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
308{
309 return single_open(file, acpi_processor_info_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400310 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Len Brown4be44fc2005-08-05 00:44:28 -0400313static int acpi_processor_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Len Brown4be44fc2005-08-05 00:44:28 -0400315 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 ACPI_FUNCTION_TRACE("acpi_processor_add_fs");
318
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))
323 return_VALUE(-ENODEV);
324 }
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)
Thomas Renningera6fc6722006-06-26 23:58:43 -0400331 return_VALUE(-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)
Thomas Renningera6fc6722006-06-26 23:58:43 -0400343 return_VALUE(-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)
Thomas Renningera6fc6722006-06-26 23:58:43 -0400355 return_VALUE( -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
362 return_VALUE(0);
363}
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{
367 ACPI_FUNCTION_TRACE("acpi_processor_remove_fs");
368
369 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400370 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
371 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
Len Brown4be44fc2005-08-05 00:44:28 -0400373 acpi_device_dir(device));
374 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
375 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
377 acpi_device_dir(device) = NULL;
378 }
379
380 return_VALUE(0);
381}
382
383/* Use the acpiid in MADT to map cpus in case of SMP */
384#ifndef CONFIG_SMP
Ashok Rajdf42baa2006-03-28 17:04:00 -0500385#define convert_acpiid_to_cpu(acpi_id) (-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#else
387
388#ifdef CONFIG_IA64
389#define arch_acpiid_to_apicid ia64_acpiid_to_sapicid
390#define arch_cpu_to_apicid ia64_cpu_to_sapicid
391#define ARCH_BAD_APICID (0xffff)
392#else
393#define arch_acpiid_to_apicid x86_acpiid_to_apicid
394#define arch_cpu_to_apicid x86_cpu_to_apicid
395#define ARCH_BAD_APICID (0xff)
396#endif
397
Ashok Rajdf42baa2006-03-28 17:04:00 -0500398static int convert_acpiid_to_cpu(u8 acpi_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 u16 apic_id;
Len Brown4a35a462005-09-03 12:40:06 -0400401 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 apic_id = arch_acpiid_to_apicid[acpi_id];
404 if (apic_id == ARCH_BAD_APICID)
405 return -1;
406
407 for (i = 0; i < NR_CPUS; i++) {
Len Brown4a35a462005-09-03 12:40:06 -0400408 if (arch_cpu_to_apicid[i] == apic_id)
409 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411 return -1;
412}
413#endif
414
415/* --------------------------------------------------------------------------
416 Driver Interface
417 -------------------------------------------------------------------------- */
418
Len Brown4be44fc2005-08-05 00:44:28 -0400419static int acpi_processor_get_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Len Brown4be44fc2005-08-05 00:44:28 -0400421 acpi_status status = 0;
422 union acpi_object object = { 0 };
423 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
Ashok Rajdf42baa2006-03-28 17:04:00 -0500424 int cpu_index;
Len Brown4be44fc2005-08-05 00:44:28 -0400425 static int cpu0_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 ACPI_FUNCTION_TRACE("acpi_processor_get_info");
428
429 if (!pr)
430 return_VALUE(-EINVAL);
431
432 if (num_online_cpus() > 1)
433 errata.smp = TRUE;
434
435 acpi_processor_errata(pr);
436
437 /*
438 * Check to see if we have bus mastering arbitration control. This
439 * is required for proper C3 usage (to maintain cache coherency).
440 */
441 if (acpi_fadt.V1_pm2_cnt_blk && acpi_fadt.pm2_cnt_len) {
442 pr->flags.bm_control = 1;
443 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400444 "Bus mastering arbitration control present\n"));
445 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400447 "No bus mastering arbitration control\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 /*
450 * Evalute the processor object. Note that it is common on SMP to
451 * have the first (boot) processor with a valid PBLK address while
452 * all others have a NULL address.
453 */
454 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
455 if (ACPI_FAILURE(status)) {
Len Brown64684632006-06-26 23:41:38 -0400456 printk(KERN_ERR PREFIX "Evaluating processor object\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return_VALUE(-ENODEV);
458 }
459
460 /*
461 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
Len Brown4be44fc2005-08-05 00:44:28 -0400462 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 */
464 pr->acpi_id = object.processor.proc_id;
465
Len Brown4a35a462005-09-03 12:40:06 -0400466 cpu_index = convert_acpiid_to_cpu(pr->acpi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Len Brown4be44fc2005-08-05 00:44:28 -0400468 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500469 if (!cpu0_initialized && (cpu_index == -1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400470 (num_online_cpus() == 1)) {
471 cpu_index = 0;
472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Len Brown4be44fc2005-08-05 00:44:28 -0400474 cpu0_initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Len Brown4be44fc2005-08-05 00:44:28 -0400476 pr->id = cpu_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Len Brown4be44fc2005-08-05 00:44:28 -0400478 /*
479 * Extra Processor objects may be enumerated on MP systems with
480 * less than the max # of CPUs. They should be ignored _iff
481 * they are physically not present.
482 */
Ashok Rajdf42baa2006-03-28 17:04:00 -0500483 if (cpu_index == -1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400484 if (ACPI_FAILURE
485 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
Len Brown64684632006-06-26 23:41:38 -0400486 printk(KERN_ERR PREFIX
487 "Getting cpuindex for acpiid 0x%x\n",
488 pr->acpi_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400489 return_VALUE(-ENODEV);
490 }
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400494 pr->acpi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if (!object.processor.pblk_address)
497 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
498 else if (object.processor.pblk_length != 6)
Len Brown64684632006-06-26 23:41:38 -0400499 printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n",
500 object.processor.pblk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 else {
502 pr->throttling.address = object.processor.pblk_address;
503 pr->throttling.duty_offset = acpi_fadt.duty_offset;
504 pr->throttling.duty_width = acpi_fadt.duty_width;
505
506 pr->pblk = object.processor.pblk_address;
507
508 /*
509 * We don't care about error returns - we just try to mark
510 * these reserved so that nobody else is confused into thinking
511 * that this region might be unused..
512 *
513 * (In particular, allocating the IO range for Cardbus)
514 */
515 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
516 }
517
518#ifdef CONFIG_CPU_FREQ
519 acpi_processor_ppc_has_changed(pr);
520#endif
521 acpi_processor_get_throttling_info(pr);
522 acpi_processor_get_limit_info(pr);
523
524 return_VALUE(0);
525}
526
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400527static void *processor_device_array[NR_CPUS];
528
Len Brown4be44fc2005-08-05 00:44:28 -0400529static int acpi_processor_start(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Len Brown4be44fc2005-08-05 00:44:28 -0400531 int result = 0;
532 acpi_status status = AE_OK;
533 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 ACPI_FUNCTION_TRACE("acpi_processor_start");
536
537 pr = acpi_driver_data(device);
538
539 result = acpi_processor_get_info(pr);
540 if (result) {
541 /* Processor is physically not present */
542 return_VALUE(0);
543 }
544
545 BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
546
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400547 /*
548 * Buggy BIOS check
549 * ACPI id of processors can be reported wrongly by the BIOS.
550 * Don't trust it blindly
551 */
552 if (processor_device_array[pr->id] != NULL &&
553 processor_device_array[pr->id] != (void *)device) {
Len Brown0eacee52006-03-31 00:37:23 -0500554 printk(KERN_WARNING "BIOS reported wrong ACPI id"
555 "for the processor\n");
Venkatesh Pallipadicd8e2b42005-10-21 19:22:00 -0400556 return_VALUE(-ENODEV);
557 }
558 processor_device_array[pr->id] = (void *)device;
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 processors[pr->id] = pr;
561
562 result = acpi_processor_add_fs(device);
563 if (result)
564 goto end;
565
566 status = acpi_install_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400567 acpi_processor_notify, pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400569 /* _PDC call should be done before doing anything else (if reqd.). */
570 arch_acpi_processor_init_pdc(pr);
571 acpi_processor_set_pdc(pr);
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 acpi_processor_power_init(pr, device);
574
575 if (pr->flags.throttling) {
576 printk(KERN_INFO PREFIX "%s [%s] (supports",
Len Brown4be44fc2005-08-05 00:44:28 -0400577 acpi_device_name(device), acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 printk(" %d throttling states", pr->throttling.state_count);
579 printk(")\n");
580 }
581
Len Brown4be44fc2005-08-05 00:44:28 -0400582 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 return_VALUE(result);
585}
586
Len Brown4be44fc2005-08-05 00:44:28 -0400587static void acpi_processor_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Len Brown4be44fc2005-08-05 00:44:28 -0400589 struct acpi_processor *pr = (struct acpi_processor *)data;
590 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 ACPI_FUNCTION_TRACE("acpi_processor_notify");
593
594 if (!pr)
595 return_VOID;
596
597 if (acpi_bus_get_device(pr->handle, &device))
598 return_VOID;
599
600 switch (event) {
601 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
602 acpi_processor_ppc_has_changed(pr);
603 acpi_bus_generate_event(device, event,
Len Brown4be44fc2005-08-05 00:44:28 -0400604 pr->performance_platform_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 break;
606 case ACPI_PROCESSOR_NOTIFY_POWER:
607 acpi_processor_cst_has_changed(pr);
608 acpi_bus_generate_event(device, event, 0);
609 break;
610 default:
611 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400612 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 break;
614 }
615
616 return_VOID;
617}
618
Len Brown4be44fc2005-08-05 00:44:28 -0400619static int acpi_processor_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Len Brown4be44fc2005-08-05 00:44:28 -0400621 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 ACPI_FUNCTION_TRACE("acpi_processor_add");
624
625 if (!device)
626 return_VALUE(-EINVAL);
627
628 pr = kmalloc(sizeof(struct acpi_processor), GFP_KERNEL);
629 if (!pr)
630 return_VALUE(-ENOMEM);
631 memset(pr, 0, sizeof(struct acpi_processor));
632
633 pr->handle = device->handle;
634 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
635 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
636 acpi_driver_data(device) = pr;
637
638 return_VALUE(0);
639}
640
Len Brown4be44fc2005-08-05 00:44:28 -0400641static int acpi_processor_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Len Brown4be44fc2005-08-05 00:44:28 -0400643 acpi_status status = AE_OK;
644 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 ACPI_FUNCTION_TRACE("acpi_processor_remove");
647
648 if (!device || !acpi_driver_data(device))
649 return_VALUE(-EINVAL);
650
Len Brown4be44fc2005-08-05 00:44:28 -0400651 pr = (struct acpi_processor *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 if (pr->id >= NR_CPUS) {
654 kfree(pr);
655 return_VALUE(0);
656 }
657
658 if (type == ACPI_BUS_REMOVAL_EJECT) {
659 if (acpi_processor_handle_eject(pr))
660 return_VALUE(-EINVAL);
661 }
662
663 acpi_processor_power_exit(pr, device);
664
665 status = acpi_remove_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400666 acpi_processor_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 acpi_processor_remove_fs(device);
669
670 processors[pr->id] = NULL;
671
672 kfree(pr);
673
674 return_VALUE(0);
675}
676
677#ifdef CONFIG_ACPI_HOTPLUG_CPU
678/****************************************************************************
679 * Acpi processor hotplug support *
680 ****************************************************************************/
681
682static int is_processor_present(acpi_handle handle);
683
Len Brown4be44fc2005-08-05 00:44:28 -0400684static int is_processor_present(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Len Brown4be44fc2005-08-05 00:44:28 -0400686 acpi_status status;
687 unsigned long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 ACPI_FUNCTION_TRACE("is_processor_present");
690
691 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
692 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_PRESENT)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400693 ACPI_EXCEPTION((AE_INFO, status, "Processor Device is not present"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return_VALUE(0);
695 }
696 return_VALUE(1);
697}
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699static
Len Brown4be44fc2005-08-05 00:44:28 -0400700int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Len Brown4be44fc2005-08-05 00:44:28 -0400702 acpi_handle phandle;
703 struct acpi_device *pdev;
704 struct acpi_processor *pr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 ACPI_FUNCTION_TRACE("acpi_processor_device_add");
707
708 if (acpi_get_parent(handle, &phandle)) {
709 return_VALUE(-ENODEV);
710 }
711
712 if (acpi_bus_get_device(phandle, &pdev)) {
713 return_VALUE(-ENODEV);
714 }
715
716 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
717 return_VALUE(-ENODEV);
718 }
719
Rajesh Shah3fb02732005-04-28 00:25:52 -0700720 acpi_bus_start(*device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 pr = acpi_driver_data(*device);
723 if (!pr)
724 return_VALUE(-ENODEV);
725
Len Brown4be44fc2005-08-05 00:44:28 -0400726 if ((pr->id >= 0) && (pr->id < NR_CPUS)) {
Kay Sievers312c0042005-11-16 09:00:00 +0100727 kobject_uevent(&(*device)->kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729 return_VALUE(0);
730}
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732static void
Len Brown4be44fc2005-08-05 00:44:28 -0400733acpi_processor_hotplug_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Len Brown4be44fc2005-08-05 00:44:28 -0400735 struct acpi_processor *pr;
736 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 int result;
738
739 ACPI_FUNCTION_TRACE("acpi_processor_hotplug_notify");
740
741 switch (event) {
742 case ACPI_NOTIFY_BUS_CHECK:
743 case ACPI_NOTIFY_DEVICE_CHECK:
744 printk("Processor driver received %s event\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400745 (event == ACPI_NOTIFY_BUS_CHECK) ?
746 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 if (!is_processor_present(handle))
749 break;
750
751 if (acpi_bus_get_device(handle, &device)) {
752 result = acpi_processor_device_add(handle, &device);
753 if (result)
Len Brown64684632006-06-26 23:41:38 -0400754 printk(KERN_ERR PREFIX
755 "Unable to add the device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 break;
757 }
758
759 pr = acpi_driver_data(device);
760 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400761 printk(KERN_ERR PREFIX "Driver data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 break;
763 }
764
765 if (pr->id >= 0 && (pr->id < NR_CPUS)) {
Kay Sievers312c0042005-11-16 09:00:00 +0100766 kobject_uevent(&device->kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 break;
768 }
769
770 result = acpi_processor_start(device);
Len Brown4be44fc2005-08-05 00:44:28 -0400771 if ((!result) && ((pr->id >= 0) && (pr->id < NR_CPUS))) {
Kay Sievers312c0042005-11-16 09:00:00 +0100772 kobject_uevent(&device->kobj, KOBJ_ONLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 } else {
Len Brown64684632006-06-26 23:41:38 -0400774 printk(KERN_ERR PREFIX "Device [%s] failed to start\n",
775 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Len Brown4be44fc2005-08-05 00:44:28 -0400777 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400779 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
780 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400783 printk(KERN_ERR PREFIX
784 "Device don't exist, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
786 }
787 pr = acpi_driver_data(device);
788 if (!pr) {
Len Brown64684632006-06-26 23:41:38 -0400789 printk(KERN_ERR PREFIX
790 "Driver data is NULL, dropping EJECT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return_VOID;
792 }
793
794 if ((pr->id < NR_CPUS) && (cpu_present(pr->id)))
Kay Sievers312c0042005-11-16 09:00:00 +0100795 kobject_uevent(&device->kobj, KOBJ_OFFLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 break;
797 default:
798 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400799 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 break;
801 }
802
803 return_VOID;
804}
805
806static acpi_status
807processor_walk_namespace_cb(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400808 u32 lvl, void *context, void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Len Brown4be44fc2005-08-05 00:44:28 -0400810 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 int *action = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400812 acpi_object_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 status = acpi_get_type(handle, &type);
815 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400816 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 if (type != ACPI_TYPE_PROCESSOR)
Len Brown4be44fc2005-08-05 00:44:28 -0400819 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Len Brown4be44fc2005-08-05 00:44:28 -0400821 switch (*action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 case INSTALL_NOTIFY_HANDLER:
823 acpi_install_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400824 ACPI_SYSTEM_NOTIFY,
825 acpi_processor_hotplug_notify,
826 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 break;
828 case UNINSTALL_NOTIFY_HANDLER:
829 acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400830 ACPI_SYSTEM_NOTIFY,
831 acpi_processor_hotplug_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 break;
833 default:
834 break;
835 }
836
Len Brown4be44fc2005-08-05 00:44:28 -0400837 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Len Brown4be44fc2005-08-05 00:44:28 -0400840static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842 ACPI_FUNCTION_TRACE("acpi_processor_hotadd_init");
843
844 if (!is_processor_present(handle)) {
845 return_VALUE(AE_ERROR);
846 }
847
848 if (acpi_map_lsapic(handle, p_cpu))
849 return_VALUE(AE_ERROR);
850
851 if (arch_register_cpu(*p_cpu)) {
852 acpi_unmap_lsapic(*p_cpu);
853 return_VALUE(AE_ERROR);
854 }
855
856 return_VALUE(AE_OK);
857}
858
Len Brown4be44fc2005-08-05 00:44:28 -0400859static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 if (cpu_online(pr->id)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400862 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864 arch_unregister_cpu(pr->id);
865 acpi_unmap_lsapic(pr->id);
Len Brown4be44fc2005-08-05 00:44:28 -0400866 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868#else
Len Brown4be44fc2005-08-05 00:44:28 -0400869static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 return AE_ERROR;
872}
Len Brown4be44fc2005-08-05 00:44:28 -0400873static int acpi_processor_handle_eject(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Len Brown4be44fc2005-08-05 00:44:28 -0400875 return (-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877#endif
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879static
880void acpi_processor_install_hotplug_notify(void)
881{
882#ifdef CONFIG_ACPI_HOTPLUG_CPU
883 int action = INSTALL_NOTIFY_HANDLER;
884 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400885 ACPI_ROOT_OBJECT,
886 ACPI_UINT32_MAX,
887 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888#endif
889}
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891static
892void acpi_processor_uninstall_hotplug_notify(void)
893{
894#ifdef CONFIG_ACPI_HOTPLUG_CPU
895 int action = UNINSTALL_NOTIFY_HANDLER;
896 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
Len Brown4be44fc2005-08-05 00:44:28 -0400897 ACPI_ROOT_OBJECT,
898 ACPI_UINT32_MAX,
899 processor_walk_namespace_cb, &action, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900#endif
901}
902
903/*
904 * We keep the driver loaded even when ACPI is not running.
905 * This is needed for the powernow-k8 driver, that works even without
906 * ACPI, but needs symbols from this driver
907 */
908
Len Brown4be44fc2005-08-05 00:44:28 -0400909static int __init acpi_processor_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Len Brown4be44fc2005-08-05 00:44:28 -0400911 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 ACPI_FUNCTION_TRACE("acpi_processor_init");
914
915 memset(&processors, 0, sizeof(processors));
916 memset(&errata, 0, sizeof(errata));
917
918 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
919 if (!acpi_processor_dir)
920 return_VALUE(0);
921 acpi_processor_dir->owner = THIS_MODULE;
922
923 result = acpi_bus_register_driver(&acpi_processor_driver);
924 if (result < 0) {
925 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
926 return_VALUE(0);
927 }
928
929 acpi_processor_install_hotplug_notify();
930
931 acpi_thermal_cpufreq_init();
932
933 acpi_processor_ppc_init();
934
935 return_VALUE(0);
936}
937
Len Brown4be44fc2005-08-05 00:44:28 -0400938static void __exit acpi_processor_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 ACPI_FUNCTION_TRACE("acpi_processor_exit");
941
942 acpi_processor_ppc_exit();
943
944 acpi_thermal_cpufreq_exit();
945
946 acpi_processor_uninstall_hotplug_notify();
947
948 acpi_bus_unregister_driver(&acpi_processor_driver);
949
950 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
951
952 return_VOID;
953}
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955module_init(acpi_processor_init);
956module_exit(acpi_processor_exit);
957
958EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
959
960MODULE_ALIAS("processor");