blob: c3780d0d2baf752ce9d590b6f6c8db67674ec745 [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{
Chris Wilsonfac5e232016-07-04 11:34:36 +010066 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -080067 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;
Chris Wilsonfac5e232016-07-04 11:34:36 +010080 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080081 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;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100110 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800111 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;
Nagaraju, Vathsala97da2ef2017-01-02 17:00:55 +0530125 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
126 struct drm_device *dev = intel_dig_port->base.base.dev;
127 struct drm_i915_private *dev_priv = to_i915(dev);
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530128
129 /* Prepare VSC Header for SU as per EDP 1.4 spec, Table 6.11 */
130 memset(&psr_vsc, 0, sizeof(psr_vsc));
131 psr_vsc.sdp_header.HB0 = 0;
132 psr_vsc.sdp_header.HB1 = 0x7;
Nagaraju, Vathsala97da2ef2017-01-02 17:00:55 +0530133 if (dev_priv->psr.colorimetry_support &&
134 dev_priv->psr.y_cord_support) {
135 psr_vsc.sdp_header.HB2 = 0x5;
136 psr_vsc.sdp_header.HB3 = 0x13;
137 } else if (dev_priv->psr.y_cord_support) {
138 psr_vsc.sdp_header.HB2 = 0x4;
139 psr_vsc.sdp_header.HB3 = 0xe;
140 } else {
141 psr_vsc.sdp_header.HB2 = 0x3;
142 psr_vsc.sdp_header.HB3 = 0xc;
143 }
144
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530145 intel_psr_write_vsc(intel_dp, &psr_vsc);
146}
147
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800148static void hsw_psr_setup_vsc(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800149{
150 struct edp_vsc_psr psr_vsc;
151
152 /* Prepare VSC packet as per EDP 1.3 spec, Table 3.10 */
153 memset(&psr_vsc, 0, sizeof(psr_vsc));
154 psr_vsc.sdp_header.HB0 = 0;
155 psr_vsc.sdp_header.HB1 = 0x7;
156 psr_vsc.sdp_header.HB2 = 0x2;
157 psr_vsc.sdp_header.HB3 = 0x8;
158 intel_psr_write_vsc(intel_dp, &psr_vsc);
159}
160
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800161static void vlv_psr_enable_sink(struct intel_dp *intel_dp)
162{
163 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
Durgadoss R670b90d2015-03-27 17:21:32 +0530164 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800165}
166
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200167static i915_reg_t psr_aux_ctl_reg(struct drm_i915_private *dev_priv,
168 enum port port)
Ville Syrjälä1f380892015-11-11 20:34:16 +0200169{
170 if (INTEL_INFO(dev_priv)->gen >= 9)
171 return DP_AUX_CH_CTL(port);
172 else
173 return EDP_PSR_AUX_CTL;
174}
175
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200176static i915_reg_t psr_aux_data_reg(struct drm_i915_private *dev_priv,
177 enum port port, int index)
Ville Syrjälä1f380892015-11-11 20:34:16 +0200178{
179 if (INTEL_INFO(dev_priv)->gen >= 9)
180 return DP_AUX_CH_DATA(port, index);
181 else
182 return EDP_PSR_AUX_DATA(index);
183}
184
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800185static void hsw_psr_enable_sink(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800186{
187 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
188 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100189 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800190 uint32_t aux_clock_divider;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200191 i915_reg_t aux_ctl_reg;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800192 static const uint8_t aux_msg[] = {
193 [0] = DP_AUX_NATIVE_WRITE << 4,
194 [1] = DP_SET_POWER >> 8,
195 [2] = DP_SET_POWER & 0xff,
196 [3] = 1 - 1,
197 [4] = DP_SET_POWER_D0,
198 };
Ville Syrjälä750a9512015-11-11 20:34:12 +0200199 enum port port = dig_port->port;
Daniel Vetterd4dcbdc2016-05-18 18:47:15 +0200200 u32 aux_ctl;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800201 int i;
202
203 BUILD_BUG_ON(sizeof(aux_msg) > 20);
204
205 aux_clock_divider = intel_dp->get_aux_clock_divider(intel_dp, 0);
206
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530207 /* Enable AUX frame sync at sink */
208 if (dev_priv->psr.aux_frame_sync)
209 drm_dp_dpcd_writeb(&intel_dp->aux,
210 DP_SINK_DEVICE_AUX_FRAME_SYNC_CONF,
211 DP_AUX_FRAME_SYNC_ENABLE);
Nagaraju, Vathsala340c93c2017-01-02 17:00:58 +0530212 /* Enable ALPM at sink for psr2 */
213 if (dev_priv->psr.psr2_support && dev_priv->psr.alpm)
214 drm_dp_dpcd_writeb(&intel_dp->aux,
215 DP_RECEIVER_ALPM_CONFIG,
216 DP_ALPM_ENABLE);
Daniel Vetter6f32ea72016-05-18 18:47:14 +0200217 if (dev_priv->psr.link_standby)
218 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
219 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
220 else
221 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
222 DP_PSR_ENABLE);
223
Ville Syrjälä1f380892015-11-11 20:34:16 +0200224 aux_ctl_reg = psr_aux_ctl_reg(dev_priv, port);
Sonika Jindale3d99842015-01-22 14:30:54 +0530225
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800226 /* Setup AUX registers */
227 for (i = 0; i < sizeof(aux_msg); i += 4)
Ville Syrjälä1f380892015-11-11 20:34:16 +0200228 I915_WRITE(psr_aux_data_reg(dev_priv, port, i >> 2),
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800229 intel_dp_pack_aux(&aux_msg[i], sizeof(aux_msg) - i));
230
Daniel Vetterd4dcbdc2016-05-18 18:47:15 +0200231 aux_ctl = intel_dp->get_aux_send_ctl(intel_dp, 0, sizeof(aux_msg),
232 aux_clock_divider);
233 I915_WRITE(aux_ctl_reg, aux_ctl);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800234}
235
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800236static void vlv_psr_enable_source(struct intel_dp *intel_dp)
237{
238 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
239 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100240 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800241 struct drm_crtc *crtc = dig_port->base.base.crtc;
242 enum pipe pipe = to_intel_crtc(crtc)->pipe;
243
244 /* Transition from PSR_state 0 to PSR_state 1, i.e. PSR Inactive */
245 I915_WRITE(VLV_PSRCTL(pipe),
246 VLV_EDP_PSR_MODE_SW_TIMER |
247 VLV_EDP_PSR_SRC_TRANSMITTER_STATE |
248 VLV_EDP_PSR_ENABLE);
249}
250
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800251static void vlv_psr_activate(struct intel_dp *intel_dp)
252{
253 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
254 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100255 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800256 struct drm_crtc *crtc = dig_port->base.base.crtc;
257 enum pipe pipe = to_intel_crtc(crtc)->pipe;
258
259 /* Let's do the transition from PSR_state 1 to PSR_state 2
260 * that is PSR transition to active - static frame transmission.
261 * Then Hardware is responsible for the transition to PSR_state 3
262 * that is PSR active - no Remote Frame Buffer (RFB) update.
263 */
264 I915_WRITE(VLV_PSRCTL(pipe), I915_READ(VLV_PSRCTL(pipe)) |
265 VLV_EDP_PSR_ACTIVE_ENTRY);
266}
267
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530268static void intel_enable_source_psr1(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800269{
270 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
271 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100272 struct drm_i915_private *dev_priv = to_i915(dev);
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530273
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800274 uint32_t max_sleep_time = 0x1f;
Rodrigo Vivi40918e02016-09-07 17:42:31 -0700275 /*
276 * Let's respect VBT in case VBT asks a higher idle_frame value.
277 * Let's use 6 as the minimum to cover all known cases including
278 * the off-by-one issue that HW has in some cases. Also there are
279 * cases where sink should be able to train
280 * with the 5 or 6 idle patterns.
Rodrigo Vivid44b4dc2014-11-14 08:52:31 -0800281 */
Rodrigo Vivi40918e02016-09-07 17:42:31 -0700282 uint32_t idle_frames = max(6, dev_priv->vbt.psr.idle_frames);
Daniel Vetter50db1392016-05-18 18:47:11 +0200283 uint32_t val = EDP_PSR_ENABLE;
284
285 val |= max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT;
286 val |= idle_frames << EDP_PSR_IDLE_FRAME_SHIFT;
Rodrigo Vivi7370c682015-12-11 16:31:31 -0800287
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +0100288 if (IS_HASWELL(dev_priv))
Rodrigo Vivi7370c682015-12-11 16:31:31 -0800289 val |= EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800290
Rodrigo Vivi60e5ffe2016-02-01 12:02:07 -0800291 if (dev_priv->psr.link_standby)
292 val |= EDP_PSR_LINK_STANDBY;
293
Daniel Vetter50db1392016-05-18 18:47:11 +0200294 if (dev_priv->vbt.psr.tp1_wakeup_time > 5)
295 val |= EDP_PSR_TP1_TIME_2500us;
296 else if (dev_priv->vbt.psr.tp1_wakeup_time > 1)
297 val |= EDP_PSR_TP1_TIME_500us;
298 else if (dev_priv->vbt.psr.tp1_wakeup_time > 0)
299 val |= EDP_PSR_TP1_TIME_100us;
300 else
301 val |= EDP_PSR_TP1_TIME_0us;
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530302
Daniel Vetter50db1392016-05-18 18:47:11 +0200303 if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 5)
304 val |= EDP_PSR_TP2_TP3_TIME_2500us;
305 else if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 1)
306 val |= EDP_PSR_TP2_TP3_TIME_500us;
307 else if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 0)
308 val |= EDP_PSR_TP2_TP3_TIME_100us;
309 else
310 val |= EDP_PSR_TP2_TP3_TIME_0us;
311
312 if (intel_dp_source_supports_hbr2(intel_dp) &&
313 drm_dp_tps3_supported(intel_dp->dpcd))
314 val |= EDP_PSR_TP1_TP3_SEL;
315 else
316 val |= EDP_PSR_TP1_TP2_SEL;
317
318 I915_WRITE(EDP_PSR_CTL, val);
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530319}
Daniel Vetter50db1392016-05-18 18:47:11 +0200320
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530321static void intel_enable_source_psr2(struct intel_dp *intel_dp)
322{
323 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
324 struct drm_device *dev = dig_port->base.base.dev;
325 struct drm_i915_private *dev_priv = to_i915(dev);
326 /*
327 * Let's respect VBT in case VBT asks a higher idle_frame value.
328 * Let's use 6 as the minimum to cover all known cases including
329 * the off-by-one issue that HW has in some cases. Also there are
330 * cases where sink should be able to train
331 * with the 5 or 6 idle patterns.
332 */
333 uint32_t idle_frames = max(6, dev_priv->vbt.psr.idle_frames);
334 uint32_t val;
335
336 val = idle_frames << EDP_PSR_IDLE_FRAME_SHIFT;
Daniel Vetter50db1392016-05-18 18:47:11 +0200337
338 /* FIXME: selective update is probably totally broken because it doesn't
339 * mesh at all with our frontbuffer tracking. And the hw alone isn't
340 * good enough. */
Nagaraju, Vathsala64332262017-01-13 06:01:24 +0530341 val |= EDP_PSR2_ENABLE |
342 EDP_SU_TRACK_ENABLE |
343 EDP_FRAMES_BEFORE_SU_ENTRY;
Daniel Vetter50db1392016-05-18 18:47:11 +0200344
345 if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 5)
346 val |= EDP_PSR2_TP2_TIME_2500;
347 else if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 1)
348 val |= EDP_PSR2_TP2_TIME_500;
349 else if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 0)
350 val |= EDP_PSR2_TP2_TIME_100;
351 else
352 val |= EDP_PSR2_TP2_TIME_50;
353
354 I915_WRITE(EDP_PSR2_CTL, val);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800355}
356
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530357static void hsw_psr_enable_source(struct intel_dp *intel_dp)
358{
359 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
360 struct drm_device *dev = dig_port->base.base.dev;
361 struct drm_i915_private *dev_priv = to_i915(dev);
362
363 /* psr1 and psr2 are mutually exclusive.*/
364 if (dev_priv->psr.psr2_support)
365 intel_enable_source_psr2(intel_dp);
366 else
367 intel_enable_source_psr1(intel_dp);
368}
369
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800370static bool intel_psr_match_conditions(struct intel_dp *intel_dp)
371{
372 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
373 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100374 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800375 struct drm_crtc *crtc = dig_port->base.base.crtc;
376 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädfd2e9a2016-05-18 11:34:38 +0300377 const struct drm_display_mode *adjusted_mode =
378 &intel_crtc->config->base.adjusted_mode;
379 int psr_setup_time;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800380
381 lockdep_assert_held(&dev_priv->psr.lock);
382 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
383 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
384
385 dev_priv->psr.source_ok = false;
386
Rodrigo Vividc9b5a02016-02-01 12:02:06 -0800387 /*
388 * HSW spec explicitly says PSR is tied to port A.
389 * BDW+ platforms with DDI implementation of PSR have different
390 * PSR registers per transcoder and we only implement transcoder EDP
391 * ones. Since by Display design transcoder EDP is tied to port A
392 * we can safely escape based on the port A.
393 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100394 if (HAS_DDI(dev_priv) && dig_port->port != PORT_A) {
Rodrigo Vividc9b5a02016-02-01 12:02:06 -0800395 DRM_DEBUG_KMS("PSR condition failed: Port not supported\n");
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800396 return false;
397 }
398
399 if (!i915.enable_psr) {
400 DRM_DEBUG_KMS("PSR disable by flag\n");
401 return false;
402 }
403
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100404 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
Rodrigo Vivi65f61b42016-02-01 12:02:08 -0800405 !dev_priv->psr.link_standby) {
406 DRM_ERROR("PSR condition failed: Link off requested but not supported on this platform\n");
407 return false;
408 }
409
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +0100410 if (IS_HASWELL(dev_priv) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200411 I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config->cpu_transcoder)) &
Rodrigo Vivic8e68b72015-01-12 10:14:29 -0800412 S3D_ENABLE) {
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800413 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
414 return false;
415 }
416
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +0100417 if (IS_HASWELL(dev_priv) &&
Ville Syrjälädfd2e9a2016-05-18 11:34:38 +0300418 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800419 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
420 return false;
421 }
422
Ville Syrjälädfd2e9a2016-05-18 11:34:38 +0300423 psr_setup_time = drm_dp_psr_setup_time(intel_dp->psr_dpcd);
424 if (psr_setup_time < 0) {
425 DRM_DEBUG_KMS("PSR condition failed: Invalid PSR setup time (0x%02x)\n",
426 intel_dp->psr_dpcd[1]);
427 return false;
428 }
429
430 if (intel_usecs_to_scanlines(adjusted_mode, psr_setup_time) >
431 adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vdisplay - 1) {
432 DRM_DEBUG_KMS("PSR condition failed: PSR setup time (%d us) too long\n",
433 psr_setup_time);
434 return false;
435 }
436
Nagaraju, Vathsalaacf45d12017-01-10 12:32:26 +0530437 /* PSR2 is restricted to work with panel resolutions upto 3200x2000 */
438 if (intel_crtc->config->pipe_src_w > 3200 ||
439 intel_crtc->config->pipe_src_h > 2000) {
440 dev_priv->psr.psr2_support = false;
441 return false;
442 }
443
Nagaraju, Vathsala18b9bf32017-01-12 03:58:30 +0530444 /*
445 * FIXME:enable psr2 only for y-cordinate psr2 panels
446 * After gtc implementation , remove this restriction.
447 */
448 if (!dev_priv->psr.y_cord_support && dev_priv->psr.psr2_support) {
449 DRM_DEBUG_KMS("PSR2 disabled, panel does not support Y coordinate\n");
450 return false;
451 }
452
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800453 dev_priv->psr.source_ok = true;
454 return true;
455}
456
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800457static void intel_psr_activate(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800458{
459 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
460 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100461 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800462
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530463 if (dev_priv->psr.psr2_support)
464 WARN_ON(I915_READ(EDP_PSR2_CTL) & EDP_PSR2_ENABLE);
465 else
466 WARN_ON(I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800467 WARN_ON(dev_priv->psr.active);
468 lockdep_assert_held(&dev_priv->psr.lock);
469
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800470 /* Enable/Re-enable PSR on the host */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100471 if (HAS_DDI(dev_priv))
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800472 /* On HSW+ after we enable PSR on source it will activate it
473 * as soon as it match configure idle_frame count. So
474 * we just actually enable it here on activation time.
475 */
476 hsw_psr_enable_source(intel_dp);
477 else
478 vlv_psr_activate(intel_dp);
479
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800480 dev_priv->psr.active = true;
481}
482
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800483/**
484 * intel_psr_enable - Enable PSR
485 * @intel_dp: Intel DP
486 *
487 * This function can only be called after the pipe is fully trained and enabled.
488 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800489void intel_psr_enable(struct intel_dp *intel_dp)
490{
491 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
492 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100493 struct drm_i915_private *dev_priv = to_i915(dev);
Nagaraju, Vathsalad86f0482017-01-13 00:31:31 +0530494 struct intel_crtc *crtc = to_intel_crtc(intel_dig_port->base.base.crtc);
495 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
496 u32 chicken;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800497
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +0000498 if (!HAS_PSR(dev_priv)) {
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800499 DRM_DEBUG_KMS("PSR not supported on this platform\n");
500 return;
501 }
502
503 if (!is_edp_psr(intel_dp)) {
504 DRM_DEBUG_KMS("PSR not supported by this panel\n");
505 return;
506 }
507
508 mutex_lock(&dev_priv->psr.lock);
509 if (dev_priv->psr.enabled) {
510 DRM_DEBUG_KMS("PSR already in use\n");
511 goto unlock;
512 }
513
514 if (!intel_psr_match_conditions(intel_dp))
515 goto unlock;
516
517 dev_priv->psr.busy_frontbuffer_bits = 0;
518
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100519 if (HAS_DDI(dev_priv)) {
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530520 if (dev_priv->psr.psr2_support) {
Nagaraju, Vathsalaacf45d12017-01-10 12:32:26 +0530521 skl_psr_setup_su_vsc(intel_dp);
Nagaraju, Vathsalad86f0482017-01-13 00:31:31 +0530522 chicken = PSR2_VSC_ENABLE_PROG_HEADER;
523 if (dev_priv->psr.y_cord_support)
524 chicken |= PSR2_ADD_VERTICAL_LINE_COUNT;
525 I915_WRITE(CHICKEN_TRANS(cpu_transcoder), chicken);
Nagaraju, Vathsala64332262017-01-13 06:01:24 +0530526 I915_WRITE(EDP_PSR_DEBUG_CTL,
527 EDP_PSR_DEBUG_MASK_MEMUP |
528 EDP_PSR_DEBUG_MASK_HPD |
529 EDP_PSR_DEBUG_MASK_LPSP |
530 EDP_PSR_DEBUG_MASK_MAX_SLEEP |
531 EDP_PSR_DEBUG_MASK_DISP_REG_WRITE);
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530532 } else {
533 /* set up vsc header for psr1 */
534 hsw_psr_setup_vsc(intel_dp);
Nagaraju, Vathsala64332262017-01-13 06:01:24 +0530535 /*
536 * Per Spec: Avoid continuous PSR exit by masking MEMUP
537 * and HPD. also mask LPSP to avoid dependency on other
538 * drivers that might block runtime_pm besides
539 * preventing other hw tracking issues now we can rely
540 * on frontbuffer tracking.
541 */
542 I915_WRITE(EDP_PSR_DEBUG_CTL,
543 EDP_PSR_DEBUG_MASK_MEMUP |
544 EDP_PSR_DEBUG_MASK_HPD |
545 EDP_PSR_DEBUG_MASK_LPSP);
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530546 }
547
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800548 /* Enable PSR on the panel */
549 hsw_psr_enable_sink(intel_dp);
Sonika Jindale3d99842015-01-22 14:30:54 +0530550
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000551 if (INTEL_GEN(dev_priv) >= 9)
Sonika Jindale3d99842015-01-22 14:30:54 +0530552 intel_psr_activate(intel_dp);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800553 } else {
554 vlv_psr_setup_vsc(intel_dp);
555
556 /* Enable PSR on the panel */
557 vlv_psr_enable_sink(intel_dp);
558
559 /* On HSW+ enable_source also means go to PSR entry/active
560 * state as soon as idle_frame achieved and here would be
561 * to soon. However on VLV enable_source just enable PSR
562 * but let it on inactive state. So we might do this prior
563 * to active transition, i.e. here.
564 */
565 vlv_psr_enable_source(intel_dp);
566 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800567
Rodrigo Vivid0ac8962015-11-11 11:37:07 -0800568 /*
569 * FIXME: Activation should happen immediately since this function
570 * is just called after pipe is fully trained and enabled.
571 * However on every platform we face issues when first activation
572 * follows a modeset so quickly.
573 * - On VLV/CHV we get bank screen on first activation
574 * - On HSW/BDW we get a recoverable frozen screen until next
575 * exit-activate sequence.
576 */
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000577 if (INTEL_GEN(dev_priv) < 9)
Rodrigo Vivid0ac8962015-11-11 11:37:07 -0800578 schedule_delayed_work(&dev_priv->psr.work,
579 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
580
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800581 dev_priv->psr.enabled = intel_dp;
582unlock:
583 mutex_unlock(&dev_priv->psr.lock);
584}
585
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800586static void vlv_psr_disable(struct intel_dp *intel_dp)
587{
588 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
589 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100590 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800591 struct intel_crtc *intel_crtc =
592 to_intel_crtc(intel_dig_port->base.base.crtc);
593 uint32_t val;
594
595 if (dev_priv->psr.active) {
596 /* Put VLV PSR back to PSR_state 0 that is PSR Disabled. */
Chris Wilsoneb0241c2016-06-30 15:33:26 +0100597 if (intel_wait_for_register(dev_priv,
598 VLV_PSRSTAT(intel_crtc->pipe),
599 VLV_EDP_PSR_IN_TRANS,
600 0,
601 1))
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800602 WARN(1, "PSR transition took longer than expected\n");
603
604 val = I915_READ(VLV_PSRCTL(intel_crtc->pipe));
605 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
606 val &= ~VLV_EDP_PSR_ENABLE;
607 val &= ~VLV_EDP_PSR_MODE_MASK;
608 I915_WRITE(VLV_PSRCTL(intel_crtc->pipe), val);
609
610 dev_priv->psr.active = false;
611 } else {
612 WARN_ON(vlv_is_psr_active_on_pipe(dev, intel_crtc->pipe));
613 }
614}
615
616static void hsw_psr_disable(struct intel_dp *intel_dp)
617{
618 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
619 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100620 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800621
622 if (dev_priv->psr.active) {
Chris Wilson77affa32017-01-16 13:06:22 +0000623 i915_reg_t psr_ctl;
624 u32 psr_status_mask;
625
Nagaraju, Vathsalaf40c4842017-01-11 20:44:33 +0530626 if (dev_priv->psr.aux_frame_sync)
627 drm_dp_dpcd_writeb(&intel_dp->aux,
628 DP_SINK_DEVICE_AUX_FRAME_SYNC_CONF,
629 0);
630
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530631 if (dev_priv->psr.psr2_support) {
Chris Wilson77affa32017-01-16 13:06:22 +0000632 psr_ctl = EDP_PSR2_CTL;
633 psr_status_mask = EDP_PSR2_STATUS_STATE_MASK;
634
635 I915_WRITE(psr_ctl,
636 I915_READ(psr_ctl) &
637 ~(EDP_PSR2_ENABLE | EDP_SU_TRACK_ENABLE));
638
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530639 } else {
Chris Wilson77affa32017-01-16 13:06:22 +0000640 psr_ctl = EDP_PSR_STATUS_CTL;
641 psr_status_mask = EDP_PSR_STATUS_STATE_MASK;
642
643 I915_WRITE(psr_ctl,
644 I915_READ(psr_ctl) & ~EDP_PSR_ENABLE);
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530645 }
Chris Wilson77affa32017-01-16 13:06:22 +0000646
647 /* Wait till PSR is idle */
648 if (intel_wait_for_register(dev_priv,
649 psr_ctl, psr_status_mask, 0,
650 2000))
651 DRM_ERROR("Timed out waiting for PSR Idle State\n");
652
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800653 dev_priv->psr.active = false;
654 } else {
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530655 if (dev_priv->psr.psr2_support)
656 WARN_ON(I915_READ(EDP_PSR2_CTL) & EDP_PSR2_ENABLE);
657 else
658 WARN_ON(I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800659 }
660}
661
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800662/**
663 * intel_psr_disable - Disable PSR
664 * @intel_dp: Intel DP
665 *
666 * This function needs to be called before disabling pipe.
667 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800668void intel_psr_disable(struct intel_dp *intel_dp)
669{
670 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
671 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100672 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800673
674 mutex_lock(&dev_priv->psr.lock);
675 if (!dev_priv->psr.enabled) {
676 mutex_unlock(&dev_priv->psr.lock);
677 return;
678 }
679
Rodrigo Vivib6e4d532015-11-23 14:19:32 -0800680 /* Disable PSR on Source */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100681 if (HAS_DDI(dev_priv))
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800682 hsw_psr_disable(intel_dp);
683 else
684 vlv_psr_disable(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800685
Rodrigo Vivib6e4d532015-11-23 14:19:32 -0800686 /* Disable PSR on Sink */
687 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG, 0);
688
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800689 dev_priv->psr.enabled = NULL;
690 mutex_unlock(&dev_priv->psr.lock);
691
692 cancel_delayed_work_sync(&dev_priv->psr.work);
693}
694
695static void intel_psr_work(struct work_struct *work)
696{
697 struct drm_i915_private *dev_priv =
698 container_of(work, typeof(*dev_priv), psr.work.work);
699 struct intel_dp *intel_dp = dev_priv->psr.enabled;
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800700 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
701 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800702
703 /* We have to make sure PSR is ready for re-enable
704 * otherwise it keeps disabled until next full enable/disable cycle.
705 * PSR might take some time to get fully disabled
706 * and be ready for re-enable.
707 */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +0300708 if (HAS_DDI(dev_priv)) {
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530709 if (dev_priv->psr.psr2_support) {
710 if (intel_wait_for_register(dev_priv,
711 EDP_PSR2_STATUS_CTL,
712 EDP_PSR2_STATUS_STATE_MASK,
713 0,
714 50)) {
715 DRM_ERROR("Timed out waiting for PSR2 Idle for re-enable\n");
716 return;
717 }
718 } else {
719 if (intel_wait_for_register(dev_priv,
720 EDP_PSR_STATUS_CTL,
721 EDP_PSR_STATUS_STATE_MASK,
722 0,
723 50)) {
724 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
725 return;
726 }
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800727 }
728 } else {
Chris Wilson12bb6312016-06-30 15:33:28 +0100729 if (intel_wait_for_register(dev_priv,
730 VLV_PSRSTAT(pipe),
731 VLV_EDP_PSR_IN_TRANS,
732 0,
733 1)) {
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800734 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
735 return;
736 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800737 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800738 mutex_lock(&dev_priv->psr.lock);
739 intel_dp = dev_priv->psr.enabled;
740
741 if (!intel_dp)
742 goto unlock;
743
744 /*
745 * The delayed work can race with an invalidate hence we need to
746 * recheck. Since psr_flush first clears this and then reschedules we
747 * won't ever miss a flush when bailing out here.
748 */
749 if (dev_priv->psr.busy_frontbuffer_bits)
750 goto unlock;
751
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800752 intel_psr_activate(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800753unlock:
754 mutex_unlock(&dev_priv->psr.lock);
755}
756
Chris Wilson5748b6a2016-08-04 16:32:38 +0100757static void intel_psr_exit(struct drm_i915_private *dev_priv)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800758{
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800759 struct intel_dp *intel_dp = dev_priv->psr.enabled;
760 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
761 enum pipe pipe = to_intel_crtc(crtc)->pipe;
762 u32 val;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800763
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800764 if (!dev_priv->psr.active)
765 return;
766
Chris Wilson5748b6a2016-08-04 16:32:38 +0100767 if (HAS_DDI(dev_priv)) {
Nagaraju, Vathsalaf40c4842017-01-11 20:44:33 +0530768 if (dev_priv->psr.aux_frame_sync)
769 drm_dp_dpcd_writeb(&intel_dp->aux,
770 DP_SINK_DEVICE_AUX_FRAME_SYNC_CONF,
771 0);
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530772 if (dev_priv->psr.psr2_support) {
773 val = I915_READ(EDP_PSR2_CTL);
774 WARN_ON(!(val & EDP_PSR2_ENABLE));
775 I915_WRITE(EDP_PSR2_CTL, val & ~EDP_PSR2_ENABLE);
776 } else {
777 val = I915_READ(EDP_PSR_CTL);
778 WARN_ON(!(val & EDP_PSR_ENABLE));
779 I915_WRITE(EDP_PSR_CTL, val & ~EDP_PSR_ENABLE);
780 }
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800781 } else {
782 val = I915_READ(VLV_PSRCTL(pipe));
783
784 /* Here we do the transition from PSR_state 3 to PSR_state 5
785 * directly once PSR State 4 that is active with single frame
786 * update can be skipped. PSR_state 5 that is PSR exit then
787 * Hardware is responsible to transition back to PSR_state 1
788 * that is PSR inactive. Same state after
789 * vlv_edp_psr_enable_source.
790 */
791 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
792 I915_WRITE(VLV_PSRCTL(pipe), val);
793
794 /* Send AUX wake up - Spec says after transitioning to PSR
795 * active we have to send AUX wake up by writing 01h in DPCD
796 * 600h of sink device.
797 * XXX: This might slow down the transition, but without this
798 * HW doesn't complete the transition to PSR_state 1 and we
799 * never get the screen updated.
800 */
801 drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
802 DP_SET_POWER_D0);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800803 }
804
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800805 dev_priv->psr.active = false;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800806}
807
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800808/**
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700809 * intel_psr_single_frame_update - Single Frame Update
Chris Wilson5748b6a2016-08-04 16:32:38 +0100810 * @dev_priv: i915 device
Daniel Vetter20c88382015-06-18 10:30:27 +0200811 * @frontbuffer_bits: frontbuffer plane tracking bits
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700812 *
813 * Some platforms support a single frame update feature that is used to
814 * send and update only one frame on Remote Frame Buffer.
815 * So far it is only implemented for Valleyview and Cherryview because
816 * hardware requires this to be done before a page flip.
817 */
Chris Wilson5748b6a2016-08-04 16:32:38 +0100818void intel_psr_single_frame_update(struct drm_i915_private *dev_priv,
Daniel Vetter20c88382015-06-18 10:30:27 +0200819 unsigned frontbuffer_bits)
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700820{
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700821 struct drm_crtc *crtc;
822 enum pipe pipe;
823 u32 val;
824
825 /*
826 * Single frame update is already supported on BDW+ but it requires
827 * many W/A and it isn't really needed.
828 */
Chris Wilson5748b6a2016-08-04 16:32:38 +0100829 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700830 return;
831
832 mutex_lock(&dev_priv->psr.lock);
833 if (!dev_priv->psr.enabled) {
834 mutex_unlock(&dev_priv->psr.lock);
835 return;
836 }
837
838 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
839 pipe = to_intel_crtc(crtc)->pipe;
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700840
Daniel Vetter20c88382015-06-18 10:30:27 +0200841 if (frontbuffer_bits & INTEL_FRONTBUFFER_ALL_MASK(pipe)) {
842 val = I915_READ(VLV_PSRCTL(pipe));
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700843
Daniel Vetter20c88382015-06-18 10:30:27 +0200844 /*
845 * We need to set this bit before writing registers for a flip.
846 * This bit will be self-clear when it gets to the PSR active state.
847 */
848 I915_WRITE(VLV_PSRCTL(pipe), val | VLV_EDP_PSR_SINGLE_FRAME_UPDATE);
849 }
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700850 mutex_unlock(&dev_priv->psr.lock);
851}
852
853/**
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800854 * intel_psr_invalidate - Invalidade PSR
Chris Wilson5748b6a2016-08-04 16:32:38 +0100855 * @dev_priv: i915 device
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800856 * @frontbuffer_bits: frontbuffer plane tracking bits
857 *
858 * Since the hardware frontbuffer tracking has gaps we need to integrate
859 * with the software frontbuffer tracking. This function gets called every
860 * time frontbuffer rendering starts and a buffer gets dirtied. PSR must be
861 * disabled if the frontbuffer mask contains a buffer relevant to PSR.
862 *
863 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits."
864 */
Chris Wilson5748b6a2016-08-04 16:32:38 +0100865void intel_psr_invalidate(struct drm_i915_private *dev_priv,
Daniel Vetter20c88382015-06-18 10:30:27 +0200866 unsigned frontbuffer_bits)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800867{
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800868 struct drm_crtc *crtc;
869 enum pipe pipe;
870
871 mutex_lock(&dev_priv->psr.lock);
872 if (!dev_priv->psr.enabled) {
873 mutex_unlock(&dev_priv->psr.lock);
874 return;
875 }
876
877 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
878 pipe = to_intel_crtc(crtc)->pipe;
879
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800880 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800881 dev_priv->psr.busy_frontbuffer_bits |= frontbuffer_bits;
Daniel Vetterec76d622015-06-18 10:30:26 +0200882
883 if (frontbuffer_bits)
Chris Wilson5748b6a2016-08-04 16:32:38 +0100884 intel_psr_exit(dev_priv);
Daniel Vetterec76d622015-06-18 10:30:26 +0200885
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800886 mutex_unlock(&dev_priv->psr.lock);
887}
888
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800889/**
890 * intel_psr_flush - Flush PSR
Chris Wilson5748b6a2016-08-04 16:32:38 +0100891 * @dev_priv: i915 device
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800892 * @frontbuffer_bits: frontbuffer plane tracking bits
Rodrigo Vivi169de132015-07-08 16:21:31 -0700893 * @origin: which operation caused the flush
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800894 *
895 * Since the hardware frontbuffer tracking has gaps we need to integrate
896 * with the software frontbuffer tracking. This function gets called every
897 * time frontbuffer rendering has completed and flushed out to memory. PSR
898 * can be enabled again if no other frontbuffer relevant to PSR is dirty.
899 *
900 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits.
901 */
Chris Wilson5748b6a2016-08-04 16:32:38 +0100902void intel_psr_flush(struct drm_i915_private *dev_priv,
Rodrigo Vivi169de132015-07-08 16:21:31 -0700903 unsigned frontbuffer_bits, enum fb_op_origin origin)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800904{
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800905 struct drm_crtc *crtc;
906 enum pipe pipe;
907
908 mutex_lock(&dev_priv->psr.lock);
909 if (!dev_priv->psr.enabled) {
910 mutex_unlock(&dev_priv->psr.lock);
911 return;
912 }
913
914 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
915 pipe = to_intel_crtc(crtc)->pipe;
Daniel Vetterec76d622015-06-18 10:30:26 +0200916
917 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800918 dev_priv->psr.busy_frontbuffer_bits &= ~frontbuffer_bits;
919
Rodrigo Vivi921ec282015-11-18 11:21:12 -0800920 /* By definition flush = invalidate + flush */
921 if (frontbuffer_bits)
Chris Wilson5748b6a2016-08-04 16:32:38 +0100922 intel_psr_exit(dev_priv);
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800923
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800924 if (!dev_priv->psr.active && !dev_priv->psr.busy_frontbuffer_bits)
Rodrigo Vivid0ac8962015-11-11 11:37:07 -0800925 if (!work_busy(&dev_priv->psr.work.work))
926 schedule_delayed_work(&dev_priv->psr.work,
Rodrigo Vivi20bb97f2015-11-11 11:37:08 -0800927 msecs_to_jiffies(100));
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800928 mutex_unlock(&dev_priv->psr.lock);
929}
930
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800931/**
932 * intel_psr_init - Init basic PSR work and mutex.
Ander Conselvan de Oliveira93de0562016-11-29 13:48:47 +0200933 * @dev_priv: i915 device private
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800934 *
935 * This function is called only once at driver load to initialize basic
936 * PSR stuff.
937 */
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +0200938void intel_psr_init(struct drm_i915_private *dev_priv)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800939{
Ville Syrjälä443a3892015-11-11 20:34:15 +0200940 dev_priv->psr_mmio_base = IS_HASWELL(dev_priv) ?
941 HSW_EDP_PSR_BASE : BDW_EDP_PSR_BASE;
942
Paulo Zanoni2ee7dc42016-12-13 18:57:44 -0200943 /* Per platform default: all disabled. */
944 if (i915.enable_psr == -1)
945 i915.enable_psr = 0;
Rodrigo Vivid94d6e82016-02-12 04:08:11 -0800946
Rodrigo Vivi65f61b42016-02-01 12:02:08 -0800947 /* Set link_standby x link_off defaults */
Tvrtko Ursulin86527442016-10-13 11:03:00 +0100948 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Rodrigo Vivi60e5ffe2016-02-01 12:02:07 -0800949 /* HSW and BDW require workarounds that we don't implement. */
950 dev_priv->psr.link_standby = false;
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100951 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi60e5ffe2016-02-01 12:02:07 -0800952 /* On VLV and CHV only standby mode is supported. */
953 dev_priv->psr.link_standby = true;
954 else
955 /* For new platforms let's respect VBT back again */
956 dev_priv->psr.link_standby = dev_priv->vbt.psr.full_link;
957
Rodrigo Vivi65f61b42016-02-01 12:02:08 -0800958 /* Override link_standby x link_off defaults */
959 if (i915.enable_psr == 2 && !dev_priv->psr.link_standby) {
960 DRM_DEBUG_KMS("PSR: Forcing link standby\n");
961 dev_priv->psr.link_standby = true;
962 }
963 if (i915.enable_psr == 3 && dev_priv->psr.link_standby) {
964 DRM_DEBUG_KMS("PSR: Forcing main link off\n");
965 dev_priv->psr.link_standby = false;
966 }
967
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800968 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_psr_work);
969 mutex_init(&dev_priv->psr.lock);
970}