19c065a7dSDaniel Vetter /*
29c065a7dSDaniel Vetter * Copyright © 2012-2014 Intel Corporation
39c065a7dSDaniel Vetter *
49c065a7dSDaniel Vetter * Permission is hereby granted, free of charge, to any person obtaining a
59c065a7dSDaniel Vetter * copy of this software and associated documentation files (the "Software"),
69c065a7dSDaniel Vetter * to deal in the Software without restriction, including without limitation
79c065a7dSDaniel Vetter * the rights to use, copy, modify, merge, publish, distribute, sublicense,
89c065a7dSDaniel Vetter * and/or sell copies of the Software, and to permit persons to whom the
99c065a7dSDaniel Vetter * Software is furnished to do so, subject to the following conditions:
109c065a7dSDaniel Vetter *
119c065a7dSDaniel Vetter * The above copyright notice and this permission notice (including the next
129c065a7dSDaniel Vetter * paragraph) shall be included in all copies or substantial portions of the
139c065a7dSDaniel Vetter * Software.
149c065a7dSDaniel Vetter *
159c065a7dSDaniel Vetter * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
169c065a7dSDaniel Vetter * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
179c065a7dSDaniel Vetter * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
189c065a7dSDaniel Vetter * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
199c065a7dSDaniel Vetter * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
209c065a7dSDaniel Vetter * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
219c065a7dSDaniel Vetter * IN THE SOFTWARE.
229c065a7dSDaniel Vetter *
239c065a7dSDaniel Vetter * Authors:
249c065a7dSDaniel Vetter * Eugeni Dodonov <eugeni.dodonov@intel.com>
259c065a7dSDaniel Vetter * Daniel Vetter <daniel.vetter@ffwll.ch>
269c065a7dSDaniel Vetter *
279c065a7dSDaniel Vetter */
289c065a7dSDaniel Vetter
299c065a7dSDaniel Vetter #include <linux/pm_runtime.h>
309c065a7dSDaniel Vetter
31bd780f37SChris Wilson #include <drm/drm_print.h>
32bd780f37SChris Wilson
339c065a7dSDaniel Vetter #include "i915_drv.h"
34a09d9a80SJani Nikula #include "i915_trace.h"
359c065a7dSDaniel Vetter
36e4e7684fSDaniel Vetter /**
37e4e7684fSDaniel Vetter * DOC: runtime pm
38e4e7684fSDaniel Vetter *
39e4e7684fSDaniel Vetter * The i915 driver supports dynamic enabling and disabling of entire hardware
40e4e7684fSDaniel Vetter * blocks at runtime. This is especially important on the display side where
41e4e7684fSDaniel Vetter * software is supposed to control many power gates manually on recent hardware,
42e4e7684fSDaniel Vetter * since on the GT side a lot of the power management is done by the hardware.
43e4e7684fSDaniel Vetter * But even there some manual control at the device level is required.
44e4e7684fSDaniel Vetter *
45e4e7684fSDaniel Vetter * Since i915 supports a diverse set of platforms with a unified codebase and
46e4e7684fSDaniel Vetter * hardware engineers just love to shuffle functionality around between power
47e4e7684fSDaniel Vetter * domains there's a sizeable amount of indirection required. This file provides
48e4e7684fSDaniel Vetter * generic functions to the driver for grabbing and releasing references for
49e4e7684fSDaniel Vetter * abstract power domains. It then maps those to the actual power wells
50e4e7684fSDaniel Vetter * present for a given platform.
51e4e7684fSDaniel Vetter */
52e4e7684fSDaniel Vetter
53bd780f37SChris Wilson #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM)
54bd780f37SChris Wilson
55bd780f37SChris Wilson #include <linux/sort.h>
56bd780f37SChris Wilson
57bd780f37SChris Wilson #define STACKDEPTH 8
58bd780f37SChris Wilson
__save_depot_stack(void)59bd780f37SChris Wilson static noinline depot_stack_handle_t __save_depot_stack(void)
60bd780f37SChris Wilson {
61bd780f37SChris Wilson unsigned long entries[STACKDEPTH];
62487f3c7fSThomas Gleixner unsigned int n;
63bd780f37SChris Wilson
64487f3c7fSThomas Gleixner n = stack_trace_save(entries, ARRAY_SIZE(entries), 1);
65487f3c7fSThomas Gleixner return stack_depot_save(entries, n, GFP_NOWAIT | __GFP_NOWARN);
66bd780f37SChris Wilson }
67bd780f37SChris Wilson
init_intel_runtime_pm_wakeref(struct intel_runtime_pm * rpm)681bf676ccSDaniele Ceraolo Spurio static void init_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm)
69bd780f37SChris Wilson {
70bd780f37SChris Wilson spin_lock_init(&rpm->debug.lock);
712dba5eb1SVlastimil Babka stack_depot_init();
72bd780f37SChris Wilson }
73bd780f37SChris Wilson
7416e4dd03SChris Wilson static noinline depot_stack_handle_t
track_intel_runtime_pm_wakeref(struct intel_runtime_pm * rpm)751bf676ccSDaniele Ceraolo Spurio track_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm)
76bd780f37SChris Wilson {
77bd780f37SChris Wilson depot_stack_handle_t stack, *stacks;
78bd780f37SChris Wilson unsigned long flags;
79bd780f37SChris Wilson
80985a0256SVille Syrjälä if (rpm->no_wakeref_tracking)
81985a0256SVille Syrjälä return -1;
82985a0256SVille Syrjälä
83bd780f37SChris Wilson stack = __save_depot_stack();
84bd780f37SChris Wilson if (!stack)
8516e4dd03SChris Wilson return -1;
86bd780f37SChris Wilson
87bd780f37SChris Wilson spin_lock_irqsave(&rpm->debug.lock, flags);
88bd780f37SChris Wilson
89bd780f37SChris Wilson if (!rpm->debug.count)
90bd780f37SChris Wilson rpm->debug.last_acquire = stack;
91bd780f37SChris Wilson
92bd780f37SChris Wilson stacks = krealloc(rpm->debug.owners,
93bd780f37SChris Wilson (rpm->debug.count + 1) * sizeof(*stacks),
94bd780f37SChris Wilson GFP_NOWAIT | __GFP_NOWARN);
95bd780f37SChris Wilson if (stacks) {
96bd780f37SChris Wilson stacks[rpm->debug.count++] = stack;
97bd780f37SChris Wilson rpm->debug.owners = stacks;
9816e4dd03SChris Wilson } else {
9916e4dd03SChris Wilson stack = -1;
100bd780f37SChris Wilson }
101bd780f37SChris Wilson
102bd780f37SChris Wilson spin_unlock_irqrestore(&rpm->debug.lock, flags);
10316e4dd03SChris Wilson
10416e4dd03SChris Wilson return stack;
10516e4dd03SChris Wilson }
10616e4dd03SChris Wilson
untrack_intel_runtime_pm_wakeref(struct intel_runtime_pm * rpm,depot_stack_handle_t stack)1071bf676ccSDaniele Ceraolo Spurio static void untrack_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm,
10816e4dd03SChris Wilson depot_stack_handle_t stack)
10916e4dd03SChris Wilson {
110649c10ffSPankaj Bharadiya struct drm_i915_private *i915 = container_of(rpm,
111649c10ffSPankaj Bharadiya struct drm_i915_private,
112649c10ffSPankaj Bharadiya runtime_pm);
11316e4dd03SChris Wilson unsigned long flags, n;
11416e4dd03SChris Wilson bool found = false;
11516e4dd03SChris Wilson
11616e4dd03SChris Wilson if (unlikely(stack == -1))
11716e4dd03SChris Wilson return;
11816e4dd03SChris Wilson
11916e4dd03SChris Wilson spin_lock_irqsave(&rpm->debug.lock, flags);
12016e4dd03SChris Wilson for (n = rpm->debug.count; n--; ) {
12116e4dd03SChris Wilson if (rpm->debug.owners[n] == stack) {
12216e4dd03SChris Wilson memmove(rpm->debug.owners + n,
12316e4dd03SChris Wilson rpm->debug.owners + n + 1,
12416e4dd03SChris Wilson (--rpm->debug.count - n) * sizeof(stack));
12516e4dd03SChris Wilson found = true;
12616e4dd03SChris Wilson break;
12716e4dd03SChris Wilson }
12816e4dd03SChris Wilson }
12916e4dd03SChris Wilson spin_unlock_irqrestore(&rpm->debug.lock, flags);
13016e4dd03SChris Wilson
131649c10ffSPankaj Bharadiya if (drm_WARN(&i915->drm, !found,
13216e4dd03SChris Wilson "Unmatched wakeref (tracking %lu), count %u\n",
13316e4dd03SChris Wilson rpm->debug.count, atomic_read(&rpm->wakeref_count))) {
13416e4dd03SChris Wilson char *buf;
13516e4dd03SChris Wilson
1362e1e5c55SChris Wilson buf = kmalloc(PAGE_SIZE, GFP_NOWAIT | __GFP_NOWARN);
13716e4dd03SChris Wilson if (!buf)
13816e4dd03SChris Wilson return;
13916e4dd03SChris Wilson
1400f68d45eSImran Khan stack_depot_snprint(stack, buf, PAGE_SIZE, 2);
14116e4dd03SChris Wilson DRM_DEBUG_DRIVER("wakeref %x from\n%s", stack, buf);
14216e4dd03SChris Wilson
14316e4dd03SChris Wilson stack = READ_ONCE(rpm->debug.last_release);
14416e4dd03SChris Wilson if (stack) {
1450f68d45eSImran Khan stack_depot_snprint(stack, buf, PAGE_SIZE, 2);
14616e4dd03SChris Wilson DRM_DEBUG_DRIVER("wakeref last released at\n%s", buf);
14716e4dd03SChris Wilson }
14816e4dd03SChris Wilson
14916e4dd03SChris Wilson kfree(buf);
15016e4dd03SChris Wilson }
151bd780f37SChris Wilson }
152bd780f37SChris Wilson
cmphandle(const void * _a,const void * _b)153bd780f37SChris Wilson static int cmphandle(const void *_a, const void *_b)
154bd780f37SChris Wilson {
155bd780f37SChris Wilson const depot_stack_handle_t * const a = _a, * const b = _b;
156bd780f37SChris Wilson
157bd780f37SChris Wilson if (*a < *b)
158bd780f37SChris Wilson return -1;
159bd780f37SChris Wilson else if (*a > *b)
160bd780f37SChris Wilson return 1;
161bd780f37SChris Wilson else
162bd780f37SChris Wilson return 0;
163bd780f37SChris Wilson }
164bd780f37SChris Wilson
165bd780f37SChris Wilson static void
__print_intel_runtime_pm_wakeref(struct drm_printer * p,const struct intel_runtime_pm_debug * dbg)166bd780f37SChris Wilson __print_intel_runtime_pm_wakeref(struct drm_printer *p,
167bd780f37SChris Wilson const struct intel_runtime_pm_debug *dbg)
168bd780f37SChris Wilson {
169bd780f37SChris Wilson unsigned long i;
170bd780f37SChris Wilson char *buf;
171bd780f37SChris Wilson
1722e1e5c55SChris Wilson buf = kmalloc(PAGE_SIZE, GFP_NOWAIT | __GFP_NOWARN);
173bd780f37SChris Wilson if (!buf)
174bd780f37SChris Wilson return;
175bd780f37SChris Wilson
176bd780f37SChris Wilson if (dbg->last_acquire) {
1770f68d45eSImran Khan stack_depot_snprint(dbg->last_acquire, buf, PAGE_SIZE, 2);
178bd780f37SChris Wilson drm_printf(p, "Wakeref last acquired:\n%s", buf);
179bd780f37SChris Wilson }
180bd780f37SChris Wilson
181bd780f37SChris Wilson if (dbg->last_release) {
1820f68d45eSImran Khan stack_depot_snprint(dbg->last_release, buf, PAGE_SIZE, 2);
183bd780f37SChris Wilson drm_printf(p, "Wakeref last released:\n%s", buf);
184bd780f37SChris Wilson }
185bd780f37SChris Wilson
186bd780f37SChris Wilson drm_printf(p, "Wakeref count: %lu\n", dbg->count);
187bd780f37SChris Wilson
188bd780f37SChris Wilson sort(dbg->owners, dbg->count, sizeof(*dbg->owners), cmphandle, NULL);
189bd780f37SChris Wilson
190bd780f37SChris Wilson for (i = 0; i < dbg->count; i++) {
191bd780f37SChris Wilson depot_stack_handle_t stack = dbg->owners[i];
192bd780f37SChris Wilson unsigned long rep;
193bd780f37SChris Wilson
194bd780f37SChris Wilson rep = 1;
195bd780f37SChris Wilson while (i + 1 < dbg->count && dbg->owners[i + 1] == stack)
196bd780f37SChris Wilson rep++, i++;
1970f68d45eSImran Khan stack_depot_snprint(stack, buf, PAGE_SIZE, 2);
198bd780f37SChris Wilson drm_printf(p, "Wakeref x%lu taken at:\n%s", rep, buf);
199bd780f37SChris Wilson }
200bd780f37SChris Wilson
201bd780f37SChris Wilson kfree(buf);
202bd780f37SChris Wilson }
203bd780f37SChris Wilson
204bd780f37SChris Wilson static noinline void
__untrack_all_wakerefs(struct intel_runtime_pm_debug * debug,struct intel_runtime_pm_debug * saved)205dbf99c1fSImre Deak __untrack_all_wakerefs(struct intel_runtime_pm_debug *debug,
206dbf99c1fSImre Deak struct intel_runtime_pm_debug *saved)
207bd780f37SChris Wilson {
208dbf99c1fSImre Deak *saved = *debug;
209bd780f37SChris Wilson
210dbf99c1fSImre Deak debug->owners = NULL;
211dbf99c1fSImre Deak debug->count = 0;
212dbf99c1fSImre Deak debug->last_release = __save_depot_stack();
213bd780f37SChris Wilson }
214dbf99c1fSImre Deak
215dbf99c1fSImre Deak static void
dump_and_free_wakeref_tracking(struct intel_runtime_pm_debug * debug)216dbf99c1fSImre Deak dump_and_free_wakeref_tracking(struct intel_runtime_pm_debug *debug)
217dbf99c1fSImre Deak {
218c5f846eeSMika Kuoppala if (debug->count) {
219c5f846eeSMika Kuoppala struct drm_printer p = drm_debug_printer("i915");
220dbf99c1fSImre Deak
221dbf99c1fSImre Deak __print_intel_runtime_pm_wakeref(&p, debug);
222c5f846eeSMika Kuoppala }
223bd780f37SChris Wilson
224dbf99c1fSImre Deak kfree(debug->owners);
225dbf99c1fSImre Deak }
226dbf99c1fSImre Deak
227dbf99c1fSImre Deak static noinline void
__intel_wakeref_dec_and_check_tracking(struct intel_runtime_pm * rpm)2281bf676ccSDaniele Ceraolo Spurio __intel_wakeref_dec_and_check_tracking(struct intel_runtime_pm *rpm)
229bd780f37SChris Wilson {
230bd780f37SChris Wilson struct intel_runtime_pm_debug dbg = {};
231bd780f37SChris Wilson unsigned long flags;
232bd780f37SChris Wilson
233dbf99c1fSImre Deak if (!atomic_dec_and_lock_irqsave(&rpm->wakeref_count,
234bd780f37SChris Wilson &rpm->debug.lock,
235dbf99c1fSImre Deak flags))
236bd780f37SChris Wilson return;
237bd780f37SChris Wilson
238dbf99c1fSImre Deak __untrack_all_wakerefs(&rpm->debug, &dbg);
239dbf99c1fSImre Deak spin_unlock_irqrestore(&rpm->debug.lock, flags);
240bd780f37SChris Wilson
241dbf99c1fSImre Deak dump_and_free_wakeref_tracking(&dbg);
242dbf99c1fSImre Deak }
243dbf99c1fSImre Deak
244dbf99c1fSImre Deak static noinline void
untrack_all_intel_runtime_pm_wakerefs(struct intel_runtime_pm * rpm)2451bf676ccSDaniele Ceraolo Spurio untrack_all_intel_runtime_pm_wakerefs(struct intel_runtime_pm *rpm)
246dbf99c1fSImre Deak {
247dbf99c1fSImre Deak struct intel_runtime_pm_debug dbg = {};
248dbf99c1fSImre Deak unsigned long flags;
249dbf99c1fSImre Deak
250dbf99c1fSImre Deak spin_lock_irqsave(&rpm->debug.lock, flags);
251dbf99c1fSImre Deak __untrack_all_wakerefs(&rpm->debug, &dbg);
252dbf99c1fSImre Deak spin_unlock_irqrestore(&rpm->debug.lock, flags);
253dbf99c1fSImre Deak
254dbf99c1fSImre Deak dump_and_free_wakeref_tracking(&dbg);
255bd780f37SChris Wilson }
256bd780f37SChris Wilson
print_intel_runtime_pm_wakeref(struct intel_runtime_pm * rpm,struct drm_printer * p)25769c66355SDaniele Ceraolo Spurio void print_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm,
258bd780f37SChris Wilson struct drm_printer *p)
259bd780f37SChris Wilson {
260bd780f37SChris Wilson struct intel_runtime_pm_debug dbg = {};
261bd780f37SChris Wilson
262bd780f37SChris Wilson do {
263bd780f37SChris Wilson unsigned long alloc = dbg.count;
264bd780f37SChris Wilson depot_stack_handle_t *s;
265bd780f37SChris Wilson
266bd780f37SChris Wilson spin_lock_irq(&rpm->debug.lock);
267bd780f37SChris Wilson dbg.count = rpm->debug.count;
268bd780f37SChris Wilson if (dbg.count <= alloc) {
269bd780f37SChris Wilson memcpy(dbg.owners,
270bd780f37SChris Wilson rpm->debug.owners,
271bd780f37SChris Wilson dbg.count * sizeof(*s));
272bd780f37SChris Wilson }
273bd780f37SChris Wilson dbg.last_acquire = rpm->debug.last_acquire;
274bd780f37SChris Wilson dbg.last_release = rpm->debug.last_release;
275bd780f37SChris Wilson spin_unlock_irq(&rpm->debug.lock);
276bd780f37SChris Wilson if (dbg.count <= alloc)
277bd780f37SChris Wilson break;
278bd780f37SChris Wilson
2792e1e5c55SChris Wilson s = krealloc(dbg.owners,
2802e1e5c55SChris Wilson dbg.count * sizeof(*s),
2812e1e5c55SChris Wilson GFP_NOWAIT | __GFP_NOWARN);
282bd780f37SChris Wilson if (!s)
283bd780f37SChris Wilson goto out;
284bd780f37SChris Wilson
285bd780f37SChris Wilson dbg.owners = s;
286bd780f37SChris Wilson } while (1);
287bd780f37SChris Wilson
288bd780f37SChris Wilson __print_intel_runtime_pm_wakeref(p, &dbg);
289bd780f37SChris Wilson
290bd780f37SChris Wilson out:
291bd780f37SChris Wilson kfree(dbg.owners);
292bd780f37SChris Wilson }
293bd780f37SChris Wilson
294bd780f37SChris Wilson #else
295bd780f37SChris Wilson
init_intel_runtime_pm_wakeref(struct intel_runtime_pm * rpm)2961bf676ccSDaniele Ceraolo Spurio static void init_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm)
297bd780f37SChris Wilson {
298bd780f37SChris Wilson }
299bd780f37SChris Wilson
30016e4dd03SChris Wilson static depot_stack_handle_t
track_intel_runtime_pm_wakeref(struct intel_runtime_pm * rpm)3011bf676ccSDaniele Ceraolo Spurio track_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm)
302bd780f37SChris Wilson {
30316e4dd03SChris Wilson return -1;
304bd780f37SChris Wilson }
305bd780f37SChris Wilson
untrack_intel_runtime_pm_wakeref(struct intel_runtime_pm * rpm,intel_wakeref_t wref)3061bf676ccSDaniele Ceraolo Spurio static void untrack_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm,
3074547c255SImre Deak intel_wakeref_t wref)
308bd780f37SChris Wilson {
3094547c255SImre Deak }
3104547c255SImre Deak
3114547c255SImre Deak static void
__intel_wakeref_dec_and_check_tracking(struct intel_runtime_pm * rpm)3121bf676ccSDaniele Ceraolo Spurio __intel_wakeref_dec_and_check_tracking(struct intel_runtime_pm *rpm)
3134547c255SImre Deak {
314d5b6c275SDaniele Ceraolo Spurio atomic_dec(&rpm->wakeref_count);
315bd780f37SChris Wilson }
316bd780f37SChris Wilson
317dbf99c1fSImre Deak static void
untrack_all_intel_runtime_pm_wakerefs(struct intel_runtime_pm * rpm)3181bf676ccSDaniele Ceraolo Spurio untrack_all_intel_runtime_pm_wakerefs(struct intel_runtime_pm *rpm)
319dbf99c1fSImre Deak {
320dbf99c1fSImre Deak }
321dbf99c1fSImre Deak
322bd780f37SChris Wilson #endif
323bd780f37SChris Wilson
3244547c255SImre Deak static void
intel_runtime_pm_acquire(struct intel_runtime_pm * rpm,bool wakelock)3251bf676ccSDaniele Ceraolo Spurio intel_runtime_pm_acquire(struct intel_runtime_pm *rpm, bool wakelock)
3264547c255SImre Deak {
3274547c255SImre Deak if (wakelock) {
3284547c255SImre Deak atomic_add(1 + INTEL_RPM_WAKELOCK_BIAS, &rpm->wakeref_count);
32987b391b9SDaniele Ceraolo Spurio assert_rpm_wakelock_held(rpm);
3304547c255SImre Deak } else {
3314547c255SImre Deak atomic_inc(&rpm->wakeref_count);
33287b391b9SDaniele Ceraolo Spurio assert_rpm_raw_wakeref_held(rpm);
3334547c255SImre Deak }
3344547c255SImre Deak }
3354547c255SImre Deak
3364547c255SImre Deak static void
intel_runtime_pm_release(struct intel_runtime_pm * rpm,int wakelock)3371bf676ccSDaniele Ceraolo Spurio intel_runtime_pm_release(struct intel_runtime_pm *rpm, int wakelock)
3384547c255SImre Deak {
3394547c255SImre Deak if (wakelock) {
34087b391b9SDaniele Ceraolo Spurio assert_rpm_wakelock_held(rpm);
3414547c255SImre Deak atomic_sub(INTEL_RPM_WAKELOCK_BIAS, &rpm->wakeref_count);
3424547c255SImre Deak } else {
34387b391b9SDaniele Ceraolo Spurio assert_rpm_raw_wakeref_held(rpm);
3444547c255SImre Deak }
3454547c255SImre Deak
346d5b6c275SDaniele Ceraolo Spurio __intel_wakeref_dec_and_check_tracking(rpm);
3474547c255SImre Deak }
3484547c255SImre Deak
__intel_runtime_pm_get(struct intel_runtime_pm * rpm,bool wakelock)3491bf676ccSDaniele Ceraolo Spurio static intel_wakeref_t __intel_runtime_pm_get(struct intel_runtime_pm *rpm,
3504547c255SImre Deak bool wakelock)
3514547c255SImre Deak {
352649c10ffSPankaj Bharadiya struct drm_i915_private *i915 = container_of(rpm,
353649c10ffSPankaj Bharadiya struct drm_i915_private,
354649c10ffSPankaj Bharadiya runtime_pm);
3554547c255SImre Deak int ret;
3564547c255SImre Deak
357d5b6c275SDaniele Ceraolo Spurio ret = pm_runtime_get_sync(rpm->kdev);
358649c10ffSPankaj Bharadiya drm_WARN_ONCE(&i915->drm, ret < 0,
359649c10ffSPankaj Bharadiya "pm_runtime_get_sync() failed: %d\n", ret);
3604547c255SImre Deak
361d5b6c275SDaniele Ceraolo Spurio intel_runtime_pm_acquire(rpm, wakelock);
3624547c255SImre Deak
363d5b6c275SDaniele Ceraolo Spurio return track_intel_runtime_pm_wakeref(rpm);
3644547c255SImre Deak }
3654547c255SImre Deak
3667645b19dSDaniele Ceraolo Spurio /**
3677645b19dSDaniele Ceraolo Spurio * intel_runtime_pm_get_raw - grab a raw runtime pm reference
368d858d569SDaniele Ceraolo Spurio * @rpm: the intel_runtime_pm structure
3697645b19dSDaniele Ceraolo Spurio *
3707645b19dSDaniele Ceraolo Spurio * This is the unlocked version of intel_display_power_is_enabled() and should
3717645b19dSDaniele Ceraolo Spurio * only be used from error capture and recovery code where deadlocks are
3727645b19dSDaniele Ceraolo Spurio * possible.
3737645b19dSDaniele Ceraolo Spurio * This function grabs a device-level runtime pm reference (mostly used for
3747645b19dSDaniele Ceraolo Spurio * asynchronous PM management from display code) and ensures that it is powered
3757645b19dSDaniele Ceraolo Spurio * up. Raw references are not considered during wakelock assert checks.
3767645b19dSDaniele Ceraolo Spurio *
3777645b19dSDaniele Ceraolo Spurio * Any runtime pm reference obtained by this function must have a symmetric
3787645b19dSDaniele Ceraolo Spurio * call to intel_runtime_pm_put_raw() to release the reference again.
3797645b19dSDaniele Ceraolo Spurio *
3807645b19dSDaniele Ceraolo Spurio * Returns: the wakeref cookie to pass to intel_runtime_pm_put_raw(), evaluates
3817645b19dSDaniele Ceraolo Spurio * as True if the wakeref was acquired, or False otherwise.
3827645b19dSDaniele Ceraolo Spurio */
intel_runtime_pm_get_raw(struct intel_runtime_pm * rpm)383d858d569SDaniele Ceraolo Spurio intel_wakeref_t intel_runtime_pm_get_raw(struct intel_runtime_pm *rpm)
384e0da2d63SImre Deak {
385d858d569SDaniele Ceraolo Spurio return __intel_runtime_pm_get(rpm, false);
386e0da2d63SImre Deak }
387e0da2d63SImre Deak
38873dfc227SImre Deak /**
389e4e7684fSDaniel Vetter * intel_runtime_pm_get - grab a runtime pm reference
390d858d569SDaniele Ceraolo Spurio * @rpm: the intel_runtime_pm structure
391e4e7684fSDaniel Vetter *
392e4e7684fSDaniel Vetter * This function grabs a device-level runtime pm reference (mostly used for GEM
393e4e7684fSDaniel Vetter * code to ensure the GTT or GT is on) and ensures that it is powered up.
394e4e7684fSDaniel Vetter *
395e4e7684fSDaniel Vetter * Any runtime pm reference obtained by this function must have a symmetric
396e4e7684fSDaniel Vetter * call to intel_runtime_pm_put() to release the reference again.
39716e4dd03SChris Wilson *
39816e4dd03SChris Wilson * Returns: the wakeref cookie to pass to intel_runtime_pm_put()
399e4e7684fSDaniel Vetter */
intel_runtime_pm_get(struct intel_runtime_pm * rpm)400d858d569SDaniele Ceraolo Spurio intel_wakeref_t intel_runtime_pm_get(struct intel_runtime_pm *rpm)
4019c065a7dSDaniel Vetter {
402d858d569SDaniele Ceraolo Spurio return __intel_runtime_pm_get(rpm, true);
4039c065a7dSDaniel Vetter }
4049c065a7dSDaniel Vetter
405e4e7684fSDaniel Vetter /**
4069d58aa46SImre Deak * __intel_runtime_pm_get_if_active - grab a runtime pm reference if device is active
407d858d569SDaniele Ceraolo Spurio * @rpm: the intel_runtime_pm structure
4089d58aa46SImre Deak * @ignore_usecount: get a ref even if dev->power.usage_count is 0
40909731280SImre Deak *
41009731280SImre Deak * This function grabs a device-level runtime pm reference if the device is
4119d58aa46SImre Deak * already active and ensures that it is powered up. It is illegal to try
4129d58aa46SImre Deak * and access the HW should intel_runtime_pm_get_if_active() report failure.
4139d58aa46SImre Deak *
41481f1f8f1SImre Deak * If @ignore_usecount is true, a reference will be acquired even if there is no
4159d58aa46SImre Deak * user requiring the device to be powered up (dev->power.usage_count == 0).
4169d58aa46SImre Deak * If the function returns false in this case then it's guaranteed that the
4179d58aa46SImre Deak * device's runtime suspend hook has been called already or that it will be
4189d58aa46SImre Deak * called (and hence it's also guaranteed that the device's runtime resume
4199d58aa46SImre Deak * hook will be called eventually).
42009731280SImre Deak *
42109731280SImre Deak * Any runtime pm reference obtained by this function must have a symmetric
42209731280SImre Deak * call to intel_runtime_pm_put() to release the reference again.
423acb79148SChris Wilson *
42416e4dd03SChris Wilson * Returns: the wakeref cookie to pass to intel_runtime_pm_put(), evaluates
42516e4dd03SChris Wilson * as True if the wakeref was acquired, or False otherwise.
42609731280SImre Deak */
__intel_runtime_pm_get_if_active(struct intel_runtime_pm * rpm,bool ignore_usecount)4279d58aa46SImre Deak static intel_wakeref_t __intel_runtime_pm_get_if_active(struct intel_runtime_pm *rpm,
4289d58aa46SImre Deak bool ignore_usecount)
42909731280SImre Deak {
430d5b6c275SDaniele Ceraolo Spurio if (IS_ENABLED(CONFIG_PM)) {
43109731280SImre Deak /*
432135dc79eSChris Wilson * In cases runtime PM is disabled by the RPM core and we get
433135dc79eSChris Wilson * an -EINVAL return value we are not supposed to call this
434135dc79eSChris Wilson * function, since the power state is undefined. This applies
435135dc79eSChris Wilson * atm to the late/early system suspend/resume handlers.
43609731280SImre Deak */
4379d58aa46SImre Deak if (pm_runtime_get_if_active(rpm->kdev, ignore_usecount) <= 0)
43816e4dd03SChris Wilson return 0;
439135dc79eSChris Wilson }
44009731280SImre Deak
441d5b6c275SDaniele Ceraolo Spurio intel_runtime_pm_acquire(rpm, true);
4424547c255SImre Deak
443d5b6c275SDaniele Ceraolo Spurio return track_intel_runtime_pm_wakeref(rpm);
44409731280SImre Deak }
44509731280SImre Deak
intel_runtime_pm_get_if_in_use(struct intel_runtime_pm * rpm)4469d58aa46SImre Deak intel_wakeref_t intel_runtime_pm_get_if_in_use(struct intel_runtime_pm *rpm)
4479d58aa46SImre Deak {
4489d58aa46SImre Deak return __intel_runtime_pm_get_if_active(rpm, false);
4499d58aa46SImre Deak }
4509d58aa46SImre Deak
intel_runtime_pm_get_if_active(struct intel_runtime_pm * rpm)4519d58aa46SImre Deak intel_wakeref_t intel_runtime_pm_get_if_active(struct intel_runtime_pm *rpm)
4529d58aa46SImre Deak {
4539d58aa46SImre Deak return __intel_runtime_pm_get_if_active(rpm, true);
4549d58aa46SImre Deak }
4559d58aa46SImre Deak
45609731280SImre Deak /**
457e4e7684fSDaniel Vetter * intel_runtime_pm_get_noresume - grab a runtime pm reference
458d858d569SDaniele Ceraolo Spurio * @rpm: the intel_runtime_pm structure
459e4e7684fSDaniel Vetter *
460e4e7684fSDaniel Vetter * This function grabs a device-level runtime pm reference (mostly used for GEM
461e4e7684fSDaniel Vetter * code to ensure the GTT or GT is on).
462e4e7684fSDaniel Vetter *
463e4e7684fSDaniel Vetter * It will _not_ power up the device but instead only check that it's powered
464e4e7684fSDaniel Vetter * on. Therefore it is only valid to call this functions from contexts where
465e4e7684fSDaniel Vetter * the device is known to be powered up and where trying to power it up would
466e4e7684fSDaniel Vetter * result in hilarity and deadlocks. That pretty much means only the system
467e4e7684fSDaniel Vetter * suspend/resume code where this is used to grab runtime pm references for
468e4e7684fSDaniel Vetter * delayed setup down in work items.
469e4e7684fSDaniel Vetter *
470e4e7684fSDaniel Vetter * Any runtime pm reference obtained by this function must have a symmetric
471e4e7684fSDaniel Vetter * call to intel_runtime_pm_put() to release the reference again.
47216e4dd03SChris Wilson *
47316e4dd03SChris Wilson * Returns: the wakeref cookie to pass to intel_runtime_pm_put()
474e4e7684fSDaniel Vetter */
intel_runtime_pm_get_noresume(struct intel_runtime_pm * rpm)475d858d569SDaniele Ceraolo Spurio intel_wakeref_t intel_runtime_pm_get_noresume(struct intel_runtime_pm *rpm)
4769c065a7dSDaniel Vetter {
47787b391b9SDaniele Ceraolo Spurio assert_rpm_wakelock_held(rpm);
478d5b6c275SDaniele Ceraolo Spurio pm_runtime_get_noresume(rpm->kdev);
4791f814dacSImre Deak
480d5b6c275SDaniele Ceraolo Spurio intel_runtime_pm_acquire(rpm, true);
4814547c255SImre Deak
482d5b6c275SDaniele Ceraolo Spurio return track_intel_runtime_pm_wakeref(rpm);
4839c065a7dSDaniel Vetter }
4849c065a7dSDaniel Vetter
__intel_runtime_pm_put(struct intel_runtime_pm * rpm,intel_wakeref_t wref,bool wakelock)4851bf676ccSDaniele Ceraolo Spurio static void __intel_runtime_pm_put(struct intel_runtime_pm *rpm,
4864547c255SImre Deak intel_wakeref_t wref,
4874547c255SImre Deak bool wakelock)
4889c065a7dSDaniel Vetter {
489d5b6c275SDaniele Ceraolo Spurio struct device *kdev = rpm->kdev;
4909c065a7dSDaniel Vetter
491d5b6c275SDaniele Ceraolo Spurio untrack_intel_runtime_pm_wakeref(rpm, wref);
4924547c255SImre Deak
493d5b6c275SDaniele Ceraolo Spurio intel_runtime_pm_release(rpm, wakelock);
4941f814dacSImre Deak
495c49d13eeSDavid Weinehall pm_runtime_mark_last_busy(kdev);
496c49d13eeSDavid Weinehall pm_runtime_put_autosuspend(kdev);
4979c065a7dSDaniel Vetter }
4989c065a7dSDaniel Vetter
4997645b19dSDaniele Ceraolo Spurio /**
5007645b19dSDaniele Ceraolo Spurio * intel_runtime_pm_put_raw - release a raw runtime pm reference
501d858d569SDaniele Ceraolo Spurio * @rpm: the intel_runtime_pm structure
5027645b19dSDaniele Ceraolo Spurio * @wref: wakeref acquired for the reference that is being released
5037645b19dSDaniele Ceraolo Spurio *
5047645b19dSDaniele Ceraolo Spurio * This function drops the device-level runtime pm reference obtained by
5057645b19dSDaniele Ceraolo Spurio * intel_runtime_pm_get_raw() and might power down the corresponding
5067645b19dSDaniele Ceraolo Spurio * hardware block right away if this is the last reference.
5077645b19dSDaniele Ceraolo Spurio */
5087645b19dSDaniele Ceraolo Spurio void
intel_runtime_pm_put_raw(struct intel_runtime_pm * rpm,intel_wakeref_t wref)509d858d569SDaniele Ceraolo Spurio intel_runtime_pm_put_raw(struct intel_runtime_pm *rpm, intel_wakeref_t wref)
510e0da2d63SImre Deak {
511d858d569SDaniele Ceraolo Spurio __intel_runtime_pm_put(rpm, wref, false);
512e0da2d63SImre Deak }
513e0da2d63SImre Deak
5144547c255SImre Deak /**
5154547c255SImre Deak * intel_runtime_pm_put_unchecked - release an unchecked runtime pm reference
516d858d569SDaniele Ceraolo Spurio * @rpm: the intel_runtime_pm structure
5174547c255SImre Deak *
5184547c255SImre Deak * This function drops the device-level runtime pm reference obtained by
5194547c255SImre Deak * intel_runtime_pm_get() and might power down the corresponding
5204547c255SImre Deak * hardware block right away if this is the last reference.
5214547c255SImre Deak *
5224547c255SImre Deak * This function exists only for historical reasons and should be avoided in
5234547c255SImre Deak * new code, as the correctness of its use cannot be checked. Always use
5244547c255SImre Deak * intel_runtime_pm_put() instead.
5254547c255SImre Deak */
intel_runtime_pm_put_unchecked(struct intel_runtime_pm * rpm)526d858d569SDaniele Ceraolo Spurio void intel_runtime_pm_put_unchecked(struct intel_runtime_pm *rpm)
5274547c255SImre Deak {
528d858d569SDaniele Ceraolo Spurio __intel_runtime_pm_put(rpm, -1, true);
5294547c255SImre Deak }
5304547c255SImre Deak
53116e4dd03SChris Wilson #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM)
5324547c255SImre Deak /**
5334547c255SImre Deak * intel_runtime_pm_put - release a runtime pm reference
534d858d569SDaniele Ceraolo Spurio * @rpm: the intel_runtime_pm structure
5354547c255SImre Deak * @wref: wakeref acquired for the reference that is being released
5364547c255SImre Deak *
5374547c255SImre Deak * This function drops the device-level runtime pm reference obtained by
5384547c255SImre Deak * intel_runtime_pm_get() and might power down the corresponding
5394547c255SImre Deak * hardware block right away if this is the last reference.
5404547c255SImre Deak */
intel_runtime_pm_put(struct intel_runtime_pm * rpm,intel_wakeref_t wref)541d858d569SDaniele Ceraolo Spurio void intel_runtime_pm_put(struct intel_runtime_pm *rpm, intel_wakeref_t wref)
54216e4dd03SChris Wilson {
543d858d569SDaniele Ceraolo Spurio __intel_runtime_pm_put(rpm, wref, true);
54416e4dd03SChris Wilson }
54516e4dd03SChris Wilson #endif
54616e4dd03SChris Wilson
547e4e7684fSDaniel Vetter /**
548e4e7684fSDaniel Vetter * intel_runtime_pm_enable - enable runtime pm
54969c66355SDaniele Ceraolo Spurio * @rpm: the intel_runtime_pm structure
550e4e7684fSDaniel Vetter *
551e4e7684fSDaniel Vetter * This function enables runtime pm at the end of the driver load sequence.
552e4e7684fSDaniel Vetter *
553e4e7684fSDaniel Vetter * Note that this function does currently not enable runtime pm for the
5542cd9a689SImre Deak * subordinate display power domains. That is done by
5552cd9a689SImre Deak * intel_power_domains_enable().
556e4e7684fSDaniel Vetter */
intel_runtime_pm_enable(struct intel_runtime_pm * rpm)55769c66355SDaniele Ceraolo Spurio void intel_runtime_pm_enable(struct intel_runtime_pm *rpm)
5589c065a7dSDaniel Vetter {
559649c10ffSPankaj Bharadiya struct drm_i915_private *i915 = container_of(rpm,
560649c10ffSPankaj Bharadiya struct drm_i915_private,
561649c10ffSPankaj Bharadiya runtime_pm);
562d5b6c275SDaniele Ceraolo Spurio struct device *kdev = rpm->kdev;
5639c065a7dSDaniel Vetter
56407d80572SChris Wilson /*
56507d80572SChris Wilson * Disable the system suspend direct complete optimization, which can
56607d80572SChris Wilson * leave the device suspended skipping the driver's suspend handlers
56707d80572SChris Wilson * if the device was already runtime suspended. This is needed due to
56807d80572SChris Wilson * the difference in our runtime and system suspend sequence and
56907d80572SChris Wilson * becaue the HDA driver may require us to enable the audio power
57007d80572SChris Wilson * domain during system suspend.
57107d80572SChris Wilson */
572e0751556SRafael J. Wysocki dev_pm_set_driver_flags(kdev, DPM_FLAG_NO_DIRECT_COMPLETE);
57307d80572SChris Wilson
574c49d13eeSDavid Weinehall pm_runtime_set_autosuspend_delay(kdev, 10000); /* 10s */
575c49d13eeSDavid Weinehall pm_runtime_mark_last_busy(kdev);
576cbc68dc9SImre Deak
57725b181b4SImre Deak /*
57825b181b4SImre Deak * Take a permanent reference to disable the RPM functionality and drop
57925b181b4SImre Deak * it only when unloading the driver. Use the low level get/put helpers,
58025b181b4SImre Deak * so the driver's own RPM reference tracking asserts also work on
58125b181b4SImre Deak * platforms without RPM support.
58225b181b4SImre Deak */
583d5b6c275SDaniele Ceraolo Spurio if (!rpm->available) {
584f5073824SImre Deak int ret;
585f5073824SImre Deak
586c49d13eeSDavid Weinehall pm_runtime_dont_use_autosuspend(kdev);
587f5073824SImre Deak ret = pm_runtime_get_sync(kdev);
588649c10ffSPankaj Bharadiya drm_WARN(&i915->drm, ret < 0,
589649c10ffSPankaj Bharadiya "pm_runtime_get_sync() failed: %d\n", ret);
590cbc68dc9SImre Deak } else {
591c49d13eeSDavid Weinehall pm_runtime_use_autosuspend(kdev);
592cbc68dc9SImre Deak }
5939c065a7dSDaniel Vetter
59466eb93e7SAnshuman Gupta /*
59566eb93e7SAnshuman Gupta * FIXME: Temp hammer to keep autosupend disable on lmem supported platforms.
59666eb93e7SAnshuman Gupta * As per PCIe specs 5.3.1.4.1, all iomem read write request over a PCIe
59766eb93e7SAnshuman Gupta * function will be unsupported in case PCIe endpoint function is in D3.
59866eb93e7SAnshuman Gupta * Let's keep i915 autosuspend control 'on' till we fix all known issue
59966eb93e7SAnshuman Gupta * with lmem access in D3.
60066eb93e7SAnshuman Gupta */
60166eb93e7SAnshuman Gupta if (!IS_DGFX(i915))
602527bab04STilak Tangudu pm_runtime_allow(kdev);
603527bab04STilak Tangudu
604aabee1bbSImre Deak /*
605aabee1bbSImre Deak * The core calls the driver load handler with an RPM reference held.
606aabee1bbSImre Deak * We drop that here and will reacquire it during unloading in
607aabee1bbSImre Deak * intel_power_domains_fini().
608aabee1bbSImre Deak */
609c49d13eeSDavid Weinehall pm_runtime_put_autosuspend(kdev);
6109c065a7dSDaniel Vetter }
61107d80572SChris Wilson
intel_runtime_pm_disable(struct intel_runtime_pm * rpm)61269c66355SDaniele Ceraolo Spurio void intel_runtime_pm_disable(struct intel_runtime_pm *rpm)
61307d80572SChris Wilson {
614649c10ffSPankaj Bharadiya struct drm_i915_private *i915 = container_of(rpm,
615649c10ffSPankaj Bharadiya struct drm_i915_private,
616649c10ffSPankaj Bharadiya runtime_pm);
617d5b6c275SDaniele Ceraolo Spurio struct device *kdev = rpm->kdev;
61807d80572SChris Wilson
61907d80572SChris Wilson /* Transfer rpm ownership back to core */
620649c10ffSPankaj Bharadiya drm_WARN(&i915->drm, pm_runtime_get_sync(kdev) < 0,
62107d80572SChris Wilson "Failed to pass rpm ownership back to core\n");
62207d80572SChris Wilson
62307d80572SChris Wilson pm_runtime_dont_use_autosuspend(kdev);
62407d80572SChris Wilson
625d5b6c275SDaniele Ceraolo Spurio if (!rpm->available)
62607d80572SChris Wilson pm_runtime_put(kdev);
62707d80572SChris Wilson }
628bd780f37SChris Wilson
intel_runtime_pm_driver_release(struct intel_runtime_pm * rpm)6293b58a945SJanusz Krzysztofik void intel_runtime_pm_driver_release(struct intel_runtime_pm *rpm)
630bd780f37SChris Wilson {
631649c10ffSPankaj Bharadiya struct drm_i915_private *i915 = container_of(rpm,
632649c10ffSPankaj Bharadiya struct drm_i915_private,
633649c10ffSPankaj Bharadiya runtime_pm);
634dbf99c1fSImre Deak int count = atomic_read(&rpm->wakeref_count);
635bd780f37SChris Wilson
636e66c8dcfSAnshuman Gupta intel_wakeref_auto_fini(&rpm->userfault_wakeref);
637e66c8dcfSAnshuman Gupta
638649c10ffSPankaj Bharadiya drm_WARN(&i915->drm, count,
6394547c255SImre Deak "i915 raw-wakerefs=%d wakelocks=%d on cleanup\n",
6404547c255SImre Deak intel_rpm_raw_wakeref_count(count),
6414547c255SImre Deak intel_rpm_wakelock_count(count));
642bd780f37SChris Wilson
643d5b6c275SDaniele Ceraolo Spurio untrack_all_intel_runtime_pm_wakerefs(rpm);
644bd780f37SChris Wilson }
645bd780f37SChris Wilson
intel_runtime_pm_init_early(struct intel_runtime_pm * rpm)64669c66355SDaniele Ceraolo Spurio void intel_runtime_pm_init_early(struct intel_runtime_pm *rpm)
647bd780f37SChris Wilson {
64869c66355SDaniele Ceraolo Spurio struct drm_i915_private *i915 =
64969c66355SDaniele Ceraolo Spurio container_of(rpm, struct drm_i915_private, runtime_pm);
6508ff5446aSThomas Zimmermann struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
651d5b6c275SDaniele Ceraolo Spurio struct device *kdev = &pdev->dev;
652d5b6c275SDaniele Ceraolo Spurio
653d5b6c275SDaniele Ceraolo Spurio rpm->kdev = kdev;
654d5b6c275SDaniele Ceraolo Spurio rpm->available = HAS_RUNTIME_PM(i915);
655*d3708182SJani Nikula rpm->suspended = false;
656*d3708182SJani Nikula atomic_set(&rpm->wakeref_count, 0);
657d5b6c275SDaniele Ceraolo Spurio
658d5b6c275SDaniele Ceraolo Spurio init_intel_runtime_pm_wakeref(rpm);
659e66c8dcfSAnshuman Gupta INIT_LIST_HEAD(&rpm->lmem_userfault_list);
6601cacd689SAnshuman Gupta spin_lock_init(&rpm->lmem_userfault_lock);
661e66c8dcfSAnshuman Gupta intel_wakeref_auto_init(&rpm->userfault_wakeref, i915);
662bd780f37SChris Wilson }
663