55 lines
1.4 KiB
C
Executable file
55 lines
1.4 KiB
C
Executable file
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2014 - 2020 Samsung Electronics Co., Ltd. All rights reserved
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef _LINUX_WAKELOCK_H
|
|
#define _LINUX_WAKELOCK_H
|
|
|
|
#include <linux/ktime.h>
|
|
#include <linux/device.h>
|
|
|
|
struct scsc_wake_lock {
|
|
struct wakeup_source *ws;
|
|
};
|
|
|
|
#define wake_lock_init scsc_wake_lock_init
|
|
#define wake_lock_destroy scsc_wake_lock_destroy
|
|
#define wake_lock scsc_wake_lock
|
|
#define wake_lock_timeout scsc_wake_lock_timeout
|
|
#define wake_unlock scsc_wake_unlock
|
|
#define wake_lock_active scsc_wake_lock_active
|
|
|
|
static inline void scsc_wake_lock_init(struct device *dev, struct wakeup_source **ws,
|
|
const char *name)
|
|
{
|
|
*ws = wakeup_source_register(dev, name);
|
|
}
|
|
|
|
static inline void scsc_wake_lock_destroy(struct scsc_wake_lock *lock)
|
|
{
|
|
wakeup_source_unregister(lock->ws);
|
|
}
|
|
|
|
static inline void scsc_wake_lock(struct scsc_wake_lock *lock)
|
|
{
|
|
__pm_stay_awake(lock->ws);
|
|
}
|
|
|
|
static inline void scsc_wake_lock_timeout(struct scsc_wake_lock *lock, long timeout)
|
|
{
|
|
__pm_wakeup_event(lock->ws, jiffies_to_msecs(timeout));
|
|
}
|
|
|
|
static inline void scsc_wake_unlock(struct scsc_wake_lock *lock)
|
|
{
|
|
__pm_relax(lock->ws);
|
|
}
|
|
|
|
static inline int scsc_wake_lock_active(struct scsc_wake_lock *lock)
|
|
{
|
|
return lock->ws->active;
|
|
}
|
|
|
|
#endif
|