2008-03-19 21:39:13 +00:00
|
|
|
/*
|
|
|
|
* pm_wakeup.h - Power management wakeup interface
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Alan Stern
|
2010-09-22 20:09:10 +00:00
|
|
|
* Copyright (C) 2010 Rafael J. Wysocki, Novell Inc.
|
2008-03-19 21:39:13 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_PM_WAKEUP_H
|
|
|
|
#define _LINUX_PM_WAKEUP_H
|
|
|
|
|
|
|
|
#ifndef _DEVICE_H_
|
|
|
|
# error "please don't include this file directly"
|
|
|
|
#endif
|
|
|
|
|
2010-03-15 20:44:41 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2010-09-22 20:09:10 +00:00
|
|
|
/**
|
|
|
|
* struct wakeup_source - Representation of wakeup sources
|
2010-06-12 22:36:52 +00:00
|
|
|
*
|
2010-09-22 20:09:10 +00:00
|
|
|
* @total_time: Total time this wakeup source has been active.
|
|
|
|
* @max_time: Maximum time this wakeup source has been continuously active.
|
2012-04-29 20:52:52 +00:00
|
|
|
* @last_time: Monotonic clock when the wakeup source's was touched last time.
|
2012-04-29 20:53:32 +00:00
|
|
|
* @prevent_sleep_time: Total time this source has been preventing autosleep.
|
2010-09-22 20:09:10 +00:00
|
|
|
* @event_count: Number of signaled wakeup events.
|
|
|
|
* @active_count: Number of times the wakeup sorce was activated.
|
|
|
|
* @relax_count: Number of times the wakeup sorce was deactivated.
|
2012-04-29 20:52:52 +00:00
|
|
|
* @expire_count: Number of times the wakeup source's timeout has expired.
|
|
|
|
* @wakeup_count: Number of times the wakeup source might abort suspend.
|
2010-09-22 20:09:10 +00:00
|
|
|
* @active: Status of the wakeup source.
|
2012-04-29 20:52:52 +00:00
|
|
|
* @has_timeout: The wakeup source has been activated with a timeout.
|
2008-03-19 21:39:13 +00:00
|
|
|
*/
|
2010-09-22 20:09:10 +00:00
|
|
|
struct wakeup_source {
|
2012-02-21 22:47:56 +00:00
|
|
|
const char *name;
|
2010-09-22 20:09:10 +00:00
|
|
|
struct list_head entry;
|
|
|
|
spinlock_t lock;
|
|
|
|
struct timer_list timer;
|
|
|
|
unsigned long timer_expires;
|
|
|
|
ktime_t total_time;
|
|
|
|
ktime_t max_time;
|
|
|
|
ktime_t last_time;
|
2012-04-29 20:53:32 +00:00
|
|
|
ktime_t start_prevent_time;
|
|
|
|
ktime_t prevent_sleep_time;
|
2010-09-22 20:09:10 +00:00
|
|
|
unsigned long event_count;
|
|
|
|
unsigned long active_count;
|
|
|
|
unsigned long relax_count;
|
2012-04-29 20:52:52 +00:00
|
|
|
unsigned long expire_count;
|
|
|
|
unsigned long wakeup_count;
|
|
|
|
bool active:1;
|
2012-04-29 20:53:32 +00:00
|
|
|
bool autosleep_enabled:1;
|
2010-09-22 20:09:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Changes to device_may_wakeup take effect on the next pm state change.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline bool device_can_wakeup(struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->power.can_wakeup;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool device_may_wakeup(struct device *dev)
|
2008-03-19 21:39:13 +00:00
|
|
|
{
|
2010-09-22 20:09:10 +00:00
|
|
|
return dev->power.can_wakeup && !!dev->power.wakeup;
|
2008-03-19 21:39:13 +00:00
|
|
|
}
|
|
|
|
|
2010-09-22 20:09:10 +00:00
|
|
|
/* drivers/base/power/wakeup.c */
|
2012-02-21 22:47:56 +00:00
|
|
|
extern void wakeup_source_prepare(struct wakeup_source *ws, const char *name);
|
2010-09-22 20:09:10 +00:00
|
|
|
extern struct wakeup_source *wakeup_source_create(const char *name);
|
2012-02-21 22:47:56 +00:00
|
|
|
extern void wakeup_source_drop(struct wakeup_source *ws);
|
2010-09-22 20:09:10 +00:00
|
|
|
extern void wakeup_source_destroy(struct wakeup_source *ws);
|
|
|
|
extern void wakeup_source_add(struct wakeup_source *ws);
|
|
|
|
extern void wakeup_source_remove(struct wakeup_source *ws);
|
|
|
|
extern struct wakeup_source *wakeup_source_register(const char *name);
|
|
|
|
extern void wakeup_source_unregister(struct wakeup_source *ws);
|
|
|
|
extern int device_wakeup_enable(struct device *dev);
|
|
|
|
extern int device_wakeup_disable(struct device *dev);
|
2011-02-08 22:26:02 +00:00
|
|
|
extern void device_set_wakeup_capable(struct device *dev, bool capable);
|
2010-09-22 20:09:10 +00:00
|
|
|
extern int device_init_wakeup(struct device *dev, bool val);
|
|
|
|
extern int device_set_wakeup_enable(struct device *dev, bool enable);
|
|
|
|
extern void __pm_stay_awake(struct wakeup_source *ws);
|
|
|
|
extern void pm_stay_awake(struct device *dev);
|
|
|
|
extern void __pm_relax(struct wakeup_source *ws);
|
|
|
|
extern void pm_relax(struct device *dev);
|
|
|
|
extern void __pm_wakeup_event(struct wakeup_source *ws, unsigned int msec);
|
|
|
|
extern void pm_wakeup_event(struct device *dev, unsigned int msec);
|
|
|
|
|
|
|
|
#else /* !CONFIG_PM_SLEEP */
|
|
|
|
|
2010-03-15 20:44:41 +00:00
|
|
|
static inline void device_set_wakeup_capable(struct device *dev, bool capable)
|
2008-07-07 01:34:48 +00:00
|
|
|
{
|
2010-03-15 20:44:41 +00:00
|
|
|
dev->power.can_wakeup = capable;
|
2008-07-07 01:34:48 +00:00
|
|
|
}
|
|
|
|
|
2010-03-15 20:44:41 +00:00
|
|
|
static inline bool device_can_wakeup(struct device *dev)
|
2008-03-19 21:39:13 +00:00
|
|
|
{
|
|
|
|
return dev->power.can_wakeup;
|
|
|
|
}
|
|
|
|
|
2012-02-21 22:47:56 +00:00
|
|
|
static inline void wakeup_source_prepare(struct wakeup_source *ws,
|
|
|
|
const char *name) {}
|
|
|
|
|
2010-09-22 20:09:10 +00:00
|
|
|
static inline struct wakeup_source *wakeup_source_create(const char *name)
|
2008-03-19 21:39:13 +00:00
|
|
|
{
|
2010-09-22 20:09:10 +00:00
|
|
|
return NULL;
|
2008-03-19 21:39:13 +00:00
|
|
|
}
|
|
|
|
|
2012-02-21 22:47:56 +00:00
|
|
|
static inline void wakeup_source_drop(struct wakeup_source *ws) {}
|
|
|
|
|
2010-09-22 20:09:10 +00:00
|
|
|
static inline void wakeup_source_destroy(struct wakeup_source *ws) {}
|
|
|
|
|
|
|
|
static inline void wakeup_source_add(struct wakeup_source *ws) {}
|
2008-03-19 21:39:13 +00:00
|
|
|
|
2010-09-22 20:09:10 +00:00
|
|
|
static inline void wakeup_source_remove(struct wakeup_source *ws) {}
|
|
|
|
|
|
|
|
static inline struct wakeup_source *wakeup_source_register(const char *name)
|
2008-03-19 21:39:13 +00:00
|
|
|
{
|
2010-09-22 20:09:10 +00:00
|
|
|
return NULL;
|
2008-03-19 21:39:13 +00:00
|
|
|
}
|
|
|
|
|
2010-09-22 20:09:10 +00:00
|
|
|
static inline void wakeup_source_unregister(struct wakeup_source *ws) {}
|
|
|
|
|
|
|
|
static inline int device_wakeup_enable(struct device *dev)
|
2010-03-15 20:44:41 +00:00
|
|
|
{
|
2011-02-24 10:10:01 +00:00
|
|
|
dev->power.should_wakeup = true;
|
|
|
|
return 0;
|
2010-03-15 20:44:41 +00:00
|
|
|
}
|
2008-07-10 00:16:44 +00:00
|
|
|
|
2010-09-22 20:09:10 +00:00
|
|
|
static inline int device_wakeup_disable(struct device *dev)
|
2008-03-19 21:39:13 +00:00
|
|
|
{
|
2011-02-24 10:10:01 +00:00
|
|
|
dev->power.should_wakeup = false;
|
2010-09-22 20:09:10 +00:00
|
|
|
return 0;
|
2008-03-19 21:39:13 +00:00
|
|
|
}
|
|
|
|
|
2011-02-24 10:10:01 +00:00
|
|
|
static inline int device_set_wakeup_enable(struct device *dev, bool enable)
|
2010-03-15 20:44:41 +00:00
|
|
|
{
|
2011-02-24 10:10:01 +00:00
|
|
|
dev->power.should_wakeup = enable;
|
|
|
|
return 0;
|
2010-03-15 20:44:41 +00:00
|
|
|
}
|
|
|
|
|
2011-02-24 10:10:01 +00:00
|
|
|
static inline int device_init_wakeup(struct device *dev, bool val)
|
|
|
|
{
|
|
|
|
device_set_wakeup_capable(dev, val);
|
|
|
|
device_set_wakeup_enable(dev, val);
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-22 20:09:10 +00:00
|
|
|
|
2011-02-24 10:10:01 +00:00
|
|
|
static inline bool device_may_wakeup(struct device *dev)
|
2010-03-15 20:44:41 +00:00
|
|
|
{
|
2011-02-24 10:10:01 +00:00
|
|
|
return dev->power.can_wakeup && dev->power.should_wakeup;
|
2010-03-15 20:44:41 +00:00
|
|
|
}
|
2008-03-19 21:39:13 +00:00
|
|
|
|
2010-09-22 20:09:10 +00:00
|
|
|
static inline void __pm_stay_awake(struct wakeup_source *ws) {}
|
|
|
|
|
|
|
|
static inline void pm_stay_awake(struct device *dev) {}
|
|
|
|
|
|
|
|
static inline void __pm_relax(struct wakeup_source *ws) {}
|
|
|
|
|
|
|
|
static inline void pm_relax(struct device *dev) {}
|
|
|
|
|
|
|
|
static inline void __pm_wakeup_event(struct wakeup_source *ws, unsigned int msec) {}
|
|
|
|
|
|
|
|
static inline void pm_wakeup_event(struct device *dev, unsigned int msec) {}
|
|
|
|
|
|
|
|
#endif /* !CONFIG_PM_SLEEP */
|
2008-03-19 21:39:13 +00:00
|
|
|
|
2012-02-21 22:47:56 +00:00
|
|
|
static inline void wakeup_source_init(struct wakeup_source *ws,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
wakeup_source_prepare(ws, name);
|
|
|
|
wakeup_source_add(ws);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void wakeup_source_trash(struct wakeup_source *ws)
|
|
|
|
{
|
|
|
|
wakeup_source_remove(ws);
|
|
|
|
wakeup_source_drop(ws);
|
|
|
|
}
|
|
|
|
|
2008-03-19 21:39:13 +00:00
|
|
|
#endif /* _LINUX_PM_WAKEUP_H */
|