blob: 8827647795207f1b684c45f8531b2cab3eb636c8 [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);
212
Daniel Vetter6f32ea72016-05-18 18:47:14 +0200213 if (dev_priv->psr.link_standby)
214 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
215 DP_PSR_ENABLE | DP_PSR_MAIN_LINK_ACTIVE);
216 else
217 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG,
218 DP_PSR_ENABLE);
219
Ville Syrjälä1f380892015-11-11 20:34:16 +0200220 aux_ctl_reg = psr_aux_ctl_reg(dev_priv, port);
Sonika Jindale3d99842015-01-22 14:30:54 +0530221
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800222 /* Setup AUX registers */
223 for (i = 0; i < sizeof(aux_msg); i += 4)
Ville Syrjälä1f380892015-11-11 20:34:16 +0200224 I915_WRITE(psr_aux_data_reg(dev_priv, port, i >> 2),
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800225 intel_dp_pack_aux(&aux_msg[i], sizeof(aux_msg) - i));
226
Daniel Vetterd4dcbdc2016-05-18 18:47:15 +0200227 aux_ctl = intel_dp->get_aux_send_ctl(intel_dp, 0, sizeof(aux_msg),
228 aux_clock_divider);
229 I915_WRITE(aux_ctl_reg, aux_ctl);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800230}
231
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800232static void vlv_psr_enable_source(struct intel_dp *intel_dp)
233{
234 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
235 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100236 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800237 struct drm_crtc *crtc = dig_port->base.base.crtc;
238 enum pipe pipe = to_intel_crtc(crtc)->pipe;
239
240 /* Transition from PSR_state 0 to PSR_state 1, i.e. PSR Inactive */
241 I915_WRITE(VLV_PSRCTL(pipe),
242 VLV_EDP_PSR_MODE_SW_TIMER |
243 VLV_EDP_PSR_SRC_TRANSMITTER_STATE |
244 VLV_EDP_PSR_ENABLE);
245}
246
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800247static void vlv_psr_activate(struct intel_dp *intel_dp)
248{
249 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
250 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100251 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800252 struct drm_crtc *crtc = dig_port->base.base.crtc;
253 enum pipe pipe = to_intel_crtc(crtc)->pipe;
254
255 /* Let's do the transition from PSR_state 1 to PSR_state 2
256 * that is PSR transition to active - static frame transmission.
257 * Then Hardware is responsible for the transition to PSR_state 3
258 * that is PSR active - no Remote Frame Buffer (RFB) update.
259 */
260 I915_WRITE(VLV_PSRCTL(pipe), I915_READ(VLV_PSRCTL(pipe)) |
261 VLV_EDP_PSR_ACTIVE_ENTRY);
262}
263
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530264static void intel_enable_source_psr1(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800265{
266 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
267 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100268 struct drm_i915_private *dev_priv = to_i915(dev);
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530269
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800270 uint32_t max_sleep_time = 0x1f;
Rodrigo Vivi40918e02016-09-07 17:42:31 -0700271 /*
272 * Let's respect VBT in case VBT asks a higher idle_frame value.
273 * Let's use 6 as the minimum to cover all known cases including
274 * the off-by-one issue that HW has in some cases. Also there are
275 * cases where sink should be able to train
276 * with the 5 or 6 idle patterns.
Rodrigo Vivid44b4dc2014-11-14 08:52:31 -0800277 */
Rodrigo Vivi40918e02016-09-07 17:42:31 -0700278 uint32_t idle_frames = max(6, dev_priv->vbt.psr.idle_frames);
Daniel Vetter50db1392016-05-18 18:47:11 +0200279 uint32_t val = EDP_PSR_ENABLE;
280
281 val |= max_sleep_time << EDP_PSR_MAX_SLEEP_TIME_SHIFT;
282 val |= idle_frames << EDP_PSR_IDLE_FRAME_SHIFT;
Rodrigo Vivi7370c682015-12-11 16:31:31 -0800283
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +0100284 if (IS_HASWELL(dev_priv))
Rodrigo Vivi7370c682015-12-11 16:31:31 -0800285 val |= EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800286
Rodrigo Vivi60e5ffe2016-02-01 12:02:07 -0800287 if (dev_priv->psr.link_standby)
288 val |= EDP_PSR_LINK_STANDBY;
289
Daniel Vetter50db1392016-05-18 18:47:11 +0200290 if (dev_priv->vbt.psr.tp1_wakeup_time > 5)
291 val |= EDP_PSR_TP1_TIME_2500us;
292 else if (dev_priv->vbt.psr.tp1_wakeup_time > 1)
293 val |= EDP_PSR_TP1_TIME_500us;
294 else if (dev_priv->vbt.psr.tp1_wakeup_time > 0)
295 val |= EDP_PSR_TP1_TIME_100us;
296 else
297 val |= EDP_PSR_TP1_TIME_0us;
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530298
Daniel Vetter50db1392016-05-18 18:47:11 +0200299 if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 5)
300 val |= EDP_PSR_TP2_TP3_TIME_2500us;
301 else if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 1)
302 val |= EDP_PSR_TP2_TP3_TIME_500us;
303 else if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 0)
304 val |= EDP_PSR_TP2_TP3_TIME_100us;
305 else
306 val |= EDP_PSR_TP2_TP3_TIME_0us;
307
308 if (intel_dp_source_supports_hbr2(intel_dp) &&
309 drm_dp_tps3_supported(intel_dp->dpcd))
310 val |= EDP_PSR_TP1_TP3_SEL;
311 else
312 val |= EDP_PSR_TP1_TP2_SEL;
313
314 I915_WRITE(EDP_PSR_CTL, val);
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530315}
Daniel Vetter50db1392016-05-18 18:47:11 +0200316
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530317static void intel_enable_source_psr2(struct intel_dp *intel_dp)
318{
319 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
320 struct drm_device *dev = dig_port->base.base.dev;
321 struct drm_i915_private *dev_priv = to_i915(dev);
322 /*
323 * Let's respect VBT in case VBT asks a higher idle_frame value.
324 * Let's use 6 as the minimum to cover all known cases including
325 * the off-by-one issue that HW has in some cases. Also there are
326 * cases where sink should be able to train
327 * with the 5 or 6 idle patterns.
328 */
329 uint32_t idle_frames = max(6, dev_priv->vbt.psr.idle_frames);
330 uint32_t val;
331
332 val = idle_frames << EDP_PSR_IDLE_FRAME_SHIFT;
Daniel Vetter50db1392016-05-18 18:47:11 +0200333
334 /* FIXME: selective update is probably totally broken because it doesn't
335 * mesh at all with our frontbuffer tracking. And the hw alone isn't
336 * good enough. */
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530337 val |= EDP_PSR2_ENABLE | EDP_SU_TRACK_ENABLE;
Daniel Vetter50db1392016-05-18 18:47:11 +0200338
339 if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 5)
340 val |= EDP_PSR2_TP2_TIME_2500;
341 else if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 1)
342 val |= EDP_PSR2_TP2_TIME_500;
343 else if (dev_priv->vbt.psr.tp2_tp3_wakeup_time > 0)
344 val |= EDP_PSR2_TP2_TIME_100;
345 else
346 val |= EDP_PSR2_TP2_TIME_50;
347
348 I915_WRITE(EDP_PSR2_CTL, val);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800349}
350
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530351static void hsw_psr_enable_source(struct intel_dp *intel_dp)
352{
353 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
354 struct drm_device *dev = dig_port->base.base.dev;
355 struct drm_i915_private *dev_priv = to_i915(dev);
356
357 /* psr1 and psr2 are mutually exclusive.*/
358 if (dev_priv->psr.psr2_support)
359 intel_enable_source_psr2(intel_dp);
360 else
361 intel_enable_source_psr1(intel_dp);
362}
363
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800364static bool intel_psr_match_conditions(struct intel_dp *intel_dp)
365{
366 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
367 struct drm_device *dev = dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100368 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800369 struct drm_crtc *crtc = dig_port->base.base.crtc;
370 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädfd2e9a2016-05-18 11:34:38 +0300371 const struct drm_display_mode *adjusted_mode =
372 &intel_crtc->config->base.adjusted_mode;
373 int psr_setup_time;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800374
375 lockdep_assert_held(&dev_priv->psr.lock);
376 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
377 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
378
379 dev_priv->psr.source_ok = false;
380
Rodrigo Vividc9b5a02016-02-01 12:02:06 -0800381 /*
382 * HSW spec explicitly says PSR is tied to port A.
383 * BDW+ platforms with DDI implementation of PSR have different
384 * PSR registers per transcoder and we only implement transcoder EDP
385 * ones. Since by Display design transcoder EDP is tied to port A
386 * we can safely escape based on the port A.
387 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100388 if (HAS_DDI(dev_priv) && dig_port->port != PORT_A) {
Rodrigo Vividc9b5a02016-02-01 12:02:06 -0800389 DRM_DEBUG_KMS("PSR condition failed: Port not supported\n");
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800390 return false;
391 }
392
393 if (!i915.enable_psr) {
394 DRM_DEBUG_KMS("PSR disable by flag\n");
395 return false;
396 }
397
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100398 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
Rodrigo Vivi65f61b42016-02-01 12:02:08 -0800399 !dev_priv->psr.link_standby) {
400 DRM_ERROR("PSR condition failed: Link off requested but not supported on this platform\n");
401 return false;
402 }
403
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +0100404 if (IS_HASWELL(dev_priv) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200405 I915_READ(HSW_STEREO_3D_CTL(intel_crtc->config->cpu_transcoder)) &
Rodrigo Vivic8e68b72015-01-12 10:14:29 -0800406 S3D_ENABLE) {
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800407 DRM_DEBUG_KMS("PSR condition failed: Stereo 3D is Enabled\n");
408 return false;
409 }
410
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +0100411 if (IS_HASWELL(dev_priv) &&
Ville Syrjälädfd2e9a2016-05-18 11:34:38 +0300412 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800413 DRM_DEBUG_KMS("PSR condition failed: Interlaced is Enabled\n");
414 return false;
415 }
416
Ville Syrjälädfd2e9a2016-05-18 11:34:38 +0300417 psr_setup_time = drm_dp_psr_setup_time(intel_dp->psr_dpcd);
418 if (psr_setup_time < 0) {
419 DRM_DEBUG_KMS("PSR condition failed: Invalid PSR setup time (0x%02x)\n",
420 intel_dp->psr_dpcd[1]);
421 return false;
422 }
423
424 if (intel_usecs_to_scanlines(adjusted_mode, psr_setup_time) >
425 adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vdisplay - 1) {
426 DRM_DEBUG_KMS("PSR condition failed: PSR setup time (%d us) too long\n",
427 psr_setup_time);
428 return false;
429 }
430
Nagaraju, Vathsalaacf45d12017-01-10 12:32:26 +0530431 /* PSR2 is restricted to work with panel resolutions upto 3200x2000 */
432 if (intel_crtc->config->pipe_src_w > 3200 ||
433 intel_crtc->config->pipe_src_h > 2000) {
434 dev_priv->psr.psr2_support = false;
435 return false;
436 }
437
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800438 dev_priv->psr.source_ok = true;
439 return true;
440}
441
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800442static void intel_psr_activate(struct intel_dp *intel_dp)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800443{
444 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
445 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100446 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800447
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530448 if (dev_priv->psr.psr2_support)
449 WARN_ON(I915_READ(EDP_PSR2_CTL) & EDP_PSR2_ENABLE);
450 else
451 WARN_ON(I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800452 WARN_ON(dev_priv->psr.active);
453 lockdep_assert_held(&dev_priv->psr.lock);
454
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800455 /* Enable/Re-enable PSR on the host */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100456 if (HAS_DDI(dev_priv))
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800457 /* On HSW+ after we enable PSR on source it will activate it
458 * as soon as it match configure idle_frame count. So
459 * we just actually enable it here on activation time.
460 */
461 hsw_psr_enable_source(intel_dp);
462 else
463 vlv_psr_activate(intel_dp);
464
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800465 dev_priv->psr.active = true;
466}
467
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800468/**
469 * intel_psr_enable - Enable PSR
470 * @intel_dp: Intel DP
471 *
472 * This function can only be called after the pipe is fully trained and enabled.
473 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800474void intel_psr_enable(struct intel_dp *intel_dp)
475{
476 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
477 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100478 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800479
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +0000480 if (!HAS_PSR(dev_priv)) {
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800481 DRM_DEBUG_KMS("PSR not supported on this platform\n");
482 return;
483 }
484
485 if (!is_edp_psr(intel_dp)) {
486 DRM_DEBUG_KMS("PSR not supported by this panel\n");
487 return;
488 }
489
490 mutex_lock(&dev_priv->psr.lock);
491 if (dev_priv->psr.enabled) {
492 DRM_DEBUG_KMS("PSR already in use\n");
493 goto unlock;
494 }
495
496 if (!intel_psr_match_conditions(intel_dp))
497 goto unlock;
498
499 dev_priv->psr.busy_frontbuffer_bits = 0;
500
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100501 if (HAS_DDI(dev_priv)) {
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530502 if (dev_priv->psr.psr2_support) {
Nagaraju, Vathsalaacf45d12017-01-10 12:32:26 +0530503 skl_psr_setup_su_vsc(intel_dp);
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530504 } else {
505 /* set up vsc header for psr1 */
506 hsw_psr_setup_vsc(intel_dp);
Sonika Jindal474d1ec2015-04-02 11:02:44 +0530507 }
508
Rodrigo Vivibb929cb2015-11-18 11:21:55 -0800509 /*
510 * Per Spec: Avoid continuous PSR exit by masking MEMUP and HPD.
511 * Also mask LPSP to avoid dependency on other drivers that
512 * might block runtime_pm besides preventing other hw tracking
513 * issues now we can rely on frontbuffer tracking.
514 */
Ville Syrjälä443a3892015-11-11 20:34:15 +0200515 I915_WRITE(EDP_PSR_DEBUG_CTL, EDP_PSR_DEBUG_MASK_MEMUP |
Rodrigo Vivibb929cb2015-11-18 11:21:55 -0800516 EDP_PSR_DEBUG_MASK_HPD | EDP_PSR_DEBUG_MASK_LPSP);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800517
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800518 /* Enable PSR on the panel */
519 hsw_psr_enable_sink(intel_dp);
Sonika Jindale3d99842015-01-22 14:30:54 +0530520
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000521 if (INTEL_GEN(dev_priv) >= 9)
Sonika Jindale3d99842015-01-22 14:30:54 +0530522 intel_psr_activate(intel_dp);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800523 } else {
524 vlv_psr_setup_vsc(intel_dp);
525
526 /* Enable PSR on the panel */
527 vlv_psr_enable_sink(intel_dp);
528
529 /* On HSW+ enable_source also means go to PSR entry/active
530 * state as soon as idle_frame achieved and here would be
531 * to soon. However on VLV enable_source just enable PSR
532 * but let it on inactive state. So we might do this prior
533 * to active transition, i.e. here.
534 */
535 vlv_psr_enable_source(intel_dp);
536 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800537
Rodrigo Vivid0ac8962015-11-11 11:37:07 -0800538 /*
539 * FIXME: Activation should happen immediately since this function
540 * is just called after pipe is fully trained and enabled.
541 * However on every platform we face issues when first activation
542 * follows a modeset so quickly.
543 * - On VLV/CHV we get bank screen on first activation
544 * - On HSW/BDW we get a recoverable frozen screen until next
545 * exit-activate sequence.
546 */
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000547 if (INTEL_GEN(dev_priv) < 9)
Rodrigo Vivid0ac8962015-11-11 11:37:07 -0800548 schedule_delayed_work(&dev_priv->psr.work,
549 msecs_to_jiffies(intel_dp->panel_power_cycle_delay * 5));
550
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800551 dev_priv->psr.enabled = intel_dp;
552unlock:
553 mutex_unlock(&dev_priv->psr.lock);
554}
555
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800556static void vlv_psr_disable(struct intel_dp *intel_dp)
557{
558 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
559 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100560 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800561 struct intel_crtc *intel_crtc =
562 to_intel_crtc(intel_dig_port->base.base.crtc);
563 uint32_t val;
564
565 if (dev_priv->psr.active) {
566 /* Put VLV PSR back to PSR_state 0 that is PSR Disabled. */
Chris Wilsoneb0241c2016-06-30 15:33:26 +0100567 if (intel_wait_for_register(dev_priv,
568 VLV_PSRSTAT(intel_crtc->pipe),
569 VLV_EDP_PSR_IN_TRANS,
570 0,
571 1))
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800572 WARN(1, "PSR transition took longer than expected\n");
573
574 val = I915_READ(VLV_PSRCTL(intel_crtc->pipe));
575 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
576 val &= ~VLV_EDP_PSR_ENABLE;
577 val &= ~VLV_EDP_PSR_MODE_MASK;
578 I915_WRITE(VLV_PSRCTL(intel_crtc->pipe), val);
579
580 dev_priv->psr.active = false;
581 } else {
582 WARN_ON(vlv_is_psr_active_on_pipe(dev, intel_crtc->pipe));
583 }
584}
585
586static void hsw_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
592 if (dev_priv->psr.active) {
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530593 if (dev_priv->psr.psr2_support) {
594 I915_WRITE(EDP_PSR2_CTL,
595 I915_READ(EDP_PSR2_CTL) &
596 ~(EDP_PSR2_ENABLE |
597 EDP_SU_TRACK_ENABLE));
598 /* Wait till PSR2 is idle */
599 if (intel_wait_for_register(dev_priv,
600 EDP_PSR2_STATUS_CTL,
601 EDP_PSR2_STATUS_STATE_MASK,
602 0,
603 2000))
604 DRM_ERROR("Timed out waiting for PSR2 Idle State\n");
605 } else {
606 I915_WRITE(EDP_PSR_CTL,
607 I915_READ(EDP_PSR_CTL) & ~EDP_PSR_ENABLE);
608 /* Wait till PSR1 is idle */
609 if (intel_wait_for_register(dev_priv,
610 EDP_PSR_STATUS_CTL,
611 EDP_PSR_STATUS_STATE_MASK,
612 0,
613 2000))
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800614 DRM_ERROR("Timed out waiting for PSR Idle State\n");
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530615 }
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800616 dev_priv->psr.active = false;
617 } else {
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530618 if (dev_priv->psr.psr2_support)
619 WARN_ON(I915_READ(EDP_PSR2_CTL) & EDP_PSR2_ENABLE);
620 else
621 WARN_ON(I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE);
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800622 }
623}
624
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800625/**
626 * intel_psr_disable - Disable PSR
627 * @intel_dp: Intel DP
628 *
629 * This function needs to be called before disabling pipe.
630 */
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800631void intel_psr_disable(struct intel_dp *intel_dp)
632{
633 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
634 struct drm_device *dev = intel_dig_port->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100635 struct drm_i915_private *dev_priv = to_i915(dev);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800636
637 mutex_lock(&dev_priv->psr.lock);
638 if (!dev_priv->psr.enabled) {
639 mutex_unlock(&dev_priv->psr.lock);
640 return;
641 }
642
Rodrigo Vivib6e4d532015-11-23 14:19:32 -0800643 /* Disable PSR on Source */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100644 if (HAS_DDI(dev_priv))
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800645 hsw_psr_disable(intel_dp);
646 else
647 vlv_psr_disable(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800648
Rodrigo Vivib6e4d532015-11-23 14:19:32 -0800649 /* Disable PSR on Sink */
650 drm_dp_dpcd_writeb(&intel_dp->aux, DP_PSR_EN_CFG, 0);
651
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800652 dev_priv->psr.enabled = NULL;
653 mutex_unlock(&dev_priv->psr.lock);
654
655 cancel_delayed_work_sync(&dev_priv->psr.work);
656}
657
658static void intel_psr_work(struct work_struct *work)
659{
660 struct drm_i915_private *dev_priv =
661 container_of(work, typeof(*dev_priv), psr.work.work);
662 struct intel_dp *intel_dp = dev_priv->psr.enabled;
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800663 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
664 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800665
666 /* We have to make sure PSR is ready for re-enable
667 * otherwise it keeps disabled until next full enable/disable cycle.
668 * PSR might take some time to get fully disabled
669 * and be ready for re-enable.
670 */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +0300671 if (HAS_DDI(dev_priv)) {
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530672 if (dev_priv->psr.psr2_support) {
673 if (intel_wait_for_register(dev_priv,
674 EDP_PSR2_STATUS_CTL,
675 EDP_PSR2_STATUS_STATE_MASK,
676 0,
677 50)) {
678 DRM_ERROR("Timed out waiting for PSR2 Idle for re-enable\n");
679 return;
680 }
681 } else {
682 if (intel_wait_for_register(dev_priv,
683 EDP_PSR_STATUS_CTL,
684 EDP_PSR_STATUS_STATE_MASK,
685 0,
686 50)) {
687 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
688 return;
689 }
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800690 }
691 } else {
Chris Wilson12bb6312016-06-30 15:33:28 +0100692 if (intel_wait_for_register(dev_priv,
693 VLV_PSRSTAT(pipe),
694 VLV_EDP_PSR_IN_TRANS,
695 0,
696 1)) {
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800697 DRM_ERROR("Timed out waiting for PSR Idle for re-enable\n");
698 return;
699 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800700 }
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800701 mutex_lock(&dev_priv->psr.lock);
702 intel_dp = dev_priv->psr.enabled;
703
704 if (!intel_dp)
705 goto unlock;
706
707 /*
708 * The delayed work can race with an invalidate hence we need to
709 * recheck. Since psr_flush first clears this and then reschedules we
710 * won't ever miss a flush when bailing out here.
711 */
712 if (dev_priv->psr.busy_frontbuffer_bits)
713 goto unlock;
714
Rodrigo Vivie2bbc342014-11-19 07:37:00 -0800715 intel_psr_activate(intel_dp);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800716unlock:
717 mutex_unlock(&dev_priv->psr.lock);
718}
719
Chris Wilson5748b6a2016-08-04 16:32:38 +0100720static void intel_psr_exit(struct drm_i915_private *dev_priv)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800721{
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800722 struct intel_dp *intel_dp = dev_priv->psr.enabled;
723 struct drm_crtc *crtc = dp_to_dig_port(intel_dp)->base.base.crtc;
724 enum pipe pipe = to_intel_crtc(crtc)->pipe;
725 u32 val;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800726
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800727 if (!dev_priv->psr.active)
728 return;
729
Chris Wilson5748b6a2016-08-04 16:32:38 +0100730 if (HAS_DDI(dev_priv)) {
Nagaraju, Vathsala3fcb0ca2017-01-12 23:30:59 +0530731 if (dev_priv->psr.psr2_support) {
732 val = I915_READ(EDP_PSR2_CTL);
733 WARN_ON(!(val & EDP_PSR2_ENABLE));
734 I915_WRITE(EDP_PSR2_CTL, val & ~EDP_PSR2_ENABLE);
735 } else {
736 val = I915_READ(EDP_PSR_CTL);
737 WARN_ON(!(val & EDP_PSR_ENABLE));
738 I915_WRITE(EDP_PSR_CTL, val & ~EDP_PSR_ENABLE);
739 }
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800740 } else {
741 val = I915_READ(VLV_PSRCTL(pipe));
742
743 /* Here we do the transition from PSR_state 3 to PSR_state 5
744 * directly once PSR State 4 that is active with single frame
745 * update can be skipped. PSR_state 5 that is PSR exit then
746 * Hardware is responsible to transition back to PSR_state 1
747 * that is PSR inactive. Same state after
748 * vlv_edp_psr_enable_source.
749 */
750 val &= ~VLV_EDP_PSR_ACTIVE_ENTRY;
751 I915_WRITE(VLV_PSRCTL(pipe), val);
752
753 /* Send AUX wake up - Spec says after transitioning to PSR
754 * active we have to send AUX wake up by writing 01h in DPCD
755 * 600h of sink device.
756 * XXX: This might slow down the transition, but without this
757 * HW doesn't complete the transition to PSR_state 1 and we
758 * never get the screen updated.
759 */
760 drm_dp_dpcd_writeb(&intel_dp->aux, DP_SET_POWER,
761 DP_SET_POWER_D0);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800762 }
763
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800764 dev_priv->psr.active = false;
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800765}
766
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800767/**
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700768 * intel_psr_single_frame_update - Single Frame Update
Chris Wilson5748b6a2016-08-04 16:32:38 +0100769 * @dev_priv: i915 device
Daniel Vetter20c88382015-06-18 10:30:27 +0200770 * @frontbuffer_bits: frontbuffer plane tracking bits
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700771 *
772 * Some platforms support a single frame update feature that is used to
773 * send and update only one frame on Remote Frame Buffer.
774 * So far it is only implemented for Valleyview and Cherryview because
775 * hardware requires this to be done before a page flip.
776 */
Chris Wilson5748b6a2016-08-04 16:32:38 +0100777void intel_psr_single_frame_update(struct drm_i915_private *dev_priv,
Daniel Vetter20c88382015-06-18 10:30:27 +0200778 unsigned frontbuffer_bits)
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700779{
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700780 struct drm_crtc *crtc;
781 enum pipe pipe;
782 u32 val;
783
784 /*
785 * Single frame update is already supported on BDW+ but it requires
786 * many W/A and it isn't really needed.
787 */
Chris Wilson5748b6a2016-08-04 16:32:38 +0100788 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700789 return;
790
791 mutex_lock(&dev_priv->psr.lock);
792 if (!dev_priv->psr.enabled) {
793 mutex_unlock(&dev_priv->psr.lock);
794 return;
795 }
796
797 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
798 pipe = to_intel_crtc(crtc)->pipe;
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700799
Daniel Vetter20c88382015-06-18 10:30:27 +0200800 if (frontbuffer_bits & INTEL_FRONTBUFFER_ALL_MASK(pipe)) {
801 val = I915_READ(VLV_PSRCTL(pipe));
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700802
Daniel Vetter20c88382015-06-18 10:30:27 +0200803 /*
804 * We need to set this bit before writing registers for a flip.
805 * This bit will be self-clear when it gets to the PSR active state.
806 */
807 I915_WRITE(VLV_PSRCTL(pipe), val | VLV_EDP_PSR_SINGLE_FRAME_UPDATE);
808 }
Rodrigo Vivic7240c32015-04-10 11:15:10 -0700809 mutex_unlock(&dev_priv->psr.lock);
810}
811
812/**
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800813 * intel_psr_invalidate - Invalidade PSR
Chris Wilson5748b6a2016-08-04 16:32:38 +0100814 * @dev_priv: i915 device
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800815 * @frontbuffer_bits: frontbuffer plane tracking bits
816 *
817 * Since the hardware frontbuffer tracking has gaps we need to integrate
818 * with the software frontbuffer tracking. This function gets called every
819 * time frontbuffer rendering starts and a buffer gets dirtied. PSR must be
820 * disabled if the frontbuffer mask contains a buffer relevant to PSR.
821 *
822 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits."
823 */
Chris Wilson5748b6a2016-08-04 16:32:38 +0100824void intel_psr_invalidate(struct drm_i915_private *dev_priv,
Daniel Vetter20c88382015-06-18 10:30:27 +0200825 unsigned frontbuffer_bits)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800826{
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800827 struct drm_crtc *crtc;
828 enum pipe pipe;
829
830 mutex_lock(&dev_priv->psr.lock);
831 if (!dev_priv->psr.enabled) {
832 mutex_unlock(&dev_priv->psr.lock);
833 return;
834 }
835
836 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
837 pipe = to_intel_crtc(crtc)->pipe;
838
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800839 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800840 dev_priv->psr.busy_frontbuffer_bits |= frontbuffer_bits;
Daniel Vetterec76d622015-06-18 10:30:26 +0200841
842 if (frontbuffer_bits)
Chris Wilson5748b6a2016-08-04 16:32:38 +0100843 intel_psr_exit(dev_priv);
Daniel Vetterec76d622015-06-18 10:30:26 +0200844
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800845 mutex_unlock(&dev_priv->psr.lock);
846}
847
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800848/**
849 * intel_psr_flush - Flush PSR
Chris Wilson5748b6a2016-08-04 16:32:38 +0100850 * @dev_priv: i915 device
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800851 * @frontbuffer_bits: frontbuffer plane tracking bits
Rodrigo Vivi169de132015-07-08 16:21:31 -0700852 * @origin: which operation caused the flush
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800853 *
854 * Since the hardware frontbuffer tracking has gaps we need to integrate
855 * with the software frontbuffer tracking. This function gets called every
856 * time frontbuffer rendering has completed and flushed out to memory. PSR
857 * can be enabled again if no other frontbuffer relevant to PSR is dirty.
858 *
859 * Dirty frontbuffers relevant to PSR are tracked in busy_frontbuffer_bits.
860 */
Chris Wilson5748b6a2016-08-04 16:32:38 +0100861void intel_psr_flush(struct drm_i915_private *dev_priv,
Rodrigo Vivi169de132015-07-08 16:21:31 -0700862 unsigned frontbuffer_bits, enum fb_op_origin origin)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800863{
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800864 struct drm_crtc *crtc;
865 enum pipe pipe;
866
867 mutex_lock(&dev_priv->psr.lock);
868 if (!dev_priv->psr.enabled) {
869 mutex_unlock(&dev_priv->psr.lock);
870 return;
871 }
872
873 crtc = dp_to_dig_port(dev_priv->psr.enabled)->base.base.crtc;
874 pipe = to_intel_crtc(crtc)->pipe;
Daniel Vetterec76d622015-06-18 10:30:26 +0200875
876 frontbuffer_bits &= INTEL_FRONTBUFFER_ALL_MASK(pipe);
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800877 dev_priv->psr.busy_frontbuffer_bits &= ~frontbuffer_bits;
878
Rodrigo Vivi921ec282015-11-18 11:21:12 -0800879 /* By definition flush = invalidate + flush */
880 if (frontbuffer_bits)
Chris Wilson5748b6a2016-08-04 16:32:38 +0100881 intel_psr_exit(dev_priv);
Rodrigo Vivi995d3042014-11-19 07:37:47 -0800882
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800883 if (!dev_priv->psr.active && !dev_priv->psr.busy_frontbuffer_bits)
Rodrigo Vivid0ac8962015-11-11 11:37:07 -0800884 if (!work_busy(&dev_priv->psr.work.work))
885 schedule_delayed_work(&dev_priv->psr.work,
Rodrigo Vivi20bb97f2015-11-11 11:37:08 -0800886 msecs_to_jiffies(100));
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800887 mutex_unlock(&dev_priv->psr.lock);
888}
889
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800890/**
891 * intel_psr_init - Init basic PSR work and mutex.
Ander Conselvan de Oliveira93de0562016-11-29 13:48:47 +0200892 * @dev_priv: i915 device private
Rodrigo Vivib2b89f52014-11-14 08:52:29 -0800893 *
894 * This function is called only once at driver load to initialize basic
895 * PSR stuff.
896 */
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +0200897void intel_psr_init(struct drm_i915_private *dev_priv)
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800898{
Ville Syrjälä443a3892015-11-11 20:34:15 +0200899 dev_priv->psr_mmio_base = IS_HASWELL(dev_priv) ?
900 HSW_EDP_PSR_BASE : BDW_EDP_PSR_BASE;
901
Paulo Zanoni2ee7dc42016-12-13 18:57:44 -0200902 /* Per platform default: all disabled. */
903 if (i915.enable_psr == -1)
904 i915.enable_psr = 0;
Rodrigo Vivid94d6e82016-02-12 04:08:11 -0800905
Rodrigo Vivi65f61b42016-02-01 12:02:08 -0800906 /* Set link_standby x link_off defaults */
Tvrtko Ursulin86527442016-10-13 11:03:00 +0100907 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Rodrigo Vivi60e5ffe2016-02-01 12:02:07 -0800908 /* HSW and BDW require workarounds that we don't implement. */
909 dev_priv->psr.link_standby = false;
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100910 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi60e5ffe2016-02-01 12:02:07 -0800911 /* On VLV and CHV only standby mode is supported. */
912 dev_priv->psr.link_standby = true;
913 else
914 /* For new platforms let's respect VBT back again */
915 dev_priv->psr.link_standby = dev_priv->vbt.psr.full_link;
916
Rodrigo Vivi65f61b42016-02-01 12:02:08 -0800917 /* Override link_standby x link_off defaults */
918 if (i915.enable_psr == 2 && !dev_priv->psr.link_standby) {
919 DRM_DEBUG_KMS("PSR: Forcing link standby\n");
920 dev_priv->psr.link_standby = true;
921 }
922 if (i915.enable_psr == 3 && dev_priv->psr.link_standby) {
923 DRM_DEBUG_KMS("PSR: Forcing main link off\n");
924 dev_priv->psr.link_standby = false;
925 }
926
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -0800927 INIT_DELAYED_WORK(&dev_priv->psr.work, intel_psr_work);
928 mutex_init(&dev_priv->psr.lock);
929}