blob: 3c80b86e45f87fea5adb6fe4a35867d8d22f1533 [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,
Ville Syrjälä436c6d42015-09-18 20:03:37 +030076 const struct edp_vsc_psr *vsc_psr)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080077{
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);
Ville Syrjälä436c6d42015-09-18 20:03:37 +030082 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020083 i915_reg_t ctl_reg = HSW_TVIDEO_DIP_CTL(cpu_transcoder);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080084 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
Ville Syrjälä436c6d42015-09-18 20:03:37 +030093 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++;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080097 }
Ville Syrjälä436c6d42015-09-18 20:03:37 +030098 for (; i < VIDEO_DIP_VSC_DATA_SIZE; i += 4)
99 I915_WRITE(HSW_TVIDEO_DIP_VSC_DATA(cpu_transcoder,
100 i >> 2), 0);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800101
102 I915_WRITE(ctl_reg, VIDEO_DIP_ENABLE_VSC_HSW);
103 POSTING_READ(ctl_reg);
104}
105
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800106static 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
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530122static 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
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800135static void hsw_psr_setup_vsc(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800136{
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
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800148static void vlv_psr_enable_sink(struct intel_dp *intel_dp)
149{
150 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
Durgadoss R670b90d2015-03-27 17:21:32 +0530151 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800152}
153
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200154static i915_reg_t psr_aux_ctl_reg(struct drm_i915_private *dev_priv,
155 enum port port)
Ville Syrjälä1f380892015-11-11 20:34:16 +0200156{
157 if (INTEL_INFO(dev_priv)->gen >= 9)
158 return DP_AUX_CH_CTL(port);
159 else
160 return EDP_PSR_AUX_CTL;
161}
162
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200163static i915_reg_t psr_aux_data_reg(struct drm_i915_private *dev_priv,
164 enum port port, int index)
Ville Syrjälä1f380892015-11-11 20:34:16 +0200165{
166 if (INTEL_INFO(dev_priv)->gen >= 9)
167 return DP_AUX_CH_DATA(port, index);
168 else
169 return EDP_PSR_AUX_DATA(index);
170}
171
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800172static void hsw_psr_enable_sink(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800173{
174 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
175 struct drm_device *dev = dig_port->base.base.dev;
176 struct drm_i915_private *dev_priv = dev->dev_private;
177 uint32_t aux_clock_divider;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200178 i915_reg_t aux_ctl_reg;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800179 int precharge = 0x3;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800180 static const uint8_t aux_msg[] = {
181 [0] = DP_AUX_NATIVE_WRITE << 4,
182 [1] = DP_SET_POWER >> 8,
183 [2] = DP_SET_POWER & 0xff,
184 [3] = 1 - 1,
185 [4] = DP_SET_POWER_D0,
186 };
Ville Syrjälä750a9512015-11-11 20:34:12 +0200187 enum port port = dig_port->port;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800188 int i;
189
190 BUILD_BUG_ON(sizeof(aux_msg) > 20);
191
192 aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, 0);
193
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530194 /* Enable AUX frame sync at sink */
195 if (dev_priv->psr.aux_frame_sync)
196 drm_dp_dpcd_writeb(&intel_dp->aux,
197 DP_SINK_DEVICE_AUX_FRAME_SYNC_CONF,
198 DP_AUX_FRAME_SYNC_ENABLE);
199
Ville Syrjälä1f380892015-11-11 20:34:16 +0200200 aux_ctl_reg = psr_aux_ctl_reg(dev_priv, port);
Sonika Jindale3d99842015-01-22 14:30:54 +0530201
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800202 /* Setup AUX registers */
203 for (i = 0; i < sizeof(aux_msg); i += 4)
Ville Syrjälä1f380892015-11-11 20:34:16 +0200204 I915_WRITE(psr_aux_data_reg(dev_priv, port, i >> 2),
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800205 intel_dp_pack_aux(&aux_msg[i], sizeof(aux_msg) - i));
206
Sonika Jindale3d99842015-01-22 14:30:54 +0530207 if (INTEL_INFO(dev)->gen >= 9) {
208 uint32_t val;
209
210 val = I915_READ(aux_ctl_reg);
211 val &= ~DP_AUX_CH_CTL_TIME_OUT_MASK;
212 val |= DP_AUX_CH_CTL_TIME_OUT_1600us;
213 val &= ~DP_AUX_CH_CTL_MESSAGE_SIZE_MASK;
214 val |= (sizeof(aux_msg) << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT);
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530215 /* Use hardcoded data values for PSR, frame sync and GTC */
Sonika Jindale3d99842015-01-22 14:30:54 +0530216 val &= ~DP_AUX_CH_CTL_PSR_DATA_AUX_REG_SKL;
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530217 val &= ~DP_AUX_CH_CTL_FS_DATA_AUX_REG_SKL;
218 val &= ~DP_AUX_CH_CTL_GTC_DATA_AUX_REG_SKL;
Sonika Jindale3d99842015-01-22 14:30:54 +0530219 I915_WRITE(aux_ctl_reg, val);
220 } else {
221 I915_WRITE(aux_ctl_reg,
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800222 DP_AUX_CH_CTL_TIME_OUT_400us |
223 (sizeof(aux_msg) << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
224 (precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
225 (aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT));
Sonika Jindale3d99842015-01-22 14:30:54 +0530226 }
Rodrigo Vivi89251b12015-04-10 11:15:09 -0700227
228 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG, DP_PSR_ENABLE);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800229}
230
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800231static void vlv_psr_enable_source(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 /* Transition from PSR_state 0 to PSR_state 1, i.e. PSR Inactive */
240 I915_WRITE(VLV_PSRCTL(pipe),
241 VLV_EDP_PSR_MODE_SW_TIMER |
242 VLV_EDP_PSR_SRC_TRANSMITTER_STATE |
243 VLV_EDP_PSR_ENABLE);
244}
245
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800246static void vlv_psr_activate(struct intel_dp *intel_dp)
247{
248 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
249 struct drm_device *dev = dig_port->base.base.dev;
250 struct drm_i915_private *dev_priv = dev->dev_private;
251 struct drm_crtc *crtc = dig_port->base.base.crtc;
252 enum pipe pipe = to_intel_crtc(crtc)->pipe;
253
254 /* Let's do the transition from PSR_state 1 to PSR_state 2
255 * that is PSR transition to active - static frame transmission.
256 * Then Hardware is responsible for the transition to PSR_state 3
257 * that is PSR active - no Remote Frame Buffer (RFB) update.
258 */
259 I915_WRITE(VLV_PSRCTL(pipe), I915_READ(VLV_PSRCTL(pipe)) |
260 VLV_EDP_PSR_ACTIVE_ENTRY);
261}
262
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800263static void hsw_psr_enable_source(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800264{
265 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
266 struct drm_device *dev = dig_port->base.base.dev;
267 struct drm_i915_private *dev_priv = dev->dev_private;
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530268
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800269 uint32_t max_sleep_time = 0x1f;
Rodrigo Vividfaf37b2015-12-07 14:45:20 -0800270 /*
271 * Let's respect VBT in case VBT asks a higher idle_frame value.
272 * Let's use 6 as the minimum to cover all known cases including
273 * the off-by-one issue that HW has in some cases. Also there are
274 * cases where sink should be able to train
275 * with the 5 or 6 idle patterns.
Rodrigo Vivid44b4dc2014-11-14 08:52:31 -0800276 */
Rodrigo Vividfaf37b2015-12-07 14:45:20 -0800277 uint32_t idle_frames = max(6, dev_priv->vbt.psr.idle_frames);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800278 uint32_t val = 0x0;
Rodrigo Vivi7370c682015-12-11 16:31:31 -0800279
280 if (IS_HASWELL(dev))
281 val |= EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800282
Ville Syrjälä443a3892015-11-11 20:34:15 +0200283 I915_WRITE(EDP_PSR_CTL, val |
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800284 max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT |
285 idle_frames << EDP_PSR_IDLE_FRAME_SHIFT |
286 EDP_PSR_ENABLE);
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530287
288 if (dev_priv->psr.psr2_support)
289 I915_WRITE(EDP_PSR2_CTL, EDP_PSR2_ENABLE |
290 EDP_SU_TRACK_ENABLE | EDP_PSR2_TP2_TIME_100);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800291}
292
293static bool intel_psr_match_conditions(struct intel_dp *intel_dp)
294{
295 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
296 struct drm_device *dev = dig_port->base.base.dev;
297 struct drm_i915_private *dev_priv = dev->dev_private;
298 struct drm_crtc *crtc = dig_port->base.base.crtc;
299 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
300
301 lockdep_assert_held(&dev_priv->psr.lock);
302 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
303 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
304
305 dev_priv->psr.source_ok = false;
306
Rodrigo Vividc9b5a02016-02-01 12:02:06 -0800307 /*
308 * HSW spec explicitly says PSR is tied to port A.
309 * BDW+ platforms with DDI implementation of PSR have different
310 * PSR registers per transcoder and we only implement transcoder EDP
311 * ones. Since by Display design transcoder EDP is tied to port A
312 * we can safely escape based on the port A.
313 */
314 if (HAS_DDI(dev) && dig_port->port != PORT_A) {
315 DRM_DEBUG_KMS("PSR condition failed: Port not supported\n");
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800316 return false;
317 }
318
319 if (!i915.enable_psr) {
320 DRM_DEBUG_KMS("PSR disable by flag\n");
321 return false;
322 }
323
Rodrigo Vivic8e68b72015-01-12 10:14:29 -0800324 if (IS_HASWELL(dev) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200325 I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config->cpu_transcoder)) &
Rodrigo Vivic8e68b72015-01-12 10:14:29 -0800326 S3D_ENABLE) {
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800327 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
328 return false;
329 }
330
Rodrigo Vivic8e68b72015-01-12 10:14:29 -0800331 if (IS_HASWELL(dev) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200332 intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800333 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
334 return false;
335 }
336
Wayne Boyer666a4532015-12-09 12:29:35 -0800337 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
Rodrigo Vividc9b5a02016-02-01 12:02:06 -0800338 dev_priv->vbt.psr.full_link) {
Rodrigo Vivi89251b12015-04-10 11:15:09 -0700339 DRM_DEBUG_KMS("PSR condition failed: Link Standby requested/needed but not supported on this platform\n");
340 return false;
341 }
342
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800343 dev_priv->psr.source_ok = true;
344 return true;
345}
346
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800347static void intel_psr_activate(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800348{
349 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
350 struct drm_device *dev = intel_dig_port->base.base.dev;
351 struct drm_i915_private *dev_priv = dev->dev_private;
352
Ville Syrjälä443a3892015-11-11 20:34:15 +0200353 WARN_ON(I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800354 WARN_ON(dev_priv->psr.active);
355 lockdep_assert_held(&dev_priv->psr.lock);
356
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800357 /* Enable/Re-enable PSR on the host */
358 if (HAS_DDI(dev))
359 /* On HSW+ after we enable PSR on source it will activate it
360 * as soon as it match configure idle_frame count. So
361 * we just actually enable it here on activation time.
362 */
363 hsw_psr_enable_source(intel_dp);
364 else
365 vlv_psr_activate(intel_dp);
366
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800367 dev_priv->psr.active = true;
368}
369
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800370/**
371 * intel_psr_enable - Enable PSR
372 * @intel_dp: Intel DP
373 *
374 * This function can only be called after the pipe is fully trained and enabled.
375 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800376void intel_psr_enable(struct intel_dp *intel_dp)
377{
378 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
379 struct drm_device *dev = intel_dig_port->base.base.dev;
380 struct drm_i915_private *dev_priv = dev->dev_private;
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530381 struct intel_crtc *crtc = to_intel_crtc(intel_dig_port->base.base.crtc);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800382
383 if (!HAS_PSR(dev)) {
384 DRM_DEBUG_KMS("PSR not supported on this platform\n");
385 return;
386 }
387
388 if (!is_edp_psr(intel_dp)) {
389 DRM_DEBUG_KMS("PSR not supported by this panel\n");
390 return;
391 }
392
393 mutex_lock(&dev_priv->psr.lock);
394 if (dev_priv->psr.enabled) {
395 DRM_DEBUG_KMS("PSR already in use\n");
396 goto unlock;
397 }
398
399 if (!intel_psr_match_conditions(intel_dp))
400 goto unlock;
401
402 dev_priv->psr.busy_frontbuffer_bits = 0;
403
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800404 if (HAS_DDI(dev)) {
405 hsw_psr_setup_vsc(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800406
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530407 if (dev_priv->psr.psr2_support) {
408 /* PSR2 is restricted to work with panel resolutions upto 3200x2000 */
409 if (crtc->config->pipe_src_w > 3200 ||
410 crtc->config->pipe_src_h > 2000)
411 dev_priv->psr.psr2_support = false;
412 else
413 skl_psr_setup_su_vsc(intel_dp);
414 }
415
Rodrigo Vivibb929cb2015-11-18 11:21:55 -0800416 /*
417 * Per Spec: Avoid continuous PSR exit by masking MEMUP and HPD.
418 * Also mask LPSP to avoid dependency on other drivers that
419 * might block runtime_pm besides preventing other hw tracking
420 * issues now we can rely on frontbuffer tracking.
421 */
Ville Syrjälä443a3892015-11-11 20:34:15 +0200422 I915_WRITE(EDP_PSR_DEBUG_CTL, EDP_PSR_DEBUG_MASK_MEMUP |
Rodrigo Vivibb929cb2015-11-18 11:21:55 -0800423 EDP_PSR_DEBUG_MASK_HPD | EDP_PSR_DEBUG_MASK_LPSP);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800424
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800425 /* Enable PSR on the panel */
426 hsw_psr_enable_sink(intel_dp);
Sonika Jindale3d99842015-01-22 14:30:54 +0530427
428 if (INTEL_INFO(dev)->gen >= 9)
429 intel_psr_activate(intel_dp);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800430 } else {
431 vlv_psr_setup_vsc(intel_dp);
432
433 /* Enable PSR on the panel */
434 vlv_psr_enable_sink(intel_dp);
435
436 /* On HSW+ enable_source also means go to PSR entry/active
437 * state as soon as idle_frame achieved and here would be
438 * to soon. However on VLV enable_source just enable PSR
439 * but let it on inactive state. So we might do this prior
440 * to active transition, i.e. here.
441 */
442 vlv_psr_enable_source(intel_dp);
443 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800444
Rodrigo Vivid0ac8962015-11-11 11:37:07 -0800445 /*
446 * FIXME: Activation should happen immediately since this function
447 * is just called after pipe is fully trained and enabled.
448 * However on every platform we face issues when first activation
449 * follows a modeset so quickly.
450 * - On VLV/CHV we get bank screen on first activation
451 * - On HSW/BDW we get a recoverable frozen screen until next
452 * exit-activate sequence.
453 */
454 if (INTEL_INFO(dev)->gen < 9)
455 schedule_delayed_work(&dev_priv->psr.work,
456 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
457
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800458 dev_priv->psr.enabled = intel_dp;
459unlock:
460 mutex_unlock(&dev_priv->psr.lock);
461}
462
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800463static void vlv_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;
468 struct intel_crtc *intel_crtc =
469 to_intel_crtc(intel_dig_port->base.base.crtc);
470 uint32_t val;
471
472 if (dev_priv->psr.active) {
473 /* Put VLV PSR back to PSR_state 0 that is PSR Disabled. */
474 if (wait_for((I915_READ(VLV_PSRSTAT(intel_crtc->pipe)) &
475 VLV_EDP_PSR_IN_TRANS) == 0, 1))
476 WARN(1, "PSR transition took longer than expected\n");
477
478 val = I915_READ(VLV_PSRCTL(intel_crtc->pipe));
479 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
480 val &= ~VLV_EDP_PSR_ENABLE;
481 val &= ~VLV_EDP_PSR_MODE_MASK;
482 I915_WRITE(VLV_PSRCTL(intel_crtc->pipe), val);
483
484 dev_priv->psr.active = false;
485 } else {
486 WARN_ON(vlv_is_psr_active_on_pipe(dev, intel_crtc->pipe));
487 }
488}
489
490static void hsw_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 if (dev_priv->psr.active) {
Ville Syrjälä443a3892015-11-11 20:34:15 +0200497 I915_WRITE(EDP_PSR_CTL,
498 I915_READ(EDP_PSR_CTL) & ~EDP_PSR_ENABLE);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800499
500 /* Wait till PSR is idle */
Ville Syrjälä443a3892015-11-11 20:34:15 +0200501 if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL) &
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800502 EDP_PSR_STATUS_STATE_MASK) == 0, 2000, 10))
503 DRM_ERROR("Timed out waiting for PSR Idle State\n");
504
505 dev_priv->psr.active = false;
506 } else {
Ville Syrjälä443a3892015-11-11 20:34:15 +0200507 WARN_ON(I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800508 }
509}
510
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800511/**
512 * intel_psr_disable - Disable PSR
513 * @intel_dp: Intel DP
514 *
515 * This function needs to be called before disabling pipe.
516 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800517void intel_psr_disable(struct intel_dp *intel_dp)
518{
519 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
520 struct drm_device *dev = intel_dig_port->base.base.dev;
521 struct drm_i915_private *dev_priv = dev->dev_private;
522
523 mutex_lock(&dev_priv->psr.lock);
524 if (!dev_priv->psr.enabled) {
525 mutex_unlock(&dev_priv->psr.lock);
526 return;
527 }
528
Rodrigo Vivib6e4d532015-11-23 14:19:32 -0800529 /* Disable PSR on Source */
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800530 if (HAS_DDI(dev))
531 hsw_psr_disable(intel_dp);
532 else
533 vlv_psr_disable(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800534
Rodrigo Vivib6e4d532015-11-23 14:19:32 -0800535 /* Disable PSR on Sink */
536 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG, 0);
537
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800538 dev_priv->psr.enabled = NULL;
539 mutex_unlock(&dev_priv->psr.lock);
540
541 cancel_delayed_work_sync(&dev_priv->psr.work);
542}
543
544static void intel_psr_work(struct work_struct *work)
545{
546 struct drm_i915_private *dev_priv =
547 container_of(work, typeof(*dev_priv), psr.work.work);
548 struct intel_dp *intel_dp = dev_priv->psr.enabled;
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800549 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
550 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800551
552 /* We have to make sure PSR is ready for re-enable
553 * otherwise it keeps disabled until next full enable/disable cycle.
554 * PSR might take some time to get fully disabled
555 * and be ready for re-enable.
556 */
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800557 if (HAS_DDI(dev_priv->dev)) {
Ville Syrjälä443a3892015-11-11 20:34:15 +0200558 if (wait_for((I915_READ(EDP_PSR_STATUS_CTL) &
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800559 EDP_PSR_STATUS_STATE_MASK) == 0, 50)) {
560 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
561 return;
562 }
563 } else {
564 if (wait_for((I915_READ(VLV_PSRSTAT(pipe)) &
565 VLV_EDP_PSR_IN_TRANS) == 0, 1)) {
566 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
567 return;
568 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800569 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800570 mutex_lock(&dev_priv->psr.lock);
571 intel_dp = dev_priv->psr.enabled;
572
573 if (!intel_dp)
574 goto unlock;
575
576 /*
577 * The delayed work can race with an invalidate hence we need to
578 * recheck. Since psr_flush first clears this and then reschedules we
579 * won't ever miss a flush when bailing out here.
580 */
581 if (dev_priv->psr.busy_frontbuffer_bits)
582 goto unlock;
583
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800584 intel_psr_activate(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800585unlock:
586 mutex_unlock(&dev_priv->psr.lock);
587}
588
589static void intel_psr_exit(struct drm_device *dev)
590{
591 struct drm_i915_private *dev_priv = dev->dev_private;
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800592 struct intel_dp *intel_dp = dev_priv->psr.enabled;
593 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
594 enum pipe pipe = to_intel_crtc(crtc)->pipe;
595 u32 val;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800596
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800597 if (!dev_priv->psr.active)
598 return;
599
600 if (HAS_DDI(dev)) {
Ville Syrjälä443a3892015-11-11 20:34:15 +0200601 val = I915_READ(EDP_PSR_CTL);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800602
603 WARN_ON(!(val & EDP_PSR_ENABLE));
604
Ville Syrjälä443a3892015-11-11 20:34:15 +0200605 I915_WRITE(EDP_PSR_CTL, val & ~EDP_PSR_ENABLE);
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800606 } else {
607 val = I915_READ(VLV_PSRCTL(pipe));
608
609 /* Here we do the transition from PSR_state 3 to PSR_state 5
610 * directly once PSR State 4 that is active with single frame
611 * update can be skipped. PSR_state 5 that is PSR exit then
612 * Hardware is responsible to transition back to PSR_state 1
613 * that is PSR inactive. Same state after
614 * vlv_edp_psr_enable_source.
615 */
616 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
617 I915_WRITE(VLV_PSRCTL(pipe), val);
618
619 /* Send AUX wake up - Spec says after transitioning to PSR
620 * active we have to send AUX wake up by writing 01h in DPCD
621 * 600h of sink device.
622 * XXX: This might slow down the transition, but without this
623 * HW doesn't complete the transition to PSR_state 1 and we
624 * never get the screen updated.
625 */
626 drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
627 DP_SET_POWER_D0);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800628 }
629
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800630 dev_priv->psr.active = false;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800631}
632
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800633/**
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700634 * intel_psr_single_frame_update - Single Frame Update
635 * @dev: DRM device
Daniel Vetter20c88382015-06-18 10:30:27 +0200636 * @frontbuffer_bits: frontbuffer plane tracking bits
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700637 *
638 * Some platforms support a single frame update feature that is used to
639 * send and update only one frame on Remote Frame Buffer.
640 * So far it is only implemented for Valleyview and Cherryview because
641 * hardware requires this to be done before a page flip.
642 */
Daniel Vetter20c88382015-06-18 10:30:27 +0200643void intel_psr_single_frame_update(struct drm_device *dev,
644 unsigned frontbuffer_bits)
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700645{
646 struct drm_i915_private *dev_priv = dev->dev_private;
647 struct drm_crtc *crtc;
648 enum pipe pipe;
649 u32 val;
650
651 /*
652 * Single frame update is already supported on BDW+ but it requires
653 * many W/A and it isn't really needed.
654 */
Wayne Boyer666a4532015-12-09 12:29:35 -0800655 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev))
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700656 return;
657
658 mutex_lock(&dev_priv->psr.lock);
659 if (!dev_priv->psr.enabled) {
660 mutex_unlock(&dev_priv->psr.lock);
661 return;
662 }
663
664 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
665 pipe = to_intel_crtc(crtc)->pipe;
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700666
Daniel Vetter20c88382015-06-18 10:30:27 +0200667 if (frontbuffer_bits & INTEL_FRONTBUFFER_ALL_MASK(pipe)) {
668 val = I915_READ(VLV_PSRCTL(pipe));
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700669
Daniel Vetter20c88382015-06-18 10:30:27 +0200670 /*
671 * We need to set this bit before writing registers for a flip.
672 * This bit will be self-clear when it gets to the PSR active state.
673 */
674 I915_WRITE(VLV_PSRCTL(pipe), val | VLV_EDP_PSR_SINGLE_FRAME_UPDATE);
675 }
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700676 mutex_unlock(&dev_priv->psr.lock);
677}
678
679/**
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800680 * intel_psr_invalidate - Invalidade PSR
681 * @dev: DRM device
682 * @frontbuffer_bits: frontbuffer plane tracking bits
683 *
684 * Since the hardware frontbuffer tracking has gaps we need to integrate
685 * with the software frontbuffer tracking. This function gets called every
686 * time frontbuffer rendering starts and a buffer gets dirtied. PSR must be
687 * disabled if the frontbuffer mask contains a buffer relevant to PSR.
688 *
689 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits."
690 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800691void intel_psr_invalidate(struct drm_device *dev,
Daniel Vetter20c88382015-06-18 10:30:27 +0200692 unsigned frontbuffer_bits)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800693{
694 struct drm_i915_private *dev_priv = dev->dev_private;
695 struct drm_crtc *crtc;
696 enum pipe pipe;
697
698 mutex_lock(&dev_priv->psr.lock);
699 if (!dev_priv->psr.enabled) {
700 mutex_unlock(&dev_priv->psr.lock);
701 return;
702 }
703
704 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
705 pipe = to_intel_crtc(crtc)->pipe;
706
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800707 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800708 dev_priv->psr.busy_frontbuffer_bits |= frontbuffer_bits;
Daniel Vetterec76d622015-06-18 10:30:26 +0200709
710 if (frontbuffer_bits)
711 intel_psr_exit(dev);
712
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800713 mutex_unlock(&dev_priv->psr.lock);
714}
715
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800716/**
717 * intel_psr_flush - Flush PSR
718 * @dev: DRM device
719 * @frontbuffer_bits: frontbuffer plane tracking bits
Rodrigo Vivi169de132015-07-08 16:21:31 -0700720 * @origin: which operation caused the flush
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800721 *
722 * Since the hardware frontbuffer tracking has gaps we need to integrate
723 * with the software frontbuffer tracking. This function gets called every
724 * time frontbuffer rendering has completed and flushed out to memory. PSR
725 * can be enabled again if no other frontbuffer relevant to PSR is dirty.
726 *
727 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits.
728 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800729void intel_psr_flush(struct drm_device *dev,
Rodrigo Vivi169de132015-07-08 16:21:31 -0700730 unsigned frontbuffer_bits, enum fb_op_origin origin)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800731{
732 struct drm_i915_private *dev_priv = dev->dev_private;
733 struct drm_crtc *crtc;
734 enum pipe pipe;
735
736 mutex_lock(&dev_priv->psr.lock);
737 if (!dev_priv->psr.enabled) {
738 mutex_unlock(&dev_priv->psr.lock);
739 return;
740 }
741
742 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
743 pipe = to_intel_crtc(crtc)->pipe;
Daniel Vetterec76d622015-06-18 10:30:26 +0200744
745 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800746 dev_priv->psr.busy_frontbuffer_bits &= ~frontbuffer_bits;
747
Rodrigo Vivi921ec282015-11-18 11:21:12 -0800748 /* By definition flush = invalidate + flush */
749 if (frontbuffer_bits)
750 intel_psr_exit(dev);
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800751
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800752 if (!dev_priv->psr.active && !dev_priv->psr.busy_frontbuffer_bits)
Rodrigo Vivid0ac8962015-11-11 11:37:07 -0800753 if (!work_busy(&dev_priv->psr.work.work))
754 schedule_delayed_work(&dev_priv->psr.work,
Rodrigo Vivi20bb97f2015-11-11 11:37:08 -0800755 msecs_to_jiffies(100));
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800756 mutex_unlock(&dev_priv->psr.lock);
757}
758
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800759/**
760 * intel_psr_init - Init basic PSR work and mutex.
761 * @dev: DRM device
762 *
763 * This function is called only once at driver load to initialize basic
764 * PSR stuff.
765 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800766void intel_psr_init(struct drm_device *dev)
767{
768 struct drm_i915_private *dev_priv = dev->dev_private;
769
Ville Syrjälä443a3892015-11-11 20:34:15 +0200770 dev_priv->psr_mmio_base = IS_HASWELL(dev_priv) ?
771 HSW_EDP_PSR_BASE : BDW_EDP_PSR_BASE;
772
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800773 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_psr_work);
774 mutex_init(&dev_priv->psr.lock);
775}