blob: 96ab74f3d101c1b3673324704d4fed6b2ef09c2a [file] [log] [blame]
Daniel Vetter9c065a72014-09-30 10:56:38 +02001/*
2 * Copyright © 2012-2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
25 * Daniel Vetter <daniel.vetter@ffwll.ch>
26 *
27 */
28
29#include <linux/pm_runtime.h>
30#include <linux/vgaarb.h>
31
32#include "i915_drv.h"
33#include "intel_drv.h"
Daniel Vetter9c065a72014-09-30 10:56:38 +020034
Daniel Vettere4e76842014-09-30 10:56:42 +020035/**
36 * DOC: runtime pm
37 *
38 * The i915 driver supports dynamic enabling and disabling of entire hardware
39 * blocks at runtime. This is especially important on the display side where
40 * software is supposed to control many power gates manually on recent hardware,
41 * since on the GT side a lot of the power management is done by the hardware.
42 * But even there some manual control at the device level is required.
43 *
44 * Since i915 supports a diverse set of platforms with a unified codebase and
45 * hardware engineers just love to shuffle functionality around between power
46 * domains there's a sizeable amount of indirection required. This file provides
47 * generic functions to the driver for grabbing and releasing references for
48 * abstract power domains. It then maps those to the actual power wells
49 * present for a given platform.
50 */
51
Suketu Shah5aefb232015-04-16 14:22:10 +053052bool intel_display_power_well_is_enabled(struct drm_i915_private *dev_priv,
Imre Deak438b8dc2017-07-11 23:42:30 +030053 enum i915_power_well_id power_well_id);
Suketu Shah5aefb232015-04-16 14:22:10 +053054
Imre Deak9c8d0b82016-06-13 16:44:34 +030055static struct i915_power_well *
Imre Deak438b8dc2017-07-11 23:42:30 +030056lookup_power_well(struct drm_i915_private *dev_priv,
57 enum i915_power_well_id power_well_id);
Imre Deak9c8d0b82016-06-13 16:44:34 +030058
Daniel Stone9895ad02015-11-20 15:55:33 +000059const char *
60intel_display_power_domain_str(enum intel_display_power_domain domain)
61{
62 switch (domain) {
63 case POWER_DOMAIN_PIPE_A:
64 return "PIPE_A";
65 case POWER_DOMAIN_PIPE_B:
66 return "PIPE_B";
67 case POWER_DOMAIN_PIPE_C:
68 return "PIPE_C";
69 case POWER_DOMAIN_PIPE_A_PANEL_FITTER:
70 return "PIPE_A_PANEL_FITTER";
71 case POWER_DOMAIN_PIPE_B_PANEL_FITTER:
72 return "PIPE_B_PANEL_FITTER";
73 case POWER_DOMAIN_PIPE_C_PANEL_FITTER:
74 return "PIPE_C_PANEL_FITTER";
75 case POWER_DOMAIN_TRANSCODER_A:
76 return "TRANSCODER_A";
77 case POWER_DOMAIN_TRANSCODER_B:
78 return "TRANSCODER_B";
79 case POWER_DOMAIN_TRANSCODER_C:
80 return "TRANSCODER_C";
81 case POWER_DOMAIN_TRANSCODER_EDP:
82 return "TRANSCODER_EDP";
Jani Nikula4d1de972016-03-18 17:05:42 +020083 case POWER_DOMAIN_TRANSCODER_DSI_A:
84 return "TRANSCODER_DSI_A";
85 case POWER_DOMAIN_TRANSCODER_DSI_C:
86 return "TRANSCODER_DSI_C";
Daniel Stone9895ad02015-11-20 15:55:33 +000087 case POWER_DOMAIN_PORT_DDI_A_LANES:
88 return "PORT_DDI_A_LANES";
89 case POWER_DOMAIN_PORT_DDI_B_LANES:
90 return "PORT_DDI_B_LANES";
91 case POWER_DOMAIN_PORT_DDI_C_LANES:
92 return "PORT_DDI_C_LANES";
93 case POWER_DOMAIN_PORT_DDI_D_LANES:
94 return "PORT_DDI_D_LANES";
95 case POWER_DOMAIN_PORT_DDI_E_LANES:
96 return "PORT_DDI_E_LANES";
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +020097 case POWER_DOMAIN_PORT_DDI_A_IO:
98 return "PORT_DDI_A_IO";
99 case POWER_DOMAIN_PORT_DDI_B_IO:
100 return "PORT_DDI_B_IO";
101 case POWER_DOMAIN_PORT_DDI_C_IO:
102 return "PORT_DDI_C_IO";
103 case POWER_DOMAIN_PORT_DDI_D_IO:
104 return "PORT_DDI_D_IO";
105 case POWER_DOMAIN_PORT_DDI_E_IO:
106 return "PORT_DDI_E_IO";
Daniel Stone9895ad02015-11-20 15:55:33 +0000107 case POWER_DOMAIN_PORT_DSI:
108 return "PORT_DSI";
109 case POWER_DOMAIN_PORT_CRT:
110 return "PORT_CRT";
111 case POWER_DOMAIN_PORT_OTHER:
112 return "PORT_OTHER";
113 case POWER_DOMAIN_VGA:
114 return "VGA";
115 case POWER_DOMAIN_AUDIO:
116 return "AUDIO";
117 case POWER_DOMAIN_PLLS:
118 return "PLLS";
119 case POWER_DOMAIN_AUX_A:
120 return "AUX_A";
121 case POWER_DOMAIN_AUX_B:
122 return "AUX_B";
123 case POWER_DOMAIN_AUX_C:
124 return "AUX_C";
125 case POWER_DOMAIN_AUX_D:
126 return "AUX_D";
127 case POWER_DOMAIN_GMBUS:
128 return "GMBUS";
129 case POWER_DOMAIN_INIT:
130 return "INIT";
131 case POWER_DOMAIN_MODESET:
132 return "MODESET";
Tvrtko Ursulinb6876372017-12-05 13:28:54 +0000133 case POWER_DOMAIN_GT_IRQ:
134 return "GT_IRQ";
Daniel Stone9895ad02015-11-20 15:55:33 +0000135 default:
136 MISSING_CASE(domain);
137 return "?";
138 }
139}
140
Damien Lespiaue8ca9322015-07-30 18:20:26 -0300141static void intel_power_well_enable(struct drm_i915_private *dev_priv,
142 struct i915_power_well *power_well)
143{
144 DRM_DEBUG_KMS("enabling %s\n", power_well->name);
145 power_well->ops->enable(dev_priv, power_well);
146 power_well->hw_enabled = true;
147}
148
Damien Lespiaudcddab32015-07-30 18:20:27 -0300149static void intel_power_well_disable(struct drm_i915_private *dev_priv,
150 struct i915_power_well *power_well)
151{
152 DRM_DEBUG_KMS("disabling %s\n", power_well->name);
153 power_well->hw_enabled = false;
154 power_well->ops->disable(dev_priv, power_well);
155}
156
Imre Deakb409ca92016-06-13 16:44:33 +0300157static void intel_power_well_get(struct drm_i915_private *dev_priv,
158 struct i915_power_well *power_well)
159{
160 if (!power_well->count++)
161 intel_power_well_enable(dev_priv, power_well);
162}
163
164static void intel_power_well_put(struct drm_i915_private *dev_priv,
165 struct i915_power_well *power_well)
166{
167 WARN(!power_well->count, "Use count on power well %s is already zero",
168 power_well->name);
169
170 if (!--power_well->count)
171 intel_power_well_disable(dev_priv, power_well);
172}
173
Daniel Vettere4e76842014-09-30 10:56:42 +0200174/**
175 * __intel_display_power_is_enabled - unlocked check for a power domain
176 * @dev_priv: i915 device instance
177 * @domain: power domain to check
178 *
179 * This is the unlocked version of intel_display_power_is_enabled() and should
180 * only be used from error capture and recovery code where deadlocks are
181 * possible.
182 *
183 * Returns:
184 * True when the power domain is enabled, false otherwise.
185 */
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200186bool __intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
187 enum intel_display_power_domain domain)
Daniel Vetter9c065a72014-09-30 10:56:38 +0200188{
Daniel Vetter9c065a72014-09-30 10:56:38 +0200189 struct i915_power_well *power_well;
190 bool is_enabled;
Daniel Vetter9c065a72014-09-30 10:56:38 +0200191
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +0100192 if (dev_priv->runtime_pm.suspended)
Daniel Vetter9c065a72014-09-30 10:56:38 +0200193 return false;
194
Daniel Vetter9c065a72014-09-30 10:56:38 +0200195 is_enabled = true;
196
Imre Deak75ccb2e2017-02-17 17:39:43 +0200197 for_each_power_domain_well_rev(dev_priv, power_well, BIT_ULL(domain)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +0200198 if (power_well->always_on)
199 continue;
200
201 if (!power_well->hw_enabled) {
202 is_enabled = false;
203 break;
204 }
205 }
206
207 return is_enabled;
208}
209
Daniel Vettere4e76842014-09-30 10:56:42 +0200210/**
Damien Lespiauf61ccae2014-11-25 13:45:41 +0000211 * intel_display_power_is_enabled - check for a power domain
Daniel Vettere4e76842014-09-30 10:56:42 +0200212 * @dev_priv: i915 device instance
213 * @domain: power domain to check
214 *
215 * This function can be used to check the hw power domain state. It is mostly
216 * used in hardware state readout functions. Everywhere else code should rely
217 * upon explicit power domain reference counting to ensure that the hardware
218 * block is powered up before accessing it.
219 *
220 * Callers must hold the relevant modesetting locks to ensure that concurrent
221 * threads can't disable the power well while the caller tries to read a few
222 * registers.
223 *
224 * Returns:
225 * True when the power domain is enabled, false otherwise.
226 */
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200227bool intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
228 enum intel_display_power_domain domain)
Daniel Vetter9c065a72014-09-30 10:56:38 +0200229{
230 struct i915_power_domains *power_domains;
231 bool ret;
232
233 power_domains = &dev_priv->power_domains;
234
235 mutex_lock(&power_domains->lock);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200236 ret = __intel_display_power_is_enabled(dev_priv, domain);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200237 mutex_unlock(&power_domains->lock);
238
239 return ret;
240}
241
Daniel Vettere4e76842014-09-30 10:56:42 +0200242/**
243 * intel_display_set_init_power - set the initial power domain state
244 * @dev_priv: i915 device instance
245 * @enable: whether to enable or disable the initial power domain state
246 *
247 * For simplicity our driver load/unload and system suspend/resume code assumes
248 * that all power domains are always enabled. This functions controls the state
249 * of this little hack. While the initial power domain state is enabled runtime
250 * pm is effectively disabled.
251 */
Daniel Vetterd9bc89d92014-09-30 10:56:40 +0200252void intel_display_set_init_power(struct drm_i915_private *dev_priv,
253 bool enable)
254{
255 if (dev_priv->power_domains.init_power_on == enable)
256 return;
257
258 if (enable)
259 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
260 else
261 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
262
263 dev_priv->power_domains.init_power_on = enable;
264}
265
Daniel Vetter9c065a72014-09-30 10:56:38 +0200266/*
267 * Starting with Haswell, we have a "Power Down Well" that can be turned off
268 * when not needed anymore. We have 4 registers that can request the power well
269 * to be enabled, and it will only be disabled if none of the registers is
270 * requesting it to be enabled.
271 */
Imre Deak001bd2c2017-07-12 18:54:13 +0300272static void hsw_power_well_post_enable(struct drm_i915_private *dev_priv,
273 u8 irq_pipe_mask, bool has_vga)
Daniel Vetter9c065a72014-09-30 10:56:38 +0200274{
David Weinehall52a05c32016-08-22 13:32:44 +0300275 struct pci_dev *pdev = dev_priv->drm.pdev;
Daniel Vetter9c065a72014-09-30 10:56:38 +0200276
277 /*
278 * After we re-enable the power well, if we touch VGA register 0x3d5
279 * we'll get unclaimed register interrupts. This stops after we write
280 * anything to the VGA MSR register. The vgacon module uses this
281 * register all the time, so if we unbind our driver and, as a
282 * consequence, bind vgacon, we'll get stuck in an infinite loop at
283 * console_unlock(). So make here we touch the VGA MSR register, making
284 * sure vgacon can keep working normally without triggering interrupts
285 * and error messages.
286 */
Imre Deak001bd2c2017-07-12 18:54:13 +0300287 if (has_vga) {
288 vga_get_uninterruptible(pdev, VGA_RSRC_LEGACY_IO);
289 outb(inb(VGA_MSR_READ), VGA_MSR_WRITE);
290 vga_put(pdev, VGA_RSRC_LEGACY_IO);
291 }
Daniel Vetter9c065a72014-09-30 10:56:38 +0200292
Imre Deak001bd2c2017-07-12 18:54:13 +0300293 if (irq_pipe_mask)
294 gen8_irq_power_well_post_enable(dev_priv, irq_pipe_mask);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200295}
296
Imre Deak001bd2c2017-07-12 18:54:13 +0300297static void hsw_power_well_pre_disable(struct drm_i915_private *dev_priv,
298 u8 irq_pipe_mask)
Ville Syrjäläaae8ba82016-02-19 20:47:30 +0200299{
Imre Deak001bd2c2017-07-12 18:54:13 +0300300 if (irq_pipe_mask)
301 gen8_irq_power_well_pre_disable(dev_priv, irq_pipe_mask);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +0200302}
303
Ville Syrjäläaae8ba82016-02-19 20:47:30 +0200304
Imre Deak76347c02017-07-06 17:40:36 +0300305static void hsw_wait_for_power_well_enable(struct drm_i915_private *dev_priv,
306 struct i915_power_well *power_well)
Imre Deak42d93662017-06-29 18:37:01 +0300307{
Imre Deak438b8dc2017-07-11 23:42:30 +0300308 enum i915_power_well_id id = power_well->id;
Imre Deak42d93662017-06-29 18:37:01 +0300309
310 /* Timeout for PW1:10 us, AUX:not specified, other PWs:20 us. */
311 WARN_ON(intel_wait_for_register(dev_priv,
Imre Deak9c3a16c2017-08-14 18:15:30 +0300312 HSW_PWR_WELL_CTL_DRIVER(id),
Imre Deak1af474f2017-07-06 17:40:34 +0300313 HSW_PWR_WELL_CTL_STATE(id),
314 HSW_PWR_WELL_CTL_STATE(id),
Imre Deak42d93662017-06-29 18:37:01 +0300315 1));
316}
317
Imre Deak76347c02017-07-06 17:40:36 +0300318static u32 hsw_power_well_requesters(struct drm_i915_private *dev_priv,
319 enum i915_power_well_id id)
Imre Deak42d93662017-06-29 18:37:01 +0300320{
Imre Deak1af474f2017-07-06 17:40:34 +0300321 u32 req_mask = HSW_PWR_WELL_CTL_REQ(id);
Imre Deak42d93662017-06-29 18:37:01 +0300322 u32 ret;
323
Imre Deak9c3a16c2017-08-14 18:15:30 +0300324 ret = I915_READ(HSW_PWR_WELL_CTL_BIOS(id)) & req_mask ? 1 : 0;
325 ret |= I915_READ(HSW_PWR_WELL_CTL_DRIVER(id)) & req_mask ? 2 : 0;
326 ret |= I915_READ(HSW_PWR_WELL_CTL_KVMR) & req_mask ? 4 : 0;
327 ret |= I915_READ(HSW_PWR_WELL_CTL_DEBUG(id)) & req_mask ? 8 : 0;
Imre Deak42d93662017-06-29 18:37:01 +0300328
329 return ret;
330}
331
Imre Deak76347c02017-07-06 17:40:36 +0300332static void hsw_wait_for_power_well_disable(struct drm_i915_private *dev_priv,
333 struct i915_power_well *power_well)
Imre Deak42d93662017-06-29 18:37:01 +0300334{
Imre Deak438b8dc2017-07-11 23:42:30 +0300335 enum i915_power_well_id id = power_well->id;
Imre Deak42d93662017-06-29 18:37:01 +0300336 bool disabled;
337 u32 reqs;
338
339 /*
340 * Bspec doesn't require waiting for PWs to get disabled, but still do
341 * this for paranoia. The known cases where a PW will be forced on:
342 * - a KVMR request on any power well via the KVMR request register
343 * - a DMC request on PW1 and MISC_IO power wells via the BIOS and
344 * DEBUG request registers
345 * Skip the wait in case any of the request bits are set and print a
346 * diagnostic message.
347 */
Imre Deak9c3a16c2017-08-14 18:15:30 +0300348 wait_for((disabled = !(I915_READ(HSW_PWR_WELL_CTL_DRIVER(id)) &
Imre Deak1af474f2017-07-06 17:40:34 +0300349 HSW_PWR_WELL_CTL_STATE(id))) ||
Imre Deak76347c02017-07-06 17:40:36 +0300350 (reqs = hsw_power_well_requesters(dev_priv, id)), 1);
Imre Deak42d93662017-06-29 18:37:01 +0300351 if (disabled)
352 return;
353
354 DRM_DEBUG_KMS("%s forced on (bios:%d driver:%d kvmr:%d debug:%d)\n",
355 power_well->name,
356 !!(reqs & 1), !!(reqs & 2), !!(reqs & 4), !!(reqs & 8));
357}
358
Imre Deakb2891eb2017-07-11 23:42:35 +0300359static void gen9_wait_for_power_well_fuses(struct drm_i915_private *dev_priv,
360 enum skl_power_gate pg)
361{
362 /* Timeout 5us for PG#0, for other PGs 1us */
363 WARN_ON(intel_wait_for_register(dev_priv, SKL_FUSE_STATUS,
364 SKL_FUSE_PG_DIST_STATUS(pg),
365 SKL_FUSE_PG_DIST_STATUS(pg), 1));
366}
367
Imre Deakec46d482017-07-06 17:40:33 +0300368static void hsw_power_well_enable(struct drm_i915_private *dev_priv,
369 struct i915_power_well *power_well)
Daniel Vetter9c065a72014-09-30 10:56:38 +0200370{
Imre Deak1af474f2017-07-06 17:40:34 +0300371 enum i915_power_well_id id = power_well->id;
Imre Deakb2891eb2017-07-11 23:42:35 +0300372 bool wait_fuses = power_well->hsw.has_fuses;
Chris Wilson320671f2017-10-02 11:04:16 +0100373 enum skl_power_gate uninitialized_var(pg);
Imre Deak1af474f2017-07-06 17:40:34 +0300374 u32 val;
375
Imre Deakb2891eb2017-07-11 23:42:35 +0300376 if (wait_fuses) {
377 pg = SKL_PW_TO_PG(id);
378 /*
379 * For PW1 we have to wait both for the PW0/PG0 fuse state
380 * before enabling the power well and PW1/PG1's own fuse
381 * state after the enabling. For all other power wells with
382 * fuses we only have to wait for that PW/PG's fuse state
383 * after the enabling.
384 */
385 if (pg == SKL_PG1)
386 gen9_wait_for_power_well_fuses(dev_priv, SKL_PG0);
387 }
388
Imre Deak9c3a16c2017-08-14 18:15:30 +0300389 val = I915_READ(HSW_PWR_WELL_CTL_DRIVER(id));
390 I915_WRITE(HSW_PWR_WELL_CTL_DRIVER(id), val | HSW_PWR_WELL_CTL_REQ(id));
Imre Deak76347c02017-07-06 17:40:36 +0300391 hsw_wait_for_power_well_enable(dev_priv, power_well);
Imre Deak001bd2c2017-07-12 18:54:13 +0300392
Imre Deakb2891eb2017-07-11 23:42:35 +0300393 if (wait_fuses)
394 gen9_wait_for_power_well_fuses(dev_priv, pg);
395
Imre Deak001bd2c2017-07-12 18:54:13 +0300396 hsw_power_well_post_enable(dev_priv, power_well->hsw.irq_pipe_mask,
397 power_well->hsw.has_vga);
Imre Deakec46d482017-07-06 17:40:33 +0300398}
Daniel Vetter9c065a72014-09-30 10:56:38 +0200399
Imre Deakec46d482017-07-06 17:40:33 +0300400static void hsw_power_well_disable(struct drm_i915_private *dev_priv,
401 struct i915_power_well *power_well)
402{
Imre Deak1af474f2017-07-06 17:40:34 +0300403 enum i915_power_well_id id = power_well->id;
404 u32 val;
405
Imre Deak001bd2c2017-07-12 18:54:13 +0300406 hsw_power_well_pre_disable(dev_priv, power_well->hsw.irq_pipe_mask);
407
Imre Deak9c3a16c2017-08-14 18:15:30 +0300408 val = I915_READ(HSW_PWR_WELL_CTL_DRIVER(id));
409 I915_WRITE(HSW_PWR_WELL_CTL_DRIVER(id),
410 val & ~HSW_PWR_WELL_CTL_REQ(id));
Imre Deak76347c02017-07-06 17:40:36 +0300411 hsw_wait_for_power_well_disable(dev_priv, power_well);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200412}
413
Imre Deakd42539b2017-07-06 17:40:39 +0300414/*
415 * We should only use the power well if we explicitly asked the hardware to
416 * enable it, so check if it's enabled and also check if we've requested it to
417 * be enabled.
418 */
419static bool hsw_power_well_enabled(struct drm_i915_private *dev_priv,
420 struct i915_power_well *power_well)
421{
422 enum i915_power_well_id id = power_well->id;
423 u32 mask = HSW_PWR_WELL_CTL_REQ(id) | HSW_PWR_WELL_CTL_STATE(id);
424
Imre Deak9c3a16c2017-08-14 18:15:30 +0300425 return (I915_READ(HSW_PWR_WELL_CTL_DRIVER(id)) & mask) == mask;
Imre Deakd42539b2017-07-06 17:40:39 +0300426}
427
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530428static void assert_can_enable_dc9(struct drm_i915_private *dev_priv)
429{
Imre Deak9c3a16c2017-08-14 18:15:30 +0300430 enum i915_power_well_id id = SKL_DISP_PW_2;
431
Imre Deakbfcdabe2016-04-01 16:02:37 +0300432 WARN_ONCE((I915_READ(DC_STATE_EN) & DC_STATE_EN_DC9),
433 "DC9 already programmed to be enabled.\n");
434 WARN_ONCE(I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC5,
435 "DC5 still not disabled to enable DC9.\n");
Imre Deak9c3a16c2017-08-14 18:15:30 +0300436 WARN_ONCE(I915_READ(HSW_PWR_WELL_CTL_DRIVER(id)) &
437 HSW_PWR_WELL_CTL_REQ(id),
Imre Deake8a3a2a2017-06-29 18:37:00 +0300438 "Power well 2 on.\n");
Imre Deakbfcdabe2016-04-01 16:02:37 +0300439 WARN_ONCE(intel_irqs_enabled(dev_priv),
440 "Interrupts not disabled yet.\n");
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530441
442 /*
443 * TODO: check for the following to verify the conditions to enter DC9
444 * state are satisfied:
445 * 1] Check relevant display engine registers to verify if mode set
446 * disable sequence was followed.
447 * 2] Check if display uninitialize sequence is initialized.
448 */
449}
450
451static void assert_can_disable_dc9(struct drm_i915_private *dev_priv)
452{
Imre Deakbfcdabe2016-04-01 16:02:37 +0300453 WARN_ONCE(intel_irqs_enabled(dev_priv),
454 "Interrupts not disabled yet.\n");
455 WARN_ONCE(I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC5,
456 "DC5 still not disabled.\n");
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530457
458 /*
459 * TODO: check for the following to verify DC9 state was indeed
460 * entered before programming to disable it:
461 * 1] Check relevant display engine registers to verify if mode
462 * set disable sequence was followed.
463 * 2] Check if display uninitialize sequence is initialized.
464 */
465}
466
Mika Kuoppala779cb5d2016-02-18 17:58:09 +0200467static void gen9_write_dc_state(struct drm_i915_private *dev_priv,
468 u32 state)
469{
470 int rewrites = 0;
471 int rereads = 0;
472 u32 v;
473
474 I915_WRITE(DC_STATE_EN, state);
475
476 /* It has been observed that disabling the dc6 state sometimes
477 * doesn't stick and dmc keeps returning old value. Make sure
478 * the write really sticks enough times and also force rewrite until
479 * we are confident that state is exactly what we want.
480 */
481 do {
482 v = I915_READ(DC_STATE_EN);
483
484 if (v != state) {
485 I915_WRITE(DC_STATE_EN, state);
486 rewrites++;
487 rereads = 0;
488 } else if (rereads++ > 5) {
489 break;
490 }
491
492 } while (rewrites < 100);
493
494 if (v != state)
495 DRM_ERROR("Writing dc state to 0x%x failed, now 0x%x\n",
496 state, v);
497
498 /* Most of the times we need one retry, avoid spam */
499 if (rewrites > 1)
500 DRM_DEBUG_KMS("Rewrote dc state to 0x%x %d times\n",
501 state, rewrites);
502}
503
Imre Deakda2f41d2016-04-20 20:27:56 +0300504static u32 gen9_dc_mask(struct drm_i915_private *dev_priv)
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530505{
Imre Deakda2f41d2016-04-20 20:27:56 +0300506 u32 mask;
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530507
Imre Deak13ae3a02015-11-04 19:24:16 +0200508 mask = DC_STATE_EN_UPTO_DC5;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200509 if (IS_GEN9_LP(dev_priv))
Imre Deak13ae3a02015-11-04 19:24:16 +0200510 mask |= DC_STATE_EN_DC9;
511 else
512 mask |= DC_STATE_EN_UPTO_DC6;
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530513
Imre Deakda2f41d2016-04-20 20:27:56 +0300514 return mask;
515}
516
517void gen9_sanitize_dc_state(struct drm_i915_private *dev_priv)
518{
519 u32 val;
520
521 val = I915_READ(DC_STATE_EN) & gen9_dc_mask(dev_priv);
522
523 DRM_DEBUG_KMS("Resetting DC state tracking from %02x to %02x\n",
524 dev_priv->csr.dc_state, val);
525 dev_priv->csr.dc_state = val;
526}
527
528static void gen9_set_dc_state(struct drm_i915_private *dev_priv, uint32_t state)
529{
530 uint32_t val;
531 uint32_t mask;
532
Imre Deaka37baf32016-02-29 22:49:03 +0200533 if (WARN_ON_ONCE(state & ~dev_priv->csr.allowed_dc_mask))
534 state &= dev_priv->csr.allowed_dc_mask;
Patrik Jakobsson443646c2015-11-16 15:01:06 +0100535
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530536 val = I915_READ(DC_STATE_EN);
Imre Deakda2f41d2016-04-20 20:27:56 +0300537 mask = gen9_dc_mask(dev_priv);
Imre Deak13ae3a02015-11-04 19:24:16 +0200538 DRM_DEBUG_KMS("Setting DC state from %02x to %02x\n",
539 val & mask, state);
Patrik Jakobsson832dba82016-02-18 17:21:11 +0200540
541 /* Check if DMC is ignoring our DC state requests */
542 if ((val & mask) != dev_priv->csr.dc_state)
543 DRM_ERROR("DC state mismatch (0x%x -> 0x%x)\n",
544 dev_priv->csr.dc_state, val & mask);
545
Imre Deak13ae3a02015-11-04 19:24:16 +0200546 val &= ~mask;
547 val |= state;
Mika Kuoppala779cb5d2016-02-18 17:58:09 +0200548
549 gen9_write_dc_state(dev_priv, val);
Patrik Jakobsson832dba82016-02-18 17:21:11 +0200550
551 dev_priv->csr.dc_state = val & mask;
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530552}
553
Imre Deak13ae3a02015-11-04 19:24:16 +0200554void bxt_enable_dc9(struct drm_i915_private *dev_priv)
555{
556 assert_can_enable_dc9(dev_priv);
557
558 DRM_DEBUG_KMS("Enabling DC9\n");
559
Imre Deak78597992016-06-16 16:37:20 +0300560 intel_power_sequencer_reset(dev_priv);
Imre Deak13ae3a02015-11-04 19:24:16 +0200561 gen9_set_dc_state(dev_priv, DC_STATE_EN_DC9);
562}
563
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530564void bxt_disable_dc9(struct drm_i915_private *dev_priv)
565{
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530566 assert_can_disable_dc9(dev_priv);
567
568 DRM_DEBUG_KMS("Disabling DC9\n");
569
Imre Deak13ae3a02015-11-04 19:24:16 +0200570 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
Imre Deak8090ba82016-08-10 14:07:33 +0300571
572 intel_pps_unlock_regs_wa(dev_priv);
A.Sunil Kamath664326f2014-11-24 13:37:44 +0530573}
574
Daniel Vetteraf5fead2015-10-28 23:58:57 +0200575static void assert_csr_loaded(struct drm_i915_private *dev_priv)
576{
577 WARN_ONCE(!I915_READ(CSR_PROGRAM(0)),
578 "CSR program storage start is NULL\n");
579 WARN_ONCE(!I915_READ(CSR_SSP_BASE), "CSR SSP Base Not fine\n");
580 WARN_ONCE(!I915_READ(CSR_HTP_SKL), "CSR HTP Not fine\n");
581}
582
Suketu Shah5aefb232015-04-16 14:22:10 +0530583static void assert_can_enable_dc5(struct drm_i915_private *dev_priv)
Suketu Shahdc174302015-04-17 19:46:16 +0530584{
Suketu Shah5aefb232015-04-16 14:22:10 +0530585 bool pg2_enabled = intel_display_power_well_is_enabled(dev_priv,
586 SKL_DISP_PW_2);
587
Jesse Barnes6ff8ab02015-09-10 08:20:28 -0700588 WARN_ONCE(pg2_enabled, "PG2 not disabled to enable DC5.\n");
Suketu Shah5aefb232015-04-16 14:22:10 +0530589
Jesse Barnes6ff8ab02015-09-10 08:20:28 -0700590 WARN_ONCE((I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC5),
591 "DC5 already programmed to be enabled.\n");
Imre Deakc9b88462015-12-15 20:10:34 +0200592 assert_rpm_wakelock_held(dev_priv);
Suketu Shah5aefb232015-04-16 14:22:10 +0530593
594 assert_csr_loaded(dev_priv);
595}
596
Imre Deakf62c79b2016-04-20 20:27:57 +0300597void gen9_enable_dc5(struct drm_i915_private *dev_priv)
Suketu Shah5aefb232015-04-16 14:22:10 +0530598{
Suketu Shah5aefb232015-04-16 14:22:10 +0530599 assert_can_enable_dc5(dev_priv);
A.Sunil Kamath6b457d32015-04-16 14:22:09 +0530600
601 DRM_DEBUG_KMS("Enabling DC5\n");
602
Imre Deak13ae3a02015-11-04 19:24:16 +0200603 gen9_set_dc_state(dev_priv, DC_STATE_EN_UPTO_DC5);
Suketu Shahdc174302015-04-17 19:46:16 +0530604}
605
Suketu Shah93c7cb62015-04-16 14:22:13 +0530606static void assert_can_enable_dc6(struct drm_i915_private *dev_priv)
Suketu Shahf75a1982015-04-16 14:22:11 +0530607{
Jesse Barnes6ff8ab02015-09-10 08:20:28 -0700608 WARN_ONCE(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
609 "Backlight is not disabled.\n");
610 WARN_ONCE((I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC6),
611 "DC6 already programmed to be enabled.\n");
Suketu Shah93c7cb62015-04-16 14:22:13 +0530612
613 assert_csr_loaded(dev_priv);
614}
615
Animesh Manna0a9d2be2015-09-29 11:01:59 +0530616void skl_enable_dc6(struct drm_i915_private *dev_priv)
Suketu Shah93c7cb62015-04-16 14:22:13 +0530617{
Suketu Shah93c7cb62015-04-16 14:22:13 +0530618 assert_can_enable_dc6(dev_priv);
A.Sunil Kamath74b4f372015-04-16 14:22:12 +0530619
620 DRM_DEBUG_KMS("Enabling DC6\n");
621
Imre Deak13ae3a02015-11-04 19:24:16 +0200622 gen9_set_dc_state(dev_priv, DC_STATE_EN_UPTO_DC6);
623
Suketu Shahf75a1982015-04-16 14:22:11 +0530624}
625
Animesh Manna0a9d2be2015-09-29 11:01:59 +0530626void skl_disable_dc6(struct drm_i915_private *dev_priv)
Suketu Shahf75a1982015-04-16 14:22:11 +0530627{
A.Sunil Kamath74b4f372015-04-16 14:22:12 +0530628 DRM_DEBUG_KMS("Disabling DC6\n");
629
Imre Deak13ae3a02015-11-04 19:24:16 +0200630 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
Suketu Shahf75a1982015-04-16 14:22:11 +0530631}
632
Daniel Vetter9c065a72014-09-30 10:56:38 +0200633static void hsw_power_well_sync_hw(struct drm_i915_private *dev_priv,
634 struct i915_power_well *power_well)
635{
Imre Deak1af474f2017-07-06 17:40:34 +0300636 enum i915_power_well_id id = power_well->id;
637 u32 mask = HSW_PWR_WELL_CTL_REQ(id);
Imre Deak9c3a16c2017-08-14 18:15:30 +0300638 u32 bios_req = I915_READ(HSW_PWR_WELL_CTL_BIOS(id));
Imre Deak1af474f2017-07-06 17:40:34 +0300639
Imre Deak16e84912017-02-17 17:39:45 +0200640 /* Take over the request bit if set by BIOS. */
Imre Deak1af474f2017-07-06 17:40:34 +0300641 if (bios_req & mask) {
Imre Deak9c3a16c2017-08-14 18:15:30 +0300642 u32 drv_req = I915_READ(HSW_PWR_WELL_CTL_DRIVER(id));
Imre Deak1af474f2017-07-06 17:40:34 +0300643
644 if (!(drv_req & mask))
Imre Deak9c3a16c2017-08-14 18:15:30 +0300645 I915_WRITE(HSW_PWR_WELL_CTL_DRIVER(id), drv_req | mask);
646 I915_WRITE(HSW_PWR_WELL_CTL_BIOS(id), bios_req & ~mask);
Imre Deak16e84912017-02-17 17:39:45 +0200647 }
Daniel Vetter9c065a72014-09-30 10:56:38 +0200648}
649
Imre Deak9c8d0b82016-06-13 16:44:34 +0300650static void bxt_dpio_cmn_power_well_enable(struct drm_i915_private *dev_priv,
651 struct i915_power_well *power_well)
652{
Imre Deakb5565a22017-07-06 17:40:29 +0300653 bxt_ddi_phy_init(dev_priv, power_well->bxt.phy);
Imre Deak9c8d0b82016-06-13 16:44:34 +0300654}
655
656static void bxt_dpio_cmn_power_well_disable(struct drm_i915_private *dev_priv,
657 struct i915_power_well *power_well)
658{
Imre Deakb5565a22017-07-06 17:40:29 +0300659 bxt_ddi_phy_uninit(dev_priv, power_well->bxt.phy);
Imre Deak9c8d0b82016-06-13 16:44:34 +0300660}
661
662static bool bxt_dpio_cmn_power_well_enabled(struct drm_i915_private *dev_priv,
663 struct i915_power_well *power_well)
664{
Imre Deakb5565a22017-07-06 17:40:29 +0300665 return bxt_ddi_phy_is_enabled(dev_priv, power_well->bxt.phy);
Imre Deak9c8d0b82016-06-13 16:44:34 +0300666}
667
Imre Deak9c8d0b82016-06-13 16:44:34 +0300668static void bxt_verify_ddi_phy_power_wells(struct drm_i915_private *dev_priv)
669{
670 struct i915_power_well *power_well;
671
672 power_well = lookup_power_well(dev_priv, BXT_DPIO_CMN_A);
673 if (power_well->count > 0)
Imre Deakb5565a22017-07-06 17:40:29 +0300674 bxt_ddi_phy_verify_state(dev_priv, power_well->bxt.phy);
Imre Deak9c8d0b82016-06-13 16:44:34 +0300675
676 power_well = lookup_power_well(dev_priv, BXT_DPIO_CMN_BC);
677 if (power_well->count > 0)
Imre Deakb5565a22017-07-06 17:40:29 +0300678 bxt_ddi_phy_verify_state(dev_priv, power_well->bxt.phy);
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +0200679
680 if (IS_GEMINILAKE(dev_priv)) {
681 power_well = lookup_power_well(dev_priv, GLK_DPIO_CMN_C);
682 if (power_well->count > 0)
Imre Deakb5565a22017-07-06 17:40:29 +0300683 bxt_ddi_phy_verify_state(dev_priv, power_well->bxt.phy);
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +0200684 }
Imre Deak9c8d0b82016-06-13 16:44:34 +0300685}
686
Patrik Jakobsson9f836f92015-11-16 16:20:01 +0100687static bool gen9_dc_off_power_well_enabled(struct drm_i915_private *dev_priv,
688 struct i915_power_well *power_well)
689{
690 return (I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC5_DC6_MASK) == 0;
691}
692
Ville Syrjälä18a80672016-05-16 16:59:40 +0300693static void gen9_assert_dbuf_enabled(struct drm_i915_private *dev_priv)
694{
695 u32 tmp = I915_READ(DBUF_CTL);
696
697 WARN((tmp & (DBUF_POWER_STATE | DBUF_POWER_REQUEST)) !=
698 (DBUF_POWER_STATE | DBUF_POWER_REQUEST),
699 "Unexpected DBuf power power state (0x%08x)\n", tmp);
700}
701
Patrik Jakobsson9f836f92015-11-16 16:20:01 +0100702static void gen9_dc_off_power_well_enable(struct drm_i915_private *dev_priv,
703 struct i915_power_well *power_well)
704{
Ville Syrjälä49cd97a2017-02-07 20:33:45 +0200705 struct intel_cdclk_state cdclk_state = {};
706
Imre Deak5b773eb2016-02-29 22:49:05 +0200707 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
Imre Deakadc7f042016-04-04 17:27:10 +0300708
Ville Syrjälä49cd97a2017-02-07 20:33:45 +0200709 dev_priv->display.get_cdclk(dev_priv, &cdclk_state);
Ville Syrjälä64600bd2017-10-24 12:52:08 +0300710 /* Can't read out voltage_level so can't use intel_cdclk_changed() */
711 WARN_ON(intel_cdclk_needs_modeset(&dev_priv->cdclk.hw, &cdclk_state));
Ville Syrjälä342be922016-05-13 23:41:39 +0300712
Ville Syrjälä18a80672016-05-16 16:59:40 +0300713 gen9_assert_dbuf_enabled(dev_priv);
714
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200715 if (IS_GEN9_LP(dev_priv))
Imre Deak9c8d0b82016-06-13 16:44:34 +0300716 bxt_verify_ddi_phy_power_wells(dev_priv);
Patrik Jakobsson9f836f92015-11-16 16:20:01 +0100717}
718
719static void gen9_dc_off_power_well_disable(struct drm_i915_private *dev_priv,
720 struct i915_power_well *power_well)
721{
Imre Deakf74ed082016-04-18 14:48:21 +0300722 if (!dev_priv->csr.dmc_payload)
723 return;
724
Imre Deaka37baf32016-02-29 22:49:03 +0200725 if (dev_priv->csr.allowed_dc_mask & DC_STATE_EN_UPTO_DC6)
Patrik Jakobsson9f836f92015-11-16 16:20:01 +0100726 skl_enable_dc6(dev_priv);
Imre Deaka37baf32016-02-29 22:49:03 +0200727 else if (dev_priv->csr.allowed_dc_mask & DC_STATE_EN_UPTO_DC5)
Patrik Jakobsson9f836f92015-11-16 16:20:01 +0100728 gen9_enable_dc5(dev_priv);
729}
730
Imre Deak3c1b38e2017-02-17 17:39:42 +0200731static void i9xx_power_well_sync_hw_noop(struct drm_i915_private *dev_priv,
732 struct i915_power_well *power_well)
Patrik Jakobsson9f836f92015-11-16 16:20:01 +0100733{
Patrik Jakobsson9f836f92015-11-16 16:20:01 +0100734}
735
Daniel Vetter9c065a72014-09-30 10:56:38 +0200736static void i9xx_always_on_power_well_noop(struct drm_i915_private *dev_priv,
737 struct i915_power_well *power_well)
738{
739}
740
741static bool i9xx_always_on_power_well_enabled(struct drm_i915_private *dev_priv,
742 struct i915_power_well *power_well)
743{
744 return true;
745}
746
Ville Syrjälä2ee0da12017-06-01 17:36:16 +0300747static void i830_pipes_power_well_enable(struct drm_i915_private *dev_priv,
748 struct i915_power_well *power_well)
749{
750 if ((I915_READ(PIPECONF(PIPE_A)) & PIPECONF_ENABLE) == 0)
751 i830_enable_pipe(dev_priv, PIPE_A);
752 if ((I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE) == 0)
753 i830_enable_pipe(dev_priv, PIPE_B);
754}
755
756static void i830_pipes_power_well_disable(struct drm_i915_private *dev_priv,
757 struct i915_power_well *power_well)
758{
759 i830_disable_pipe(dev_priv, PIPE_B);
760 i830_disable_pipe(dev_priv, PIPE_A);
761}
762
763static bool i830_pipes_power_well_enabled(struct drm_i915_private *dev_priv,
764 struct i915_power_well *power_well)
765{
766 return I915_READ(PIPECONF(PIPE_A)) & PIPECONF_ENABLE &&
767 I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE;
768}
769
770static void i830_pipes_power_well_sync_hw(struct drm_i915_private *dev_priv,
771 struct i915_power_well *power_well)
772{
773 if (power_well->count > 0)
774 i830_pipes_power_well_enable(dev_priv, power_well);
775 else
776 i830_pipes_power_well_disable(dev_priv, power_well);
777}
778
Daniel Vetter9c065a72014-09-30 10:56:38 +0200779static void vlv_set_power_well(struct drm_i915_private *dev_priv,
780 struct i915_power_well *power_well, bool enable)
781{
Imre Deak438b8dc2017-07-11 23:42:30 +0300782 enum i915_power_well_id power_well_id = power_well->id;
Daniel Vetter9c065a72014-09-30 10:56:38 +0200783 u32 mask;
784 u32 state;
785 u32 ctrl;
786
787 mask = PUNIT_PWRGT_MASK(power_well_id);
788 state = enable ? PUNIT_PWRGT_PWR_ON(power_well_id) :
789 PUNIT_PWRGT_PWR_GATE(power_well_id);
790
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100791 mutex_lock(&dev_priv->pcu_lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200792
793#define COND \
794 ((vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_STATUS) & mask) == state)
795
796 if (COND)
797 goto out;
798
799 ctrl = vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_CTRL);
800 ctrl &= ~mask;
801 ctrl |= state;
802 vlv_punit_write(dev_priv, PUNIT_REG_PWRGT_CTRL, ctrl);
803
804 if (wait_for(COND, 100))
Masanari Iida7e35ab82015-05-10 01:00:23 +0900805 DRM_ERROR("timeout setting power well state %08x (%08x)\n",
Daniel Vetter9c065a72014-09-30 10:56:38 +0200806 state,
807 vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_CTRL));
808
809#undef COND
810
811out:
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100812 mutex_unlock(&dev_priv->pcu_lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200813}
814
Daniel Vetter9c065a72014-09-30 10:56:38 +0200815static void vlv_power_well_enable(struct drm_i915_private *dev_priv,
816 struct i915_power_well *power_well)
817{
818 vlv_set_power_well(dev_priv, power_well, true);
819}
820
821static void vlv_power_well_disable(struct drm_i915_private *dev_priv,
822 struct i915_power_well *power_well)
823{
824 vlv_set_power_well(dev_priv, power_well, false);
825}
826
827static bool vlv_power_well_enabled(struct drm_i915_private *dev_priv,
828 struct i915_power_well *power_well)
829{
Imre Deak438b8dc2017-07-11 23:42:30 +0300830 enum i915_power_well_id power_well_id = power_well->id;
Daniel Vetter9c065a72014-09-30 10:56:38 +0200831 bool enabled = false;
832 u32 mask;
833 u32 state;
834 u32 ctrl;
835
836 mask = PUNIT_PWRGT_MASK(power_well_id);
837 ctrl = PUNIT_PWRGT_PWR_ON(power_well_id);
838
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100839 mutex_lock(&dev_priv->pcu_lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200840
841 state = vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_STATUS) & mask;
842 /*
843 * We only ever set the power-on and power-gate states, anything
844 * else is unexpected.
845 */
846 WARN_ON(state != PUNIT_PWRGT_PWR_ON(power_well_id) &&
847 state != PUNIT_PWRGT_PWR_GATE(power_well_id));
848 if (state == ctrl)
849 enabled = true;
850
851 /*
852 * A transient state at this point would mean some unexpected party
853 * is poking at the power controls too.
854 */
855 ctrl = vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_CTRL) & mask;
856 WARN_ON(ctrl != state);
857
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100858 mutex_unlock(&dev_priv->pcu_lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200859
860 return enabled;
861}
862
Ville Syrjälä766078d2016-04-11 16:56:30 +0300863static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
864{
Hans de Goede721d4842016-12-02 15:29:04 +0100865 u32 val;
866
867 /*
868 * On driver load, a pipe may be active and driving a DSI display.
869 * Preserve DPOUNIT_CLOCK_GATE_DISABLE to avoid the pipe getting stuck
870 * (and never recovering) in this case. intel_dsi_post_disable() will
871 * clear it when we turn off the display.
872 */
873 val = I915_READ(DSPCLK_GATE_D);
874 val &= DPOUNIT_CLOCK_GATE_DISABLE;
875 val |= VRHUNIT_CLOCK_GATE_DISABLE;
876 I915_WRITE(DSPCLK_GATE_D, val);
Ville Syrjälä766078d2016-04-11 16:56:30 +0300877
878 /*
879 * Disable trickle feed and enable pnd deadline calculation
880 */
881 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
882 I915_WRITE(CBR1_VLV, 0);
Ville Syrjälä19ab4ed2016-04-27 17:43:22 +0300883
884 WARN_ON(dev_priv->rawclk_freq == 0);
885
886 I915_WRITE(RAWCLK_FREQ_VLV,
887 DIV_ROUND_CLOSEST(dev_priv->rawclk_freq, 1000));
Ville Syrjälä766078d2016-04-11 16:56:30 +0300888}
889
Ville Syrjälä2be7d542015-06-29 15:25:51 +0300890static void vlv_display_power_well_init(struct drm_i915_private *dev_priv)
Daniel Vetter9c065a72014-09-30 10:56:38 +0200891{
Lyude9504a892016-06-21 17:03:42 -0400892 struct intel_encoder *encoder;
Ville Syrjälä5a8fbb72015-06-29 15:25:53 +0300893 enum pipe pipe;
894
895 /*
896 * Enable the CRI clock source so we can get at the
897 * display and the reference clock for VGA
898 * hotplug / manual detection. Supposedly DSI also
899 * needs the ref clock up and running.
900 *
901 * CHV DPLL B/C have some issues if VGA mode is enabled.
902 */
Tvrtko Ursulin801388c2016-11-16 08:55:44 +0000903 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä5a8fbb72015-06-29 15:25:53 +0300904 u32 val = I915_READ(DPLL(pipe));
905
906 val |= DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
907 if (pipe != PIPE_A)
908 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
909
910 I915_WRITE(DPLL(pipe), val);
911 }
Daniel Vetter9c065a72014-09-30 10:56:38 +0200912
Ville Syrjälä766078d2016-04-11 16:56:30 +0300913 vlv_init_display_clock_gating(dev_priv);
914
Daniel Vetter9c065a72014-09-30 10:56:38 +0200915 spin_lock_irq(&dev_priv->irq_lock);
916 valleyview_enable_display_irqs(dev_priv);
917 spin_unlock_irq(&dev_priv->irq_lock);
918
919 /*
920 * During driver initialization/resume we can avoid restoring the
921 * part of the HW/SW state that will be inited anyway explicitly.
922 */
923 if (dev_priv->power_domains.initializing)
924 return;
925
Daniel Vetterb9632912014-09-30 10:56:44 +0200926 intel_hpd_init(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200927
Lyude9504a892016-06-21 17:03:42 -0400928 /* Re-enable the ADPA, if we have one */
929 for_each_intel_encoder(&dev_priv->drm, encoder) {
930 if (encoder->type == INTEL_OUTPUT_ANALOG)
931 intel_crt_reset(&encoder->base);
932 }
933
Tvrtko Ursulin29b74b72016-11-16 08:55:39 +0000934 i915_redisable_vga_power_on(dev_priv);
Imre Deak8090ba82016-08-10 14:07:33 +0300935
936 intel_pps_unlock_regs_wa(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200937}
938
Ville Syrjälä2be7d542015-06-29 15:25:51 +0300939static void vlv_display_power_well_deinit(struct drm_i915_private *dev_priv)
940{
941 spin_lock_irq(&dev_priv->irq_lock);
942 valleyview_disable_display_irqs(dev_priv);
943 spin_unlock_irq(&dev_priv->irq_lock);
944
Ville Syrjälä2230fde2016-02-19 18:41:52 +0200945 /* make sure we're done processing display irqs */
Chris Wilson91c8a322016-07-05 10:40:23 +0100946 synchronize_irq(dev_priv->drm.irq);
Ville Syrjälä2230fde2016-02-19 18:41:52 +0200947
Imre Deak78597992016-06-16 16:37:20 +0300948 intel_power_sequencer_reset(dev_priv);
Lyude19625e82016-06-21 17:03:44 -0400949
Lyudeb64b5402016-10-26 12:36:09 -0400950 /* Prevent us from re-enabling polling on accident in late suspend */
951 if (!dev_priv->drm.dev->power.is_suspended)
952 intel_hpd_poll_init(dev_priv);
Ville Syrjälä2be7d542015-06-29 15:25:51 +0300953}
954
955static void vlv_display_power_well_enable(struct drm_i915_private *dev_priv,
956 struct i915_power_well *power_well)
957{
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +0300958 WARN_ON_ONCE(power_well->id != PUNIT_POWER_WELL_DISP2D);
Ville Syrjälä2be7d542015-06-29 15:25:51 +0300959
960 vlv_set_power_well(dev_priv, power_well, true);
961
962 vlv_display_power_well_init(dev_priv);
963}
964
Daniel Vetter9c065a72014-09-30 10:56:38 +0200965static void vlv_display_power_well_disable(struct drm_i915_private *dev_priv,
966 struct i915_power_well *power_well)
967{
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +0300968 WARN_ON_ONCE(power_well->id != PUNIT_POWER_WELL_DISP2D);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200969
Ville Syrjälä2be7d542015-06-29 15:25:51 +0300970 vlv_display_power_well_deinit(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200971
972 vlv_set_power_well(dev_priv, power_well, false);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200973}
974
975static void vlv_dpio_cmn_power_well_enable(struct drm_i915_private *dev_priv,
976 struct i915_power_well *power_well)
977{
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +0300978 WARN_ON_ONCE(power_well->id != PUNIT_POWER_WELL_DPIO_CMN_BC);
Daniel Vetter9c065a72014-09-30 10:56:38 +0200979
Ville Syrjälä5a8fbb72015-06-29 15:25:53 +0300980 /* since ref/cri clock was enabled */
Daniel Vetter9c065a72014-09-30 10:56:38 +0200981 udelay(1); /* >10ns for cmnreset, >0ns for sidereset */
982
983 vlv_set_power_well(dev_priv, power_well, true);
984
985 /*
986 * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
987 * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
988 * a. GUnit 0x2110 bit[0] set to 1 (def 0)
989 * b. The other bits such as sfr settings / modesel may all
990 * be set to 0.
991 *
992 * This should only be done on init and resume from S3 with
993 * both PLLs disabled, or we risk losing DPIO and PLL
994 * synchronization.
995 */
996 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
997}
998
999static void vlv_dpio_cmn_power_well_disable(struct drm_i915_private *dev_priv,
1000 struct i915_power_well *power_well)
1001{
1002 enum pipe pipe;
1003
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001004 WARN_ON_ONCE(power_well->id != PUNIT_POWER_WELL_DPIO_CMN_BC);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001005
1006 for_each_pipe(dev_priv, pipe)
1007 assert_pll_disabled(dev_priv, pipe);
1008
1009 /* Assert common reset */
1010 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) & ~DPIO_CMNRST);
1011
1012 vlv_set_power_well(dev_priv, power_well, false);
1013}
1014
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001015#define POWER_DOMAIN_MASK (GENMASK_ULL(POWER_DOMAIN_NUM - 1, 0))
Ville Syrjälä30142272015-07-08 23:46:01 +03001016
Imre Deak438b8dc2017-07-11 23:42:30 +03001017static struct i915_power_well *
1018lookup_power_well(struct drm_i915_private *dev_priv,
1019 enum i915_power_well_id power_well_id)
Ville Syrjälä30142272015-07-08 23:46:01 +03001020{
1021 struct i915_power_domains *power_domains = &dev_priv->power_domains;
Ville Syrjälä30142272015-07-08 23:46:01 +03001022 int i;
1023
Imre Deakfc17f222015-11-04 19:24:11 +02001024 for (i = 0; i < power_domains->power_well_count; i++) {
1025 struct i915_power_well *power_well;
1026
1027 power_well = &power_domains->power_wells[i];
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001028 if (power_well->id == power_well_id)
Ville Syrjälä30142272015-07-08 23:46:01 +03001029 return power_well;
1030 }
1031
1032 return NULL;
1033}
1034
1035#define BITS_SET(val, bits) (((val) & (bits)) == (bits))
1036
1037static void assert_chv_phy_status(struct drm_i915_private *dev_priv)
1038{
1039 struct i915_power_well *cmn_bc =
1040 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC);
1041 struct i915_power_well *cmn_d =
1042 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_D);
1043 u32 phy_control = dev_priv->chv_phy_control;
1044 u32 phy_status = 0;
Ville Syrjälä3be60de2015-09-08 18:05:45 +03001045 u32 phy_status_mask = 0xffffffff;
Ville Syrjälä30142272015-07-08 23:46:01 +03001046
Ville Syrjälä3be60de2015-09-08 18:05:45 +03001047 /*
1048 * The BIOS can leave the PHY is some weird state
1049 * where it doesn't fully power down some parts.
1050 * Disable the asserts until the PHY has been fully
1051 * reset (ie. the power well has been disabled at
1052 * least once).
1053 */
1054 if (!dev_priv->chv_phy_assert[DPIO_PHY0])
1055 phy_status_mask &= ~(PHY_STATUS_CMN_LDO(DPIO_PHY0, DPIO_CH0) |
1056 PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH0, 0) |
1057 PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH0, 1) |
1058 PHY_STATUS_CMN_LDO(DPIO_PHY0, DPIO_CH1) |
1059 PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH1, 0) |
1060 PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH1, 1));
1061
1062 if (!dev_priv->chv_phy_assert[DPIO_PHY1])
1063 phy_status_mask &= ~(PHY_STATUS_CMN_LDO(DPIO_PHY1, DPIO_CH0) |
1064 PHY_STATUS_SPLINE_LDO(DPIO_PHY1, DPIO_CH0, 0) |
1065 PHY_STATUS_SPLINE_LDO(DPIO_PHY1, DPIO_CH0, 1));
1066
Ville Syrjälä30142272015-07-08 23:46:01 +03001067 if (cmn_bc->ops->is_enabled(dev_priv, cmn_bc)) {
1068 phy_status |= PHY_POWERGOOD(DPIO_PHY0);
1069
1070 /* this assumes override is only used to enable lanes */
1071 if ((phy_control & PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH0)) == 0)
1072 phy_control |= PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH0);
1073
1074 if ((phy_control & PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH1)) == 0)
1075 phy_control |= PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH1);
1076
1077 /* CL1 is on whenever anything is on in either channel */
1078 if (BITS_SET(phy_control,
1079 PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH0) |
1080 PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH1)))
1081 phy_status |= PHY_STATUS_CMN_LDO(DPIO_PHY0, DPIO_CH0);
1082
1083 /*
1084 * The DPLLB check accounts for the pipe B + port A usage
1085 * with CL2 powered up but all the lanes in the second channel
1086 * powered down.
1087 */
1088 if (BITS_SET(phy_control,
1089 PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH1)) &&
1090 (I915_READ(DPLL(PIPE_B)) & DPLL_VCO_ENABLE) == 0)
1091 phy_status |= PHY_STATUS_CMN_LDO(DPIO_PHY0, DPIO_CH1);
1092
1093 if (BITS_SET(phy_control,
1094 PHY_CH_POWER_DOWN_OVRD(0x3, DPIO_PHY0, DPIO_CH0)))
1095 phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH0, 0);
1096 if (BITS_SET(phy_control,
1097 PHY_CH_POWER_DOWN_OVRD(0xc, DPIO_PHY0, DPIO_CH0)))
1098 phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH0, 1);
1099
1100 if (BITS_SET(phy_control,
1101 PHY_CH_POWER_DOWN_OVRD(0x3, DPIO_PHY0, DPIO_CH1)))
1102 phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH1, 0);
1103 if (BITS_SET(phy_control,
1104 PHY_CH_POWER_DOWN_OVRD(0xc, DPIO_PHY0, DPIO_CH1)))
1105 phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH1, 1);
1106 }
1107
1108 if (cmn_d->ops->is_enabled(dev_priv, cmn_d)) {
1109 phy_status |= PHY_POWERGOOD(DPIO_PHY1);
1110
1111 /* this assumes override is only used to enable lanes */
1112 if ((phy_control & PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY1, DPIO_CH0)) == 0)
1113 phy_control |= PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY1, DPIO_CH0);
1114
1115 if (BITS_SET(phy_control,
1116 PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY1, DPIO_CH0)))
1117 phy_status |= PHY_STATUS_CMN_LDO(DPIO_PHY1, DPIO_CH0);
1118
1119 if (BITS_SET(phy_control,
1120 PHY_CH_POWER_DOWN_OVRD(0x3, DPIO_PHY1, DPIO_CH0)))
1121 phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY1, DPIO_CH0, 0);
1122 if (BITS_SET(phy_control,
1123 PHY_CH_POWER_DOWN_OVRD(0xc, DPIO_PHY1, DPIO_CH0)))
1124 phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY1, DPIO_CH0, 1);
1125 }
1126
Ville Syrjälä3be60de2015-09-08 18:05:45 +03001127 phy_status &= phy_status_mask;
1128
Ville Syrjälä30142272015-07-08 23:46:01 +03001129 /*
1130 * The PHY may be busy with some initial calibration and whatnot,
1131 * so the power state can take a while to actually change.
1132 */
Chris Wilson919fcd52016-06-30 15:33:35 +01001133 if (intel_wait_for_register(dev_priv,
1134 DISPLAY_PHY_STATUS,
1135 phy_status_mask,
1136 phy_status,
1137 10))
1138 DRM_ERROR("Unexpected PHY_STATUS 0x%08x, expected 0x%08x (PHY_CONTROL=0x%08x)\n",
1139 I915_READ(DISPLAY_PHY_STATUS) & phy_status_mask,
1140 phy_status, dev_priv->chv_phy_control);
Ville Syrjälä30142272015-07-08 23:46:01 +03001141}
1142
1143#undef BITS_SET
1144
Daniel Vetter9c065a72014-09-30 10:56:38 +02001145static void chv_dpio_cmn_power_well_enable(struct drm_i915_private *dev_priv,
1146 struct i915_power_well *power_well)
1147{
1148 enum dpio_phy phy;
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001149 enum pipe pipe;
1150 uint32_t tmp;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001151
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001152 WARN_ON_ONCE(power_well->id != PUNIT_POWER_WELL_DPIO_CMN_BC &&
1153 power_well->id != PUNIT_POWER_WELL_DPIO_CMN_D);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001154
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001155 if (power_well->id == PUNIT_POWER_WELL_DPIO_CMN_BC) {
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001156 pipe = PIPE_A;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001157 phy = DPIO_PHY0;
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001158 } else {
1159 pipe = PIPE_C;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001160 phy = DPIO_PHY1;
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001161 }
Ville Syrjälä5a8fbb72015-06-29 15:25:53 +03001162
1163 /* since ref/cri clock was enabled */
Daniel Vetter9c065a72014-09-30 10:56:38 +02001164 udelay(1); /* >10ns for cmnreset, >0ns for sidereset */
1165 vlv_set_power_well(dev_priv, power_well, true);
1166
1167 /* Poll for phypwrgood signal */
Chris Wilsonffebb832016-06-30 15:33:36 +01001168 if (intel_wait_for_register(dev_priv,
1169 DISPLAY_PHY_STATUS,
1170 PHY_POWERGOOD(phy),
1171 PHY_POWERGOOD(phy),
1172 1))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001173 DRM_ERROR("Display PHY %d is not power up\n", phy);
1174
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001175 mutex_lock(&dev_priv->sb_lock);
1176
1177 /* Enable dynamic power down */
1178 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW28);
Ville Syrjäläee279212015-07-08 23:45:57 +03001179 tmp |= DPIO_DYNPWRDOWNEN_CH0 | DPIO_CL1POWERDOWNEN |
1180 DPIO_SUS_CLK_CONFIG_GATE_CLKREQ;
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001181 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW28, tmp);
1182
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001183 if (power_well->id == PUNIT_POWER_WELL_DPIO_CMN_BC) {
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001184 tmp = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW6_CH1);
1185 tmp |= DPIO_DYNPWRDOWNEN_CH1;
1186 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW6_CH1, tmp);
Ville Syrjälä3e288782015-07-08 23:45:58 +03001187 } else {
1188 /*
1189 * Force the non-existing CL2 off. BXT does this
1190 * too, so maybe it saves some power even though
1191 * CL2 doesn't exist?
1192 */
1193 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1194 tmp |= DPIO_CL2_LDOFUSE_PWRENB;
1195 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, tmp);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001196 }
1197
1198 mutex_unlock(&dev_priv->sb_lock);
1199
Ville Syrjälä70722462015-04-10 18:21:28 +03001200 dev_priv->chv_phy_control |= PHY_COM_LANE_RESET_DEASSERT(phy);
1201 I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001202
1203 DRM_DEBUG_KMS("Enabled DPIO PHY%d (PHY_CONTROL=0x%08x)\n",
1204 phy, dev_priv->chv_phy_control);
Ville Syrjälä30142272015-07-08 23:46:01 +03001205
1206 assert_chv_phy_status(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001207}
1208
1209static void chv_dpio_cmn_power_well_disable(struct drm_i915_private *dev_priv,
1210 struct i915_power_well *power_well)
1211{
1212 enum dpio_phy phy;
1213
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001214 WARN_ON_ONCE(power_well->id != PUNIT_POWER_WELL_DPIO_CMN_BC &&
1215 power_well->id != PUNIT_POWER_WELL_DPIO_CMN_D);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001216
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001217 if (power_well->id == PUNIT_POWER_WELL_DPIO_CMN_BC) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02001218 phy = DPIO_PHY0;
1219 assert_pll_disabled(dev_priv, PIPE_A);
1220 assert_pll_disabled(dev_priv, PIPE_B);
1221 } else {
1222 phy = DPIO_PHY1;
1223 assert_pll_disabled(dev_priv, PIPE_C);
1224 }
1225
Ville Syrjälä70722462015-04-10 18:21:28 +03001226 dev_priv->chv_phy_control &= ~PHY_COM_LANE_RESET_DEASSERT(phy);
1227 I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001228
1229 vlv_set_power_well(dev_priv, power_well, false);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001230
1231 DRM_DEBUG_KMS("Disabled DPIO PHY%d (PHY_CONTROL=0x%08x)\n",
1232 phy, dev_priv->chv_phy_control);
Ville Syrjälä30142272015-07-08 23:46:01 +03001233
Ville Syrjälä3be60de2015-09-08 18:05:45 +03001234 /* PHY is fully reset now, so we can enable the PHY state asserts */
1235 dev_priv->chv_phy_assert[phy] = true;
1236
Ville Syrjälä30142272015-07-08 23:46:01 +03001237 assert_chv_phy_status(dev_priv);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001238}
1239
Ville Syrjälä6669e392015-07-08 23:46:00 +03001240static void assert_chv_phy_powergate(struct drm_i915_private *dev_priv, enum dpio_phy phy,
1241 enum dpio_channel ch, bool override, unsigned int mask)
1242{
1243 enum pipe pipe = phy == DPIO_PHY0 ? PIPE_A : PIPE_C;
1244 u32 reg, val, expected, actual;
1245
Ville Syrjälä3be60de2015-09-08 18:05:45 +03001246 /*
1247 * The BIOS can leave the PHY is some weird state
1248 * where it doesn't fully power down some parts.
1249 * Disable the asserts until the PHY has been fully
1250 * reset (ie. the power well has been disabled at
1251 * least once).
1252 */
1253 if (!dev_priv->chv_phy_assert[phy])
1254 return;
1255
Ville Syrjälä6669e392015-07-08 23:46:00 +03001256 if (ch == DPIO_CH0)
1257 reg = _CHV_CMN_DW0_CH0;
1258 else
1259 reg = _CHV_CMN_DW6_CH1;
1260
1261 mutex_lock(&dev_priv->sb_lock);
1262 val = vlv_dpio_read(dev_priv, pipe, reg);
1263 mutex_unlock(&dev_priv->sb_lock);
1264
1265 /*
1266 * This assumes !override is only used when the port is disabled.
1267 * All lanes should power down even without the override when
1268 * the port is disabled.
1269 */
1270 if (!override || mask == 0xf) {
1271 expected = DPIO_ALLDL_POWERDOWN | DPIO_ANYDL_POWERDOWN;
1272 /*
1273 * If CH1 common lane is not active anymore
1274 * (eg. for pipe B DPLL) the entire channel will
1275 * shut down, which causes the common lane registers
1276 * to read as 0. That means we can't actually check
1277 * the lane power down status bits, but as the entire
1278 * register reads as 0 it's a good indication that the
1279 * channel is indeed entirely powered down.
1280 */
1281 if (ch == DPIO_CH1 && val == 0)
1282 expected = 0;
1283 } else if (mask != 0x0) {
1284 expected = DPIO_ANYDL_POWERDOWN;
1285 } else {
1286 expected = 0;
1287 }
1288
1289 if (ch == DPIO_CH0)
1290 actual = val >> DPIO_ANYDL_POWERDOWN_SHIFT_CH0;
1291 else
1292 actual = val >> DPIO_ANYDL_POWERDOWN_SHIFT_CH1;
1293 actual &= DPIO_ALLDL_POWERDOWN | DPIO_ANYDL_POWERDOWN;
1294
1295 WARN(actual != expected,
1296 "Unexpected DPIO lane power down: all %d, any %d. Expected: all %d, any %d. (0x%x = 0x%08x)\n",
1297 !!(actual & DPIO_ALLDL_POWERDOWN), !!(actual & DPIO_ANYDL_POWERDOWN),
1298 !!(expected & DPIO_ALLDL_POWERDOWN), !!(expected & DPIO_ANYDL_POWERDOWN),
1299 reg, val);
1300}
1301
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001302bool chv_phy_powergate_ch(struct drm_i915_private *dev_priv, enum dpio_phy phy,
1303 enum dpio_channel ch, bool override)
1304{
1305 struct i915_power_domains *power_domains = &dev_priv->power_domains;
1306 bool was_override;
1307
1308 mutex_lock(&power_domains->lock);
1309
1310 was_override = dev_priv->chv_phy_control & PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
1311
1312 if (override == was_override)
1313 goto out;
1314
1315 if (override)
1316 dev_priv->chv_phy_control |= PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
1317 else
1318 dev_priv->chv_phy_control &= ~PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
1319
1320 I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
1321
1322 DRM_DEBUG_KMS("Power gating DPIO PHY%d CH%d (DPIO_PHY_CONTROL=0x%08x)\n",
1323 phy, ch, dev_priv->chv_phy_control);
1324
Ville Syrjälä30142272015-07-08 23:46:01 +03001325 assert_chv_phy_status(dev_priv);
1326
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001327out:
1328 mutex_unlock(&power_domains->lock);
1329
1330 return was_override;
1331}
1332
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001333void chv_phy_powergate_lanes(struct intel_encoder *encoder,
1334 bool override, unsigned int mask)
1335{
1336 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1337 struct i915_power_domains *power_domains = &dev_priv->power_domains;
1338 enum dpio_phy phy = vlv_dport_to_phy(enc_to_dig_port(&encoder->base));
1339 enum dpio_channel ch = vlv_dport_to_channel(enc_to_dig_port(&encoder->base));
1340
1341 mutex_lock(&power_domains->lock);
1342
1343 dev_priv->chv_phy_control &= ~PHY_CH_POWER_DOWN_OVRD(0xf, phy, ch);
1344 dev_priv->chv_phy_control |= PHY_CH_POWER_DOWN_OVRD(mask, phy, ch);
1345
1346 if (override)
1347 dev_priv->chv_phy_control |= PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
1348 else
1349 dev_priv->chv_phy_control &= ~PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
1350
1351 I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
1352
1353 DRM_DEBUG_KMS("Power gating DPIO PHY%d CH%d lanes 0x%x (PHY_CONTROL=0x%08x)\n",
1354 phy, ch, mask, dev_priv->chv_phy_control);
1355
Ville Syrjälä30142272015-07-08 23:46:01 +03001356 assert_chv_phy_status(dev_priv);
1357
Ville Syrjälä6669e392015-07-08 23:46:00 +03001358 assert_chv_phy_powergate(dev_priv, phy, ch, override, mask);
1359
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001360 mutex_unlock(&power_domains->lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001361}
1362
1363static bool chv_pipe_power_well_enabled(struct drm_i915_private *dev_priv,
1364 struct i915_power_well *power_well)
1365{
Imre Deakf49193c2017-07-06 17:40:23 +03001366 enum pipe pipe = PIPE_A;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001367 bool enabled;
1368 u32 state, ctrl;
1369
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01001370 mutex_lock(&dev_priv->pcu_lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001371
1372 state = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & DP_SSS_MASK(pipe);
1373 /*
1374 * We only ever set the power-on and power-gate states, anything
1375 * else is unexpected.
1376 */
1377 WARN_ON(state != DP_SSS_PWR_ON(pipe) && state != DP_SSS_PWR_GATE(pipe));
1378 enabled = state == DP_SSS_PWR_ON(pipe);
1379
1380 /*
1381 * A transient state at this point would mean some unexpected party
1382 * is poking at the power controls too.
1383 */
1384 ctrl = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & DP_SSC_MASK(pipe);
1385 WARN_ON(ctrl << 16 != state);
1386
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01001387 mutex_unlock(&dev_priv->pcu_lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001388
1389 return enabled;
1390}
1391
1392static void chv_set_pipe_power_well(struct drm_i915_private *dev_priv,
1393 struct i915_power_well *power_well,
1394 bool enable)
1395{
Imre Deakf49193c2017-07-06 17:40:23 +03001396 enum pipe pipe = PIPE_A;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001397 u32 state;
1398 u32 ctrl;
1399
1400 state = enable ? DP_SSS_PWR_ON(pipe) : DP_SSS_PWR_GATE(pipe);
1401
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01001402 mutex_lock(&dev_priv->pcu_lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001403
1404#define COND \
1405 ((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & DP_SSS_MASK(pipe)) == state)
1406
1407 if (COND)
1408 goto out;
1409
1410 ctrl = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
1411 ctrl &= ~DP_SSC_MASK(pipe);
1412 ctrl |= enable ? DP_SSC_PWR_ON(pipe) : DP_SSC_PWR_GATE(pipe);
1413 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, ctrl);
1414
1415 if (wait_for(COND, 100))
Masanari Iida7e35ab82015-05-10 01:00:23 +09001416 DRM_ERROR("timeout setting power well state %08x (%08x)\n",
Daniel Vetter9c065a72014-09-30 10:56:38 +02001417 state,
1418 vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ));
1419
1420#undef COND
1421
1422out:
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01001423 mutex_unlock(&dev_priv->pcu_lock);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001424}
1425
Daniel Vetter9c065a72014-09-30 10:56:38 +02001426static void chv_pipe_power_well_enable(struct drm_i915_private *dev_priv,
1427 struct i915_power_well *power_well)
1428{
Imre Deakf49193c2017-07-06 17:40:23 +03001429 WARN_ON_ONCE(power_well->id != CHV_DISP_PW_PIPE_A);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001430
1431 chv_set_pipe_power_well(dev_priv, power_well, true);
Ville Syrjäläafd62752014-10-30 19:43:03 +02001432
Ville Syrjälä2be7d542015-06-29 15:25:51 +03001433 vlv_display_power_well_init(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001434}
1435
1436static void chv_pipe_power_well_disable(struct drm_i915_private *dev_priv,
1437 struct i915_power_well *power_well)
1438{
Imre Deakf49193c2017-07-06 17:40:23 +03001439 WARN_ON_ONCE(power_well->id != CHV_DISP_PW_PIPE_A);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001440
Ville Syrjälä2be7d542015-06-29 15:25:51 +03001441 vlv_display_power_well_deinit(dev_priv);
Ville Syrjäläafd62752014-10-30 19:43:03 +02001442
Daniel Vetter9c065a72014-09-30 10:56:38 +02001443 chv_set_pipe_power_well(dev_priv, power_well, false);
1444}
1445
Imre Deak09731282016-02-17 14:17:42 +02001446static void
1447__intel_display_power_get_domain(struct drm_i915_private *dev_priv,
1448 enum intel_display_power_domain domain)
1449{
1450 struct i915_power_domains *power_domains = &dev_priv->power_domains;
1451 struct i915_power_well *power_well;
Imre Deak09731282016-02-17 14:17:42 +02001452
Imre Deak75ccb2e2017-02-17 17:39:43 +02001453 for_each_power_domain_well(dev_priv, power_well, BIT_ULL(domain))
Imre Deakb409ca92016-06-13 16:44:33 +03001454 intel_power_well_get(dev_priv, power_well);
Imre Deak09731282016-02-17 14:17:42 +02001455
1456 power_domains->domain_use_count[domain]++;
1457}
1458
Daniel Vettere4e76842014-09-30 10:56:42 +02001459/**
1460 * intel_display_power_get - grab a power domain reference
1461 * @dev_priv: i915 device instance
1462 * @domain: power domain to reference
1463 *
1464 * This function grabs a power domain reference for @domain and ensures that the
1465 * power domain and all its parents are powered up. Therefore users should only
1466 * grab a reference to the innermost power domain they need.
1467 *
1468 * Any power domain reference obtained by this function must have a symmetric
1469 * call to intel_display_power_put() to release the reference again.
1470 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02001471void intel_display_power_get(struct drm_i915_private *dev_priv,
1472 enum intel_display_power_domain domain)
1473{
Imre Deak09731282016-02-17 14:17:42 +02001474 struct i915_power_domains *power_domains = &dev_priv->power_domains;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001475
1476 intel_runtime_pm_get(dev_priv);
1477
Imre Deak09731282016-02-17 14:17:42 +02001478 mutex_lock(&power_domains->lock);
1479
1480 __intel_display_power_get_domain(dev_priv, domain);
1481
1482 mutex_unlock(&power_domains->lock);
1483}
1484
1485/**
1486 * intel_display_power_get_if_enabled - grab a reference for an enabled display power domain
1487 * @dev_priv: i915 device instance
1488 * @domain: power domain to reference
1489 *
1490 * This function grabs a power domain reference for @domain and ensures that the
1491 * power domain and all its parents are powered up. Therefore users should only
1492 * grab a reference to the innermost power domain they need.
1493 *
1494 * Any power domain reference obtained by this function must have a symmetric
1495 * call to intel_display_power_put() to release the reference again.
1496 */
1497bool intel_display_power_get_if_enabled(struct drm_i915_private *dev_priv,
1498 enum intel_display_power_domain domain)
1499{
1500 struct i915_power_domains *power_domains = &dev_priv->power_domains;
1501 bool is_enabled;
1502
1503 if (!intel_runtime_pm_get_if_in_use(dev_priv))
1504 return false;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001505
1506 mutex_lock(&power_domains->lock);
1507
Imre Deak09731282016-02-17 14:17:42 +02001508 if (__intel_display_power_is_enabled(dev_priv, domain)) {
1509 __intel_display_power_get_domain(dev_priv, domain);
1510 is_enabled = true;
1511 } else {
1512 is_enabled = false;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001513 }
1514
Daniel Vetter9c065a72014-09-30 10:56:38 +02001515 mutex_unlock(&power_domains->lock);
Imre Deak09731282016-02-17 14:17:42 +02001516
1517 if (!is_enabled)
1518 intel_runtime_pm_put(dev_priv);
1519
1520 return is_enabled;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001521}
1522
Daniel Vettere4e76842014-09-30 10:56:42 +02001523/**
1524 * intel_display_power_put - release a power domain reference
1525 * @dev_priv: i915 device instance
1526 * @domain: power domain to reference
1527 *
1528 * This function drops the power domain reference obtained by
1529 * intel_display_power_get() and might power down the corresponding hardware
1530 * block right away if this is the last reference.
1531 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02001532void intel_display_power_put(struct drm_i915_private *dev_priv,
1533 enum intel_display_power_domain domain)
1534{
1535 struct i915_power_domains *power_domains;
1536 struct i915_power_well *power_well;
Daniel Vetter9c065a72014-09-30 10:56:38 +02001537
1538 power_domains = &dev_priv->power_domains;
1539
1540 mutex_lock(&power_domains->lock);
1541
Daniel Stone11c86db2015-11-20 15:55:34 +00001542 WARN(!power_domains->domain_use_count[domain],
1543 "Use count on domain %s is already zero\n",
1544 intel_display_power_domain_str(domain));
Daniel Vetter9c065a72014-09-30 10:56:38 +02001545 power_domains->domain_use_count[domain]--;
1546
Imre Deak75ccb2e2017-02-17 17:39:43 +02001547 for_each_power_domain_well_rev(dev_priv, power_well, BIT_ULL(domain))
Imre Deakb409ca92016-06-13 16:44:33 +03001548 intel_power_well_put(dev_priv, power_well);
Daniel Vetter9c065a72014-09-30 10:56:38 +02001549
1550 mutex_unlock(&power_domains->lock);
1551
1552 intel_runtime_pm_put(dev_priv);
1553}
1554
Imre Deak965a79a2017-07-06 17:40:40 +03001555#define I830_PIPES_POWER_DOMAINS ( \
1556 BIT_ULL(POWER_DOMAIN_PIPE_A) | \
1557 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1558 BIT_ULL(POWER_DOMAIN_PIPE_A_PANEL_FITTER) | \
1559 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1560 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1561 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001562 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001563
Ville Syrjälä465ac0c2016-04-18 14:02:27 +03001564#define VLV_DISPLAY_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001565 BIT_ULL(POWER_DOMAIN_PIPE_A) | \
1566 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1567 BIT_ULL(POWER_DOMAIN_PIPE_A_PANEL_FITTER) | \
1568 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1569 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1570 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1571 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1572 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1573 BIT_ULL(POWER_DOMAIN_PORT_DSI) | \
1574 BIT_ULL(POWER_DOMAIN_PORT_CRT) | \
1575 BIT_ULL(POWER_DOMAIN_VGA) | \
1576 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1577 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1578 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1579 BIT_ULL(POWER_DOMAIN_GMBUS) | \
1580 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001581
1582#define VLV_DPIO_CMN_BC_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001583 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1584 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1585 BIT_ULL(POWER_DOMAIN_PORT_CRT) | \
1586 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1587 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1588 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001589
1590#define VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001591 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1592 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1593 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001594
1595#define VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001596 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1597 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1598 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001599
1600#define VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001601 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1602 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1603 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001604
1605#define VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001606 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1607 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1608 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001609
Ville Syrjälä465ac0c2016-04-18 14:02:27 +03001610#define CHV_DISPLAY_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001611 BIT_ULL(POWER_DOMAIN_PIPE_A) | \
1612 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1613 BIT_ULL(POWER_DOMAIN_PIPE_C) | \
1614 BIT_ULL(POWER_DOMAIN_PIPE_A_PANEL_FITTER) | \
1615 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1616 BIT_ULL(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
1617 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1618 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1619 BIT_ULL(POWER_DOMAIN_TRANSCODER_C) | \
1620 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1621 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1622 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_LANES) | \
1623 BIT_ULL(POWER_DOMAIN_PORT_DSI) | \
1624 BIT_ULL(POWER_DOMAIN_VGA) | \
1625 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1626 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1627 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1628 BIT_ULL(POWER_DOMAIN_AUX_D) | \
1629 BIT_ULL(POWER_DOMAIN_GMBUS) | \
1630 BIT_ULL(POWER_DOMAIN_INIT))
Ville Syrjälä465ac0c2016-04-18 14:02:27 +03001631
Daniel Vetter9c065a72014-09-30 10:56:38 +02001632#define CHV_DPIO_CMN_BC_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001633 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1634 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1635 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1636 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1637 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001638
1639#define CHV_DPIO_CMN_D_POWER_DOMAINS ( \
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02001640 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_LANES) | \
1641 BIT_ULL(POWER_DOMAIN_AUX_D) | \
1642 BIT_ULL(POWER_DOMAIN_INIT))
Daniel Vetter9c065a72014-09-30 10:56:38 +02001643
Imre Deak965a79a2017-07-06 17:40:40 +03001644#define HSW_DISPLAY_POWER_DOMAINS ( \
1645 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1646 BIT_ULL(POWER_DOMAIN_PIPE_C) | \
1647 BIT_ULL(POWER_DOMAIN_PIPE_A_PANEL_FITTER) | \
1648 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1649 BIT_ULL(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
1650 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1651 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1652 BIT_ULL(POWER_DOMAIN_TRANSCODER_C) | \
1653 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1654 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1655 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_LANES) | \
1656 BIT_ULL(POWER_DOMAIN_PORT_CRT) | /* DDI E */ \
1657 BIT_ULL(POWER_DOMAIN_VGA) | \
1658 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1659 BIT_ULL(POWER_DOMAIN_INIT))
1660
1661#define BDW_DISPLAY_POWER_DOMAINS ( \
1662 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1663 BIT_ULL(POWER_DOMAIN_PIPE_C) | \
1664 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1665 BIT_ULL(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
1666 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1667 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1668 BIT_ULL(POWER_DOMAIN_TRANSCODER_C) | \
1669 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1670 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1671 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_LANES) | \
1672 BIT_ULL(POWER_DOMAIN_PORT_CRT) | /* DDI E */ \
1673 BIT_ULL(POWER_DOMAIN_VGA) | \
1674 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1675 BIT_ULL(POWER_DOMAIN_INIT))
1676
1677#define SKL_DISPLAY_POWERWELL_2_POWER_DOMAINS ( \
1678 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1679 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1680 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1681 BIT_ULL(POWER_DOMAIN_PIPE_C) | \
1682 BIT_ULL(POWER_DOMAIN_TRANSCODER_C) | \
1683 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1684 BIT_ULL(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
1685 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1686 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1687 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_LANES) | \
1688 BIT_ULL(POWER_DOMAIN_PORT_DDI_E_LANES) | \
1689 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1690 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1691 BIT_ULL(POWER_DOMAIN_AUX_D) | \
1692 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1693 BIT_ULL(POWER_DOMAIN_VGA) | \
1694 BIT_ULL(POWER_DOMAIN_INIT))
1695#define SKL_DISPLAY_DDI_IO_A_E_POWER_DOMAINS ( \
1696 BIT_ULL(POWER_DOMAIN_PORT_DDI_A_IO) | \
1697 BIT_ULL(POWER_DOMAIN_PORT_DDI_E_IO) | \
1698 BIT_ULL(POWER_DOMAIN_INIT))
1699#define SKL_DISPLAY_DDI_IO_B_POWER_DOMAINS ( \
1700 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_IO) | \
1701 BIT_ULL(POWER_DOMAIN_INIT))
1702#define SKL_DISPLAY_DDI_IO_C_POWER_DOMAINS ( \
1703 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_IO) | \
1704 BIT_ULL(POWER_DOMAIN_INIT))
1705#define SKL_DISPLAY_DDI_IO_D_POWER_DOMAINS ( \
1706 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_IO) | \
1707 BIT_ULL(POWER_DOMAIN_INIT))
1708#define SKL_DISPLAY_DC_OFF_POWER_DOMAINS ( \
1709 SKL_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
Tvrtko Ursulinb6876372017-12-05 13:28:54 +00001710 BIT_ULL(POWER_DOMAIN_GT_IRQ) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001711 BIT_ULL(POWER_DOMAIN_MODESET) | \
1712 BIT_ULL(POWER_DOMAIN_AUX_A) | \
1713 BIT_ULL(POWER_DOMAIN_INIT))
1714
1715#define BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS ( \
1716 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1717 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1718 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1719 BIT_ULL(POWER_DOMAIN_PIPE_C) | \
1720 BIT_ULL(POWER_DOMAIN_TRANSCODER_C) | \
1721 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1722 BIT_ULL(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
1723 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1724 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1725 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1726 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1727 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1728 BIT_ULL(POWER_DOMAIN_VGA) | \
1729 BIT_ULL(POWER_DOMAIN_GMBUS) | \
1730 BIT_ULL(POWER_DOMAIN_INIT))
1731#define BXT_DISPLAY_DC_OFF_POWER_DOMAINS ( \
1732 BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
Tvrtko Ursulinb6876372017-12-05 13:28:54 +00001733 BIT_ULL(POWER_DOMAIN_GT_IRQ) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001734 BIT_ULL(POWER_DOMAIN_MODESET) | \
1735 BIT_ULL(POWER_DOMAIN_AUX_A) | \
1736 BIT_ULL(POWER_DOMAIN_INIT))
1737#define BXT_DPIO_CMN_A_POWER_DOMAINS ( \
1738 BIT_ULL(POWER_DOMAIN_PORT_DDI_A_LANES) | \
1739 BIT_ULL(POWER_DOMAIN_AUX_A) | \
1740 BIT_ULL(POWER_DOMAIN_INIT))
1741#define BXT_DPIO_CMN_BC_POWER_DOMAINS ( \
1742 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1743 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1744 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1745 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1746 BIT_ULL(POWER_DOMAIN_INIT))
1747
1748#define GLK_DISPLAY_POWERWELL_2_POWER_DOMAINS ( \
1749 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1750 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1751 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1752 BIT_ULL(POWER_DOMAIN_PIPE_C) | \
1753 BIT_ULL(POWER_DOMAIN_TRANSCODER_C) | \
1754 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1755 BIT_ULL(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
1756 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1757 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1758 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1759 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1760 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1761 BIT_ULL(POWER_DOMAIN_VGA) | \
1762 BIT_ULL(POWER_DOMAIN_INIT))
1763#define GLK_DISPLAY_DDI_IO_A_POWER_DOMAINS ( \
1764 BIT_ULL(POWER_DOMAIN_PORT_DDI_A_IO))
1765#define GLK_DISPLAY_DDI_IO_B_POWER_DOMAINS ( \
1766 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_IO))
1767#define GLK_DISPLAY_DDI_IO_C_POWER_DOMAINS ( \
1768 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_IO))
1769#define GLK_DPIO_CMN_A_POWER_DOMAINS ( \
1770 BIT_ULL(POWER_DOMAIN_PORT_DDI_A_LANES) | \
1771 BIT_ULL(POWER_DOMAIN_AUX_A) | \
1772 BIT_ULL(POWER_DOMAIN_INIT))
1773#define GLK_DPIO_CMN_B_POWER_DOMAINS ( \
1774 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1775 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1776 BIT_ULL(POWER_DOMAIN_INIT))
1777#define GLK_DPIO_CMN_C_POWER_DOMAINS ( \
1778 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1779 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1780 BIT_ULL(POWER_DOMAIN_INIT))
1781#define GLK_DISPLAY_AUX_A_POWER_DOMAINS ( \
1782 BIT_ULL(POWER_DOMAIN_AUX_A) | \
1783 BIT_ULL(POWER_DOMAIN_INIT))
1784#define GLK_DISPLAY_AUX_B_POWER_DOMAINS ( \
1785 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1786 BIT_ULL(POWER_DOMAIN_INIT))
1787#define GLK_DISPLAY_AUX_C_POWER_DOMAINS ( \
1788 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1789 BIT_ULL(POWER_DOMAIN_INIT))
1790#define GLK_DISPLAY_DC_OFF_POWER_DOMAINS ( \
1791 GLK_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
Tvrtko Ursulinb6876372017-12-05 13:28:54 +00001792 BIT_ULL(POWER_DOMAIN_GT_IRQ) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001793 BIT_ULL(POWER_DOMAIN_MODESET) | \
1794 BIT_ULL(POWER_DOMAIN_AUX_A) | \
1795 BIT_ULL(POWER_DOMAIN_INIT))
1796
1797#define CNL_DISPLAY_POWERWELL_2_POWER_DOMAINS ( \
1798 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1799 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1800 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1801 BIT_ULL(POWER_DOMAIN_PIPE_C) | \
1802 BIT_ULL(POWER_DOMAIN_TRANSCODER_C) | \
1803 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1804 BIT_ULL(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
1805 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1806 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1807 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_LANES) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001808 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1809 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1810 BIT_ULL(POWER_DOMAIN_AUX_D) | \
1811 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1812 BIT_ULL(POWER_DOMAIN_VGA) | \
1813 BIT_ULL(POWER_DOMAIN_INIT))
1814#define CNL_DISPLAY_DDI_A_IO_POWER_DOMAINS ( \
1815 BIT_ULL(POWER_DOMAIN_PORT_DDI_A_IO) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001816 BIT_ULL(POWER_DOMAIN_INIT))
1817#define CNL_DISPLAY_DDI_B_IO_POWER_DOMAINS ( \
1818 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_IO) | \
1819 BIT_ULL(POWER_DOMAIN_INIT))
1820#define CNL_DISPLAY_DDI_C_IO_POWER_DOMAINS ( \
1821 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_IO) | \
1822 BIT_ULL(POWER_DOMAIN_INIT))
1823#define CNL_DISPLAY_DDI_D_IO_POWER_DOMAINS ( \
1824 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_IO) | \
1825 BIT_ULL(POWER_DOMAIN_INIT))
1826#define CNL_DISPLAY_AUX_A_POWER_DOMAINS ( \
1827 BIT_ULL(POWER_DOMAIN_AUX_A) | \
1828 BIT_ULL(POWER_DOMAIN_INIT))
1829#define CNL_DISPLAY_AUX_B_POWER_DOMAINS ( \
1830 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1831 BIT_ULL(POWER_DOMAIN_INIT))
1832#define CNL_DISPLAY_AUX_C_POWER_DOMAINS ( \
1833 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1834 BIT_ULL(POWER_DOMAIN_INIT))
1835#define CNL_DISPLAY_AUX_D_POWER_DOMAINS ( \
1836 BIT_ULL(POWER_DOMAIN_AUX_D) | \
1837 BIT_ULL(POWER_DOMAIN_INIT))
1838#define CNL_DISPLAY_DC_OFF_POWER_DOMAINS ( \
1839 CNL_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
1840 BIT_ULL(POWER_DOMAIN_MODESET) | \
1841 BIT_ULL(POWER_DOMAIN_AUX_A) | \
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03001842 BIT_ULL(POWER_DOMAIN_INIT))
1843
Daniel Vetter9c065a72014-09-30 10:56:38 +02001844static const struct i915_power_well_ops i9xx_always_on_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001845 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001846 .enable = i9xx_always_on_power_well_noop,
1847 .disable = i9xx_always_on_power_well_noop,
1848 .is_enabled = i9xx_always_on_power_well_enabled,
1849};
1850
1851static const struct i915_power_well_ops chv_pipe_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001852 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001853 .enable = chv_pipe_power_well_enable,
1854 .disable = chv_pipe_power_well_disable,
1855 .is_enabled = chv_pipe_power_well_enabled,
1856};
1857
1858static const struct i915_power_well_ops chv_dpio_cmn_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001859 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001860 .enable = chv_dpio_cmn_power_well_enable,
1861 .disable = chv_dpio_cmn_power_well_disable,
1862 .is_enabled = vlv_power_well_enabled,
1863};
1864
1865static struct i915_power_well i9xx_always_on_power_well[] = {
1866 {
1867 .name = "always-on",
1868 .always_on = 1,
1869 .domains = POWER_DOMAIN_MASK,
1870 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03001871 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001872 },
1873};
1874
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03001875static const struct i915_power_well_ops i830_pipes_power_well_ops = {
1876 .sync_hw = i830_pipes_power_well_sync_hw,
1877 .enable = i830_pipes_power_well_enable,
1878 .disable = i830_pipes_power_well_disable,
1879 .is_enabled = i830_pipes_power_well_enabled,
1880};
1881
1882static struct i915_power_well i830_power_wells[] = {
1883 {
1884 .name = "always-on",
1885 .always_on = 1,
1886 .domains = POWER_DOMAIN_MASK,
1887 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03001888 .id = I915_DISP_PW_ALWAYS_ON,
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03001889 },
1890 {
1891 .name = "pipes",
1892 .domains = I830_PIPES_POWER_DOMAINS,
1893 .ops = &i830_pipes_power_well_ops,
Imre Deak120b56a2017-07-11 23:42:31 +03001894 .id = I830_DISP_PW_PIPES,
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03001895 },
1896};
1897
Daniel Vetter9c065a72014-09-30 10:56:38 +02001898static const struct i915_power_well_ops hsw_power_well_ops = {
1899 .sync_hw = hsw_power_well_sync_hw,
1900 .enable = hsw_power_well_enable,
1901 .disable = hsw_power_well_disable,
1902 .is_enabled = hsw_power_well_enabled,
1903};
1904
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01001905static const struct i915_power_well_ops gen9_dc_off_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001906 .sync_hw = i9xx_power_well_sync_hw_noop,
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01001907 .enable = gen9_dc_off_power_well_enable,
1908 .disable = gen9_dc_off_power_well_disable,
1909 .is_enabled = gen9_dc_off_power_well_enabled,
1910};
1911
Imre Deak9c8d0b82016-06-13 16:44:34 +03001912static const struct i915_power_well_ops bxt_dpio_cmn_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001913 .sync_hw = i9xx_power_well_sync_hw_noop,
Imre Deak9c8d0b82016-06-13 16:44:34 +03001914 .enable = bxt_dpio_cmn_power_well_enable,
1915 .disable = bxt_dpio_cmn_power_well_disable,
1916 .is_enabled = bxt_dpio_cmn_power_well_enabled,
1917};
1918
Daniel Vetter9c065a72014-09-30 10:56:38 +02001919static struct i915_power_well hsw_power_wells[] = {
1920 {
1921 .name = "always-on",
1922 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03001923 .domains = POWER_DOMAIN_MASK,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001924 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03001925 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001926 },
1927 {
1928 .name = "display",
1929 .domains = HSW_DISPLAY_POWER_DOMAINS,
1930 .ops = &hsw_power_well_ops,
Imre Deakfb9248e2017-07-11 23:42:32 +03001931 .id = HSW_DISP_PW_GLOBAL,
Imre Deak0a445942017-08-14 18:15:29 +03001932 {
1933 .hsw.has_vga = true,
1934 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02001935 },
1936};
1937
1938static struct i915_power_well bdw_power_wells[] = {
1939 {
1940 .name = "always-on",
1941 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03001942 .domains = POWER_DOMAIN_MASK,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001943 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03001944 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001945 },
1946 {
1947 .name = "display",
1948 .domains = BDW_DISPLAY_POWER_DOMAINS,
1949 .ops = &hsw_power_well_ops,
Imre Deakfb9248e2017-07-11 23:42:32 +03001950 .id = HSW_DISP_PW_GLOBAL,
Imre Deak0a445942017-08-14 18:15:29 +03001951 {
1952 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
1953 .hsw.has_vga = true,
1954 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02001955 },
1956};
1957
1958static const struct i915_power_well_ops vlv_display_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001959 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001960 .enable = vlv_display_power_well_enable,
1961 .disable = vlv_display_power_well_disable,
1962 .is_enabled = vlv_power_well_enabled,
1963};
1964
1965static const struct i915_power_well_ops vlv_dpio_cmn_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001966 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001967 .enable = vlv_dpio_cmn_power_well_enable,
1968 .disable = vlv_dpio_cmn_power_well_disable,
1969 .is_enabled = vlv_power_well_enabled,
1970};
1971
1972static const struct i915_power_well_ops vlv_dpio_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001973 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001974 .enable = vlv_power_well_enable,
1975 .disable = vlv_power_well_disable,
1976 .is_enabled = vlv_power_well_enabled,
1977};
1978
1979static struct i915_power_well vlv_power_wells[] = {
1980 {
1981 .name = "always-on",
1982 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03001983 .domains = POWER_DOMAIN_MASK,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001984 .ops = &i9xx_always_on_power_well_ops,
Imre Deak438b8dc2017-07-11 23:42:30 +03001985 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001986 },
1987 {
1988 .name = "display",
1989 .domains = VLV_DISPLAY_POWER_DOMAINS,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001990 .id = PUNIT_POWER_WELL_DISP2D,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001991 .ops = &vlv_display_power_well_ops,
1992 },
1993 {
1994 .name = "dpio-tx-b-01",
1995 .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
1996 VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
1997 VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
1998 VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
1999 .ops = &vlv_dpio_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002000 .id = PUNIT_POWER_WELL_DPIO_TX_B_LANES_01,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002001 },
2002 {
2003 .name = "dpio-tx-b-23",
2004 .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
2005 VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
2006 VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
2007 VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
2008 .ops = &vlv_dpio_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002009 .id = PUNIT_POWER_WELL_DPIO_TX_B_LANES_23,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002010 },
2011 {
2012 .name = "dpio-tx-c-01",
2013 .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
2014 VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
2015 VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
2016 VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
2017 .ops = &vlv_dpio_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002018 .id = PUNIT_POWER_WELL_DPIO_TX_C_LANES_01,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002019 },
2020 {
2021 .name = "dpio-tx-c-23",
2022 .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
2023 VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
2024 VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
2025 VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
2026 .ops = &vlv_dpio_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002027 .id = PUNIT_POWER_WELL_DPIO_TX_C_LANES_23,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002028 },
2029 {
2030 .name = "dpio-common",
2031 .domains = VLV_DPIO_CMN_BC_POWER_DOMAINS,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002032 .id = PUNIT_POWER_WELL_DPIO_CMN_BC,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002033 .ops = &vlv_dpio_cmn_power_well_ops,
2034 },
2035};
2036
2037static struct i915_power_well chv_power_wells[] = {
2038 {
2039 .name = "always-on",
2040 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03002041 .domains = POWER_DOMAIN_MASK,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002042 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03002043 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002044 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02002045 {
2046 .name = "display",
Ville Syrjäläbaa4e572014-10-27 16:07:32 +02002047 /*
Ville Syrjäläfde61e42015-05-26 20:22:39 +03002048 * Pipe A power well is the new disp2d well. Pipe B and C
2049 * power wells don't actually exist. Pipe A power well is
2050 * required for any pipe to work.
Ville Syrjäläbaa4e572014-10-27 16:07:32 +02002051 */
Ville Syrjälä465ac0c2016-04-18 14:02:27 +03002052 .domains = CHV_DISPLAY_POWER_DOMAINS,
Imre Deakf49193c2017-07-06 17:40:23 +03002053 .id = CHV_DISP_PW_PIPE_A,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002054 .ops = &chv_pipe_power_well_ops,
2055 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02002056 {
2057 .name = "dpio-common-bc",
Ville Syrjälä71849b62015-04-10 18:21:29 +03002058 .domains = CHV_DPIO_CMN_BC_POWER_DOMAINS,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002059 .id = PUNIT_POWER_WELL_DPIO_CMN_BC,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002060 .ops = &chv_dpio_cmn_power_well_ops,
2061 },
2062 {
2063 .name = "dpio-common-d",
Ville Syrjälä71849b62015-04-10 18:21:29 +03002064 .domains = CHV_DPIO_CMN_D_POWER_DOMAINS,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002065 .id = PUNIT_POWER_WELL_DPIO_CMN_D,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002066 .ops = &chv_dpio_cmn_power_well_ops,
2067 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02002068};
2069
Suketu Shah5aefb232015-04-16 14:22:10 +05302070bool intel_display_power_well_is_enabled(struct drm_i915_private *dev_priv,
Imre Deak438b8dc2017-07-11 23:42:30 +03002071 enum i915_power_well_id power_well_id)
Suketu Shah5aefb232015-04-16 14:22:10 +05302072{
2073 struct i915_power_well *power_well;
2074 bool ret;
2075
2076 power_well = lookup_power_well(dev_priv, power_well_id);
2077 ret = power_well->ops->is_enabled(dev_priv, power_well);
2078
2079 return ret;
2080}
2081
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002082static struct i915_power_well skl_power_wells[] = {
2083 {
2084 .name = "always-on",
2085 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03002086 .domains = POWER_DOMAIN_MASK,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002087 .ops = &i9xx_always_on_power_well_ops,
Imre Deak438b8dc2017-07-11 23:42:30 +03002088 .id = I915_DISP_PW_ALWAYS_ON,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002089 },
2090 {
2091 .name = "power well 1",
Imre Deak4a76f292015-11-04 19:24:15 +02002092 /* Handled by the DMC firmware */
2093 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002094 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002095 .id = SKL_DISP_PW_1,
Imre Deak0a445942017-08-14 18:15:29 +03002096 {
2097 .hsw.has_fuses = true,
2098 },
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002099 },
2100 {
2101 .name = "MISC IO power well",
Imre Deak4a76f292015-11-04 19:24:15 +02002102 /* Handled by the DMC firmware */
2103 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002104 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002105 .id = SKL_DISP_PW_MISC_IO,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002106 },
2107 {
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002108 .name = "DC off",
2109 .domains = SKL_DISPLAY_DC_OFF_POWER_DOMAINS,
2110 .ops = &gen9_dc_off_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002111 .id = SKL_DISP_PW_DC_OFF,
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002112 },
2113 {
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002114 .name = "power well 2",
2115 .domains = SKL_DISPLAY_POWERWELL_2_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002116 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002117 .id = SKL_DISP_PW_2,
Imre Deak0a445942017-08-14 18:15:29 +03002118 {
2119 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
2120 .hsw.has_vga = true,
2121 .hsw.has_fuses = true,
2122 },
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002123 },
2124 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002125 .name = "DDI A/E IO power well",
2126 .domains = SKL_DISPLAY_DDI_IO_A_E_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002127 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002128 .id = SKL_DISP_PW_DDI_A_E,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002129 },
2130 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002131 .name = "DDI B IO power well",
2132 .domains = SKL_DISPLAY_DDI_IO_B_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002133 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002134 .id = SKL_DISP_PW_DDI_B,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002135 },
2136 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002137 .name = "DDI C IO power well",
2138 .domains = SKL_DISPLAY_DDI_IO_C_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002139 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002140 .id = SKL_DISP_PW_DDI_C,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002141 },
2142 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002143 .name = "DDI D IO power well",
2144 .domains = SKL_DISPLAY_DDI_IO_D_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002145 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002146 .id = SKL_DISP_PW_DDI_D,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002147 },
2148};
2149
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302150static struct i915_power_well bxt_power_wells[] = {
2151 {
2152 .name = "always-on",
2153 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03002154 .domains = POWER_DOMAIN_MASK,
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302155 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03002156 .id = I915_DISP_PW_ALWAYS_ON,
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302157 },
2158 {
2159 .name = "power well 1",
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002160 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002161 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002162 .id = SKL_DISP_PW_1,
Imre Deak0a445942017-08-14 18:15:29 +03002163 {
2164 .hsw.has_fuses = true,
2165 },
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302166 },
2167 {
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002168 .name = "DC off",
2169 .domains = BXT_DISPLAY_DC_OFF_POWER_DOMAINS,
2170 .ops = &gen9_dc_off_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002171 .id = SKL_DISP_PW_DC_OFF,
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002172 },
2173 {
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302174 .name = "power well 2",
2175 .domains = BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002176 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002177 .id = SKL_DISP_PW_2,
Imre Deak0a445942017-08-14 18:15:29 +03002178 {
2179 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
2180 .hsw.has_vga = true,
2181 .hsw.has_fuses = true,
2182 },
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002183 },
Imre Deak9c8d0b82016-06-13 16:44:34 +03002184 {
2185 .name = "dpio-common-a",
2186 .domains = BXT_DPIO_CMN_A_POWER_DOMAINS,
2187 .ops = &bxt_dpio_cmn_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002188 .id = BXT_DPIO_CMN_A,
Imre Deak0a445942017-08-14 18:15:29 +03002189 {
2190 .bxt.phy = DPIO_PHY1,
2191 },
Imre Deak9c8d0b82016-06-13 16:44:34 +03002192 },
2193 {
2194 .name = "dpio-common-bc",
2195 .domains = BXT_DPIO_CMN_BC_POWER_DOMAINS,
2196 .ops = &bxt_dpio_cmn_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002197 .id = BXT_DPIO_CMN_BC,
Imre Deak0a445942017-08-14 18:15:29 +03002198 {
2199 .bxt.phy = DPIO_PHY0,
2200 },
Imre Deak9c8d0b82016-06-13 16:44:34 +03002201 },
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302202};
2203
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002204static struct i915_power_well glk_power_wells[] = {
2205 {
2206 .name = "always-on",
2207 .always_on = 1,
2208 .domains = POWER_DOMAIN_MASK,
2209 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03002210 .id = I915_DISP_PW_ALWAYS_ON,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002211 },
2212 {
2213 .name = "power well 1",
2214 /* Handled by the DMC firmware */
2215 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002216 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002217 .id = SKL_DISP_PW_1,
Imre Deak0a445942017-08-14 18:15:29 +03002218 {
2219 .hsw.has_fuses = true,
2220 },
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002221 },
2222 {
2223 .name = "DC off",
2224 .domains = GLK_DISPLAY_DC_OFF_POWER_DOMAINS,
2225 .ops = &gen9_dc_off_power_well_ops,
2226 .id = SKL_DISP_PW_DC_OFF,
2227 },
2228 {
2229 .name = "power well 2",
2230 .domains = GLK_DISPLAY_POWERWELL_2_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002231 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002232 .id = SKL_DISP_PW_2,
Imre Deak0a445942017-08-14 18:15:29 +03002233 {
2234 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
2235 .hsw.has_vga = true,
2236 .hsw.has_fuses = true,
2237 },
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002238 },
2239 {
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +02002240 .name = "dpio-common-a",
2241 .domains = GLK_DPIO_CMN_A_POWER_DOMAINS,
2242 .ops = &bxt_dpio_cmn_power_well_ops,
2243 .id = BXT_DPIO_CMN_A,
Imre Deak0a445942017-08-14 18:15:29 +03002244 {
2245 .bxt.phy = DPIO_PHY1,
2246 },
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +02002247 },
2248 {
2249 .name = "dpio-common-b",
2250 .domains = GLK_DPIO_CMN_B_POWER_DOMAINS,
2251 .ops = &bxt_dpio_cmn_power_well_ops,
2252 .id = BXT_DPIO_CMN_BC,
Imre Deak0a445942017-08-14 18:15:29 +03002253 {
2254 .bxt.phy = DPIO_PHY0,
2255 },
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +02002256 },
2257 {
2258 .name = "dpio-common-c",
2259 .domains = GLK_DPIO_CMN_C_POWER_DOMAINS,
2260 .ops = &bxt_dpio_cmn_power_well_ops,
2261 .id = GLK_DPIO_CMN_C,
Imre Deak0a445942017-08-14 18:15:29 +03002262 {
2263 .bxt.phy = DPIO_PHY2,
2264 },
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +02002265 },
2266 {
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002267 .name = "AUX A",
2268 .domains = GLK_DISPLAY_AUX_A_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002269 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002270 .id = GLK_DISP_PW_AUX_A,
2271 },
2272 {
2273 .name = "AUX B",
2274 .domains = GLK_DISPLAY_AUX_B_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002275 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002276 .id = GLK_DISP_PW_AUX_B,
2277 },
2278 {
2279 .name = "AUX C",
2280 .domains = GLK_DISPLAY_AUX_C_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002281 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002282 .id = GLK_DISP_PW_AUX_C,
2283 },
2284 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002285 .name = "DDI A IO power well",
2286 .domains = GLK_DISPLAY_DDI_IO_A_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002287 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002288 .id = GLK_DISP_PW_DDI_A,
2289 },
2290 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002291 .name = "DDI B IO power well",
2292 .domains = GLK_DISPLAY_DDI_IO_B_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002293 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002294 .id = SKL_DISP_PW_DDI_B,
2295 },
2296 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002297 .name = "DDI C IO power well",
2298 .domains = GLK_DISPLAY_DDI_IO_C_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002299 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002300 .id = SKL_DISP_PW_DDI_C,
2301 },
2302};
2303
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002304static struct i915_power_well cnl_power_wells[] = {
2305 {
2306 .name = "always-on",
2307 .always_on = 1,
2308 .domains = POWER_DOMAIN_MASK,
2309 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03002310 .id = I915_DISP_PW_ALWAYS_ON,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002311 },
2312 {
2313 .name = "power well 1",
2314 /* Handled by the DMC firmware */
2315 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002316 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002317 .id = SKL_DISP_PW_1,
Imre Deak0a445942017-08-14 18:15:29 +03002318 {
2319 .hsw.has_fuses = true,
2320 },
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002321 },
2322 {
2323 .name = "AUX A",
2324 .domains = CNL_DISPLAY_AUX_A_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002325 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002326 .id = CNL_DISP_PW_AUX_A,
2327 },
2328 {
2329 .name = "AUX B",
2330 .domains = CNL_DISPLAY_AUX_B_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002331 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002332 .id = CNL_DISP_PW_AUX_B,
2333 },
2334 {
2335 .name = "AUX C",
2336 .domains = CNL_DISPLAY_AUX_C_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002337 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002338 .id = CNL_DISP_PW_AUX_C,
2339 },
2340 {
2341 .name = "AUX D",
2342 .domains = CNL_DISPLAY_AUX_D_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002343 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002344 .id = CNL_DISP_PW_AUX_D,
2345 },
2346 {
2347 .name = "DC off",
2348 .domains = CNL_DISPLAY_DC_OFF_POWER_DOMAINS,
2349 .ops = &gen9_dc_off_power_well_ops,
2350 .id = SKL_DISP_PW_DC_OFF,
2351 },
2352 {
2353 .name = "power well 2",
2354 .domains = CNL_DISPLAY_POWERWELL_2_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002355 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002356 .id = SKL_DISP_PW_2,
Imre Deak0a445942017-08-14 18:15:29 +03002357 {
2358 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
2359 .hsw.has_vga = true,
2360 .hsw.has_fuses = true,
2361 },
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002362 },
2363 {
2364 .name = "DDI A IO power well",
2365 .domains = CNL_DISPLAY_DDI_A_IO_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002366 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002367 .id = CNL_DISP_PW_DDI_A,
2368 },
2369 {
2370 .name = "DDI B IO power well",
2371 .domains = CNL_DISPLAY_DDI_B_IO_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002372 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002373 .id = SKL_DISP_PW_DDI_B,
2374 },
2375 {
2376 .name = "DDI C IO power well",
2377 .domains = CNL_DISPLAY_DDI_C_IO_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002378 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002379 .id = SKL_DISP_PW_DDI_C,
2380 },
2381 {
2382 .name = "DDI D IO power well",
2383 .domains = CNL_DISPLAY_DDI_D_IO_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002384 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002385 .id = SKL_DISP_PW_DDI_D,
2386 },
2387};
2388
Imre Deak1b0e3a02015-11-05 23:04:11 +02002389static int
2390sanitize_disable_power_well_option(const struct drm_i915_private *dev_priv,
2391 int disable_power_well)
2392{
2393 if (disable_power_well >= 0)
2394 return !!disable_power_well;
2395
Imre Deak1b0e3a02015-11-05 23:04:11 +02002396 return 1;
2397}
2398
Imre Deaka37baf32016-02-29 22:49:03 +02002399static uint32_t get_allowed_dc_mask(const struct drm_i915_private *dev_priv,
2400 int enable_dc)
2401{
2402 uint32_t mask;
2403 int requested_dc;
2404 int max_dc;
2405
Rodrigo Vivi6d6a8972017-07-06 13:45:08 -07002406 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Imre Deaka37baf32016-02-29 22:49:03 +02002407 max_dc = 2;
2408 mask = 0;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002409 } else if (IS_GEN9_LP(dev_priv)) {
Imre Deaka37baf32016-02-29 22:49:03 +02002410 max_dc = 1;
2411 /*
2412 * DC9 has a separate HW flow from the rest of the DC states,
2413 * not depending on the DMC firmware. It's needed by system
2414 * suspend/resume, so allow it unconditionally.
2415 */
2416 mask = DC_STATE_EN_DC9;
2417 } else {
2418 max_dc = 0;
2419 mask = 0;
2420 }
2421
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00002422 if (!i915_modparams.disable_power_well)
Imre Deak66e2c4c2016-02-29 22:49:04 +02002423 max_dc = 0;
2424
Imre Deaka37baf32016-02-29 22:49:03 +02002425 if (enable_dc >= 0 && enable_dc <= max_dc) {
2426 requested_dc = enable_dc;
2427 } else if (enable_dc == -1) {
2428 requested_dc = max_dc;
2429 } else if (enable_dc > max_dc && enable_dc <= 2) {
2430 DRM_DEBUG_KMS("Adjusting requested max DC state (%d->%d)\n",
2431 enable_dc, max_dc);
2432 requested_dc = max_dc;
2433 } else {
2434 DRM_ERROR("Unexpected value for enable_dc (%d)\n", enable_dc);
2435 requested_dc = max_dc;
2436 }
2437
2438 if (requested_dc > 1)
2439 mask |= DC_STATE_EN_UPTO_DC6;
2440 if (requested_dc > 0)
2441 mask |= DC_STATE_EN_UPTO_DC5;
2442
2443 DRM_DEBUG_KMS("Allowed DC state mask %02x\n", mask);
2444
2445 return mask;
2446}
2447
Imre Deak21792c62017-07-11 23:42:33 +03002448static void assert_power_well_ids_unique(struct drm_i915_private *dev_priv)
2449{
2450 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2451 u64 power_well_ids;
2452 int i;
2453
2454 power_well_ids = 0;
2455 for (i = 0; i < power_domains->power_well_count; i++) {
2456 enum i915_power_well_id id = power_domains->power_wells[i].id;
2457
2458 WARN_ON(id >= sizeof(power_well_ids) * 8);
2459 WARN_ON(power_well_ids & BIT_ULL(id));
2460 power_well_ids |= BIT_ULL(id);
2461 }
2462}
2463
Daniel Vetter9c065a72014-09-30 10:56:38 +02002464#define set_power_wells(power_domains, __power_wells) ({ \
2465 (power_domains)->power_wells = (__power_wells); \
2466 (power_domains)->power_well_count = ARRAY_SIZE(__power_wells); \
2467})
2468
Daniel Vettere4e76842014-09-30 10:56:42 +02002469/**
2470 * intel_power_domains_init - initializes the power domain structures
2471 * @dev_priv: i915 device instance
2472 *
2473 * Initializes the power domain structures for @dev_priv depending upon the
2474 * supported platform.
2475 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02002476int intel_power_domains_init(struct drm_i915_private *dev_priv)
2477{
2478 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2479
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00002480 i915_modparams.disable_power_well =
2481 sanitize_disable_power_well_option(dev_priv,
2482 i915_modparams.disable_power_well);
2483 dev_priv->csr.allowed_dc_mask =
2484 get_allowed_dc_mask(dev_priv, i915_modparams.enable_dc);
Imre Deak1b0e3a02015-11-05 23:04:11 +02002485
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02002486 BUILD_BUG_ON(POWER_DOMAIN_NUM > 64);
Ville Syrjäläf0ab43e2015-11-09 16:48:19 +01002487
Daniel Vetter9c065a72014-09-30 10:56:38 +02002488 mutex_init(&power_domains->lock);
2489
2490 /*
2491 * The enabling order will be from lower to higher indexed wells,
2492 * the disabling order is reversed.
2493 */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002494 if (IS_HASWELL(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002495 set_power_wells(power_domains, hsw_power_wells);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002496 } else if (IS_BROADWELL(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002497 set_power_wells(power_domains, bdw_power_wells);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08002498 } else if (IS_GEN9_BC(dev_priv)) {
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002499 set_power_wells(power_domains, skl_power_wells);
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002500 } else if (IS_CANNONLAKE(dev_priv)) {
2501 set_power_wells(power_domains, cnl_power_wells);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002502 } else if (IS_BROXTON(dev_priv)) {
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302503 set_power_wells(power_domains, bxt_power_wells);
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002504 } else if (IS_GEMINILAKE(dev_priv)) {
2505 set_power_wells(power_domains, glk_power_wells);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002506 } else if (IS_CHERRYVIEW(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002507 set_power_wells(power_domains, chv_power_wells);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002508 } else if (IS_VALLEYVIEW(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002509 set_power_wells(power_domains, vlv_power_wells);
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03002510 } else if (IS_I830(dev_priv)) {
2511 set_power_wells(power_domains, i830_power_wells);
Daniel Vetter9c065a72014-09-30 10:56:38 +02002512 } else {
2513 set_power_wells(power_domains, i9xx_always_on_power_well);
2514 }
2515
Imre Deak21792c62017-07-11 23:42:33 +03002516 assert_power_well_ids_unique(dev_priv);
2517
Daniel Vetter9c065a72014-09-30 10:56:38 +02002518 return 0;
2519}
2520
Daniel Vettere4e76842014-09-30 10:56:42 +02002521/**
2522 * intel_power_domains_fini - finalizes the power domain structures
2523 * @dev_priv: i915 device instance
2524 *
2525 * Finalizes the power domain structures for @dev_priv depending upon the
2526 * supported platform. This function also disables runtime pm and ensures that
2527 * the device stays powered up so that the driver can be reloaded.
2528 */
Daniel Vetterf458ebb2014-09-30 10:56:39 +02002529void intel_power_domains_fini(struct drm_i915_private *dev_priv)
Daniel Vetter9c065a72014-09-30 10:56:38 +02002530{
David Weinehallc49d13e2016-08-22 13:32:42 +03002531 struct device *kdev = &dev_priv->drm.pdev->dev;
Imre Deak25b181b2015-12-17 13:44:56 +02002532
Imre Deakaabee1b2015-12-15 20:10:29 +02002533 /*
2534 * The i915.ko module is still not prepared to be loaded when
Daniel Vetterf458ebb2014-09-30 10:56:39 +02002535 * the power well is not enabled, so just enable it in case
Imre Deakaabee1b2015-12-15 20:10:29 +02002536 * we're going to unload/reload.
2537 * The following also reacquires the RPM reference the core passed
2538 * to the driver during loading, which is dropped in
2539 * intel_runtime_pm_enable(). We have to hand back the control of the
2540 * device to the core with this reference held.
2541 */
Daniel Vetterf458ebb2014-09-30 10:56:39 +02002542 intel_display_set_init_power(dev_priv, true);
Imre Deakd314cd42015-11-17 17:44:23 +02002543
2544 /* Remove the refcount we took to keep power well support disabled. */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00002545 if (!i915_modparams.disable_power_well)
Imre Deakd314cd42015-11-17 17:44:23 +02002546 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
Imre Deak25b181b2015-12-17 13:44:56 +02002547
2548 /*
2549 * Remove the refcount we took in intel_runtime_pm_enable() in case
2550 * the platform doesn't support runtime PM.
2551 */
2552 if (!HAS_RUNTIME_PM(dev_priv))
David Weinehallc49d13e2016-08-22 13:32:42 +03002553 pm_runtime_put(kdev);
Daniel Vetter9c065a72014-09-30 10:56:38 +02002554}
2555
Imre Deak30eade12015-11-04 19:24:13 +02002556static void intel_power_domains_sync_hw(struct drm_i915_private *dev_priv)
Daniel Vetter9c065a72014-09-30 10:56:38 +02002557{
2558 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2559 struct i915_power_well *power_well;
Daniel Vetter9c065a72014-09-30 10:56:38 +02002560
2561 mutex_lock(&power_domains->lock);
Imre Deak75ccb2e2017-02-17 17:39:43 +02002562 for_each_power_well(dev_priv, power_well) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002563 power_well->ops->sync_hw(dev_priv, power_well);
2564 power_well->hw_enabled = power_well->ops->is_enabled(dev_priv,
2565 power_well);
2566 }
2567 mutex_unlock(&power_domains->lock);
2568}
2569
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002570static void gen9_dbuf_enable(struct drm_i915_private *dev_priv)
2571{
2572 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
2573 POSTING_READ(DBUF_CTL);
2574
2575 udelay(10);
2576
2577 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
2578 DRM_ERROR("DBuf power enable timeout\n");
2579}
2580
2581static void gen9_dbuf_disable(struct drm_i915_private *dev_priv)
2582{
2583 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
2584 POSTING_READ(DBUF_CTL);
2585
2586 udelay(10);
2587
2588 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
2589 DRM_ERROR("DBuf power disable timeout!\n");
2590}
2591
Imre Deak73dfc222015-11-17 17:33:53 +02002592static void skl_display_core_init(struct drm_i915_private *dev_priv,
Imre Deak443a93a2016-04-04 15:42:57 +03002593 bool resume)
Imre Deak73dfc222015-11-17 17:33:53 +02002594{
2595 struct i915_power_domains *power_domains = &dev_priv->power_domains;
Imre Deak443a93a2016-04-04 15:42:57 +03002596 struct i915_power_well *well;
Imre Deak73dfc222015-11-17 17:33:53 +02002597 uint32_t val;
2598
Imre Deakd26fa1d2015-11-04 19:24:17 +02002599 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2600
Imre Deak73dfc222015-11-17 17:33:53 +02002601 /* enable PCH reset handshake */
2602 val = I915_READ(HSW_NDE_RSTWRN_OPT);
2603 I915_WRITE(HSW_NDE_RSTWRN_OPT, val | RESET_PCH_HANDSHAKE_ENABLE);
2604
2605 /* enable PG1 and Misc I/O */
2606 mutex_lock(&power_domains->lock);
Imre Deak443a93a2016-04-04 15:42:57 +03002607
2608 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2609 intel_power_well_enable(dev_priv, well);
2610
2611 well = lookup_power_well(dev_priv, SKL_DISP_PW_MISC_IO);
2612 intel_power_well_enable(dev_priv, well);
2613
Imre Deak73dfc222015-11-17 17:33:53 +02002614 mutex_unlock(&power_domains->lock);
2615
Imre Deak73dfc222015-11-17 17:33:53 +02002616 skl_init_cdclk(dev_priv);
2617
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002618 gen9_dbuf_enable(dev_priv);
2619
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03002620 if (resume && dev_priv->csr.dmc_payload)
Imre Deak2abc5252016-03-04 21:57:41 +02002621 intel_csr_load_program(dev_priv);
Imre Deak73dfc222015-11-17 17:33:53 +02002622}
2623
2624static void skl_display_core_uninit(struct drm_i915_private *dev_priv)
2625{
2626 struct i915_power_domains *power_domains = &dev_priv->power_domains;
Imre Deak443a93a2016-04-04 15:42:57 +03002627 struct i915_power_well *well;
Imre Deak73dfc222015-11-17 17:33:53 +02002628
Imre Deakd26fa1d2015-11-04 19:24:17 +02002629 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2630
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002631 gen9_dbuf_disable(dev_priv);
2632
Imre Deak73dfc222015-11-17 17:33:53 +02002633 skl_uninit_cdclk(dev_priv);
2634
2635 /* The spec doesn't call for removing the reset handshake flag */
2636 /* disable PG1 and Misc I/O */
Imre Deak443a93a2016-04-04 15:42:57 +03002637
Imre Deak73dfc222015-11-17 17:33:53 +02002638 mutex_lock(&power_domains->lock);
Imre Deak443a93a2016-04-04 15:42:57 +03002639
Imre Deakedfda8e2017-06-29 18:36:59 +03002640 /*
2641 * BSpec says to keep the MISC IO power well enabled here, only
2642 * remove our request for power well 1.
Imre Deak42d93662017-06-29 18:37:01 +03002643 * Note that even though the driver's request is removed power well 1
2644 * may stay enabled after this due to DMC's own request on it.
Imre Deakedfda8e2017-06-29 18:36:59 +03002645 */
Imre Deak443a93a2016-04-04 15:42:57 +03002646 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2647 intel_power_well_disable(dev_priv, well);
2648
Imre Deak73dfc222015-11-17 17:33:53 +02002649 mutex_unlock(&power_domains->lock);
Imre Deak846c6b22017-06-29 18:36:58 +03002650
2651 usleep_range(10, 30); /* 10 us delay per Bspec */
Imre Deak73dfc222015-11-17 17:33:53 +02002652}
2653
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002654void bxt_display_core_init(struct drm_i915_private *dev_priv,
2655 bool resume)
2656{
2657 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2658 struct i915_power_well *well;
2659 uint32_t val;
2660
2661 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2662
2663 /*
2664 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
2665 * or else the reset will hang because there is no PCH to respond.
2666 * Move the handshake programming to initialization sequence.
2667 * Previously was left up to BIOS.
2668 */
2669 val = I915_READ(HSW_NDE_RSTWRN_OPT);
2670 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
2671 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
2672
2673 /* Enable PG1 */
2674 mutex_lock(&power_domains->lock);
2675
2676 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2677 intel_power_well_enable(dev_priv, well);
2678
2679 mutex_unlock(&power_domains->lock);
2680
Imre Deak324513c2016-06-13 16:44:36 +03002681 bxt_init_cdclk(dev_priv);
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002682
2683 gen9_dbuf_enable(dev_priv);
2684
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002685 if (resume && dev_priv->csr.dmc_payload)
2686 intel_csr_load_program(dev_priv);
2687}
2688
2689void bxt_display_core_uninit(struct drm_i915_private *dev_priv)
2690{
2691 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2692 struct i915_power_well *well;
2693
2694 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2695
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002696 gen9_dbuf_disable(dev_priv);
2697
Imre Deak324513c2016-06-13 16:44:36 +03002698 bxt_uninit_cdclk(dev_priv);
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002699
2700 /* The spec doesn't call for removing the reset handshake flag */
2701
Imre Deak42d93662017-06-29 18:37:01 +03002702 /*
2703 * Disable PW1 (PG1).
2704 * Note that even though the driver's request is removed power well 1
2705 * may stay enabled after this due to DMC's own request on it.
2706 */
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002707 mutex_lock(&power_domains->lock);
2708
2709 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2710 intel_power_well_disable(dev_priv, well);
2711
2712 mutex_unlock(&power_domains->lock);
Imre Deak846c6b22017-06-29 18:36:58 +03002713
2714 usleep_range(10, 30); /* 10 us delay per Bspec */
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002715}
2716
Paulo Zanonie0b8acf2017-08-21 17:03:55 -07002717enum {
2718 PROCMON_0_85V_DOT_0,
2719 PROCMON_0_95V_DOT_0,
2720 PROCMON_0_95V_DOT_1,
2721 PROCMON_1_05V_DOT_0,
2722 PROCMON_1_05V_DOT_1,
2723};
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002724
2725static const struct cnl_procmon {
2726 u32 dw1, dw9, dw10;
Paulo Zanonie0b8acf2017-08-21 17:03:55 -07002727} cnl_procmon_values[] = {
2728 [PROCMON_0_85V_DOT_0] =
2729 { .dw1 = 0x00000000, .dw9 = 0x62AB67BB, .dw10 = 0x51914F96, },
2730 [PROCMON_0_95V_DOT_0] =
2731 { .dw1 = 0x00000000, .dw9 = 0x86E172C7, .dw10 = 0x77CA5EAB, },
2732 [PROCMON_0_95V_DOT_1] =
2733 { .dw1 = 0x00000000, .dw9 = 0x93F87FE1, .dw10 = 0x8AE871C5, },
2734 [PROCMON_1_05V_DOT_0] =
2735 { .dw1 = 0x00000000, .dw9 = 0x98FA82DD, .dw10 = 0x89E46DC1, },
2736 [PROCMON_1_05V_DOT_1] =
2737 { .dw1 = 0x00440000, .dw9 = 0x9A00AB25, .dw10 = 0x8AE38FF1, },
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002738};
2739
Paulo Zanoniade5ee72017-08-21 17:03:56 -07002740static void cnl_set_procmon_ref_values(struct drm_i915_private *dev_priv)
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002741{
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002742 const struct cnl_procmon *procmon;
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002743 u32 val;
2744
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002745 val = I915_READ(CNL_PORT_COMP_DW3);
Paulo Zanonie0b8acf2017-08-21 17:03:55 -07002746 switch (val & (PROCESS_INFO_MASK | VOLTAGE_INFO_MASK)) {
2747 default:
2748 MISSING_CASE(val);
2749 case VOLTAGE_INFO_0_85V | PROCESS_INFO_DOT_0:
2750 procmon = &cnl_procmon_values[PROCMON_0_85V_DOT_0];
2751 break;
2752 case VOLTAGE_INFO_0_95V | PROCESS_INFO_DOT_0:
2753 procmon = &cnl_procmon_values[PROCMON_0_95V_DOT_0];
2754 break;
2755 case VOLTAGE_INFO_0_95V | PROCESS_INFO_DOT_1:
2756 procmon = &cnl_procmon_values[PROCMON_0_95V_DOT_1];
2757 break;
2758 case VOLTAGE_INFO_1_05V | PROCESS_INFO_DOT_0:
2759 procmon = &cnl_procmon_values[PROCMON_1_05V_DOT_0];
2760 break;
2761 case VOLTAGE_INFO_1_05V | PROCESS_INFO_DOT_1:
2762 procmon = &cnl_procmon_values[PROCMON_1_05V_DOT_1];
2763 break;
2764 }
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002765
2766 val = I915_READ(CNL_PORT_COMP_DW1);
2767 val &= ~((0xff << 16) | 0xff);
2768 val |= procmon->dw1;
2769 I915_WRITE(CNL_PORT_COMP_DW1, val);
2770
2771 I915_WRITE(CNL_PORT_COMP_DW9, procmon->dw9);
2772 I915_WRITE(CNL_PORT_COMP_DW10, procmon->dw10);
Paulo Zanoniade5ee72017-08-21 17:03:56 -07002773}
2774
2775static void cnl_display_core_init(struct drm_i915_private *dev_priv, bool resume)
2776{
2777 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2778 struct i915_power_well *well;
2779 u32 val;
2780
2781 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2782
2783 /* 1. Enable PCH Reset Handshake */
2784 val = I915_READ(HSW_NDE_RSTWRN_OPT);
2785 val |= RESET_PCH_HANDSHAKE_ENABLE;
2786 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
2787
2788 /* 2. Enable Comp */
2789 val = I915_READ(CHICKEN_MISC_2);
2790 val &= ~CNL_COMP_PWR_DOWN;
2791 I915_WRITE(CHICKEN_MISC_2, val);
2792
2793 cnl_set_procmon_ref_values(dev_priv);
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002794
2795 val = I915_READ(CNL_PORT_COMP_DW0);
2796 val |= COMP_INIT;
2797 I915_WRITE(CNL_PORT_COMP_DW0, val);
2798
2799 /* 3. */
2800 val = I915_READ(CNL_PORT_CL1CM_DW5);
2801 val |= CL_POWER_DOWN_ENABLE;
2802 I915_WRITE(CNL_PORT_CL1CM_DW5, val);
2803
Imre Deakb38131f2017-06-29 18:37:02 +03002804 /*
2805 * 4. Enable Power Well 1 (PG1).
2806 * The AUX IO power wells will be enabled on demand.
2807 */
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002808 mutex_lock(&power_domains->lock);
2809 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2810 intel_power_well_enable(dev_priv, well);
2811 mutex_unlock(&power_domains->lock);
2812
2813 /* 5. Enable CD clock */
2814 cnl_init_cdclk(dev_priv);
2815
2816 /* 6. Enable DBUF */
2817 gen9_dbuf_enable(dev_priv);
Imre Deak57522c42017-10-03 12:51:58 +03002818
2819 if (resume && dev_priv->csr.dmc_payload)
2820 intel_csr_load_program(dev_priv);
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002821}
2822
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002823static void cnl_display_core_uninit(struct drm_i915_private *dev_priv)
2824{
2825 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2826 struct i915_power_well *well;
2827 u32 val;
2828
2829 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2830
2831 /* 1. Disable all display engine functions -> aready done */
2832
2833 /* 2. Disable DBUF */
2834 gen9_dbuf_disable(dev_priv);
2835
2836 /* 3. Disable CD clock */
2837 cnl_uninit_cdclk(dev_priv);
2838
Imre Deakb38131f2017-06-29 18:37:02 +03002839 /*
2840 * 4. Disable Power Well 1 (PG1).
2841 * The AUX IO power wells are toggled on demand, so they are already
2842 * disabled at this point.
2843 */
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002844 mutex_lock(&power_domains->lock);
2845 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2846 intel_power_well_disable(dev_priv, well);
2847 mutex_unlock(&power_domains->lock);
2848
Imre Deak846c6b22017-06-29 18:36:58 +03002849 usleep_range(10, 30); /* 10 us delay per Bspec */
2850
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002851 /* 5. Disable Comp */
2852 val = I915_READ(CHICKEN_MISC_2);
Paulo Zanoni746a5172017-07-14 14:52:28 -03002853 val |= CNL_COMP_PWR_DOWN;
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002854 I915_WRITE(CHICKEN_MISC_2, val);
2855}
2856
Ville Syrjälä70722462015-04-10 18:21:28 +03002857static void chv_phy_control_init(struct drm_i915_private *dev_priv)
2858{
2859 struct i915_power_well *cmn_bc =
2860 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC);
2861 struct i915_power_well *cmn_d =
2862 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_D);
2863
2864 /*
2865 * DISPLAY_PHY_CONTROL can get corrupted if read. As a
2866 * workaround never ever read DISPLAY_PHY_CONTROL, and
2867 * instead maintain a shadow copy ourselves. Use the actual
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002868 * power well state and lane status to reconstruct the
2869 * expected initial value.
Ville Syrjälä70722462015-04-10 18:21:28 +03002870 */
2871 dev_priv->chv_phy_control =
Ville Syrjäläbc284542015-05-26 20:22:38 +03002872 PHY_LDO_SEQ_DELAY(PHY_LDO_DELAY_600NS, DPIO_PHY0) |
2873 PHY_LDO_SEQ_DELAY(PHY_LDO_DELAY_600NS, DPIO_PHY1) |
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002874 PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY0, DPIO_CH0) |
2875 PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY0, DPIO_CH1) |
2876 PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY1, DPIO_CH0);
2877
2878 /*
2879 * If all lanes are disabled we leave the override disabled
2880 * with all power down bits cleared to match the state we
2881 * would use after disabling the port. Otherwise enable the
2882 * override and set the lane powerdown bits accding to the
2883 * current lane status.
2884 */
2885 if (cmn_bc->ops->is_enabled(dev_priv, cmn_bc)) {
2886 uint32_t status = I915_READ(DPLL(PIPE_A));
2887 unsigned int mask;
2888
2889 mask = status & DPLL_PORTB_READY_MASK;
2890 if (mask == 0xf)
2891 mask = 0x0;
2892 else
2893 dev_priv->chv_phy_control |=
2894 PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH0);
2895
2896 dev_priv->chv_phy_control |=
2897 PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY0, DPIO_CH0);
2898
2899 mask = (status & DPLL_PORTC_READY_MASK) >> 4;
2900 if (mask == 0xf)
2901 mask = 0x0;
2902 else
2903 dev_priv->chv_phy_control |=
2904 PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH1);
2905
2906 dev_priv->chv_phy_control |=
2907 PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY0, DPIO_CH1);
2908
Ville Syrjälä70722462015-04-10 18:21:28 +03002909 dev_priv->chv_phy_control |= PHY_COM_LANE_RESET_DEASSERT(DPIO_PHY0);
Ville Syrjälä3be60de2015-09-08 18:05:45 +03002910
2911 dev_priv->chv_phy_assert[DPIO_PHY0] = false;
2912 } else {
2913 dev_priv->chv_phy_assert[DPIO_PHY0] = true;
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002914 }
2915
2916 if (cmn_d->ops->is_enabled(dev_priv, cmn_d)) {
2917 uint32_t status = I915_READ(DPIO_PHY_STATUS);
2918 unsigned int mask;
2919
2920 mask = status & DPLL_PORTD_READY_MASK;
2921
2922 if (mask == 0xf)
2923 mask = 0x0;
2924 else
2925 dev_priv->chv_phy_control |=
2926 PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY1, DPIO_CH0);
2927
2928 dev_priv->chv_phy_control |=
2929 PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY1, DPIO_CH0);
2930
Ville Syrjälä70722462015-04-10 18:21:28 +03002931 dev_priv->chv_phy_control |= PHY_COM_LANE_RESET_DEASSERT(DPIO_PHY1);
Ville Syrjälä3be60de2015-09-08 18:05:45 +03002932
2933 dev_priv->chv_phy_assert[DPIO_PHY1] = false;
2934 } else {
2935 dev_priv->chv_phy_assert[DPIO_PHY1] = true;
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002936 }
2937
2938 I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
2939
2940 DRM_DEBUG_KMS("Initial PHY_CONTROL=0x%08x\n",
2941 dev_priv->chv_phy_control);
Ville Syrjälä70722462015-04-10 18:21:28 +03002942}
2943
Daniel Vetter9c065a72014-09-30 10:56:38 +02002944static void vlv_cmnlane_wa(struct drm_i915_private *dev_priv)
2945{
2946 struct i915_power_well *cmn =
2947 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC);
2948 struct i915_power_well *disp2d =
2949 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DISP2D);
2950
Daniel Vetter9c065a72014-09-30 10:56:38 +02002951 /* If the display might be already active skip this */
Ville Syrjälä5d93a6e2014-10-16 20:52:33 +03002952 if (cmn->ops->is_enabled(dev_priv, cmn) &&
2953 disp2d->ops->is_enabled(dev_priv, disp2d) &&
Daniel Vetter9c065a72014-09-30 10:56:38 +02002954 I915_READ(DPIO_CTL) & DPIO_CMNRST)
2955 return;
2956
2957 DRM_DEBUG_KMS("toggling display PHY side reset\n");
2958
2959 /* cmnlane needs DPLL registers */
2960 disp2d->ops->enable(dev_priv, disp2d);
2961
2962 /*
2963 * From VLV2A0_DP_eDP_HDMI_DPIO_driver_vbios_notes_11.docx:
2964 * Need to assert and de-assert PHY SB reset by gating the
2965 * common lane power, then un-gating it.
2966 * Simply ungating isn't enough to reset the PHY enough to get
2967 * ports and lanes running.
2968 */
2969 cmn->ops->disable(dev_priv, cmn);
2970}
2971
Daniel Vettere4e76842014-09-30 10:56:42 +02002972/**
2973 * intel_power_domains_init_hw - initialize hardware power domain state
2974 * @dev_priv: i915 device instance
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002975 * @resume: Called from resume code paths or not
Daniel Vettere4e76842014-09-30 10:56:42 +02002976 *
2977 * This function initializes the hardware power domain state and enables all
Imre Deak8d8c3862017-02-17 17:39:46 +02002978 * power wells belonging to the INIT power domain. Power wells in other
2979 * domains (and not in the INIT domain) are referenced or disabled during the
2980 * modeset state HW readout. After that the reference count of each power well
2981 * must match its HW enabled state, see intel_power_domains_verify_state().
Daniel Vettere4e76842014-09-30 10:56:42 +02002982 */
Imre Deak73dfc222015-11-17 17:33:53 +02002983void intel_power_domains_init_hw(struct drm_i915_private *dev_priv, bool resume)
Daniel Vetter9c065a72014-09-30 10:56:38 +02002984{
Daniel Vetter9c065a72014-09-30 10:56:38 +02002985 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2986
2987 power_domains->initializing = true;
2988
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002989 if (IS_CANNONLAKE(dev_priv)) {
2990 cnl_display_core_init(dev_priv, resume);
2991 } else if (IS_GEN9_BC(dev_priv)) {
Imre Deak73dfc222015-11-17 17:33:53 +02002992 skl_display_core_init(dev_priv, resume);
Ander Conselvan de Oliveirab817c442016-12-02 10:23:56 +02002993 } else if (IS_GEN9_LP(dev_priv)) {
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002994 bxt_display_core_init(dev_priv, resume);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002995 } else if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä770effb2015-07-08 23:45:51 +03002996 mutex_lock(&power_domains->lock);
Ville Syrjälä70722462015-04-10 18:21:28 +03002997 chv_phy_control_init(dev_priv);
Ville Syrjälä770effb2015-07-08 23:45:51 +03002998 mutex_unlock(&power_domains->lock);
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01002999 } else if (IS_VALLEYVIEW(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02003000 mutex_lock(&power_domains->lock);
3001 vlv_cmnlane_wa(dev_priv);
3002 mutex_unlock(&power_domains->lock);
3003 }
3004
3005 /* For now, we need the power well to be always enabled. */
3006 intel_display_set_init_power(dev_priv, true);
Imre Deakd314cd42015-11-17 17:44:23 +02003007 /* Disable power support if the user asked so. */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00003008 if (!i915_modparams.disable_power_well)
Imre Deakd314cd42015-11-17 17:44:23 +02003009 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
Imre Deak30eade12015-11-04 19:24:13 +02003010 intel_power_domains_sync_hw(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003011 power_domains->initializing = false;
3012}
3013
Daniel Vettere4e76842014-09-30 10:56:42 +02003014/**
Imre Deak73dfc222015-11-17 17:33:53 +02003015 * intel_power_domains_suspend - suspend power domain state
3016 * @dev_priv: i915 device instance
3017 *
3018 * This function prepares the hardware power domain state before entering
3019 * system suspend. It must be paired with intel_power_domains_init_hw().
3020 */
3021void intel_power_domains_suspend(struct drm_i915_private *dev_priv)
3022{
Imre Deakd314cd42015-11-17 17:44:23 +02003023 /*
3024 * Even if power well support was disabled we still want to disable
3025 * power wells while we are system suspended.
3026 */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00003027 if (!i915_modparams.disable_power_well)
Imre Deakd314cd42015-11-17 17:44:23 +02003028 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
Imre Deak2622d792016-02-29 22:49:02 +02003029
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07003030 if (IS_CANNONLAKE(dev_priv))
3031 cnl_display_core_uninit(dev_priv);
3032 else if (IS_GEN9_BC(dev_priv))
Imre Deak2622d792016-02-29 22:49:02 +02003033 skl_display_core_uninit(dev_priv);
Ander Conselvan de Oliveirab817c442016-12-02 10:23:56 +02003034 else if (IS_GEN9_LP(dev_priv))
Imre Deakd7d7c9e2016-04-01 16:02:42 +03003035 bxt_display_core_uninit(dev_priv);
Imre Deak73dfc222015-11-17 17:33:53 +02003036}
3037
Imre Deak8d8c3862017-02-17 17:39:46 +02003038static void intel_power_domains_dump_info(struct drm_i915_private *dev_priv)
3039{
3040 struct i915_power_domains *power_domains = &dev_priv->power_domains;
3041 struct i915_power_well *power_well;
3042
3043 for_each_power_well(dev_priv, power_well) {
3044 enum intel_display_power_domain domain;
3045
3046 DRM_DEBUG_DRIVER("%-25s %d\n",
3047 power_well->name, power_well->count);
3048
3049 for_each_power_domain(domain, power_well->domains)
3050 DRM_DEBUG_DRIVER(" %-23s %d\n",
3051 intel_display_power_domain_str(domain),
3052 power_domains->domain_use_count[domain]);
3053 }
3054}
3055
3056/**
3057 * intel_power_domains_verify_state - verify the HW/SW state for all power wells
3058 * @dev_priv: i915 device instance
3059 *
3060 * Verify if the reference count of each power well matches its HW enabled
3061 * state and the total refcount of the domains it belongs to. This must be
3062 * called after modeset HW state sanitization, which is responsible for
3063 * acquiring reference counts for any power wells in use and disabling the
3064 * ones left on by BIOS but not required by any active output.
3065 */
3066void intel_power_domains_verify_state(struct drm_i915_private *dev_priv)
3067{
3068 struct i915_power_domains *power_domains = &dev_priv->power_domains;
3069 struct i915_power_well *power_well;
3070 bool dump_domain_info;
3071
3072 mutex_lock(&power_domains->lock);
3073
3074 dump_domain_info = false;
3075 for_each_power_well(dev_priv, power_well) {
3076 enum intel_display_power_domain domain;
3077 int domains_count;
3078 bool enabled;
3079
3080 /*
3081 * Power wells not belonging to any domain (like the MISC_IO
3082 * and PW1 power wells) are under FW control, so ignore them,
3083 * since their state can change asynchronously.
3084 */
3085 if (!power_well->domains)
3086 continue;
3087
3088 enabled = power_well->ops->is_enabled(dev_priv, power_well);
3089 if ((power_well->count || power_well->always_on) != enabled)
3090 DRM_ERROR("power well %s state mismatch (refcount %d/enabled %d)",
3091 power_well->name, power_well->count, enabled);
3092
3093 domains_count = 0;
3094 for_each_power_domain(domain, power_well->domains)
3095 domains_count += power_domains->domain_use_count[domain];
3096
3097 if (power_well->count != domains_count) {
3098 DRM_ERROR("power well %s refcount/domain refcount mismatch "
3099 "(refcount %d/domains refcount %d)\n",
3100 power_well->name, power_well->count,
3101 domains_count);
3102 dump_domain_info = true;
3103 }
3104 }
3105
3106 if (dump_domain_info) {
3107 static bool dumped;
3108
3109 if (!dumped) {
3110 intel_power_domains_dump_info(dev_priv);
3111 dumped = true;
3112 }
3113 }
3114
3115 mutex_unlock(&power_domains->lock);
3116}
3117
Imre Deak73dfc222015-11-17 17:33:53 +02003118/**
Daniel Vettere4e76842014-09-30 10:56:42 +02003119 * intel_runtime_pm_get - grab a runtime pm reference
3120 * @dev_priv: i915 device instance
3121 *
3122 * This function grabs a device-level runtime pm reference (mostly used for GEM
3123 * code to ensure the GTT or GT is on) and ensures that it is powered up.
3124 *
3125 * Any runtime pm reference obtained by this function must have a symmetric
3126 * call to intel_runtime_pm_put() to release the reference again.
3127 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02003128void intel_runtime_pm_get(struct drm_i915_private *dev_priv)
3129{
David Weinehall52a05c32016-08-22 13:32:44 +03003130 struct pci_dev *pdev = dev_priv->drm.pdev;
3131 struct device *kdev = &pdev->dev;
Imre Deakf5073822017-03-28 12:38:55 +03003132 int ret;
Daniel Vetter9c065a72014-09-30 10:56:38 +02003133
Imre Deakf5073822017-03-28 12:38:55 +03003134 ret = pm_runtime_get_sync(kdev);
3135 WARN_ONCE(ret < 0, "pm_runtime_get_sync() failed: %d\n", ret);
Imre Deak1f814da2015-12-16 02:52:19 +02003136
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01003137 atomic_inc(&dev_priv->runtime_pm.wakeref_count);
Imre Deakc9b88462015-12-15 20:10:34 +02003138 assert_rpm_wakelock_held(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003139}
3140
Daniel Vettere4e76842014-09-30 10:56:42 +02003141/**
Imre Deak09731282016-02-17 14:17:42 +02003142 * intel_runtime_pm_get_if_in_use - grab a runtime pm reference if device in use
3143 * @dev_priv: i915 device instance
3144 *
3145 * This function grabs a device-level runtime pm reference if the device is
3146 * already in use and ensures that it is powered up.
3147 *
3148 * Any runtime pm reference obtained by this function must have a symmetric
3149 * call to intel_runtime_pm_put() to release the reference again.
3150 */
3151bool intel_runtime_pm_get_if_in_use(struct drm_i915_private *dev_priv)
3152{
David Weinehall52a05c32016-08-22 13:32:44 +03003153 struct pci_dev *pdev = dev_priv->drm.pdev;
3154 struct device *kdev = &pdev->dev;
Imre Deak09731282016-02-17 14:17:42 +02003155
Chris Wilson135dc792016-02-25 21:10:28 +00003156 if (IS_ENABLED(CONFIG_PM)) {
David Weinehallc49d13e2016-08-22 13:32:42 +03003157 int ret = pm_runtime_get_if_in_use(kdev);
Imre Deak09731282016-02-17 14:17:42 +02003158
Chris Wilson135dc792016-02-25 21:10:28 +00003159 /*
3160 * In cases runtime PM is disabled by the RPM core and we get
3161 * an -EINVAL return value we are not supposed to call this
3162 * function, since the power state is undefined. This applies
3163 * atm to the late/early system suspend/resume handlers.
3164 */
Imre Deakf5073822017-03-28 12:38:55 +03003165 WARN_ONCE(ret < 0,
3166 "pm_runtime_get_if_in_use() failed: %d\n", ret);
Chris Wilson135dc792016-02-25 21:10:28 +00003167 if (ret <= 0)
3168 return false;
3169 }
Imre Deak09731282016-02-17 14:17:42 +02003170
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01003171 atomic_inc(&dev_priv->runtime_pm.wakeref_count);
Imre Deak09731282016-02-17 14:17:42 +02003172 assert_rpm_wakelock_held(dev_priv);
3173
3174 return true;
3175}
3176
3177/**
Daniel Vettere4e76842014-09-30 10:56:42 +02003178 * intel_runtime_pm_get_noresume - grab a runtime pm reference
3179 * @dev_priv: i915 device instance
3180 *
3181 * This function grabs a device-level runtime pm reference (mostly used for GEM
3182 * code to ensure the GTT or GT is on).
3183 *
3184 * It will _not_ power up the device but instead only check that it's powered
3185 * on. Therefore it is only valid to call this functions from contexts where
3186 * the device is known to be powered up and where trying to power it up would
3187 * result in hilarity and deadlocks. That pretty much means only the system
3188 * suspend/resume code where this is used to grab runtime pm references for
3189 * delayed setup down in work items.
3190 *
3191 * Any runtime pm reference obtained by this function must have a symmetric
3192 * call to intel_runtime_pm_put() to release the reference again.
3193 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02003194void intel_runtime_pm_get_noresume(struct drm_i915_private *dev_priv)
3195{
David Weinehall52a05c32016-08-22 13:32:44 +03003196 struct pci_dev *pdev = dev_priv->drm.pdev;
3197 struct device *kdev = &pdev->dev;
Daniel Vetter9c065a72014-09-30 10:56:38 +02003198
Imre Deakc9b88462015-12-15 20:10:34 +02003199 assert_rpm_wakelock_held(dev_priv);
David Weinehallc49d13e2016-08-22 13:32:42 +03003200 pm_runtime_get_noresume(kdev);
Imre Deak1f814da2015-12-16 02:52:19 +02003201
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01003202 atomic_inc(&dev_priv->runtime_pm.wakeref_count);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003203}
3204
Daniel Vettere4e76842014-09-30 10:56:42 +02003205/**
3206 * intel_runtime_pm_put - release a runtime pm reference
3207 * @dev_priv: i915 device instance
3208 *
3209 * This function drops the device-level runtime pm reference obtained by
3210 * intel_runtime_pm_get() and might power down the corresponding
3211 * hardware block right away if this is the last reference.
3212 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02003213void intel_runtime_pm_put(struct drm_i915_private *dev_priv)
3214{
David Weinehall52a05c32016-08-22 13:32:44 +03003215 struct pci_dev *pdev = dev_priv->drm.pdev;
3216 struct device *kdev = &pdev->dev;
Daniel Vetter9c065a72014-09-30 10:56:38 +02003217
Imre Deak542db3c2015-12-15 20:10:36 +02003218 assert_rpm_wakelock_held(dev_priv);
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01003219 atomic_dec(&dev_priv->runtime_pm.wakeref_count);
Imre Deak1f814da2015-12-16 02:52:19 +02003220
David Weinehallc49d13e2016-08-22 13:32:42 +03003221 pm_runtime_mark_last_busy(kdev);
3222 pm_runtime_put_autosuspend(kdev);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003223}
3224
Daniel Vettere4e76842014-09-30 10:56:42 +02003225/**
3226 * intel_runtime_pm_enable - enable runtime pm
3227 * @dev_priv: i915 device instance
3228 *
3229 * This function enables runtime pm at the end of the driver load sequence.
3230 *
3231 * Note that this function does currently not enable runtime pm for the
3232 * subordinate display power domains. That is only done on the first modeset
3233 * using intel_display_set_init_power().
3234 */
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003235void intel_runtime_pm_enable(struct drm_i915_private *dev_priv)
Daniel Vetter9c065a72014-09-30 10:56:38 +02003236{
David Weinehall52a05c32016-08-22 13:32:44 +03003237 struct pci_dev *pdev = dev_priv->drm.pdev;
David Weinehall52a05c32016-08-22 13:32:44 +03003238 struct device *kdev = &pdev->dev;
Daniel Vetter9c065a72014-09-30 10:56:38 +02003239
David Weinehallc49d13e2016-08-22 13:32:42 +03003240 pm_runtime_set_autosuspend_delay(kdev, 10000); /* 10s */
3241 pm_runtime_mark_last_busy(kdev);
Imre Deakcbc68dc2015-12-17 19:04:33 +02003242
Imre Deak25b181b2015-12-17 13:44:56 +02003243 /*
3244 * Take a permanent reference to disable the RPM functionality and drop
3245 * it only when unloading the driver. Use the low level get/put helpers,
3246 * so the driver's own RPM reference tracking asserts also work on
3247 * platforms without RPM support.
3248 */
Tvrtko Ursulin6772ffe2016-10-13 11:02:55 +01003249 if (!HAS_RUNTIME_PM(dev_priv)) {
Imre Deakf5073822017-03-28 12:38:55 +03003250 int ret;
3251
David Weinehallc49d13e2016-08-22 13:32:42 +03003252 pm_runtime_dont_use_autosuspend(kdev);
Imre Deakf5073822017-03-28 12:38:55 +03003253 ret = pm_runtime_get_sync(kdev);
3254 WARN(ret < 0, "pm_runtime_get_sync() failed: %d\n", ret);
Imre Deakcbc68dc2015-12-17 19:04:33 +02003255 } else {
David Weinehallc49d13e2016-08-22 13:32:42 +03003256 pm_runtime_use_autosuspend(kdev);
Imre Deakcbc68dc2015-12-17 19:04:33 +02003257 }
Daniel Vetter9c065a72014-09-30 10:56:38 +02003258
Imre Deakaabee1b2015-12-15 20:10:29 +02003259 /*
3260 * The core calls the driver load handler with an RPM reference held.
3261 * We drop that here and will reacquire it during unloading in
3262 * intel_power_domains_fini().
3263 */
David Weinehallc49d13e2016-08-22 13:32:42 +03003264 pm_runtime_put_autosuspend(kdev);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003265}