blob: dd0e6e0447d4933064fa7f16acd48dc49ccac30e [file] [log] [blame]
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -08001/*
2 * Copyright © 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
21 * DEALINGS IN THE SOFTWARE.
22 */
23
Rodrigo Vivib2b89f52014-11-14 08:52:29 -080024/**
25 * DOC: Panel Self Refresh (PSR/SRD)
26 *
27 * Since Haswell Display controller supports Panel Self-Refresh on display
28 * panels witch have a remote frame buffer (RFB) implemented according to PSR
29 * spec in eDP1.3. PSR feature allows the display to go to lower standby states
30 * when system is idle but display is on as it eliminates display refresh
31 * request to DDR memory completely as long as the frame buffer for that
32 * display is unchanged.
33 *
34 * Panel Self Refresh must be supported by both Hardware (source) and
35 * Panel (sink).
36 *
37 * PSR saves power by caching the framebuffer in the panel RFB, which allows us
38 * to power down the link and memory controller. For DSI panels the same idea
39 * is called "manual mode".
40 *
41 * The implementation uses the hardware-based PSR support which automatically
42 * enters/exits self-refresh mode. The hardware takes care of sending the
43 * required DP aux message and could even retrain the link (that part isn't
44 * enabled yet though). The hardware also keeps track of any frontbuffer
45 * changes to know when to exit self-refresh mode again. Unfortunately that
46 * part doesn't work too well, hence why the i915 PSR support uses the
47 * software frontbuffer tracking to make sure it doesn't miss a screen
48 * update. For this integration intel_psr_invalidate() and intel_psr_flush()
49 * get called by the frontbuffer tracking code. Note that because of locking
50 * issues the self-refresh re-enable code is done from a work queue, which
51 * must be correctly synchronized/cancelled when shutting down the pipe."
52 */
53
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080054#include <drm/drmP.h>
55
56#include "intel_drv.h"
57#include "i915_drv.h"
58
59static bool is_edp_psr(struct intel_dp *intel_dp)
60{
61 return intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED;
62}
63
Rodrigo Vivie2bbc342014-11-19 07:37:00 -080064static bool vlv_is_psr_active_on_pipe(struct drm_device *dev, int pipe)
65{
66 struct drm_i915_private *dev_priv = dev->dev_private;
67 uint32_t val;
68
69 val = I915_READ(VLV_PSRSTAT(pipe)) &
70 VLV_EDP_PSR_CURR_STATE_MASK;
71 return (val == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
72 (val == VLV_EDP_PSR_ACTIVE_SF_UPDATE);
73}
74
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080075static void intel_psr_write_vsc(struct intel_dp *intel_dp,
76 struct edp_vsc_psr *vsc_psr)
77{
78 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
79 struct drm_device *dev = dig_port->base.base.dev;
80 struct drm_i915_private *dev_priv = dev->dev_private;
81 struct intel_crtc *crtc = to_intel_crtc(dig_port->base.base.crtc);
82 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(crtc->config.cpu_transcoder);
83 u32 data_reg = HSW_TVIDEO_DIP_VSC_DATA(crtc->config.cpu_transcoder);
84 uint32_t *data = (uint32_t *) vsc_psr;
85 unsigned int i;
86
87 /* As per BSPec (Pipe Video Data Island Packet), we need to disable
88 the video DIP being updated before program video DIP data buffer
89 registers for DIP being updated. */
90 I915_WRITE(ctl_reg, 0);
91 POSTING_READ(ctl_reg);
92
93 for (i = 0; i < VIDEO_DIP_VSC_DATA_SIZE; i += 4) {
94 if (i < sizeof(struct edp_vsc_psr))
95 I915_WRITE(data_reg + i, *data++);
96 else
97 I915_WRITE(data_reg + i, 0);
98 }
99
100 I915_WRITE(ctl_reg, VIDEO_DIP_ENABLE_VSC_HSW);
101 POSTING_READ(ctl_reg);
102}
103
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800104static void vlv_psr_setup_vsc(struct intel_dp *intel_dp)
105{
106 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
107 struct drm_device *dev = intel_dig_port->base.base.dev;
108 struct drm_i915_private *dev_priv = dev->dev_private;
109 struct drm_crtc *crtc = intel_dig_port->base.base.crtc;
110 enum pipe pipe = to_intel_crtc(crtc)->pipe;
111 uint32_t val;
112
113 /* VLV auto-generate VSC package as per EDP 1.3 spec, Table 3.10 */
114 val = I915_READ(VLV_VSCSDP(pipe));
115 val &= ~VLV_EDP_PSR_SDP_FREQ_MASK;
116 val |= VLV_EDP_PSR_SDP_FREQ_EVFRAME;
117 I915_WRITE(VLV_VSCSDP(pipe), val);
118}
119
120static void hsw_psr_setup_vsc(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800121{
122 struct edp_vsc_psr psr_vsc;
123
124 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
125 memset(&psr_vsc, 0, sizeof(psr_vsc));
126 psr_vsc.sdp_header.HB0 = 0;
127 psr_vsc.sdp_header.HB1 = 0x7;
128 psr_vsc.sdp_header.HB2 = 0x2;
129 psr_vsc.sdp_header.HB3 = 0x8;
130 intel_psr_write_vsc(intel_dp, &psr_vsc);
131}
132
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800133static void vlv_psr_enable_sink(struct intel_dp *intel_dp)
134{
135 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
136 DP_PSR_ENABLE);
137}
138
139static void hsw_psr_enable_sink(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800140{
141 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
142 struct drm_device *dev = dig_port->base.base.dev;
143 struct drm_i915_private *dev_priv = dev->dev_private;
144 uint32_t aux_clock_divider;
145 int precharge = 0x3;
Rodrigo Vivi8cc726c2014-11-14 08:52:32 -0800146 bool only_standby = dev_priv->vbt.psr.full_link;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800147 static const uint8_t aux_msg[] = {
148 [0] = DP_AUX_NATIVE_WRITE << 4,
149 [1] = DP_SET_POWER >> 8,
150 [2] = DP_SET_POWER & 0xff,
151 [3] = 1 - 1,
152 [4] = DP_SET_POWER_D0,
153 };
154 int i;
155
156 BUILD_BUG_ON(sizeof(aux_msg) > 20);
157
158 aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, 0);
159
160 if (IS_BROADWELL(dev) && dig_port->port != PORT_A)
161 only_standby = true;
162
163 /* Enable PSR in sink */
164 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT || only_standby)
165 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
166 DP_PSR_ENABLE & ~DP_PSR_MAIN_LINK_ACTIVE);
167 else
168 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
169 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
170
171 /* Setup AUX registers */
172 for (i = 0; i < sizeof(aux_msg); i += 4)
173 I915_WRITE(EDP_PSR_AUX_DATA1(dev) + i,
174 intel_dp_pack_aux(&aux_msg[i], sizeof(aux_msg) - i));
175
176 I915_WRITE(EDP_PSR_AUX_CTL(dev),
177 DP_AUX_CH_CTL_TIME_OUT_400us |
178 (sizeof(aux_msg) << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
179 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
180 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
181}
182
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800183static void vlv_psr_enable_source(struct intel_dp *intel_dp)
184{
185 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
186 struct drm_device *dev = dig_port->base.base.dev;
187 struct drm_i915_private *dev_priv = dev->dev_private;
188 struct drm_crtc *crtc = dig_port->base.base.crtc;
189 enum pipe pipe = to_intel_crtc(crtc)->pipe;
190
191 /* Transition from PSR_state 0 to PSR_state 1, i.e. PSR Inactive */
192 I915_WRITE(VLV_PSRCTL(pipe),
193 VLV_EDP_PSR_MODE_SW_TIMER |
194 VLV_EDP_PSR_SRC_TRANSMITTER_STATE |
195 VLV_EDP_PSR_ENABLE);
196}
197
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800198static void vlv_psr_activate(struct intel_dp *intel_dp)
199{
200 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
201 struct drm_device *dev = dig_port->base.base.dev;
202 struct drm_i915_private *dev_priv = dev->dev_private;
203 struct drm_crtc *crtc = dig_port->base.base.crtc;
204 enum pipe pipe = to_intel_crtc(crtc)->pipe;
205
206 /* Let's do the transition from PSR_state 1 to PSR_state 2
207 * that is PSR transition to active - static frame transmission.
208 * Then Hardware is responsible for the transition to PSR_state 3
209 * that is PSR active - no Remote Frame Buffer (RFB) update.
210 */
211 I915_WRITE(VLV_PSRCTL(pipe), I915_READ(VLV_PSRCTL(pipe)) |
212 VLV_EDP_PSR_ACTIVE_ENTRY);
213}
214
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800215static void hsw_psr_enable_source(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800216{
217 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
218 struct drm_device *dev = dig_port->base.base.dev;
219 struct drm_i915_private *dev_priv = dev->dev_private;
220 uint32_t max_sleep_time = 0x1f;
Rodrigo Vivid44b4dc2014-11-14 08:52:31 -0800221 /* Lately it was identified that depending on panel idle frame count
222 * calculated at HW can be off by 1. So let's use what came
223 * from VBT + 1 and at minimum 2 to be on the safe side.
224 */
225 uint32_t idle_frames = dev_priv->vbt.psr.idle_frames ?
226 dev_priv->vbt.psr.idle_frames + 1 : 2;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800227 uint32_t val = 0x0;
228 const uint32_t link_entry_time = EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
229 bool only_standby = false;
230
231 if (IS_BROADWELL(dev) && dig_port->port != PORT_A)
232 only_standby = true;
233
234 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT || only_standby) {
235 val |= EDP_PSR_LINK_STANDBY;
236 val |= EDP_PSR_TP2_TP3_TIME_0us;
237 val |= EDP_PSR_TP1_TIME_0us;
238 val |= EDP_PSR_SKIP_AUX_EXIT;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800239 } else
240 val |= EDP_PSR_LINK_DISABLE;
241
242 I915_WRITE(EDP_PSR_CTL(dev), val |
243 (IS_BROADWELL(dev) ? 0 : link_entry_time) |
244 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
245 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
246 EDP_PSR_ENABLE);
247}
248
249static bool intel_psr_match_conditions(struct intel_dp *intel_dp)
250{
251 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
252 struct drm_device *dev = dig_port->base.base.dev;
253 struct drm_i915_private *dev_priv = dev->dev_private;
254 struct drm_crtc *crtc = dig_port->base.base.crtc;
255 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
256
257 lockdep_assert_held(&dev_priv->psr.lock);
258 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
259 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
260
261 dev_priv->psr.source_ok = false;
262
263 if (IS_HASWELL(dev) && dig_port->port != PORT_A) {
264 DRM_DEBUG_KMS("HSW ties PSR to DDI A (eDP)\n");
265 return false;
266 }
267
268 if (!i915.enable_psr) {
269 DRM_DEBUG_KMS("PSR disable by flag\n");
270 return false;
271 }
272
273 /* Below limitations aren't valid for Broadwell */
274 if (IS_BROADWELL(dev))
275 goto out;
276
277 if (I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config.cpu_transcoder)) &
278 S3D_ENABLE) {
279 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
280 return false;
281 }
282
283 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
284 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
285 return false;
286 }
287
288 out:
289 dev_priv->psr.source_ok = true;
290 return true;
291}
292
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800293static void intel_psr_activate(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800294{
295 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
296 struct drm_device *dev = intel_dig_port->base.base.dev;
297 struct drm_i915_private *dev_priv = dev->dev_private;
298
299 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
300 WARN_ON(dev_priv->psr.active);
301 lockdep_assert_held(&dev_priv->psr.lock);
302
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800303 /* Enable/Re-enable PSR on the host */
304 if (HAS_DDI(dev))
305 /* On HSW+ after we enable PSR on source it will activate it
306 * as soon as it match configure idle_frame count. So
307 * we just actually enable it here on activation time.
308 */
309 hsw_psr_enable_source(intel_dp);
310 else
311 vlv_psr_activate(intel_dp);
312
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800313 dev_priv->psr.active = true;
314}
315
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800316/**
317 * intel_psr_enable - Enable PSR
318 * @intel_dp: Intel DP
319 *
320 * This function can only be called after the pipe is fully trained and enabled.
321 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800322void intel_psr_enable(struct intel_dp *intel_dp)
323{
324 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
325 struct drm_device *dev = intel_dig_port->base.base.dev;
326 struct drm_i915_private *dev_priv = dev->dev_private;
327
328 if (!HAS_PSR(dev)) {
329 DRM_DEBUG_KMS("PSR not supported on this platform\n");
330 return;
331 }
332
333 if (!is_edp_psr(intel_dp)) {
334 DRM_DEBUG_KMS("PSR not supported by this panel\n");
335 return;
336 }
337
338 mutex_lock(&dev_priv->psr.lock);
339 if (dev_priv->psr.enabled) {
340 DRM_DEBUG_KMS("PSR already in use\n");
341 goto unlock;
342 }
343
344 if (!intel_psr_match_conditions(intel_dp))
345 goto unlock;
346
347 dev_priv->psr.busy_frontbuffer_bits = 0;
348
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800349 if (HAS_DDI(dev)) {
350 hsw_psr_setup_vsc(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800351
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800352 /* Avoid continuous PSR exit by masking memup and hpd */
353 I915_WRITE(EDP_PSR_DEBUG_CTL(dev), EDP_PSR_DEBUG_MASK_MEMUP |
354 EDP_PSR_DEBUG_MASK_HPD | EDP_PSR_DEBUG_MASK_LPSP);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800355
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800356 /* Enable PSR on the panel */
357 hsw_psr_enable_sink(intel_dp);
358 } else {
359 vlv_psr_setup_vsc(intel_dp);
360
361 /* Enable PSR on the panel */
362 vlv_psr_enable_sink(intel_dp);
363
364 /* On HSW+ enable_source also means go to PSR entry/active
365 * state as soon as idle_frame achieved and here would be
366 * to soon. However on VLV enable_source just enable PSR
367 * but let it on inactive state. So we might do this prior
368 * to active transition, i.e. here.
369 */
370 vlv_psr_enable_source(intel_dp);
371 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800372
373 dev_priv->psr.enabled = intel_dp;
374unlock:
375 mutex_unlock(&dev_priv->psr.lock);
376}
377
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800378static void vlv_psr_disable(struct intel_dp *intel_dp)
379{
380 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
381 struct drm_device *dev = intel_dig_port->base.base.dev;
382 struct drm_i915_private *dev_priv = dev->dev_private;
383 struct intel_crtc *intel_crtc =
384 to_intel_crtc(intel_dig_port->base.base.crtc);
385 uint32_t val;
386
387 if (dev_priv->psr.active) {
388 /* Put VLV PSR back to PSR_state 0 that is PSR Disabled. */
389 if (wait_for((I915_READ(VLV_PSRSTAT(intel_crtc->pipe)) &
390 VLV_EDP_PSR_IN_TRANS) == 0, 1))
391 WARN(1, "PSR transition took longer than expected\n");
392
393 val = I915_READ(VLV_PSRCTL(intel_crtc->pipe));
394 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
395 val &= ~VLV_EDP_PSR_ENABLE;
396 val &= ~VLV_EDP_PSR_MODE_MASK;
397 I915_WRITE(VLV_PSRCTL(intel_crtc->pipe), val);
398
399 dev_priv->psr.active = false;
400 } else {
401 WARN_ON(vlv_is_psr_active_on_pipe(dev, intel_crtc->pipe));
402 }
403}
404
405static void hsw_psr_disable(struct intel_dp *intel_dp)
406{
407 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
408 struct drm_device *dev = intel_dig_port->base.base.dev;
409 struct drm_i915_private *dev_priv = dev->dev_private;
410
411 if (dev_priv->psr.active) {
412 I915_WRITE(EDP_PSR_CTL(dev),
413 I915_READ(EDP_PSR_CTL(dev)) & ~EDP_PSR_ENABLE);
414
415 /* Wait till PSR is idle */
416 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev)) &
417 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
418 DRM_ERROR("Timed out waiting for PSR Idle State\n");
419
420 dev_priv->psr.active = false;
421 } else {
422 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
423 }
424}
425
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800426/**
427 * intel_psr_disable - Disable PSR
428 * @intel_dp: Intel DP
429 *
430 * This function needs to be called before disabling pipe.
431 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800432void intel_psr_disable(struct intel_dp *intel_dp)
433{
434 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
435 struct drm_device *dev = intel_dig_port->base.base.dev;
436 struct drm_i915_private *dev_priv = dev->dev_private;
437
438 mutex_lock(&dev_priv->psr.lock);
439 if (!dev_priv->psr.enabled) {
440 mutex_unlock(&dev_priv->psr.lock);
441 return;
442 }
443
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800444 if (HAS_DDI(dev))
445 hsw_psr_disable(intel_dp);
446 else
447 vlv_psr_disable(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800448
449 dev_priv->psr.enabled = NULL;
450 mutex_unlock(&dev_priv->psr.lock);
451
452 cancel_delayed_work_sync(&dev_priv->psr.work);
453}
454
455static void intel_psr_work(struct work_struct *work)
456{
457 struct drm_i915_private *dev_priv =
458 container_of(work, typeof(*dev_priv), psr.work.work);
459 struct intel_dp *intel_dp = dev_priv->psr.enabled;
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800460 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
461 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800462
463 /* We have to make sure PSR is ready for re-enable
464 * otherwise it keeps disabled until next full enable/disable cycle.
465 * PSR might take some time to get fully disabled
466 * and be ready for re-enable.
467 */
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800468 if (HAS_DDI(dev_priv->dev)) {
469 if (wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev_priv->dev)) &
470 EDP_PSR_STATUS_STATE_MASK) == 0, 50)) {
471 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
472 return;
473 }
474 } else {
475 if (wait_for((I915_READ(VLV_PSRSTAT(pipe)) &
476 VLV_EDP_PSR_IN_TRANS) == 0, 1)) {
477 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
478 return;
479 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800480 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800481 mutex_lock(&dev_priv->psr.lock);
482 intel_dp = dev_priv->psr.enabled;
483
484 if (!intel_dp)
485 goto unlock;
486
487 /*
488 * The delayed work can race with an invalidate hence we need to
489 * recheck. Since psr_flush first clears this and then reschedules we
490 * won't ever miss a flush when bailing out here.
491 */
492 if (dev_priv->psr.busy_frontbuffer_bits)
493 goto unlock;
494
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800495 intel_psr_activate(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800496unlock:
497 mutex_unlock(&dev_priv->psr.lock);
498}
499
500static void intel_psr_exit(struct drm_device *dev)
501{
502 struct drm_i915_private *dev_priv = dev->dev_private;
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800503 struct intel_dp *intel_dp = dev_priv->psr.enabled;
504 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
505 enum pipe pipe = to_intel_crtc(crtc)->pipe;
506 u32 val;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800507
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800508 if (!dev_priv->psr.active)
509 return;
510
511 if (HAS_DDI(dev)) {
512 val = I915_READ(EDP_PSR_CTL(dev));
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800513
514 WARN_ON(!(val & EDP_PSR_ENABLE));
515
516 I915_WRITE(EDP_PSR_CTL(dev), val & ~EDP_PSR_ENABLE);
517
518 dev_priv->psr.active = false;
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800519 } else {
520 val = I915_READ(VLV_PSRCTL(pipe));
521
522 /* Here we do the transition from PSR_state 3 to PSR_state 5
523 * directly once PSR State 4 that is active with single frame
524 * update can be skipped. PSR_state 5 that is PSR exit then
525 * Hardware is responsible to transition back to PSR_state 1
526 * that is PSR inactive. Same state after
527 * vlv_edp_psr_enable_source.
528 */
529 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
530 I915_WRITE(VLV_PSRCTL(pipe), val);
531
532 /* Send AUX wake up - Spec says after transitioning to PSR
533 * active we have to send AUX wake up by writing 01h in DPCD
534 * 600h of sink device.
535 * XXX: This might slow down the transition, but without this
536 * HW doesn't complete the transition to PSR_state 1 and we
537 * never get the screen updated.
538 */
539 drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
540 DP_SET_POWER_D0);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800541 }
542
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800543 dev_priv->psr.active = false;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800544}
545
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800546/**
547 * intel_psr_invalidate - Invalidade PSR
548 * @dev: DRM device
549 * @frontbuffer_bits: frontbuffer plane tracking bits
550 *
551 * Since the hardware frontbuffer tracking has gaps we need to integrate
552 * with the software frontbuffer tracking. This function gets called every
553 * time frontbuffer rendering starts and a buffer gets dirtied. PSR must be
554 * disabled if the frontbuffer mask contains a buffer relevant to PSR.
555 *
556 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits."
557 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800558void intel_psr_invalidate(struct drm_device *dev,
559 unsigned frontbuffer_bits)
560{
561 struct drm_i915_private *dev_priv = dev->dev_private;
562 struct drm_crtc *crtc;
563 enum pipe pipe;
564
565 mutex_lock(&dev_priv->psr.lock);
566 if (!dev_priv->psr.enabled) {
567 mutex_unlock(&dev_priv->psr.lock);
568 return;
569 }
570
571 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
572 pipe = to_intel_crtc(crtc)->pipe;
573
574 intel_psr_exit(dev);
575
576 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
577
578 dev_priv->psr.busy_frontbuffer_bits |= frontbuffer_bits;
579 mutex_unlock(&dev_priv->psr.lock);
580}
581
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800582/**
583 * intel_psr_flush - Flush PSR
584 * @dev: DRM device
585 * @frontbuffer_bits: frontbuffer plane tracking bits
586 *
587 * Since the hardware frontbuffer tracking has gaps we need to integrate
588 * with the software frontbuffer tracking. This function gets called every
589 * time frontbuffer rendering has completed and flushed out to memory. PSR
590 * can be enabled again if no other frontbuffer relevant to PSR is dirty.
591 *
592 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits.
593 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800594void intel_psr_flush(struct drm_device *dev,
595 unsigned frontbuffer_bits)
596{
597 struct drm_i915_private *dev_priv = dev->dev_private;
598 struct drm_crtc *crtc;
599 enum pipe pipe;
600
601 mutex_lock(&dev_priv->psr.lock);
602 if (!dev_priv->psr.enabled) {
603 mutex_unlock(&dev_priv->psr.lock);
604 return;
605 }
606
607 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
608 pipe = to_intel_crtc(crtc)->pipe;
609 dev_priv->psr.busy_frontbuffer_bits &= ~frontbuffer_bits;
610
611 /*
612 * On Haswell sprite plane updates don't result in a psr invalidating
613 * signal in the hardware. Which means we need to manually fake this in
614 * software for all flushes, not just when we've seen a preceding
615 * invalidation through frontbuffer rendering.
616 */
617 if (IS_HASWELL(dev) &&
618 (frontbuffer_bits & INTEL_FRONTBUFFER_SPRITE(pipe)))
619 intel_psr_exit(dev);
620
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800621 /*
622 * On Valleyview and Cherryview we don't use hardware tracking so
623 * sprite plane updates or cursor moves don't result in a PSR
624 * invalidating. Which means we need to manually fake this in
625 * software for all flushes, not just when we've seen a preceding
626 * invalidation through frontbuffer rendering. */
627 if (!HAS_DDI(dev) &&
628 ((frontbuffer_bits & INTEL_FRONTBUFFER_SPRITE(pipe)) ||
629 (frontbuffer_bits & INTEL_FRONTBUFFER_CURSOR(pipe))))
630 intel_psr_exit(dev);
631
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800632 if (!dev_priv->psr.active && !dev_priv->psr.busy_frontbuffer_bits)
633 schedule_delayed_work(&dev_priv->psr.work,
634 msecs_to_jiffies(100));
635 mutex_unlock(&dev_priv->psr.lock);
636}
637
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800638/**
639 * intel_psr_init - Init basic PSR work and mutex.
640 * @dev: DRM device
641 *
642 * This function is called only once at driver load to initialize basic
643 * PSR stuff.
644 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800645void intel_psr_init(struct drm_device *dev)
646{
647 struct drm_i915_private *dev_priv = dev->dev_private;
648
649 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_psr_work);
650 mutex_init(&dev_priv->psr.lock);
651}