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