Files
linux-apfs/drivers/acpi/wakeup.c
T

123 lines
3.3 KiB
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/*
* wakeup.c - support wakeup devices
* Copyright (C) 2004 Li Shaohua <shaohua.li@intel.com>
*/
#include <linux/init.h>
#include <linux/acpi.h>
#include <acpi/acpi_drivers.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include "internal.h"
2005-04-16 15:20:36 -07:00
#include "sleep.h"
/*
* We didn't lock acpi_device_lock in the file, because it invokes oops in
* suspend/resume and isn't really required as this is called in S-state. At
* that time, there is no device hotplug
**/
2005-04-16 15:20:36 -07:00
#define _COMPONENT ACPI_SYSTEM_COMPONENT
2005-08-05 00:44:28 -04:00
ACPI_MODULE_NAME("wakeup_devices")
2005-04-16 15:20:36 -07:00
/**
* acpi_enable_wakeup_device_prep - Prepare wake-up devices.
* @sleep_state: ACPI system sleep state.
*
* Enable all wake-up devices' power, unless the requested system sleep state is
* too deep.
2005-04-16 15:20:36 -07:00
*/
2005-08-05 00:44:28 -04:00
void acpi_enable_wakeup_device_prep(u8 sleep_state)
2005-04-16 15:20:36 -07:00
{
2005-08-05 00:44:28 -04:00
struct list_head *node, *next;
2005-04-16 15:20:36 -07:00
list_for_each_safe(node, next, &acpi_wakeup_device_list) {
2005-08-05 00:44:28 -04:00
struct acpi_device *dev = container_of(node,
struct acpi_device,
wakeup_list);
if (!dev->wakeup.flags.valid || !dev->wakeup.state.enabled
|| (sleep_state > (u32) dev->wakeup.sleep_state))
2005-04-16 15:20:36 -07:00
continue;
acpi_enable_wakeup_device_power(dev, sleep_state);
2005-04-16 15:20:36 -07:00
}
}
/**
* acpi_enable_wakeup_device - Enable wake-up device GPEs.
* @sleep_state: ACPI system sleep state.
*
* Enable all wake-up devices' GPEs, with the assumption that
* acpi_disable_all_gpes() was executed before, so we don't need to disable any
* GPEs here.
2005-04-16 15:20:36 -07:00
*/
2005-08-05 00:44:28 -04:00
void acpi_enable_wakeup_device(u8 sleep_state)
2005-04-16 15:20:36 -07:00
{
2005-08-05 00:44:28 -04:00
struct list_head *node, *next;
2005-04-16 15:20:36 -07:00
/*
* Caution: this routine must be invoked when interrupt is disabled
* Refer ACPI2.0: P212
*/
list_for_each_safe(node, next, &acpi_wakeup_device_list) {
struct acpi_device *dev =
container_of(node, struct acpi_device, wakeup_list);
2008-07-07 03:34:48 +02:00
if (!dev->wakeup.flags.valid)
continue;
2008-07-07 03:34:48 +02:00
if ((!dev->wakeup.state.enabled && !dev->wakeup.prepare_count)
|| sleep_state > (u32) dev->wakeup.sleep_state)
2005-04-16 15:20:36 -07:00
continue;
/* The wake-up power should have been enabled already. */
acpi_set_gpe(dev->wakeup.gpe_device, dev->wakeup.gpe_number,
ACPI_GPE_ENABLE);
2005-04-16 15:20:36 -07:00
}
}
/**
* acpi_disable_wakeup_device - Disable devices' wakeup capability.
* @sleep_state: ACPI system sleep state.
*
* This function only affects devices with wakeup.state.enabled set, which means
* that it reverses the changes made by acpi_enable_wakeup_device_prep().
2005-04-16 15:20:36 -07:00
*/
2005-08-05 00:44:28 -04:00
void acpi_disable_wakeup_device(u8 sleep_state)
2005-04-16 15:20:36 -07:00
{
2005-08-05 00:44:28 -04:00
struct list_head *node, *next;
2005-04-16 15:20:36 -07:00
list_for_each_safe(node, next, &acpi_wakeup_device_list) {
struct acpi_device *dev =
container_of(node, struct acpi_device, wakeup_list);
2005-04-16 15:20:36 -07:00
if (!dev->wakeup.flags.valid || !dev->wakeup.state.enabled
|| (sleep_state > (u32) dev->wakeup.sleep_state))
continue;
2008-07-07 03:34:48 +02:00
2005-04-16 15:20:36 -07:00
acpi_disable_wakeup_device_power(dev);
}
}
int __init acpi_wakeup_device_init(void)
2005-04-16 15:20:36 -07:00
{
2005-08-05 00:44:28 -04:00
struct list_head *node, *next;
2005-04-16 15:20:36 -07:00
mutex_lock(&acpi_device_lock);
2005-04-16 15:20:36 -07:00
list_for_each_safe(node, next, &acpi_wakeup_device_list) {
2005-08-05 00:44:28 -04:00
struct acpi_device *dev = container_of(node,
struct acpi_device,
wakeup_list);
2005-04-16 15:20:36 -07:00
/* In case user doesn't load button driver */
2010-02-17 23:41:49 +01:00
if (!dev->wakeup.flags.always_enabled ||
dev->wakeup.state.enabled)
continue;
acpi_enable_gpe(dev->wakeup.gpe_device, dev->wakeup.gpe_number,
ACPI_GPE_TYPE_WAKE);
dev->wakeup.state.enabled = 1;
2005-04-16 15:20:36 -07:00
}
mutex_unlock(&acpi_device_lock);
2005-04-16 15:20:36 -07:00
return 0;
}