2 * SPDX-License-Identifier: MIT
4 * Copyright © 2019 Intel Corporation
7 #ifndef INTEL_WAKEREF_H
8 #define INTEL_WAKEREF_H
10 #include <linux/atomic.h>
11 #include <linux/bitfield.h>
12 #include <linux/bits.h>
13 #include <linux/lockdep.h>
14 #include <linux/mutex.h>
15 #include <linux/refcount.h>
16 #include <linux/stackdepot.h>
17 #include <linux/timer.h>
18 #include <linux/workqueue.h>
20 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG)
21 #define INTEL_WAKEREF_BUG_ON(expr) BUG_ON(expr)
23 #define INTEL_WAKEREF_BUG_ON(expr) BUILD_BUG_ON_INVALID(expr)
26 struct intel_runtime_pm
;
29 typedef depot_stack_handle_t intel_wakeref_t
;
31 struct intel_wakeref_ops
{
32 int (*get
)(struct intel_wakeref
*wf
);
33 int (*put
)(struct intel_wakeref
*wf
);
36 struct intel_wakeref
{
40 intel_wakeref_t wakeref
;
42 struct intel_runtime_pm
*rpm
;
43 const struct intel_wakeref_ops
*ops
;
45 struct delayed_work work
;
48 struct intel_wakeref_lockclass
{
49 struct lock_class_key mutex
;
50 struct lock_class_key work
;
53 void __intel_wakeref_init(struct intel_wakeref
*wf
,
54 struct intel_runtime_pm
*rpm
,
55 const struct intel_wakeref_ops
*ops
,
56 struct intel_wakeref_lockclass
*key
);
57 #define intel_wakeref_init(wf, rpm, ops) do { \
58 static struct intel_wakeref_lockclass __key; \
60 __intel_wakeref_init((wf), (rpm), (ops), &__key); \
63 int __intel_wakeref_get_first(struct intel_wakeref
*wf
);
64 void __intel_wakeref_put_last(struct intel_wakeref
*wf
, unsigned long flags
);
67 * intel_wakeref_get: Acquire the wakeref
70 * Acquire a hold on the wakeref. The first user to do so, will acquire
71 * the runtime pm wakeref and then call the @fn underneath the wakeref
74 * Note that @fn is allowed to fail, in which case the runtime-pm wakeref
75 * will be released and the acquisition unwound, and an error reported.
77 * Returns: 0 if the wakeref was acquired successfully, or a negative error
81 intel_wakeref_get(struct intel_wakeref
*wf
)
84 if (unlikely(!atomic_inc_not_zero(&wf
->count
)))
85 return __intel_wakeref_get_first(wf
);
91 * __intel_wakeref_get: Acquire the wakeref, again
94 * Increment the wakeref counter, only valid if it is already held by
97 * See intel_wakeref_get().
100 __intel_wakeref_get(struct intel_wakeref
*wf
)
102 INTEL_WAKEREF_BUG_ON(atomic_read(&wf
->count
) <= 0);
103 atomic_inc(&wf
->count
);
107 * intel_wakeref_get_if_in_use: Acquire the wakeref
110 * Acquire a hold on the wakeref, but only if the wakeref is already
113 * Returns: true if the wakeref was acquired, false otherwise.
116 intel_wakeref_get_if_active(struct intel_wakeref
*wf
)
118 return atomic_inc_not_zero(&wf
->count
);
122 INTEL_WAKEREF_PUT_ASYNC_BIT
= 0,
123 __INTEL_WAKEREF_PUT_LAST_BIT__
127 * intel_wakeref_put_flags: Release the wakeref
129 * @flags: control flags
131 * Release our hold on the wakeref. When there are no more users,
132 * the runtime pm wakeref will be released after the @fn callback is called
133 * underneath the wakeref mutex.
135 * Note that @fn is allowed to fail, in which case the runtime-pm wakeref
136 * is retained and an error reported.
138 * Returns: 0 if the wakeref was released successfully, or a negative error
142 __intel_wakeref_put(struct intel_wakeref
*wf
, unsigned long flags
)
143 #define INTEL_WAKEREF_PUT_ASYNC BIT(INTEL_WAKEREF_PUT_ASYNC_BIT)
144 #define INTEL_WAKEREF_PUT_DELAY \
145 GENMASK(BITS_PER_LONG - 1, __INTEL_WAKEREF_PUT_LAST_BIT__)
147 INTEL_WAKEREF_BUG_ON(atomic_read(&wf
->count
) <= 0);
148 if (unlikely(!atomic_add_unless(&wf
->count
, -1, 1)))
149 __intel_wakeref_put_last(wf
, flags
);
153 intel_wakeref_put(struct intel_wakeref
*wf
)
156 __intel_wakeref_put(wf
, 0);
160 intel_wakeref_put_async(struct intel_wakeref
*wf
)
162 __intel_wakeref_put(wf
, INTEL_WAKEREF_PUT_ASYNC
);
166 intel_wakeref_put_delay(struct intel_wakeref
*wf
, unsigned long delay
)
168 __intel_wakeref_put(wf
,
169 INTEL_WAKEREF_PUT_ASYNC
|
170 FIELD_PREP(INTEL_WAKEREF_PUT_DELAY
, delay
));
174 * intel_wakeref_lock: Lock the wakeref (mutex)
177 * Locks the wakeref to prevent it being acquired or released. New users
178 * can still adjust the counter, but the wakeref itself (and callback)
179 * cannot be acquired or released.
182 intel_wakeref_lock(struct intel_wakeref
*wf
)
183 __acquires(wf
->mutex
)
185 mutex_lock(&wf
->mutex
);
189 * intel_wakeref_unlock: Unlock the wakeref
192 * Releases a previously acquired intel_wakeref_lock().
195 intel_wakeref_unlock(struct intel_wakeref
*wf
)
196 __releases(wf
->mutex
)
198 mutex_unlock(&wf
->mutex
);
202 * intel_wakeref_unlock_wait: Wait until the active callback is complete
205 * Waits for the active callback (under the @wf->mutex or another CPU) is
209 intel_wakeref_unlock_wait(struct intel_wakeref
*wf
)
211 mutex_lock(&wf
->mutex
);
212 mutex_unlock(&wf
->mutex
);
213 flush_delayed_work(&wf
->work
);
217 * intel_wakeref_is_active: Query whether the wakeref is currently held
220 * Returns: true if the wakeref is currently held.
223 intel_wakeref_is_active(const struct intel_wakeref
*wf
)
225 return READ_ONCE(wf
->wakeref
);
229 * __intel_wakeref_defer_park: Defer the current park callback
233 __intel_wakeref_defer_park(struct intel_wakeref
*wf
)
235 lockdep_assert_held(&wf
->mutex
);
236 INTEL_WAKEREF_BUG_ON(atomic_read(&wf
->count
));
237 atomic_set_release(&wf
->count
, 1);
241 * intel_wakeref_wait_for_idle: Wait until the wakeref is idle
244 * Wait for the earlier asynchronous release of the wakeref. Note
245 * this will wait for any third party as well, so make sure you only wait
246 * when you have control over the wakeref and trust no one else is acquiring
249 * Return: 0 on success, error code if killed.
251 int intel_wakeref_wait_for_idle(struct intel_wakeref
*wf
);
253 struct intel_wakeref_auto
{
254 struct intel_runtime_pm
*rpm
;
255 struct timer_list timer
;
256 intel_wakeref_t wakeref
;
262 * intel_wakeref_auto: Delay the runtime-pm autosuspend
264 * @timeout: relative timeout in jiffies
266 * The runtime-pm core uses a suspend delay after the last wakeref
267 * is released before triggering runtime suspend of the device. That
268 * delay is configurable via sysfs with little regard to the device
269 * characteristics. Instead, we want to tune the autosuspend based on our
270 * HW knowledge. intel_wakeref_auto() delays the sleep by the supplied
273 * Pass @timeout = 0 to cancel a previous autosuspend by executing the
274 * suspend immediately.
276 void intel_wakeref_auto(struct intel_wakeref_auto
*wf
, unsigned long timeout
);
278 void intel_wakeref_auto_init(struct intel_wakeref_auto
*wf
,
279 struct intel_runtime_pm
*rpm
);
280 void intel_wakeref_auto_fini(struct intel_wakeref_auto
*wf
);
282 #endif /* INTEL_WAKEREF_H */