diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-30 19:45:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-30 19:45:39 -0400 |
commit | a335750b9a039a9d4cd727cdccacfb90fd63c4e8 (patch) | |
tree | 8f3198984fb75fe494e771d9431f6799228623c5 /arch/x86 | |
parent | 10f3cb41d48ab30f5c754b30eea557371892b4c2 (diff) | |
parent | d326f44e5f2204c7a24db69bfc6dd3fe5f86182b (diff) |
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Pull ACPI & Power Management changes from Len Brown:
- ACPI 5.0 after-ripples, ACPICA/Linux divergence cleanup
- cpuidle evolving, more ARM use
- thermal sub-system evolving, ditto
- assorted other PM bits
Fix up conflicts in various cpuidle implementations due to ARM cpuidle
cleanups (ARM at91 self-refresh and cpu idle code rewritten into
"standby" in asm conflicting with the consolidation of cpuidle time
keeping), trivial SH include file context conflict and RCU tracing fixes
in generic code.
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux: (77 commits)
ACPI throttling: fix endian bug in acpi_read_throttling_status()
Disable MCP limit exceeded messages from Intel IPS driver
ACPI video: Don't start video device until its associated input device has been allocated
ACPI video: Harden video bus adding.
ACPI: Add support for exposing BGRT data
ACPI: export acpi_kobj
ACPI: Fix logic for removing mappings in 'acpi_unmap'
CPER failed to handle generic error records with multiple sections
ACPI: Clean redundant codes in scan.c
ACPI: Fix unprotected smp_processor_id() in acpi_processor_cst_has_changed()
ACPI: consistently use should_use_kmap()
PNPACPI: Fix device ref leaking in acpi_pnp_match
ACPI: Fix use-after-free in acpi_map_lsapic
ACPI: processor_driver: add missing kfree
ACPI, APEI: Fix incorrect APEI register bit width check and usage
Update documentation for parameter *notrigger* in einj.txt
ACPI, APEI, EINJ, new parameter to control trigger action
ACPI, APEI, EINJ, limit the range of einj_param
ACPI, APEI, Fix ERST header length check
cpuidle: power_usage should be declared signed integer
...
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 3 | ||||
-rw-r--r-- | arch/x86/kernel/smpboot.c | 4 | ||||
-rw-r--r-- | arch/x86/kernel/tboot.c | 9 |
3 files changed, 11 insertions, 5 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 0f42c2f44311..a415b1f44365 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -642,6 +642,7 @@ static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu) | |||
642 | kfree(buffer.pointer); | 642 | kfree(buffer.pointer); |
643 | buffer.length = ACPI_ALLOCATE_BUFFER; | 643 | buffer.length = ACPI_ALLOCATE_BUFFER; |
644 | buffer.pointer = NULL; | 644 | buffer.pointer = NULL; |
645 | lapic = NULL; | ||
645 | 646 | ||
646 | if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL)) | 647 | if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL)) |
647 | goto out; | 648 | goto out; |
@@ -650,7 +651,7 @@ static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu) | |||
650 | goto free_tmp_map; | 651 | goto free_tmp_map; |
651 | 652 | ||
652 | cpumask_copy(tmp_map, cpu_present_mask); | 653 | cpumask_copy(tmp_map, cpu_present_mask); |
653 | acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED); | 654 | acpi_register_lapic(physid, ACPI_MADT_ENABLED); |
654 | 655 | ||
655 | /* | 656 | /* |
656 | * If mp_register_lapic successfully generates a new logical cpu | 657 | * If mp_register_lapic successfully generates a new logical cpu |
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index ce13315d48fb..6e1e406038c2 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -50,6 +50,7 @@ | |||
50 | #include <linux/tboot.h> | 50 | #include <linux/tboot.h> |
51 | #include <linux/stackprotector.h> | 51 | #include <linux/stackprotector.h> |
52 | #include <linux/gfp.h> | 52 | #include <linux/gfp.h> |
53 | #include <linux/cpuidle.h> | ||
53 | 54 | ||
54 | #include <asm/acpi.h> | 55 | #include <asm/acpi.h> |
55 | #include <asm/desc.h> | 56 | #include <asm/desc.h> |
@@ -1404,7 +1405,8 @@ void native_play_dead(void) | |||
1404 | tboot_shutdown(TB_SHUTDOWN_WFS); | 1405 | tboot_shutdown(TB_SHUTDOWN_WFS); |
1405 | 1406 | ||
1406 | mwait_play_dead(); /* Only returns on failure */ | 1407 | mwait_play_dead(); /* Only returns on failure */ |
1407 | hlt_play_dead(); | 1408 | if (cpuidle_play_dead()) |
1409 | hlt_play_dead(); | ||
1408 | } | 1410 | } |
1409 | 1411 | ||
1410 | #else /* ... !CONFIG_HOTPLUG_CPU */ | 1412 | #else /* ... !CONFIG_HOTPLUG_CPU */ |
diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c index e2410e27f97e..6410744ac5cb 100644 --- a/arch/x86/kernel/tboot.c +++ b/arch/x86/kernel/tboot.c | |||
@@ -272,7 +272,7 @@ static void tboot_copy_fadt(const struct acpi_table_fadt *fadt) | |||
272 | offsetof(struct acpi_table_facs, firmware_waking_vector); | 272 | offsetof(struct acpi_table_facs, firmware_waking_vector); |
273 | } | 273 | } |
274 | 274 | ||
275 | void tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control) | 275 | static int tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control) |
276 | { | 276 | { |
277 | static u32 acpi_shutdown_map[ACPI_S_STATE_COUNT] = { | 277 | static u32 acpi_shutdown_map[ACPI_S_STATE_COUNT] = { |
278 | /* S0,1,2: */ -1, -1, -1, | 278 | /* S0,1,2: */ -1, -1, -1, |
@@ -281,7 +281,7 @@ void tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control) | |||
281 | /* S5: */ TB_SHUTDOWN_S5 }; | 281 | /* S5: */ TB_SHUTDOWN_S5 }; |
282 | 282 | ||
283 | if (!tboot_enabled()) | 283 | if (!tboot_enabled()) |
284 | return; | 284 | return 0; |
285 | 285 | ||
286 | tboot_copy_fadt(&acpi_gbl_FADT); | 286 | tboot_copy_fadt(&acpi_gbl_FADT); |
287 | tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; | 287 | tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; |
@@ -292,10 +292,11 @@ void tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control) | |||
292 | if (sleep_state >= ACPI_S_STATE_COUNT || | 292 | if (sleep_state >= ACPI_S_STATE_COUNT || |
293 | acpi_shutdown_map[sleep_state] == -1) { | 293 | acpi_shutdown_map[sleep_state] == -1) { |
294 | pr_warning("unsupported sleep state 0x%x\n", sleep_state); | 294 | pr_warning("unsupported sleep state 0x%x\n", sleep_state); |
295 | return; | 295 | return -1; |
296 | } | 296 | } |
297 | 297 | ||
298 | tboot_shutdown(acpi_shutdown_map[sleep_state]); | 298 | tboot_shutdown(acpi_shutdown_map[sleep_state]); |
299 | return 0; | ||
299 | } | 300 | } |
300 | 301 | ||
301 | static atomic_t ap_wfs_count; | 302 | static atomic_t ap_wfs_count; |
@@ -345,6 +346,8 @@ static __init int tboot_late_init(void) | |||
345 | 346 | ||
346 | atomic_set(&ap_wfs_count, 0); | 347 | atomic_set(&ap_wfs_count, 0); |
347 | register_hotcpu_notifier(&tboot_cpu_notifier); | 348 | register_hotcpu_notifier(&tboot_cpu_notifier); |
349 | |||
350 | acpi_os_set_prepare_sleep(&tboot_sleep); | ||
348 | return 0; | 351 | return 0; |
349 | } | 352 | } |
350 | 353 | ||