drm/i915/bxt: add support for HPD long/short pulse detection on HPD_PORT_A pin
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_psr.c
CommitLineData
0bc12bcb
RV
1/*
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
b2b89f55
RV
24/**
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
0bc12bcb
RV
54#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
e2bbc343
RV
64static 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
0bc12bcb
RV
75static 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);
6e3c9717
ACO
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);
0bc12bcb
RV
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
e2bbc343
RV
104static 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
474d1ec4
SJ
120static void skl_psr_setup_su_vsc(struct intel_dp *intel_dp)
121{
122 struct edp_vsc_psr psr_vsc;
123
124 /* Prepare VSC Header for SU as per EDP 1.4 spec, Table 6.11 */
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 = 0x3;
129 psr_vsc.sdp_header.HB3 = 0xb;
130 intel_psr_write_vsc(intel_dp, &psr_vsc);
131}
132
e2bbc343 133static void hsw_psr_setup_vsc(struct intel_dp *intel_dp)
0bc12bcb
RV
134{
135 struct edp_vsc_psr psr_vsc;
136
137 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
138 memset(&psr_vsc, 0, sizeof(psr_vsc));
139 psr_vsc.sdp_header.HB0 = 0;
140 psr_vsc.sdp_header.HB1 = 0x7;
141 psr_vsc.sdp_header.HB2 = 0x2;
142 psr_vsc.sdp_header.HB3 = 0x8;
143 intel_psr_write_vsc(intel_dp, &psr_vsc);
144}
145
e2bbc343
RV
146static void vlv_psr_enable_sink(struct intel_dp *intel_dp)
147{
148 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
670b90d2 149 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
e2bbc343
RV
150}
151
152static void hsw_psr_enable_sink(struct intel_dp *intel_dp)
0bc12bcb
RV
153{
154 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
155 struct drm_device *dev = dig_port->base.base.dev;
156 struct drm_i915_private *dev_priv = dev->dev_private;
157 uint32_t aux_clock_divider;
e3d99845 158 uint32_t aux_data_reg, aux_ctl_reg;
0bc12bcb 159 int precharge = 0x3;
0bc12bcb
RV
160 static const uint8_t aux_msg[] = {
161 [0] = DP_AUX_NATIVE_WRITE << 4,
162 [1] = DP_SET_POWER >> 8,
163 [2] = DP_SET_POWER & 0xff,
164 [3] = 1 - 1,
165 [4] = DP_SET_POWER_D0,
166 };
167 int i;
168
169 BUILD_BUG_ON(sizeof(aux_msg) > 20);
170
171 aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, 0);
172
89251b17
RV
173 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
174 DP_PSR_ENABLE & ~DP_PSR_MAIN_LINK_ACTIVE);
0bc12bcb 175
474d1ec4
SJ
176 /* Enable AUX frame sync at sink */
177 if (dev_priv->psr.aux_frame_sync)
178 drm_dp_dpcd_writeb(&intel_dp->aux,
179 DP_SINK_DEVICE_AUX_FRAME_SYNC_CONF,
180 DP_AUX_FRAME_SYNC_ENABLE);
181
e3d99845
SJ
182 aux_data_reg = (INTEL_INFO(dev)->gen >= 9) ?
183 DPA_AUX_CH_DATA1 : EDP_PSR_AUX_DATA1(dev);
184 aux_ctl_reg = (INTEL_INFO(dev)->gen >= 9) ?
185 DPA_AUX_CH_CTL : EDP_PSR_AUX_CTL(dev);
186
0bc12bcb
RV
187 /* Setup AUX registers */
188 for (i = 0; i < sizeof(aux_msg); i += 4)
e3d99845 189 I915_WRITE(aux_data_reg + i,
0bc12bcb
RV
190 intel_dp_pack_aux(&aux_msg[i], sizeof(aux_msg) - i));
191
e3d99845
SJ
192 if (INTEL_INFO(dev)->gen >= 9) {
193 uint32_t val;
194
195 val = I915_READ(aux_ctl_reg);
196 val &= ~DP_AUX_CH_CTL_TIME_OUT_MASK;
197 val |= DP_AUX_CH_CTL_TIME_OUT_1600us;
198 val &= ~DP_AUX_CH_CTL_MESSAGE_SIZE_MASK;
199 val |= (sizeof(aux_msg) << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
474d1ec4 200 /* Use hardcoded data values for PSR, frame sync and GTC */
e3d99845 201 val &= ~DP_AUX_CH_CTL_PSR_DATA_AUX_REG_SKL;
474d1ec4
SJ
202 val &= ~DP_AUX_CH_CTL_FS_DATA_AUX_REG_SKL;
203 val &= ~DP_AUX_CH_CTL_GTC_DATA_AUX_REG_SKL;
e3d99845
SJ
204 I915_WRITE(aux_ctl_reg, val);
205 } else {
206 I915_WRITE(aux_ctl_reg,
0bc12bcb
RV
207 DP_AUX_CH_CTL_TIME_OUT_400us |
208 (sizeof(aux_msg) << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
209 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
210 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
e3d99845 211 }
89251b17
RV
212
213 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG, DP_PSR_ENABLE);
0bc12bcb
RV
214}
215
e2bbc343
RV
216static void vlv_psr_enable_source(struct intel_dp *intel_dp)
217{
218 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
219 struct drm_device *dev = dig_port->base.base.dev;
220 struct drm_i915_private *dev_priv = dev->dev_private;
221 struct drm_crtc *crtc = dig_port->base.base.crtc;
222 enum pipe pipe = to_intel_crtc(crtc)->pipe;
223
224 /* Transition from PSR_state 0 to PSR_state 1, i.e. PSR Inactive */
225 I915_WRITE(VLV_PSRCTL(pipe),
226 VLV_EDP_PSR_MODE_SW_TIMER |
227 VLV_EDP_PSR_SRC_TRANSMITTER_STATE |
228 VLV_EDP_PSR_ENABLE);
229}
230
995d3047
RV
231static void vlv_psr_activate(struct intel_dp *intel_dp)
232{
233 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
234 struct drm_device *dev = dig_port->base.base.dev;
235 struct drm_i915_private *dev_priv = dev->dev_private;
236 struct drm_crtc *crtc = dig_port->base.base.crtc;
237 enum pipe pipe = to_intel_crtc(crtc)->pipe;
238
239 /* Let's do the transition from PSR_state 1 to PSR_state 2
240 * that is PSR transition to active - static frame transmission.
241 * Then Hardware is responsible for the transition to PSR_state 3
242 * that is PSR active - no Remote Frame Buffer (RFB) update.
243 */
244 I915_WRITE(VLV_PSRCTL(pipe), I915_READ(VLV_PSRCTL(pipe)) |
245 VLV_EDP_PSR_ACTIVE_ENTRY);
246}
247
e2bbc343 248static void hsw_psr_enable_source(struct intel_dp *intel_dp)
0bc12bcb
RV
249{
250 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
251 struct drm_device *dev = dig_port->base.base.dev;
252 struct drm_i915_private *dev_priv = dev->dev_private;
474d1ec4 253
0bc12bcb 254 uint32_t max_sleep_time = 0x1f;
d44b4dcb
RV
255 /* Lately it was identified that depending on panel idle frame count
256 * calculated at HW can be off by 1. So let's use what came
97173eaf
RV
257 * from VBT + 1.
258 * There are also other cases where panel demands at least 4
259 * but VBT is not being set. To cover these 2 cases lets use
260 * at least 5 when VBT isn't set to be on the safest side.
d44b4dcb
RV
261 */
262 uint32_t idle_frames = dev_priv->vbt.psr.idle_frames ?
97173eaf 263 dev_priv->vbt.psr.idle_frames + 1 : 5;
0bc12bcb
RV
264 uint32_t val = 0x0;
265 const uint32_t link_entry_time = EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
0bc12bcb 266
3301d409
RV
267 if (intel_dp->psr_dpcd[1] & DP_PSR_NO_TRAIN_ON_EXIT) {
268 /* It doesn't mean we shouldn't send TPS patters, so let's
269 send the minimal TP1 possible and skip TP2. */
270 val |= EDP_PSR_TP1_TIME_100us;
0bc12bcb 271 val |= EDP_PSR_TP2_TP3_TIME_0us;
0bc12bcb 272 val |= EDP_PSR_SKIP_AUX_EXIT;
3301d409
RV
273 /* Sink should be able to train with the 5 or 6 idle patterns */
274 idle_frames += 4;
cff5190c 275 }
0bc12bcb
RV
276
277 I915_WRITE(EDP_PSR_CTL(dev), val |
278 (IS_BROADWELL(dev) ? 0 : link_entry_time) |
279 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
280 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
281 EDP_PSR_ENABLE);
474d1ec4
SJ
282
283 if (dev_priv->psr.psr2_support)
284 I915_WRITE(EDP_PSR2_CTL, EDP_PSR2_ENABLE |
285 EDP_SU_TRACK_ENABLE | EDP_PSR2_TP2_TIME_100);
0bc12bcb
RV
286}
287
288static bool intel_psr_match_conditions(struct intel_dp *intel_dp)
289{
290 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
291 struct drm_device *dev = dig_port->base.base.dev;
292 struct drm_i915_private *dev_priv = dev->dev_private;
293 struct drm_crtc *crtc = dig_port->base.base.crtc;
294 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
295
296 lockdep_assert_held(&dev_priv->psr.lock);
297 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
298 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
299
300 dev_priv->psr.source_ok = false;
301
302 if (IS_HASWELL(dev) && dig_port->port != PORT_A) {
303 DRM_DEBUG_KMS("HSW ties PSR to DDI A (eDP)\n");
304 return false;
305 }
306
307 if (!i915.enable_psr) {
308 DRM_DEBUG_KMS("PSR disable by flag\n");
309 return false;
310 }
311
c8e68b7e 312 if (IS_HASWELL(dev) &&
6e3c9717 313 I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config->cpu_transcoder)) &
c8e68b7e 314 S3D_ENABLE) {
0bc12bcb
RV
315 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
316 return false;
317 }
318
c8e68b7e 319 if (IS_HASWELL(dev) &&
6e3c9717 320 intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
0bc12bcb
RV
321 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
322 return false;
323 }
324
89251b17
RV
325 if (!IS_VALLEYVIEW(dev) && ((dev_priv->vbt.psr.full_link) ||
326 (dig_port->port != PORT_A))) {
327 DRM_DEBUG_KMS("PSR condition failed: Link Standby requested/needed but not supported on this platform\n");
328 return false;
329 }
330
0bc12bcb
RV
331 dev_priv->psr.source_ok = true;
332 return true;
333}
334
e2bbc343 335static void intel_psr_activate(struct intel_dp *intel_dp)
0bc12bcb
RV
336{
337 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
338 struct drm_device *dev = intel_dig_port->base.base.dev;
339 struct drm_i915_private *dev_priv = dev->dev_private;
340
341 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
342 WARN_ON(dev_priv->psr.active);
343 lockdep_assert_held(&dev_priv->psr.lock);
344
995d3047
RV
345 /* Enable/Re-enable PSR on the host */
346 if (HAS_DDI(dev))
347 /* On HSW+ after we enable PSR on source it will activate it
348 * as soon as it match configure idle_frame count. So
349 * we just actually enable it here on activation time.
350 */
351 hsw_psr_enable_source(intel_dp);
352 else
353 vlv_psr_activate(intel_dp);
354
0bc12bcb
RV
355 dev_priv->psr.active = true;
356}
357
b2b89f55
RV
358/**
359 * intel_psr_enable - Enable PSR
360 * @intel_dp: Intel DP
361 *
362 * This function can only be called after the pipe is fully trained and enabled.
363 */
0bc12bcb
RV
364void intel_psr_enable(struct intel_dp *intel_dp)
365{
366 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
367 struct drm_device *dev = intel_dig_port->base.base.dev;
368 struct drm_i915_private *dev_priv = dev->dev_private;
474d1ec4 369 struct intel_crtc *crtc = to_intel_crtc(intel_dig_port->base.base.crtc);
0bc12bcb
RV
370
371 if (!HAS_PSR(dev)) {
372 DRM_DEBUG_KMS("PSR not supported on this platform\n");
373 return;
374 }
375
376 if (!is_edp_psr(intel_dp)) {
377 DRM_DEBUG_KMS("PSR not supported by this panel\n");
378 return;
379 }
380
381 mutex_lock(&dev_priv->psr.lock);
382 if (dev_priv->psr.enabled) {
383 DRM_DEBUG_KMS("PSR already in use\n");
384 goto unlock;
385 }
386
387 if (!intel_psr_match_conditions(intel_dp))
388 goto unlock;
389
390 dev_priv->psr.busy_frontbuffer_bits = 0;
391
e2bbc343
RV
392 if (HAS_DDI(dev)) {
393 hsw_psr_setup_vsc(intel_dp);
0bc12bcb 394
474d1ec4
SJ
395 if (dev_priv->psr.psr2_support) {
396 /* PSR2 is restricted to work with panel resolutions upto 3200x2000 */
397 if (crtc->config->pipe_src_w > 3200 ||
398 crtc->config->pipe_src_h > 2000)
399 dev_priv->psr.psr2_support = false;
400 else
401 skl_psr_setup_su_vsc(intel_dp);
402 }
403
e2bbc343
RV
404 /* Avoid continuous PSR exit by masking memup and hpd */
405 I915_WRITE(EDP_PSR_DEBUG_CTL(dev), EDP_PSR_DEBUG_MASK_MEMUP |
09108b90 406 EDP_PSR_DEBUG_MASK_HPD);
0bc12bcb 407
e2bbc343
RV
408 /* Enable PSR on the panel */
409 hsw_psr_enable_sink(intel_dp);
e3d99845
SJ
410
411 if (INTEL_INFO(dev)->gen >= 9)
412 intel_psr_activate(intel_dp);
e2bbc343
RV
413 } else {
414 vlv_psr_setup_vsc(intel_dp);
415
416 /* Enable PSR on the panel */
417 vlv_psr_enable_sink(intel_dp);
418
419 /* On HSW+ enable_source also means go to PSR entry/active
420 * state as soon as idle_frame achieved and here would be
421 * to soon. However on VLV enable_source just enable PSR
422 * but let it on inactive state. So we might do this prior
423 * to active transition, i.e. here.
424 */
425 vlv_psr_enable_source(intel_dp);
426 }
0bc12bcb
RV
427
428 dev_priv->psr.enabled = intel_dp;
429unlock:
430 mutex_unlock(&dev_priv->psr.lock);
431}
432
e2bbc343 433static void vlv_psr_disable(struct intel_dp *intel_dp)
0bc12bcb
RV
434{
435 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
436 struct drm_device *dev = intel_dig_port->base.base.dev;
437 struct drm_i915_private *dev_priv = dev->dev_private;
e2bbc343
RV
438 struct intel_crtc *intel_crtc =
439 to_intel_crtc(intel_dig_port->base.base.crtc);
440 uint32_t val;
0bc12bcb 441
e2bbc343
RV
442 if (dev_priv->psr.active) {
443 /* Put VLV PSR back to PSR_state 0 that is PSR Disabled. */
444 if (wait_for((I915_READ(VLV_PSRSTAT(intel_crtc->pipe)) &
445 VLV_EDP_PSR_IN_TRANS) == 0, 1))
446 WARN(1, "PSR transition took longer than expected\n");
447
448 val = I915_READ(VLV_PSRCTL(intel_crtc->pipe));
449 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
450 val &= ~VLV_EDP_PSR_ENABLE;
451 val &= ~VLV_EDP_PSR_MODE_MASK;
452 I915_WRITE(VLV_PSRCTL(intel_crtc->pipe), val);
453
454 dev_priv->psr.active = false;
455 } else {
456 WARN_ON(vlv_is_psr_active_on_pipe(dev, intel_crtc->pipe));
0bc12bcb 457 }
e2bbc343
RV
458}
459
460static void hsw_psr_disable(struct intel_dp *intel_dp)
461{
462 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
463 struct drm_device *dev = intel_dig_port->base.base.dev;
464 struct drm_i915_private *dev_priv = dev->dev_private;
0bc12bcb
RV
465
466 if (dev_priv->psr.active) {
467 I915_WRITE(EDP_PSR_CTL(dev),
468 I915_READ(EDP_PSR_CTL(dev)) & ~EDP_PSR_ENABLE);
469
470 /* Wait till PSR is idle */
471 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev)) &
472 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
473 DRM_ERROR("Timed out waiting for PSR Idle State\n");
474
475 dev_priv->psr.active = false;
476 } else {
477 WARN_ON(I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE);
478 }
e2bbc343
RV
479}
480
481/**
482 * intel_psr_disable - Disable PSR
483 * @intel_dp: Intel DP
484 *
485 * This function needs to be called before disabling pipe.
486 */
487void intel_psr_disable(struct intel_dp *intel_dp)
488{
489 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
490 struct drm_device *dev = intel_dig_port->base.base.dev;
491 struct drm_i915_private *dev_priv = dev->dev_private;
492
493 mutex_lock(&dev_priv->psr.lock);
494 if (!dev_priv->psr.enabled) {
495 mutex_unlock(&dev_priv->psr.lock);
496 return;
497 }
498
499 if (HAS_DDI(dev))
500 hsw_psr_disable(intel_dp);
501 else
502 vlv_psr_disable(intel_dp);
0bc12bcb
RV
503
504 dev_priv->psr.enabled = NULL;
505 mutex_unlock(&dev_priv->psr.lock);
506
507 cancel_delayed_work_sync(&dev_priv->psr.work);
508}
509
510static void intel_psr_work(struct work_struct *work)
511{
512 struct drm_i915_private *dev_priv =
513 container_of(work, typeof(*dev_priv), psr.work.work);
514 struct intel_dp *intel_dp = dev_priv->psr.enabled;
995d3047
RV
515 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
516 enum pipe pipe = to_intel_crtc(crtc)->pipe;
0bc12bcb
RV
517
518 /* We have to make sure PSR is ready for re-enable
519 * otherwise it keeps disabled until next full enable/disable cycle.
520 * PSR might take some time to get fully disabled
521 * and be ready for re-enable.
522 */
995d3047
RV
523 if (HAS_DDI(dev_priv->dev)) {
524 if (wait_for((I915_READ(EDP_PSR_STATUS_CTL(dev_priv->dev)) &
525 EDP_PSR_STATUS_STATE_MASK) == 0, 50)) {
526 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
527 return;
528 }
529 } else {
530 if (wait_for((I915_READ(VLV_PSRSTAT(pipe)) &
531 VLV_EDP_PSR_IN_TRANS) == 0, 1)) {
532 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
533 return;
534 }
0bc12bcb 535 }
0bc12bcb
RV
536 mutex_lock(&dev_priv->psr.lock);
537 intel_dp = dev_priv->psr.enabled;
538
539 if (!intel_dp)
540 goto unlock;
541
542 /*
543 * The delayed work can race with an invalidate hence we need to
544 * recheck. Since psr_flush first clears this and then reschedules we
545 * won't ever miss a flush when bailing out here.
546 */
547 if (dev_priv->psr.busy_frontbuffer_bits)
548 goto unlock;
549
e2bbc343 550 intel_psr_activate(intel_dp);
0bc12bcb
RV
551unlock:
552 mutex_unlock(&dev_priv->psr.lock);
553}
554
555static void intel_psr_exit(struct drm_device *dev)
556{
557 struct drm_i915_private *dev_priv = dev->dev_private;
995d3047
RV
558 struct intel_dp *intel_dp = dev_priv->psr.enabled;
559 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
560 enum pipe pipe = to_intel_crtc(crtc)->pipe;
561 u32 val;
0bc12bcb 562
995d3047
RV
563 if (!dev_priv->psr.active)
564 return;
565
566 if (HAS_DDI(dev)) {
567 val = I915_READ(EDP_PSR_CTL(dev));
0bc12bcb
RV
568
569 WARN_ON(!(val & EDP_PSR_ENABLE));
570
571 I915_WRITE(EDP_PSR_CTL(dev), val & ~EDP_PSR_ENABLE);
995d3047
RV
572 } else {
573 val = I915_READ(VLV_PSRCTL(pipe));
574
575 /* Here we do the transition from PSR_state 3 to PSR_state 5
576 * directly once PSR State 4 that is active with single frame
577 * update can be skipped. PSR_state 5 that is PSR exit then
578 * Hardware is responsible to transition back to PSR_state 1
579 * that is PSR inactive. Same state after
580 * vlv_edp_psr_enable_source.
581 */
582 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
583 I915_WRITE(VLV_PSRCTL(pipe), val);
584
585 /* Send AUX wake up - Spec says after transitioning to PSR
586 * active we have to send AUX wake up by writing 01h in DPCD
587 * 600h of sink device.
588 * XXX: This might slow down the transition, but without this
589 * HW doesn't complete the transition to PSR_state 1 and we
590 * never get the screen updated.
591 */
592 drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
593 DP_SET_POWER_D0);
0bc12bcb
RV
594 }
595
995d3047 596 dev_priv->psr.active = false;
0bc12bcb
RV
597}
598
c7240c3b
RV
599/**
600 * intel_psr_single_frame_update - Single Frame Update
601 * @dev: DRM device
20c8838b 602 * @frontbuffer_bits: frontbuffer plane tracking bits
c7240c3b
RV
603 *
604 * Some platforms support a single frame update feature that is used to
605 * send and update only one frame on Remote Frame Buffer.
606 * So far it is only implemented for Valleyview and Cherryview because
607 * hardware requires this to be done before a page flip.
608 */
20c8838b
DV
609void intel_psr_single_frame_update(struct drm_device *dev,
610 unsigned frontbuffer_bits)
c7240c3b
RV
611{
612 struct drm_i915_private *dev_priv = dev->dev_private;
613 struct drm_crtc *crtc;
614 enum pipe pipe;
615 u32 val;
616
617 /*
618 * Single frame update is already supported on BDW+ but it requires
619 * many W/A and it isn't really needed.
620 */
621 if (!IS_VALLEYVIEW(dev))
622 return;
623
624 mutex_lock(&dev_priv->psr.lock);
625 if (!dev_priv->psr.enabled) {
626 mutex_unlock(&dev_priv->psr.lock);
627 return;
628 }
629
630 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
631 pipe = to_intel_crtc(crtc)->pipe;
c7240c3b 632
20c8838b
DV
633 if (frontbuffer_bits & INTEL_FRONTBUFFER_ALL_MASK(pipe)) {
634 val = I915_READ(VLV_PSRCTL(pipe));
c7240c3b 635
20c8838b
DV
636 /*
637 * We need to set this bit before writing registers for a flip.
638 * This bit will be self-clear when it gets to the PSR active state.
639 */
640 I915_WRITE(VLV_PSRCTL(pipe), val | VLV_EDP_PSR_SINGLE_FRAME_UPDATE);
641 }
c7240c3b
RV
642 mutex_unlock(&dev_priv->psr.lock);
643}
644
b2b89f55
RV
645/**
646 * intel_psr_invalidate - Invalidade PSR
647 * @dev: DRM device
648 * @frontbuffer_bits: frontbuffer plane tracking bits
649 *
650 * Since the hardware frontbuffer tracking has gaps we need to integrate
651 * with the software frontbuffer tracking. This function gets called every
652 * time frontbuffer rendering starts and a buffer gets dirtied. PSR must be
653 * disabled if the frontbuffer mask contains a buffer relevant to PSR.
654 *
655 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits."
656 */
0bc12bcb 657void intel_psr_invalidate(struct drm_device *dev,
20c8838b 658 unsigned frontbuffer_bits)
0bc12bcb
RV
659{
660 struct drm_i915_private *dev_priv = dev->dev_private;
661 struct drm_crtc *crtc;
662 enum pipe pipe;
663
664 mutex_lock(&dev_priv->psr.lock);
665 if (!dev_priv->psr.enabled) {
666 mutex_unlock(&dev_priv->psr.lock);
667 return;
668 }
669
670 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
671 pipe = to_intel_crtc(crtc)->pipe;
672
0bc12bcb 673 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
0bc12bcb 674 dev_priv->psr.busy_frontbuffer_bits |= frontbuffer_bits;
ec76d629
DV
675
676 if (frontbuffer_bits)
677 intel_psr_exit(dev);
678
0bc12bcb
RV
679 mutex_unlock(&dev_priv->psr.lock);
680}
681
b2b89f55
RV
682/**
683 * intel_psr_flush - Flush PSR
684 * @dev: DRM device
685 * @frontbuffer_bits: frontbuffer plane tracking bits
169de131 686 * @origin: which operation caused the flush
b2b89f55
RV
687 *
688 * Since the hardware frontbuffer tracking has gaps we need to integrate
689 * with the software frontbuffer tracking. This function gets called every
690 * time frontbuffer rendering has completed and flushed out to memory. PSR
691 * can be enabled again if no other frontbuffer relevant to PSR is dirty.
692 *
693 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits.
694 */
0bc12bcb 695void intel_psr_flush(struct drm_device *dev,
169de131 696 unsigned frontbuffer_bits, enum fb_op_origin origin)
0bc12bcb
RV
697{
698 struct drm_i915_private *dev_priv = dev->dev_private;
699 struct drm_crtc *crtc;
700 enum pipe pipe;
701
702 mutex_lock(&dev_priv->psr.lock);
703 if (!dev_priv->psr.enabled) {
704 mutex_unlock(&dev_priv->psr.lock);
705 return;
706 }
707
708 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
709 pipe = to_intel_crtc(crtc)->pipe;
ec76d629
DV
710
711 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
0bc12bcb
RV
712 dev_priv->psr.busy_frontbuffer_bits &= ~frontbuffer_bits;
713
169de131
RV
714 if (HAS_DDI(dev)) {
715 /*
716 * By definition every flush should mean invalidate + flush,
717 * however on core platforms let's minimize the
718 * disable/re-enable so we can avoid the invalidate when flip
719 * originated the flush.
720 */
721 if (frontbuffer_bits && origin != ORIGIN_FLIP)
722 intel_psr_exit(dev);
723 } else {
724 /*
725 * On Valleyview and Cherryview we don't use hardware tracking
726 * so any plane updates or cursor moves don't result in a PSR
727 * invalidating. Which means we need to manually fake this in
728 * software for all flushes.
729 */
730 if (frontbuffer_bits)
731 intel_psr_exit(dev);
732 }
995d3047 733
0bc12bcb
RV
734 if (!dev_priv->psr.active && !dev_priv->psr.busy_frontbuffer_bits)
735 schedule_delayed_work(&dev_priv->psr.work,
736 msecs_to_jiffies(100));
737 mutex_unlock(&dev_priv->psr.lock);
738}
739
b2b89f55
RV
740/**
741 * intel_psr_init - Init basic PSR work and mutex.
742 * @dev: DRM device
743 *
744 * This function is called only once at driver load to initialize basic
745 * PSR stuff.
746 */
0bc12bcb
RV
747void intel_psr_init(struct drm_device *dev)
748{
749 struct drm_i915_private *dev_priv = dev->dev_private;
750
751 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_psr_work);
752 mutex_init(&dev_priv->psr.lock);
753}
This page took 0.101313 seconds and 5 git commands to generate.