| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * wakeup.c - support wakeup devices | 
|  | 3 | * Copyright (C) 2004 Li Shaohua <shaohua.li@intel.com> | 
|  | 4 | */ | 
|  | 5 |  | 
|  | 6 | #include <linux/init.h> | 
|  | 7 | #include <linux/acpi.h> | 
|  | 8 | #include <acpi/acpi_drivers.h> | 
|  | 9 | #include <linux/kernel.h> | 
|  | 10 | #include <linux/types.h> | 
| Bjorn Helgaas | e60cc7a | 2009-03-13 12:08:26 -0600 | [diff] [blame] | 11 |  | 
|  | 12 | #include "internal.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include "sleep.h" | 
|  | 14 |  | 
| Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 15 | /* | 
|  | 16 | * We didn't lock acpi_device_lock in the file, because it invokes oops in | 
|  | 17 | * suspend/resume and isn't really required as this is called in S-state. At | 
|  | 18 | * that time, there is no device hotplug | 
|  | 19 | **/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define _COMPONENT		ACPI_SYSTEM_COMPONENT | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 21 | ACPI_MODULE_NAME("wakeup_devices") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | /** | 
|  | 24 | * acpi_enable_wakeup_device_prep - prepare wakeup devices | 
|  | 25 | *	@sleep_state:	ACPI state | 
|  | 26 | * Enable all wakup devices power if the devices' wakeup level | 
|  | 27 | * is higher than requested sleep level | 
|  | 28 | */ | 
|  | 29 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 30 | void acpi_enable_wakeup_device_prep(u8 sleep_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 32 | struct list_head *node, *next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | list_for_each_safe(node, next, &acpi_wakeup_device_list) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 35 | struct acpi_device *dev = container_of(node, | 
|  | 36 | struct acpi_device, | 
|  | 37 | wakeup_list); | 
|  | 38 |  | 
|  | 39 | if (!dev->wakeup.flags.valid || | 
|  | 40 | !dev->wakeup.state.enabled || | 
|  | 41 | (sleep_state > (u32) dev->wakeup.sleep_state)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | continue; | 
|  | 43 |  | 
| Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 44 | acpi_enable_wakeup_device_power(dev, sleep_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | } | 
|  | 47 |  | 
|  | 48 | /** | 
|  | 49 | * acpi_enable_wakeup_device - enable wakeup devices | 
|  | 50 | *	@sleep_state:	ACPI state | 
|  | 51 | * Enable all wakup devices's GPE | 
|  | 52 | */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 53 | void acpi_enable_wakeup_device(u8 sleep_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 55 | struct list_head *node, *next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 |  | 
|  | 57 | /* | 
|  | 58 | * Caution: this routine must be invoked when interrupt is disabled | 
|  | 59 | * Refer ACPI2.0: P212 | 
|  | 60 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | list_for_each_safe(node, next, &acpi_wakeup_device_list) { | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 62 | struct acpi_device *dev = | 
|  | 63 | container_of(node, struct acpi_device, wakeup_list); | 
| Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 64 |  | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 65 | if (!dev->wakeup.flags.valid) | 
|  | 66 | continue; | 
| Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 67 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | /* If users want to disable run-wake GPE, | 
|  | 69 | * we only disable it for wake and leave it for runtime | 
|  | 70 | */ | 
| Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 71 | if ((!dev->wakeup.state.enabled && !dev->wakeup.prepare_count) | 
| Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 72 | || sleep_state > (u32) dev->wakeup.sleep_state) { | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 73 | if (dev->wakeup.flags.run_wake) { | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 74 | /* set_gpe_type will disable GPE, leave it like that */ | 
|  | 75 | acpi_set_gpe_type(dev->wakeup.gpe_device, | 
|  | 76 | dev->wakeup.gpe_number, | 
|  | 77 | ACPI_GPE_TYPE_RUNTIME); | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 78 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | continue; | 
|  | 80 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | if (!dev->wakeup.flags.run_wake) | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 82 | acpi_enable_gpe(dev->wakeup.gpe_device, | 
| Alexey Starikovskiy | 0b7084a | 2008-10-25 21:48:46 +0400 | [diff] [blame] | 83 | dev->wakeup.gpe_number); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } | 
|  | 86 |  | 
|  | 87 | /** | 
|  | 88 | * acpi_disable_wakeup_device - disable devices' wakeup capability | 
|  | 89 | *	@sleep_state:	ACPI state | 
|  | 90 | * Disable all wakup devices's GPE and wakeup capability | 
|  | 91 | */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | void acpi_disable_wakeup_device(u8 sleep_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 94 | struct list_head *node, *next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | list_for_each_safe(node, next, &acpi_wakeup_device_list) { | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 97 | struct acpi_device *dev = | 
|  | 98 | container_of(node, struct acpi_device, wakeup_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 |  | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 100 | if (!dev->wakeup.flags.valid) | 
|  | 101 | continue; | 
| Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 102 |  | 
| Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 103 | if ((!dev->wakeup.state.enabled && !dev->wakeup.prepare_count) | 
| Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 104 | || sleep_state > (u32) dev->wakeup.sleep_state) { | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 105 | if (dev->wakeup.flags.run_wake) { | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 106 | acpi_set_gpe_type(dev->wakeup.gpe_device, | 
|  | 107 | dev->wakeup.gpe_number, | 
|  | 108 | ACPI_GPE_TYPE_WAKE_RUN); | 
|  | 109 | /* Re-enable it, since set_gpe_type will disable it */ | 
|  | 110 | acpi_enable_gpe(dev->wakeup.gpe_device, | 
| Alexey Starikovskiy | 0b7084a | 2008-10-25 21:48:46 +0400 | [diff] [blame] | 111 | dev->wakeup.gpe_number); | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 112 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | continue; | 
|  | 114 | } | 
|  | 115 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | acpi_disable_wakeup_device_power(dev); | 
|  | 117 | /* Never disable run-wake GPE */ | 
|  | 118 | if (!dev->wakeup.flags.run_wake) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 119 | acpi_disable_gpe(dev->wakeup.gpe_device, | 
| Alexey Starikovskiy | 0b7084a | 2008-10-25 21:48:46 +0400 | [diff] [blame] | 120 | dev->wakeup.gpe_number); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 121 | acpi_clear_gpe(dev->wakeup.gpe_device, | 
|  | 122 | dev->wakeup.gpe_number, ACPI_NOT_ISR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | } | 
|  | 126 |  | 
| Bjorn Helgaas | 201b8c6 | 2009-03-24 16:50:19 -0600 | [diff] [blame] | 127 | int __init acpi_wakeup_device_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 129 | struct list_head *node, *next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
| Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 131 | mutex_lock(&acpi_device_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | list_for_each_safe(node, next, &acpi_wakeup_device_list) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 133 | struct acpi_device *dev = container_of(node, | 
|  | 134 | struct acpi_device, | 
|  | 135 | wakeup_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | /* In case user doesn't load button driver */ | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 137 | if (!dev->wakeup.flags.run_wake || dev->wakeup.state.enabled) | 
|  | 138 | continue; | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 139 | acpi_set_gpe_type(dev->wakeup.gpe_device, | 
|  | 140 | dev->wakeup.gpe_number, | 
|  | 141 | ACPI_GPE_TYPE_WAKE_RUN); | 
|  | 142 | acpi_enable_gpe(dev->wakeup.gpe_device, | 
| Alexey Starikovskiy | 0b7084a | 2008-10-25 21:48:46 +0400 | [diff] [blame] | 143 | dev->wakeup.gpe_number); | 
| Alexey Starikovskiy | 9b03933 | 2007-09-26 19:47:30 +0400 | [diff] [blame] | 144 | dev->wakeup.state.enabled = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } | 
| Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 146 | mutex_unlock(&acpi_device_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | return 0; | 
|  | 148 | } |