[ACPI] build fix - processor_core.c w/ !CONFIG_SMP
[deliverable/linux.git] / drivers / acpi / processor_core.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
61#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
4be44fcd 77ACPI_MODULE_NAME("acpi_processor")
1da177e4 78
4be44fcd 79 MODULE_AUTHOR("Paul Diefenbaugh");
1da177e4
LT
80MODULE_DESCRIPTION(ACPI_PROCESSOR_DRIVER_NAME);
81MODULE_LICENSE("GPL");
82
4be44fcd
LB
83static 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);
1da177e4 86static int acpi_processor_info_open_fs(struct inode *inode, struct file *file);
4be44fcd 87static void acpi_processor_notify(acpi_handle handle, u32 event, void *data);
1da177e4
LT
88static 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 = {
4be44fcd
LB
92 .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 },
1da177e4
LT
100};
101
102#define INSTALL_NOTIFY_HANDLER 1
103#define UNINSTALL_NOTIFY_HANDLER 2
104
1da177e4 105static struct file_operations acpi_processor_info_fops = {
4be44fcd
LB
106 .open = acpi_processor_info_open_fs,
107 .read = seq_read,
108 .llseek = seq_lseek,
109 .release = single_release,
1da177e4
LT
110};
111
4be44fcd 112struct acpi_processor *processors[NR_CPUS];
1da177e4
LT
113struct acpi_processor_errata errata;
114
1da177e4
LT
115/* --------------------------------------------------------------------------
116 Errata Handling
117 -------------------------------------------------------------------------- */
118
4be44fcd 119static int acpi_processor_errata_piix4(struct pci_dev *dev)
1da177e4 120{
4be44fcd
LB
121 u8 rev = 0;
122 u8 value1 = 0;
123 u8 value2 = 0;
1da177e4
LT
124
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,
4be44fcd
LB
184 PCI_DEVICE_ID_INTEL_82371AB,
185 PCI_ANY_ID, PCI_ANY_ID, NULL);
1da177e4
LT
186 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,
4be44fcd
LB
201 PCI_DEVICE_ID_INTEL_82371AB_0,
202 PCI_ANY_ID, PCI_ANY_ID, NULL);
1da177e4
LT
203 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,
4be44fcd 216 "Bus master activity detection (BM-IDE) erratum enabled\n"));
1da177e4
LT
217 if (errata.piix4.fdma)
218 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 219 "Type-F DMA livelock erratum (C3 disabled)\n"));
1da177e4
LT
220
221 return_VALUE(0);
222}
223
8713cbef 224static int acpi_processor_errata(struct acpi_processor *pr)
1da177e4 225{
4be44fcd
LB
226 int result = 0;
227 struct pci_dev *dev = NULL;
1da177e4
LT
228
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,
4be44fcd
LB
238 PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID,
239 PCI_ANY_ID, NULL);
1da177e4
LT
240 if (dev) {
241 result = acpi_processor_errata_piix4(dev);
242 pci_dev_put(dev);
243 }
244
245 return_VALUE(result);
246}
247
02df8b93
VP
248/* --------------------------------------------------------------------------
249 Common ACPI processor fucntions
250 -------------------------------------------------------------------------- */
251
252/*
253 * _PDC is required for a BIOS-OS handshake for most of the newer
254 * ACPI processor features.
255 */
256
257int acpi_processor_set_pdc(struct acpi_processor *pr,
4be44fcd 258 struct acpi_object_list *pdc_in)
02df8b93 259{
4be44fcd
LB
260 acpi_status status = AE_OK;
261 u32 arg0_buf[3];
262 union acpi_object arg0 = { ACPI_TYPE_BUFFER };
263 struct acpi_object_list no_object = { 1, &arg0 };
264 struct acpi_object_list *pdc;
02df8b93
VP
265
266 ACPI_FUNCTION_TRACE("acpi_processor_set_pdc");
267
268 arg0.buffer.length = 12;
269 arg0.buffer.pointer = (u8 *) arg0_buf;
270 arg0_buf[0] = ACPI_PDC_REVISION_ID;
271 arg0_buf[1] = 0;
272 arg0_buf[2] = 0;
273
274 pdc = (pdc_in) ? pdc_in : &no_object;
275
276 status = acpi_evaluate_object(pr->handle, "_PDC", pdc, NULL);
277
278 if ((ACPI_FAILURE(status)) && (pdc_in))
4be44fcd
LB
279 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
280 "Error evaluating _PDC, using legacy perf. control...\n"));
02df8b93
VP
281
282 return_VALUE(status);
283}
284
1da177e4
LT
285/* --------------------------------------------------------------------------
286 FS Interface (/proc)
287 -------------------------------------------------------------------------- */
288
4be44fcd 289static struct proc_dir_entry *acpi_processor_dir = NULL;
1da177e4
LT
290
291static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset)
292{
4be44fcd 293 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
1da177e4
LT
294
295 ACPI_FUNCTION_TRACE("acpi_processor_info_seq_show");
296
297 if (!pr)
298 goto end;
299
300 seq_printf(seq, "processor id: %d\n"
4be44fcd
LB
301 "acpi id: %d\n"
302 "bus mastering control: %s\n"
303 "power management: %s\n"
304 "throttling control: %s\n"
305 "limit interface: %s\n",
306 pr->id,
307 pr->acpi_id,
308 pr->flags.bm_control ? "yes" : "no",
309 pr->flags.power ? "yes" : "no",
310 pr->flags.throttling ? "yes" : "no",
311 pr->flags.limit ? "yes" : "no");
312
313 end:
1da177e4
LT
314 return_VALUE(0);
315}
316
317static int acpi_processor_info_open_fs(struct inode *inode, struct file *file)
318{
319 return single_open(file, acpi_processor_info_seq_show,
4be44fcd 320 PDE(inode)->data);
1da177e4
LT
321}
322
4be44fcd 323static int acpi_processor_add_fs(struct acpi_device *device)
1da177e4 324{
4be44fcd 325 struct proc_dir_entry *entry = NULL;
1da177e4
LT
326
327 ACPI_FUNCTION_TRACE("acpi_processor_add_fs");
328
329 if (!acpi_device_dir(device)) {
330 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
4be44fcd 331 acpi_processor_dir);
1da177e4
LT
332 if (!acpi_device_dir(device))
333 return_VALUE(-ENODEV);
334 }
335 acpi_device_dir(device)->owner = THIS_MODULE;
336
337 /* 'info' [R] */
338 entry = create_proc_entry(ACPI_PROCESSOR_FILE_INFO,
4be44fcd 339 S_IRUGO, acpi_device_dir(device));
1da177e4
LT
340 if (!entry)
341 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd
LB
342 "Unable to create '%s' fs entry\n",
343 ACPI_PROCESSOR_FILE_INFO));
1da177e4
LT
344 else {
345 entry->proc_fops = &acpi_processor_info_fops;
346 entry->data = acpi_driver_data(device);
347 entry->owner = THIS_MODULE;
348 }
349
350 /* 'throttling' [R/W] */
351 entry = create_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
4be44fcd
LB
352 S_IFREG | S_IRUGO | S_IWUSR,
353 acpi_device_dir(device));
1da177e4
LT
354 if (!entry)
355 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd
LB
356 "Unable to create '%s' fs entry\n",
357 ACPI_PROCESSOR_FILE_THROTTLING));
1da177e4
LT
358 else {
359 entry->proc_fops = &acpi_processor_throttling_fops;
360 entry->proc_fops->write = acpi_processor_write_throttling;
361 entry->data = acpi_driver_data(device);
362 entry->owner = THIS_MODULE;
363 }
364
365 /* 'limit' [R/W] */
366 entry = create_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
4be44fcd
LB
367 S_IFREG | S_IRUGO | S_IWUSR,
368 acpi_device_dir(device));
1da177e4
LT
369 if (!entry)
370 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd
LB
371 "Unable to create '%s' fs entry\n",
372 ACPI_PROCESSOR_FILE_LIMIT));
1da177e4
LT
373 else {
374 entry->proc_fops = &acpi_processor_limit_fops;
375 entry->proc_fops->write = acpi_processor_write_limit;
376 entry->data = acpi_driver_data(device);
377 entry->owner = THIS_MODULE;
378 }
379
380 return_VALUE(0);
381}
382
4be44fcd 383static int acpi_processor_remove_fs(struct acpi_device *device)
1da177e4
LT
384{
385 ACPI_FUNCTION_TRACE("acpi_processor_remove_fs");
386
387 if (acpi_device_dir(device)) {
4be44fcd
LB
388 remove_proc_entry(ACPI_PROCESSOR_FILE_INFO,
389 acpi_device_dir(device));
1da177e4 390 remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING,
4be44fcd
LB
391 acpi_device_dir(device));
392 remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT,
393 acpi_device_dir(device));
1da177e4
LT
394 remove_proc_entry(acpi_device_bid(device), acpi_processor_dir);
395 acpi_device_dir(device) = NULL;
396 }
397
398 return_VALUE(0);
399}
400
401/* Use the acpiid in MADT to map cpus in case of SMP */
402#ifndef CONFIG_SMP
2413d2c1 403#define convert_acpiid_to_cpu(acpi_id, cpu_indexp) (0xff)
1da177e4
LT
404#else
405
406#ifdef CONFIG_IA64
407#define arch_acpiid_to_apicid ia64_acpiid_to_sapicid
408#define arch_cpu_to_apicid ia64_cpu_to_sapicid
409#define ARCH_BAD_APICID (0xffff)
410#else
411#define arch_acpiid_to_apicid x86_acpiid_to_apicid
412#define arch_cpu_to_apicid x86_cpu_to_apicid
413#define ARCH_BAD_APICID (0xff)
414#endif
415
9a31477a 416static int convert_acpiid_to_cpu(u8 acpi_id, unsigned int *cpu_index)
1da177e4
LT
417{
418 u16 apic_id;
9a31477a 419 unsigned int i;
1da177e4
LT
420
421 apic_id = arch_acpiid_to_apicid[acpi_id];
422 if (apic_id == ARCH_BAD_APICID)
423 return -1;
424
425 for (i = 0; i < NR_CPUS; i++) {
9a31477a
VP
426 if (arch_cpu_to_apicid[i] == apic_id) {
427 *cpu_index = i;
428 return 0;
429 }
1da177e4
LT
430 }
431 return -1;
432}
433#endif
434
435/* --------------------------------------------------------------------------
436 Driver Interface
437 -------------------------------------------------------------------------- */
438
4be44fcd 439static int acpi_processor_get_info(struct acpi_processor *pr)
1da177e4 440{
4be44fcd
LB
441 acpi_status status = 0;
442 union acpi_object object = { 0 };
443 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
9a31477a
VP
444 unsigned int cpu_index;
445 int retval;
4be44fcd 446 static int cpu0_initialized;
1da177e4
LT
447
448 ACPI_FUNCTION_TRACE("acpi_processor_get_info");
449
450 if (!pr)
451 return_VALUE(-EINVAL);
452
453 if (num_online_cpus() > 1)
454 errata.smp = TRUE;
455
456 acpi_processor_errata(pr);
457
458 /*
459 * Check to see if we have bus mastering arbitration control. This
460 * is required for proper C3 usage (to maintain cache coherency).
461 */
462 if (acpi_fadt.V1_pm2_cnt_blk && acpi_fadt.pm2_cnt_len) {
463 pr->flags.bm_control = 1;
464 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
465 "Bus mastering arbitration control present\n"));
466 } else
1da177e4 467 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 468 "No bus mastering arbitration control\n"));
1da177e4
LT
469
470 /*
471 * Evalute the processor object. Note that it is common on SMP to
472 * have the first (boot) processor with a valid PBLK address while
473 * all others have a NULL address.
474 */
475 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
476 if (ACPI_FAILURE(status)) {
477 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd 478 "Error evaluating processor object\n"));
1da177e4
LT
479 return_VALUE(-ENODEV);
480 }
481
482 /*
483 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP.
4be44fcd 484 * >>> 'acpi_get_processor_id(acpi_id, &id)' in arch/xxx/acpi.c
1da177e4
LT
485 */
486 pr->acpi_id = object.processor.proc_id;
487
9a31477a 488 retval = convert_acpiid_to_cpu(pr->acpi_id, &cpu_index);
1da177e4 489
4be44fcd 490 /* Handle UP system running SMP kernel, with no LAPIC in MADT */
9a31477a 491 if (!cpu0_initialized && retval &&
4be44fcd
LB
492 (num_online_cpus() == 1)) {
493 cpu_index = 0;
494 }
495
496 cpu0_initialized = 1;
497
498 pr->id = cpu_index;
499
500 /*
501 * Extra Processor objects may be enumerated on MP systems with
502 * less than the max # of CPUs. They should be ignored _iff
503 * they are physically not present.
504 */
9a31477a 505 if (retval) {
4be44fcd
LB
506 if (ACPI_FAILURE
507 (acpi_processor_hotadd_init(pr->handle, &pr->id))) {
9a31477a 508 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
509 "Error getting cpuindex for acpiid 0x%x\n",
510 pr->acpi_id));
511 return_VALUE(-ENODEV);
512 }
513 }
1da177e4
LT
514
515 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id,
4be44fcd 516 pr->acpi_id));
1da177e4
LT
517
518 if (!object.processor.pblk_address)
519 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n"));
520 else if (object.processor.pblk_length != 6)
521 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid PBLK length [%d]\n",
4be44fcd 522 object.processor.pblk_length));
1da177e4
LT
523 else {
524 pr->throttling.address = object.processor.pblk_address;
525 pr->throttling.duty_offset = acpi_fadt.duty_offset;
526 pr->throttling.duty_width = acpi_fadt.duty_width;
527
528 pr->pblk = object.processor.pblk_address;
529
530 /*
531 * We don't care about error returns - we just try to mark
532 * these reserved so that nobody else is confused into thinking
533 * that this region might be unused..
534 *
535 * (In particular, allocating the IO range for Cardbus)
536 */
537 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
538 }
539
540#ifdef CONFIG_CPU_FREQ
541 acpi_processor_ppc_has_changed(pr);
542#endif
543 acpi_processor_get_throttling_info(pr);
544 acpi_processor_get_limit_info(pr);
545
546 return_VALUE(0);
547}
548
4be44fcd 549static int acpi_processor_start(struct acpi_device *device)
1da177e4 550{
4be44fcd
LB
551 int result = 0;
552 acpi_status status = AE_OK;
553 struct acpi_processor *pr;
1da177e4
LT
554
555 ACPI_FUNCTION_TRACE("acpi_processor_start");
556
557 pr = acpi_driver_data(device);
558
559 result = acpi_processor_get_info(pr);
560 if (result) {
561 /* Processor is physically not present */
562 return_VALUE(0);
563 }
564
565 BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
566
567 processors[pr->id] = pr;
568
569 result = acpi_processor_add_fs(device);
570 if (result)
571 goto end;
572
573 status = acpi_install_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
4be44fcd 574 acpi_processor_notify, pr);
1da177e4
LT
575 if (ACPI_FAILURE(status)) {
576 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd 577 "Error installing device notify handler\n"));
1da177e4
LT
578 }
579
580 acpi_processor_power_init(pr, device);
581
582 if (pr->flags.throttling) {
583 printk(KERN_INFO PREFIX "%s [%s] (supports",
4be44fcd 584 acpi_device_name(device), acpi_device_bid(device));
1da177e4
LT
585 printk(" %d throttling states", pr->throttling.state_count);
586 printk(")\n");
587 }
588
4be44fcd 589 end:
1da177e4
LT
590
591 return_VALUE(result);
592}
593
4be44fcd 594static void acpi_processor_notify(acpi_handle handle, u32 event, void *data)
1da177e4 595{
4be44fcd
LB
596 struct acpi_processor *pr = (struct acpi_processor *)data;
597 struct acpi_device *device = NULL;
1da177e4
LT
598
599 ACPI_FUNCTION_TRACE("acpi_processor_notify");
600
601 if (!pr)
602 return_VOID;
603
604 if (acpi_bus_get_device(pr->handle, &device))
605 return_VOID;
606
607 switch (event) {
608 case ACPI_PROCESSOR_NOTIFY_PERFORMANCE:
609 acpi_processor_ppc_has_changed(pr);
610 acpi_bus_generate_event(device, event,
4be44fcd 611 pr->performance_platform_limit);
1da177e4
LT
612 break;
613 case ACPI_PROCESSOR_NOTIFY_POWER:
614 acpi_processor_cst_has_changed(pr);
615 acpi_bus_generate_event(device, event, 0);
616 break;
617 default:
618 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 619 "Unsupported event [0x%x]\n", event));
1da177e4
LT
620 break;
621 }
622
623 return_VOID;
624}
625
4be44fcd 626static int acpi_processor_add(struct acpi_device *device)
1da177e4 627{
4be44fcd 628 struct acpi_processor *pr = NULL;
1da177e4
LT
629
630 ACPI_FUNCTION_TRACE("acpi_processor_add");
631
632 if (!device)
633 return_VALUE(-EINVAL);
634
635 pr = kmalloc(sizeof(struct acpi_processor), GFP_KERNEL);
636 if (!pr)
637 return_VALUE(-ENOMEM);
638 memset(pr, 0, sizeof(struct acpi_processor));
639
640 pr->handle = device->handle;
641 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
642 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
643 acpi_driver_data(device) = pr;
644
645 return_VALUE(0);
646}
647
4be44fcd 648static int acpi_processor_remove(struct acpi_device *device, int type)
1da177e4 649{
4be44fcd
LB
650 acpi_status status = AE_OK;
651 struct acpi_processor *pr = NULL;
1da177e4
LT
652
653 ACPI_FUNCTION_TRACE("acpi_processor_remove");
654
655 if (!device || !acpi_driver_data(device))
656 return_VALUE(-EINVAL);
657
4be44fcd 658 pr = (struct acpi_processor *)acpi_driver_data(device);
1da177e4
LT
659
660 if (pr->id >= NR_CPUS) {
661 kfree(pr);
662 return_VALUE(0);
663 }
664
665 if (type == ACPI_BUS_REMOVAL_EJECT) {
666 if (acpi_processor_handle_eject(pr))
667 return_VALUE(-EINVAL);
668 }
669
670 acpi_processor_power_exit(pr, device);
671
672 status = acpi_remove_notify_handler(pr->handle, ACPI_DEVICE_NOTIFY,
4be44fcd 673 acpi_processor_notify);
1da177e4
LT
674 if (ACPI_FAILURE(status)) {
675 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd 676 "Error removing notify handler\n"));
1da177e4
LT
677 }
678
679 acpi_processor_remove_fs(device);
680
681 processors[pr->id] = NULL;
682
683 kfree(pr);
684
685 return_VALUE(0);
686}
687
688#ifdef CONFIG_ACPI_HOTPLUG_CPU
689/****************************************************************************
690 * Acpi processor hotplug support *
691 ****************************************************************************/
692
693static int is_processor_present(acpi_handle handle);
694
4be44fcd 695static int is_processor_present(acpi_handle handle)
1da177e4 696{
4be44fcd
LB
697 acpi_status status;
698 unsigned long sta = 0;
1da177e4
LT
699
700 ACPI_FUNCTION_TRACE("is_processor_present");
701
702 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
703 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_PRESENT)) {
704 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd 705 "Processor Device is not present\n"));
1da177e4
LT
706 return_VALUE(0);
707 }
708 return_VALUE(1);
709}
710
1da177e4 711static
4be44fcd 712int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
1da177e4 713{
4be44fcd
LB
714 acpi_handle phandle;
715 struct acpi_device *pdev;
716 struct acpi_processor *pr;
1da177e4
LT
717
718 ACPI_FUNCTION_TRACE("acpi_processor_device_add");
719
720 if (acpi_get_parent(handle, &phandle)) {
721 return_VALUE(-ENODEV);
722 }
723
724 if (acpi_bus_get_device(phandle, &pdev)) {
725 return_VALUE(-ENODEV);
726 }
727
728 if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) {
729 return_VALUE(-ENODEV);
730 }
731
3fb02738 732 acpi_bus_start(*device);
1da177e4
LT
733
734 pr = acpi_driver_data(*device);
735 if (!pr)
736 return_VALUE(-ENODEV);
737
4be44fcd 738 if ((pr->id >= 0) && (pr->id < NR_CPUS)) {
1da177e4
LT
739 kobject_hotplug(&(*device)->kobj, KOBJ_ONLINE);
740 }
741 return_VALUE(0);
742}
743
1da177e4 744static void
4be44fcd 745acpi_processor_hotplug_notify(acpi_handle handle, u32 event, void *data)
1da177e4 746{
4be44fcd
LB
747 struct acpi_processor *pr;
748 struct acpi_device *device = NULL;
1da177e4
LT
749 int result;
750
751 ACPI_FUNCTION_TRACE("acpi_processor_hotplug_notify");
752
753 switch (event) {
754 case ACPI_NOTIFY_BUS_CHECK:
755 case ACPI_NOTIFY_DEVICE_CHECK:
756 printk("Processor driver received %s event\n",
4be44fcd
LB
757 (event == ACPI_NOTIFY_BUS_CHECK) ?
758 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
1da177e4
LT
759
760 if (!is_processor_present(handle))
761 break;
762
763 if (acpi_bus_get_device(handle, &device)) {
764 result = acpi_processor_device_add(handle, &device);
765 if (result)
766 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd 767 "Unable to add the device\n"));
1da177e4
LT
768 break;
769 }
770
771 pr = acpi_driver_data(device);
772 if (!pr) {
773 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd 774 "Driver data is NULL\n"));
1da177e4
LT
775 break;
776 }
777
778 if (pr->id >= 0 && (pr->id < NR_CPUS)) {
779 kobject_hotplug(&device->kobj, KOBJ_OFFLINE);
780 break;
781 }
782
783 result = acpi_processor_start(device);
4be44fcd 784 if ((!result) && ((pr->id >= 0) && (pr->id < NR_CPUS))) {
1da177e4
LT
785 kobject_hotplug(&device->kobj, KOBJ_ONLINE);
786 } else {
787 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
4be44fcd
LB
788 "Device [%s] failed to start\n",
789 acpi_device_bid(device)));
1da177e4 790 }
4be44fcd 791 break;
1da177e4 792 case ACPI_NOTIFY_EJECT_REQUEST:
4be44fcd
LB
793 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
794 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
1da177e4
LT
795
796 if (acpi_bus_get_device(handle, &device)) {
4be44fcd
LB
797 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
798 "Device don't exist, dropping EJECT\n"));
1da177e4
LT
799 break;
800 }
801 pr = acpi_driver_data(device);
802 if (!pr) {
4be44fcd
LB
803 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
804 "Driver data is NULL, dropping EJECT\n"));
1da177e4
LT
805 return_VOID;
806 }
807
808 if ((pr->id < NR_CPUS) && (cpu_present(pr->id)))
809 kobject_hotplug(&device->kobj, KOBJ_OFFLINE);
810 break;
811 default:
812 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 813 "Unsupported event [0x%x]\n", event));
1da177e4
LT
814 break;
815 }
816
817 return_VOID;
818}
819
820static acpi_status
821processor_walk_namespace_cb(acpi_handle handle,
4be44fcd 822 u32 lvl, void *context, void **rv)
1da177e4 823{
4be44fcd 824 acpi_status status;
1da177e4 825 int *action = context;
4be44fcd 826 acpi_object_type type = 0;
1da177e4
LT
827
828 status = acpi_get_type(handle, &type);
829 if (ACPI_FAILURE(status))
4be44fcd 830 return (AE_OK);
1da177e4
LT
831
832 if (type != ACPI_TYPE_PROCESSOR)
4be44fcd 833 return (AE_OK);
1da177e4 834
4be44fcd 835 switch (*action) {
1da177e4
LT
836 case INSTALL_NOTIFY_HANDLER:
837 acpi_install_notify_handler(handle,
4be44fcd
LB
838 ACPI_SYSTEM_NOTIFY,
839 acpi_processor_hotplug_notify,
840 NULL);
1da177e4
LT
841 break;
842 case UNINSTALL_NOTIFY_HANDLER:
843 acpi_remove_notify_handler(handle,
4be44fcd
LB
844 ACPI_SYSTEM_NOTIFY,
845 acpi_processor_hotplug_notify);
1da177e4
LT
846 break;
847 default:
848 break;
849 }
850
4be44fcd 851 return (AE_OK);
1da177e4
LT
852}
853
4be44fcd 854static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
1da177e4
LT
855{
856 ACPI_FUNCTION_TRACE("acpi_processor_hotadd_init");
857
858 if (!is_processor_present(handle)) {
859 return_VALUE(AE_ERROR);
860 }
861
862 if (acpi_map_lsapic(handle, p_cpu))
863 return_VALUE(AE_ERROR);
864
865 if (arch_register_cpu(*p_cpu)) {
866 acpi_unmap_lsapic(*p_cpu);
867 return_VALUE(AE_ERROR);
868 }
869
870 return_VALUE(AE_OK);
871}
872
4be44fcd 873static int acpi_processor_handle_eject(struct acpi_processor *pr)
1da177e4
LT
874{
875 if (cpu_online(pr->id)) {
4be44fcd 876 return (-EINVAL);
1da177e4
LT
877 }
878 arch_unregister_cpu(pr->id);
879 acpi_unmap_lsapic(pr->id);
4be44fcd 880 return (0);
1da177e4
LT
881}
882#else
4be44fcd 883static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu)
1da177e4
LT
884{
885 return AE_ERROR;
886}
4be44fcd 887static int acpi_processor_handle_eject(struct acpi_processor *pr)
1da177e4 888{
4be44fcd 889 return (-EINVAL);
1da177e4
LT
890}
891#endif
892
1da177e4
LT
893static
894void acpi_processor_install_hotplug_notify(void)
895{
896#ifdef CONFIG_ACPI_HOTPLUG_CPU
897 int action = INSTALL_NOTIFY_HANDLER;
898 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
4be44fcd
LB
899 ACPI_ROOT_OBJECT,
900 ACPI_UINT32_MAX,
901 processor_walk_namespace_cb, &action, NULL);
1da177e4
LT
902#endif
903}
904
1da177e4
LT
905static
906void acpi_processor_uninstall_hotplug_notify(void)
907{
908#ifdef CONFIG_ACPI_HOTPLUG_CPU
909 int action = UNINSTALL_NOTIFY_HANDLER;
910 acpi_walk_namespace(ACPI_TYPE_PROCESSOR,
4be44fcd
LB
911 ACPI_ROOT_OBJECT,
912 ACPI_UINT32_MAX,
913 processor_walk_namespace_cb, &action, NULL);
1da177e4
LT
914#endif
915}
916
917/*
918 * We keep the driver loaded even when ACPI is not running.
919 * This is needed for the powernow-k8 driver, that works even without
920 * ACPI, but needs symbols from this driver
921 */
922
4be44fcd 923static int __init acpi_processor_init(void)
1da177e4 924{
4be44fcd 925 int result = 0;
1da177e4
LT
926
927 ACPI_FUNCTION_TRACE("acpi_processor_init");
928
929 memset(&processors, 0, sizeof(processors));
930 memset(&errata, 0, sizeof(errata));
931
932 acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
933 if (!acpi_processor_dir)
934 return_VALUE(0);
935 acpi_processor_dir->owner = THIS_MODULE;
936
937 result = acpi_bus_register_driver(&acpi_processor_driver);
938 if (result < 0) {
939 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
940 return_VALUE(0);
941 }
942
943 acpi_processor_install_hotplug_notify();
944
945 acpi_thermal_cpufreq_init();
946
947 acpi_processor_ppc_init();
948
949 return_VALUE(0);
950}
951
4be44fcd 952static void __exit acpi_processor_exit(void)
1da177e4
LT
953{
954 ACPI_FUNCTION_TRACE("acpi_processor_exit");
955
956 acpi_processor_ppc_exit();
957
958 acpi_thermal_cpufreq_exit();
959
960 acpi_processor_uninstall_hotplug_notify();
961
962 acpi_bus_unregister_driver(&acpi_processor_driver);
963
964 remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
965
966 return_VOID;
967}
968
1da177e4
LT
969module_init(acpi_processor_init);
970module_exit(acpi_processor_exit);
971
972EXPORT_SYMBOL(acpi_processor_set_thermal_limit);
973
974MODULE_ALIAS("processor");
This page took 0.083739 seconds and 5 git commands to generate.