diff options
author | Alex Chiang <achiang@hp.com> | 2009-12-20 14:19:24 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-12-22 03:24:12 -0500 |
commit | 08ea48a326d8030ef5b7fb02292faf5a53c95e0a (patch) | |
tree | c0f9dd9001c50925fc85b18b5f2afc24000d90f6 /drivers/acpi/processor_pdc.c | |
parent | 407cd87c54e76c266245e8faef8dd4a84b7254fe (diff) |
ACPI: processor: factor out common _PDC settings
Both x86 and ia64 initialize _PDC with mostly common bit settings.
Factor out the common settings and leave the arch-specific ones alone.
Cc: Tony Luck <tony.luck@intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Alex Chiang <achiang@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/processor_pdc.c')
-rw-r--r-- | drivers/acpi/processor_pdc.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/acpi/processor_pdc.c b/drivers/acpi/processor_pdc.c index 87946b6da765..ccda7c95d073 100644 --- a/drivers/acpi/processor_pdc.c +++ b/drivers/acpi/processor_pdc.c | |||
@@ -33,6 +33,15 @@ static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = { | |||
33 | {}, | 33 | {}, |
34 | }; | 34 | }; |
35 | 35 | ||
36 | static void acpi_set_pdc_bits(u32 *buf) | ||
37 | { | ||
38 | buf[0] = ACPI_PDC_REVISION_ID; | ||
39 | buf[1] = 1; | ||
40 | |||
41 | /* Enable coordination with firmware's _TSD info */ | ||
42 | buf[2] = ACPI_PDC_SMP_T_SWCOORD; | ||
43 | } | ||
44 | |||
36 | static void acpi_processor_init_pdc(struct acpi_processor *pr) | 45 | static void acpi_processor_init_pdc(struct acpi_processor *pr) |
37 | { | 46 | { |
38 | struct acpi_object_list *obj_list; | 47 | struct acpi_object_list *obj_list; |
@@ -63,6 +72,8 @@ static void acpi_processor_init_pdc(struct acpi_processor *pr) | |||
63 | return; | 72 | return; |
64 | } | 73 | } |
65 | 74 | ||
75 | acpi_set_pdc_bits(buf); | ||
76 | |||
66 | obj->type = ACPI_TYPE_BUFFER; | 77 | obj->type = ACPI_TYPE_BUFFER; |
67 | obj->buffer.length = 12; | 78 | obj->buffer.length = 12; |
68 | obj->buffer.pointer = (u8 *) buf; | 79 | obj->buffer.pointer = (u8 *) buf; |