blob: db9d57f3953419e5b204ac8792d5ba62cf7eb31a [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) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001729 BIT_ULL(POWER_DOMAIN_INIT))
1730#define BXT_DISPLAY_DC_OFF_POWER_DOMAINS ( \
1731 BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
Tvrtko Ursulinb6876372017-12-05 13:28:54 +00001732 BIT_ULL(POWER_DOMAIN_GT_IRQ) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001733 BIT_ULL(POWER_DOMAIN_MODESET) | \
1734 BIT_ULL(POWER_DOMAIN_AUX_A) | \
Ville Syrjälä54c105d2017-12-08 23:37:37 +02001735 BIT_ULL(POWER_DOMAIN_GMBUS) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001736 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) | \
Ville Syrjälä156961a2017-12-08 23:37:36 +02001795 BIT_ULL(POWER_DOMAIN_GMBUS) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001796 BIT_ULL(POWER_DOMAIN_INIT))
1797
1798#define CNL_DISPLAY_POWERWELL_2_POWER_DOMAINS ( \
1799 BIT_ULL(POWER_DOMAIN_TRANSCODER_A) | \
1800 BIT_ULL(POWER_DOMAIN_PIPE_B) | \
1801 BIT_ULL(POWER_DOMAIN_TRANSCODER_B) | \
1802 BIT_ULL(POWER_DOMAIN_PIPE_C) | \
1803 BIT_ULL(POWER_DOMAIN_TRANSCODER_C) | \
1804 BIT_ULL(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
1805 BIT_ULL(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
1806 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_LANES) | \
1807 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_LANES) | \
1808 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_LANES) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001809 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1810 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1811 BIT_ULL(POWER_DOMAIN_AUX_D) | \
1812 BIT_ULL(POWER_DOMAIN_AUDIO) | \
1813 BIT_ULL(POWER_DOMAIN_VGA) | \
1814 BIT_ULL(POWER_DOMAIN_INIT))
1815#define CNL_DISPLAY_DDI_A_IO_POWER_DOMAINS ( \
1816 BIT_ULL(POWER_DOMAIN_PORT_DDI_A_IO) | \
Imre Deak965a79a2017-07-06 17:40:40 +03001817 BIT_ULL(POWER_DOMAIN_INIT))
1818#define CNL_DISPLAY_DDI_B_IO_POWER_DOMAINS ( \
1819 BIT_ULL(POWER_DOMAIN_PORT_DDI_B_IO) | \
1820 BIT_ULL(POWER_DOMAIN_INIT))
1821#define CNL_DISPLAY_DDI_C_IO_POWER_DOMAINS ( \
1822 BIT_ULL(POWER_DOMAIN_PORT_DDI_C_IO) | \
1823 BIT_ULL(POWER_DOMAIN_INIT))
1824#define CNL_DISPLAY_DDI_D_IO_POWER_DOMAINS ( \
1825 BIT_ULL(POWER_DOMAIN_PORT_DDI_D_IO) | \
1826 BIT_ULL(POWER_DOMAIN_INIT))
1827#define CNL_DISPLAY_AUX_A_POWER_DOMAINS ( \
1828 BIT_ULL(POWER_DOMAIN_AUX_A) | \
1829 BIT_ULL(POWER_DOMAIN_INIT))
1830#define CNL_DISPLAY_AUX_B_POWER_DOMAINS ( \
1831 BIT_ULL(POWER_DOMAIN_AUX_B) | \
1832 BIT_ULL(POWER_DOMAIN_INIT))
1833#define CNL_DISPLAY_AUX_C_POWER_DOMAINS ( \
1834 BIT_ULL(POWER_DOMAIN_AUX_C) | \
1835 BIT_ULL(POWER_DOMAIN_INIT))
1836#define CNL_DISPLAY_AUX_D_POWER_DOMAINS ( \
1837 BIT_ULL(POWER_DOMAIN_AUX_D) | \
1838 BIT_ULL(POWER_DOMAIN_INIT))
1839#define CNL_DISPLAY_DC_OFF_POWER_DOMAINS ( \
1840 CNL_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
1841 BIT_ULL(POWER_DOMAIN_MODESET) | \
1842 BIT_ULL(POWER_DOMAIN_AUX_A) | \
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03001843 BIT_ULL(POWER_DOMAIN_INIT))
1844
Daniel Vetter9c065a72014-09-30 10:56:38 +02001845static const struct i915_power_well_ops i9xx_always_on_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001846 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001847 .enable = i9xx_always_on_power_well_noop,
1848 .disable = i9xx_always_on_power_well_noop,
1849 .is_enabled = i9xx_always_on_power_well_enabled,
1850};
1851
1852static const struct i915_power_well_ops chv_pipe_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001853 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001854 .enable = chv_pipe_power_well_enable,
1855 .disable = chv_pipe_power_well_disable,
1856 .is_enabled = chv_pipe_power_well_enabled,
1857};
1858
1859static const struct i915_power_well_ops chv_dpio_cmn_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001860 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001861 .enable = chv_dpio_cmn_power_well_enable,
1862 .disable = chv_dpio_cmn_power_well_disable,
1863 .is_enabled = vlv_power_well_enabled,
1864};
1865
1866static struct i915_power_well i9xx_always_on_power_well[] = {
1867 {
1868 .name = "always-on",
1869 .always_on = 1,
1870 .domains = POWER_DOMAIN_MASK,
1871 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03001872 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001873 },
1874};
1875
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03001876static const struct i915_power_well_ops i830_pipes_power_well_ops = {
1877 .sync_hw = i830_pipes_power_well_sync_hw,
1878 .enable = i830_pipes_power_well_enable,
1879 .disable = i830_pipes_power_well_disable,
1880 .is_enabled = i830_pipes_power_well_enabled,
1881};
1882
1883static struct i915_power_well i830_power_wells[] = {
1884 {
1885 .name = "always-on",
1886 .always_on = 1,
1887 .domains = POWER_DOMAIN_MASK,
1888 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03001889 .id = I915_DISP_PW_ALWAYS_ON,
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03001890 },
1891 {
1892 .name = "pipes",
1893 .domains = I830_PIPES_POWER_DOMAINS,
1894 .ops = &i830_pipes_power_well_ops,
Imre Deak120b56a2017-07-11 23:42:31 +03001895 .id = I830_DISP_PW_PIPES,
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03001896 },
1897};
1898
Daniel Vetter9c065a72014-09-30 10:56:38 +02001899static const struct i915_power_well_ops hsw_power_well_ops = {
1900 .sync_hw = hsw_power_well_sync_hw,
1901 .enable = hsw_power_well_enable,
1902 .disable = hsw_power_well_disable,
1903 .is_enabled = hsw_power_well_enabled,
1904};
1905
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01001906static const struct i915_power_well_ops gen9_dc_off_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001907 .sync_hw = i9xx_power_well_sync_hw_noop,
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01001908 .enable = gen9_dc_off_power_well_enable,
1909 .disable = gen9_dc_off_power_well_disable,
1910 .is_enabled = gen9_dc_off_power_well_enabled,
1911};
1912
Imre Deak9c8d0b82016-06-13 16:44:34 +03001913static const struct i915_power_well_ops bxt_dpio_cmn_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001914 .sync_hw = i9xx_power_well_sync_hw_noop,
Imre Deak9c8d0b82016-06-13 16:44:34 +03001915 .enable = bxt_dpio_cmn_power_well_enable,
1916 .disable = bxt_dpio_cmn_power_well_disable,
1917 .is_enabled = bxt_dpio_cmn_power_well_enabled,
1918};
1919
Daniel Vetter9c065a72014-09-30 10:56:38 +02001920static struct i915_power_well hsw_power_wells[] = {
1921 {
1922 .name = "always-on",
1923 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03001924 .domains = POWER_DOMAIN_MASK,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001925 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03001926 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001927 },
1928 {
1929 .name = "display",
1930 .domains = HSW_DISPLAY_POWER_DOMAINS,
1931 .ops = &hsw_power_well_ops,
Imre Deakfb9248e2017-07-11 23:42:32 +03001932 .id = HSW_DISP_PW_GLOBAL,
Imre Deak0a445942017-08-14 18:15:29 +03001933 {
1934 .hsw.has_vga = true,
1935 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02001936 },
1937};
1938
1939static struct i915_power_well bdw_power_wells[] = {
1940 {
1941 .name = "always-on",
1942 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03001943 .domains = POWER_DOMAIN_MASK,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001944 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03001945 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001946 },
1947 {
1948 .name = "display",
1949 .domains = BDW_DISPLAY_POWER_DOMAINS,
1950 .ops = &hsw_power_well_ops,
Imre Deakfb9248e2017-07-11 23:42:32 +03001951 .id = HSW_DISP_PW_GLOBAL,
Imre Deak0a445942017-08-14 18:15:29 +03001952 {
1953 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
1954 .hsw.has_vga = true,
1955 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02001956 },
1957};
1958
1959static const struct i915_power_well_ops vlv_display_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001960 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001961 .enable = vlv_display_power_well_enable,
1962 .disable = vlv_display_power_well_disable,
1963 .is_enabled = vlv_power_well_enabled,
1964};
1965
1966static const struct i915_power_well_ops vlv_dpio_cmn_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001967 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001968 .enable = vlv_dpio_cmn_power_well_enable,
1969 .disable = vlv_dpio_cmn_power_well_disable,
1970 .is_enabled = vlv_power_well_enabled,
1971};
1972
1973static const struct i915_power_well_ops vlv_dpio_power_well_ops = {
Imre Deak3c1b38e2017-02-17 17:39:42 +02001974 .sync_hw = i9xx_power_well_sync_hw_noop,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001975 .enable = vlv_power_well_enable,
1976 .disable = vlv_power_well_disable,
1977 .is_enabled = vlv_power_well_enabled,
1978};
1979
1980static struct i915_power_well vlv_power_wells[] = {
1981 {
1982 .name = "always-on",
1983 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03001984 .domains = POWER_DOMAIN_MASK,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001985 .ops = &i9xx_always_on_power_well_ops,
Imre Deak438b8dc2017-07-11 23:42:30 +03001986 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001987 },
1988 {
1989 .name = "display",
1990 .domains = VLV_DISPLAY_POWER_DOMAINS,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03001991 .id = PUNIT_POWER_WELL_DISP2D,
Daniel Vetter9c065a72014-09-30 10:56:38 +02001992 .ops = &vlv_display_power_well_ops,
1993 },
1994 {
1995 .name = "dpio-tx-b-01",
1996 .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
1997 VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
1998 VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
1999 VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
2000 .ops = &vlv_dpio_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002001 .id = PUNIT_POWER_WELL_DPIO_TX_B_LANES_01,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002002 },
2003 {
2004 .name = "dpio-tx-b-23",
2005 .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
2006 VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
2007 VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
2008 VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
2009 .ops = &vlv_dpio_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002010 .id = PUNIT_POWER_WELL_DPIO_TX_B_LANES_23,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002011 },
2012 {
2013 .name = "dpio-tx-c-01",
2014 .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
2015 VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
2016 VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
2017 VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
2018 .ops = &vlv_dpio_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002019 .id = PUNIT_POWER_WELL_DPIO_TX_C_LANES_01,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002020 },
2021 {
2022 .name = "dpio-tx-c-23",
2023 .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
2024 VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
2025 VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
2026 VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
2027 .ops = &vlv_dpio_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002028 .id = PUNIT_POWER_WELL_DPIO_TX_C_LANES_23,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002029 },
2030 {
2031 .name = "dpio-common",
2032 .domains = VLV_DPIO_CMN_BC_POWER_DOMAINS,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002033 .id = PUNIT_POWER_WELL_DPIO_CMN_BC,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002034 .ops = &vlv_dpio_cmn_power_well_ops,
2035 },
2036};
2037
2038static struct i915_power_well chv_power_wells[] = {
2039 {
2040 .name = "always-on",
2041 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03002042 .domains = POWER_DOMAIN_MASK,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002043 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03002044 .id = I915_DISP_PW_ALWAYS_ON,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002045 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02002046 {
2047 .name = "display",
Ville Syrjäläbaa4e572014-10-27 16:07:32 +02002048 /*
Ville Syrjäläfde61e42015-05-26 20:22:39 +03002049 * Pipe A power well is the new disp2d well. Pipe B and C
2050 * power wells don't actually exist. Pipe A power well is
2051 * required for any pipe to work.
Ville Syrjäläbaa4e572014-10-27 16:07:32 +02002052 */
Ville Syrjälä465ac0c2016-04-18 14:02:27 +03002053 .domains = CHV_DISPLAY_POWER_DOMAINS,
Imre Deakf49193c2017-07-06 17:40:23 +03002054 .id = CHV_DISP_PW_PIPE_A,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002055 .ops = &chv_pipe_power_well_ops,
2056 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02002057 {
2058 .name = "dpio-common-bc",
Ville Syrjälä71849b62015-04-10 18:21:29 +03002059 .domains = CHV_DPIO_CMN_BC_POWER_DOMAINS,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002060 .id = PUNIT_POWER_WELL_DPIO_CMN_BC,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002061 .ops = &chv_dpio_cmn_power_well_ops,
2062 },
2063 {
2064 .name = "dpio-common-d",
Ville Syrjälä71849b62015-04-10 18:21:29 +03002065 .domains = CHV_DPIO_CMN_D_POWER_DOMAINS,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002066 .id = PUNIT_POWER_WELL_DPIO_CMN_D,
Daniel Vetter9c065a72014-09-30 10:56:38 +02002067 .ops = &chv_dpio_cmn_power_well_ops,
2068 },
Daniel Vetter9c065a72014-09-30 10:56:38 +02002069};
2070
Suketu Shah5aefb232015-04-16 14:22:10 +05302071bool intel_display_power_well_is_enabled(struct drm_i915_private *dev_priv,
Imre Deak438b8dc2017-07-11 23:42:30 +03002072 enum i915_power_well_id power_well_id)
Suketu Shah5aefb232015-04-16 14:22:10 +05302073{
2074 struct i915_power_well *power_well;
2075 bool ret;
2076
2077 power_well = lookup_power_well(dev_priv, power_well_id);
2078 ret = power_well->ops->is_enabled(dev_priv, power_well);
2079
2080 return ret;
2081}
2082
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002083static struct i915_power_well skl_power_wells[] = {
2084 {
2085 .name = "always-on",
2086 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03002087 .domains = POWER_DOMAIN_MASK,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002088 .ops = &i9xx_always_on_power_well_ops,
Imre Deak438b8dc2017-07-11 23:42:30 +03002089 .id = I915_DISP_PW_ALWAYS_ON,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002090 },
2091 {
2092 .name = "power well 1",
Imre Deak4a76f292015-11-04 19:24:15 +02002093 /* Handled by the DMC firmware */
2094 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002095 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002096 .id = SKL_DISP_PW_1,
Imre Deak0a445942017-08-14 18:15:29 +03002097 {
2098 .hsw.has_fuses = true,
2099 },
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002100 },
2101 {
2102 .name = "MISC IO power well",
Imre Deak4a76f292015-11-04 19:24:15 +02002103 /* Handled by the DMC firmware */
2104 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002105 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002106 .id = SKL_DISP_PW_MISC_IO,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002107 },
2108 {
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002109 .name = "DC off",
2110 .domains = SKL_DISPLAY_DC_OFF_POWER_DOMAINS,
2111 .ops = &gen9_dc_off_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002112 .id = SKL_DISP_PW_DC_OFF,
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002113 },
2114 {
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002115 .name = "power well 2",
2116 .domains = SKL_DISPLAY_POWERWELL_2_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002117 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002118 .id = SKL_DISP_PW_2,
Imre Deak0a445942017-08-14 18:15:29 +03002119 {
2120 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
2121 .hsw.has_vga = true,
2122 .hsw.has_fuses = true,
2123 },
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002124 },
2125 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002126 .name = "DDI A/E IO power well",
2127 .domains = SKL_DISPLAY_DDI_IO_A_E_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002128 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002129 .id = SKL_DISP_PW_DDI_A_E,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002130 },
2131 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002132 .name = "DDI B IO power well",
2133 .domains = SKL_DISPLAY_DDI_IO_B_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002134 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002135 .id = SKL_DISP_PW_DDI_B,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002136 },
2137 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002138 .name = "DDI C IO power well",
2139 .domains = SKL_DISPLAY_DDI_IO_C_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002140 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002141 .id = SKL_DISP_PW_DDI_C,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002142 },
2143 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002144 .name = "DDI D IO power well",
2145 .domains = SKL_DISPLAY_DDI_IO_D_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002146 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002147 .id = SKL_DISP_PW_DDI_D,
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002148 },
2149};
2150
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302151static struct i915_power_well bxt_power_wells[] = {
2152 {
2153 .name = "always-on",
2154 .always_on = 1,
Ville Syrjälä998bd662016-04-18 14:02:26 +03002155 .domains = POWER_DOMAIN_MASK,
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302156 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03002157 .id = I915_DISP_PW_ALWAYS_ON,
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302158 },
2159 {
2160 .name = "power well 1",
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002161 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002162 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002163 .id = SKL_DISP_PW_1,
Imre Deak0a445942017-08-14 18:15:29 +03002164 {
2165 .hsw.has_fuses = true,
2166 },
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302167 },
2168 {
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002169 .name = "DC off",
2170 .domains = BXT_DISPLAY_DC_OFF_POWER_DOMAINS,
2171 .ops = &gen9_dc_off_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002172 .id = SKL_DISP_PW_DC_OFF,
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002173 },
2174 {
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302175 .name = "power well 2",
2176 .domains = BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002177 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002178 .id = SKL_DISP_PW_2,
Imre Deak0a445942017-08-14 18:15:29 +03002179 {
2180 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
2181 .hsw.has_vga = true,
2182 .hsw.has_fuses = true,
2183 },
Patrik Jakobsson9f836f92015-11-16 16:20:01 +01002184 },
Imre Deak9c8d0b82016-06-13 16:44:34 +03002185 {
2186 .name = "dpio-common-a",
2187 .domains = BXT_DPIO_CMN_A_POWER_DOMAINS,
2188 .ops = &bxt_dpio_cmn_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002189 .id = BXT_DPIO_CMN_A,
Imre Deak0a445942017-08-14 18:15:29 +03002190 {
2191 .bxt.phy = DPIO_PHY1,
2192 },
Imre Deak9c8d0b82016-06-13 16:44:34 +03002193 },
2194 {
2195 .name = "dpio-common-bc",
2196 .domains = BXT_DPIO_CMN_BC_POWER_DOMAINS,
2197 .ops = &bxt_dpio_cmn_power_well_ops,
Ander Conselvan de Oliveira01c3faa2016-10-06 19:22:14 +03002198 .id = BXT_DPIO_CMN_BC,
Imre Deak0a445942017-08-14 18:15:29 +03002199 {
2200 .bxt.phy = DPIO_PHY0,
2201 },
Imre Deak9c8d0b82016-06-13 16:44:34 +03002202 },
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302203};
2204
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002205static struct i915_power_well glk_power_wells[] = {
2206 {
2207 .name = "always-on",
2208 .always_on = 1,
2209 .domains = POWER_DOMAIN_MASK,
2210 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03002211 .id = I915_DISP_PW_ALWAYS_ON,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002212 },
2213 {
2214 .name = "power well 1",
2215 /* Handled by the DMC firmware */
2216 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002217 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002218 .id = SKL_DISP_PW_1,
Imre Deak0a445942017-08-14 18:15:29 +03002219 {
2220 .hsw.has_fuses = true,
2221 },
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002222 },
2223 {
2224 .name = "DC off",
2225 .domains = GLK_DISPLAY_DC_OFF_POWER_DOMAINS,
2226 .ops = &gen9_dc_off_power_well_ops,
2227 .id = SKL_DISP_PW_DC_OFF,
2228 },
2229 {
2230 .name = "power well 2",
2231 .domains = GLK_DISPLAY_POWERWELL_2_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002232 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002233 .id = SKL_DISP_PW_2,
Imre Deak0a445942017-08-14 18:15:29 +03002234 {
2235 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
2236 .hsw.has_vga = true,
2237 .hsw.has_fuses = true,
2238 },
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002239 },
2240 {
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +02002241 .name = "dpio-common-a",
2242 .domains = GLK_DPIO_CMN_A_POWER_DOMAINS,
2243 .ops = &bxt_dpio_cmn_power_well_ops,
2244 .id = BXT_DPIO_CMN_A,
Imre Deak0a445942017-08-14 18:15:29 +03002245 {
2246 .bxt.phy = DPIO_PHY1,
2247 },
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +02002248 },
2249 {
2250 .name = "dpio-common-b",
2251 .domains = GLK_DPIO_CMN_B_POWER_DOMAINS,
2252 .ops = &bxt_dpio_cmn_power_well_ops,
2253 .id = BXT_DPIO_CMN_BC,
Imre Deak0a445942017-08-14 18:15:29 +03002254 {
2255 .bxt.phy = DPIO_PHY0,
2256 },
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +02002257 },
2258 {
2259 .name = "dpio-common-c",
2260 .domains = GLK_DPIO_CMN_C_POWER_DOMAINS,
2261 .ops = &bxt_dpio_cmn_power_well_ops,
2262 .id = GLK_DPIO_CMN_C,
Imre Deak0a445942017-08-14 18:15:29 +03002263 {
2264 .bxt.phy = DPIO_PHY2,
2265 },
Ander Conselvan de Oliveira0a116ce2016-12-02 10:23:51 +02002266 },
2267 {
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002268 .name = "AUX A",
2269 .domains = GLK_DISPLAY_AUX_A_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002270 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002271 .id = GLK_DISP_PW_AUX_A,
2272 },
2273 {
2274 .name = "AUX B",
2275 .domains = GLK_DISPLAY_AUX_B_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002276 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002277 .id = GLK_DISP_PW_AUX_B,
2278 },
2279 {
2280 .name = "AUX C",
2281 .domains = GLK_DISPLAY_AUX_C_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002282 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002283 .id = GLK_DISP_PW_AUX_C,
2284 },
2285 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002286 .name = "DDI A IO power well",
2287 .domains = GLK_DISPLAY_DDI_IO_A_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002288 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002289 .id = GLK_DISP_PW_DDI_A,
2290 },
2291 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002292 .name = "DDI B IO power well",
2293 .domains = GLK_DISPLAY_DDI_IO_B_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002294 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002295 .id = SKL_DISP_PW_DDI_B,
2296 },
2297 {
Ander Conselvan de Oliveira62b69562017-02-24 16:19:59 +02002298 .name = "DDI C IO power well",
2299 .domains = GLK_DISPLAY_DDI_IO_C_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002300 .ops = &hsw_power_well_ops,
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002301 .id = SKL_DISP_PW_DDI_C,
2302 },
2303};
2304
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002305static struct i915_power_well cnl_power_wells[] = {
2306 {
2307 .name = "always-on",
2308 .always_on = 1,
2309 .domains = POWER_DOMAIN_MASK,
2310 .ops = &i9xx_always_on_power_well_ops,
Imre Deak029d80d2017-07-06 17:40:25 +03002311 .id = I915_DISP_PW_ALWAYS_ON,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002312 },
2313 {
2314 .name = "power well 1",
2315 /* Handled by the DMC firmware */
2316 .domains = 0,
Imre Deak4196b912017-07-11 23:42:36 +03002317 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002318 .id = SKL_DISP_PW_1,
Imre Deak0a445942017-08-14 18:15:29 +03002319 {
2320 .hsw.has_fuses = true,
2321 },
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002322 },
2323 {
2324 .name = "AUX A",
2325 .domains = CNL_DISPLAY_AUX_A_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002326 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002327 .id = CNL_DISP_PW_AUX_A,
2328 },
2329 {
2330 .name = "AUX B",
2331 .domains = CNL_DISPLAY_AUX_B_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002332 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002333 .id = CNL_DISP_PW_AUX_B,
2334 },
2335 {
2336 .name = "AUX C",
2337 .domains = CNL_DISPLAY_AUX_C_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002338 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002339 .id = CNL_DISP_PW_AUX_C,
2340 },
2341 {
2342 .name = "AUX D",
2343 .domains = CNL_DISPLAY_AUX_D_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002344 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002345 .id = CNL_DISP_PW_AUX_D,
2346 },
2347 {
2348 .name = "DC off",
2349 .domains = CNL_DISPLAY_DC_OFF_POWER_DOMAINS,
2350 .ops = &gen9_dc_off_power_well_ops,
2351 .id = SKL_DISP_PW_DC_OFF,
2352 },
2353 {
2354 .name = "power well 2",
2355 .domains = CNL_DISPLAY_POWERWELL_2_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002356 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002357 .id = SKL_DISP_PW_2,
Imre Deak0a445942017-08-14 18:15:29 +03002358 {
2359 .hsw.irq_pipe_mask = BIT(PIPE_B) | BIT(PIPE_C),
2360 .hsw.has_vga = true,
2361 .hsw.has_fuses = true,
2362 },
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002363 },
2364 {
2365 .name = "DDI A IO power well",
2366 .domains = CNL_DISPLAY_DDI_A_IO_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002367 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002368 .id = CNL_DISP_PW_DDI_A,
2369 },
2370 {
2371 .name = "DDI B IO power well",
2372 .domains = CNL_DISPLAY_DDI_B_IO_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002373 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002374 .id = SKL_DISP_PW_DDI_B,
2375 },
2376 {
2377 .name = "DDI C IO power well",
2378 .domains = CNL_DISPLAY_DDI_C_IO_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002379 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002380 .id = SKL_DISP_PW_DDI_C,
2381 },
2382 {
2383 .name = "DDI D IO power well",
2384 .domains = CNL_DISPLAY_DDI_D_IO_POWER_DOMAINS,
Imre Deak4196b912017-07-11 23:42:36 +03002385 .ops = &hsw_power_well_ops,
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002386 .id = SKL_DISP_PW_DDI_D,
2387 },
2388};
2389
Imre Deak1b0e3a02015-11-05 23:04:11 +02002390static int
2391sanitize_disable_power_well_option(const struct drm_i915_private *dev_priv,
2392 int disable_power_well)
2393{
2394 if (disable_power_well >= 0)
2395 return !!disable_power_well;
2396
Imre Deak1b0e3a02015-11-05 23:04:11 +02002397 return 1;
2398}
2399
Imre Deaka37baf32016-02-29 22:49:03 +02002400static uint32_t get_allowed_dc_mask(const struct drm_i915_private *dev_priv,
2401 int enable_dc)
2402{
2403 uint32_t mask;
2404 int requested_dc;
2405 int max_dc;
2406
Rodrigo Vivi6d6a8972017-07-06 13:45:08 -07002407 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Imre Deaka37baf32016-02-29 22:49:03 +02002408 max_dc = 2;
2409 mask = 0;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002410 } else if (IS_GEN9_LP(dev_priv)) {
Imre Deaka37baf32016-02-29 22:49:03 +02002411 max_dc = 1;
2412 /*
2413 * DC9 has a separate HW flow from the rest of the DC states,
2414 * not depending on the DMC firmware. It's needed by system
2415 * suspend/resume, so allow it unconditionally.
2416 */
2417 mask = DC_STATE_EN_DC9;
2418 } else {
2419 max_dc = 0;
2420 mask = 0;
2421 }
2422
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00002423 if (!i915_modparams.disable_power_well)
Imre Deak66e2c4c2016-02-29 22:49:04 +02002424 max_dc = 0;
2425
Imre Deaka37baf32016-02-29 22:49:03 +02002426 if (enable_dc >= 0 && enable_dc <= max_dc) {
2427 requested_dc = enable_dc;
2428 } else if (enable_dc == -1) {
2429 requested_dc = max_dc;
2430 } else if (enable_dc > max_dc && enable_dc <= 2) {
2431 DRM_DEBUG_KMS("Adjusting requested max DC state (%d->%d)\n",
2432 enable_dc, max_dc);
2433 requested_dc = max_dc;
2434 } else {
2435 DRM_ERROR("Unexpected value for enable_dc (%d)\n", enable_dc);
2436 requested_dc = max_dc;
2437 }
2438
2439 if (requested_dc > 1)
2440 mask |= DC_STATE_EN_UPTO_DC6;
2441 if (requested_dc > 0)
2442 mask |= DC_STATE_EN_UPTO_DC5;
2443
2444 DRM_DEBUG_KMS("Allowed DC state mask %02x\n", mask);
2445
2446 return mask;
2447}
2448
Imre Deak21792c62017-07-11 23:42:33 +03002449static void assert_power_well_ids_unique(struct drm_i915_private *dev_priv)
2450{
2451 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2452 u64 power_well_ids;
2453 int i;
2454
2455 power_well_ids = 0;
2456 for (i = 0; i < power_domains->power_well_count; i++) {
2457 enum i915_power_well_id id = power_domains->power_wells[i].id;
2458
2459 WARN_ON(id >= sizeof(power_well_ids) * 8);
2460 WARN_ON(power_well_ids & BIT_ULL(id));
2461 power_well_ids |= BIT_ULL(id);
2462 }
2463}
2464
Daniel Vetter9c065a72014-09-30 10:56:38 +02002465#define set_power_wells(power_domains, __power_wells) ({ \
2466 (power_domains)->power_wells = (__power_wells); \
2467 (power_domains)->power_well_count = ARRAY_SIZE(__power_wells); \
2468})
2469
Daniel Vettere4e76842014-09-30 10:56:42 +02002470/**
2471 * intel_power_domains_init - initializes the power domain structures
2472 * @dev_priv: i915 device instance
2473 *
2474 * Initializes the power domain structures for @dev_priv depending upon the
2475 * supported platform.
2476 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02002477int intel_power_domains_init(struct drm_i915_private *dev_priv)
2478{
2479 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2480
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00002481 i915_modparams.disable_power_well =
2482 sanitize_disable_power_well_option(dev_priv,
2483 i915_modparams.disable_power_well);
2484 dev_priv->csr.allowed_dc_mask =
2485 get_allowed_dc_mask(dev_priv, i915_modparams.enable_dc);
Imre Deak1b0e3a02015-11-05 23:04:11 +02002486
Ander Conselvan de Oliveirad8fc70b2017-02-09 11:31:21 +02002487 BUILD_BUG_ON(POWER_DOMAIN_NUM > 64);
Ville Syrjäläf0ab43e2015-11-09 16:48:19 +01002488
Daniel Vetter9c065a72014-09-30 10:56:38 +02002489 mutex_init(&power_domains->lock);
2490
2491 /*
2492 * The enabling order will be from lower to higher indexed wells,
2493 * the disabling order is reversed.
2494 */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002495 if (IS_HASWELL(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002496 set_power_wells(power_domains, hsw_power_wells);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002497 } else if (IS_BROADWELL(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002498 set_power_wells(power_domains, bdw_power_wells);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08002499 } else if (IS_GEN9_BC(dev_priv)) {
Satheeshakrishna M94dd5132015-02-04 13:57:44 +00002500 set_power_wells(power_domains, skl_power_wells);
Ville Syrjälä8bcd3dd2017-06-06 13:30:39 -07002501 } else if (IS_CANNONLAKE(dev_priv)) {
2502 set_power_wells(power_domains, cnl_power_wells);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002503 } else if (IS_BROXTON(dev_priv)) {
Satheeshakrishna M0b4a2a32014-07-11 14:51:13 +05302504 set_power_wells(power_domains, bxt_power_wells);
Ander Conselvan de Oliveira0d039262016-12-02 10:23:50 +02002505 } else if (IS_GEMINILAKE(dev_priv)) {
2506 set_power_wells(power_domains, glk_power_wells);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002507 } else if (IS_CHERRYVIEW(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002508 set_power_wells(power_domains, chv_power_wells);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002509 } else if (IS_VALLEYVIEW(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002510 set_power_wells(power_domains, vlv_power_wells);
Ville Syrjälä2ee0da12017-06-01 17:36:16 +03002511 } else if (IS_I830(dev_priv)) {
2512 set_power_wells(power_domains, i830_power_wells);
Daniel Vetter9c065a72014-09-30 10:56:38 +02002513 } else {
2514 set_power_wells(power_domains, i9xx_always_on_power_well);
2515 }
2516
Imre Deak21792c62017-07-11 23:42:33 +03002517 assert_power_well_ids_unique(dev_priv);
2518
Daniel Vetter9c065a72014-09-30 10:56:38 +02002519 return 0;
2520}
2521
Daniel Vettere4e76842014-09-30 10:56:42 +02002522/**
2523 * intel_power_domains_fini - finalizes the power domain structures
2524 * @dev_priv: i915 device instance
2525 *
2526 * Finalizes the power domain structures for @dev_priv depending upon the
2527 * supported platform. This function also disables runtime pm and ensures that
2528 * the device stays powered up so that the driver can be reloaded.
2529 */
Daniel Vetterf458ebb2014-09-30 10:56:39 +02002530void intel_power_domains_fini(struct drm_i915_private *dev_priv)
Daniel Vetter9c065a72014-09-30 10:56:38 +02002531{
David Weinehallc49d13e2016-08-22 13:32:42 +03002532 struct device *kdev = &dev_priv->drm.pdev->dev;
Imre Deak25b181b2015-12-17 13:44:56 +02002533
Imre Deakaabee1b2015-12-15 20:10:29 +02002534 /*
2535 * The i915.ko module is still not prepared to be loaded when
Daniel Vetterf458ebb2014-09-30 10:56:39 +02002536 * the power well is not enabled, so just enable it in case
Imre Deakaabee1b2015-12-15 20:10:29 +02002537 * we're going to unload/reload.
2538 * The following also reacquires the RPM reference the core passed
2539 * to the driver during loading, which is dropped in
2540 * intel_runtime_pm_enable(). We have to hand back the control of the
2541 * device to the core with this reference held.
2542 */
Daniel Vetterf458ebb2014-09-30 10:56:39 +02002543 intel_display_set_init_power(dev_priv, true);
Imre Deakd314cd42015-11-17 17:44:23 +02002544
2545 /* Remove the refcount we took to keep power well support disabled. */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00002546 if (!i915_modparams.disable_power_well)
Imre Deakd314cd42015-11-17 17:44:23 +02002547 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
Imre Deak25b181b2015-12-17 13:44:56 +02002548
2549 /*
2550 * Remove the refcount we took in intel_runtime_pm_enable() in case
2551 * the platform doesn't support runtime PM.
2552 */
2553 if (!HAS_RUNTIME_PM(dev_priv))
David Weinehallc49d13e2016-08-22 13:32:42 +03002554 pm_runtime_put(kdev);
Daniel Vetter9c065a72014-09-30 10:56:38 +02002555}
2556
Imre Deak30eade12015-11-04 19:24:13 +02002557static void intel_power_domains_sync_hw(struct drm_i915_private *dev_priv)
Daniel Vetter9c065a72014-09-30 10:56:38 +02002558{
2559 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2560 struct i915_power_well *power_well;
Daniel Vetter9c065a72014-09-30 10:56:38 +02002561
2562 mutex_lock(&power_domains->lock);
Imre Deak75ccb2e2017-02-17 17:39:43 +02002563 for_each_power_well(dev_priv, power_well) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02002564 power_well->ops->sync_hw(dev_priv, power_well);
2565 power_well->hw_enabled = power_well->ops->is_enabled(dev_priv,
2566 power_well);
2567 }
2568 mutex_unlock(&power_domains->lock);
2569}
2570
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002571static void gen9_dbuf_enable(struct drm_i915_private *dev_priv)
2572{
2573 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
2574 POSTING_READ(DBUF_CTL);
2575
2576 udelay(10);
2577
2578 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
2579 DRM_ERROR("DBuf power enable timeout\n");
2580}
2581
2582static void gen9_dbuf_disable(struct drm_i915_private *dev_priv)
2583{
2584 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
2585 POSTING_READ(DBUF_CTL);
2586
2587 udelay(10);
2588
2589 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
2590 DRM_ERROR("DBuf power disable timeout!\n");
2591}
2592
Imre Deak73dfc222015-11-17 17:33:53 +02002593static void skl_display_core_init(struct drm_i915_private *dev_priv,
Imre Deak443a93a2016-04-04 15:42:57 +03002594 bool resume)
Imre Deak73dfc222015-11-17 17:33:53 +02002595{
2596 struct i915_power_domains *power_domains = &dev_priv->power_domains;
Imre Deak443a93a2016-04-04 15:42:57 +03002597 struct i915_power_well *well;
Imre Deak73dfc222015-11-17 17:33:53 +02002598 uint32_t val;
2599
Imre Deakd26fa1d2015-11-04 19:24:17 +02002600 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2601
Imre Deak73dfc222015-11-17 17:33:53 +02002602 /* enable PCH reset handshake */
2603 val = I915_READ(HSW_NDE_RSTWRN_OPT);
2604 I915_WRITE(HSW_NDE_RSTWRN_OPT, val | RESET_PCH_HANDSHAKE_ENABLE);
2605
2606 /* enable PG1 and Misc I/O */
2607 mutex_lock(&power_domains->lock);
Imre Deak443a93a2016-04-04 15:42:57 +03002608
2609 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2610 intel_power_well_enable(dev_priv, well);
2611
2612 well = lookup_power_well(dev_priv, SKL_DISP_PW_MISC_IO);
2613 intel_power_well_enable(dev_priv, well);
2614
Imre Deak73dfc222015-11-17 17:33:53 +02002615 mutex_unlock(&power_domains->lock);
2616
Imre Deak73dfc222015-11-17 17:33:53 +02002617 skl_init_cdclk(dev_priv);
2618
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002619 gen9_dbuf_enable(dev_priv);
2620
Ville Syrjälä9f7eb312016-05-13 23:41:29 +03002621 if (resume && dev_priv->csr.dmc_payload)
Imre Deak2abc5252016-03-04 21:57:41 +02002622 intel_csr_load_program(dev_priv);
Imre Deak73dfc222015-11-17 17:33:53 +02002623}
2624
2625static void skl_display_core_uninit(struct drm_i915_private *dev_priv)
2626{
2627 struct i915_power_domains *power_domains = &dev_priv->power_domains;
Imre Deak443a93a2016-04-04 15:42:57 +03002628 struct i915_power_well *well;
Imre Deak73dfc222015-11-17 17:33:53 +02002629
Imre Deakd26fa1d2015-11-04 19:24:17 +02002630 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2631
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002632 gen9_dbuf_disable(dev_priv);
2633
Imre Deak73dfc222015-11-17 17:33:53 +02002634 skl_uninit_cdclk(dev_priv);
2635
2636 /* The spec doesn't call for removing the reset handshake flag */
2637 /* disable PG1 and Misc I/O */
Imre Deak443a93a2016-04-04 15:42:57 +03002638
Imre Deak73dfc222015-11-17 17:33:53 +02002639 mutex_lock(&power_domains->lock);
Imre Deak443a93a2016-04-04 15:42:57 +03002640
Imre Deakedfda8e2017-06-29 18:36:59 +03002641 /*
2642 * BSpec says to keep the MISC IO power well enabled here, only
2643 * remove our request for power well 1.
Imre Deak42d93662017-06-29 18:37:01 +03002644 * Note that even though the driver's request is removed power well 1
2645 * may stay enabled after this due to DMC's own request on it.
Imre Deakedfda8e2017-06-29 18:36:59 +03002646 */
Imre Deak443a93a2016-04-04 15:42:57 +03002647 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2648 intel_power_well_disable(dev_priv, well);
2649
Imre Deak73dfc222015-11-17 17:33:53 +02002650 mutex_unlock(&power_domains->lock);
Imre Deak846c6b22017-06-29 18:36:58 +03002651
2652 usleep_range(10, 30); /* 10 us delay per Bspec */
Imre Deak73dfc222015-11-17 17:33:53 +02002653}
2654
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002655void bxt_display_core_init(struct drm_i915_private *dev_priv,
2656 bool resume)
2657{
2658 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2659 struct i915_power_well *well;
2660 uint32_t val;
2661
2662 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2663
2664 /*
2665 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
2666 * or else the reset will hang because there is no PCH to respond.
2667 * Move the handshake programming to initialization sequence.
2668 * Previously was left up to BIOS.
2669 */
2670 val = I915_READ(HSW_NDE_RSTWRN_OPT);
2671 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
2672 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
2673
2674 /* Enable PG1 */
2675 mutex_lock(&power_domains->lock);
2676
2677 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2678 intel_power_well_enable(dev_priv, well);
2679
2680 mutex_unlock(&power_domains->lock);
2681
Imre Deak324513c2016-06-13 16:44:36 +03002682 bxt_init_cdclk(dev_priv);
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002683
2684 gen9_dbuf_enable(dev_priv);
2685
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002686 if (resume && dev_priv->csr.dmc_payload)
2687 intel_csr_load_program(dev_priv);
2688}
2689
2690void bxt_display_core_uninit(struct drm_i915_private *dev_priv)
2691{
2692 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2693 struct i915_power_well *well;
2694
2695 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2696
Ville Syrjälä70c2c182016-05-13 23:41:30 +03002697 gen9_dbuf_disable(dev_priv);
2698
Imre Deak324513c2016-06-13 16:44:36 +03002699 bxt_uninit_cdclk(dev_priv);
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002700
2701 /* The spec doesn't call for removing the reset handshake flag */
2702
Imre Deak42d93662017-06-29 18:37:01 +03002703 /*
2704 * Disable PW1 (PG1).
2705 * Note that even though the driver's request is removed power well 1
2706 * may stay enabled after this due to DMC's own request on it.
2707 */
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002708 mutex_lock(&power_domains->lock);
2709
2710 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2711 intel_power_well_disable(dev_priv, well);
2712
2713 mutex_unlock(&power_domains->lock);
Imre Deak846c6b22017-06-29 18:36:58 +03002714
2715 usleep_range(10, 30); /* 10 us delay per Bspec */
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002716}
2717
Paulo Zanonie0b8acf2017-08-21 17:03:55 -07002718enum {
2719 PROCMON_0_85V_DOT_0,
2720 PROCMON_0_95V_DOT_0,
2721 PROCMON_0_95V_DOT_1,
2722 PROCMON_1_05V_DOT_0,
2723 PROCMON_1_05V_DOT_1,
2724};
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002725
2726static const struct cnl_procmon {
2727 u32 dw1, dw9, dw10;
Paulo Zanonie0b8acf2017-08-21 17:03:55 -07002728} cnl_procmon_values[] = {
2729 [PROCMON_0_85V_DOT_0] =
2730 { .dw1 = 0x00000000, .dw9 = 0x62AB67BB, .dw10 = 0x51914F96, },
2731 [PROCMON_0_95V_DOT_0] =
2732 { .dw1 = 0x00000000, .dw9 = 0x86E172C7, .dw10 = 0x77CA5EAB, },
2733 [PROCMON_0_95V_DOT_1] =
2734 { .dw1 = 0x00000000, .dw9 = 0x93F87FE1, .dw10 = 0x8AE871C5, },
2735 [PROCMON_1_05V_DOT_0] =
2736 { .dw1 = 0x00000000, .dw9 = 0x98FA82DD, .dw10 = 0x89E46DC1, },
2737 [PROCMON_1_05V_DOT_1] =
2738 { .dw1 = 0x00440000, .dw9 = 0x9A00AB25, .dw10 = 0x8AE38FF1, },
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002739};
2740
Paulo Zanoniade5ee72017-08-21 17:03:56 -07002741static void cnl_set_procmon_ref_values(struct drm_i915_private *dev_priv)
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002742{
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002743 const struct cnl_procmon *procmon;
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002744 u32 val;
2745
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002746 val = I915_READ(CNL_PORT_COMP_DW3);
Paulo Zanonie0b8acf2017-08-21 17:03:55 -07002747 switch (val & (PROCESS_INFO_MASK | VOLTAGE_INFO_MASK)) {
2748 default:
2749 MISSING_CASE(val);
2750 case VOLTAGE_INFO_0_85V | PROCESS_INFO_DOT_0:
2751 procmon = &cnl_procmon_values[PROCMON_0_85V_DOT_0];
2752 break;
2753 case VOLTAGE_INFO_0_95V | PROCESS_INFO_DOT_0:
2754 procmon = &cnl_procmon_values[PROCMON_0_95V_DOT_0];
2755 break;
2756 case VOLTAGE_INFO_0_95V | PROCESS_INFO_DOT_1:
2757 procmon = &cnl_procmon_values[PROCMON_0_95V_DOT_1];
2758 break;
2759 case VOLTAGE_INFO_1_05V | PROCESS_INFO_DOT_0:
2760 procmon = &cnl_procmon_values[PROCMON_1_05V_DOT_0];
2761 break;
2762 case VOLTAGE_INFO_1_05V | PROCESS_INFO_DOT_1:
2763 procmon = &cnl_procmon_values[PROCMON_1_05V_DOT_1];
2764 break;
2765 }
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002766
2767 val = I915_READ(CNL_PORT_COMP_DW1);
2768 val &= ~((0xff << 16) | 0xff);
2769 val |= procmon->dw1;
2770 I915_WRITE(CNL_PORT_COMP_DW1, val);
2771
2772 I915_WRITE(CNL_PORT_COMP_DW9, procmon->dw9);
2773 I915_WRITE(CNL_PORT_COMP_DW10, procmon->dw10);
Paulo Zanoniade5ee72017-08-21 17:03:56 -07002774}
2775
2776static void cnl_display_core_init(struct drm_i915_private *dev_priv, bool resume)
2777{
2778 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2779 struct i915_power_well *well;
2780 u32 val;
2781
2782 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2783
2784 /* 1. Enable PCH Reset Handshake */
2785 val = I915_READ(HSW_NDE_RSTWRN_OPT);
2786 val |= RESET_PCH_HANDSHAKE_ENABLE;
2787 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
2788
2789 /* 2. Enable Comp */
2790 val = I915_READ(CHICKEN_MISC_2);
2791 val &= ~CNL_COMP_PWR_DOWN;
2792 I915_WRITE(CHICKEN_MISC_2, val);
2793
2794 cnl_set_procmon_ref_values(dev_priv);
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002795
2796 val = I915_READ(CNL_PORT_COMP_DW0);
2797 val |= COMP_INIT;
2798 I915_WRITE(CNL_PORT_COMP_DW0, val);
2799
2800 /* 3. */
2801 val = I915_READ(CNL_PORT_CL1CM_DW5);
2802 val |= CL_POWER_DOWN_ENABLE;
2803 I915_WRITE(CNL_PORT_CL1CM_DW5, val);
2804
Imre Deakb38131f2017-06-29 18:37:02 +03002805 /*
2806 * 4. Enable Power Well 1 (PG1).
2807 * The AUX IO power wells will be enabled on demand.
2808 */
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002809 mutex_lock(&power_domains->lock);
2810 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2811 intel_power_well_enable(dev_priv, well);
2812 mutex_unlock(&power_domains->lock);
2813
2814 /* 5. Enable CD clock */
2815 cnl_init_cdclk(dev_priv);
2816
2817 /* 6. Enable DBUF */
2818 gen9_dbuf_enable(dev_priv);
Imre Deak57522c42017-10-03 12:51:58 +03002819
2820 if (resume && dev_priv->csr.dmc_payload)
2821 intel_csr_load_program(dev_priv);
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002822}
2823
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002824static void cnl_display_core_uninit(struct drm_i915_private *dev_priv)
2825{
2826 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2827 struct i915_power_well *well;
2828 u32 val;
2829
2830 gen9_set_dc_state(dev_priv, DC_STATE_DISABLE);
2831
2832 /* 1. Disable all display engine functions -> aready done */
2833
2834 /* 2. Disable DBUF */
2835 gen9_dbuf_disable(dev_priv);
2836
2837 /* 3. Disable CD clock */
2838 cnl_uninit_cdclk(dev_priv);
2839
Imre Deakb38131f2017-06-29 18:37:02 +03002840 /*
2841 * 4. Disable Power Well 1 (PG1).
2842 * The AUX IO power wells are toggled on demand, so they are already
2843 * disabled at this point.
2844 */
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002845 mutex_lock(&power_domains->lock);
2846 well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
2847 intel_power_well_disable(dev_priv, well);
2848 mutex_unlock(&power_domains->lock);
2849
Imre Deak846c6b22017-06-29 18:36:58 +03002850 usleep_range(10, 30); /* 10 us delay per Bspec */
2851
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002852 /* 5. Disable Comp */
2853 val = I915_READ(CHICKEN_MISC_2);
Paulo Zanoni746a5172017-07-14 14:52:28 -03002854 val |= CNL_COMP_PWR_DOWN;
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002855 I915_WRITE(CHICKEN_MISC_2, val);
2856}
2857
Ville Syrjälä70722462015-04-10 18:21:28 +03002858static void chv_phy_control_init(struct drm_i915_private *dev_priv)
2859{
2860 struct i915_power_well *cmn_bc =
2861 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC);
2862 struct i915_power_well *cmn_d =
2863 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_D);
2864
2865 /*
2866 * DISPLAY_PHY_CONTROL can get corrupted if read. As a
2867 * workaround never ever read DISPLAY_PHY_CONTROL, and
2868 * instead maintain a shadow copy ourselves. Use the actual
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002869 * power well state and lane status to reconstruct the
2870 * expected initial value.
Ville Syrjälä70722462015-04-10 18:21:28 +03002871 */
2872 dev_priv->chv_phy_control =
Ville Syrjäläbc284542015-05-26 20:22:38 +03002873 PHY_LDO_SEQ_DELAY(PHY_LDO_DELAY_600NS, DPIO_PHY0) |
2874 PHY_LDO_SEQ_DELAY(PHY_LDO_DELAY_600NS, DPIO_PHY1) |
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002875 PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY0, DPIO_CH0) |
2876 PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY0, DPIO_CH1) |
2877 PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY1, DPIO_CH0);
2878
2879 /*
2880 * If all lanes are disabled we leave the override disabled
2881 * with all power down bits cleared to match the state we
2882 * would use after disabling the port. Otherwise enable the
2883 * override and set the lane powerdown bits accding to the
2884 * current lane status.
2885 */
2886 if (cmn_bc->ops->is_enabled(dev_priv, cmn_bc)) {
2887 uint32_t status = I915_READ(DPLL(PIPE_A));
2888 unsigned int mask;
2889
2890 mask = status & DPLL_PORTB_READY_MASK;
2891 if (mask == 0xf)
2892 mask = 0x0;
2893 else
2894 dev_priv->chv_phy_control |=
2895 PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH0);
2896
2897 dev_priv->chv_phy_control |=
2898 PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY0, DPIO_CH0);
2899
2900 mask = (status & DPLL_PORTC_READY_MASK) >> 4;
2901 if (mask == 0xf)
2902 mask = 0x0;
2903 else
2904 dev_priv->chv_phy_control |=
2905 PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH1);
2906
2907 dev_priv->chv_phy_control |=
2908 PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY0, DPIO_CH1);
2909
Ville Syrjälä70722462015-04-10 18:21:28 +03002910 dev_priv->chv_phy_control |= PHY_COM_LANE_RESET_DEASSERT(DPIO_PHY0);
Ville Syrjälä3be60de2015-09-08 18:05:45 +03002911
2912 dev_priv->chv_phy_assert[DPIO_PHY0] = false;
2913 } else {
2914 dev_priv->chv_phy_assert[DPIO_PHY0] = true;
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002915 }
2916
2917 if (cmn_d->ops->is_enabled(dev_priv, cmn_d)) {
2918 uint32_t status = I915_READ(DPIO_PHY_STATUS);
2919 unsigned int mask;
2920
2921 mask = status & DPLL_PORTD_READY_MASK;
2922
2923 if (mask == 0xf)
2924 mask = 0x0;
2925 else
2926 dev_priv->chv_phy_control |=
2927 PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY1, DPIO_CH0);
2928
2929 dev_priv->chv_phy_control |=
2930 PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY1, DPIO_CH0);
2931
Ville Syrjälä70722462015-04-10 18:21:28 +03002932 dev_priv->chv_phy_control |= PHY_COM_LANE_RESET_DEASSERT(DPIO_PHY1);
Ville Syrjälä3be60de2015-09-08 18:05:45 +03002933
2934 dev_priv->chv_phy_assert[DPIO_PHY1] = false;
2935 } else {
2936 dev_priv->chv_phy_assert[DPIO_PHY1] = true;
Ville Syrjäläe0fce782015-07-08 23:45:54 +03002937 }
2938
2939 I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
2940
2941 DRM_DEBUG_KMS("Initial PHY_CONTROL=0x%08x\n",
2942 dev_priv->chv_phy_control);
Ville Syrjälä70722462015-04-10 18:21:28 +03002943}
2944
Daniel Vetter9c065a72014-09-30 10:56:38 +02002945static void vlv_cmnlane_wa(struct drm_i915_private *dev_priv)
2946{
2947 struct i915_power_well *cmn =
2948 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC);
2949 struct i915_power_well *disp2d =
2950 lookup_power_well(dev_priv, PUNIT_POWER_WELL_DISP2D);
2951
Daniel Vetter9c065a72014-09-30 10:56:38 +02002952 /* If the display might be already active skip this */
Ville Syrjälä5d93a6e2014-10-16 20:52:33 +03002953 if (cmn->ops->is_enabled(dev_priv, cmn) &&
2954 disp2d->ops->is_enabled(dev_priv, disp2d) &&
Daniel Vetter9c065a72014-09-30 10:56:38 +02002955 I915_READ(DPIO_CTL) & DPIO_CMNRST)
2956 return;
2957
2958 DRM_DEBUG_KMS("toggling display PHY side reset\n");
2959
2960 /* cmnlane needs DPLL registers */
2961 disp2d->ops->enable(dev_priv, disp2d);
2962
2963 /*
2964 * From VLV2A0_DP_eDP_HDMI_DPIO_driver_vbios_notes_11.docx:
2965 * Need to assert and de-assert PHY SB reset by gating the
2966 * common lane power, then un-gating it.
2967 * Simply ungating isn't enough to reset the PHY enough to get
2968 * ports and lanes running.
2969 */
2970 cmn->ops->disable(dev_priv, cmn);
2971}
2972
Daniel Vettere4e76842014-09-30 10:56:42 +02002973/**
2974 * intel_power_domains_init_hw - initialize hardware power domain state
2975 * @dev_priv: i915 device instance
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002976 * @resume: Called from resume code paths or not
Daniel Vettere4e76842014-09-30 10:56:42 +02002977 *
2978 * This function initializes the hardware power domain state and enables all
Imre Deak8d8c3862017-02-17 17:39:46 +02002979 * power wells belonging to the INIT power domain. Power wells in other
2980 * domains (and not in the INIT domain) are referenced or disabled during the
2981 * modeset state HW readout. After that the reference count of each power well
2982 * must match its HW enabled state, see intel_power_domains_verify_state().
Daniel Vettere4e76842014-09-30 10:56:42 +02002983 */
Imre Deak73dfc222015-11-17 17:33:53 +02002984void intel_power_domains_init_hw(struct drm_i915_private *dev_priv, bool resume)
Daniel Vetter9c065a72014-09-30 10:56:38 +02002985{
Daniel Vetter9c065a72014-09-30 10:56:38 +02002986 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2987
2988 power_domains->initializing = true;
2989
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07002990 if (IS_CANNONLAKE(dev_priv)) {
2991 cnl_display_core_init(dev_priv, resume);
2992 } else if (IS_GEN9_BC(dev_priv)) {
Imre Deak73dfc222015-11-17 17:33:53 +02002993 skl_display_core_init(dev_priv, resume);
Ander Conselvan de Oliveirab817c442016-12-02 10:23:56 +02002994 } else if (IS_GEN9_LP(dev_priv)) {
Imre Deakd7d7c9e2016-04-01 16:02:42 +03002995 bxt_display_core_init(dev_priv, resume);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002996 } else if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä770effb2015-07-08 23:45:51 +03002997 mutex_lock(&power_domains->lock);
Ville Syrjälä70722462015-04-10 18:21:28 +03002998 chv_phy_control_init(dev_priv);
Ville Syrjälä770effb2015-07-08 23:45:51 +03002999 mutex_unlock(&power_domains->lock);
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01003000 } else if (IS_VALLEYVIEW(dev_priv)) {
Daniel Vetter9c065a72014-09-30 10:56:38 +02003001 mutex_lock(&power_domains->lock);
3002 vlv_cmnlane_wa(dev_priv);
3003 mutex_unlock(&power_domains->lock);
3004 }
3005
3006 /* For now, we need the power well to be always enabled. */
3007 intel_display_set_init_power(dev_priv, true);
Imre Deakd314cd42015-11-17 17:44:23 +02003008 /* Disable power support if the user asked so. */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00003009 if (!i915_modparams.disable_power_well)
Imre Deakd314cd42015-11-17 17:44:23 +02003010 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
Imre Deak30eade12015-11-04 19:24:13 +02003011 intel_power_domains_sync_hw(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003012 power_domains->initializing = false;
3013}
3014
Daniel Vettere4e76842014-09-30 10:56:42 +02003015/**
Imre Deak73dfc222015-11-17 17:33:53 +02003016 * intel_power_domains_suspend - suspend power domain state
3017 * @dev_priv: i915 device instance
3018 *
3019 * This function prepares the hardware power domain state before entering
3020 * system suspend. It must be paired with intel_power_domains_init_hw().
3021 */
3022void intel_power_domains_suspend(struct drm_i915_private *dev_priv)
3023{
Imre Deakd314cd42015-11-17 17:44:23 +02003024 /*
3025 * Even if power well support was disabled we still want to disable
3026 * power wells while we are system suspended.
3027 */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00003028 if (!i915_modparams.disable_power_well)
Imre Deakd314cd42015-11-17 17:44:23 +02003029 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
Imre Deak2622d792016-02-29 22:49:02 +02003030
Ville Syrjäläd8d4a512017-06-09 15:26:00 -07003031 if (IS_CANNONLAKE(dev_priv))
3032 cnl_display_core_uninit(dev_priv);
3033 else if (IS_GEN9_BC(dev_priv))
Imre Deak2622d792016-02-29 22:49:02 +02003034 skl_display_core_uninit(dev_priv);
Ander Conselvan de Oliveirab817c442016-12-02 10:23:56 +02003035 else if (IS_GEN9_LP(dev_priv))
Imre Deakd7d7c9e2016-04-01 16:02:42 +03003036 bxt_display_core_uninit(dev_priv);
Imre Deak73dfc222015-11-17 17:33:53 +02003037}
3038
Imre Deak8d8c3862017-02-17 17:39:46 +02003039static void intel_power_domains_dump_info(struct drm_i915_private *dev_priv)
3040{
3041 struct i915_power_domains *power_domains = &dev_priv->power_domains;
3042 struct i915_power_well *power_well;
3043
3044 for_each_power_well(dev_priv, power_well) {
3045 enum intel_display_power_domain domain;
3046
3047 DRM_DEBUG_DRIVER("%-25s %d\n",
3048 power_well->name, power_well->count);
3049
3050 for_each_power_domain(domain, power_well->domains)
3051 DRM_DEBUG_DRIVER(" %-23s %d\n",
3052 intel_display_power_domain_str(domain),
3053 power_domains->domain_use_count[domain]);
3054 }
3055}
3056
3057/**
3058 * intel_power_domains_verify_state - verify the HW/SW state for all power wells
3059 * @dev_priv: i915 device instance
3060 *
3061 * Verify if the reference count of each power well matches its HW enabled
3062 * state and the total refcount of the domains it belongs to. This must be
3063 * called after modeset HW state sanitization, which is responsible for
3064 * acquiring reference counts for any power wells in use and disabling the
3065 * ones left on by BIOS but not required by any active output.
3066 */
3067void intel_power_domains_verify_state(struct drm_i915_private *dev_priv)
3068{
3069 struct i915_power_domains *power_domains = &dev_priv->power_domains;
3070 struct i915_power_well *power_well;
3071 bool dump_domain_info;
3072
3073 mutex_lock(&power_domains->lock);
3074
3075 dump_domain_info = false;
3076 for_each_power_well(dev_priv, power_well) {
3077 enum intel_display_power_domain domain;
3078 int domains_count;
3079 bool enabled;
3080
3081 /*
3082 * Power wells not belonging to any domain (like the MISC_IO
3083 * and PW1 power wells) are under FW control, so ignore them,
3084 * since their state can change asynchronously.
3085 */
3086 if (!power_well->domains)
3087 continue;
3088
3089 enabled = power_well->ops->is_enabled(dev_priv, power_well);
3090 if ((power_well->count || power_well->always_on) != enabled)
3091 DRM_ERROR("power well %s state mismatch (refcount %d/enabled %d)",
3092 power_well->name, power_well->count, enabled);
3093
3094 domains_count = 0;
3095 for_each_power_domain(domain, power_well->domains)
3096 domains_count += power_domains->domain_use_count[domain];
3097
3098 if (power_well->count != domains_count) {
3099 DRM_ERROR("power well %s refcount/domain refcount mismatch "
3100 "(refcount %d/domains refcount %d)\n",
3101 power_well->name, power_well->count,
3102 domains_count);
3103 dump_domain_info = true;
3104 }
3105 }
3106
3107 if (dump_domain_info) {
3108 static bool dumped;
3109
3110 if (!dumped) {
3111 intel_power_domains_dump_info(dev_priv);
3112 dumped = true;
3113 }
3114 }
3115
3116 mutex_unlock(&power_domains->lock);
3117}
3118
Imre Deak73dfc222015-11-17 17:33:53 +02003119/**
Daniel Vettere4e76842014-09-30 10:56:42 +02003120 * intel_runtime_pm_get - grab a runtime pm reference
3121 * @dev_priv: i915 device instance
3122 *
3123 * This function grabs a device-level runtime pm reference (mostly used for GEM
3124 * code to ensure the GTT or GT is on) and ensures that it is powered up.
3125 *
3126 * Any runtime pm reference obtained by this function must have a symmetric
3127 * call to intel_runtime_pm_put() to release the reference again.
3128 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02003129void intel_runtime_pm_get(struct drm_i915_private *dev_priv)
3130{
David Weinehall52a05c32016-08-22 13:32:44 +03003131 struct pci_dev *pdev = dev_priv->drm.pdev;
3132 struct device *kdev = &pdev->dev;
Imre Deakf5073822017-03-28 12:38:55 +03003133 int ret;
Daniel Vetter9c065a72014-09-30 10:56:38 +02003134
Imre Deakf5073822017-03-28 12:38:55 +03003135 ret = pm_runtime_get_sync(kdev);
3136 WARN_ONCE(ret < 0, "pm_runtime_get_sync() failed: %d\n", ret);
Imre Deak1f814da2015-12-16 02:52:19 +02003137
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01003138 atomic_inc(&dev_priv->runtime_pm.wakeref_count);
Imre Deakc9b88462015-12-15 20:10:34 +02003139 assert_rpm_wakelock_held(dev_priv);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003140}
3141
Daniel Vettere4e76842014-09-30 10:56:42 +02003142/**
Imre Deak09731282016-02-17 14:17:42 +02003143 * intel_runtime_pm_get_if_in_use - grab a runtime pm reference if device in use
3144 * @dev_priv: i915 device instance
3145 *
3146 * This function grabs a device-level runtime pm reference if the device is
3147 * already in use and ensures that it is powered up.
3148 *
3149 * Any runtime pm reference obtained by this function must have a symmetric
3150 * call to intel_runtime_pm_put() to release the reference again.
3151 */
3152bool intel_runtime_pm_get_if_in_use(struct drm_i915_private *dev_priv)
3153{
David Weinehall52a05c32016-08-22 13:32:44 +03003154 struct pci_dev *pdev = dev_priv->drm.pdev;
3155 struct device *kdev = &pdev->dev;
Imre Deak09731282016-02-17 14:17:42 +02003156
Chris Wilson135dc792016-02-25 21:10:28 +00003157 if (IS_ENABLED(CONFIG_PM)) {
David Weinehallc49d13e2016-08-22 13:32:42 +03003158 int ret = pm_runtime_get_if_in_use(kdev);
Imre Deak09731282016-02-17 14:17:42 +02003159
Chris Wilson135dc792016-02-25 21:10:28 +00003160 /*
3161 * In cases runtime PM is disabled by the RPM core and we get
3162 * an -EINVAL return value we are not supposed to call this
3163 * function, since the power state is undefined. This applies
3164 * atm to the late/early system suspend/resume handlers.
3165 */
Imre Deakf5073822017-03-28 12:38:55 +03003166 WARN_ONCE(ret < 0,
3167 "pm_runtime_get_if_in_use() failed: %d\n", ret);
Chris Wilson135dc792016-02-25 21:10:28 +00003168 if (ret <= 0)
3169 return false;
3170 }
Imre Deak09731282016-02-17 14:17:42 +02003171
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01003172 atomic_inc(&dev_priv->runtime_pm.wakeref_count);
Imre Deak09731282016-02-17 14:17:42 +02003173 assert_rpm_wakelock_held(dev_priv);
3174
3175 return true;
3176}
3177
3178/**
Daniel Vettere4e76842014-09-30 10:56:42 +02003179 * intel_runtime_pm_get_noresume - grab a runtime pm reference
3180 * @dev_priv: i915 device instance
3181 *
3182 * This function grabs a device-level runtime pm reference (mostly used for GEM
3183 * code to ensure the GTT or GT is on).
3184 *
3185 * It will _not_ power up the device but instead only check that it's powered
3186 * on. Therefore it is only valid to call this functions from contexts where
3187 * the device is known to be powered up and where trying to power it up would
3188 * result in hilarity and deadlocks. That pretty much means only the system
3189 * suspend/resume code where this is used to grab runtime pm references for
3190 * delayed setup down in work items.
3191 *
3192 * Any runtime pm reference obtained by this function must have a symmetric
3193 * call to intel_runtime_pm_put() to release the reference again.
3194 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02003195void intel_runtime_pm_get_noresume(struct drm_i915_private *dev_priv)
3196{
David Weinehall52a05c32016-08-22 13:32:44 +03003197 struct pci_dev *pdev = dev_priv->drm.pdev;
3198 struct device *kdev = &pdev->dev;
Daniel Vetter9c065a72014-09-30 10:56:38 +02003199
Imre Deakc9b88462015-12-15 20:10:34 +02003200 assert_rpm_wakelock_held(dev_priv);
David Weinehallc49d13e2016-08-22 13:32:42 +03003201 pm_runtime_get_noresume(kdev);
Imre Deak1f814da2015-12-16 02:52:19 +02003202
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01003203 atomic_inc(&dev_priv->runtime_pm.wakeref_count);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003204}
3205
Daniel Vettere4e76842014-09-30 10:56:42 +02003206/**
3207 * intel_runtime_pm_put - release a runtime pm reference
3208 * @dev_priv: i915 device instance
3209 *
3210 * This function drops the device-level runtime pm reference obtained by
3211 * intel_runtime_pm_get() and might power down the corresponding
3212 * hardware block right away if this is the last reference.
3213 */
Daniel Vetter9c065a72014-09-30 10:56:38 +02003214void intel_runtime_pm_put(struct drm_i915_private *dev_priv)
3215{
David Weinehall52a05c32016-08-22 13:32:44 +03003216 struct pci_dev *pdev = dev_priv->drm.pdev;
3217 struct device *kdev = &pdev->dev;
Daniel Vetter9c065a72014-09-30 10:56:38 +02003218
Imre Deak542db3c2015-12-15 20:10:36 +02003219 assert_rpm_wakelock_held(dev_priv);
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01003220 atomic_dec(&dev_priv->runtime_pm.wakeref_count);
Imre Deak1f814da2015-12-16 02:52:19 +02003221
David Weinehallc49d13e2016-08-22 13:32:42 +03003222 pm_runtime_mark_last_busy(kdev);
3223 pm_runtime_put_autosuspend(kdev);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003224}
3225
Daniel Vettere4e76842014-09-30 10:56:42 +02003226/**
3227 * intel_runtime_pm_enable - enable runtime pm
3228 * @dev_priv: i915 device instance
3229 *
3230 * This function enables runtime pm at the end of the driver load sequence.
3231 *
3232 * Note that this function does currently not enable runtime pm for the
3233 * subordinate display power domains. That is only done on the first modeset
3234 * using intel_display_set_init_power().
3235 */
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003236void intel_runtime_pm_enable(struct drm_i915_private *dev_priv)
Daniel Vetter9c065a72014-09-30 10:56:38 +02003237{
David Weinehall52a05c32016-08-22 13:32:44 +03003238 struct pci_dev *pdev = dev_priv->drm.pdev;
David Weinehall52a05c32016-08-22 13:32:44 +03003239 struct device *kdev = &pdev->dev;
Daniel Vetter9c065a72014-09-30 10:56:38 +02003240
David Weinehallc49d13e2016-08-22 13:32:42 +03003241 pm_runtime_set_autosuspend_delay(kdev, 10000); /* 10s */
3242 pm_runtime_mark_last_busy(kdev);
Imre Deakcbc68dc2015-12-17 19:04:33 +02003243
Imre Deak25b181b2015-12-17 13:44:56 +02003244 /*
3245 * Take a permanent reference to disable the RPM functionality and drop
3246 * it only when unloading the driver. Use the low level get/put helpers,
3247 * so the driver's own RPM reference tracking asserts also work on
3248 * platforms without RPM support.
3249 */
Tvrtko Ursulin6772ffe2016-10-13 11:02:55 +01003250 if (!HAS_RUNTIME_PM(dev_priv)) {
Imre Deakf5073822017-03-28 12:38:55 +03003251 int ret;
3252
David Weinehallc49d13e2016-08-22 13:32:42 +03003253 pm_runtime_dont_use_autosuspend(kdev);
Imre Deakf5073822017-03-28 12:38:55 +03003254 ret = pm_runtime_get_sync(kdev);
3255 WARN(ret < 0, "pm_runtime_get_sync() failed: %d\n", ret);
Imre Deakcbc68dc2015-12-17 19:04:33 +02003256 } else {
David Weinehallc49d13e2016-08-22 13:32:42 +03003257 pm_runtime_use_autosuspend(kdev);
Imre Deakcbc68dc2015-12-17 19:04:33 +02003258 }
Daniel Vetter9c065a72014-09-30 10:56:38 +02003259
Imre Deakaabee1b2015-12-15 20:10:29 +02003260 /*
3261 * The core calls the driver load handler with an RPM reference held.
3262 * We drop that here and will reacquire it during unloading in
3263 * intel_power_domains_fini().
3264 */
David Weinehallc49d13e2016-08-22 13:32:42 +03003265 pm_runtime_put_autosuspend(kdev);
Daniel Vetter9c065a72014-09-30 10:56:38 +02003266}