2009-07-28 20:45:54 +00:00
|
|
|
/*
|
|
|
|
* acpi/internal.h
|
|
|
|
* For use by Linux/ACPI infrastructure, not drivers
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009, Intel Corporation.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2010-07-16 11:11:31 +00:00
|
|
|
#ifndef _ACPI_INTERNAL_H_
|
|
|
|
#define _ACPI_INTERNAL_H_
|
|
|
|
|
2009-07-28 20:45:54 +00:00
|
|
|
#define PREFIX "ACPI: "
|
2009-03-13 18:08:26 +00:00
|
|
|
|
2009-03-24 22:50:09 +00:00
|
|
|
int init_acpi_device_notify(void);
|
2009-03-24 22:49:43 +00:00
|
|
|
int acpi_scan_init(void);
|
2013-02-26 05:18:18 +00:00
|
|
|
#ifdef CONFIG_ACPI_PCI_SLOT
|
|
|
|
void acpi_pci_slot_init(void);
|
|
|
|
#else
|
|
|
|
static inline void acpi_pci_slot_init(void) { }
|
|
|
|
#endif
|
2013-01-30 13:27:33 +00:00
|
|
|
void acpi_pci_root_init(void);
|
2013-01-30 13:27:37 +00:00
|
|
|
void acpi_pci_link_init(void);
|
2013-02-26 05:18:18 +00:00
|
|
|
void acpi_pci_root_hp_init(void);
|
2013-01-30 13:27:40 +00:00
|
|
|
void acpi_platform_init(void);
|
2010-07-15 02:46:30 +00:00
|
|
|
int acpi_sysfs_init(void);
|
2013-02-08 22:52:39 +00:00
|
|
|
#ifdef CONFIG_ACPI_CONTAINER
|
|
|
|
void acpi_container_init(void);
|
|
|
|
#else
|
|
|
|
static inline void acpi_container_init(void) {}
|
|
|
|
#endif
|
2013-03-03 22:18:03 +00:00
|
|
|
#ifdef CONFIG_ACPI_HOTPLUG_MEMORY
|
|
|
|
void acpi_memory_hotplug_init(void);
|
|
|
|
#else
|
|
|
|
static inline void acpi_memory_hotplug_init(void) {}
|
|
|
|
#endif
|
2009-03-24 22:49:43 +00:00
|
|
|
|
2013-03-03 22:08:16 +00:00
|
|
|
void acpi_sysfs_add_hotplug_profile(struct acpi_hotplug_profile *hotplug,
|
|
|
|
const char *name);
|
|
|
|
int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler,
|
|
|
|
const char *hotplug_profile_name);
|
|
|
|
void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val);
|
|
|
|
|
2010-07-15 02:46:15 +00:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2011-05-26 10:26:23 +00:00
|
|
|
extern struct dentry *acpi_debugfs_dir;
|
2010-07-15 02:46:15 +00:00
|
|
|
int acpi_debugfs_init(void);
|
|
|
|
#else
|
2011-05-26 10:26:23 +00:00
|
|
|
static inline void acpi_debugfs_init(void) { return; }
|
2010-07-15 02:46:15 +00:00
|
|
|
#endif
|
2013-03-06 22:46:20 +00:00
|
|
|
#ifdef CONFIG_X86_INTEL_LPSS
|
|
|
|
void acpi_lpss_init(void);
|
|
|
|
#else
|
|
|
|
static inline void acpi_lpss_init(void) {}
|
|
|
|
#endif
|
2010-07-15 02:46:15 +00:00
|
|
|
|
2013-01-17 13:11:05 +00:00
|
|
|
/* --------------------------------------------------------------------------
|
|
|
|
Device Node Initialization / Removal
|
|
|
|
-------------------------------------------------------------------------- */
|
|
|
|
#define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \
|
|
|
|
ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING)
|
|
|
|
|
2013-01-24 11:49:49 +00:00
|
|
|
int acpi_device_add(struct acpi_device *device,
|
|
|
|
void (*release)(struct device *));
|
2013-01-17 13:11:05 +00:00
|
|
|
void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
|
|
|
|
int type, unsigned long long sta);
|
2013-01-24 11:49:49 +00:00
|
|
|
void acpi_device_add_finalize(struct acpi_device *device);
|
2013-03-04 21:30:42 +00:00
|
|
|
void acpi_free_pnp_ids(struct acpi_device_pnp *pnp);
|
2013-01-17 13:11:05 +00:00
|
|
|
|
2009-03-13 18:08:26 +00:00
|
|
|
/* --------------------------------------------------------------------------
|
|
|
|
Power Resource
|
|
|
|
-------------------------------------------------------------------------- */
|
2009-03-24 22:49:53 +00:00
|
|
|
int acpi_power_init(void);
|
2013-01-17 13:11:06 +00:00
|
|
|
void acpi_power_resources_list_free(struct list_head *list);
|
2013-01-17 13:11:07 +00:00
|
|
|
int acpi_extract_power_resources(union acpi_object *package, unsigned int start,
|
|
|
|
struct list_head *list);
|
|
|
|
int acpi_add_power_resource(acpi_handle handle);
|
ACPI / PM: Rework the handling of devices depending on power resources
Commit 0090def6 (ACPI: Add interface to register/unregister device
to/from power resources) made it possible to indicate to the ACPI
core that if the given device depends on any power resources, then
it should be resumed as soon as all of the power resources required
by it to transition to the D0 power state have been turned on.
Unfortunately, however, this was a mistake, because all devices
depending on power resources should be treated this way (i.e. they
should be resumed when all power resources required by their D0
state have been turned on) and for the majority of those devices
the ACPI core can figure out by itself which (physical) devices
depend on what power resources.
For this reason, replace the code added by commit 0090def6 with a
new, much more straightforward, mechanism that will be used
internally by the ACPI core and remove all references to that code
from kernel subsystems using ACPI.
For the cases when there are (physical) devices that should be
resumed whenever a not directly related ACPI device node goes into
D0 as a result of power resources configuration changes, like in
the SATA case, add two new routines, acpi_dev_pm_add_dependent()
and acpi_dev_pm_remove_dependent(), allowing subsystems to manage
such dependencies. Convert the SATA subsystem to use the new
functions accordingly.
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2013-01-17 13:11:05 +00:00
|
|
|
void acpi_power_add_remove_device(struct acpi_device *adev, bool add);
|
ACPI / PM: Take unusual configurations of power resources into account
Commit d2e5f0c (ACPI / PCI: Rework the setup and cleanup of device
wakeup) moved the initial disabling of system wakeup for PCI devices
into a place where it can actually work and that exposed a hidden old
issue with crap^Wunusual system designs where the same power
resources are used for both wakeup power and device power control at
run time.
Namely, say there is one power resource such that the ACPI power
state D0 of a PCI device depends on that power resource (i.e. the
device is in D0 when that power resource is "on") and it is used
as a wakeup power resource for the same device. Then, calling
acpi_pci_sleep_wake(pci_dev, false) for the device in question will
cause the reference counter of that power resource to drop to 0,
which in turn will cause it to be turned off. As a result, the
device will go into D3cold at that point, although it should have
stayed in D0.
As it turns out, that happens to USB controllers on some laptops
and USB becomes unusable on those machines as a result, which is
a major regression from v3.8.
To fix this problem, (1) increment the reference counters of wakup
power resources during their initialization if they are "on"
initially, (2) prevent acpi_disable_wakeup_device_power() from
decrementing the reference counters of wakeup power resources that
were not enabled for wakeup power previously, and (3) prevent
acpi_enable_wakeup_device_power() from incrementing the reference
counters of wakeup power resources that already are enabled for
wakeup power.
In addition to that, if it is impossible to determine the initial
states of wakeup power resources, avoid enabling wakeup for devices
whose wakeup power depends on those power resources.
Reported-by: Dave Jones <davej@redhat.com>
Reported-by: Fabio Baltieri <fabio.baltieri@linaro.org>
Tested-by: Fabio Baltieri <fabio.baltieri@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2013-02-23 22:15:21 +00:00
|
|
|
int acpi_power_wakeup_list_init(struct list_head *list, int *system_level);
|
2009-03-13 18:08:26 +00:00
|
|
|
int acpi_device_sleep_wake(struct acpi_device *dev,
|
|
|
|
int enable, int sleep_state, int dev_state);
|
2010-11-24 23:05:17 +00:00
|
|
|
int acpi_power_get_inferred_state(struct acpi_device *device, int *state);
|
2010-11-24 23:06:55 +00:00
|
|
|
int acpi_power_on_resources(struct acpi_device *device, int state);
|
2009-03-13 18:08:26 +00:00
|
|
|
int acpi_power_transition(struct acpi_device *device, int state);
|
|
|
|
|
2009-03-24 22:50:19 +00:00
|
|
|
int acpi_wakeup_device_init(void);
|
2009-12-20 19:19:09 +00:00
|
|
|
void acpi_early_processor_set_pdc(void);
|
2009-03-24 22:50:19 +00:00
|
|
|
|
2009-03-13 18:08:26 +00:00
|
|
|
/* --------------------------------------------------------------------------
|
|
|
|
Embedded Controller
|
|
|
|
-------------------------------------------------------------------------- */
|
2010-07-16 11:11:31 +00:00
|
|
|
struct acpi_ec {
|
|
|
|
acpi_handle handle;
|
|
|
|
unsigned long gpe;
|
|
|
|
unsigned long command_addr;
|
|
|
|
unsigned long data_addr;
|
|
|
|
unsigned long global_lock;
|
|
|
|
unsigned long flags;
|
2012-10-22 23:29:27 +00:00
|
|
|
struct mutex mutex;
|
2010-07-16 11:11:31 +00:00
|
|
|
wait_queue_head_t wait;
|
|
|
|
struct list_head list;
|
|
|
|
struct transaction *curr;
|
2012-10-22 23:29:27 +00:00
|
|
|
spinlock_t lock;
|
2010-07-16 11:11:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct acpi_ec *first_ec;
|
|
|
|
|
2009-03-24 22:49:48 +00:00
|
|
|
int acpi_ec_init(void);
|
2009-03-13 18:08:26 +00:00
|
|
|
int acpi_ec_ecdt_probe(void);
|
|
|
|
int acpi_boot_ec_enable(void);
|
2010-04-08 23:40:38 +00:00
|
|
|
void acpi_ec_block_transactions(void);
|
|
|
|
void acpi_ec_unblock_transactions(void);
|
|
|
|
void acpi_ec_unblock_transactions_early(void);
|
2009-03-13 18:08:26 +00:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
Suspend/Resume
|
|
|
|
-------------------------------------------------------------------------- */
|
|
|
|
extern int acpi_sleep_init(void);
|
2009-03-24 22:50:14 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_ACPI_SLEEP
|
|
|
|
int acpi_sleep_proc_init(void);
|
2011-01-07 00:43:44 +00:00
|
|
|
int suspend_nvs_alloc(void);
|
|
|
|
void suspend_nvs_free(void);
|
|
|
|
int suspend_nvs_save(void);
|
|
|
|
void suspend_nvs_restore(void);
|
2009-03-24 22:50:14 +00:00
|
|
|
#else
|
|
|
|
static inline int acpi_sleep_proc_init(void) { return 0; }
|
2011-01-07 00:43:44 +00:00
|
|
|
static inline int suspend_nvs_alloc(void) { return 0; }
|
|
|
|
static inline void suspend_nvs_free(void) {}
|
2011-01-12 21:03:20 +00:00
|
|
|
static inline int suspend_nvs_save(void) { return 0; }
|
2011-01-07 00:43:44 +00:00
|
|
|
static inline void suspend_nvs_restore(void) {}
|
2009-03-24 22:50:14 +00:00
|
|
|
#endif
|
2010-07-16 11:11:31 +00:00
|
|
|
|
2012-10-31 21:45:02 +00:00
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
Platform bus support
|
|
|
|
-------------------------------------------------------------------------- */
|
|
|
|
struct platform_device;
|
|
|
|
|
2013-03-06 22:46:20 +00:00
|
|
|
int acpi_create_platform_device(struct acpi_device *adev,
|
|
|
|
const struct acpi_device_id *id);
|
|
|
|
|
2010-07-16 11:11:31 +00:00
|
|
|
#endif /* _ACPI_INTERNAL_H_ */
|