Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2006-2007 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 | * Authors: |
| 24 | * Eric Anholt <eric@anholt.net> |
| 25 | */ |
| 26 | |
Daniel Vetter | 618563e | 2012-04-01 13:38:50 +0200 | [diff] [blame] | 27 | #include <linux/dmi.h> |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/input.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 30 | #include <linux/i2c.h> |
Shaohua Li | 7662c8b | 2009-06-26 11:23:55 +0800 | [diff] [blame] | 31 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 33 | #include <linux/vgaarb.h> |
Wu Fengguang | e0dac65 | 2011-09-05 14:25:34 +0800 | [diff] [blame] | 34 | #include <drm/drm_edid.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 35 | #include <drm/drmP.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 36 | #include "intel_drv.h" |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 37 | #include <drm/i915_drm.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 38 | #include "i915_drv.h" |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 39 | #include "i915_gem_dmabuf.h" |
Imre Deak | db18b6a | 2016-03-24 12:41:40 +0200 | [diff] [blame] | 40 | #include "intel_dsi.h" |
Jesse Barnes | e5510fa | 2010-07-01 16:48:37 -0700 | [diff] [blame] | 41 | #include "i915_trace.h" |
Xi Ruoyao | 319c1d4 | 2015-03-12 20:16:32 +0800 | [diff] [blame] | 42 | #include <drm/drm_atomic.h> |
Matt Roper | c196e1d | 2015-01-21 16:35:48 -0800 | [diff] [blame] | 43 | #include <drm/drm_atomic_helper.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 44 | #include <drm/drm_dp_helper.h> |
| 45 | #include <drm/drm_crtc_helper.h> |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 46 | #include <drm/drm_plane_helper.h> |
| 47 | #include <drm/drm_rect.h> |
Keith Packard | c0f372b3 | 2011-11-16 22:24:52 -0800 | [diff] [blame] | 48 | #include <linux/dma_remapping.h> |
Alex Goins | fd8e058 | 2015-11-25 18:43:38 -0800 | [diff] [blame] | 49 | #include <linux/reservation.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 50 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 51 | static bool is_mmio_work(struct intel_flip_work *work) |
| 52 | { |
| 53 | return work->mmio_work.func; |
| 54 | } |
| 55 | |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 56 | /* Primary plane formats for gen <= 3 */ |
Damien Lespiau | 568db4f | 2015-05-12 16:13:18 +0100 | [diff] [blame] | 57 | static const uint32_t i8xx_primary_formats[] = { |
Damien Lespiau | 67fe7dc | 2015-05-15 19:06:00 +0100 | [diff] [blame] | 58 | DRM_FORMAT_C8, |
| 59 | DRM_FORMAT_RGB565, |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 60 | DRM_FORMAT_XRGB1555, |
Damien Lespiau | 67fe7dc | 2015-05-15 19:06:00 +0100 | [diff] [blame] | 61 | DRM_FORMAT_XRGB8888, |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 62 | }; |
| 63 | |
| 64 | /* Primary plane formats for gen >= 4 */ |
Damien Lespiau | 568db4f | 2015-05-12 16:13:18 +0100 | [diff] [blame] | 65 | static const uint32_t i965_primary_formats[] = { |
Damien Lespiau | 67fe7dc | 2015-05-15 19:06:00 +0100 | [diff] [blame] | 66 | DRM_FORMAT_C8, |
| 67 | DRM_FORMAT_RGB565, |
| 68 | DRM_FORMAT_XRGB8888, |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 69 | DRM_FORMAT_XBGR8888, |
Damien Lespiau | 6c0fd45 | 2015-05-19 12:29:16 +0100 | [diff] [blame] | 70 | DRM_FORMAT_XRGB2101010, |
| 71 | DRM_FORMAT_XBGR2101010, |
| 72 | }; |
| 73 | |
| 74 | static const uint32_t skl_primary_formats[] = { |
| 75 | DRM_FORMAT_C8, |
| 76 | DRM_FORMAT_RGB565, |
| 77 | DRM_FORMAT_XRGB8888, |
| 78 | DRM_FORMAT_XBGR8888, |
Damien Lespiau | 67fe7dc | 2015-05-15 19:06:00 +0100 | [diff] [blame] | 79 | DRM_FORMAT_ARGB8888, |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 80 | DRM_FORMAT_ABGR8888, |
| 81 | DRM_FORMAT_XRGB2101010, |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 82 | DRM_FORMAT_XBGR2101010, |
Kumar, Mahesh | ea916ea | 2015-09-03 16:17:09 +0530 | [diff] [blame] | 83 | DRM_FORMAT_YUYV, |
| 84 | DRM_FORMAT_YVYU, |
| 85 | DRM_FORMAT_UYVY, |
| 86 | DRM_FORMAT_VYUY, |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 87 | }; |
| 88 | |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 89 | /* Cursor formats */ |
| 90 | static const uint32_t intel_cursor_formats[] = { |
| 91 | DRM_FORMAT_ARGB8888, |
| 92 | }; |
| 93 | |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 94 | static void i9xx_crtc_clock_get(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 95 | struct intel_crtc_state *pipe_config); |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 96 | static void ironlake_pch_clock_get(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 97 | struct intel_crtc_state *pipe_config); |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 98 | |
Jesse Barnes | eb1bfe8 | 2014-02-12 12:26:25 -0800 | [diff] [blame] | 99 | static int intel_framebuffer_init(struct drm_device *dev, |
| 100 | struct intel_framebuffer *ifb, |
| 101 | struct drm_mode_fb_cmd2 *mode_cmd, |
| 102 | struct drm_i915_gem_object *obj); |
Daniel Vetter | 5b18e57 | 2014-04-24 23:55:06 +0200 | [diff] [blame] | 103 | static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc); |
| 104 | static void intel_set_pipe_timings(struct intel_crtc *intel_crtc); |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 105 | static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc); |
Daniel Vetter | 29407aa | 2014-04-24 23:55:08 +0200 | [diff] [blame] | 106 | static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc, |
Vandana Kannan | f769cd2 | 2014-08-05 07:51:22 -0700 | [diff] [blame] | 107 | struct intel_link_m_n *m_n, |
| 108 | struct intel_link_m_n *m2_n2); |
Daniel Vetter | 29407aa | 2014-04-24 23:55:08 +0200 | [diff] [blame] | 109 | static void ironlake_set_pipeconf(struct drm_crtc *crtc); |
Daniel Vetter | 229fca9 | 2014-04-24 23:55:09 +0200 | [diff] [blame] | 110 | static void haswell_set_pipeconf(struct drm_crtc *crtc); |
Jani Nikula | 391bf04 | 2016-03-18 17:05:40 +0200 | [diff] [blame] | 111 | static void haswell_set_pipemisc(struct drm_crtc *crtc); |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 112 | static void vlv_prepare_pll(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 113 | const struct intel_crtc_state *pipe_config); |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 114 | static void chv_prepare_pll(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 115 | const struct intel_crtc_state *pipe_config); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 116 | static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *); |
| 117 | static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *); |
Chandra Konduru | 549e2bf | 2015-04-07 15:28:38 -0700 | [diff] [blame] | 118 | static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc, |
| 119 | struct intel_crtc_state *crtc_state); |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 120 | static void skylake_pfit_enable(struct intel_crtc *crtc); |
| 121 | static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force); |
| 122 | static void ironlake_pfit_enable(struct intel_crtc *crtc); |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 123 | static void intel_modeset_setup_hw_state(struct drm_device *dev); |
Ville Syrjälä | 2622a08 | 2016-03-09 19:07:26 +0200 | [diff] [blame] | 124 | static void intel_pre_disable_primary_noatomic(struct drm_crtc *crtc); |
Ville Syrjälä | 4e5ca60 | 2016-05-11 22:44:44 +0300 | [diff] [blame] | 125 | static int ilk_max_pixel_rate(struct drm_atomic_state *state); |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 126 | static int bxt_calc_cdclk(int max_pixclk); |
Damien Lespiau | e7457a9 | 2013-08-08 22:28:59 +0100 | [diff] [blame] | 127 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 128 | struct intel_limit { |
Ander Conselvan de Oliveira | 4c5def9 | 2016-05-04 12:11:58 +0300 | [diff] [blame] | 129 | struct { |
| 130 | int min, max; |
| 131 | } dot, vco, n, m, m1, m2, p, p1; |
| 132 | |
| 133 | struct { |
| 134 | int dot_limit; |
| 135 | int p2_slow, p2_fast; |
| 136 | } p2; |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 137 | }; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 138 | |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 139 | /* returns HPLL frequency in kHz */ |
| 140 | static int valleyview_get_vco(struct drm_i915_private *dev_priv) |
| 141 | { |
| 142 | int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 }; |
| 143 | |
| 144 | /* Obtain SKU information */ |
| 145 | mutex_lock(&dev_priv->sb_lock); |
| 146 | hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) & |
| 147 | CCK_FUSE_HPLL_FREQ_MASK; |
| 148 | mutex_unlock(&dev_priv->sb_lock); |
| 149 | |
| 150 | return vco_freq[hpll_freq] * 1000; |
| 151 | } |
| 152 | |
Ville Syrjälä | c30fec6 | 2016-03-04 21:43:02 +0200 | [diff] [blame] | 153 | int vlv_get_cck_clock(struct drm_i915_private *dev_priv, |
| 154 | const char *name, u32 reg, int ref_freq) |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 155 | { |
| 156 | u32 val; |
| 157 | int divider; |
| 158 | |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 159 | mutex_lock(&dev_priv->sb_lock); |
| 160 | val = vlv_cck_read(dev_priv, reg); |
| 161 | mutex_unlock(&dev_priv->sb_lock); |
| 162 | |
| 163 | divider = val & CCK_FREQUENCY_VALUES; |
| 164 | |
| 165 | WARN((val & CCK_FREQUENCY_STATUS) != |
| 166 | (divider << CCK_FREQUENCY_STATUS_SHIFT), |
| 167 | "%s change in progress\n", name); |
| 168 | |
Ville Syrjälä | c30fec6 | 2016-03-04 21:43:02 +0200 | [diff] [blame] | 169 | return DIV_ROUND_CLOSEST(ref_freq << 1, divider + 1); |
| 170 | } |
| 171 | |
| 172 | static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv, |
| 173 | const char *name, u32 reg) |
| 174 | { |
| 175 | if (dev_priv->hpll_freq == 0) |
| 176 | dev_priv->hpll_freq = valleyview_get_vco(dev_priv); |
| 177 | |
| 178 | return vlv_get_cck_clock(dev_priv, name, reg, |
| 179 | dev_priv->hpll_freq); |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 180 | } |
| 181 | |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 182 | static int |
| 183 | intel_pch_rawclk(struct drm_i915_private *dev_priv) |
Daniel Vetter | d2acd21 | 2012-10-20 20:57:43 +0200 | [diff] [blame] | 184 | { |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 185 | return (I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK) * 1000; |
Daniel Vetter | d2acd21 | 2012-10-20 20:57:43 +0200 | [diff] [blame] | 186 | } |
| 187 | |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 188 | static int |
| 189 | intel_vlv_hrawclk(struct drm_i915_private *dev_priv) |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 190 | { |
Ville Syrjälä | 19ab4ed | 2016-04-27 17:43:22 +0300 | [diff] [blame] | 191 | /* RAWCLK_FREQ_VLV register updated from power well code */ |
Ville Syrjälä | 35d38d1 | 2016-03-02 17:22:16 +0200 | [diff] [blame] | 192 | return vlv_get_cck_clock_hpll(dev_priv, "hrawclk", |
| 193 | CCK_DISPLAY_REF_CLOCK_CONTROL); |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | static int |
| 197 | intel_g4x_hrawclk(struct drm_i915_private *dev_priv) |
| 198 | { |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 199 | uint32_t clkcfg; |
| 200 | |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 201 | /* hrawclock is 1/4 the FSB frequency */ |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 202 | clkcfg = I915_READ(CLKCFG); |
| 203 | switch (clkcfg & CLKCFG_FSB_MASK) { |
| 204 | case CLKCFG_FSB_400: |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 205 | return 100000; |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 206 | case CLKCFG_FSB_533: |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 207 | return 133333; |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 208 | case CLKCFG_FSB_667: |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 209 | return 166667; |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 210 | case CLKCFG_FSB_800: |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 211 | return 200000; |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 212 | case CLKCFG_FSB_1067: |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 213 | return 266667; |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 214 | case CLKCFG_FSB_1333: |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 215 | return 333333; |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 216 | /* these two are just a guess; one of them might be right */ |
| 217 | case CLKCFG_FSB_1600: |
| 218 | case CLKCFG_FSB_1600_ALT: |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 219 | return 400000; |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 220 | default: |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 221 | return 133333; |
Jani Nikula | 79e50a4 | 2015-08-26 10:58:20 +0300 | [diff] [blame] | 222 | } |
| 223 | } |
| 224 | |
Ville Syrjälä | 19ab4ed | 2016-04-27 17:43:22 +0300 | [diff] [blame] | 225 | void intel_update_rawclk(struct drm_i915_private *dev_priv) |
Ville Syrjälä | e7dc33f | 2016-03-02 17:22:13 +0200 | [diff] [blame] | 226 | { |
| 227 | if (HAS_PCH_SPLIT(dev_priv)) |
| 228 | dev_priv->rawclk_freq = intel_pch_rawclk(dev_priv); |
| 229 | else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
| 230 | dev_priv->rawclk_freq = intel_vlv_hrawclk(dev_priv); |
| 231 | else if (IS_G4X(dev_priv) || IS_PINEVIEW(dev_priv)) |
| 232 | dev_priv->rawclk_freq = intel_g4x_hrawclk(dev_priv); |
| 233 | else |
| 234 | return; /* no rawclk on other platforms, or no need to know it */ |
| 235 | |
| 236 | DRM_DEBUG_DRIVER("rawclk rate: %d kHz\n", dev_priv->rawclk_freq); |
| 237 | } |
| 238 | |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 239 | static void intel_update_czclk(struct drm_i915_private *dev_priv) |
| 240 | { |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 241 | if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))) |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 242 | return; |
| 243 | |
| 244 | dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk", |
| 245 | CCK_CZ_CLOCK_CONTROL); |
| 246 | |
| 247 | DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq); |
| 248 | } |
| 249 | |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 250 | static inline u32 /* units of 100MHz */ |
Ville Syrjälä | 21a727b | 2016-02-17 21:41:10 +0200 | [diff] [blame] | 251 | intel_fdi_link_freq(struct drm_i915_private *dev_priv, |
| 252 | const struct intel_crtc_state *pipe_config) |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 253 | { |
Ville Syrjälä | 21a727b | 2016-02-17 21:41:10 +0200 | [diff] [blame] | 254 | if (HAS_DDI(dev_priv)) |
| 255 | return pipe_config->port_clock; /* SPLL */ |
| 256 | else if (IS_GEN5(dev_priv)) |
| 257 | return ((I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2) * 10000; |
Ville Syrjälä | e3b247d | 2016-02-17 21:41:09 +0200 | [diff] [blame] | 258 | else |
Ville Syrjälä | 21a727b | 2016-02-17 21:41:10 +0200 | [diff] [blame] | 259 | return 270000; |
Chris Wilson | 021357a | 2010-09-07 20:54:59 +0100 | [diff] [blame] | 260 | } |
| 261 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 262 | static const struct intel_limit intel_limits_i8xx_dac = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 263 | .dot = { .min = 25000, .max = 350000 }, |
Ville Syrjälä | 9c33371 | 2013-12-09 18:54:17 +0200 | [diff] [blame] | 264 | .vco = { .min = 908000, .max = 1512000 }, |
Ville Syrjälä | 91dbe5f | 2013-12-09 18:54:14 +0200 | [diff] [blame] | 265 | .n = { .min = 2, .max = 16 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 266 | .m = { .min = 96, .max = 140 }, |
| 267 | .m1 = { .min = 18, .max = 26 }, |
| 268 | .m2 = { .min = 6, .max = 16 }, |
| 269 | .p = { .min = 4, .max = 128 }, |
| 270 | .p1 = { .min = 2, .max = 33 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 271 | .p2 = { .dot_limit = 165000, |
| 272 | .p2_slow = 4, .p2_fast = 2 }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 273 | }; |
| 274 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 275 | static const struct intel_limit intel_limits_i8xx_dvo = { |
Daniel Vetter | 5d536e2 | 2013-07-06 12:52:06 +0200 | [diff] [blame] | 276 | .dot = { .min = 25000, .max = 350000 }, |
Ville Syrjälä | 9c33371 | 2013-12-09 18:54:17 +0200 | [diff] [blame] | 277 | .vco = { .min = 908000, .max = 1512000 }, |
Ville Syrjälä | 91dbe5f | 2013-12-09 18:54:14 +0200 | [diff] [blame] | 278 | .n = { .min = 2, .max = 16 }, |
Daniel Vetter | 5d536e2 | 2013-07-06 12:52:06 +0200 | [diff] [blame] | 279 | .m = { .min = 96, .max = 140 }, |
| 280 | .m1 = { .min = 18, .max = 26 }, |
| 281 | .m2 = { .min = 6, .max = 16 }, |
| 282 | .p = { .min = 4, .max = 128 }, |
| 283 | .p1 = { .min = 2, .max = 33 }, |
| 284 | .p2 = { .dot_limit = 165000, |
| 285 | .p2_slow = 4, .p2_fast = 4 }, |
| 286 | }; |
| 287 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 288 | static const struct intel_limit intel_limits_i8xx_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 289 | .dot = { .min = 25000, .max = 350000 }, |
Ville Syrjälä | 9c33371 | 2013-12-09 18:54:17 +0200 | [diff] [blame] | 290 | .vco = { .min = 908000, .max = 1512000 }, |
Ville Syrjälä | 91dbe5f | 2013-12-09 18:54:14 +0200 | [diff] [blame] | 291 | .n = { .min = 2, .max = 16 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 292 | .m = { .min = 96, .max = 140 }, |
| 293 | .m1 = { .min = 18, .max = 26 }, |
| 294 | .m2 = { .min = 6, .max = 16 }, |
| 295 | .p = { .min = 4, .max = 128 }, |
| 296 | .p1 = { .min = 1, .max = 6 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 297 | .p2 = { .dot_limit = 165000, |
| 298 | .p2_slow = 14, .p2_fast = 7 }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 299 | }; |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 300 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 301 | static const struct intel_limit intel_limits_i9xx_sdvo = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 302 | .dot = { .min = 20000, .max = 400000 }, |
| 303 | .vco = { .min = 1400000, .max = 2800000 }, |
| 304 | .n = { .min = 1, .max = 6 }, |
| 305 | .m = { .min = 70, .max = 120 }, |
Patrik Jakobsson | 4f7dfb6 | 2013-02-13 22:20:22 +0100 | [diff] [blame] | 306 | .m1 = { .min = 8, .max = 18 }, |
| 307 | .m2 = { .min = 3, .max = 7 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 308 | .p = { .min = 5, .max = 80 }, |
| 309 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 310 | .p2 = { .dot_limit = 200000, |
| 311 | .p2_slow = 10, .p2_fast = 5 }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 312 | }; |
| 313 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 314 | static const struct intel_limit intel_limits_i9xx_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 315 | .dot = { .min = 20000, .max = 400000 }, |
| 316 | .vco = { .min = 1400000, .max = 2800000 }, |
| 317 | .n = { .min = 1, .max = 6 }, |
| 318 | .m = { .min = 70, .max = 120 }, |
Patrik Jakobsson | 53a7d2d | 2013-02-13 22:20:21 +0100 | [diff] [blame] | 319 | .m1 = { .min = 8, .max = 18 }, |
| 320 | .m2 = { .min = 3, .max = 7 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 321 | .p = { .min = 7, .max = 98 }, |
| 322 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 323 | .p2 = { .dot_limit = 112000, |
| 324 | .p2_slow = 14, .p2_fast = 7 }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 325 | }; |
| 326 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 327 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 328 | static const struct intel_limit intel_limits_g4x_sdvo = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 329 | .dot = { .min = 25000, .max = 270000 }, |
| 330 | .vco = { .min = 1750000, .max = 3500000}, |
| 331 | .n = { .min = 1, .max = 4 }, |
| 332 | .m = { .min = 104, .max = 138 }, |
| 333 | .m1 = { .min = 17, .max = 23 }, |
| 334 | .m2 = { .min = 5, .max = 11 }, |
| 335 | .p = { .min = 10, .max = 30 }, |
| 336 | .p1 = { .min = 1, .max = 3}, |
| 337 | .p2 = { .dot_limit = 270000, |
| 338 | .p2_slow = 10, |
| 339 | .p2_fast = 10 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 340 | }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 341 | }; |
| 342 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 343 | static const struct intel_limit intel_limits_g4x_hdmi = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 344 | .dot = { .min = 22000, .max = 400000 }, |
| 345 | .vco = { .min = 1750000, .max = 3500000}, |
| 346 | .n = { .min = 1, .max = 4 }, |
| 347 | .m = { .min = 104, .max = 138 }, |
| 348 | .m1 = { .min = 16, .max = 23 }, |
| 349 | .m2 = { .min = 5, .max = 11 }, |
| 350 | .p = { .min = 5, .max = 80 }, |
| 351 | .p1 = { .min = 1, .max = 8}, |
| 352 | .p2 = { .dot_limit = 165000, |
| 353 | .p2_slow = 10, .p2_fast = 5 }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 354 | }; |
| 355 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 356 | static const struct intel_limit intel_limits_g4x_single_channel_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 357 | .dot = { .min = 20000, .max = 115000 }, |
| 358 | .vco = { .min = 1750000, .max = 3500000 }, |
| 359 | .n = { .min = 1, .max = 3 }, |
| 360 | .m = { .min = 104, .max = 138 }, |
| 361 | .m1 = { .min = 17, .max = 23 }, |
| 362 | .m2 = { .min = 5, .max = 11 }, |
| 363 | .p = { .min = 28, .max = 112 }, |
| 364 | .p1 = { .min = 2, .max = 8 }, |
| 365 | .p2 = { .dot_limit = 0, |
| 366 | .p2_slow = 14, .p2_fast = 14 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 367 | }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 368 | }; |
| 369 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 370 | static const struct intel_limit intel_limits_g4x_dual_channel_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 371 | .dot = { .min = 80000, .max = 224000 }, |
| 372 | .vco = { .min = 1750000, .max = 3500000 }, |
| 373 | .n = { .min = 1, .max = 3 }, |
| 374 | .m = { .min = 104, .max = 138 }, |
| 375 | .m1 = { .min = 17, .max = 23 }, |
| 376 | .m2 = { .min = 5, .max = 11 }, |
| 377 | .p = { .min = 14, .max = 42 }, |
| 378 | .p1 = { .min = 2, .max = 6 }, |
| 379 | .p2 = { .dot_limit = 0, |
| 380 | .p2_slow = 7, .p2_fast = 7 |
Ma Ling | 044c7c4 | 2009-03-18 20:13:23 +0800 | [diff] [blame] | 381 | }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 382 | }; |
| 383 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 384 | static const struct intel_limit intel_limits_pineview_sdvo = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 385 | .dot = { .min = 20000, .max = 400000}, |
| 386 | .vco = { .min = 1700000, .max = 3500000 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 387 | /* Pineview's Ncounter is a ring counter */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 388 | .n = { .min = 3, .max = 6 }, |
| 389 | .m = { .min = 2, .max = 256 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 390 | /* Pineview only has one combined m divider, which we treat as m2. */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 391 | .m1 = { .min = 0, .max = 0 }, |
| 392 | .m2 = { .min = 0, .max = 254 }, |
| 393 | .p = { .min = 5, .max = 80 }, |
| 394 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 395 | .p2 = { .dot_limit = 200000, |
| 396 | .p2_slow = 10, .p2_fast = 5 }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 397 | }; |
| 398 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 399 | static const struct intel_limit intel_limits_pineview_lvds = { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 400 | .dot = { .min = 20000, .max = 400000 }, |
| 401 | .vco = { .min = 1700000, .max = 3500000 }, |
| 402 | .n = { .min = 3, .max = 6 }, |
| 403 | .m = { .min = 2, .max = 256 }, |
| 404 | .m1 = { .min = 0, .max = 0 }, |
| 405 | .m2 = { .min = 0, .max = 254 }, |
| 406 | .p = { .min = 7, .max = 112 }, |
| 407 | .p1 = { .min = 1, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 408 | .p2 = { .dot_limit = 112000, |
| 409 | .p2_slow = 14, .p2_fast = 14 }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 410 | }; |
| 411 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 412 | /* Ironlake / Sandybridge |
| 413 | * |
| 414 | * We calculate clock using (register_value + 2) for N/M1/M2, so here |
| 415 | * the range value for them is (actual_value - 2). |
| 416 | */ |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 417 | static const struct intel_limit intel_limits_ironlake_dac = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 418 | .dot = { .min = 25000, .max = 350000 }, |
| 419 | .vco = { .min = 1760000, .max = 3510000 }, |
| 420 | .n = { .min = 1, .max = 5 }, |
| 421 | .m = { .min = 79, .max = 127 }, |
| 422 | .m1 = { .min = 12, .max = 22 }, |
| 423 | .m2 = { .min = 5, .max = 9 }, |
| 424 | .p = { .min = 5, .max = 80 }, |
| 425 | .p1 = { .min = 1, .max = 8 }, |
| 426 | .p2 = { .dot_limit = 225000, |
| 427 | .p2_slow = 10, .p2_fast = 5 }, |
Keith Packard | e4b3669 | 2009-06-05 19:22:17 -0700 | [diff] [blame] | 428 | }; |
| 429 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 430 | static const struct intel_limit intel_limits_ironlake_single_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 431 | .dot = { .min = 25000, .max = 350000 }, |
| 432 | .vco = { .min = 1760000, .max = 3510000 }, |
| 433 | .n = { .min = 1, .max = 3 }, |
| 434 | .m = { .min = 79, .max = 118 }, |
| 435 | .m1 = { .min = 12, .max = 22 }, |
| 436 | .m2 = { .min = 5, .max = 9 }, |
| 437 | .p = { .min = 28, .max = 112 }, |
| 438 | .p1 = { .min = 2, .max = 8 }, |
| 439 | .p2 = { .dot_limit = 225000, |
| 440 | .p2_slow = 14, .p2_fast = 14 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 441 | }; |
| 442 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 443 | static const struct intel_limit intel_limits_ironlake_dual_lvds = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 444 | .dot = { .min = 25000, .max = 350000 }, |
| 445 | .vco = { .min = 1760000, .max = 3510000 }, |
| 446 | .n = { .min = 1, .max = 3 }, |
| 447 | .m = { .min = 79, .max = 127 }, |
| 448 | .m1 = { .min = 12, .max = 22 }, |
| 449 | .m2 = { .min = 5, .max = 9 }, |
| 450 | .p = { .min = 14, .max = 56 }, |
| 451 | .p1 = { .min = 2, .max = 8 }, |
| 452 | .p2 = { .dot_limit = 225000, |
| 453 | .p2_slow = 7, .p2_fast = 7 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 454 | }; |
| 455 | |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 456 | /* LVDS 100mhz refclk limits. */ |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 457 | static const struct intel_limit intel_limits_ironlake_single_lvds_100m = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 458 | .dot = { .min = 25000, .max = 350000 }, |
| 459 | .vco = { .min = 1760000, .max = 3510000 }, |
| 460 | .n = { .min = 1, .max = 2 }, |
| 461 | .m = { .min = 79, .max = 126 }, |
| 462 | .m1 = { .min = 12, .max = 22 }, |
| 463 | .m2 = { .min = 5, .max = 9 }, |
| 464 | .p = { .min = 28, .max = 112 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 465 | .p1 = { .min = 2, .max = 8 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 466 | .p2 = { .dot_limit = 225000, |
| 467 | .p2_slow = 14, .p2_fast = 14 }, |
Zhenyu Wang | b91ad0e | 2010-02-05 09:14:17 +0800 | [diff] [blame] | 468 | }; |
| 469 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 470 | static const struct intel_limit intel_limits_ironlake_dual_lvds_100m = { |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 471 | .dot = { .min = 25000, .max = 350000 }, |
| 472 | .vco = { .min = 1760000, .max = 3510000 }, |
| 473 | .n = { .min = 1, .max = 3 }, |
| 474 | .m = { .min = 79, .max = 126 }, |
| 475 | .m1 = { .min = 12, .max = 22 }, |
| 476 | .m2 = { .min = 5, .max = 9 }, |
| 477 | .p = { .min = 14, .max = 42 }, |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 478 | .p1 = { .min = 2, .max = 6 }, |
Eric Anholt | 273e27c | 2011-03-30 13:01:10 -0700 | [diff] [blame] | 479 | .p2 = { .dot_limit = 225000, |
| 480 | .p2_slow = 7, .p2_fast = 7 }, |
Zhao Yakui | 4547668 | 2009-12-31 16:06:04 +0800 | [diff] [blame] | 481 | }; |
| 482 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 483 | static const struct intel_limit intel_limits_vlv = { |
Ville Syrjälä | f01b796 | 2013-09-27 16:55:49 +0300 | [diff] [blame] | 484 | /* |
| 485 | * These are the data rate limits (measured in fast clocks) |
| 486 | * since those are the strictest limits we have. The fast |
| 487 | * clock and actual rate limits are more relaxed, so checking |
| 488 | * them would make no difference. |
| 489 | */ |
| 490 | .dot = { .min = 25000 * 5, .max = 270000 * 5 }, |
Daniel Vetter | 75e5398 | 2013-04-18 21:10:43 +0200 | [diff] [blame] | 491 | .vco = { .min = 4000000, .max = 6000000 }, |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 492 | .n = { .min = 1, .max = 7 }, |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 493 | .m1 = { .min = 2, .max = 3 }, |
| 494 | .m2 = { .min = 11, .max = 156 }, |
Ville Syrjälä | b99ab66 | 2013-09-24 21:26:26 +0300 | [diff] [blame] | 495 | .p1 = { .min = 2, .max = 3 }, |
Ville Syrjälä | 5fdc9c49 | 2013-09-24 21:26:29 +0300 | [diff] [blame] | 496 | .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */ |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 497 | }; |
| 498 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 499 | static const struct intel_limit intel_limits_chv = { |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 500 | /* |
| 501 | * These are the data rate limits (measured in fast clocks) |
| 502 | * since those are the strictest limits we have. The fast |
| 503 | * clock and actual rate limits are more relaxed, so checking |
| 504 | * them would make no difference. |
| 505 | */ |
| 506 | .dot = { .min = 25000 * 5, .max = 540000 * 5}, |
Ville Syrjälä | 17fe102 | 2015-02-26 21:01:52 +0200 | [diff] [blame] | 507 | .vco = { .min = 4800000, .max = 6480000 }, |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 508 | .n = { .min = 1, .max = 1 }, |
| 509 | .m1 = { .min = 2, .max = 2 }, |
| 510 | .m2 = { .min = 24 << 22, .max = 175 << 22 }, |
| 511 | .p1 = { .min = 2, .max = 4 }, |
| 512 | .p2 = { .p2_slow = 1, .p2_fast = 14 }, |
| 513 | }; |
| 514 | |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 515 | static const struct intel_limit intel_limits_bxt = { |
Imre Deak | 5ab7b0b | 2015-03-06 03:29:25 +0200 | [diff] [blame] | 516 | /* FIXME: find real dot limits */ |
| 517 | .dot = { .min = 0, .max = INT_MAX }, |
Vandana Kannan | e629255 | 2015-07-01 17:02:57 +0530 | [diff] [blame] | 518 | .vco = { .min = 4800000, .max = 6700000 }, |
Imre Deak | 5ab7b0b | 2015-03-06 03:29:25 +0200 | [diff] [blame] | 519 | .n = { .min = 1, .max = 1 }, |
| 520 | .m1 = { .min = 2, .max = 2 }, |
| 521 | /* FIXME: find real m2 limits */ |
| 522 | .m2 = { .min = 2 << 22, .max = 255 << 22 }, |
| 523 | .p1 = { .min = 2, .max = 4 }, |
| 524 | .p2 = { .p2_slow = 1, .p2_fast = 20 }, |
| 525 | }; |
| 526 | |
Ander Conselvan de Oliveira | cdba954 | 2015-06-01 12:49:51 +0200 | [diff] [blame] | 527 | static bool |
| 528 | needs_modeset(struct drm_crtc_state *state) |
| 529 | { |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 530 | return drm_atomic_crtc_needs_modeset(state); |
Ander Conselvan de Oliveira | cdba954 | 2015-06-01 12:49:51 +0200 | [diff] [blame] | 531 | } |
| 532 | |
Paulo Zanoni | e0638cd | 2013-09-24 13:52:54 -0300 | [diff] [blame] | 533 | /** |
| 534 | * Returns whether any output on the specified pipe is of the specified type |
| 535 | */ |
Damien Lespiau | 4093561 | 2014-10-29 11:16:59 +0000 | [diff] [blame] | 536 | bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type) |
Paulo Zanoni | e0638cd | 2013-09-24 13:52:54 -0300 | [diff] [blame] | 537 | { |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 538 | struct drm_device *dev = crtc->base.dev; |
Paulo Zanoni | e0638cd | 2013-09-24 13:52:54 -0300 | [diff] [blame] | 539 | struct intel_encoder *encoder; |
| 540 | |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 541 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
Paulo Zanoni | e0638cd | 2013-09-24 13:52:54 -0300 | [diff] [blame] | 542 | if (encoder->type == type) |
| 543 | return true; |
| 544 | |
| 545 | return false; |
| 546 | } |
| 547 | |
Ander Conselvan de Oliveira | d0737e1 | 2014-10-29 11:32:30 +0200 | [diff] [blame] | 548 | /** |
| 549 | * Returns whether any output on the specified pipe will have the specified |
| 550 | * type after a staged modeset is complete, i.e., the same as |
| 551 | * intel_pipe_has_type() but looking at encoder->new_crtc instead of |
| 552 | * encoder->crtc. |
| 553 | */ |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 554 | static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state, |
| 555 | int type) |
Ander Conselvan de Oliveira | d0737e1 | 2014-10-29 11:32:30 +0200 | [diff] [blame] | 556 | { |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 557 | struct drm_atomic_state *state = crtc_state->base.state; |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 558 | struct drm_connector *connector; |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 559 | struct drm_connector_state *connector_state; |
Ander Conselvan de Oliveira | d0737e1 | 2014-10-29 11:32:30 +0200 | [diff] [blame] | 560 | struct intel_encoder *encoder; |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 561 | int i, num_connectors = 0; |
Ander Conselvan de Oliveira | d0737e1 | 2014-10-29 11:32:30 +0200 | [diff] [blame] | 562 | |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 563 | for_each_connector_in_state(state, connector, connector_state, i) { |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 564 | if (connector_state->crtc != crtc_state->base.crtc) |
| 565 | continue; |
| 566 | |
| 567 | num_connectors++; |
| 568 | |
| 569 | encoder = to_intel_encoder(connector_state->best_encoder); |
| 570 | if (encoder->type == type) |
Ander Conselvan de Oliveira | d0737e1 | 2014-10-29 11:32:30 +0200 | [diff] [blame] | 571 | return true; |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | WARN_ON(num_connectors == 0); |
Ander Conselvan de Oliveira | d0737e1 | 2014-10-29 11:32:30 +0200 | [diff] [blame] | 575 | |
| 576 | return false; |
| 577 | } |
| 578 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 579 | /* |
| 580 | * Platform specific helpers to calculate the port PLL loopback- (clock.m), |
| 581 | * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast |
| 582 | * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic. |
| 583 | * The helpers' return value is the rate of the clock that is fed to the |
| 584 | * display engine's pipe which can be the above fast dot clock rate or a |
| 585 | * divided-down version of it. |
| 586 | */ |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 587 | /* m1 is reserved as 0 in Pineview, n is a ring counter */ |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 588 | static int pnv_calc_dpll_params(int refclk, struct dpll *clock) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 589 | { |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 590 | clock->m = clock->m2 + 2; |
| 591 | clock->p = clock->p1 * clock->p2; |
Ville Syrjälä | ed5ca77 | 2013-12-02 19:00:45 +0200 | [diff] [blame] | 592 | if (WARN_ON(clock->n == 0 || clock->p == 0)) |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 593 | return 0; |
Ville Syrjälä | fb03ac0 | 2013-10-14 14:50:30 +0300 | [diff] [blame] | 594 | clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n); |
| 595 | clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p); |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 596 | |
| 597 | return clock->dot; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 598 | } |
| 599 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 600 | static uint32_t i9xx_dpll_compute_m(struct dpll *dpll) |
| 601 | { |
| 602 | return 5 * (dpll->m1 + 2) + (dpll->m2 + 2); |
| 603 | } |
| 604 | |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 605 | static int i9xx_calc_dpll_params(int refclk, struct dpll *clock) |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 606 | { |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 607 | clock->m = i9xx_dpll_compute_m(clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 608 | clock->p = clock->p1 * clock->p2; |
Ville Syrjälä | ed5ca77 | 2013-12-02 19:00:45 +0200 | [diff] [blame] | 609 | if (WARN_ON(clock->n + 2 == 0 || clock->p == 0)) |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 610 | return 0; |
Ville Syrjälä | fb03ac0 | 2013-10-14 14:50:30 +0300 | [diff] [blame] | 611 | clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2); |
| 612 | clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p); |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 613 | |
| 614 | return clock->dot; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 615 | } |
| 616 | |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 617 | static int vlv_calc_dpll_params(int refclk, struct dpll *clock) |
Imre Deak | 589eca6 | 2015-06-22 23:35:50 +0300 | [diff] [blame] | 618 | { |
| 619 | clock->m = clock->m1 * clock->m2; |
| 620 | clock->p = clock->p1 * clock->p2; |
| 621 | if (WARN_ON(clock->n == 0 || clock->p == 0)) |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 622 | return 0; |
Imre Deak | 589eca6 | 2015-06-22 23:35:50 +0300 | [diff] [blame] | 623 | clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n); |
| 624 | clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p); |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 625 | |
| 626 | return clock->dot / 5; |
Imre Deak | 589eca6 | 2015-06-22 23:35:50 +0300 | [diff] [blame] | 627 | } |
| 628 | |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 629 | int chv_calc_dpll_params(int refclk, struct dpll *clock) |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 630 | { |
| 631 | clock->m = clock->m1 * clock->m2; |
| 632 | clock->p = clock->p1 * clock->p2; |
| 633 | if (WARN_ON(clock->n == 0 || clock->p == 0)) |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 634 | return 0; |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 635 | clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m, |
| 636 | clock->n << 22); |
| 637 | clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p); |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 638 | |
| 639 | return clock->dot / 5; |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 640 | } |
| 641 | |
Jesse Barnes | 7c04d1d | 2009-02-23 15:36:40 -0800 | [diff] [blame] | 642 | #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 643 | /** |
| 644 | * Returns whether the given set of divisors are valid for a given refclk with |
| 645 | * the given connectors. |
| 646 | */ |
| 647 | |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 648 | static bool intel_PLL_is_valid(struct drm_device *dev, |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 649 | const struct intel_limit *limit, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 650 | const struct dpll *clock) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 651 | { |
Ville Syrjälä | f01b796 | 2013-09-27 16:55:49 +0300 | [diff] [blame] | 652 | if (clock->n < limit->n.min || limit->n.max < clock->n) |
| 653 | INTELPllInvalid("n out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 654 | if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 655 | INTELPllInvalid("p1 out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 656 | if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 657 | INTELPllInvalid("m2 out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 658 | if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 659 | INTELPllInvalid("m1 out of range\n"); |
Ville Syrjälä | f01b796 | 2013-09-27 16:55:49 +0300 | [diff] [blame] | 660 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 661 | if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) && |
| 662 | !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) |
Ville Syrjälä | f01b796 | 2013-09-27 16:55:49 +0300 | [diff] [blame] | 663 | if (clock->m1 <= clock->m2) |
| 664 | INTELPllInvalid("m1 <= m2\n"); |
| 665 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 666 | if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) { |
Ville Syrjälä | f01b796 | 2013-09-27 16:55:49 +0300 | [diff] [blame] | 667 | if (clock->p < limit->p.min || limit->p.max < clock->p) |
| 668 | INTELPllInvalid("p out of range\n"); |
| 669 | if (clock->m < limit->m.min || limit->m.max < clock->m) |
| 670 | INTELPllInvalid("m out of range\n"); |
| 671 | } |
| 672 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 673 | if (clock->vco < limit->vco.min || limit->vco.max < clock->vco) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 674 | INTELPllInvalid("vco out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 675 | /* XXX: We may need to be checking "Dot clock" depending on the multiplier, |
| 676 | * connector, etc., rather than just a single range. |
| 677 | */ |
| 678 | if (clock->dot < limit->dot.min || limit->dot.max < clock->dot) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 679 | INTELPllInvalid("dot out of range\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 680 | |
| 681 | return true; |
| 682 | } |
| 683 | |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 684 | static int |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 685 | i9xx_select_p2_div(const struct intel_limit *limit, |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 686 | const struct intel_crtc_state *crtc_state, |
| 687 | int target) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 688 | { |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 689 | struct drm_device *dev = crtc_state->base.crtc->dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 690 | |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 691 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 692 | /* |
Daniel Vetter | a210b02 | 2012-11-26 17:22:08 +0100 | [diff] [blame] | 693 | * For LVDS just rely on its current settings for dual-channel. |
| 694 | * We haven't figured out how to reliably set up different |
| 695 | * single/dual channel state, if we even can. |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 696 | */ |
Daniel Vetter | 1974cad | 2012-11-26 17:22:09 +0100 | [diff] [blame] | 697 | if (intel_is_dual_link_lvds(dev)) |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 698 | return limit->p2.p2_fast; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 699 | else |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 700 | return limit->p2.p2_slow; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 701 | } else { |
| 702 | if (target < limit->p2.dot_limit) |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 703 | return limit->p2.p2_slow; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 704 | else |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 705 | return limit->p2.p2_fast; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 706 | } |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 707 | } |
| 708 | |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 709 | /* |
| 710 | * Returns a set of divisors for the desired target clock with the given |
| 711 | * refclk, or FALSE. The returned values represent the clock equation: |
| 712 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 713 | * |
| 714 | * Target and reference clocks are specified in kHz. |
| 715 | * |
| 716 | * If match_clock is provided, then best_clock P divider must match the P |
| 717 | * divider from @match_clock used for LVDS downclocking. |
| 718 | */ |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 719 | static bool |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 720 | i9xx_find_best_dpll(const struct intel_limit *limit, |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 721 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 722 | int target, int refclk, struct dpll *match_clock, |
| 723 | struct dpll *best_clock) |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 724 | { |
| 725 | struct drm_device *dev = crtc_state->base.crtc->dev; |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 726 | struct dpll clock; |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 727 | int err = target; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 728 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 729 | memset(best_clock, 0, sizeof(*best_clock)); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 730 | |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 731 | clock.p2 = i9xx_select_p2_div(limit, crtc_state, target); |
| 732 | |
Zhao Yakui | 4215866 | 2009-11-20 11:24:18 +0800 | [diff] [blame] | 733 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
| 734 | clock.m1++) { |
| 735 | for (clock.m2 = limit->m2.min; |
| 736 | clock.m2 <= limit->m2.max; clock.m2++) { |
Daniel Vetter | c0efc38 | 2013-06-03 20:56:24 +0200 | [diff] [blame] | 737 | if (clock.m2 >= clock.m1) |
Zhao Yakui | 4215866 | 2009-11-20 11:24:18 +0800 | [diff] [blame] | 738 | break; |
| 739 | for (clock.n = limit->n.min; |
| 740 | clock.n <= limit->n.max; clock.n++) { |
| 741 | for (clock.p1 = limit->p1.min; |
| 742 | clock.p1 <= limit->p1.max; clock.p1++) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 743 | int this_err; |
| 744 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 745 | i9xx_calc_dpll_params(refclk, &clock); |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 746 | if (!intel_PLL_is_valid(dev, limit, |
| 747 | &clock)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 748 | continue; |
Sean Paul | cec2f35 | 2012-01-10 15:09:36 -0800 | [diff] [blame] | 749 | if (match_clock && |
| 750 | clock.p != match_clock->p) |
| 751 | continue; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 752 | |
| 753 | this_err = abs(clock.dot - target); |
| 754 | if (this_err < err) { |
| 755 | *best_clock = clock; |
| 756 | err = this_err; |
| 757 | } |
| 758 | } |
| 759 | } |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | return (err != target); |
| 764 | } |
| 765 | |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 766 | /* |
| 767 | * Returns a set of divisors for the desired target clock with the given |
| 768 | * refclk, or FALSE. The returned values represent the clock equation: |
| 769 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 770 | * |
| 771 | * Target and reference clocks are specified in kHz. |
| 772 | * |
| 773 | * If match_clock is provided, then best_clock P divider must match the P |
| 774 | * divider from @match_clock used for LVDS downclocking. |
| 775 | */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 776 | static bool |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 777 | pnv_find_best_dpll(const struct intel_limit *limit, |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 778 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 779 | int target, int refclk, struct dpll *match_clock, |
| 780 | struct dpll *best_clock) |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame] | 781 | { |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 782 | struct drm_device *dev = crtc_state->base.crtc->dev; |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 783 | struct dpll clock; |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame] | 784 | int err = target; |
| 785 | |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame] | 786 | memset(best_clock, 0, sizeof(*best_clock)); |
| 787 | |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 788 | clock.p2 = i9xx_select_p2_div(limit, crtc_state, target); |
| 789 | |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame] | 790 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
| 791 | clock.m1++) { |
| 792 | for (clock.m2 = limit->m2.min; |
| 793 | clock.m2 <= limit->m2.max; clock.m2++) { |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame] | 794 | for (clock.n = limit->n.min; |
| 795 | clock.n <= limit->n.max; clock.n++) { |
| 796 | for (clock.p1 = limit->p1.min; |
| 797 | clock.p1 <= limit->p1.max; clock.p1++) { |
| 798 | int this_err; |
| 799 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 800 | pnv_calc_dpll_params(refclk, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 801 | if (!intel_PLL_is_valid(dev, limit, |
| 802 | &clock)) |
| 803 | continue; |
| 804 | if (match_clock && |
| 805 | clock.p != match_clock->p) |
| 806 | continue; |
| 807 | |
| 808 | this_err = abs(clock.dot - target); |
| 809 | if (this_err < err) { |
| 810 | *best_clock = clock; |
| 811 | err = this_err; |
| 812 | } |
| 813 | } |
| 814 | } |
| 815 | } |
| 816 | } |
| 817 | |
| 818 | return (err != target); |
| 819 | } |
| 820 | |
Ander Conselvan de Oliveira | 997c030 | 2016-03-21 18:00:12 +0200 | [diff] [blame] | 821 | /* |
| 822 | * Returns a set of divisors for the desired target clock with the given |
| 823 | * refclk, or FALSE. The returned values represent the clock equation: |
| 824 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 825 | * |
| 826 | * Target and reference clocks are specified in kHz. |
| 827 | * |
| 828 | * If match_clock is provided, then best_clock P divider must match the P |
| 829 | * divider from @match_clock used for LVDS downclocking. |
Ander Conselvan de Oliveira | 997c030 | 2016-03-21 18:00:12 +0200 | [diff] [blame] | 830 | */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 831 | static bool |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 832 | g4x_find_best_dpll(const struct intel_limit *limit, |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 833 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 834 | int target, int refclk, struct dpll *match_clock, |
| 835 | struct dpll *best_clock) |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 836 | { |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 837 | struct drm_device *dev = crtc_state->base.crtc->dev; |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 838 | struct dpll clock; |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 839 | int max_n; |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 840 | bool found = false; |
Adam Jackson | 6ba770d | 2010-07-02 16:43:30 -0400 | [diff] [blame] | 841 | /* approximately equals target * 0.00585 */ |
| 842 | int err_most = (target >> 8) + (target >> 9); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 843 | |
| 844 | memset(best_clock, 0, sizeof(*best_clock)); |
Ville Syrjälä | 3b1429d | 2015-06-18 13:47:22 +0300 | [diff] [blame] | 845 | |
| 846 | clock.p2 = i9xx_select_p2_div(limit, crtc_state, target); |
| 847 | |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 848 | max_n = limit->n.max; |
Gilles Espinasse | f77f13e | 2010-03-29 15:41:47 +0200 | [diff] [blame] | 849 | /* based on hardware requirement, prefer smaller n to precision */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 850 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
Gilles Espinasse | f77f13e | 2010-03-29 15:41:47 +0200 | [diff] [blame] | 851 | /* based on hardware requirement, prefere larger m1,m2 */ |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 852 | for (clock.m1 = limit->m1.max; |
| 853 | clock.m1 >= limit->m1.min; clock.m1--) { |
| 854 | for (clock.m2 = limit->m2.max; |
| 855 | clock.m2 >= limit->m2.min; clock.m2--) { |
| 856 | for (clock.p1 = limit->p1.max; |
| 857 | clock.p1 >= limit->p1.min; clock.p1--) { |
| 858 | int this_err; |
| 859 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 860 | i9xx_calc_dpll_params(refclk, &clock); |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 861 | if (!intel_PLL_is_valid(dev, limit, |
| 862 | &clock)) |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 863 | continue; |
Chris Wilson | 1b894b5 | 2010-12-14 20:04:54 +0000 | [diff] [blame] | 864 | |
| 865 | this_err = abs(clock.dot - target); |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 866 | if (this_err < err_most) { |
| 867 | *best_clock = clock; |
| 868 | err_most = this_err; |
| 869 | max_n = clock.n; |
| 870 | found = true; |
| 871 | } |
| 872 | } |
| 873 | } |
| 874 | } |
| 875 | } |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 876 | return found; |
| 877 | } |
Ma Ling | d490609 | 2009-03-18 20:13:27 +0800 | [diff] [blame] | 878 | |
Imre Deak | d5dd62b | 2015-03-17 11:40:03 +0200 | [diff] [blame] | 879 | /* |
| 880 | * Check if the calculated PLL configuration is more optimal compared to the |
| 881 | * best configuration and error found so far. Return the calculated error. |
| 882 | */ |
| 883 | static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 884 | const struct dpll *calculated_clock, |
| 885 | const struct dpll *best_clock, |
Imre Deak | d5dd62b | 2015-03-17 11:40:03 +0200 | [diff] [blame] | 886 | unsigned int best_error_ppm, |
| 887 | unsigned int *error_ppm) |
| 888 | { |
Imre Deak | 9ca3ba0 | 2015-03-17 11:40:05 +0200 | [diff] [blame] | 889 | /* |
| 890 | * For CHV ignore the error and consider only the P value. |
| 891 | * Prefer a bigger P value based on HW requirements. |
| 892 | */ |
| 893 | if (IS_CHERRYVIEW(dev)) { |
| 894 | *error_ppm = 0; |
| 895 | |
| 896 | return calculated_clock->p > best_clock->p; |
| 897 | } |
| 898 | |
Imre Deak | 24be4e4 | 2015-03-17 11:40:04 +0200 | [diff] [blame] | 899 | if (WARN_ON_ONCE(!target_freq)) |
| 900 | return false; |
| 901 | |
Imre Deak | d5dd62b | 2015-03-17 11:40:03 +0200 | [diff] [blame] | 902 | *error_ppm = div_u64(1000000ULL * |
| 903 | abs(target_freq - calculated_clock->dot), |
| 904 | target_freq); |
| 905 | /* |
| 906 | * Prefer a better P value over a better (smaller) error if the error |
| 907 | * is small. Ensure this preference for future configurations too by |
| 908 | * setting the error to 0. |
| 909 | */ |
| 910 | if (*error_ppm < 100 && calculated_clock->p > best_clock->p) { |
| 911 | *error_ppm = 0; |
| 912 | |
| 913 | return true; |
| 914 | } |
| 915 | |
| 916 | return *error_ppm + 10 < best_error_ppm; |
| 917 | } |
| 918 | |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 919 | /* |
| 920 | * Returns a set of divisors for the desired target clock with the given |
| 921 | * refclk, or FALSE. The returned values represent the clock equation: |
| 922 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 923 | */ |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 924 | static bool |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 925 | vlv_find_best_dpll(const struct intel_limit *limit, |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 926 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 927 | int target, int refclk, struct dpll *match_clock, |
| 928 | struct dpll *best_clock) |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 929 | { |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 930 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc); |
Ander Conselvan de Oliveira | a919ff1 | 2014-10-20 13:46:43 +0300 | [diff] [blame] | 931 | struct drm_device *dev = crtc->base.dev; |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 932 | struct dpll clock; |
Ville Syrjälä | 69e4f900 | 2013-09-24 21:26:20 +0300 | [diff] [blame] | 933 | unsigned int bestppm = 1000000; |
Ville Syrjälä | 27e639b | 2013-09-24 21:26:24 +0300 | [diff] [blame] | 934 | /* min update 19.2 MHz */ |
| 935 | int max_n = min(limit->n.max, refclk / 19200); |
Ville Syrjälä | 49e497e | 2013-09-24 21:26:31 +0300 | [diff] [blame] | 936 | bool found = false; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 937 | |
Ville Syrjälä | 6b4bf1c | 2013-09-27 16:54:19 +0300 | [diff] [blame] | 938 | target *= 5; /* fast clock */ |
| 939 | |
| 940 | memset(best_clock, 0, sizeof(*best_clock)); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 941 | |
| 942 | /* based on hardware requirement, prefer smaller n to precision */ |
Ville Syrjälä | 27e639b | 2013-09-24 21:26:24 +0300 | [diff] [blame] | 943 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
Ville Syrjälä | 811bbf0 | 2013-09-24 21:26:25 +0300 | [diff] [blame] | 944 | for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { |
Ville Syrjälä | 889059d | 2013-09-24 21:26:27 +0300 | [diff] [blame] | 945 | for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow; |
Ville Syrjälä | c1a9ae4 | 2013-09-24 21:26:23 +0300 | [diff] [blame] | 946 | clock.p2 -= clock.p2 > 10 ? 2 : 1) { |
Ville Syrjälä | 6b4bf1c | 2013-09-27 16:54:19 +0300 | [diff] [blame] | 947 | clock.p = clock.p1 * clock.p2; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 948 | /* based on hardware requirement, prefer bigger m1,m2 values */ |
Ville Syrjälä | 6b4bf1c | 2013-09-27 16:54:19 +0300 | [diff] [blame] | 949 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) { |
Imre Deak | d5dd62b | 2015-03-17 11:40:03 +0200 | [diff] [blame] | 950 | unsigned int ppm; |
Ville Syrjälä | 69e4f900 | 2013-09-24 21:26:20 +0300 | [diff] [blame] | 951 | |
Ville Syrjälä | 6b4bf1c | 2013-09-27 16:54:19 +0300 | [diff] [blame] | 952 | clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n, |
| 953 | refclk * clock.m1); |
Ville Syrjälä | 43b0ac5 | 2013-09-24 21:26:18 +0300 | [diff] [blame] | 954 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 955 | vlv_calc_dpll_params(refclk, &clock); |
Ville Syrjälä | 6b4bf1c | 2013-09-27 16:54:19 +0300 | [diff] [blame] | 956 | |
Ville Syrjälä | f01b796 | 2013-09-27 16:55:49 +0300 | [diff] [blame] | 957 | if (!intel_PLL_is_valid(dev, limit, |
| 958 | &clock)) |
Ville Syrjälä | 43b0ac5 | 2013-09-24 21:26:18 +0300 | [diff] [blame] | 959 | continue; |
| 960 | |
Imre Deak | d5dd62b | 2015-03-17 11:40:03 +0200 | [diff] [blame] | 961 | if (!vlv_PLL_is_optimal(dev, target, |
| 962 | &clock, |
| 963 | best_clock, |
| 964 | bestppm, &ppm)) |
| 965 | continue; |
Ville Syrjälä | 6b4bf1c | 2013-09-27 16:54:19 +0300 | [diff] [blame] | 966 | |
Imre Deak | d5dd62b | 2015-03-17 11:40:03 +0200 | [diff] [blame] | 967 | *best_clock = clock; |
| 968 | bestppm = ppm; |
| 969 | found = true; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 970 | } |
| 971 | } |
| 972 | } |
| 973 | } |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 974 | |
Ville Syrjälä | 49e497e | 2013-09-24 21:26:31 +0300 | [diff] [blame] | 975 | return found; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 976 | } |
Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 977 | |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 978 | /* |
| 979 | * Returns a set of divisors for the desired target clock with the given |
| 980 | * refclk, or FALSE. The returned values represent the clock equation: |
| 981 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. |
| 982 | */ |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 983 | static bool |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 984 | chv_find_best_dpll(const struct intel_limit *limit, |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 985 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 986 | int target, int refclk, struct dpll *match_clock, |
| 987 | struct dpll *best_clock) |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 988 | { |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 989 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc); |
Ander Conselvan de Oliveira | a919ff1 | 2014-10-20 13:46:43 +0300 | [diff] [blame] | 990 | struct drm_device *dev = crtc->base.dev; |
Imre Deak | 9ca3ba0 | 2015-03-17 11:40:05 +0200 | [diff] [blame] | 991 | unsigned int best_error_ppm; |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 992 | struct dpll clock; |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 993 | uint64_t m2; |
| 994 | int found = false; |
| 995 | |
| 996 | memset(best_clock, 0, sizeof(*best_clock)); |
Imre Deak | 9ca3ba0 | 2015-03-17 11:40:05 +0200 | [diff] [blame] | 997 | best_error_ppm = 1000000; |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 998 | |
| 999 | /* |
| 1000 | * Based on hardware doc, the n always set to 1, and m1 always |
| 1001 | * set to 2. If requires to support 200Mhz refclk, we need to |
| 1002 | * revisit this because n may not 1 anymore. |
| 1003 | */ |
| 1004 | clock.n = 1, clock.m1 = 2; |
| 1005 | target *= 5; /* fast clock */ |
| 1006 | |
| 1007 | for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { |
| 1008 | for (clock.p2 = limit->p2.p2_fast; |
| 1009 | clock.p2 >= limit->p2.p2_slow; |
| 1010 | clock.p2 -= clock.p2 > 10 ? 2 : 1) { |
Imre Deak | 9ca3ba0 | 2015-03-17 11:40:05 +0200 | [diff] [blame] | 1011 | unsigned int error_ppm; |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 1012 | |
| 1013 | clock.p = clock.p1 * clock.p2; |
| 1014 | |
| 1015 | m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p * |
| 1016 | clock.n) << 22, refclk * clock.m1); |
| 1017 | |
| 1018 | if (m2 > INT_MAX/clock.m1) |
| 1019 | continue; |
| 1020 | |
| 1021 | clock.m2 = m2; |
| 1022 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 1023 | chv_calc_dpll_params(refclk, &clock); |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 1024 | |
| 1025 | if (!intel_PLL_is_valid(dev, limit, &clock)) |
| 1026 | continue; |
| 1027 | |
Imre Deak | 9ca3ba0 | 2015-03-17 11:40:05 +0200 | [diff] [blame] | 1028 | if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock, |
| 1029 | best_error_ppm, &error_ppm)) |
| 1030 | continue; |
| 1031 | |
| 1032 | *best_clock = clock; |
| 1033 | best_error_ppm = error_ppm; |
| 1034 | found = true; |
Chon Ming Lee | ef9348c | 2014-04-09 13:28:18 +0300 | [diff] [blame] | 1035 | } |
| 1036 | } |
| 1037 | |
| 1038 | return found; |
| 1039 | } |
| 1040 | |
Imre Deak | 5ab7b0b | 2015-03-06 03:29:25 +0200 | [diff] [blame] | 1041 | bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 1042 | struct dpll *best_clock) |
Imre Deak | 5ab7b0b | 2015-03-06 03:29:25 +0200 | [diff] [blame] | 1043 | { |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 1044 | int refclk = 100000; |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 1045 | const struct intel_limit *limit = &intel_limits_bxt; |
Imre Deak | 5ab7b0b | 2015-03-06 03:29:25 +0200 | [diff] [blame] | 1046 | |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 1047 | return chv_find_best_dpll(limit, crtc_state, |
Imre Deak | 5ab7b0b | 2015-03-06 03:29:25 +0200 | [diff] [blame] | 1048 | target_clock, refclk, NULL, best_clock); |
| 1049 | } |
| 1050 | |
Ville Syrjälä | 20ddf66 | 2013-09-04 18:25:25 +0300 | [diff] [blame] | 1051 | bool intel_crtc_active(struct drm_crtc *crtc) |
| 1052 | { |
| 1053 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1054 | |
| 1055 | /* Be paranoid as we can arrive here with only partial |
| 1056 | * state retrieved from the hardware during setup. |
| 1057 | * |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1058 | * We can ditch the adjusted_mode.crtc_clock check as soon |
Ville Syrjälä | 20ddf66 | 2013-09-04 18:25:25 +0300 | [diff] [blame] | 1059 | * as Haswell has gained clock readout/fastboot support. |
| 1060 | * |
Dave Airlie | 66e514c | 2014-04-03 07:51:54 +1000 | [diff] [blame] | 1061 | * We can ditch the crtc->primary->fb check as soon as we can |
Ville Syrjälä | 20ddf66 | 2013-09-04 18:25:25 +0300 | [diff] [blame] | 1062 | * properly reconstruct framebuffers. |
Matt Roper | c3d1f43 | 2015-03-09 10:19:23 -0700 | [diff] [blame] | 1063 | * |
| 1064 | * FIXME: The intel_crtc->active here should be switched to |
| 1065 | * crtc->state->active once we have proper CRTC states wired up |
| 1066 | * for atomic. |
Ville Syrjälä | 20ddf66 | 2013-09-04 18:25:25 +0300 | [diff] [blame] | 1067 | */ |
Matt Roper | c3d1f43 | 2015-03-09 10:19:23 -0700 | [diff] [blame] | 1068 | return intel_crtc->active && crtc->primary->state->fb && |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1069 | intel_crtc->config->base.adjusted_mode.crtc_clock; |
Ville Syrjälä | 20ddf66 | 2013-09-04 18:25:25 +0300 | [diff] [blame] | 1070 | } |
| 1071 | |
Paulo Zanoni | a5c961d | 2012-10-24 15:59:34 -0200 | [diff] [blame] | 1072 | enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv, |
| 1073 | enum pipe pipe) |
| 1074 | { |
| 1075 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 1076 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1077 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1078 | return intel_crtc->config->cpu_transcoder; |
Paulo Zanoni | a5c961d | 2012-10-24 15:59:34 -0200 | [diff] [blame] | 1079 | } |
| 1080 | |
Ville Syrjälä | fbf49ea | 2013-10-11 14:21:31 +0300 | [diff] [blame] | 1081 | static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe) |
| 1082 | { |
| 1083 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1084 | i915_reg_t reg = PIPEDSL(pipe); |
Ville Syrjälä | fbf49ea | 2013-10-11 14:21:31 +0300 | [diff] [blame] | 1085 | u32 line1, line2; |
| 1086 | u32 line_mask; |
| 1087 | |
| 1088 | if (IS_GEN2(dev)) |
| 1089 | line_mask = DSL_LINEMASK_GEN2; |
| 1090 | else |
| 1091 | line_mask = DSL_LINEMASK_GEN3; |
| 1092 | |
| 1093 | line1 = I915_READ(reg) & line_mask; |
Daniel Vetter | 6adfb1e | 2015-07-07 09:10:40 +0200 | [diff] [blame] | 1094 | msleep(5); |
Ville Syrjälä | fbf49ea | 2013-10-11 14:21:31 +0300 | [diff] [blame] | 1095 | line2 = I915_READ(reg) & line_mask; |
| 1096 | |
| 1097 | return line1 == line2; |
| 1098 | } |
| 1099 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 1100 | /* |
| 1101 | * intel_wait_for_pipe_off - wait for pipe to turn off |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 1102 | * @crtc: crtc whose pipe to wait for |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 1103 | * |
| 1104 | * After disabling a pipe, we can't wait for vblank in the usual way, |
| 1105 | * spinning on the vblank interrupt status bit, since we won't actually |
| 1106 | * see an interrupt when the pipe is disabled. |
| 1107 | * |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 1108 | * On Gen4 and above: |
| 1109 | * wait for the pipe register state bit to turn off |
| 1110 | * |
| 1111 | * Otherwise: |
| 1112 | * wait for the display line value to settle (it usually |
| 1113 | * ends up stopping at the start of the next frame). |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 1114 | * |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 1115 | */ |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 1116 | static void intel_wait_for_pipe_off(struct intel_crtc *crtc) |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 1117 | { |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 1118 | struct drm_device *dev = crtc->base.dev; |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 1119 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1120 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 1121 | enum pipe pipe = crtc->pipe; |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 1122 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 1123 | if (INTEL_INFO(dev)->gen >= 4) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1124 | i915_reg_t reg = PIPECONF(cpu_transcoder); |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 1125 | |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 1126 | /* Wait for the Pipe State to go off */ |
Chris Wilson | 58e10eb | 2010-10-03 10:56:11 +0100 | [diff] [blame] | 1127 | if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0, |
| 1128 | 100)) |
Daniel Vetter | 284637d | 2012-07-09 09:51:57 +0200 | [diff] [blame] | 1129 | WARN(1, "pipe_off wait timed out\n"); |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 1130 | } else { |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 1131 | /* Wait for the display line to settle */ |
Ville Syrjälä | fbf49ea | 2013-10-11 14:21:31 +0300 | [diff] [blame] | 1132 | if (wait_for(pipe_dsl_stopped(dev, pipe), 100)) |
Daniel Vetter | 284637d | 2012-07-09 09:51:57 +0200 | [diff] [blame] | 1133 | WARN(1, "pipe_off wait timed out\n"); |
Keith Packard | ab7ad7f | 2010-10-03 00:33:06 -0700 | [diff] [blame] | 1134 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1135 | } |
| 1136 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1137 | /* Only for pre-ILK configs */ |
Daniel Vetter | 55607e8 | 2013-06-16 21:42:39 +0200 | [diff] [blame] | 1138 | void assert_pll(struct drm_i915_private *dev_priv, |
| 1139 | enum pipe pipe, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1140 | { |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1141 | u32 val; |
| 1142 | bool cur_state; |
| 1143 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1144 | val = I915_READ(DPLL(pipe)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1145 | cur_state = !!(val & DPLL_VCO_ENABLE); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1146 | I915_STATE_WARN(cur_state != state, |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1147 | "PLL state assertion failure (expected %s, current %s)\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 1148 | onoff(state), onoff(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1149 | } |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1150 | |
Jani Nikula | 23538ef | 2013-08-27 15:12:22 +0300 | [diff] [blame] | 1151 | /* XXX: the dsi pll is shared between MIPI DSI ports */ |
Lionel Landwerlin | 8563b1e | 2016-03-16 10:57:14 +0000 | [diff] [blame] | 1152 | void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state) |
Jani Nikula | 23538ef | 2013-08-27 15:12:22 +0300 | [diff] [blame] | 1153 | { |
| 1154 | u32 val; |
| 1155 | bool cur_state; |
| 1156 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 1157 | mutex_lock(&dev_priv->sb_lock); |
Jani Nikula | 23538ef | 2013-08-27 15:12:22 +0300 | [diff] [blame] | 1158 | val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL); |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 1159 | mutex_unlock(&dev_priv->sb_lock); |
Jani Nikula | 23538ef | 2013-08-27 15:12:22 +0300 | [diff] [blame] | 1160 | |
| 1161 | cur_state = val & DSI_PLL_VCO_EN; |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1162 | I915_STATE_WARN(cur_state != state, |
Jani Nikula | 23538ef | 2013-08-27 15:12:22 +0300 | [diff] [blame] | 1163 | "DSI PLL state assertion failure (expected %s, current %s)\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 1164 | onoff(state), onoff(cur_state)); |
Jani Nikula | 23538ef | 2013-08-27 15:12:22 +0300 | [diff] [blame] | 1165 | } |
Jani Nikula | 23538ef | 2013-08-27 15:12:22 +0300 | [diff] [blame] | 1166 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1167 | static void assert_fdi_tx(struct drm_i915_private *dev_priv, |
| 1168 | enum pipe pipe, bool state) |
| 1169 | { |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1170 | bool cur_state; |
Paulo Zanoni | ad80a81 | 2012-10-24 16:06:19 -0200 | [diff] [blame] | 1171 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
| 1172 | pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1173 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1174 | if (HAS_DDI(dev_priv)) { |
Paulo Zanoni | affa935 | 2012-11-23 15:30:39 -0200 | [diff] [blame] | 1175 | /* DDI does not have a specific FDI_TX register */ |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1176 | u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder)); |
Paulo Zanoni | ad80a81 | 2012-10-24 16:06:19 -0200 | [diff] [blame] | 1177 | cur_state = !!(val & TRANS_DDI_FUNC_ENABLE); |
Eugeni Dodonov | bf507ef | 2012-05-09 15:37:18 -0300 | [diff] [blame] | 1178 | } else { |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1179 | u32 val = I915_READ(FDI_TX_CTL(pipe)); |
Eugeni Dodonov | bf507ef | 2012-05-09 15:37:18 -0300 | [diff] [blame] | 1180 | cur_state = !!(val & FDI_TX_ENABLE); |
| 1181 | } |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1182 | I915_STATE_WARN(cur_state != state, |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1183 | "FDI TX state assertion failure (expected %s, current %s)\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 1184 | onoff(state), onoff(cur_state)); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1185 | } |
| 1186 | #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true) |
| 1187 | #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false) |
| 1188 | |
| 1189 | static void assert_fdi_rx(struct drm_i915_private *dev_priv, |
| 1190 | enum pipe pipe, bool state) |
| 1191 | { |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1192 | u32 val; |
| 1193 | bool cur_state; |
| 1194 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1195 | val = I915_READ(FDI_RX_CTL(pipe)); |
Paulo Zanoni | d63fa0d | 2012-11-20 13:27:35 -0200 | [diff] [blame] | 1196 | cur_state = !!(val & FDI_RX_ENABLE); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1197 | I915_STATE_WARN(cur_state != state, |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1198 | "FDI RX state assertion failure (expected %s, current %s)\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 1199 | onoff(state), onoff(cur_state)); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1200 | } |
| 1201 | #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true) |
| 1202 | #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false) |
| 1203 | |
| 1204 | static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv, |
| 1205 | enum pipe pipe) |
| 1206 | { |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1207 | u32 val; |
| 1208 | |
| 1209 | /* ILK FDI PLL is always enabled */ |
Tvrtko Ursulin | 7e22dbb | 2016-05-10 10:57:06 +0100 | [diff] [blame] | 1210 | if (IS_GEN5(dev_priv)) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1211 | return; |
| 1212 | |
Eugeni Dodonov | bf507ef | 2012-05-09 15:37:18 -0300 | [diff] [blame] | 1213 | /* On Haswell, DDI ports are responsible for the FDI PLL setup */ |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1214 | if (HAS_DDI(dev_priv)) |
Eugeni Dodonov | bf507ef | 2012-05-09 15:37:18 -0300 | [diff] [blame] | 1215 | return; |
| 1216 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1217 | val = I915_READ(FDI_TX_CTL(pipe)); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1218 | I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n"); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1219 | } |
| 1220 | |
Daniel Vetter | 55607e8 | 2013-06-16 21:42:39 +0200 | [diff] [blame] | 1221 | void assert_fdi_rx_pll(struct drm_i915_private *dev_priv, |
| 1222 | enum pipe pipe, bool state) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1223 | { |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1224 | u32 val; |
Daniel Vetter | 55607e8 | 2013-06-16 21:42:39 +0200 | [diff] [blame] | 1225 | bool cur_state; |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1226 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1227 | val = I915_READ(FDI_RX_CTL(pipe)); |
Daniel Vetter | 55607e8 | 2013-06-16 21:42:39 +0200 | [diff] [blame] | 1228 | cur_state = !!(val & FDI_RX_PLL_ENABLE); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1229 | I915_STATE_WARN(cur_state != state, |
Daniel Vetter | 55607e8 | 2013-06-16 21:42:39 +0200 | [diff] [blame] | 1230 | "FDI RX PLL assertion failure (expected %s, current %s)\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 1231 | onoff(state), onoff(cur_state)); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1232 | } |
| 1233 | |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 1234 | void assert_panel_unlocked(struct drm_i915_private *dev_priv, |
| 1235 | enum pipe pipe) |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1236 | { |
Jani Nikula | bedd4db | 2014-08-22 15:04:13 +0300 | [diff] [blame] | 1237 | struct drm_device *dev = dev_priv->dev; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1238 | i915_reg_t pp_reg; |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1239 | u32 val; |
| 1240 | enum pipe panel_pipe = PIPE_A; |
Thomas Jarosch | 0de3b48 | 2011-08-25 15:37:45 +0200 | [diff] [blame] | 1241 | bool locked = true; |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1242 | |
Jani Nikula | bedd4db | 2014-08-22 15:04:13 +0300 | [diff] [blame] | 1243 | if (WARN_ON(HAS_DDI(dev))) |
| 1244 | return; |
| 1245 | |
| 1246 | if (HAS_PCH_SPLIT(dev)) { |
| 1247 | u32 port_sel; |
| 1248 | |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1249 | pp_reg = PCH_PP_CONTROL; |
Jani Nikula | bedd4db | 2014-08-22 15:04:13 +0300 | [diff] [blame] | 1250 | port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK; |
| 1251 | |
| 1252 | if (port_sel == PANEL_PORT_SELECT_LVDS && |
| 1253 | I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT) |
| 1254 | panel_pipe = PIPE_B; |
| 1255 | /* XXX: else fix for eDP */ |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1256 | } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Jani Nikula | bedd4db | 2014-08-22 15:04:13 +0300 | [diff] [blame] | 1257 | /* presumably write lock depends on pipe, not port select */ |
| 1258 | pp_reg = VLV_PIPE_PP_CONTROL(pipe); |
| 1259 | panel_pipe = pipe; |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1260 | } else { |
| 1261 | pp_reg = PP_CONTROL; |
Jani Nikula | bedd4db | 2014-08-22 15:04:13 +0300 | [diff] [blame] | 1262 | if (I915_READ(LVDS) & LVDS_PIPEB_SELECT) |
| 1263 | panel_pipe = PIPE_B; |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | val = I915_READ(pp_reg); |
| 1267 | if (!(val & PANEL_POWER_ON) || |
Jani Nikula | ec49ba2 | 2014-08-21 15:06:25 +0300 | [diff] [blame] | 1268 | ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS)) |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1269 | locked = false; |
| 1270 | |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1271 | I915_STATE_WARN(panel_pipe == pipe && locked, |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1272 | "panel assertion failure, pipe %c regs locked\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1273 | pipe_name(pipe)); |
Jesse Barnes | ea0760c | 2011-01-04 15:09:32 -0800 | [diff] [blame] | 1274 | } |
| 1275 | |
Jani Nikula | 93ce0ba | 2013-09-13 11:03:08 +0300 | [diff] [blame] | 1276 | static void assert_cursor(struct drm_i915_private *dev_priv, |
| 1277 | enum pipe pipe, bool state) |
| 1278 | { |
| 1279 | struct drm_device *dev = dev_priv->dev; |
| 1280 | bool cur_state; |
| 1281 | |
Paulo Zanoni | d9d8208 | 2014-02-27 16:30:56 -0300 | [diff] [blame] | 1282 | if (IS_845G(dev) || IS_I865G(dev)) |
Ville Syrjälä | 0b87c24 | 2015-09-22 19:47:51 +0300 | [diff] [blame] | 1283 | cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE; |
Paulo Zanoni | d9d8208 | 2014-02-27 16:30:56 -0300 | [diff] [blame] | 1284 | else |
Ville Syrjälä | 5efb3e2 | 2014-04-09 13:28:53 +0300 | [diff] [blame] | 1285 | cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE; |
Jani Nikula | 93ce0ba | 2013-09-13 11:03:08 +0300 | [diff] [blame] | 1286 | |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1287 | I915_STATE_WARN(cur_state != state, |
Jani Nikula | 93ce0ba | 2013-09-13 11:03:08 +0300 | [diff] [blame] | 1288 | "cursor on pipe %c assertion failure (expected %s, current %s)\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 1289 | pipe_name(pipe), onoff(state), onoff(cur_state)); |
Jani Nikula | 93ce0ba | 2013-09-13 11:03:08 +0300 | [diff] [blame] | 1290 | } |
| 1291 | #define assert_cursor_enabled(d, p) assert_cursor(d, p, true) |
| 1292 | #define assert_cursor_disabled(d, p) assert_cursor(d, p, false) |
| 1293 | |
Jesse Barnes | b840d907f | 2011-12-13 13:19:38 -0800 | [diff] [blame] | 1294 | void assert_pipe(struct drm_i915_private *dev_priv, |
| 1295 | enum pipe pipe, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1296 | { |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1297 | bool cur_state; |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 1298 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
| 1299 | pipe); |
Imre Deak | 4feed0e | 2016-02-12 18:55:14 +0200 | [diff] [blame] | 1300 | enum intel_display_power_domain power_domain; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1301 | |
Ville Syrjälä | b6b5d04 | 2014-08-15 01:22:07 +0300 | [diff] [blame] | 1302 | /* if we need the pipe quirk it must be always on */ |
| 1303 | if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || |
| 1304 | (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) |
Daniel Vetter | 8e63678 | 2012-01-22 01:36:48 +0100 | [diff] [blame] | 1305 | state = true; |
| 1306 | |
Imre Deak | 4feed0e | 2016-02-12 18:55:14 +0200 | [diff] [blame] | 1307 | power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder); |
| 1308 | if (intel_display_power_get_if_enabled(dev_priv, power_domain)) { |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1309 | u32 val = I915_READ(PIPECONF(cpu_transcoder)); |
Paulo Zanoni | 6931016 | 2013-01-29 16:35:19 -0200 | [diff] [blame] | 1310 | cur_state = !!(val & PIPECONF_ENABLE); |
Imre Deak | 4feed0e | 2016-02-12 18:55:14 +0200 | [diff] [blame] | 1311 | |
| 1312 | intel_display_power_put(dev_priv, power_domain); |
| 1313 | } else { |
| 1314 | cur_state = false; |
Paulo Zanoni | 6931016 | 2013-01-29 16:35:19 -0200 | [diff] [blame] | 1315 | } |
| 1316 | |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1317 | I915_STATE_WARN(cur_state != state, |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1318 | "pipe %c assertion failure (expected %s, current %s)\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 1319 | pipe_name(pipe), onoff(state), onoff(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1320 | } |
| 1321 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1322 | static void assert_plane(struct drm_i915_private *dev_priv, |
| 1323 | enum plane plane, bool state) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1324 | { |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1325 | u32 val; |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1326 | bool cur_state; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1327 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1328 | val = I915_READ(DSPCNTR(plane)); |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1329 | cur_state = !!(val & DISPLAY_PLANE_ENABLE); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1330 | I915_STATE_WARN(cur_state != state, |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1331 | "plane %c assertion failure (expected %s, current %s)\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 1332 | plane_name(plane), onoff(state), onoff(cur_state)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1333 | } |
| 1334 | |
Chris Wilson | 931872f | 2012-01-16 23:01:13 +0000 | [diff] [blame] | 1335 | #define assert_plane_enabled(d, p) assert_plane(d, p, true) |
| 1336 | #define assert_plane_disabled(d, p) assert_plane(d, p, false) |
| 1337 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1338 | static void assert_planes_disabled(struct drm_i915_private *dev_priv, |
| 1339 | enum pipe pipe) |
| 1340 | { |
Ville Syrjälä | 653e102 | 2013-06-04 13:49:05 +0300 | [diff] [blame] | 1341 | struct drm_device *dev = dev_priv->dev; |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1342 | int i; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1343 | |
Ville Syrjälä | 653e102 | 2013-06-04 13:49:05 +0300 | [diff] [blame] | 1344 | /* Primary planes are fixed to pipes on gen4+ */ |
| 1345 | if (INTEL_INFO(dev)->gen >= 4) { |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1346 | u32 val = I915_READ(DSPCNTR(pipe)); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1347 | I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE, |
Adam Jackson | 28c05794 | 2011-10-07 14:38:42 -0400 | [diff] [blame] | 1348 | "plane %c assertion failure, should be disabled but not\n", |
| 1349 | plane_name(pipe)); |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1350 | return; |
Adam Jackson | 28c05794 | 2011-10-07 14:38:42 -0400 | [diff] [blame] | 1351 | } |
Jesse Barnes | 19ec135 | 2011-02-02 12:28:02 -0800 | [diff] [blame] | 1352 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1353 | /* Need to check both planes against the pipe */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1354 | for_each_pipe(dev_priv, i) { |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1355 | u32 val = I915_READ(DSPCNTR(i)); |
| 1356 | enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >> |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1357 | DISPPLANE_SEL_PIPE_SHIFT; |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1358 | I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe, |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1359 | "plane %c assertion failure, should be off on pipe %c but is still active\n", |
| 1360 | plane_name(i), pipe_name(pipe)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1361 | } |
| 1362 | } |
| 1363 | |
Jesse Barnes | 19332d7 | 2013-03-28 09:55:38 -0700 | [diff] [blame] | 1364 | static void assert_sprites_disabled(struct drm_i915_private *dev_priv, |
| 1365 | enum pipe pipe) |
| 1366 | { |
Ville Syrjälä | 20674ee | 2013-06-04 13:49:06 +0300 | [diff] [blame] | 1367 | struct drm_device *dev = dev_priv->dev; |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1368 | int sprite; |
Jesse Barnes | 19332d7 | 2013-03-28 09:55:38 -0700 | [diff] [blame] | 1369 | |
Damien Lespiau | 7feb8b8 | 2014-03-12 21:05:38 +0000 | [diff] [blame] | 1370 | if (INTEL_INFO(dev)->gen >= 9) { |
Damien Lespiau | 3bdcfc0 | 2015-02-28 14:54:09 +0000 | [diff] [blame] | 1371 | for_each_sprite(dev_priv, pipe, sprite) { |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1372 | u32 val = I915_READ(PLANE_CTL(pipe, sprite)); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1373 | I915_STATE_WARN(val & PLANE_CTL_ENABLE, |
Damien Lespiau | 7feb8b8 | 2014-03-12 21:05:38 +0000 | [diff] [blame] | 1374 | "plane %d assertion failure, should be off on pipe %c but is still active\n", |
| 1375 | sprite, pipe_name(pipe)); |
| 1376 | } |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1377 | } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Damien Lespiau | 3bdcfc0 | 2015-02-28 14:54:09 +0000 | [diff] [blame] | 1378 | for_each_sprite(dev_priv, pipe, sprite) { |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1379 | u32 val = I915_READ(SPCNTR(pipe, sprite)); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1380 | I915_STATE_WARN(val & SP_ENABLE, |
Ville Syrjälä | 20674ee | 2013-06-04 13:49:06 +0300 | [diff] [blame] | 1381 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", |
Damien Lespiau | 1fe4778 | 2014-03-03 17:31:47 +0000 | [diff] [blame] | 1382 | sprite_name(pipe, sprite), pipe_name(pipe)); |
Ville Syrjälä | 20674ee | 2013-06-04 13:49:06 +0300 | [diff] [blame] | 1383 | } |
| 1384 | } else if (INTEL_INFO(dev)->gen >= 7) { |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1385 | u32 val = I915_READ(SPRCTL(pipe)); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1386 | I915_STATE_WARN(val & SPRITE_ENABLE, |
Ville Syrjälä | 06da8da | 2013-04-17 17:48:51 +0300 | [diff] [blame] | 1387 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", |
Ville Syrjälä | 20674ee | 2013-06-04 13:49:06 +0300 | [diff] [blame] | 1388 | plane_name(pipe), pipe_name(pipe)); |
| 1389 | } else if (INTEL_INFO(dev)->gen >= 5) { |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1390 | u32 val = I915_READ(DVSCNTR(pipe)); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1391 | I915_STATE_WARN(val & DVS_ENABLE, |
Ville Syrjälä | 20674ee | 2013-06-04 13:49:06 +0300 | [diff] [blame] | 1392 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", |
| 1393 | plane_name(pipe), pipe_name(pipe)); |
Jesse Barnes | 19332d7 | 2013-03-28 09:55:38 -0700 | [diff] [blame] | 1394 | } |
| 1395 | } |
| 1396 | |
Ville Syrjälä | 08c71e5 | 2014-08-06 14:49:45 +0300 | [diff] [blame] | 1397 | static void assert_vblank_disabled(struct drm_crtc *crtc) |
| 1398 | { |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1399 | if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0)) |
Ville Syrjälä | 08c71e5 | 2014-08-06 14:49:45 +0300 | [diff] [blame] | 1400 | drm_crtc_vblank_put(crtc); |
| 1401 | } |
| 1402 | |
Ander Conselvan de Oliveira | 7abd4b3 | 2016-03-08 17:46:15 +0200 | [diff] [blame] | 1403 | void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv, |
| 1404 | enum pipe pipe) |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1405 | { |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1406 | u32 val; |
| 1407 | bool enabled; |
| 1408 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1409 | val = I915_READ(PCH_TRANSCONF(pipe)); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1410 | enabled = !!(val & TRANS_ENABLE); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1411 | I915_STATE_WARN(enabled, |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1412 | "transcoder assertion failed, should be off on pipe %c but is still active\n", |
| 1413 | pipe_name(pipe)); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1414 | } |
| 1415 | |
Keith Packard | 4e63438 | 2011-08-06 10:39:45 -0700 | [diff] [blame] | 1416 | static bool dp_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1417 | enum pipe pipe, u32 port_sel, u32 val) |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1418 | { |
| 1419 | if ((val & DP_PORT_EN) == 0) |
| 1420 | return false; |
| 1421 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1422 | if (HAS_PCH_CPT(dev_priv)) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1423 | u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe)); |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1424 | if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel) |
| 1425 | return false; |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1426 | } else if (IS_CHERRYVIEW(dev_priv)) { |
Chon Ming Lee | 44f37d1 | 2014-04-09 13:28:21 +0300 | [diff] [blame] | 1427 | if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe)) |
| 1428 | return false; |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1429 | } else { |
| 1430 | if ((val & DP_PIPE_MASK) != (pipe << 30)) |
| 1431 | return false; |
| 1432 | } |
| 1433 | return true; |
| 1434 | } |
| 1435 | |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1436 | static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1437 | enum pipe pipe, u32 val) |
| 1438 | { |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 1439 | if ((val & SDVO_ENABLE) == 0) |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1440 | return false; |
| 1441 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1442 | if (HAS_PCH_CPT(dev_priv)) { |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 1443 | if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe)) |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1444 | return false; |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1445 | } else if (IS_CHERRYVIEW(dev_priv)) { |
Chon Ming Lee | 44f37d1 | 2014-04-09 13:28:21 +0300 | [diff] [blame] | 1446 | if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe)) |
| 1447 | return false; |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1448 | } else { |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 1449 | if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe)) |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1450 | return false; |
| 1451 | } |
| 1452 | return true; |
| 1453 | } |
| 1454 | |
| 1455 | static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1456 | enum pipe pipe, u32 val) |
| 1457 | { |
| 1458 | if ((val & LVDS_PORT_EN) == 0) |
| 1459 | return false; |
| 1460 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1461 | if (HAS_PCH_CPT(dev_priv)) { |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1462 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1463 | return false; |
| 1464 | } else { |
| 1465 | if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe)) |
| 1466 | return false; |
| 1467 | } |
| 1468 | return true; |
| 1469 | } |
| 1470 | |
| 1471 | static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv, |
| 1472 | enum pipe pipe, u32 val) |
| 1473 | { |
| 1474 | if ((val & ADPA_DAC_ENABLE) == 0) |
| 1475 | return false; |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1476 | if (HAS_PCH_CPT(dev_priv)) { |
Keith Packard | 1519b99 | 2011-08-06 10:35:34 -0700 | [diff] [blame] | 1477 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) |
| 1478 | return false; |
| 1479 | } else { |
| 1480 | if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe)) |
| 1481 | return false; |
| 1482 | } |
| 1483 | return true; |
| 1484 | } |
| 1485 | |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1486 | static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv, |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1487 | enum pipe pipe, i915_reg_t reg, |
| 1488 | u32 port_sel) |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1489 | { |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1490 | u32 val = I915_READ(reg); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1491 | I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1492 | "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n", |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1493 | i915_mmio_reg_offset(reg), pipe_name(pipe)); |
Daniel Vetter | de9a35a | 2012-06-05 11:03:40 +0200 | [diff] [blame] | 1494 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1495 | I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & DP_PORT_EN) == 0 |
Daniel Vetter | 75c5da2 | 2012-09-10 21:58:29 +0200 | [diff] [blame] | 1496 | && (val & DP_PIPEB_SELECT), |
Daniel Vetter | de9a35a | 2012-06-05 11:03:40 +0200 | [diff] [blame] | 1497 | "IBX PCH dp port still using transcoder B\n"); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1498 | } |
| 1499 | |
| 1500 | static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv, |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1501 | enum pipe pipe, i915_reg_t reg) |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1502 | { |
Jesse Barnes | 47a05ec | 2011-02-07 13:46:40 -0800 | [diff] [blame] | 1503 | u32 val = I915_READ(reg); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1504 | I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val), |
Adam Jackson | 23c99e7 | 2011-10-07 14:38:43 -0400 | [diff] [blame] | 1505 | "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n", |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1506 | i915_mmio_reg_offset(reg), pipe_name(pipe)); |
Daniel Vetter | de9a35a | 2012-06-05 11:03:40 +0200 | [diff] [blame] | 1507 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1508 | I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & SDVO_ENABLE) == 0 |
Daniel Vetter | 75c5da2 | 2012-09-10 21:58:29 +0200 | [diff] [blame] | 1509 | && (val & SDVO_PIPE_B_SELECT), |
Daniel Vetter | de9a35a | 2012-06-05 11:03:40 +0200 | [diff] [blame] | 1510 | "IBX PCH hdmi port still using transcoder B\n"); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1511 | } |
| 1512 | |
| 1513 | static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv, |
| 1514 | enum pipe pipe) |
| 1515 | { |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1516 | u32 val; |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1517 | |
Keith Packard | f0575e9 | 2011-07-25 22:12:43 -0700 | [diff] [blame] | 1518 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
| 1519 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); |
| 1520 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1521 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1522 | val = I915_READ(PCH_ADPA); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1523 | I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1524 | "PCH VGA enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1525 | pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1526 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 1527 | val = I915_READ(PCH_LVDS); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 1528 | I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val), |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1529 | "PCH LVDS enabled on transcoder %c, should be disabled\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1530 | pipe_name(pipe)); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1531 | |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 1532 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB); |
| 1533 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC); |
| 1534 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID); |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1535 | } |
| 1536 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 1537 | static void _vlv_enable_pll(struct intel_crtc *crtc, |
| 1538 | const struct intel_crtc_state *pipe_config) |
| 1539 | { |
| 1540 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 1541 | enum pipe pipe = crtc->pipe; |
| 1542 | |
| 1543 | I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll); |
| 1544 | POSTING_READ(DPLL(pipe)); |
| 1545 | udelay(150); |
| 1546 | |
| 1547 | if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1)) |
| 1548 | DRM_ERROR("DPLL %d failed to lock\n", pipe); |
| 1549 | } |
| 1550 | |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 1551 | static void vlv_enable_pll(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 1552 | const struct intel_crtc_state *pipe_config) |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1553 | { |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 1554 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | 8bd3f30 | 2016-03-15 16:39:57 +0200 | [diff] [blame] | 1555 | enum pipe pipe = crtc->pipe; |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1556 | |
Ville Syrjälä | 8bd3f30 | 2016-03-15 16:39:57 +0200 | [diff] [blame] | 1557 | assert_pipe_disabled(dev_priv, pipe); |
Daniel Vetter | 58c6eaa | 2013-04-11 16:29:09 +0200 | [diff] [blame] | 1558 | |
Daniel Vetter | 87442f7 | 2013-06-06 00:52:17 +0200 | [diff] [blame] | 1559 | /* PLL is protected by panel, make sure we can write it */ |
Ville Syrjälä | 7d1a83c | 2016-03-15 16:39:58 +0200 | [diff] [blame] | 1560 | assert_panel_unlocked(dev_priv, pipe); |
Daniel Vetter | 87442f7 | 2013-06-06 00:52:17 +0200 | [diff] [blame] | 1561 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 1562 | if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) |
| 1563 | _vlv_enable_pll(crtc, pipe_config); |
Daniel Vetter | 426115c | 2013-07-11 22:13:42 +0200 | [diff] [blame] | 1564 | |
Ville Syrjälä | 8bd3f30 | 2016-03-15 16:39:57 +0200 | [diff] [blame] | 1565 | I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md); |
| 1566 | POSTING_READ(DPLL_MD(pipe)); |
Daniel Vetter | 87442f7 | 2013-06-06 00:52:17 +0200 | [diff] [blame] | 1567 | } |
| 1568 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 1569 | |
| 1570 | static void _chv_enable_pll(struct intel_crtc *crtc, |
| 1571 | const struct intel_crtc_state *pipe_config) |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1572 | { |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 1573 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | 8bd3f30 | 2016-03-15 16:39:57 +0200 | [diff] [blame] | 1574 | enum pipe pipe = crtc->pipe; |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1575 | enum dpio_channel port = vlv_pipe_to_channel(pipe); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1576 | u32 tmp; |
| 1577 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 1578 | mutex_lock(&dev_priv->sb_lock); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1579 | |
| 1580 | /* Enable back the 10bit clock to display controller */ |
| 1581 | tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)); |
| 1582 | tmp |= DPIO_DCLKP_EN; |
| 1583 | vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp); |
| 1584 | |
Ville Syrjälä | 54433e9 | 2015-05-26 20:42:31 +0300 | [diff] [blame] | 1585 | mutex_unlock(&dev_priv->sb_lock); |
| 1586 | |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1587 | /* |
| 1588 | * Need to wait > 100ns between dclkp clock enable bit and PLL enable. |
| 1589 | */ |
| 1590 | udelay(1); |
| 1591 | |
| 1592 | /* Enable PLL */ |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 1593 | I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1594 | |
| 1595 | /* Check PLL is locked */ |
Ville Syrjälä | a11b070 | 2014-04-09 13:28:57 +0300 | [diff] [blame] | 1596 | if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1)) |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1597 | DRM_ERROR("PLL %d failed to lock\n", pipe); |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 1598 | } |
| 1599 | |
| 1600 | static void chv_enable_pll(struct intel_crtc *crtc, |
| 1601 | const struct intel_crtc_state *pipe_config) |
| 1602 | { |
| 1603 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 1604 | enum pipe pipe = crtc->pipe; |
| 1605 | |
| 1606 | assert_pipe_disabled(dev_priv, pipe); |
| 1607 | |
| 1608 | /* PLL is protected by panel, make sure we can write it */ |
| 1609 | assert_panel_unlocked(dev_priv, pipe); |
| 1610 | |
| 1611 | if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) |
| 1612 | _chv_enable_pll(crtc, pipe_config); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1613 | |
Ville Syrjälä | c231775 | 2016-03-15 16:39:56 +0200 | [diff] [blame] | 1614 | if (pipe != PIPE_A) { |
| 1615 | /* |
| 1616 | * WaPixelRepeatModeFixForC0:chv |
| 1617 | * |
| 1618 | * DPLLCMD is AWOL. Use chicken bits to propagate |
| 1619 | * the value from DPLLBMD to either pipe B or C. |
| 1620 | */ |
| 1621 | I915_WRITE(CBR4_VLV, pipe == PIPE_B ? CBR_DPLLBMD_PIPE_B : CBR_DPLLBMD_PIPE_C); |
| 1622 | I915_WRITE(DPLL_MD(PIPE_B), pipe_config->dpll_hw_state.dpll_md); |
| 1623 | I915_WRITE(CBR4_VLV, 0); |
| 1624 | dev_priv->chv_dpll_md[pipe] = pipe_config->dpll_hw_state.dpll_md; |
| 1625 | |
| 1626 | /* |
| 1627 | * DPLLB VGA mode also seems to cause problems. |
| 1628 | * We should always have it disabled. |
| 1629 | */ |
| 1630 | WARN_ON((I915_READ(DPLL(PIPE_B)) & DPLL_VGA_MODE_DIS) == 0); |
| 1631 | } else { |
| 1632 | I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md); |
| 1633 | POSTING_READ(DPLL_MD(pipe)); |
| 1634 | } |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 1635 | } |
| 1636 | |
Ville Syrjälä | 1c4e027 | 2014-09-05 21:52:42 +0300 | [diff] [blame] | 1637 | static int intel_num_dvo_pipes(struct drm_device *dev) |
| 1638 | { |
| 1639 | struct intel_crtc *crtc; |
| 1640 | int count = 0; |
| 1641 | |
| 1642 | for_each_intel_crtc(dev, crtc) |
Maarten Lankhorst | 3538b9d | 2015-06-01 12:50:10 +0200 | [diff] [blame] | 1643 | count += crtc->base.state->active && |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 1644 | intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO); |
Ville Syrjälä | 1c4e027 | 2014-09-05 21:52:42 +0300 | [diff] [blame] | 1645 | |
| 1646 | return count; |
| 1647 | } |
| 1648 | |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1649 | static void i9xx_enable_pll(struct intel_crtc *crtc) |
Daniel Vetter | 87442f7 | 2013-06-06 00:52:17 +0200 | [diff] [blame] | 1650 | { |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1651 | struct drm_device *dev = crtc->base.dev; |
| 1652 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1653 | i915_reg_t reg = DPLL(crtc->pipe); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1654 | u32 dpll = crtc->config->dpll_hw_state.dpll; |
Daniel Vetter | 87442f7 | 2013-06-06 00:52:17 +0200 | [diff] [blame] | 1655 | |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1656 | assert_pipe_disabled(dev_priv, crtc->pipe); |
Daniel Vetter | 87442f7 | 2013-06-06 00:52:17 +0200 | [diff] [blame] | 1657 | |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1658 | /* PLL is protected by panel, make sure we can write it */ |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1659 | if (IS_MOBILE(dev) && !IS_I830(dev)) |
| 1660 | assert_panel_unlocked(dev_priv, crtc->pipe); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1661 | |
Ville Syrjälä | 1c4e027 | 2014-09-05 21:52:42 +0300 | [diff] [blame] | 1662 | /* Enable DVO 2x clock on both PLLs if necessary */ |
| 1663 | if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) { |
| 1664 | /* |
| 1665 | * It appears to be important that we don't enable this |
| 1666 | * for the current pipe before otherwise configuring the |
| 1667 | * PLL. No idea how this should be handled if multiple |
| 1668 | * DVO outputs are enabled simultaneosly. |
| 1669 | */ |
| 1670 | dpll |= DPLL_DVO_2X_MODE; |
| 1671 | I915_WRITE(DPLL(!crtc->pipe), |
| 1672 | I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE); |
| 1673 | } |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1674 | |
Ville Syrjälä | c2b6337 | 2015-10-07 22:08:25 +0300 | [diff] [blame] | 1675 | /* |
| 1676 | * Apparently we need to have VGA mode enabled prior to changing |
| 1677 | * the P1/P2 dividers. Otherwise the DPLL will keep using the old |
| 1678 | * dividers, even though the register value does change. |
| 1679 | */ |
| 1680 | I915_WRITE(reg, 0); |
| 1681 | |
Ville Syrjälä | 8e7a65a | 2015-10-07 22:08:24 +0300 | [diff] [blame] | 1682 | I915_WRITE(reg, dpll); |
| 1683 | |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1684 | /* Wait for the clocks to stabilize. */ |
| 1685 | POSTING_READ(reg); |
| 1686 | udelay(150); |
| 1687 | |
| 1688 | if (INTEL_INFO(dev)->gen >= 4) { |
| 1689 | I915_WRITE(DPLL_MD(crtc->pipe), |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1690 | crtc->config->dpll_hw_state.dpll_md); |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1691 | } else { |
| 1692 | /* The pixel multiplier can only be updated once the |
| 1693 | * DPLL is enabled and the clocks are stable. |
| 1694 | * |
| 1695 | * So write it again. |
| 1696 | */ |
| 1697 | I915_WRITE(reg, dpll); |
| 1698 | } |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1699 | |
| 1700 | /* We do this three times for luck */ |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1701 | I915_WRITE(reg, dpll); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1702 | POSTING_READ(reg); |
| 1703 | udelay(150); /* wait for warmup */ |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1704 | I915_WRITE(reg, dpll); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1705 | POSTING_READ(reg); |
| 1706 | udelay(150); /* wait for warmup */ |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 1707 | I915_WRITE(reg, dpll); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1708 | POSTING_READ(reg); |
| 1709 | udelay(150); /* wait for warmup */ |
| 1710 | } |
| 1711 | |
| 1712 | /** |
Daniel Vetter | 50b44a4 | 2013-06-05 13:34:33 +0200 | [diff] [blame] | 1713 | * i9xx_disable_pll - disable a PLL |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1714 | * @dev_priv: i915 private structure |
| 1715 | * @pipe: pipe PLL to disable |
| 1716 | * |
| 1717 | * Disable the PLL for @pipe, making sure the pipe is off first. |
| 1718 | * |
| 1719 | * Note! This is for pre-ILK only. |
| 1720 | */ |
Ville Syrjälä | 1c4e027 | 2014-09-05 21:52:42 +0300 | [diff] [blame] | 1721 | static void i9xx_disable_pll(struct intel_crtc *crtc) |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1722 | { |
Ville Syrjälä | 1c4e027 | 2014-09-05 21:52:42 +0300 | [diff] [blame] | 1723 | struct drm_device *dev = crtc->base.dev; |
| 1724 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1725 | enum pipe pipe = crtc->pipe; |
| 1726 | |
| 1727 | /* Disable DVO 2x clock on both PLLs if necessary */ |
| 1728 | if (IS_I830(dev) && |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 1729 | intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) && |
Maarten Lankhorst | 3538b9d | 2015-06-01 12:50:10 +0200 | [diff] [blame] | 1730 | !intel_num_dvo_pipes(dev)) { |
Ville Syrjälä | 1c4e027 | 2014-09-05 21:52:42 +0300 | [diff] [blame] | 1731 | I915_WRITE(DPLL(PIPE_B), |
| 1732 | I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE); |
| 1733 | I915_WRITE(DPLL(PIPE_A), |
| 1734 | I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE); |
| 1735 | } |
| 1736 | |
Ville Syrjälä | b6b5d04 | 2014-08-15 01:22:07 +0300 | [diff] [blame] | 1737 | /* Don't disable pipe or pipe PLLs if needed */ |
| 1738 | if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || |
| 1739 | (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1740 | return; |
| 1741 | |
| 1742 | /* Make sure the pipe isn't still relying on us */ |
| 1743 | assert_pipe_disabled(dev_priv, pipe); |
| 1744 | |
Ville Syrjälä | b8afb91 | 2015-06-29 15:25:48 +0300 | [diff] [blame] | 1745 | I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS); |
Daniel Vetter | 50b44a4 | 2013-06-05 13:34:33 +0200 | [diff] [blame] | 1746 | POSTING_READ(DPLL(pipe)); |
Jesse Barnes | 63d7bbe | 2011-01-04 15:09:33 -0800 | [diff] [blame] | 1747 | } |
| 1748 | |
Jesse Barnes | f607116 | 2013-10-01 10:41:38 -0700 | [diff] [blame] | 1749 | static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 1750 | { |
Ville Syrjälä | b8afb91 | 2015-06-29 15:25:48 +0300 | [diff] [blame] | 1751 | u32 val; |
Jesse Barnes | f607116 | 2013-10-01 10:41:38 -0700 | [diff] [blame] | 1752 | |
| 1753 | /* Make sure the pipe isn't still relying on us */ |
| 1754 | assert_pipe_disabled(dev_priv, pipe); |
| 1755 | |
Ville Syrjälä | 03ed5cbf | 2016-03-15 16:39:55 +0200 | [diff] [blame] | 1756 | val = DPLL_INTEGRATED_REF_CLK_VLV | |
| 1757 | DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS; |
| 1758 | if (pipe != PIPE_A) |
| 1759 | val |= DPLL_INTEGRATED_CRI_CLK_VLV; |
| 1760 | |
Jesse Barnes | f607116 | 2013-10-01 10:41:38 -0700 | [diff] [blame] | 1761 | I915_WRITE(DPLL(pipe), val); |
| 1762 | POSTING_READ(DPLL(pipe)); |
Chon Ming Lee | 076ed3b | 2014-04-09 13:28:17 +0300 | [diff] [blame] | 1763 | } |
| 1764 | |
| 1765 | static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 1766 | { |
Ville Syrjälä | d752048 | 2014-04-09 13:28:59 +0300 | [diff] [blame] | 1767 | enum dpio_channel port = vlv_pipe_to_channel(pipe); |
Chon Ming Lee | 076ed3b | 2014-04-09 13:28:17 +0300 | [diff] [blame] | 1768 | u32 val; |
| 1769 | |
Ville Syrjälä | a11b070 | 2014-04-09 13:28:57 +0300 | [diff] [blame] | 1770 | /* Make sure the pipe isn't still relying on us */ |
| 1771 | assert_pipe_disabled(dev_priv, pipe); |
Chon Ming Lee | 076ed3b | 2014-04-09 13:28:17 +0300 | [diff] [blame] | 1772 | |
Ville Syrjälä | 60bfe44 | 2015-06-29 15:25:49 +0300 | [diff] [blame] | 1773 | val = DPLL_SSC_REF_CLK_CHV | |
| 1774 | DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS; |
Ville Syrjälä | a11b070 | 2014-04-09 13:28:57 +0300 | [diff] [blame] | 1775 | if (pipe != PIPE_A) |
| 1776 | val |= DPLL_INTEGRATED_CRI_CLK_VLV; |
Ville Syrjälä | 03ed5cbf | 2016-03-15 16:39:55 +0200 | [diff] [blame] | 1777 | |
Ville Syrjälä | a11b070 | 2014-04-09 13:28:57 +0300 | [diff] [blame] | 1778 | I915_WRITE(DPLL(pipe), val); |
| 1779 | POSTING_READ(DPLL(pipe)); |
Ville Syrjälä | d752048 | 2014-04-09 13:28:59 +0300 | [diff] [blame] | 1780 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 1781 | mutex_lock(&dev_priv->sb_lock); |
Ville Syrjälä | d752048 | 2014-04-09 13:28:59 +0300 | [diff] [blame] | 1782 | |
| 1783 | /* Disable 10bit clock to display controller */ |
| 1784 | val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)); |
| 1785 | val &= ~DPIO_DCLKP_EN; |
| 1786 | vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val); |
| 1787 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 1788 | mutex_unlock(&dev_priv->sb_lock); |
Jesse Barnes | f607116 | 2013-10-01 10:41:38 -0700 | [diff] [blame] | 1789 | } |
| 1790 | |
Chon Ming Lee | e4607fc | 2013-11-06 14:36:35 +0800 | [diff] [blame] | 1791 | void vlv_wait_port_ready(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 9b6de0a | 2015-04-10 18:21:31 +0300 | [diff] [blame] | 1792 | struct intel_digital_port *dport, |
| 1793 | unsigned int expected_mask) |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 1794 | { |
| 1795 | u32 port_mask; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1796 | i915_reg_t dpll_reg; |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 1797 | |
Chon Ming Lee | e4607fc | 2013-11-06 14:36:35 +0800 | [diff] [blame] | 1798 | switch (dport->port) { |
| 1799 | case PORT_B: |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 1800 | port_mask = DPLL_PORTB_READY_MASK; |
Chon Ming Lee | 00fc31b | 2014-04-09 13:28:15 +0300 | [diff] [blame] | 1801 | dpll_reg = DPLL(0); |
Chon Ming Lee | e4607fc | 2013-11-06 14:36:35 +0800 | [diff] [blame] | 1802 | break; |
| 1803 | case PORT_C: |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 1804 | port_mask = DPLL_PORTC_READY_MASK; |
Chon Ming Lee | 00fc31b | 2014-04-09 13:28:15 +0300 | [diff] [blame] | 1805 | dpll_reg = DPLL(0); |
Ville Syrjälä | 9b6de0a | 2015-04-10 18:21:31 +0300 | [diff] [blame] | 1806 | expected_mask <<= 4; |
Chon Ming Lee | 00fc31b | 2014-04-09 13:28:15 +0300 | [diff] [blame] | 1807 | break; |
| 1808 | case PORT_D: |
| 1809 | port_mask = DPLL_PORTD_READY_MASK; |
| 1810 | dpll_reg = DPIO_PHY_STATUS; |
Chon Ming Lee | e4607fc | 2013-11-06 14:36:35 +0800 | [diff] [blame] | 1811 | break; |
| 1812 | default: |
| 1813 | BUG(); |
| 1814 | } |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 1815 | |
Ville Syrjälä | 9b6de0a | 2015-04-10 18:21:31 +0300 | [diff] [blame] | 1816 | if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000)) |
| 1817 | WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n", |
| 1818 | port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 1819 | } |
| 1820 | |
Paulo Zanoni | b8a4f40 | 2012-10-31 18:12:42 -0200 | [diff] [blame] | 1821 | static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
| 1822 | enum pipe pipe) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1823 | { |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1824 | struct drm_device *dev = dev_priv->dev; |
Paulo Zanoni | 7c26e5c | 2012-02-14 17:07:09 -0200 | [diff] [blame] | 1825 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
Daniel Vetter | e2b7826 | 2013-06-07 23:10:03 +0200 | [diff] [blame] | 1826 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1827 | i915_reg_t reg; |
| 1828 | uint32_t val, pipeconf_val; |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1829 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1830 | /* Make sure PCH DPLL is enabled */ |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 1831 | assert_shared_dpll_enabled(dev_priv, intel_crtc->config->shared_dpll); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1832 | |
| 1833 | /* FDI must be feeding us bits for PCH ports */ |
| 1834 | assert_fdi_tx_enabled(dev_priv, pipe); |
| 1835 | assert_fdi_rx_enabled(dev_priv, pipe); |
| 1836 | |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1837 | if (HAS_PCH_CPT(dev)) { |
| 1838 | /* Workaround: Set the timing override bit before enabling the |
| 1839 | * pch transcoder. */ |
| 1840 | reg = TRANS_CHICKEN2(pipe); |
| 1841 | val = I915_READ(reg); |
| 1842 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
| 1843 | I915_WRITE(reg, val); |
Eugeni Dodonov | 59c859d | 2012-05-09 15:37:19 -0300 | [diff] [blame] | 1844 | } |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1845 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1846 | reg = PCH_TRANSCONF(pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1847 | val = I915_READ(reg); |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1848 | pipeconf_val = I915_READ(PIPECONF(pipe)); |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1849 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1850 | if (HAS_PCH_IBX(dev_priv)) { |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1851 | /* |
Ville Syrjälä | c5de7c6 | 2015-05-05 17:06:22 +0300 | [diff] [blame] | 1852 | * Make the BPC in transcoder be consistent with |
| 1853 | * that in pipeconf reg. For HDMI we must use 8bpc |
| 1854 | * here for both 8bpc and 12bpc. |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1855 | */ |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 1856 | val &= ~PIPECONF_BPC_MASK; |
Ville Syrjälä | c5de7c6 | 2015-05-05 17:06:22 +0300 | [diff] [blame] | 1857 | if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_HDMI)) |
| 1858 | val |= PIPECONF_8BPC; |
| 1859 | else |
| 1860 | val |= pipeconf_val & PIPECONF_BPC_MASK; |
Jesse Barnes | e9bcff5 | 2011-06-24 12:19:20 -0700 | [diff] [blame] | 1861 | } |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1862 | |
| 1863 | val &= ~TRANS_INTERLACE_MASK; |
| 1864 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK) |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1865 | if (HAS_PCH_IBX(dev_priv) && |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 1866 | intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO)) |
Paulo Zanoni | 7c26e5c | 2012-02-14 17:07:09 -0200 | [diff] [blame] | 1867 | val |= TRANS_LEGACY_INTERLACED_ILK; |
| 1868 | else |
| 1869 | val |= TRANS_INTERLACED; |
Paulo Zanoni | 5f7f726 | 2012-02-03 17:47:15 -0200 | [diff] [blame] | 1870 | else |
| 1871 | val |= TRANS_PROGRESSIVE; |
| 1872 | |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1873 | I915_WRITE(reg, val | TRANS_ENABLE); |
| 1874 | if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100)) |
Ville Syrjälä | 4bb6f1f | 2013-04-17 17:48:50 +0300 | [diff] [blame] | 1875 | DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe)); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1876 | } |
| 1877 | |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1878 | static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 1879 | enum transcoder cpu_transcoder) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1880 | { |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1881 | u32 val, pipeconf_val; |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1882 | |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1883 | /* FDI must be feeding us bits for PCH ports */ |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 1884 | assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder); |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 1885 | assert_fdi_rx_enabled(dev_priv, TRANSCODER_A); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1886 | |
Paulo Zanoni | 223a6fd | 2012-10-31 18:12:52 -0200 | [diff] [blame] | 1887 | /* Workaround: set timing override bit. */ |
Ville Syrjälä | 36c0d0c | 2015-09-18 20:03:31 +0300 | [diff] [blame] | 1888 | val = I915_READ(TRANS_CHICKEN2(PIPE_A)); |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1889 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
Ville Syrjälä | 36c0d0c | 2015-09-18 20:03:31 +0300 | [diff] [blame] | 1890 | I915_WRITE(TRANS_CHICKEN2(PIPE_A), val); |
Paulo Zanoni | 223a6fd | 2012-10-31 18:12:52 -0200 | [diff] [blame] | 1891 | |
Paulo Zanoni | 25f3ef1 | 2012-10-31 18:12:49 -0200 | [diff] [blame] | 1892 | val = TRANS_ENABLE; |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 1893 | pipeconf_val = I915_READ(PIPECONF(cpu_transcoder)); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1894 | |
Paulo Zanoni | 9a76b1c | 2012-10-31 18:12:48 -0200 | [diff] [blame] | 1895 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) == |
| 1896 | PIPECONF_INTERLACED_ILK) |
Paulo Zanoni | a35f267 | 2012-10-31 18:12:45 -0200 | [diff] [blame] | 1897 | val |= TRANS_INTERLACED; |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1898 | else |
| 1899 | val |= TRANS_PROGRESSIVE; |
| 1900 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1901 | I915_WRITE(LPT_TRANSCONF, val); |
| 1902 | if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100)) |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 1903 | DRM_ERROR("Failed to enable PCH transcoder\n"); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1904 | } |
| 1905 | |
Paulo Zanoni | b8a4f40 | 2012-10-31 18:12:42 -0200 | [diff] [blame] | 1906 | static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv, |
| 1907 | enum pipe pipe) |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1908 | { |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1909 | struct drm_device *dev = dev_priv->dev; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1910 | i915_reg_t reg; |
| 1911 | uint32_t val; |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1912 | |
| 1913 | /* FDI relies on the transcoder */ |
| 1914 | assert_fdi_tx_disabled(dev_priv, pipe); |
| 1915 | assert_fdi_rx_disabled(dev_priv, pipe); |
| 1916 | |
Jesse Barnes | 291906f | 2011-02-02 12:28:03 -0800 | [diff] [blame] | 1917 | /* Ports must be off as well */ |
| 1918 | assert_pch_ports_disabled(dev_priv, pipe); |
| 1919 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1920 | reg = PCH_TRANSCONF(pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1921 | val = I915_READ(reg); |
| 1922 | val &= ~TRANS_ENABLE; |
| 1923 | I915_WRITE(reg, val); |
| 1924 | /* wait for PCH transcoder off, transcoder state */ |
| 1925 | if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50)) |
Ville Syrjälä | 4bb6f1f | 2013-04-17 17:48:50 +0300 | [diff] [blame] | 1926 | DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe)); |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1927 | |
Ville Syrjälä | c465613 | 2015-10-29 21:25:56 +0200 | [diff] [blame] | 1928 | if (HAS_PCH_CPT(dev)) { |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1929 | /* Workaround: Clear the timing override chicken bit again. */ |
| 1930 | reg = TRANS_CHICKEN2(pipe); |
| 1931 | val = I915_READ(reg); |
| 1932 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; |
| 1933 | I915_WRITE(reg, val); |
| 1934 | } |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1935 | } |
| 1936 | |
Paulo Zanoni | ab4d966 | 2012-10-31 18:12:55 -0200 | [diff] [blame] | 1937 | static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv) |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1938 | { |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1939 | u32 val; |
| 1940 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1941 | val = I915_READ(LPT_TRANSCONF); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1942 | val &= ~TRANS_ENABLE; |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1943 | I915_WRITE(LPT_TRANSCONF, val); |
Paulo Zanoni | 8fb033d | 2012-10-31 18:12:43 -0200 | [diff] [blame] | 1944 | /* wait for PCH transcoder off, transcoder state */ |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 1945 | if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50)) |
Paulo Zanoni | 8a52fd9 | 2012-10-31 18:12:51 -0200 | [diff] [blame] | 1946 | DRM_ERROR("Failed to disable PCH transcoder\n"); |
Paulo Zanoni | 223a6fd | 2012-10-31 18:12:52 -0200 | [diff] [blame] | 1947 | |
| 1948 | /* Workaround: clear timing override bit. */ |
Ville Syrjälä | 36c0d0c | 2015-09-18 20:03:31 +0300 | [diff] [blame] | 1949 | val = I915_READ(TRANS_CHICKEN2(PIPE_A)); |
Daniel Vetter | 23670b32 | 2012-11-01 09:15:30 +0100 | [diff] [blame] | 1950 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; |
Ville Syrjälä | 36c0d0c | 2015-09-18 20:03:31 +0300 | [diff] [blame] | 1951 | I915_WRITE(TRANS_CHICKEN2(PIPE_A), val); |
Jesse Barnes | 92f2584 | 2011-01-04 15:09:34 -0800 | [diff] [blame] | 1952 | } |
| 1953 | |
| 1954 | /** |
Chris Wilson | 309cfea | 2011-01-28 13:54:53 +0000 | [diff] [blame] | 1955 | * intel_enable_pipe - enable a pipe, asserting requirements |
Paulo Zanoni | 0372264 | 2014-01-17 13:51:09 -0200 | [diff] [blame] | 1956 | * @crtc: crtc responsible for the pipe |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1957 | * |
Paulo Zanoni | 0372264 | 2014-01-17 13:51:09 -0200 | [diff] [blame] | 1958 | * Enable @crtc's pipe, making sure that various hardware specific requirements |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1959 | * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc. |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1960 | */ |
Paulo Zanoni | e1fdc47 | 2014-01-17 13:51:12 -0200 | [diff] [blame] | 1961 | static void intel_enable_pipe(struct intel_crtc *crtc) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1962 | { |
Paulo Zanoni | 0372264 | 2014-01-17 13:51:09 -0200 | [diff] [blame] | 1963 | struct drm_device *dev = crtc->base.dev; |
| 1964 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1965 | enum pipe pipe = crtc->pipe; |
Ville Syrjälä | 1a70a728 | 2015-10-29 21:25:50 +0200 | [diff] [blame] | 1966 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 1967 | enum pipe pch_transcoder; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1968 | i915_reg_t reg; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1969 | u32 val; |
| 1970 | |
Ville Syrjälä | 9e2ee2d | 2015-06-24 21:59:35 +0300 | [diff] [blame] | 1971 | DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe)); |
| 1972 | |
Daniel Vetter | 58c6eaa | 2013-04-11 16:29:09 +0200 | [diff] [blame] | 1973 | assert_planes_disabled(dev_priv, pipe); |
Jani Nikula | 93ce0ba | 2013-09-13 11:03:08 +0300 | [diff] [blame] | 1974 | assert_cursor_disabled(dev_priv, pipe); |
Daniel Vetter | 58c6eaa | 2013-04-11 16:29:09 +0200 | [diff] [blame] | 1975 | assert_sprites_disabled(dev_priv, pipe); |
| 1976 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1977 | if (HAS_PCH_LPT(dev_priv)) |
Paulo Zanoni | cc391bb | 2012-11-20 13:27:37 -0200 | [diff] [blame] | 1978 | pch_transcoder = TRANSCODER_A; |
| 1979 | else |
| 1980 | pch_transcoder = pipe; |
| 1981 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 1982 | /* |
| 1983 | * A pipe without a PLL won't actually be able to drive bits from |
| 1984 | * a plane. On ILK+ the pipe PLLs are integrated, so we don't |
| 1985 | * need the check. |
| 1986 | */ |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 1987 | if (HAS_GMCH_DISPLAY(dev_priv)) |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 1988 | if (crtc->config->has_dsi_encoder) |
Jani Nikula | 23538ef | 2013-08-27 15:12:22 +0300 | [diff] [blame] | 1989 | assert_dsi_pll_enabled(dev_priv); |
| 1990 | else |
| 1991 | assert_pll_enabled(dev_priv, pipe); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1992 | else { |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1993 | if (crtc->config->has_pch_encoder) { |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1994 | /* if driving the PCH, we need FDI enabled */ |
Paulo Zanoni | cc391bb | 2012-11-20 13:27:37 -0200 | [diff] [blame] | 1995 | assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder); |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 1996 | assert_fdi_tx_pll_enabled(dev_priv, |
| 1997 | (enum pipe) cpu_transcoder); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 1998 | } |
| 1999 | /* FIXME: assert CPU port conditions for SNB+ */ |
| 2000 | } |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2001 | |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 2002 | reg = PIPECONF(cpu_transcoder); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2003 | val = I915_READ(reg); |
Paulo Zanoni | 7ad25d4 | 2014-01-17 13:51:13 -0200 | [diff] [blame] | 2004 | if (val & PIPECONF_ENABLE) { |
Ville Syrjälä | b6b5d04 | 2014-08-15 01:22:07 +0300 | [diff] [blame] | 2005 | WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || |
| 2006 | (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 2007 | return; |
Paulo Zanoni | 7ad25d4 | 2014-01-17 13:51:13 -0200 | [diff] [blame] | 2008 | } |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 2009 | |
| 2010 | I915_WRITE(reg, val | PIPECONF_ENABLE); |
Paulo Zanoni | 851855d | 2013-12-19 19:12:29 -0200 | [diff] [blame] | 2011 | POSTING_READ(reg); |
Ville Syrjälä | b7792d8 | 2015-12-14 18:23:43 +0200 | [diff] [blame] | 2012 | |
| 2013 | /* |
| 2014 | * Until the pipe starts DSL will read as 0, which would cause |
| 2015 | * an apparent vblank timestamp jump, which messes up also the |
| 2016 | * frame count when it's derived from the timestamps. So let's |
| 2017 | * wait for the pipe to start properly before we call |
| 2018 | * drm_crtc_vblank_on() |
| 2019 | */ |
| 2020 | if (dev->max_vblank_count == 0 && |
| 2021 | wait_for(intel_get_crtc_scanline(crtc) != crtc->scanline_offset, 50)) |
| 2022 | DRM_ERROR("pipe %c didn't start\n", pipe_name(pipe)); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2023 | } |
| 2024 | |
| 2025 | /** |
Chris Wilson | 309cfea | 2011-01-28 13:54:53 +0000 | [diff] [blame] | 2026 | * intel_disable_pipe - disable a pipe, asserting requirements |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 2027 | * @crtc: crtc whose pipes is to be disabled |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2028 | * |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 2029 | * Disable the pipe of @crtc, making sure that various hardware |
| 2030 | * specific requirements are met, if applicable, e.g. plane |
| 2031 | * disabled, panel fitter off, etc. |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2032 | * |
| 2033 | * Will wait until the pipe has shut down before returning. |
| 2034 | */ |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 2035 | static void intel_disable_pipe(struct intel_crtc *crtc) |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2036 | { |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 2037 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 2038 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 2039 | enum pipe pipe = crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 2040 | i915_reg_t reg; |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2041 | u32 val; |
| 2042 | |
Ville Syrjälä | 9e2ee2d | 2015-06-24 21:59:35 +0300 | [diff] [blame] | 2043 | DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe)); |
| 2044 | |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2045 | /* |
| 2046 | * Make sure planes won't keep trying to pump pixels to us, |
| 2047 | * or we might hang the display. |
| 2048 | */ |
| 2049 | assert_planes_disabled(dev_priv, pipe); |
Jani Nikula | 93ce0ba | 2013-09-13 11:03:08 +0300 | [diff] [blame] | 2050 | assert_cursor_disabled(dev_priv, pipe); |
Jesse Barnes | 19332d7 | 2013-03-28 09:55:38 -0700 | [diff] [blame] | 2051 | assert_sprites_disabled(dev_priv, pipe); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2052 | |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 2053 | reg = PIPECONF(cpu_transcoder); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2054 | val = I915_READ(reg); |
Chris Wilson | 00d70b1 | 2011-03-17 07:18:29 +0000 | [diff] [blame] | 2055 | if ((val & PIPECONF_ENABLE) == 0) |
| 2056 | return; |
| 2057 | |
Ville Syrjälä | 67adc64 | 2014-08-15 01:21:57 +0300 | [diff] [blame] | 2058 | /* |
| 2059 | * Double wide has implications for planes |
| 2060 | * so best keep it disabled when not needed. |
| 2061 | */ |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 2062 | if (crtc->config->double_wide) |
Ville Syrjälä | 67adc64 | 2014-08-15 01:21:57 +0300 | [diff] [blame] | 2063 | val &= ~PIPECONF_DOUBLE_WIDE; |
| 2064 | |
| 2065 | /* Don't disable pipe or pipe PLLs if needed */ |
Ville Syrjälä | b6b5d04 | 2014-08-15 01:22:07 +0300 | [diff] [blame] | 2066 | if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) && |
| 2067 | !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) |
Ville Syrjälä | 67adc64 | 2014-08-15 01:21:57 +0300 | [diff] [blame] | 2068 | val &= ~PIPECONF_ENABLE; |
| 2069 | |
| 2070 | I915_WRITE(reg, val); |
| 2071 | if ((val & PIPECONF_ENABLE) == 0) |
| 2072 | intel_wait_for_pipe_off(crtc); |
Jesse Barnes | b24e717 | 2011-01-04 15:09:30 -0800 | [diff] [blame] | 2073 | } |
| 2074 | |
Chris Wilson | 693db18 | 2013-03-05 14:52:39 +0000 | [diff] [blame] | 2075 | static bool need_vtd_wa(struct drm_device *dev) |
| 2076 | { |
| 2077 | #ifdef CONFIG_INTEL_IOMMU |
| 2078 | if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped) |
| 2079 | return true; |
| 2080 | #endif |
| 2081 | return false; |
| 2082 | } |
| 2083 | |
Ville Syrjälä | 832be82 | 2016-01-12 21:08:33 +0200 | [diff] [blame] | 2084 | static unsigned int intel_tile_size(const struct drm_i915_private *dev_priv) |
| 2085 | { |
| 2086 | return IS_GEN2(dev_priv) ? 2048 : 4096; |
| 2087 | } |
| 2088 | |
Ville Syrjälä | 27ba391 | 2016-02-15 22:54:40 +0200 | [diff] [blame] | 2089 | static unsigned int intel_tile_width_bytes(const struct drm_i915_private *dev_priv, |
| 2090 | uint64_t fb_modifier, unsigned int cpp) |
Ville Syrjälä | 7b49f94 | 2016-01-12 21:08:32 +0200 | [diff] [blame] | 2091 | { |
| 2092 | switch (fb_modifier) { |
| 2093 | case DRM_FORMAT_MOD_NONE: |
| 2094 | return cpp; |
| 2095 | case I915_FORMAT_MOD_X_TILED: |
| 2096 | if (IS_GEN2(dev_priv)) |
| 2097 | return 128; |
| 2098 | else |
| 2099 | return 512; |
| 2100 | case I915_FORMAT_MOD_Y_TILED: |
| 2101 | if (IS_GEN2(dev_priv) || HAS_128_BYTE_Y_TILING(dev_priv)) |
| 2102 | return 128; |
| 2103 | else |
| 2104 | return 512; |
| 2105 | case I915_FORMAT_MOD_Yf_TILED: |
| 2106 | switch (cpp) { |
| 2107 | case 1: |
| 2108 | return 64; |
| 2109 | case 2: |
| 2110 | case 4: |
| 2111 | return 128; |
| 2112 | case 8: |
| 2113 | case 16: |
| 2114 | return 256; |
| 2115 | default: |
| 2116 | MISSING_CASE(cpp); |
| 2117 | return cpp; |
| 2118 | } |
| 2119 | break; |
| 2120 | default: |
| 2121 | MISSING_CASE(fb_modifier); |
| 2122 | return cpp; |
| 2123 | } |
| 2124 | } |
| 2125 | |
Ville Syrjälä | 832be82 | 2016-01-12 21:08:33 +0200 | [diff] [blame] | 2126 | unsigned int intel_tile_height(const struct drm_i915_private *dev_priv, |
| 2127 | uint64_t fb_modifier, unsigned int cpp) |
Jesse Barnes | a57ce0b | 2014-02-07 12:10:35 -0800 | [diff] [blame] | 2128 | { |
Ville Syrjälä | 832be82 | 2016-01-12 21:08:33 +0200 | [diff] [blame] | 2129 | if (fb_modifier == DRM_FORMAT_MOD_NONE) |
| 2130 | return 1; |
| 2131 | else |
| 2132 | return intel_tile_size(dev_priv) / |
Ville Syrjälä | 27ba391 | 2016-02-15 22:54:40 +0200 | [diff] [blame] | 2133 | intel_tile_width_bytes(dev_priv, fb_modifier, cpp); |
Tvrtko Ursulin | 6761dd3 | 2015-03-23 11:10:32 +0000 | [diff] [blame] | 2134 | } |
| 2135 | |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2136 | /* Return the tile dimensions in pixel units */ |
| 2137 | static void intel_tile_dims(const struct drm_i915_private *dev_priv, |
| 2138 | unsigned int *tile_width, |
| 2139 | unsigned int *tile_height, |
| 2140 | uint64_t fb_modifier, |
| 2141 | unsigned int cpp) |
| 2142 | { |
| 2143 | unsigned int tile_width_bytes = |
| 2144 | intel_tile_width_bytes(dev_priv, fb_modifier, cpp); |
| 2145 | |
| 2146 | *tile_width = tile_width_bytes / cpp; |
| 2147 | *tile_height = intel_tile_size(dev_priv) / tile_width_bytes; |
| 2148 | } |
| 2149 | |
Tvrtko Ursulin | 6761dd3 | 2015-03-23 11:10:32 +0000 | [diff] [blame] | 2150 | unsigned int |
| 2151 | intel_fb_align_height(struct drm_device *dev, unsigned int height, |
Ville Syrjälä | 832be82 | 2016-01-12 21:08:33 +0200 | [diff] [blame] | 2152 | uint32_t pixel_format, uint64_t fb_modifier) |
Tvrtko Ursulin | 6761dd3 | 2015-03-23 11:10:32 +0000 | [diff] [blame] | 2153 | { |
Ville Syrjälä | 832be82 | 2016-01-12 21:08:33 +0200 | [diff] [blame] | 2154 | unsigned int cpp = drm_format_plane_cpp(pixel_format, 0); |
| 2155 | unsigned int tile_height = intel_tile_height(to_i915(dev), fb_modifier, cpp); |
| 2156 | |
| 2157 | return ALIGN(height, tile_height); |
Jesse Barnes | a57ce0b | 2014-02-07 12:10:35 -0800 | [diff] [blame] | 2158 | } |
| 2159 | |
Ville Syrjälä | 1663b9d | 2016-02-15 22:54:45 +0200 | [diff] [blame] | 2160 | unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info) |
| 2161 | { |
| 2162 | unsigned int size = 0; |
| 2163 | int i; |
| 2164 | |
| 2165 | for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++) |
| 2166 | size += rot_info->plane[i].width * rot_info->plane[i].height; |
| 2167 | |
| 2168 | return size; |
| 2169 | } |
| 2170 | |
Daniel Vetter | 75c82a5 | 2015-10-14 16:51:04 +0200 | [diff] [blame] | 2171 | static void |
Ville Syrjälä | 3465c58 | 2016-02-15 22:54:43 +0200 | [diff] [blame] | 2172 | intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, |
| 2173 | const struct drm_framebuffer *fb, |
| 2174 | unsigned int rotation) |
Tvrtko Ursulin | f64b98c | 2015-03-23 11:10:35 +0000 | [diff] [blame] | 2175 | { |
Ville Syrjälä | 2d7a215 | 2016-02-15 22:54:47 +0200 | [diff] [blame] | 2176 | if (intel_rotation_90_or_270(rotation)) { |
| 2177 | *view = i915_ggtt_view_rotated; |
| 2178 | view->params.rotated = to_intel_framebuffer(fb)->rot_info; |
| 2179 | } else { |
| 2180 | *view = i915_ggtt_view_normal; |
| 2181 | } |
| 2182 | } |
| 2183 | |
| 2184 | static void |
| 2185 | intel_fill_fb_info(struct drm_i915_private *dev_priv, |
| 2186 | struct drm_framebuffer *fb) |
| 2187 | { |
| 2188 | struct intel_rotation_info *info = &to_intel_framebuffer(fb)->rot_info; |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2189 | unsigned int tile_size, tile_width, tile_height, cpp; |
Tvrtko Ursulin | 50470bb | 2015-03-23 11:10:36 +0000 | [diff] [blame] | 2190 | |
Ville Syrjälä | d9b3288 | 2016-01-12 21:08:34 +0200 | [diff] [blame] | 2191 | tile_size = intel_tile_size(dev_priv); |
| 2192 | |
| 2193 | cpp = drm_format_plane_cpp(fb->pixel_format, 0); |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2194 | intel_tile_dims(dev_priv, &tile_width, &tile_height, |
| 2195 | fb->modifier[0], cpp); |
Ville Syrjälä | d9b3288 | 2016-01-12 21:08:34 +0200 | [diff] [blame] | 2196 | |
Ville Syrjälä | 1663b9d | 2016-02-15 22:54:45 +0200 | [diff] [blame] | 2197 | info->plane[0].width = DIV_ROUND_UP(fb->pitches[0], tile_width * cpp); |
| 2198 | info->plane[0].height = DIV_ROUND_UP(fb->height, tile_height); |
Tvrtko Ursulin | 84fe03f | 2015-06-23 14:26:46 +0100 | [diff] [blame] | 2199 | |
Tvrtko Ursulin | 89e3e14 | 2015-09-21 10:45:34 +0100 | [diff] [blame] | 2200 | if (info->pixel_format == DRM_FORMAT_NV12) { |
Ville Syrjälä | 832be82 | 2016-01-12 21:08:33 +0200 | [diff] [blame] | 2201 | cpp = drm_format_plane_cpp(fb->pixel_format, 1); |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2202 | intel_tile_dims(dev_priv, &tile_width, &tile_height, |
| 2203 | fb->modifier[1], cpp); |
Ville Syrjälä | d9b3288 | 2016-01-12 21:08:34 +0200 | [diff] [blame] | 2204 | |
Ville Syrjälä | 2d7a215 | 2016-02-15 22:54:47 +0200 | [diff] [blame] | 2205 | info->uv_offset = fb->offsets[1]; |
Ville Syrjälä | 1663b9d | 2016-02-15 22:54:45 +0200 | [diff] [blame] | 2206 | info->plane[1].width = DIV_ROUND_UP(fb->pitches[1], tile_width * cpp); |
| 2207 | info->plane[1].height = DIV_ROUND_UP(fb->height / 2, tile_height); |
Tvrtko Ursulin | 89e3e14 | 2015-09-21 10:45:34 +0100 | [diff] [blame] | 2208 | } |
Tvrtko Ursulin | f64b98c | 2015-03-23 11:10:35 +0000 | [diff] [blame] | 2209 | } |
| 2210 | |
Ville Syrjälä | 603525d | 2016-01-12 21:08:37 +0200 | [diff] [blame] | 2211 | static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv) |
Ville Syrjälä | 4e9a86b | 2015-06-11 16:31:14 +0300 | [diff] [blame] | 2212 | { |
| 2213 | if (INTEL_INFO(dev_priv)->gen >= 9) |
| 2214 | return 256 * 1024; |
Ville Syrjälä | 985b8bb | 2015-06-11 16:31:15 +0300 | [diff] [blame] | 2215 | else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) || |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 2216 | IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Ville Syrjälä | 4e9a86b | 2015-06-11 16:31:14 +0300 | [diff] [blame] | 2217 | return 128 * 1024; |
| 2218 | else if (INTEL_INFO(dev_priv)->gen >= 4) |
| 2219 | return 4 * 1024; |
| 2220 | else |
Ville Syrjälä | 44c5905 | 2015-06-11 16:31:16 +0300 | [diff] [blame] | 2221 | return 0; |
Ville Syrjälä | 4e9a86b | 2015-06-11 16:31:14 +0300 | [diff] [blame] | 2222 | } |
| 2223 | |
Ville Syrjälä | 603525d | 2016-01-12 21:08:37 +0200 | [diff] [blame] | 2224 | static unsigned int intel_surf_alignment(const struct drm_i915_private *dev_priv, |
| 2225 | uint64_t fb_modifier) |
| 2226 | { |
| 2227 | switch (fb_modifier) { |
| 2228 | case DRM_FORMAT_MOD_NONE: |
| 2229 | return intel_linear_alignment(dev_priv); |
| 2230 | case I915_FORMAT_MOD_X_TILED: |
| 2231 | if (INTEL_INFO(dev_priv)->gen >= 9) |
| 2232 | return 256 * 1024; |
| 2233 | return 0; |
| 2234 | case I915_FORMAT_MOD_Y_TILED: |
| 2235 | case I915_FORMAT_MOD_Yf_TILED: |
| 2236 | return 1 * 1024 * 1024; |
| 2237 | default: |
| 2238 | MISSING_CASE(fb_modifier); |
| 2239 | return 0; |
| 2240 | } |
| 2241 | } |
| 2242 | |
Chris Wilson | 127bd2a | 2010-07-23 23:32:05 +0100 | [diff] [blame] | 2243 | int |
Ville Syrjälä | 3465c58 | 2016-02-15 22:54:43 +0200 | [diff] [blame] | 2244 | intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, |
| 2245 | unsigned int rotation) |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 2246 | { |
Tvrtko Ursulin | 850c4cd | 2014-10-30 16:39:38 +0000 | [diff] [blame] | 2247 | struct drm_device *dev = fb->dev; |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 2248 | struct drm_i915_private *dev_priv = dev->dev_private; |
Tvrtko Ursulin | 850c4cd | 2014-10-30 16:39:38 +0000 | [diff] [blame] | 2249 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Tvrtko Ursulin | f64b98c | 2015-03-23 11:10:35 +0000 | [diff] [blame] | 2250 | struct i915_ggtt_view view; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 2251 | u32 alignment; |
| 2252 | int ret; |
| 2253 | |
Matt Roper | ebcdd39 | 2014-07-09 16:22:11 -0700 | [diff] [blame] | 2254 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 2255 | |
Ville Syrjälä | 603525d | 2016-01-12 21:08:37 +0200 | [diff] [blame] | 2256 | alignment = intel_surf_alignment(dev_priv, fb->modifier[0]); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 2257 | |
Ville Syrjälä | 3465c58 | 2016-02-15 22:54:43 +0200 | [diff] [blame] | 2258 | intel_fill_fb_ggtt_view(&view, fb, rotation); |
Tvrtko Ursulin | f64b98c | 2015-03-23 11:10:35 +0000 | [diff] [blame] | 2259 | |
Chris Wilson | 693db18 | 2013-03-05 14:52:39 +0000 | [diff] [blame] | 2260 | /* Note that the w/a also requires 64 PTE of padding following the |
| 2261 | * bo. We currently fill all unused PTE with the shadow page and so |
| 2262 | * we should always have valid PTE following the scanout preventing |
| 2263 | * the VT-d warning. |
| 2264 | */ |
| 2265 | if (need_vtd_wa(dev) && alignment < 256 * 1024) |
| 2266 | alignment = 256 * 1024; |
| 2267 | |
Paulo Zanoni | d6dd684 | 2014-08-15 15:59:32 -0300 | [diff] [blame] | 2268 | /* |
| 2269 | * Global gtt pte registers are special registers which actually forward |
| 2270 | * writes to a chunk of system memory. Which means that there is no risk |
| 2271 | * that the register values disappear as soon as we call |
| 2272 | * intel_runtime_pm_put(), so it is correct to wrap only the |
| 2273 | * pin/unpin/fence and not more. |
| 2274 | */ |
| 2275 | intel_runtime_pm_get(dev_priv); |
| 2276 | |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 2277 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, |
| 2278 | &view); |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 2279 | if (ret) |
Maarten Lankhorst | b26a6b3 | 2015-09-23 13:27:09 +0200 | [diff] [blame] | 2280 | goto err_pm; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 2281 | |
| 2282 | /* Install a fence for tiled scan-out. Pre-i965 always needs a |
| 2283 | * fence, whereas 965+ only requires a fence if using |
| 2284 | * framebuffer compression. For simplicity, we always install |
| 2285 | * a fence as the cost is not that onerous. |
| 2286 | */ |
Vivek Kasireddy | 9807216 | 2015-10-29 18:54:38 -0700 | [diff] [blame] | 2287 | if (view.type == I915_GGTT_VIEW_NORMAL) { |
| 2288 | ret = i915_gem_object_get_fence(obj); |
| 2289 | if (ret == -EDEADLK) { |
| 2290 | /* |
| 2291 | * -EDEADLK means there are no free fences |
| 2292 | * no pending flips. |
| 2293 | * |
| 2294 | * This is propagated to atomic, but it uses |
| 2295 | * -EDEADLK to force a locking recovery, so |
| 2296 | * change the returned error to -EBUSY. |
| 2297 | */ |
| 2298 | ret = -EBUSY; |
| 2299 | goto err_unpin; |
| 2300 | } else if (ret) |
| 2301 | goto err_unpin; |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 2302 | |
Vivek Kasireddy | 9807216 | 2015-10-29 18:54:38 -0700 | [diff] [blame] | 2303 | i915_gem_object_pin_fence(obj); |
| 2304 | } |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 2305 | |
Paulo Zanoni | d6dd684 | 2014-08-15 15:59:32 -0300 | [diff] [blame] | 2306 | intel_runtime_pm_put(dev_priv); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 2307 | return 0; |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 2308 | |
| 2309 | err_unpin: |
Tvrtko Ursulin | f64b98c | 2015-03-23 11:10:35 +0000 | [diff] [blame] | 2310 | i915_gem_object_unpin_from_display_plane(obj, &view); |
Maarten Lankhorst | b26a6b3 | 2015-09-23 13:27:09 +0200 | [diff] [blame] | 2311 | err_pm: |
Paulo Zanoni | d6dd684 | 2014-08-15 15:59:32 -0300 | [diff] [blame] | 2312 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | 48b956c | 2010-09-14 12:50:34 +0100 | [diff] [blame] | 2313 | return ret; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 2314 | } |
| 2315 | |
Chris Wilson | fb4b8ce | 2016-04-28 09:56:35 +0100 | [diff] [blame] | 2316 | void intel_unpin_fb_obj(struct drm_framebuffer *fb, unsigned int rotation) |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 2317 | { |
Tvrtko Ursulin | 82bc3b2 | 2015-03-23 11:10:34 +0000 | [diff] [blame] | 2318 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Tvrtko Ursulin | f64b98c | 2015-03-23 11:10:35 +0000 | [diff] [blame] | 2319 | struct i915_ggtt_view view; |
Tvrtko Ursulin | 82bc3b2 | 2015-03-23 11:10:34 +0000 | [diff] [blame] | 2320 | |
Matt Roper | ebcdd39 | 2014-07-09 16:22:11 -0700 | [diff] [blame] | 2321 | WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex)); |
| 2322 | |
Ville Syrjälä | 3465c58 | 2016-02-15 22:54:43 +0200 | [diff] [blame] | 2323 | intel_fill_fb_ggtt_view(&view, fb, rotation); |
Tvrtko Ursulin | f64b98c | 2015-03-23 11:10:35 +0000 | [diff] [blame] | 2324 | |
Vivek Kasireddy | 9807216 | 2015-10-29 18:54:38 -0700 | [diff] [blame] | 2325 | if (view.type == I915_GGTT_VIEW_NORMAL) |
| 2326 | i915_gem_object_unpin_fence(obj); |
| 2327 | |
Tvrtko Ursulin | f64b98c | 2015-03-23 11:10:35 +0000 | [diff] [blame] | 2328 | i915_gem_object_unpin_from_display_plane(obj, &view); |
Chris Wilson | 1690e1e | 2011-12-14 13:57:08 +0100 | [diff] [blame] | 2329 | } |
| 2330 | |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2331 | /* |
Ville Syrjälä | 29cf949 | 2016-02-15 22:54:42 +0200 | [diff] [blame] | 2332 | * Adjust the tile offset by moving the difference into |
| 2333 | * the x/y offsets. |
| 2334 | * |
| 2335 | * Input tile dimensions and pitch must already be |
| 2336 | * rotated to match x and y, and in pixel units. |
| 2337 | */ |
| 2338 | static u32 intel_adjust_tile_offset(int *x, int *y, |
| 2339 | unsigned int tile_width, |
| 2340 | unsigned int tile_height, |
| 2341 | unsigned int tile_size, |
| 2342 | unsigned int pitch_tiles, |
| 2343 | u32 old_offset, |
| 2344 | u32 new_offset) |
| 2345 | { |
| 2346 | unsigned int tiles; |
| 2347 | |
| 2348 | WARN_ON(old_offset & (tile_size - 1)); |
| 2349 | WARN_ON(new_offset & (tile_size - 1)); |
| 2350 | WARN_ON(new_offset > old_offset); |
| 2351 | |
| 2352 | tiles = (old_offset - new_offset) / tile_size; |
| 2353 | |
| 2354 | *y += tiles / pitch_tiles * tile_height; |
| 2355 | *x += tiles % pitch_tiles * tile_width; |
| 2356 | |
| 2357 | return new_offset; |
| 2358 | } |
| 2359 | |
| 2360 | /* |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2361 | * Computes the linear offset to the base tile and adjusts |
| 2362 | * x, y. bytes per pixel is assumed to be a power-of-two. |
| 2363 | * |
| 2364 | * In the 90/270 rotated case, x and y are assumed |
| 2365 | * to be already rotated to match the rotated GTT view, and |
| 2366 | * pitch is the tile_height aligned framebuffer height. |
| 2367 | */ |
Ville Syrjälä | 4f2d993 | 2016-02-15 22:54:44 +0200 | [diff] [blame] | 2368 | u32 intel_compute_tile_offset(int *x, int *y, |
| 2369 | const struct drm_framebuffer *fb, int plane, |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2370 | unsigned int pitch, |
| 2371 | unsigned int rotation) |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2372 | { |
Ville Syrjälä | 4f2d993 | 2016-02-15 22:54:44 +0200 | [diff] [blame] | 2373 | const struct drm_i915_private *dev_priv = to_i915(fb->dev); |
| 2374 | uint64_t fb_modifier = fb->modifier[plane]; |
| 2375 | unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane); |
Ville Syrjälä | 29cf949 | 2016-02-15 22:54:42 +0200 | [diff] [blame] | 2376 | u32 offset, offset_aligned, alignment; |
| 2377 | |
| 2378 | alignment = intel_surf_alignment(dev_priv, fb_modifier); |
| 2379 | if (alignment) |
| 2380 | alignment--; |
| 2381 | |
Ville Syrjälä | b5c6533 | 2016-01-12 21:08:31 +0200 | [diff] [blame] | 2382 | if (fb_modifier != DRM_FORMAT_MOD_NONE) { |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2383 | unsigned int tile_size, tile_width, tile_height; |
| 2384 | unsigned int tile_rows, tiles, pitch_tiles; |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2385 | |
Ville Syrjälä | d843310 | 2016-01-12 21:08:35 +0200 | [diff] [blame] | 2386 | tile_size = intel_tile_size(dev_priv); |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2387 | intel_tile_dims(dev_priv, &tile_width, &tile_height, |
| 2388 | fb_modifier, cpp); |
| 2389 | |
| 2390 | if (intel_rotation_90_or_270(rotation)) { |
| 2391 | pitch_tiles = pitch / tile_height; |
| 2392 | swap(tile_width, tile_height); |
| 2393 | } else { |
| 2394 | pitch_tiles = pitch / (tile_width * cpp); |
| 2395 | } |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2396 | |
Ville Syrjälä | d843310 | 2016-01-12 21:08:35 +0200 | [diff] [blame] | 2397 | tile_rows = *y / tile_height; |
| 2398 | *y %= tile_height; |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 2399 | |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2400 | tiles = *x / tile_width; |
| 2401 | *x %= tile_width; |
Ville Syrjälä | d843310 | 2016-01-12 21:08:35 +0200 | [diff] [blame] | 2402 | |
Ville Syrjälä | 29cf949 | 2016-02-15 22:54:42 +0200 | [diff] [blame] | 2403 | offset = (tile_rows * pitch_tiles + tiles) * tile_size; |
| 2404 | offset_aligned = offset & ~alignment; |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 2405 | |
Ville Syrjälä | 29cf949 | 2016-02-15 22:54:42 +0200 | [diff] [blame] | 2406 | intel_adjust_tile_offset(x, y, tile_width, tile_height, |
| 2407 | tile_size, pitch_tiles, |
| 2408 | offset, offset_aligned); |
| 2409 | } else { |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 2410 | offset = *y * pitch + *x * cpp; |
Ville Syrjälä | 29cf949 | 2016-02-15 22:54:42 +0200 | [diff] [blame] | 2411 | offset_aligned = offset & ~alignment; |
| 2412 | |
Ville Syrjälä | 4e9a86b | 2015-06-11 16:31:14 +0300 | [diff] [blame] | 2413 | *y = (offset & alignment) / pitch; |
| 2414 | *x = ((offset & alignment) - *y * pitch) / cpp; |
Chris Wilson | bc75286 | 2013-02-21 20:04:31 +0000 | [diff] [blame] | 2415 | } |
Ville Syrjälä | 29cf949 | 2016-02-15 22:54:42 +0200 | [diff] [blame] | 2416 | |
| 2417 | return offset_aligned; |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2418 | } |
| 2419 | |
Damien Lespiau | b35d63f | 2015-01-20 12:51:50 +0000 | [diff] [blame] | 2420 | static int i9xx_format_to_fourcc(int format) |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2421 | { |
| 2422 | switch (format) { |
| 2423 | case DISPPLANE_8BPP: |
| 2424 | return DRM_FORMAT_C8; |
| 2425 | case DISPPLANE_BGRX555: |
| 2426 | return DRM_FORMAT_XRGB1555; |
| 2427 | case DISPPLANE_BGRX565: |
| 2428 | return DRM_FORMAT_RGB565; |
| 2429 | default: |
| 2430 | case DISPPLANE_BGRX888: |
| 2431 | return DRM_FORMAT_XRGB8888; |
| 2432 | case DISPPLANE_RGBX888: |
| 2433 | return DRM_FORMAT_XBGR8888; |
| 2434 | case DISPPLANE_BGRX101010: |
| 2435 | return DRM_FORMAT_XRGB2101010; |
| 2436 | case DISPPLANE_RGBX101010: |
| 2437 | return DRM_FORMAT_XBGR2101010; |
| 2438 | } |
| 2439 | } |
| 2440 | |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 2441 | static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha) |
| 2442 | { |
| 2443 | switch (format) { |
| 2444 | case PLANE_CTL_FORMAT_RGB_565: |
| 2445 | return DRM_FORMAT_RGB565; |
| 2446 | default: |
| 2447 | case PLANE_CTL_FORMAT_XRGB_8888: |
| 2448 | if (rgb_order) { |
| 2449 | if (alpha) |
| 2450 | return DRM_FORMAT_ABGR8888; |
| 2451 | else |
| 2452 | return DRM_FORMAT_XBGR8888; |
| 2453 | } else { |
| 2454 | if (alpha) |
| 2455 | return DRM_FORMAT_ARGB8888; |
| 2456 | else |
| 2457 | return DRM_FORMAT_XRGB8888; |
| 2458 | } |
| 2459 | case PLANE_CTL_FORMAT_XRGB_2101010: |
| 2460 | if (rgb_order) |
| 2461 | return DRM_FORMAT_XBGR2101010; |
| 2462 | else |
| 2463 | return DRM_FORMAT_XRGB2101010; |
| 2464 | } |
| 2465 | } |
| 2466 | |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 2467 | static bool |
Daniel Vetter | f6936e2 | 2015-03-26 12:17:05 +0100 | [diff] [blame] | 2468 | intel_alloc_initial_plane_obj(struct intel_crtc *crtc, |
| 2469 | struct intel_initial_plane_config *plane_config) |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2470 | { |
| 2471 | struct drm_device *dev = crtc->base.dev; |
Paulo Zanoni | 3badb49 | 2015-09-23 12:52:23 -0300 | [diff] [blame] | 2472 | struct drm_i915_private *dev_priv = to_i915(dev); |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 2473 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2474 | struct drm_i915_gem_object *obj = NULL; |
| 2475 | struct drm_mode_fb_cmd2 mode_cmd = { 0 }; |
Damien Lespiau | 2d14030 | 2015-02-05 17:22:18 +0000 | [diff] [blame] | 2476 | struct drm_framebuffer *fb = &plane_config->fb->base; |
Daniel Vetter | f37b5c2 | 2015-02-10 23:12:27 +0100 | [diff] [blame] | 2477 | u32 base_aligned = round_down(plane_config->base, PAGE_SIZE); |
| 2478 | u32 size_aligned = round_up(plane_config->base + plane_config->size, |
| 2479 | PAGE_SIZE); |
| 2480 | |
| 2481 | size_aligned -= base_aligned; |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2482 | |
Chris Wilson | ff2652e | 2014-03-10 08:07:02 +0000 | [diff] [blame] | 2483 | if (plane_config->size == 0) |
| 2484 | return false; |
| 2485 | |
Paulo Zanoni | 3badb49 | 2015-09-23 12:52:23 -0300 | [diff] [blame] | 2486 | /* If the FB is too big, just don't use it since fbdev is not very |
| 2487 | * important and we should probably use that space with FBC or other |
| 2488 | * features. */ |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 2489 | if (size_aligned * 2 > ggtt->stolen_usable_size) |
Paulo Zanoni | 3badb49 | 2015-09-23 12:52:23 -0300 | [diff] [blame] | 2490 | return false; |
| 2491 | |
Tvrtko Ursulin | 12c83d9 | 2016-02-11 10:27:29 +0000 | [diff] [blame] | 2492 | mutex_lock(&dev->struct_mutex); |
| 2493 | |
Daniel Vetter | f37b5c2 | 2015-02-10 23:12:27 +0100 | [diff] [blame] | 2494 | obj = i915_gem_object_create_stolen_for_preallocated(dev, |
| 2495 | base_aligned, |
| 2496 | base_aligned, |
| 2497 | size_aligned); |
Tvrtko Ursulin | 12c83d9 | 2016-02-11 10:27:29 +0000 | [diff] [blame] | 2498 | if (!obj) { |
| 2499 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2500 | return false; |
Tvrtko Ursulin | 12c83d9 | 2016-02-11 10:27:29 +0000 | [diff] [blame] | 2501 | } |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2502 | |
Damien Lespiau | 49af449 | 2015-01-20 12:51:44 +0000 | [diff] [blame] | 2503 | obj->tiling_mode = plane_config->tiling; |
| 2504 | if (obj->tiling_mode == I915_TILING_X) |
Damien Lespiau | 6bf129d | 2015-02-05 17:22:16 +0000 | [diff] [blame] | 2505 | obj->stride = fb->pitches[0]; |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2506 | |
Damien Lespiau | 6bf129d | 2015-02-05 17:22:16 +0000 | [diff] [blame] | 2507 | mode_cmd.pixel_format = fb->pixel_format; |
| 2508 | mode_cmd.width = fb->width; |
| 2509 | mode_cmd.height = fb->height; |
| 2510 | mode_cmd.pitches[0] = fb->pitches[0]; |
Daniel Vetter | 18c5247 | 2015-02-10 17:16:09 +0000 | [diff] [blame] | 2511 | mode_cmd.modifier[0] = fb->modifier[0]; |
| 2512 | mode_cmd.flags = DRM_MODE_FB_MODIFIERS; |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2513 | |
Damien Lespiau | 6bf129d | 2015-02-05 17:22:16 +0000 | [diff] [blame] | 2514 | if (intel_framebuffer_init(dev, to_intel_framebuffer(fb), |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2515 | &mode_cmd, obj)) { |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2516 | DRM_DEBUG_KMS("intel fb init failed\n"); |
| 2517 | goto out_unref_obj; |
| 2518 | } |
Tvrtko Ursulin | 12c83d9 | 2016-02-11 10:27:29 +0000 | [diff] [blame] | 2519 | |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2520 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2521 | |
Daniel Vetter | f6936e2 | 2015-03-26 12:17:05 +0100 | [diff] [blame] | 2522 | DRM_DEBUG_KMS("initial plane fb obj %p\n", obj); |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2523 | return true; |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2524 | |
| 2525 | out_unref_obj: |
| 2526 | drm_gem_object_unreference(&obj->base); |
| 2527 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2528 | return false; |
| 2529 | } |
| 2530 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 2531 | /* Update plane->state->fb to match plane->fb after driver-internal updates */ |
| 2532 | static void |
| 2533 | update_state_fb(struct drm_plane *plane) |
| 2534 | { |
| 2535 | if (plane->fb == plane->state->fb) |
| 2536 | return; |
| 2537 | |
| 2538 | if (plane->state->fb) |
| 2539 | drm_framebuffer_unreference(plane->state->fb); |
| 2540 | plane->state->fb = plane->fb; |
| 2541 | if (plane->state->fb) |
| 2542 | drm_framebuffer_reference(plane->state->fb); |
| 2543 | } |
| 2544 | |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 2545 | static void |
Daniel Vetter | f6936e2 | 2015-03-26 12:17:05 +0100 | [diff] [blame] | 2546 | intel_find_initial_plane_obj(struct intel_crtc *intel_crtc, |
| 2547 | struct intel_initial_plane_config *plane_config) |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2548 | { |
| 2549 | struct drm_device *dev = intel_crtc->base.dev; |
Jesse Barnes | d9ceb81 | 2014-10-09 12:57:43 -0700 | [diff] [blame] | 2550 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2551 | struct drm_crtc *c; |
| 2552 | struct intel_crtc *i; |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 2553 | struct drm_i915_gem_object *obj; |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2554 | struct drm_plane *primary = intel_crtc->base.primary; |
Maarten Lankhorst | be5651f | 2015-07-13 16:30:18 +0200 | [diff] [blame] | 2555 | struct drm_plane_state *plane_state = primary->state; |
Matt Roper | 200757f | 2015-12-03 11:37:36 -0800 | [diff] [blame] | 2556 | struct drm_crtc_state *crtc_state = intel_crtc->base.state; |
| 2557 | struct intel_plane *intel_plane = to_intel_plane(primary); |
Matt Roper | 0a8d8a8 | 2015-12-03 11:37:38 -0800 | [diff] [blame] | 2558 | struct intel_plane_state *intel_state = |
| 2559 | to_intel_plane_state(plane_state); |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2560 | struct drm_framebuffer *fb; |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2561 | |
Damien Lespiau | 2d14030 | 2015-02-05 17:22:18 +0000 | [diff] [blame] | 2562 | if (!plane_config->fb) |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2563 | return; |
| 2564 | |
Daniel Vetter | f6936e2 | 2015-03-26 12:17:05 +0100 | [diff] [blame] | 2565 | if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) { |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2566 | fb = &plane_config->fb->base; |
| 2567 | goto valid_fb; |
Damien Lespiau | f55548b | 2015-02-05 18:30:20 +0000 | [diff] [blame] | 2568 | } |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2569 | |
Damien Lespiau | 2d14030 | 2015-02-05 17:22:18 +0000 | [diff] [blame] | 2570 | kfree(plane_config->fb); |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2571 | |
| 2572 | /* |
| 2573 | * Failed to alloc the obj, check to see if we should share |
| 2574 | * an fb with another CRTC instead |
| 2575 | */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 2576 | for_each_crtc(dev, c) { |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2577 | i = to_intel_crtc(c); |
| 2578 | |
| 2579 | if (c == &intel_crtc->base) |
| 2580 | continue; |
| 2581 | |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 2582 | if (!i->active) |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2583 | continue; |
| 2584 | |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2585 | fb = c->primary->fb; |
| 2586 | if (!fb) |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 2587 | continue; |
| 2588 | |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2589 | obj = intel_fb_obj(fb); |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 2590 | if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) { |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2591 | drm_framebuffer_reference(fb); |
| 2592 | goto valid_fb; |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 2593 | } |
| 2594 | } |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2595 | |
Matt Roper | 200757f | 2015-12-03 11:37:36 -0800 | [diff] [blame] | 2596 | /* |
| 2597 | * We've failed to reconstruct the BIOS FB. Current display state |
| 2598 | * indicates that the primary plane is visible, but has a NULL FB, |
| 2599 | * which will lead to problems later if we don't fix it up. The |
| 2600 | * simplest solution is to just disable the primary plane now and |
| 2601 | * pretend the BIOS never had it enabled. |
| 2602 | */ |
| 2603 | to_intel_plane_state(plane_state)->visible = false; |
| 2604 | crtc_state->plane_mask &= ~(1 << drm_plane_index(primary)); |
Ville Syrjälä | 2622a08 | 2016-03-09 19:07:26 +0200 | [diff] [blame] | 2605 | intel_pre_disable_primary_noatomic(&intel_crtc->base); |
Matt Roper | 200757f | 2015-12-03 11:37:36 -0800 | [diff] [blame] | 2606 | intel_plane->disable_plane(primary, &intel_crtc->base); |
| 2607 | |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2608 | return; |
| 2609 | |
| 2610 | valid_fb: |
Ville Syrjälä | f44e265 | 2015-11-13 19:16:13 +0200 | [diff] [blame] | 2611 | plane_state->src_x = 0; |
| 2612 | plane_state->src_y = 0; |
Maarten Lankhorst | be5651f | 2015-07-13 16:30:18 +0200 | [diff] [blame] | 2613 | plane_state->src_w = fb->width << 16; |
| 2614 | plane_state->src_h = fb->height << 16; |
| 2615 | |
Ville Syrjälä | f44e265 | 2015-11-13 19:16:13 +0200 | [diff] [blame] | 2616 | plane_state->crtc_x = 0; |
| 2617 | plane_state->crtc_y = 0; |
Maarten Lankhorst | be5651f | 2015-07-13 16:30:18 +0200 | [diff] [blame] | 2618 | plane_state->crtc_w = fb->width; |
| 2619 | plane_state->crtc_h = fb->height; |
| 2620 | |
Matt Roper | 0a8d8a8 | 2015-12-03 11:37:38 -0800 | [diff] [blame] | 2621 | intel_state->src.x1 = plane_state->src_x; |
| 2622 | intel_state->src.y1 = plane_state->src_y; |
| 2623 | intel_state->src.x2 = plane_state->src_x + plane_state->src_w; |
| 2624 | intel_state->src.y2 = plane_state->src_y + plane_state->src_h; |
| 2625 | intel_state->dst.x1 = plane_state->crtc_x; |
| 2626 | intel_state->dst.y1 = plane_state->crtc_y; |
| 2627 | intel_state->dst.x2 = plane_state->crtc_x + plane_state->crtc_w; |
| 2628 | intel_state->dst.y2 = plane_state->crtc_y + plane_state->crtc_h; |
| 2629 | |
Daniel Vetter | 88595ac | 2015-03-26 12:42:24 +0100 | [diff] [blame] | 2630 | obj = intel_fb_obj(fb); |
| 2631 | if (obj->tiling_mode != I915_TILING_NONE) |
| 2632 | dev_priv->preserve_bios_swizzle = true; |
| 2633 | |
Maarten Lankhorst | be5651f | 2015-07-13 16:30:18 +0200 | [diff] [blame] | 2634 | drm_framebuffer_reference(fb); |
| 2635 | primary->fb = primary->state->fb = fb; |
Maarten Lankhorst | 36750f2 | 2015-06-01 12:49:54 +0200 | [diff] [blame] | 2636 | primary->crtc = primary->state->crtc = &intel_crtc->base; |
Maarten Lankhorst | 36750f2 | 2015-06-01 12:49:54 +0200 | [diff] [blame] | 2637 | intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary)); |
Ville Syrjälä | a9ff871 | 2015-06-24 21:59:34 +0300 | [diff] [blame] | 2638 | obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit; |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 2639 | } |
| 2640 | |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2641 | static void i9xx_update_primary_plane(struct drm_plane *primary, |
| 2642 | const struct intel_crtc_state *crtc_state, |
| 2643 | const struct intel_plane_state *plane_state) |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2644 | { |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2645 | struct drm_device *dev = primary->dev; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2646 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2647 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); |
| 2648 | struct drm_framebuffer *fb = plane_state->base.fb; |
| 2649 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2650 | int plane = intel_crtc->plane; |
Ville Syrjälä | 54ea9da | 2016-01-20 21:05:25 +0200 | [diff] [blame] | 2651 | u32 linear_offset; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2652 | u32 dspcntr; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 2653 | i915_reg_t reg = DSPCNTR(plane); |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2654 | unsigned int rotation = plane_state->base.rotation; |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2655 | int cpp = drm_format_plane_cpp(fb->pixel_format, 0); |
Ville Syrjälä | 54ea9da | 2016-01-20 21:05:25 +0200 | [diff] [blame] | 2656 | int x = plane_state->src.x1 >> 16; |
| 2657 | int y = plane_state->src.y1 >> 16; |
Ville Syrjälä | c9ba6fa | 2014-08-27 17:48:41 +0300 | [diff] [blame] | 2658 | |
Ville Syrjälä | f45651b | 2014-08-08 21:51:10 +0300 | [diff] [blame] | 2659 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
| 2660 | |
Ville Syrjälä | fdd508a6 | 2014-08-08 21:51:11 +0300 | [diff] [blame] | 2661 | dspcntr |= DISPLAY_PLANE_ENABLE; |
Ville Syrjälä | f45651b | 2014-08-08 21:51:10 +0300 | [diff] [blame] | 2662 | |
| 2663 | if (INTEL_INFO(dev)->gen < 4) { |
| 2664 | if (intel_crtc->pipe == PIPE_B) |
| 2665 | dspcntr |= DISPPLANE_SEL_PIPE_B; |
| 2666 | |
| 2667 | /* pipesrc and dspsize control the size that is scaled from, |
| 2668 | * which should always be the user's requested size. |
| 2669 | */ |
| 2670 | I915_WRITE(DSPSIZE(plane), |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2671 | ((crtc_state->pipe_src_h - 1) << 16) | |
| 2672 | (crtc_state->pipe_src_w - 1)); |
Ville Syrjälä | f45651b | 2014-08-08 21:51:10 +0300 | [diff] [blame] | 2673 | I915_WRITE(DSPPOS(plane), 0); |
Ville Syrjälä | c14b048 | 2014-10-16 20:52:34 +0300 | [diff] [blame] | 2674 | } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) { |
| 2675 | I915_WRITE(PRIMSIZE(plane), |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2676 | ((crtc_state->pipe_src_h - 1) << 16) | |
| 2677 | (crtc_state->pipe_src_w - 1)); |
Ville Syrjälä | c14b048 | 2014-10-16 20:52:34 +0300 | [diff] [blame] | 2678 | I915_WRITE(PRIMPOS(plane), 0); |
| 2679 | I915_WRITE(PRIMCNSTALPHA(plane), 0); |
Ville Syrjälä | f45651b | 2014-08-08 21:51:10 +0300 | [diff] [blame] | 2680 | } |
| 2681 | |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2682 | switch (fb->pixel_format) { |
| 2683 | case DRM_FORMAT_C8: |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2684 | dspcntr |= DISPPLANE_8BPP; |
| 2685 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2686 | case DRM_FORMAT_XRGB1555: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2687 | dspcntr |= DISPPLANE_BGRX555; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2688 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2689 | case DRM_FORMAT_RGB565: |
| 2690 | dspcntr |= DISPPLANE_BGRX565; |
| 2691 | break; |
| 2692 | case DRM_FORMAT_XRGB8888: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2693 | dspcntr |= DISPPLANE_BGRX888; |
| 2694 | break; |
| 2695 | case DRM_FORMAT_XBGR8888: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2696 | dspcntr |= DISPPLANE_RGBX888; |
| 2697 | break; |
| 2698 | case DRM_FORMAT_XRGB2101010: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2699 | dspcntr |= DISPPLANE_BGRX101010; |
| 2700 | break; |
| 2701 | case DRM_FORMAT_XBGR2101010: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2702 | dspcntr |= DISPPLANE_RGBX101010; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2703 | break; |
| 2704 | default: |
Daniel Vetter | baba133 | 2013-03-27 00:45:00 +0100 | [diff] [blame] | 2705 | BUG(); |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2706 | } |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2707 | |
Ville Syrjälä | f45651b | 2014-08-08 21:51:10 +0300 | [diff] [blame] | 2708 | if (INTEL_INFO(dev)->gen >= 4 && |
| 2709 | obj->tiling_mode != I915_TILING_NONE) |
| 2710 | dspcntr |= DISPPLANE_TILED; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2711 | |
Ville Syrjälä | de1aa62 | 2013-06-07 10:47:01 +0300 | [diff] [blame] | 2712 | if (IS_G4X(dev)) |
| 2713 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; |
| 2714 | |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2715 | linear_offset = y * fb->pitches[0] + x * cpp; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 2716 | |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2717 | if (INTEL_INFO(dev)->gen >= 4) { |
| 2718 | intel_crtc->dspaddr_offset = |
Ville Syrjälä | 4f2d993 | 2016-02-15 22:54:44 +0200 | [diff] [blame] | 2719 | intel_compute_tile_offset(&x, &y, fb, 0, |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2720 | fb->pitches[0], rotation); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2721 | linear_offset -= intel_crtc->dspaddr_offset; |
| 2722 | } else { |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2723 | intel_crtc->dspaddr_offset = linear_offset; |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2724 | } |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2725 | |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2726 | if (rotation == BIT(DRM_ROTATE_180)) { |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 2727 | dspcntr |= DISPPLANE_ROTATE_180; |
| 2728 | |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2729 | x += (crtc_state->pipe_src_w - 1); |
| 2730 | y += (crtc_state->pipe_src_h - 1); |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 2731 | |
| 2732 | /* Finding the last pixel of the last line of the display |
| 2733 | data and adding to linear_offset*/ |
| 2734 | linear_offset += |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2735 | (crtc_state->pipe_src_h - 1) * fb->pitches[0] + |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2736 | (crtc_state->pipe_src_w - 1) * cpp; |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 2737 | } |
| 2738 | |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 2739 | intel_crtc->adjusted_x = x; |
| 2740 | intel_crtc->adjusted_y = y; |
| 2741 | |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 2742 | I915_WRITE(reg, dspcntr); |
| 2743 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 2744 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 2745 | if (INTEL_INFO(dev)->gen >= 4) { |
Daniel Vetter | 85ba7b7 | 2014-01-24 10:31:44 +0100 | [diff] [blame] | 2746 | I915_WRITE(DSPSURF(plane), |
| 2747 | i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2748 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
Daniel Vetter | e506a0c | 2012-07-05 12:17:29 +0200 | [diff] [blame] | 2749 | I915_WRITE(DSPLINOFF(plane), linear_offset); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2750 | } else |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 2751 | I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 2752 | POSTING_READ(reg); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2753 | } |
| 2754 | |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2755 | static void i9xx_disable_primary_plane(struct drm_plane *primary, |
| 2756 | struct drm_crtc *crtc) |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2757 | { |
| 2758 | struct drm_device *dev = crtc->dev; |
| 2759 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2760 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2761 | int plane = intel_crtc->plane; |
| 2762 | |
| 2763 | I915_WRITE(DSPCNTR(plane), 0); |
| 2764 | if (INTEL_INFO(dev_priv)->gen >= 4) |
| 2765 | I915_WRITE(DSPSURF(plane), 0); |
| 2766 | else |
| 2767 | I915_WRITE(DSPADDR(plane), 0); |
| 2768 | POSTING_READ(DSPCNTR(plane)); |
| 2769 | } |
| 2770 | |
| 2771 | static void ironlake_update_primary_plane(struct drm_plane *primary, |
| 2772 | const struct intel_crtc_state *crtc_state, |
| 2773 | const struct intel_plane_state *plane_state) |
| 2774 | { |
| 2775 | struct drm_device *dev = primary->dev; |
| 2776 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2777 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); |
| 2778 | struct drm_framebuffer *fb = plane_state->base.fb; |
| 2779 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2780 | int plane = intel_crtc->plane; |
Ville Syrjälä | 54ea9da | 2016-01-20 21:05:25 +0200 | [diff] [blame] | 2781 | u32 linear_offset; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2782 | u32 dspcntr; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 2783 | i915_reg_t reg = DSPCNTR(plane); |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2784 | unsigned int rotation = plane_state->base.rotation; |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2785 | int cpp = drm_format_plane_cpp(fb->pixel_format, 0); |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2786 | int x = plane_state->src.x1 >> 16; |
| 2787 | int y = plane_state->src.y1 >> 16; |
Ville Syrjälä | c9ba6fa | 2014-08-27 17:48:41 +0300 | [diff] [blame] | 2788 | |
Ville Syrjälä | f45651b | 2014-08-08 21:51:10 +0300 | [diff] [blame] | 2789 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
Ville Syrjälä | fdd508a6 | 2014-08-08 21:51:11 +0300 | [diff] [blame] | 2790 | dspcntr |= DISPLAY_PLANE_ENABLE; |
Ville Syrjälä | f45651b | 2014-08-08 21:51:10 +0300 | [diff] [blame] | 2791 | |
| 2792 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
| 2793 | dspcntr |= DISPPLANE_PIPE_CSC_ENABLE; |
| 2794 | |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2795 | switch (fb->pixel_format) { |
| 2796 | case DRM_FORMAT_C8: |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2797 | dspcntr |= DISPPLANE_8BPP; |
| 2798 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2799 | case DRM_FORMAT_RGB565: |
| 2800 | dspcntr |= DISPPLANE_BGRX565; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2801 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2802 | case DRM_FORMAT_XRGB8888: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2803 | dspcntr |= DISPPLANE_BGRX888; |
| 2804 | break; |
| 2805 | case DRM_FORMAT_XBGR8888: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2806 | dspcntr |= DISPPLANE_RGBX888; |
| 2807 | break; |
| 2808 | case DRM_FORMAT_XRGB2101010: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2809 | dspcntr |= DISPPLANE_BGRX101010; |
| 2810 | break; |
| 2811 | case DRM_FORMAT_XBGR2101010: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 2812 | dspcntr |= DISPPLANE_RGBX101010; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2813 | break; |
| 2814 | default: |
Daniel Vetter | baba133 | 2013-03-27 00:45:00 +0100 | [diff] [blame] | 2815 | BUG(); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2816 | } |
| 2817 | |
| 2818 | if (obj->tiling_mode != I915_TILING_NONE) |
| 2819 | dspcntr |= DISPPLANE_TILED; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2820 | |
Ville Syrjälä | f45651b | 2014-08-08 21:51:10 +0300 | [diff] [blame] | 2821 | if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) |
Paulo Zanoni | 1f5d76d | 2013-08-23 19:51:28 -0300 | [diff] [blame] | 2822 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2823 | |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2824 | linear_offset = y * fb->pitches[0] + x * cpp; |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2825 | intel_crtc->dspaddr_offset = |
Ville Syrjälä | 4f2d993 | 2016-02-15 22:54:44 +0200 | [diff] [blame] | 2826 | intel_compute_tile_offset(&x, &y, fb, 0, |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2827 | fb->pitches[0], rotation); |
Daniel Vetter | c2c7513 | 2012-07-05 12:17:30 +0200 | [diff] [blame] | 2828 | linear_offset -= intel_crtc->dspaddr_offset; |
Ville Syrjälä | 8d0deca | 2016-02-15 22:54:41 +0200 | [diff] [blame] | 2829 | if (rotation == BIT(DRM_ROTATE_180)) { |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 2830 | dspcntr |= DISPPLANE_ROTATE_180; |
| 2831 | |
| 2832 | if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) { |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2833 | x += (crtc_state->pipe_src_w - 1); |
| 2834 | y += (crtc_state->pipe_src_h - 1); |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 2835 | |
| 2836 | /* Finding the last pixel of the last line of the display |
| 2837 | data and adding to linear_offset*/ |
| 2838 | linear_offset += |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 2839 | (crtc_state->pipe_src_h - 1) * fb->pitches[0] + |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2840 | (crtc_state->pipe_src_w - 1) * cpp; |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 2841 | } |
| 2842 | } |
| 2843 | |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 2844 | intel_crtc->adjusted_x = x; |
| 2845 | intel_crtc->adjusted_y = y; |
| 2846 | |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 2847 | I915_WRITE(reg, dspcntr); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2848 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 2849 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
Daniel Vetter | 85ba7b7 | 2014-01-24 10:31:44 +0100 | [diff] [blame] | 2850 | I915_WRITE(DSPSURF(plane), |
| 2851 | i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset); |
Paulo Zanoni | b3dc685 | 2013-11-02 21:07:33 -0700 | [diff] [blame] | 2852 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
Damien Lespiau | bc1c91e | 2012-10-29 12:14:21 +0000 | [diff] [blame] | 2853 | I915_WRITE(DSPOFFSET(plane), (y << 16) | x); |
| 2854 | } else { |
| 2855 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
| 2856 | I915_WRITE(DSPLINOFF(plane), linear_offset); |
| 2857 | } |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2858 | POSTING_READ(reg); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 2859 | } |
| 2860 | |
Ville Syrjälä | 7b49f94 | 2016-01-12 21:08:32 +0200 | [diff] [blame] | 2861 | u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv, |
| 2862 | uint64_t fb_modifier, uint32_t pixel_format) |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 2863 | { |
Ville Syrjälä | 7b49f94 | 2016-01-12 21:08:32 +0200 | [diff] [blame] | 2864 | if (fb_modifier == DRM_FORMAT_MOD_NONE) { |
| 2865 | return 64; |
| 2866 | } else { |
| 2867 | int cpp = drm_format_plane_cpp(pixel_format, 0); |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 2868 | |
Ville Syrjälä | 27ba391 | 2016-02-15 22:54:40 +0200 | [diff] [blame] | 2869 | return intel_tile_width_bytes(dev_priv, fb_modifier, cpp); |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 2870 | } |
| 2871 | } |
| 2872 | |
Mika Kuoppala | 44eb0cb | 2015-10-30 13:26:15 +0200 | [diff] [blame] | 2873 | u32 intel_plane_obj_offset(struct intel_plane *intel_plane, |
| 2874 | struct drm_i915_gem_object *obj, |
| 2875 | unsigned int plane) |
Tvrtko Ursulin | 121920f | 2015-03-23 11:10:37 +0000 | [diff] [blame] | 2876 | { |
Daniel Vetter | ce7f172 | 2015-10-14 16:51:06 +0200 | [diff] [blame] | 2877 | struct i915_ggtt_view view; |
Tvrtko Ursulin | dedf278 | 2015-09-21 10:45:35 +0100 | [diff] [blame] | 2878 | struct i915_vma *vma; |
Mika Kuoppala | 44eb0cb | 2015-10-30 13:26:15 +0200 | [diff] [blame] | 2879 | u64 offset; |
Tvrtko Ursulin | 121920f | 2015-03-23 11:10:37 +0000 | [diff] [blame] | 2880 | |
Ville Syrjälä | e794129 | 2016-01-19 18:23:17 +0200 | [diff] [blame] | 2881 | intel_fill_fb_ggtt_view(&view, intel_plane->base.state->fb, |
Ville Syrjälä | 3465c58 | 2016-02-15 22:54:43 +0200 | [diff] [blame] | 2882 | intel_plane->base.state->rotation); |
Tvrtko Ursulin | 121920f | 2015-03-23 11:10:37 +0000 | [diff] [blame] | 2883 | |
Daniel Vetter | ce7f172 | 2015-10-14 16:51:06 +0200 | [diff] [blame] | 2884 | vma = i915_gem_obj_to_ggtt_view(obj, &view); |
Tvrtko Ursulin | dedf278 | 2015-09-21 10:45:35 +0100 | [diff] [blame] | 2885 | if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n", |
Daniel Vetter | ce7f172 | 2015-10-14 16:51:06 +0200 | [diff] [blame] | 2886 | view.type)) |
Tvrtko Ursulin | dedf278 | 2015-09-21 10:45:35 +0100 | [diff] [blame] | 2887 | return -1; |
| 2888 | |
Mika Kuoppala | 44eb0cb | 2015-10-30 13:26:15 +0200 | [diff] [blame] | 2889 | offset = vma->node.start; |
Tvrtko Ursulin | dedf278 | 2015-09-21 10:45:35 +0100 | [diff] [blame] | 2890 | |
| 2891 | if (plane == 1) { |
Ville Syrjälä | 7723f47d | 2016-01-20 21:05:22 +0200 | [diff] [blame] | 2892 | offset += vma->ggtt_view.params.rotated.uv_start_page * |
Tvrtko Ursulin | dedf278 | 2015-09-21 10:45:35 +0100 | [diff] [blame] | 2893 | PAGE_SIZE; |
| 2894 | } |
| 2895 | |
Mika Kuoppala | 44eb0cb | 2015-10-30 13:26:15 +0200 | [diff] [blame] | 2896 | WARN_ON(upper_32_bits(offset)); |
| 2897 | |
| 2898 | return lower_32_bits(offset); |
Tvrtko Ursulin | 121920f | 2015-03-23 11:10:37 +0000 | [diff] [blame] | 2899 | } |
| 2900 | |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 2901 | static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id) |
| 2902 | { |
| 2903 | struct drm_device *dev = intel_crtc->base.dev; |
| 2904 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2905 | |
| 2906 | I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0); |
| 2907 | I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0); |
| 2908 | I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0); |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 2909 | } |
| 2910 | |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 2911 | /* |
| 2912 | * This function detaches (aka. unbinds) unused scalers in hardware |
| 2913 | */ |
Maarten Lankhorst | 0583236 | 2015-06-15 12:33:48 +0200 | [diff] [blame] | 2914 | static void skl_detach_scalers(struct intel_crtc *intel_crtc) |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 2915 | { |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 2916 | struct intel_crtc_scaler_state *scaler_state; |
| 2917 | int i; |
| 2918 | |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 2919 | scaler_state = &intel_crtc->config->scaler_state; |
| 2920 | |
| 2921 | /* loop through and disable scalers that aren't in use */ |
| 2922 | for (i = 0; i < intel_crtc->num_scalers; i++) { |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 2923 | if (!scaler_state->scalers[i].in_use) |
| 2924 | skl_detach_scaler(intel_crtc, i); |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 2925 | } |
| 2926 | } |
| 2927 | |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2928 | u32 skl_plane_ctl_format(uint32_t pixel_format) |
| 2929 | { |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2930 | switch (pixel_format) { |
Damien Lespiau | d161cf7 | 2015-05-12 16:13:17 +0100 | [diff] [blame] | 2931 | case DRM_FORMAT_C8: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2932 | return PLANE_CTL_FORMAT_INDEXED; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2933 | case DRM_FORMAT_RGB565: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2934 | return PLANE_CTL_FORMAT_RGB_565; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2935 | case DRM_FORMAT_XBGR8888: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2936 | return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2937 | case DRM_FORMAT_XRGB8888: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2938 | return PLANE_CTL_FORMAT_XRGB_8888; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2939 | /* |
| 2940 | * XXX: For ARBG/ABGR formats we default to expecting scanout buffers |
| 2941 | * to be already pre-multiplied. We need to add a knob (or a different |
| 2942 | * DRM_FORMAT) for user-space to configure that. |
| 2943 | */ |
| 2944 | case DRM_FORMAT_ABGR8888: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2945 | return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX | |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2946 | PLANE_CTL_ALPHA_SW_PREMULTIPLY; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2947 | case DRM_FORMAT_ARGB8888: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2948 | return PLANE_CTL_FORMAT_XRGB_8888 | |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2949 | PLANE_CTL_ALPHA_SW_PREMULTIPLY; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2950 | case DRM_FORMAT_XRGB2101010: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2951 | return PLANE_CTL_FORMAT_XRGB_2101010; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2952 | case DRM_FORMAT_XBGR2101010: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2953 | return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2954 | case DRM_FORMAT_YUYV: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2955 | return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2956 | case DRM_FORMAT_YVYU: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2957 | return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2958 | case DRM_FORMAT_UYVY: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2959 | return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2960 | case DRM_FORMAT_VYUY: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2961 | return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2962 | default: |
Damien Lespiau | 4249eee | 2015-05-12 16:13:16 +0100 | [diff] [blame] | 2963 | MISSING_CASE(pixel_format); |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2964 | } |
Damien Lespiau | 8cfcba4 | 2015-05-12 16:13:14 +0100 | [diff] [blame] | 2965 | |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2966 | return 0; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2967 | } |
| 2968 | |
| 2969 | u32 skl_plane_ctl_tiling(uint64_t fb_modifier) |
| 2970 | { |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2971 | switch (fb_modifier) { |
| 2972 | case DRM_FORMAT_MOD_NONE: |
| 2973 | break; |
| 2974 | case I915_FORMAT_MOD_X_TILED: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2975 | return PLANE_CTL_TILED_X; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2976 | case I915_FORMAT_MOD_Y_TILED: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2977 | return PLANE_CTL_TILED_Y; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2978 | case I915_FORMAT_MOD_Yf_TILED: |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2979 | return PLANE_CTL_TILED_YF; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2980 | default: |
| 2981 | MISSING_CASE(fb_modifier); |
| 2982 | } |
Damien Lespiau | 8cfcba4 | 2015-05-12 16:13:14 +0100 | [diff] [blame] | 2983 | |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2984 | return 0; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2985 | } |
| 2986 | |
| 2987 | u32 skl_plane_ctl_rotation(unsigned int rotation) |
| 2988 | { |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2989 | switch (rotation) { |
| 2990 | case BIT(DRM_ROTATE_0): |
| 2991 | break; |
Sonika Jindal | 1e8df16 | 2015-05-20 13:40:48 +0530 | [diff] [blame] | 2992 | /* |
| 2993 | * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr |
| 2994 | * while i915 HW rotation is clockwise, thats why this swapping. |
| 2995 | */ |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2996 | case BIT(DRM_ROTATE_90): |
Sonika Jindal | 1e8df16 | 2015-05-20 13:40:48 +0530 | [diff] [blame] | 2997 | return PLANE_CTL_ROTATE_270; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 2998 | case BIT(DRM_ROTATE_180): |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 2999 | return PLANE_CTL_ROTATE_180; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3000 | case BIT(DRM_ROTATE_270): |
Sonika Jindal | 1e8df16 | 2015-05-20 13:40:48 +0530 | [diff] [blame] | 3001 | return PLANE_CTL_ROTATE_90; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3002 | default: |
| 3003 | MISSING_CASE(rotation); |
| 3004 | } |
| 3005 | |
Damien Lespiau | c34ce3d | 2015-05-15 15:07:02 +0100 | [diff] [blame] | 3006 | return 0; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3007 | } |
| 3008 | |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3009 | static void skylake_update_primary_plane(struct drm_plane *plane, |
| 3010 | const struct intel_crtc_state *crtc_state, |
| 3011 | const struct intel_plane_state *plane_state) |
Damien Lespiau | 70d21f0 | 2013-07-03 21:06:04 +0100 | [diff] [blame] | 3012 | { |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3013 | struct drm_device *dev = plane->dev; |
Damien Lespiau | 70d21f0 | 2013-07-03 21:06:04 +0100 | [diff] [blame] | 3014 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3015 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); |
| 3016 | struct drm_framebuffer *fb = plane_state->base.fb; |
| 3017 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Damien Lespiau | 70d21f0 | 2013-07-03 21:06:04 +0100 | [diff] [blame] | 3018 | int pipe = intel_crtc->pipe; |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3019 | u32 plane_ctl, stride_div, stride; |
| 3020 | u32 tile_height, plane_offset, plane_size; |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3021 | unsigned int rotation = plane_state->base.rotation; |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3022 | int x_offset, y_offset; |
Mika Kuoppala | 44eb0cb | 2015-10-30 13:26:15 +0200 | [diff] [blame] | 3023 | u32 surf_addr; |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3024 | int scaler_id = plane_state->scaler_id; |
| 3025 | int src_x = plane_state->src.x1 >> 16; |
| 3026 | int src_y = plane_state->src.y1 >> 16; |
| 3027 | int src_w = drm_rect_width(&plane_state->src) >> 16; |
| 3028 | int src_h = drm_rect_height(&plane_state->src) >> 16; |
| 3029 | int dst_x = plane_state->dst.x1; |
| 3030 | int dst_y = plane_state->dst.y1; |
| 3031 | int dst_w = drm_rect_width(&plane_state->dst); |
| 3032 | int dst_h = drm_rect_height(&plane_state->dst); |
Damien Lespiau | 70d21f0 | 2013-07-03 21:06:04 +0100 | [diff] [blame] | 3033 | |
| 3034 | plane_ctl = PLANE_CTL_ENABLE | |
| 3035 | PLANE_CTL_PIPE_GAMMA_ENABLE | |
| 3036 | PLANE_CTL_PIPE_CSC_ENABLE; |
| 3037 | |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3038 | plane_ctl |= skl_plane_ctl_format(fb->pixel_format); |
| 3039 | plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]); |
Damien Lespiau | 70d21f0 | 2013-07-03 21:06:04 +0100 | [diff] [blame] | 3040 | plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3041 | plane_ctl |= skl_plane_ctl_rotation(rotation); |
Damien Lespiau | 70d21f0 | 2013-07-03 21:06:04 +0100 | [diff] [blame] | 3042 | |
Ville Syrjälä | 7b49f94 | 2016-01-12 21:08:32 +0200 | [diff] [blame] | 3043 | stride_div = intel_fb_stride_alignment(dev_priv, fb->modifier[0], |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 3044 | fb->pixel_format); |
Tvrtko Ursulin | dedf278 | 2015-09-21 10:45:35 +0100 | [diff] [blame] | 3045 | surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0); |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3046 | |
Paulo Zanoni | a42e5a2 | 2015-09-30 17:05:43 -0300 | [diff] [blame] | 3047 | WARN_ON(drm_rect_width(&plane_state->src) == 0); |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3048 | |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3049 | if (intel_rotation_90_or_270(rotation)) { |
Ville Syrjälä | 832be82 | 2016-01-12 21:08:33 +0200 | [diff] [blame] | 3050 | int cpp = drm_format_plane_cpp(fb->pixel_format, 0); |
| 3051 | |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3052 | /* stride = Surface height in tiles */ |
Ville Syrjälä | 832be82 | 2016-01-12 21:08:33 +0200 | [diff] [blame] | 3053 | tile_height = intel_tile_height(dev_priv, fb->modifier[0], cpp); |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3054 | stride = DIV_ROUND_UP(fb->height, tile_height); |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3055 | x_offset = stride * tile_height - src_y - src_h; |
| 3056 | y_offset = src_x; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3057 | plane_size = (src_w - 1) << 16 | (src_h - 1); |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3058 | } else { |
| 3059 | stride = fb->pitches[0] / stride_div; |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3060 | x_offset = src_x; |
| 3061 | y_offset = src_y; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3062 | plane_size = (src_h - 1) << 16 | (src_w - 1); |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3063 | } |
| 3064 | plane_offset = y_offset << 16 | x_offset; |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 3065 | |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 3066 | intel_crtc->adjusted_x = x_offset; |
| 3067 | intel_crtc->adjusted_y = y_offset; |
| 3068 | |
Damien Lespiau | 70d21f0 | 2013-07-03 21:06:04 +0100 | [diff] [blame] | 3069 | I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl); |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 3070 | I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset); |
| 3071 | I915_WRITE(PLANE_SIZE(pipe, 0), plane_size); |
| 3072 | I915_WRITE(PLANE_STRIDE(pipe, 0), stride); |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 3073 | |
| 3074 | if (scaler_id >= 0) { |
| 3075 | uint32_t ps_ctrl = 0; |
| 3076 | |
| 3077 | WARN_ON(!dst_w || !dst_h); |
| 3078 | ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) | |
| 3079 | crtc_state->scaler_state.scalers[scaler_id].mode; |
| 3080 | I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl); |
| 3081 | I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0); |
| 3082 | I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y); |
| 3083 | I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h); |
| 3084 | I915_WRITE(PLANE_POS(pipe, 0), 0); |
| 3085 | } else { |
| 3086 | I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x); |
| 3087 | } |
| 3088 | |
Tvrtko Ursulin | 121920f | 2015-03-23 11:10:37 +0000 | [diff] [blame] | 3089 | I915_WRITE(PLANE_SURF(pipe, 0), surf_addr); |
Damien Lespiau | 70d21f0 | 2013-07-03 21:06:04 +0100 | [diff] [blame] | 3090 | |
| 3091 | POSTING_READ(PLANE_SURF(pipe, 0)); |
| 3092 | } |
| 3093 | |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3094 | static void skylake_disable_primary_plane(struct drm_plane *primary, |
| 3095 | struct drm_crtc *crtc) |
| 3096 | { |
| 3097 | struct drm_device *dev = crtc->dev; |
| 3098 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3099 | int pipe = to_intel_crtc(crtc)->pipe; |
| 3100 | |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3101 | I915_WRITE(PLANE_CTL(pipe, 0), 0); |
| 3102 | I915_WRITE(PLANE_SURF(pipe, 0), 0); |
| 3103 | POSTING_READ(PLANE_SURF(pipe, 0)); |
| 3104 | } |
| 3105 | |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 3106 | /* Assume fb object is pinned & idle & fenced and just update base pointers */ |
| 3107 | static int |
| 3108 | intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 3109 | int x, int y, enum mode_set_atomic state) |
| 3110 | { |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3111 | /* Support for kgdboc is disabled, this needs a major rework. */ |
| 3112 | DRM_ERROR("legacy panic handler not supported any more.\n"); |
Jesse Barnes | 17638cd | 2011-06-24 12:19:23 -0700 | [diff] [blame] | 3113 | |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3114 | return -ENODEV; |
Jesse Barnes | 8125556 | 2010-08-02 12:07:50 -0700 | [diff] [blame] | 3115 | } |
| 3116 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3117 | static void intel_complete_page_flips(struct drm_i915_private *dev_priv) |
| 3118 | { |
| 3119 | struct intel_crtc *crtc; |
| 3120 | |
| 3121 | for_each_intel_crtc(dev_priv->dev, crtc) |
| 3122 | intel_finish_page_flip_cs(dev_priv, crtc->pipe); |
| 3123 | } |
| 3124 | |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3125 | static void intel_update_primary_planes(struct drm_device *dev) |
| 3126 | { |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3127 | struct drm_crtc *crtc; |
Ville Syrjälä | 96a0291 | 2013-02-18 19:08:49 +0200 | [diff] [blame] | 3128 | |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 3129 | for_each_crtc(dev, crtc) { |
Maarten Lankhorst | 11c22da | 2015-09-10 16:07:58 +0200 | [diff] [blame] | 3130 | struct intel_plane *plane = to_intel_plane(crtc->primary); |
| 3131 | struct intel_plane_state *plane_state; |
Ville Syrjälä | 96a0291 | 2013-02-18 19:08:49 +0200 | [diff] [blame] | 3132 | |
Maarten Lankhorst | 11c22da | 2015-09-10 16:07:58 +0200 | [diff] [blame] | 3133 | drm_modeset_lock_crtc(crtc, &plane->base); |
Maarten Lankhorst | 11c22da | 2015-09-10 16:07:58 +0200 | [diff] [blame] | 3134 | plane_state = to_intel_plane_state(plane->base.state); |
| 3135 | |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 3136 | if (plane_state->visible) |
| 3137 | plane->update_plane(&plane->base, |
| 3138 | to_intel_crtc_state(crtc->state), |
| 3139 | plane_state); |
Maarten Lankhorst | 11c22da | 2015-09-10 16:07:58 +0200 | [diff] [blame] | 3140 | |
| 3141 | drm_modeset_unlock_crtc(crtc); |
Ville Syrjälä | 96a0291 | 2013-02-18 19:08:49 +0200 | [diff] [blame] | 3142 | } |
| 3143 | } |
| 3144 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3145 | void intel_prepare_reset(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3146 | { |
| 3147 | /* no reset support for gen2 */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3148 | if (IS_GEN2(dev_priv)) |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3149 | return; |
| 3150 | |
| 3151 | /* reset doesn't touch the display */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3152 | if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv)) |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3153 | return; |
| 3154 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3155 | drm_modeset_lock_all(dev_priv->dev); |
Ville Syrjälä | f98ce92 | 2014-11-21 21:54:30 +0200 | [diff] [blame] | 3156 | /* |
| 3157 | * Disabling the crtcs gracefully seems nicer. Also the |
| 3158 | * g33 docs say we should at least disable all the planes. |
| 3159 | */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3160 | intel_display_suspend(dev_priv->dev); |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3161 | } |
| 3162 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3163 | void intel_finish_reset(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3164 | { |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3165 | /* |
| 3166 | * Flips in the rings will be nuked by the reset, |
| 3167 | * so complete all pending flips so that user space |
| 3168 | * will get its events and not get stuck. |
| 3169 | */ |
| 3170 | intel_complete_page_flips(dev_priv); |
| 3171 | |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3172 | /* no reset support for gen2 */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3173 | if (IS_GEN2(dev_priv)) |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3174 | return; |
| 3175 | |
| 3176 | /* reset doesn't touch the display */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3177 | if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv)) { |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3178 | /* |
| 3179 | * Flips in the rings have been nuked by the reset, |
| 3180 | * so update the base address of all primary |
| 3181 | * planes to the the last fb to make sure we're |
| 3182 | * showing the correct fb after a reset. |
Maarten Lankhorst | 11c22da | 2015-09-10 16:07:58 +0200 | [diff] [blame] | 3183 | * |
| 3184 | * FIXME: Atomic will make this obsolete since we won't schedule |
| 3185 | * CS-based flips (which might get lost in gpu resets) any more. |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3186 | */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3187 | intel_update_primary_planes(dev_priv->dev); |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3188 | return; |
| 3189 | } |
| 3190 | |
| 3191 | /* |
| 3192 | * The display has been reset as well, |
| 3193 | * so need a full re-initialization. |
| 3194 | */ |
| 3195 | intel_runtime_pm_disable_interrupts(dev_priv); |
| 3196 | intel_runtime_pm_enable_interrupts(dev_priv); |
| 3197 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3198 | intel_modeset_init_hw(dev_priv->dev); |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3199 | |
| 3200 | spin_lock_irq(&dev_priv->irq_lock); |
| 3201 | if (dev_priv->display.hpd_irq_setup) |
Tvrtko Ursulin | 91d1425 | 2016-05-06 14:48:28 +0100 | [diff] [blame] | 3202 | dev_priv->display.hpd_irq_setup(dev_priv); |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3203 | spin_unlock_irq(&dev_priv->irq_lock); |
| 3204 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3205 | intel_display_resume(dev_priv->dev); |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3206 | |
| 3207 | intel_hpd_init(dev_priv); |
| 3208 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3209 | drm_modeset_unlock_all(dev_priv->dev); |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 3210 | } |
| 3211 | |
Chris Wilson | 7d5e379 | 2014-03-04 13:15:08 +0000 | [diff] [blame] | 3212 | static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc) |
| 3213 | { |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3214 | struct drm_device *dev = crtc->dev; |
| 3215 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3216 | unsigned reset_counter; |
| 3217 | bool pending; |
| 3218 | |
| 3219 | reset_counter = i915_reset_counter(&to_i915(dev)->gpu_error); |
| 3220 | if (intel_crtc->reset_counter != reset_counter) |
| 3221 | return false; |
| 3222 | |
| 3223 | spin_lock_irq(&dev->event_lock); |
| 3224 | pending = to_intel_crtc(crtc)->flip_work != NULL; |
| 3225 | spin_unlock_irq(&dev->event_lock); |
| 3226 | |
| 3227 | return pending; |
Chris Wilson | 7d5e379 | 2014-03-04 13:15:08 +0000 | [diff] [blame] | 3228 | } |
| 3229 | |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 3230 | static void intel_update_pipe_config(struct intel_crtc *crtc, |
| 3231 | struct intel_crtc_state *old_crtc_state) |
Gustavo Padovan | e30e8f7 | 2014-09-10 12:04:17 -0300 | [diff] [blame] | 3232 | { |
| 3233 | struct drm_device *dev = crtc->base.dev; |
| 3234 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 3235 | struct intel_crtc_state *pipe_config = |
| 3236 | to_intel_crtc_state(crtc->base.state); |
Gustavo Padovan | e30e8f7 | 2014-09-10 12:04:17 -0300 | [diff] [blame] | 3237 | |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 3238 | /* drm_atomic_helper_update_legacy_modeset_state might not be called. */ |
| 3239 | crtc->base.mode = crtc->base.state->mode; |
| 3240 | |
| 3241 | DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n", |
| 3242 | old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h, |
| 3243 | pipe_config->pipe_src_w, pipe_config->pipe_src_h); |
Gustavo Padovan | e30e8f7 | 2014-09-10 12:04:17 -0300 | [diff] [blame] | 3244 | |
| 3245 | /* |
| 3246 | * Update pipe size and adjust fitter if needed: the reason for this is |
| 3247 | * that in compute_mode_changes we check the native mode (not the pfit |
| 3248 | * mode) to see if we can flip rather than do a full mode set. In the |
| 3249 | * fastboot case, we'll flip, but if we don't update the pipesrc and |
| 3250 | * pfit state, we'll end up with a big fb scanned out into the wrong |
| 3251 | * sized surface. |
Gustavo Padovan | e30e8f7 | 2014-09-10 12:04:17 -0300 | [diff] [blame] | 3252 | */ |
| 3253 | |
Gustavo Padovan | e30e8f7 | 2014-09-10 12:04:17 -0300 | [diff] [blame] | 3254 | I915_WRITE(PIPESRC(crtc->pipe), |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 3255 | ((pipe_config->pipe_src_w - 1) << 16) | |
| 3256 | (pipe_config->pipe_src_h - 1)); |
| 3257 | |
| 3258 | /* on skylake this is done by detaching scalers */ |
| 3259 | if (INTEL_INFO(dev)->gen >= 9) { |
| 3260 | skl_detach_scalers(crtc); |
| 3261 | |
| 3262 | if (pipe_config->pch_pfit.enabled) |
| 3263 | skylake_pfit_enable(crtc); |
| 3264 | } else if (HAS_PCH_SPLIT(dev)) { |
| 3265 | if (pipe_config->pch_pfit.enabled) |
| 3266 | ironlake_pfit_enable(crtc); |
| 3267 | else if (old_crtc_state->pch_pfit.enabled) |
| 3268 | ironlake_pfit_disable(crtc, true); |
Gustavo Padovan | e30e8f7 | 2014-09-10 12:04:17 -0300 | [diff] [blame] | 3269 | } |
Gustavo Padovan | e30e8f7 | 2014-09-10 12:04:17 -0300 | [diff] [blame] | 3270 | } |
| 3271 | |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 3272 | static void intel_fdi_normal_train(struct drm_crtc *crtc) |
| 3273 | { |
| 3274 | struct drm_device *dev = crtc->dev; |
| 3275 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3276 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3277 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3278 | i915_reg_t reg; |
| 3279 | u32 temp; |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 3280 | |
| 3281 | /* enable normal train */ |
| 3282 | reg = FDI_TX_CTL(pipe); |
| 3283 | temp = I915_READ(reg); |
Keith Packard | 61e499b | 2011-05-17 16:13:52 -0700 | [diff] [blame] | 3284 | if (IS_IVYBRIDGE(dev)) { |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3285 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
| 3286 | temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE; |
Keith Packard | 61e499b | 2011-05-17 16:13:52 -0700 | [diff] [blame] | 3287 | } else { |
| 3288 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3289 | temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3290 | } |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 3291 | I915_WRITE(reg, temp); |
| 3292 | |
| 3293 | reg = FDI_RX_CTL(pipe); |
| 3294 | temp = I915_READ(reg); |
| 3295 | if (HAS_PCH_CPT(dev)) { |
| 3296 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 3297 | temp |= FDI_LINK_TRAIN_NORMAL_CPT; |
| 3298 | } else { |
| 3299 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3300 | temp |= FDI_LINK_TRAIN_NONE; |
| 3301 | } |
| 3302 | I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE); |
| 3303 | |
| 3304 | /* wait one idle pattern time */ |
| 3305 | POSTING_READ(reg); |
| 3306 | udelay(1000); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3307 | |
| 3308 | /* IVB wants error correction enabled */ |
| 3309 | if (IS_IVYBRIDGE(dev)) |
| 3310 | I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE | |
| 3311 | FDI_FE_ERRC_ENABLE); |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 3312 | } |
| 3313 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3314 | /* The FDI link training functions for ILK/Ibexpeak. */ |
| 3315 | static void ironlake_fdi_link_train(struct drm_crtc *crtc) |
| 3316 | { |
| 3317 | struct drm_device *dev = crtc->dev; |
| 3318 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3319 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3320 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3321 | i915_reg_t reg; |
| 3322 | u32 temp, tries; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3323 | |
Ville Syrjälä | 1c8562f | 2014-04-25 22:12:07 +0300 | [diff] [blame] | 3324 | /* FDI needs bits from pipe first */ |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 3325 | assert_pipe_enabled(dev_priv, pipe); |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 3326 | |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3327 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 3328 | for train result */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3329 | reg = FDI_RX_IMR(pipe); |
| 3330 | temp = I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3331 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 3332 | temp &= ~FDI_RX_BIT_LOCK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3333 | I915_WRITE(reg, temp); |
| 3334 | I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3335 | udelay(150); |
| 3336 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3337 | /* enable CPU FDI TX and PCH FDI RX */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3338 | reg = FDI_TX_CTL(pipe); |
| 3339 | temp = I915_READ(reg); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 3340 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 3341 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3342 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3343 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3344 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3345 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3346 | reg = FDI_RX_CTL(pipe); |
| 3347 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3348 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3349 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3350 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 3351 | |
| 3352 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3353 | udelay(150); |
| 3354 | |
Jesse Barnes | 5b2adf8 | 2010-10-07 16:01:15 -0700 | [diff] [blame] | 3355 | /* Ironlake workaround, enable clock pointer after FDI enable*/ |
Daniel Vetter | 8f5718a | 2012-10-31 22:52:28 +0100 | [diff] [blame] | 3356 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
| 3357 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR | |
| 3358 | FDI_RX_PHASE_SYNC_POINTER_EN); |
Jesse Barnes | 5b2adf8 | 2010-10-07 16:01:15 -0700 | [diff] [blame] | 3359 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3360 | reg = FDI_RX_IIR(pipe); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3361 | for (tries = 0; tries < 5; tries++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3362 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3363 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 3364 | |
| 3365 | if ((temp & FDI_RX_BIT_LOCK)) { |
| 3366 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3367 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3368 | break; |
| 3369 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3370 | } |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3371 | if (tries == 5) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3372 | DRM_ERROR("FDI train 1 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3373 | |
| 3374 | /* Train 2 */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3375 | reg = FDI_TX_CTL(pipe); |
| 3376 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3377 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3378 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3379 | I915_WRITE(reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3380 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3381 | reg = FDI_RX_CTL(pipe); |
| 3382 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3383 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3384 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3385 | I915_WRITE(reg, temp); |
| 3386 | |
| 3387 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3388 | udelay(150); |
| 3389 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3390 | reg = FDI_RX_IIR(pipe); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3391 | for (tries = 0; tries < 5; tries++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3392 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3393 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 3394 | |
| 3395 | if (temp & FDI_RX_SYMBOL_LOCK) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3396 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3397 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 3398 | break; |
| 3399 | } |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3400 | } |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3401 | if (tries == 5) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3402 | DRM_ERROR("FDI train 2 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3403 | |
| 3404 | DRM_DEBUG_KMS("FDI train done\n"); |
Jesse Barnes | 5c5313c | 2010-10-07 16:01:11 -0700 | [diff] [blame] | 3405 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3406 | } |
| 3407 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 3408 | static const int snb_b_fdi_train_param[] = { |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3409 | FDI_LINK_TRAIN_400MV_0DB_SNB_B, |
| 3410 | FDI_LINK_TRAIN_400MV_6DB_SNB_B, |
| 3411 | FDI_LINK_TRAIN_600MV_3_5DB_SNB_B, |
| 3412 | FDI_LINK_TRAIN_800MV_0DB_SNB_B, |
| 3413 | }; |
| 3414 | |
| 3415 | /* The FDI link training functions for SNB/Cougarpoint. */ |
| 3416 | static void gen6_fdi_link_train(struct drm_crtc *crtc) |
| 3417 | { |
| 3418 | struct drm_device *dev = crtc->dev; |
| 3419 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3420 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3421 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3422 | i915_reg_t reg; |
| 3423 | u32 temp, i, retry; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3424 | |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3425 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 3426 | for train result */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3427 | reg = FDI_RX_IMR(pipe); |
| 3428 | temp = I915_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3429 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 3430 | temp &= ~FDI_RX_BIT_LOCK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3431 | I915_WRITE(reg, temp); |
| 3432 | |
| 3433 | POSTING_READ(reg); |
Adam Jackson | e1a4474 | 2010-06-25 15:32:14 -0400 | [diff] [blame] | 3434 | udelay(150); |
| 3435 | |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3436 | /* enable CPU FDI TX and PCH FDI RX */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3437 | reg = FDI_TX_CTL(pipe); |
| 3438 | temp = I915_READ(reg); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 3439 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 3440 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3441 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3442 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 3443 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 3444 | /* SNB-B */ |
| 3445 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3446 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3447 | |
Daniel Vetter | d74cf32 | 2012-10-26 10:58:13 +0200 | [diff] [blame] | 3448 | I915_WRITE(FDI_RX_MISC(pipe), |
| 3449 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); |
| 3450 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3451 | reg = FDI_RX_CTL(pipe); |
| 3452 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3453 | if (HAS_PCH_CPT(dev)) { |
| 3454 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 3455 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 3456 | } else { |
| 3457 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3458 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 3459 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3460 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 3461 | |
| 3462 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3463 | udelay(150); |
| 3464 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 3465 | for (i = 0; i < 4; i++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3466 | reg = FDI_TX_CTL(pipe); |
| 3467 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3468 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 3469 | temp |= snb_b_fdi_train_param[i]; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3470 | I915_WRITE(reg, temp); |
| 3471 | |
| 3472 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3473 | udelay(500); |
| 3474 | |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 3475 | for (retry = 0; retry < 5; retry++) { |
| 3476 | reg = FDI_RX_IIR(pipe); |
| 3477 | temp = I915_READ(reg); |
| 3478 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 3479 | if (temp & FDI_RX_BIT_LOCK) { |
| 3480 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
| 3481 | DRM_DEBUG_KMS("FDI train 1 done.\n"); |
| 3482 | break; |
| 3483 | } |
| 3484 | udelay(50); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3485 | } |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 3486 | if (retry < 5) |
| 3487 | break; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3488 | } |
| 3489 | if (i == 4) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3490 | DRM_ERROR("FDI train 1 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3491 | |
| 3492 | /* Train 2 */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3493 | reg = FDI_TX_CTL(pipe); |
| 3494 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3495 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3496 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 3497 | if (IS_GEN6(dev)) { |
| 3498 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 3499 | /* SNB-B */ |
| 3500 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; |
| 3501 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3502 | I915_WRITE(reg, temp); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3503 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3504 | reg = FDI_RX_CTL(pipe); |
| 3505 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3506 | if (HAS_PCH_CPT(dev)) { |
| 3507 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 3508 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
| 3509 | } else { |
| 3510 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3511 | temp |= FDI_LINK_TRAIN_PATTERN_2; |
| 3512 | } |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3513 | I915_WRITE(reg, temp); |
| 3514 | |
| 3515 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3516 | udelay(150); |
| 3517 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 3518 | for (i = 0; i < 4; i++) { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3519 | reg = FDI_TX_CTL(pipe); |
| 3520 | temp = I915_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3521 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
| 3522 | temp |= snb_b_fdi_train_param[i]; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3523 | I915_WRITE(reg, temp); |
| 3524 | |
| 3525 | POSTING_READ(reg); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3526 | udelay(500); |
| 3527 | |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 3528 | for (retry = 0; retry < 5; retry++) { |
| 3529 | reg = FDI_RX_IIR(pipe); |
| 3530 | temp = I915_READ(reg); |
| 3531 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 3532 | if (temp & FDI_RX_SYMBOL_LOCK) { |
| 3533 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
| 3534 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
| 3535 | break; |
| 3536 | } |
| 3537 | udelay(50); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3538 | } |
Sean Paul | fa37d39 | 2012-03-02 12:53:39 -0500 | [diff] [blame] | 3539 | if (retry < 5) |
| 3540 | break; |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3541 | } |
| 3542 | if (i == 4) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3543 | DRM_ERROR("FDI train 2 fail!\n"); |
Zhenyu Wang | 8db9d77 | 2010-04-07 16:15:54 +0800 | [diff] [blame] | 3544 | |
| 3545 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 3546 | } |
| 3547 | |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3548 | /* Manual link training for Ivy Bridge A0 parts */ |
| 3549 | static void ivb_manual_fdi_link_train(struct drm_crtc *crtc) |
| 3550 | { |
| 3551 | struct drm_device *dev = crtc->dev; |
| 3552 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3553 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3554 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3555 | i915_reg_t reg; |
| 3556 | u32 temp, i, j; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3557 | |
| 3558 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
| 3559 | for train result */ |
| 3560 | reg = FDI_RX_IMR(pipe); |
| 3561 | temp = I915_READ(reg); |
| 3562 | temp &= ~FDI_RX_SYMBOL_LOCK; |
| 3563 | temp &= ~FDI_RX_BIT_LOCK; |
| 3564 | I915_WRITE(reg, temp); |
| 3565 | |
| 3566 | POSTING_READ(reg); |
| 3567 | udelay(150); |
| 3568 | |
Daniel Vetter | 01a415f | 2012-10-27 15:58:40 +0200 | [diff] [blame] | 3569 | DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n", |
| 3570 | I915_READ(FDI_RX_IIR(pipe))); |
| 3571 | |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3572 | /* Try each vswing and preemphasis setting twice before moving on */ |
| 3573 | for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) { |
| 3574 | /* disable first in case we need to retry */ |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3575 | reg = FDI_TX_CTL(pipe); |
| 3576 | temp = I915_READ(reg); |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3577 | temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB); |
| 3578 | temp &= ~FDI_TX_ENABLE; |
| 3579 | I915_WRITE(reg, temp); |
| 3580 | |
| 3581 | reg = FDI_RX_CTL(pipe); |
| 3582 | temp = I915_READ(reg); |
| 3583 | temp &= ~FDI_LINK_TRAIN_AUTO; |
| 3584 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 3585 | temp &= ~FDI_RX_ENABLE; |
| 3586 | I915_WRITE(reg, temp); |
| 3587 | |
| 3588 | /* enable CPU FDI TX and PCH FDI RX */ |
| 3589 | reg = FDI_TX_CTL(pipe); |
| 3590 | temp = I915_READ(reg); |
| 3591 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 3592 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes); |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3593 | temp |= FDI_LINK_TRAIN_PATTERN_1_IVB; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3594 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3595 | temp |= snb_b_fdi_train_param[j/2]; |
| 3596 | temp |= FDI_COMPOSITE_SYNC; |
| 3597 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
| 3598 | |
| 3599 | I915_WRITE(FDI_RX_MISC(pipe), |
| 3600 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); |
| 3601 | |
| 3602 | reg = FDI_RX_CTL(pipe); |
| 3603 | temp = I915_READ(reg); |
| 3604 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 3605 | temp |= FDI_COMPOSITE_SYNC; |
| 3606 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
| 3607 | |
| 3608 | POSTING_READ(reg); |
| 3609 | udelay(1); /* should be 0.5us */ |
| 3610 | |
| 3611 | for (i = 0; i < 4; i++) { |
| 3612 | reg = FDI_RX_IIR(pipe); |
| 3613 | temp = I915_READ(reg); |
| 3614 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
| 3615 | |
| 3616 | if (temp & FDI_RX_BIT_LOCK || |
| 3617 | (I915_READ(reg) & FDI_RX_BIT_LOCK)) { |
| 3618 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
| 3619 | DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", |
| 3620 | i); |
| 3621 | break; |
| 3622 | } |
| 3623 | udelay(1); /* should be 0.5us */ |
| 3624 | } |
| 3625 | if (i == 4) { |
| 3626 | DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2); |
| 3627 | continue; |
| 3628 | } |
| 3629 | |
| 3630 | /* Train 2 */ |
| 3631 | reg = FDI_TX_CTL(pipe); |
| 3632 | temp = I915_READ(reg); |
| 3633 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
| 3634 | temp |= FDI_LINK_TRAIN_PATTERN_2_IVB; |
| 3635 | I915_WRITE(reg, temp); |
| 3636 | |
| 3637 | reg = FDI_RX_CTL(pipe); |
| 3638 | temp = I915_READ(reg); |
| 3639 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 3640 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3641 | I915_WRITE(reg, temp); |
| 3642 | |
| 3643 | POSTING_READ(reg); |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3644 | udelay(2); /* should be 1.5us */ |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3645 | |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3646 | for (i = 0; i < 4; i++) { |
| 3647 | reg = FDI_RX_IIR(pipe); |
| 3648 | temp = I915_READ(reg); |
| 3649 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3650 | |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3651 | if (temp & FDI_RX_SYMBOL_LOCK || |
| 3652 | (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) { |
| 3653 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
| 3654 | DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", |
| 3655 | i); |
| 3656 | goto train_done; |
| 3657 | } |
| 3658 | udelay(2); /* should be 1.5us */ |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3659 | } |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3660 | if (i == 4) |
| 3661 | DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2); |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3662 | } |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3663 | |
Jesse Barnes | 139ccd3 | 2013-08-19 11:04:55 -0700 | [diff] [blame] | 3664 | train_done: |
Jesse Barnes | 357555c | 2011-04-28 15:09:55 -0700 | [diff] [blame] | 3665 | DRM_DEBUG_KMS("FDI train done.\n"); |
| 3666 | } |
| 3667 | |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 3668 | static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc) |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 3669 | { |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 3670 | struct drm_device *dev = intel_crtc->base.dev; |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 3671 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 3672 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3673 | i915_reg_t reg; |
| 3674 | u32 temp; |
Jesse Barnes | c64e311 | 2010-09-10 11:27:03 -0700 | [diff] [blame] | 3675 | |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 3676 | /* enable PCH FDI RX PLL, wait warmup plus DMI latency */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3677 | reg = FDI_RX_CTL(pipe); |
| 3678 | temp = I915_READ(reg); |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 3679 | temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16)); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 3680 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes); |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 3681 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3682 | I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE); |
| 3683 | |
| 3684 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 3685 | udelay(200); |
| 3686 | |
| 3687 | /* Switch from Rawclk to PCDclk */ |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3688 | temp = I915_READ(reg); |
| 3689 | I915_WRITE(reg, temp | FDI_PCDCLK); |
| 3690 | |
| 3691 | POSTING_READ(reg); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 3692 | udelay(200); |
| 3693 | |
Paulo Zanoni | 2074973 | 2012-11-23 15:30:38 -0200 | [diff] [blame] | 3694 | /* Enable CPU FDI TX PLL, always on for Ironlake */ |
| 3695 | reg = FDI_TX_CTL(pipe); |
| 3696 | temp = I915_READ(reg); |
| 3697 | if ((temp & FDI_TX_PLL_ENABLE) == 0) { |
| 3698 | I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 3699 | |
Paulo Zanoni | 2074973 | 2012-11-23 15:30:38 -0200 | [diff] [blame] | 3700 | POSTING_READ(reg); |
| 3701 | udelay(100); |
Jesse Barnes | 0e23b99 | 2010-09-10 11:10:00 -0700 | [diff] [blame] | 3702 | } |
| 3703 | } |
| 3704 | |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 3705 | static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc) |
| 3706 | { |
| 3707 | struct drm_device *dev = intel_crtc->base.dev; |
| 3708 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3709 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3710 | i915_reg_t reg; |
| 3711 | u32 temp; |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 3712 | |
| 3713 | /* Switch from PCDclk to Rawclk */ |
| 3714 | reg = FDI_RX_CTL(pipe); |
| 3715 | temp = I915_READ(reg); |
| 3716 | I915_WRITE(reg, temp & ~FDI_PCDCLK); |
| 3717 | |
| 3718 | /* Disable CPU FDI TX PLL */ |
| 3719 | reg = FDI_TX_CTL(pipe); |
| 3720 | temp = I915_READ(reg); |
| 3721 | I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE); |
| 3722 | |
| 3723 | POSTING_READ(reg); |
| 3724 | udelay(100); |
| 3725 | |
| 3726 | reg = FDI_RX_CTL(pipe); |
| 3727 | temp = I915_READ(reg); |
| 3728 | I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE); |
| 3729 | |
| 3730 | /* Wait for the clocks to turn off. */ |
| 3731 | POSTING_READ(reg); |
| 3732 | udelay(100); |
| 3733 | } |
| 3734 | |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 3735 | static void ironlake_fdi_disable(struct drm_crtc *crtc) |
| 3736 | { |
| 3737 | struct drm_device *dev = crtc->dev; |
| 3738 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3739 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3740 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3741 | i915_reg_t reg; |
| 3742 | u32 temp; |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 3743 | |
| 3744 | /* disable CPU FDI tx and PCH FDI rx */ |
| 3745 | reg = FDI_TX_CTL(pipe); |
| 3746 | temp = I915_READ(reg); |
| 3747 | I915_WRITE(reg, temp & ~FDI_TX_ENABLE); |
| 3748 | POSTING_READ(reg); |
| 3749 | |
| 3750 | reg = FDI_RX_CTL(pipe); |
| 3751 | temp = I915_READ(reg); |
| 3752 | temp &= ~(0x7 << 16); |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 3753 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 3754 | I915_WRITE(reg, temp & ~FDI_RX_ENABLE); |
| 3755 | |
| 3756 | POSTING_READ(reg); |
| 3757 | udelay(100); |
| 3758 | |
| 3759 | /* Ironlake workaround, disable clock pointer after downing FDI */ |
Robin Schroer | eba905b | 2014-05-18 02:24:50 +0200 | [diff] [blame] | 3760 | if (HAS_PCH_IBX(dev)) |
Jesse Barnes | 6f06ce1 | 2011-01-04 15:09:38 -0800 | [diff] [blame] | 3761 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 3762 | |
| 3763 | /* still set train pattern 1 */ |
| 3764 | reg = FDI_TX_CTL(pipe); |
| 3765 | temp = I915_READ(reg); |
| 3766 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3767 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 3768 | I915_WRITE(reg, temp); |
| 3769 | |
| 3770 | reg = FDI_RX_CTL(pipe); |
| 3771 | temp = I915_READ(reg); |
| 3772 | if (HAS_PCH_CPT(dev)) { |
| 3773 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; |
| 3774 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
| 3775 | } else { |
| 3776 | temp &= ~FDI_LINK_TRAIN_NONE; |
| 3777 | temp |= FDI_LINK_TRAIN_PATTERN_1; |
| 3778 | } |
| 3779 | /* BPC in FDI rx is consistent with that in PIPECONF */ |
| 3780 | temp &= ~(0x07 << 16); |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 3781 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
Jesse Barnes | 0fc932b | 2011-01-04 15:09:37 -0800 | [diff] [blame] | 3782 | I915_WRITE(reg, temp); |
| 3783 | |
| 3784 | POSTING_READ(reg); |
| 3785 | udelay(100); |
| 3786 | } |
| 3787 | |
Chris Wilson | 5dce5b93 | 2014-01-20 10:17:36 +0000 | [diff] [blame] | 3788 | bool intel_has_pending_fb_unpin(struct drm_device *dev) |
| 3789 | { |
| 3790 | struct intel_crtc *crtc; |
| 3791 | |
| 3792 | /* Note that we don't need to be called with mode_config.lock here |
| 3793 | * as our list of CRTC objects is static for the lifetime of the |
| 3794 | * device and so cannot disappear as we iterate. Similarly, we can |
| 3795 | * happily treat the predicates as racy, atomic checks as userspace |
| 3796 | * cannot claim and pin a new fb without at least acquring the |
| 3797 | * struct_mutex and so serialising with us. |
| 3798 | */ |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 3799 | for_each_intel_crtc(dev, crtc) { |
Chris Wilson | 5dce5b93 | 2014-01-20 10:17:36 +0000 | [diff] [blame] | 3800 | if (atomic_read(&crtc->unpin_work_count) == 0) |
| 3801 | continue; |
| 3802 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3803 | if (crtc->flip_work) |
Chris Wilson | 5dce5b93 | 2014-01-20 10:17:36 +0000 | [diff] [blame] | 3804 | intel_wait_for_vblank(dev, crtc->pipe); |
| 3805 | |
| 3806 | return true; |
| 3807 | } |
| 3808 | |
| 3809 | return false; |
| 3810 | } |
| 3811 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3812 | static void page_flip_completed(struct intel_crtc *intel_crtc) |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3813 | { |
| 3814 | struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3815 | struct intel_flip_work *work = intel_crtc->flip_work; |
| 3816 | |
| 3817 | intel_crtc->flip_work = NULL; |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3818 | |
| 3819 | if (work->event) |
Gustavo Padovan | 560ce1d | 2016-04-14 10:48:15 -0700 | [diff] [blame] | 3820 | drm_crtc_send_vblank_event(&intel_crtc->base, work->event); |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3821 | |
| 3822 | drm_crtc_vblank_put(&intel_crtc->base); |
| 3823 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3824 | wake_up_all(&dev_priv->pending_flip_queue); |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 3825 | queue_work(dev_priv->wq, &work->unpin_work); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3826 | |
| 3827 | trace_i915_flip_complete(intel_crtc->plane, |
| 3828 | work->pending_flip_obj); |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3829 | } |
| 3830 | |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 3831 | static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc) |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 3832 | { |
Chris Wilson | 0f91128 | 2012-04-17 10:05:38 +0100 | [diff] [blame] | 3833 | struct drm_device *dev = crtc->dev; |
Chris Wilson | 5bb6164 | 2012-09-27 21:25:58 +0100 | [diff] [blame] | 3834 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 3835 | long ret; |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 3836 | |
Daniel Vetter | 2c10d57 | 2012-12-20 21:24:07 +0100 | [diff] [blame] | 3837 | WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue)); |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 3838 | |
| 3839 | ret = wait_event_interruptible_timeout( |
| 3840 | dev_priv->pending_flip_queue, |
| 3841 | !intel_crtc_has_pending_flip(crtc), |
| 3842 | 60*HZ); |
| 3843 | |
| 3844 | if (ret < 0) |
| 3845 | return ret; |
| 3846 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 3847 | if (ret == 0) { |
| 3848 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3849 | struct intel_flip_work *work; |
| 3850 | |
| 3851 | spin_lock_irq(&dev->event_lock); |
| 3852 | work = intel_crtc->flip_work; |
| 3853 | if (work && !is_mmio_work(work)) { |
| 3854 | WARN_ONCE(1, "Removing stuck page flip\n"); |
| 3855 | page_flip_completed(intel_crtc); |
| 3856 | } |
| 3857 | spin_unlock_irq(&dev->event_lock); |
| 3858 | } |
Chris Wilson | 5bb6164 | 2012-09-27 21:25:58 +0100 | [diff] [blame] | 3859 | |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 3860 | return 0; |
Chris Wilson | e6c3a2a | 2010-09-23 23:04:43 +0100 | [diff] [blame] | 3861 | } |
| 3862 | |
Ville Syrjälä | 060f02d | 2015-12-04 22:21:34 +0200 | [diff] [blame] | 3863 | static void lpt_disable_iclkip(struct drm_i915_private *dev_priv) |
| 3864 | { |
| 3865 | u32 temp; |
| 3866 | |
| 3867 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE); |
| 3868 | |
| 3869 | mutex_lock(&dev_priv->sb_lock); |
| 3870 | |
| 3871 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); |
| 3872 | temp |= SBI_SSCCTL_DISABLE; |
| 3873 | intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK); |
| 3874 | |
| 3875 | mutex_unlock(&dev_priv->sb_lock); |
| 3876 | } |
| 3877 | |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3878 | /* Program iCLKIP clock to the desired frequency */ |
| 3879 | static void lpt_program_iclkip(struct drm_crtc *crtc) |
| 3880 | { |
Ville Syrjälä | 64b46a0 | 2016-02-17 21:41:11 +0200 | [diff] [blame] | 3881 | struct drm_i915_private *dev_priv = to_i915(crtc->dev); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 3882 | int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock; |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3883 | u32 divsel, phaseinc, auxdiv, phasedir = 0; |
| 3884 | u32 temp; |
| 3885 | |
Ville Syrjälä | 060f02d | 2015-12-04 22:21:34 +0200 | [diff] [blame] | 3886 | lpt_disable_iclkip(dev_priv); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3887 | |
Ville Syrjälä | 64b46a0 | 2016-02-17 21:41:11 +0200 | [diff] [blame] | 3888 | /* The iCLK virtual clock root frequency is in MHz, |
| 3889 | * but the adjusted_mode->crtc_clock in in KHz. To get the |
| 3890 | * divisors, it is necessary to divide one by another, so we |
| 3891 | * convert the virtual clock precision to KHz here for higher |
| 3892 | * precision. |
| 3893 | */ |
| 3894 | for (auxdiv = 0; auxdiv < 2; auxdiv++) { |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3895 | u32 iclk_virtual_root_freq = 172800 * 1000; |
| 3896 | u32 iclk_pi_range = 64; |
Ville Syrjälä | 64b46a0 | 2016-02-17 21:41:11 +0200 | [diff] [blame] | 3897 | u32 desired_divisor; |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3898 | |
Ville Syrjälä | 64b46a0 | 2016-02-17 21:41:11 +0200 | [diff] [blame] | 3899 | desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq, |
| 3900 | clock << auxdiv); |
| 3901 | divsel = (desired_divisor / iclk_pi_range) - 2; |
| 3902 | phaseinc = desired_divisor % iclk_pi_range; |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3903 | |
Ville Syrjälä | 64b46a0 | 2016-02-17 21:41:11 +0200 | [diff] [blame] | 3904 | /* |
| 3905 | * Near 20MHz is a corner case which is |
| 3906 | * out of range for the 7-bit divisor |
| 3907 | */ |
| 3908 | if (divsel <= 0x7f) |
| 3909 | break; |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3910 | } |
| 3911 | |
| 3912 | /* This should not happen with any sane values */ |
| 3913 | WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) & |
| 3914 | ~SBI_SSCDIVINTPHASE_DIVSEL_MASK); |
| 3915 | WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) & |
| 3916 | ~SBI_SSCDIVINTPHASE_INCVAL_MASK); |
| 3917 | |
| 3918 | DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n", |
Ville Syrjälä | 12d7cee | 2013-09-04 18:25:19 +0300 | [diff] [blame] | 3919 | clock, |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3920 | auxdiv, |
| 3921 | divsel, |
| 3922 | phasedir, |
| 3923 | phaseinc); |
| 3924 | |
Ville Syrjälä | 060f02d | 2015-12-04 22:21:34 +0200 | [diff] [blame] | 3925 | mutex_lock(&dev_priv->sb_lock); |
| 3926 | |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3927 | /* Program SSCDIVINTPHASE6 */ |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 3928 | temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3929 | temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK; |
| 3930 | temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel); |
| 3931 | temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK; |
| 3932 | temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc); |
| 3933 | temp |= SBI_SSCDIVINTPHASE_DIR(phasedir); |
| 3934 | temp |= SBI_SSCDIVINTPHASE_PROPAGATE; |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 3935 | intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3936 | |
| 3937 | /* Program SSCAUXDIV */ |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 3938 | temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3939 | temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1); |
| 3940 | temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv); |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 3941 | intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3942 | |
| 3943 | /* Enable modulator and associated divider */ |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 3944 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3945 | temp &= ~SBI_SSCCTL_DISABLE; |
Paulo Zanoni | 988d6ee | 2012-12-01 12:04:24 -0200 | [diff] [blame] | 3946 | intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK); |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3947 | |
Ville Syrjälä | 060f02d | 2015-12-04 22:21:34 +0200 | [diff] [blame] | 3948 | mutex_unlock(&dev_priv->sb_lock); |
| 3949 | |
Eugeni Dodonov | e615efe | 2012-05-09 15:37:26 -0300 | [diff] [blame] | 3950 | /* Wait for initialization time */ |
| 3951 | udelay(24); |
| 3952 | |
| 3953 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE); |
| 3954 | } |
| 3955 | |
Ville Syrjälä | 8802e5b | 2016-02-17 21:41:12 +0200 | [diff] [blame] | 3956 | int lpt_get_iclkip(struct drm_i915_private *dev_priv) |
| 3957 | { |
| 3958 | u32 divsel, phaseinc, auxdiv; |
| 3959 | u32 iclk_virtual_root_freq = 172800 * 1000; |
| 3960 | u32 iclk_pi_range = 64; |
| 3961 | u32 desired_divisor; |
| 3962 | u32 temp; |
| 3963 | |
| 3964 | if ((I915_READ(PIXCLK_GATE) & PIXCLK_GATE_UNGATE) == 0) |
| 3965 | return 0; |
| 3966 | |
| 3967 | mutex_lock(&dev_priv->sb_lock); |
| 3968 | |
| 3969 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); |
| 3970 | if (temp & SBI_SSCCTL_DISABLE) { |
| 3971 | mutex_unlock(&dev_priv->sb_lock); |
| 3972 | return 0; |
| 3973 | } |
| 3974 | |
| 3975 | temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK); |
| 3976 | divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >> |
| 3977 | SBI_SSCDIVINTPHASE_DIVSEL_SHIFT; |
| 3978 | phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >> |
| 3979 | SBI_SSCDIVINTPHASE_INCVAL_SHIFT; |
| 3980 | |
| 3981 | temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK); |
| 3982 | auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >> |
| 3983 | SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT; |
| 3984 | |
| 3985 | mutex_unlock(&dev_priv->sb_lock); |
| 3986 | |
| 3987 | desired_divisor = (divsel + 2) * iclk_pi_range + phaseinc; |
| 3988 | |
| 3989 | return DIV_ROUND_CLOSEST(iclk_virtual_root_freq, |
| 3990 | desired_divisor << auxdiv); |
| 3991 | } |
| 3992 | |
Daniel Vetter | 275f01b2 | 2013-05-03 11:49:47 +0200 | [diff] [blame] | 3993 | static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc, |
| 3994 | enum pipe pch_transcoder) |
| 3995 | { |
| 3996 | struct drm_device *dev = crtc->base.dev; |
| 3997 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 3998 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
Daniel Vetter | 275f01b2 | 2013-05-03 11:49:47 +0200 | [diff] [blame] | 3999 | |
| 4000 | I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder), |
| 4001 | I915_READ(HTOTAL(cpu_transcoder))); |
| 4002 | I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder), |
| 4003 | I915_READ(HBLANK(cpu_transcoder))); |
| 4004 | I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder), |
| 4005 | I915_READ(HSYNC(cpu_transcoder))); |
| 4006 | |
| 4007 | I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder), |
| 4008 | I915_READ(VTOTAL(cpu_transcoder))); |
| 4009 | I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder), |
| 4010 | I915_READ(VBLANK(cpu_transcoder))); |
| 4011 | I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder), |
| 4012 | I915_READ(VSYNC(cpu_transcoder))); |
| 4013 | I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder), |
| 4014 | I915_READ(VSYNCSHIFT(cpu_transcoder))); |
| 4015 | } |
| 4016 | |
Ander Conselvan de Oliveira | 003632d | 2015-03-11 13:35:43 +0200 | [diff] [blame] | 4017 | static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable) |
Daniel Vetter | 1fbc0d7 | 2013-10-29 12:04:08 +0100 | [diff] [blame] | 4018 | { |
| 4019 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4020 | uint32_t temp; |
| 4021 | |
| 4022 | temp = I915_READ(SOUTH_CHICKEN1); |
Ander Conselvan de Oliveira | 003632d | 2015-03-11 13:35:43 +0200 | [diff] [blame] | 4023 | if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable) |
Daniel Vetter | 1fbc0d7 | 2013-10-29 12:04:08 +0100 | [diff] [blame] | 4024 | return; |
| 4025 | |
| 4026 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE); |
| 4027 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE); |
| 4028 | |
Ander Conselvan de Oliveira | 003632d | 2015-03-11 13:35:43 +0200 | [diff] [blame] | 4029 | temp &= ~FDI_BC_BIFURCATION_SELECT; |
| 4030 | if (enable) |
| 4031 | temp |= FDI_BC_BIFURCATION_SELECT; |
| 4032 | |
| 4033 | DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis"); |
Daniel Vetter | 1fbc0d7 | 2013-10-29 12:04:08 +0100 | [diff] [blame] | 4034 | I915_WRITE(SOUTH_CHICKEN1, temp); |
| 4035 | POSTING_READ(SOUTH_CHICKEN1); |
| 4036 | } |
| 4037 | |
| 4038 | static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc) |
| 4039 | { |
| 4040 | struct drm_device *dev = intel_crtc->base.dev; |
Daniel Vetter | 1fbc0d7 | 2013-10-29 12:04:08 +0100 | [diff] [blame] | 4041 | |
| 4042 | switch (intel_crtc->pipe) { |
| 4043 | case PIPE_A: |
| 4044 | break; |
| 4045 | case PIPE_B: |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4046 | if (intel_crtc->config->fdi_lanes > 2) |
Ander Conselvan de Oliveira | 003632d | 2015-03-11 13:35:43 +0200 | [diff] [blame] | 4047 | cpt_set_fdi_bc_bifurcation(dev, false); |
Daniel Vetter | 1fbc0d7 | 2013-10-29 12:04:08 +0100 | [diff] [blame] | 4048 | else |
Ander Conselvan de Oliveira | 003632d | 2015-03-11 13:35:43 +0200 | [diff] [blame] | 4049 | cpt_set_fdi_bc_bifurcation(dev, true); |
Daniel Vetter | 1fbc0d7 | 2013-10-29 12:04:08 +0100 | [diff] [blame] | 4050 | |
| 4051 | break; |
| 4052 | case PIPE_C: |
Ander Conselvan de Oliveira | 003632d | 2015-03-11 13:35:43 +0200 | [diff] [blame] | 4053 | cpt_set_fdi_bc_bifurcation(dev, true); |
Daniel Vetter | 1fbc0d7 | 2013-10-29 12:04:08 +0100 | [diff] [blame] | 4054 | |
| 4055 | break; |
| 4056 | default: |
| 4057 | BUG(); |
| 4058 | } |
| 4059 | } |
| 4060 | |
Ville Syrjälä | c48b530 | 2015-11-04 23:19:56 +0200 | [diff] [blame] | 4061 | /* Return which DP Port should be selected for Transcoder DP control */ |
| 4062 | static enum port |
| 4063 | intel_trans_dp_port_sel(struct drm_crtc *crtc) |
| 4064 | { |
| 4065 | struct drm_device *dev = crtc->dev; |
| 4066 | struct intel_encoder *encoder; |
| 4067 | |
| 4068 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
| 4069 | if (encoder->type == INTEL_OUTPUT_DISPLAYPORT || |
| 4070 | encoder->type == INTEL_OUTPUT_EDP) |
| 4071 | return enc_to_dig_port(&encoder->base)->port; |
| 4072 | } |
| 4073 | |
| 4074 | return -1; |
| 4075 | } |
| 4076 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4077 | /* |
| 4078 | * Enable PCH resources required for PCH ports: |
| 4079 | * - PCH PLLs |
| 4080 | * - FDI training & RX/TX |
| 4081 | * - update transcoder timings |
| 4082 | * - DP transcoding bits |
| 4083 | * - transcoder |
| 4084 | */ |
| 4085 | static void ironlake_pch_enable(struct drm_crtc *crtc) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 4086 | { |
| 4087 | struct drm_device *dev = crtc->dev; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 4088 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4089 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4090 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 4091 | u32 temp; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4092 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 4093 | assert_pch_transcoder_disabled(dev_priv, pipe); |
Chris Wilson | e7e164d | 2012-05-11 09:21:25 +0100 | [diff] [blame] | 4094 | |
Daniel Vetter | 1fbc0d7 | 2013-10-29 12:04:08 +0100 | [diff] [blame] | 4095 | if (IS_IVYBRIDGE(dev)) |
| 4096 | ivybridge_update_fdi_bc_bifurcation(intel_crtc); |
| 4097 | |
Daniel Vetter | cd986ab | 2012-10-26 10:58:12 +0200 | [diff] [blame] | 4098 | /* Write the TU size bits before fdi link training, so that error |
| 4099 | * detection works. */ |
| 4100 | I915_WRITE(FDI_RX_TUSIZE1(pipe), |
| 4101 | I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK); |
| 4102 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4103 | /* For PCH output, training FDI link */ |
Jesse Barnes | 674cf96 | 2011-04-28 14:27:04 -0700 | [diff] [blame] | 4104 | dev_priv->display.fdi_link_train(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4105 | |
Daniel Vetter | 3ad8a20 | 2013-06-05 13:34:32 +0200 | [diff] [blame] | 4106 | /* We need to program the right clock selection before writing the pixel |
| 4107 | * mutliplier into the DPLL. */ |
Paulo Zanoni | 303b81e | 2012-10-31 18:12:23 -0200 | [diff] [blame] | 4108 | if (HAS_PCH_CPT(dev)) { |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 4109 | u32 sel; |
Jesse Barnes | 4b645f1 | 2011-10-12 09:51:31 -0700 | [diff] [blame] | 4110 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4111 | temp = I915_READ(PCH_DPLL_SEL); |
Daniel Vetter | 1188739 | 2013-06-05 13:34:09 +0200 | [diff] [blame] | 4112 | temp |= TRANS_DPLL_ENABLE(pipe); |
| 4113 | sel = TRANS_DPLLB_SEL(pipe); |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 4114 | if (intel_crtc->config->shared_dpll == |
| 4115 | intel_get_shared_dpll_by_id(dev_priv, DPLL_ID_PCH_PLL_B)) |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 4116 | temp |= sel; |
| 4117 | else |
| 4118 | temp &= ~sel; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4119 | I915_WRITE(PCH_DPLL_SEL, temp); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4120 | } |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4121 | |
Daniel Vetter | 3ad8a20 | 2013-06-05 13:34:32 +0200 | [diff] [blame] | 4122 | /* XXX: pch pll's can be enabled any time before we enable the PCH |
| 4123 | * transcoder, and we actually should do this to not upset any PCH |
| 4124 | * transcoder that already use the clock when we share it. |
| 4125 | * |
| 4126 | * Note that enable_shared_dpll tries to do the right thing, but |
| 4127 | * get_shared_dpll unconditionally resets the pll - we need that to have |
| 4128 | * the right LVDS enable sequence. */ |
Daniel Vetter | 85b3894 | 2014-04-24 23:55:14 +0200 | [diff] [blame] | 4129 | intel_enable_shared_dpll(intel_crtc); |
Daniel Vetter | 3ad8a20 | 2013-06-05 13:34:32 +0200 | [diff] [blame] | 4130 | |
Jesse Barnes | d9b6cb5 | 2011-01-04 15:09:35 -0800 | [diff] [blame] | 4131 | /* set transcoder timing, panel must allow it */ |
| 4132 | assert_panel_unlocked(dev_priv, pipe); |
Daniel Vetter | 275f01b2 | 2013-05-03 11:49:47 +0200 | [diff] [blame] | 4133 | ironlake_pch_transcoder_set_timings(intel_crtc, pipe); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4134 | |
Paulo Zanoni | 303b81e | 2012-10-31 18:12:23 -0200 | [diff] [blame] | 4135 | intel_fdi_normal_train(crtc); |
Zhenyu Wang | 5e84e1a | 2010-10-28 16:38:08 +0800 | [diff] [blame] | 4136 | |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4137 | /* For PCH DP, enable TRANS_DP_CTL */ |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4138 | if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) { |
Ville Syrjälä | 9c4edae | 2015-10-29 21:25:51 +0200 | [diff] [blame] | 4139 | const struct drm_display_mode *adjusted_mode = |
| 4140 | &intel_crtc->config->base.adjusted_mode; |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 4141 | u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 4142 | i915_reg_t reg = TRANS_DP_CTL(pipe); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4143 | temp = I915_READ(reg); |
| 4144 | temp &= ~(TRANS_DP_PORT_SEL_MASK | |
Eric Anholt | 220cad3 | 2010-11-18 09:32:58 +0800 | [diff] [blame] | 4145 | TRANS_DP_SYNC_MASK | |
| 4146 | TRANS_DP_BPC_MASK); |
Ville Syrjälä | e3ef447 | 2015-05-05 17:17:31 +0300 | [diff] [blame] | 4147 | temp |= TRANS_DP_OUTPUT_ENABLE; |
Jesse Barnes | 9325c9f | 2011-06-24 12:19:21 -0700 | [diff] [blame] | 4148 | temp |= bpc << 9; /* same format but at 11:9 */ |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4149 | |
Ville Syrjälä | 9c4edae | 2015-10-29 21:25:51 +0200 | [diff] [blame] | 4150 | if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4151 | temp |= TRANS_DP_HSYNC_ACTIVE_HIGH; |
Ville Syrjälä | 9c4edae | 2015-10-29 21:25:51 +0200 | [diff] [blame] | 4152 | if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC) |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4153 | temp |= TRANS_DP_VSYNC_ACTIVE_HIGH; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4154 | |
| 4155 | switch (intel_trans_dp_port_sel(crtc)) { |
Ville Syrjälä | c48b530 | 2015-11-04 23:19:56 +0200 | [diff] [blame] | 4156 | case PORT_B: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4157 | temp |= TRANS_DP_PORT_SEL_B; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4158 | break; |
Ville Syrjälä | c48b530 | 2015-11-04 23:19:56 +0200 | [diff] [blame] | 4159 | case PORT_C: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4160 | temp |= TRANS_DP_PORT_SEL_C; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4161 | break; |
Ville Syrjälä | c48b530 | 2015-11-04 23:19:56 +0200 | [diff] [blame] | 4162 | case PORT_D: |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4163 | temp |= TRANS_DP_PORT_SEL_D; |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4164 | break; |
| 4165 | default: |
Daniel Vetter | e95d41e | 2012-10-26 10:58:16 +0200 | [diff] [blame] | 4166 | BUG(); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4167 | } |
| 4168 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 4169 | I915_WRITE(reg, temp); |
Jesse Barnes | c98e9dc | 2010-09-10 10:57:18 -0700 | [diff] [blame] | 4170 | } |
| 4171 | |
Paulo Zanoni | b8a4f40 | 2012-10-31 18:12:42 -0200 | [diff] [blame] | 4172 | ironlake_enable_pch_transcoder(dev_priv, pipe); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4173 | } |
| 4174 | |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 4175 | static void lpt_pch_enable(struct drm_crtc *crtc) |
| 4176 | { |
| 4177 | struct drm_device *dev = crtc->dev; |
| 4178 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4179 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4180 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 4181 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 4182 | assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A); |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 4183 | |
Paulo Zanoni | 8c52b5e | 2012-10-31 18:12:24 -0200 | [diff] [blame] | 4184 | lpt_program_iclkip(crtc); |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 4185 | |
Paulo Zanoni | 0540e48 | 2012-10-31 18:12:40 -0200 | [diff] [blame] | 4186 | /* Set transcoder timing. */ |
Daniel Vetter | 275f01b2 | 2013-05-03 11:49:47 +0200 | [diff] [blame] | 4187 | ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A); |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 4188 | |
Paulo Zanoni | 937bb61 | 2012-10-31 18:12:47 -0200 | [diff] [blame] | 4189 | lpt_enable_pch_transcoder(dev_priv, cpu_transcoder); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4190 | } |
| 4191 | |
Daniel Vetter | a152031 | 2013-05-03 11:49:50 +0200 | [diff] [blame] | 4192 | static void cpt_verify_modeset(struct drm_device *dev, int pipe) |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 4193 | { |
| 4194 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 4195 | i915_reg_t dslreg = PIPEDSL(pipe); |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 4196 | u32 temp; |
| 4197 | |
| 4198 | temp = I915_READ(dslreg); |
| 4199 | udelay(500); |
| 4200 | if (wait_for(I915_READ(dslreg) != temp, 5)) { |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 4201 | if (wait_for(I915_READ(dslreg) != temp, 5)) |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 4202 | DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe)); |
Jesse Barnes | d4270e5 | 2011-10-11 10:43:02 -0700 | [diff] [blame] | 4203 | } |
| 4204 | } |
| 4205 | |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4206 | static int |
| 4207 | skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach, |
| 4208 | unsigned scaler_user, int *scaler_id, unsigned int rotation, |
| 4209 | int src_w, int src_h, int dst_w, int dst_h) |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4210 | { |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4211 | struct intel_crtc_scaler_state *scaler_state = |
| 4212 | &crtc_state->scaler_state; |
| 4213 | struct intel_crtc *intel_crtc = |
| 4214 | to_intel_crtc(crtc_state->base.crtc); |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4215 | int need_scaling; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 4216 | |
| 4217 | need_scaling = intel_rotation_90_or_270(rotation) ? |
| 4218 | (src_h != dst_w || src_w != dst_h): |
| 4219 | (src_w != dst_w || src_h != dst_h); |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4220 | |
| 4221 | /* |
| 4222 | * if plane is being disabled or scaler is no more required or force detach |
| 4223 | * - free scaler binded to this plane/crtc |
| 4224 | * - in order to do this, update crtc->scaler_usage |
| 4225 | * |
| 4226 | * Here scaler state in crtc_state is set free so that |
| 4227 | * scaler can be assigned to other user. Actual register |
| 4228 | * update to free the scaler is done in plane/panel-fit programming. |
| 4229 | * For this purpose crtc/plane_state->scaler_id isn't reset here. |
| 4230 | */ |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4231 | if (force_detach || !need_scaling) { |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4232 | if (*scaler_id >= 0) { |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4233 | scaler_state->scaler_users &= ~(1 << scaler_user); |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4234 | scaler_state->scalers[*scaler_id].in_use = 0; |
| 4235 | |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4236 | DRM_DEBUG_KMS("scaler_user index %u.%u: " |
| 4237 | "Staged freeing scaler id %d scaler_users = 0x%x\n", |
| 4238 | intel_crtc->pipe, scaler_user, *scaler_id, |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4239 | scaler_state->scaler_users); |
| 4240 | *scaler_id = -1; |
| 4241 | } |
| 4242 | return 0; |
| 4243 | } |
| 4244 | |
| 4245 | /* range checks */ |
| 4246 | if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H || |
| 4247 | dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H || |
| 4248 | |
| 4249 | src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H || |
| 4250 | dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) { |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4251 | DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u " |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4252 | "size is out of scaler range\n", |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4253 | intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h); |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4254 | return -EINVAL; |
| 4255 | } |
| 4256 | |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4257 | /* mark this plane as a scaler user in crtc_state */ |
| 4258 | scaler_state->scaler_users |= (1 << scaler_user); |
| 4259 | DRM_DEBUG_KMS("scaler_user index %u.%u: " |
| 4260 | "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n", |
| 4261 | intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h, |
| 4262 | scaler_state->scaler_users); |
| 4263 | |
| 4264 | return 0; |
| 4265 | } |
| 4266 | |
| 4267 | /** |
| 4268 | * skl_update_scaler_crtc - Stages update to scaler state for a given crtc. |
| 4269 | * |
| 4270 | * @state: crtc's scaler state |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4271 | * |
| 4272 | * Return |
| 4273 | * 0 - scaler_usage updated successfully |
| 4274 | * error - requested scaling cannot be supported or other error condition |
| 4275 | */ |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 4276 | int skl_update_scaler_crtc(struct intel_crtc_state *state) |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4277 | { |
| 4278 | struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc); |
Ville Syrjälä | 7c5f93b | 2015-09-08 13:40:49 +0300 | [diff] [blame] | 4279 | const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode; |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4280 | |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 4281 | DRM_DEBUG_KMS("Updating scaler for [CRTC:%d:%s] scaler_user index %u.%u\n", |
| 4282 | intel_crtc->base.base.id, intel_crtc->base.name, |
| 4283 | intel_crtc->pipe, SKL_CRTC_INDEX); |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4284 | |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 4285 | return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX, |
Ville Syrjälä | fa5a797 | 2015-10-15 17:01:58 +0300 | [diff] [blame] | 4286 | &state->scaler_state.scaler_id, BIT(DRM_ROTATE_0), |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4287 | state->pipe_src_w, state->pipe_src_h, |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 4288 | adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay); |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4289 | } |
| 4290 | |
| 4291 | /** |
| 4292 | * skl_update_scaler_plane - Stages update to scaler state for a given plane. |
| 4293 | * |
| 4294 | * @state: crtc's scaler state |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4295 | * @plane_state: atomic plane state to update |
| 4296 | * |
| 4297 | * Return |
| 4298 | * 0 - scaler_usage updated successfully |
| 4299 | * error - requested scaling cannot be supported or other error condition |
| 4300 | */ |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 4301 | static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state, |
| 4302 | struct intel_plane_state *plane_state) |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4303 | { |
| 4304 | |
| 4305 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 4306 | struct intel_plane *intel_plane = |
| 4307 | to_intel_plane(plane_state->base.plane); |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4308 | struct drm_framebuffer *fb = plane_state->base.fb; |
| 4309 | int ret; |
| 4310 | |
| 4311 | bool force_detach = !fb || !plane_state->visible; |
| 4312 | |
Ville Syrjälä | 72660ce | 2016-05-27 20:59:20 +0300 | [diff] [blame] | 4313 | DRM_DEBUG_KMS("Updating scaler for [PLANE:%d:%s] scaler_user index %u.%u\n", |
| 4314 | intel_plane->base.base.id, intel_plane->base.name, |
| 4315 | intel_crtc->pipe, drm_plane_index(&intel_plane->base)); |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4316 | |
| 4317 | ret = skl_update_scaler(crtc_state, force_detach, |
| 4318 | drm_plane_index(&intel_plane->base), |
| 4319 | &plane_state->scaler_id, |
| 4320 | plane_state->base.rotation, |
| 4321 | drm_rect_width(&plane_state->src) >> 16, |
| 4322 | drm_rect_height(&plane_state->src) >> 16, |
| 4323 | drm_rect_width(&plane_state->dst), |
| 4324 | drm_rect_height(&plane_state->dst)); |
| 4325 | |
| 4326 | if (ret || plane_state->scaler_id < 0) |
| 4327 | return ret; |
| 4328 | |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4329 | /* check colorkey */ |
Maarten Lankhorst | 818ed96 | 2015-06-15 12:33:54 +0200 | [diff] [blame] | 4330 | if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) { |
Ville Syrjälä | 72660ce | 2016-05-27 20:59:20 +0300 | [diff] [blame] | 4331 | DRM_DEBUG_KMS("[PLANE:%d:%s] scaling with color key not allowed", |
| 4332 | intel_plane->base.base.id, |
| 4333 | intel_plane->base.name); |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4334 | return -EINVAL; |
| 4335 | } |
| 4336 | |
| 4337 | /* Check src format */ |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4338 | switch (fb->pixel_format) { |
| 4339 | case DRM_FORMAT_RGB565: |
| 4340 | case DRM_FORMAT_XBGR8888: |
| 4341 | case DRM_FORMAT_XRGB8888: |
| 4342 | case DRM_FORMAT_ABGR8888: |
| 4343 | case DRM_FORMAT_ARGB8888: |
| 4344 | case DRM_FORMAT_XRGB2101010: |
| 4345 | case DRM_FORMAT_XBGR2101010: |
| 4346 | case DRM_FORMAT_YUYV: |
| 4347 | case DRM_FORMAT_YVYU: |
| 4348 | case DRM_FORMAT_UYVY: |
| 4349 | case DRM_FORMAT_VYUY: |
| 4350 | break; |
| 4351 | default: |
Ville Syrjälä | 72660ce | 2016-05-27 20:59:20 +0300 | [diff] [blame] | 4352 | DRM_DEBUG_KMS("[PLANE:%d:%s] FB:%d unsupported scaling format 0x%x\n", |
| 4353 | intel_plane->base.base.id, intel_plane->base.name, |
| 4354 | fb->base.id, fb->pixel_format); |
Maarten Lankhorst | 86adf9d | 2015-06-22 09:50:32 +0200 | [diff] [blame] | 4355 | return -EINVAL; |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4356 | } |
| 4357 | |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4358 | return 0; |
| 4359 | } |
| 4360 | |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 4361 | static void skylake_scaler_disable(struct intel_crtc *crtc) |
| 4362 | { |
| 4363 | int i; |
| 4364 | |
| 4365 | for (i = 0; i < crtc->num_scalers; i++) |
| 4366 | skl_detach_scaler(crtc, i); |
| 4367 | } |
| 4368 | |
| 4369 | static void skylake_pfit_enable(struct intel_crtc *crtc) |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 4370 | { |
| 4371 | struct drm_device *dev = crtc->base.dev; |
| 4372 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4373 | int pipe = crtc->pipe; |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4374 | struct intel_crtc_scaler_state *scaler_state = |
| 4375 | &crtc->config->scaler_state; |
| 4376 | |
| 4377 | DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config); |
| 4378 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4379 | if (crtc->config->pch_pfit.enabled) { |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 4380 | int id; |
| 4381 | |
| 4382 | if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) { |
| 4383 | DRM_ERROR("Requesting pfit without getting a scaler first\n"); |
| 4384 | return; |
| 4385 | } |
| 4386 | |
| 4387 | id = scaler_state->scaler_id; |
| 4388 | I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN | |
| 4389 | PS_FILTER_MEDIUM | scaler_state->scalers[id].mode); |
| 4390 | I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos); |
| 4391 | I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size); |
| 4392 | |
| 4393 | DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id); |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 4394 | } |
| 4395 | } |
| 4396 | |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 4397 | static void ironlake_pfit_enable(struct intel_crtc *crtc) |
| 4398 | { |
| 4399 | struct drm_device *dev = crtc->base.dev; |
| 4400 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4401 | int pipe = crtc->pipe; |
| 4402 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4403 | if (crtc->config->pch_pfit.enabled) { |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 4404 | /* Force use of hard-coded filter coefficients |
| 4405 | * as some pre-programmed values are broken, |
| 4406 | * e.g. x201. |
| 4407 | */ |
| 4408 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) |
| 4409 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 | |
| 4410 | PF_PIPE_SEL_IVB(pipe)); |
| 4411 | else |
| 4412 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4413 | I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos); |
| 4414 | I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size); |
Jesse Barnes | 040484a | 2011-01-03 12:14:26 -0800 | [diff] [blame] | 4415 | } |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4416 | } |
| 4417 | |
Ville Syrjälä | 20bc8673 | 2013-10-01 18:02:17 +0300 | [diff] [blame] | 4418 | void hsw_enable_ips(struct intel_crtc *crtc) |
Paulo Zanoni | d77e453 | 2013-09-24 13:52:55 -0300 | [diff] [blame] | 4419 | { |
Ville Syrjälä | cea165c | 2014-04-15 21:41:35 +0300 | [diff] [blame] | 4420 | struct drm_device *dev = crtc->base.dev; |
| 4421 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | d77e453 | 2013-09-24 13:52:55 -0300 | [diff] [blame] | 4422 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4423 | if (!crtc->config->ips_enabled) |
Paulo Zanoni | d77e453 | 2013-09-24 13:52:55 -0300 | [diff] [blame] | 4424 | return; |
| 4425 | |
Maarten Lankhorst | 307e449 | 2016-03-23 14:33:28 +0100 | [diff] [blame] | 4426 | /* |
| 4427 | * We can only enable IPS after we enable a plane and wait for a vblank |
| 4428 | * This function is called from post_plane_update, which is run after |
| 4429 | * a vblank wait. |
| 4430 | */ |
Ville Syrjälä | cea165c | 2014-04-15 21:41:35 +0300 | [diff] [blame] | 4431 | |
Paulo Zanoni | d77e453 | 2013-09-24 13:52:55 -0300 | [diff] [blame] | 4432 | assert_plane_enabled(dev_priv, crtc->plane); |
Ville Syrjälä | cea165c | 2014-04-15 21:41:35 +0300 | [diff] [blame] | 4433 | if (IS_BROADWELL(dev)) { |
Ben Widawsky | 2a114cc | 2013-11-02 21:07:47 -0700 | [diff] [blame] | 4434 | mutex_lock(&dev_priv->rps.hw_lock); |
| 4435 | WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000)); |
| 4436 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 4437 | /* Quoting Art Runyan: "its not safe to expect any particular |
| 4438 | * value in IPS_CTL bit 31 after enabling IPS through the |
Jesse Barnes | e59150d | 2014-01-07 13:30:45 -0800 | [diff] [blame] | 4439 | * mailbox." Moreover, the mailbox may return a bogus state, |
| 4440 | * so we need to just enable it and continue on. |
Ben Widawsky | 2a114cc | 2013-11-02 21:07:47 -0700 | [diff] [blame] | 4441 | */ |
| 4442 | } else { |
| 4443 | I915_WRITE(IPS_CTL, IPS_ENABLE); |
| 4444 | /* The bit only becomes 1 in the next vblank, so this wait here |
| 4445 | * is essentially intel_wait_for_vblank. If we don't have this |
| 4446 | * and don't wait for vblanks until the end of crtc_enable, then |
| 4447 | * the HW state readout code will complain that the expected |
| 4448 | * IPS_CTL value is not the one we read. */ |
| 4449 | if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50)) |
| 4450 | DRM_ERROR("Timed out waiting for IPS enable\n"); |
| 4451 | } |
Paulo Zanoni | d77e453 | 2013-09-24 13:52:55 -0300 | [diff] [blame] | 4452 | } |
| 4453 | |
Ville Syrjälä | 20bc8673 | 2013-10-01 18:02:17 +0300 | [diff] [blame] | 4454 | void hsw_disable_ips(struct intel_crtc *crtc) |
Paulo Zanoni | d77e453 | 2013-09-24 13:52:55 -0300 | [diff] [blame] | 4455 | { |
| 4456 | struct drm_device *dev = crtc->base.dev; |
| 4457 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4458 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4459 | if (!crtc->config->ips_enabled) |
Paulo Zanoni | d77e453 | 2013-09-24 13:52:55 -0300 | [diff] [blame] | 4460 | return; |
| 4461 | |
| 4462 | assert_plane_enabled(dev_priv, crtc->plane); |
Ben Widawsky | 23d0b13 | 2014-04-10 14:32:41 -0700 | [diff] [blame] | 4463 | if (IS_BROADWELL(dev)) { |
Ben Widawsky | 2a114cc | 2013-11-02 21:07:47 -0700 | [diff] [blame] | 4464 | mutex_lock(&dev_priv->rps.hw_lock); |
| 4465 | WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0)); |
| 4466 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | 23d0b13 | 2014-04-10 14:32:41 -0700 | [diff] [blame] | 4467 | /* wait for pcode to finish disabling IPS, which may take up to 42ms */ |
| 4468 | if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42)) |
| 4469 | DRM_ERROR("Timed out waiting for IPS disable\n"); |
Jesse Barnes | e59150d | 2014-01-07 13:30:45 -0800 | [diff] [blame] | 4470 | } else { |
Ben Widawsky | 2a114cc | 2013-11-02 21:07:47 -0700 | [diff] [blame] | 4471 | I915_WRITE(IPS_CTL, 0); |
Jesse Barnes | e59150d | 2014-01-07 13:30:45 -0800 | [diff] [blame] | 4472 | POSTING_READ(IPS_CTL); |
| 4473 | } |
Paulo Zanoni | d77e453 | 2013-09-24 13:52:55 -0300 | [diff] [blame] | 4474 | |
| 4475 | /* We need to wait for a vblank before we can disable the plane. */ |
| 4476 | intel_wait_for_vblank(dev, crtc->pipe); |
| 4477 | } |
| 4478 | |
Maarten Lankhorst | 7cac945 | 2015-04-21 17:12:55 +0300 | [diff] [blame] | 4479 | static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc) |
Ville Syrjälä | d3eedb1 | 2014-05-08 19:23:13 +0300 | [diff] [blame] | 4480 | { |
Maarten Lankhorst | 7cac945 | 2015-04-21 17:12:55 +0300 | [diff] [blame] | 4481 | if (intel_crtc->overlay) { |
Ville Syrjälä | d3eedb1 | 2014-05-08 19:23:13 +0300 | [diff] [blame] | 4482 | struct drm_device *dev = intel_crtc->base.dev; |
| 4483 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4484 | |
| 4485 | mutex_lock(&dev->struct_mutex); |
| 4486 | dev_priv->mm.interruptible = false; |
| 4487 | (void) intel_overlay_switch_off(intel_crtc->overlay); |
| 4488 | dev_priv->mm.interruptible = true; |
| 4489 | mutex_unlock(&dev->struct_mutex); |
| 4490 | } |
| 4491 | |
| 4492 | /* Let userspace switch the overlay on again. In most cases userspace |
| 4493 | * has to recompute where to put it anyway. |
| 4494 | */ |
| 4495 | } |
| 4496 | |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4497 | /** |
| 4498 | * intel_post_enable_primary - Perform operations after enabling primary plane |
| 4499 | * @crtc: the CRTC whose primary plane was just enabled |
| 4500 | * |
| 4501 | * Performs potentially sleeping operations that must be done after the primary |
| 4502 | * plane is enabled, such as updating FBC and IPS. Note that this may be |
| 4503 | * called due to an explicit primary plane update, or due to an implicit |
| 4504 | * re-enable that is caused when a sprite plane is updated to no longer |
| 4505 | * completely hide the primary plane. |
| 4506 | */ |
| 4507 | static void |
| 4508 | intel_post_enable_primary(struct drm_crtc *crtc) |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4509 | { |
| 4510 | struct drm_device *dev = crtc->dev; |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4511 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4512 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4513 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4514 | |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4515 | /* |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4516 | * FIXME IPS should be fine as long as one plane is |
| 4517 | * enabled, but in practice it seems to have problems |
| 4518 | * when going from primary only to sprite only and vice |
| 4519 | * versa. |
| 4520 | */ |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4521 | hsw_enable_ips(intel_crtc); |
| 4522 | |
Daniel Vetter | f99d706 | 2014-06-19 16:01:59 +0200 | [diff] [blame] | 4523 | /* |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4524 | * Gen2 reports pipe underruns whenever all planes are disabled. |
| 4525 | * So don't enable underrun reporting before at least some planes |
| 4526 | * are enabled. |
| 4527 | * FIXME: Need to fix the logic to work when we turn off all planes |
| 4528 | * but leave the pipe running. |
Daniel Vetter | f99d706 | 2014-06-19 16:01:59 +0200 | [diff] [blame] | 4529 | */ |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4530 | if (IS_GEN2(dev)) |
| 4531 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
| 4532 | |
Ville Syrjälä | aca7b68 | 2015-10-30 19:22:21 +0200 | [diff] [blame] | 4533 | /* Underruns don't always raise interrupts, so check manually. */ |
| 4534 | intel_check_cpu_fifo_underruns(dev_priv); |
| 4535 | intel_check_pch_fifo_underruns(dev_priv); |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4536 | } |
| 4537 | |
Ville Syrjälä | 2622a08 | 2016-03-09 19:07:26 +0200 | [diff] [blame] | 4538 | /* FIXME move all this to pre_plane_update() with proper state tracking */ |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4539 | static void |
| 4540 | intel_pre_disable_primary(struct drm_crtc *crtc) |
| 4541 | { |
| 4542 | struct drm_device *dev = crtc->dev; |
| 4543 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4544 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4545 | int pipe = intel_crtc->pipe; |
| 4546 | |
| 4547 | /* |
| 4548 | * Gen2 reports pipe underruns whenever all planes are disabled. |
| 4549 | * So diasble underrun reporting before all the planes get disabled. |
| 4550 | * FIXME: Need to fix the logic to work when we turn off all planes |
| 4551 | * but leave the pipe running. |
| 4552 | */ |
| 4553 | if (IS_GEN2(dev)) |
| 4554 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); |
| 4555 | |
| 4556 | /* |
Ville Syrjälä | 2622a08 | 2016-03-09 19:07:26 +0200 | [diff] [blame] | 4557 | * FIXME IPS should be fine as long as one plane is |
| 4558 | * enabled, but in practice it seems to have problems |
| 4559 | * when going from primary only to sprite only and vice |
| 4560 | * versa. |
| 4561 | */ |
| 4562 | hsw_disable_ips(intel_crtc); |
| 4563 | } |
| 4564 | |
| 4565 | /* FIXME get rid of this and use pre_plane_update */ |
| 4566 | static void |
| 4567 | intel_pre_disable_primary_noatomic(struct drm_crtc *crtc) |
| 4568 | { |
| 4569 | struct drm_device *dev = crtc->dev; |
| 4570 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4571 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4572 | int pipe = intel_crtc->pipe; |
| 4573 | |
| 4574 | intel_pre_disable_primary(crtc); |
| 4575 | |
| 4576 | /* |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4577 | * Vblank time updates from the shadow to live plane control register |
| 4578 | * are blocked if the memory self-refresh mode is active at that |
| 4579 | * moment. So to make sure the plane gets truly disabled, disable |
| 4580 | * first the self-refresh mode. The self-refresh enable bit in turn |
| 4581 | * will be checked/applied by the HW only at the next frame start |
| 4582 | * event which is after the vblank start event, so we need to have a |
| 4583 | * wait-for-vblank between disabling the plane and the pipe. |
| 4584 | */ |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 4585 | if (HAS_GMCH_DISPLAY(dev)) { |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4586 | intel_set_memory_cxsr(dev_priv, false); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 4587 | dev_priv->wm.vlv.cxsr = false; |
| 4588 | intel_wait_for_vblank(dev, pipe); |
| 4589 | } |
Maarten Lankhorst | 87d4300 | 2015-04-21 17:12:54 +0300 | [diff] [blame] | 4590 | } |
| 4591 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 4592 | static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state) |
| 4593 | { |
| 4594 | struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc); |
| 4595 | struct drm_atomic_state *old_state = old_crtc_state->base.state; |
| 4596 | struct intel_crtc_state *pipe_config = |
| 4597 | to_intel_crtc_state(crtc->base.state); |
| 4598 | struct drm_device *dev = crtc->base.dev; |
| 4599 | struct drm_plane *primary = crtc->base.primary; |
| 4600 | struct drm_plane_state *old_pri_state = |
| 4601 | drm_atomic_get_existing_plane_state(old_state, primary); |
| 4602 | |
| 4603 | intel_frontbuffer_flip(dev, pipe_config->fb_bits); |
| 4604 | |
| 4605 | crtc->wm.cxsr_allowed = true; |
| 4606 | |
| 4607 | if (pipe_config->update_wm_post && pipe_config->base.active) |
| 4608 | intel_update_watermarks(&crtc->base); |
| 4609 | |
| 4610 | if (old_pri_state) { |
| 4611 | struct intel_plane_state *primary_state = |
| 4612 | to_intel_plane_state(primary->state); |
| 4613 | struct intel_plane_state *old_primary_state = |
| 4614 | to_intel_plane_state(old_pri_state); |
| 4615 | |
| 4616 | intel_fbc_post_update(crtc); |
| 4617 | |
| 4618 | if (primary_state->visible && |
| 4619 | (needs_modeset(&pipe_config->base) || |
| 4620 | !old_primary_state->visible)) |
| 4621 | intel_post_enable_primary(&crtc->base); |
| 4622 | } |
| 4623 | } |
| 4624 | |
Maarten Lankhorst | 5c74cd7 | 2016-02-03 16:53:24 +0100 | [diff] [blame] | 4625 | static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state) |
Maarten Lankhorst | ac21b22 | 2015-06-15 12:33:49 +0200 | [diff] [blame] | 4626 | { |
Maarten Lankhorst | 5c74cd7 | 2016-02-03 16:53:24 +0100 | [diff] [blame] | 4627 | struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc); |
Maarten Lankhorst | ac21b22 | 2015-06-15 12:33:49 +0200 | [diff] [blame] | 4628 | struct drm_device *dev = crtc->base.dev; |
Maarten Lankhorst | eddfcbc | 2015-06-15 12:33:53 +0200 | [diff] [blame] | 4629 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | ab1d3a0 | 2015-11-19 16:07:14 +0100 | [diff] [blame] | 4630 | struct intel_crtc_state *pipe_config = |
| 4631 | to_intel_crtc_state(crtc->base.state); |
Maarten Lankhorst | 5c74cd7 | 2016-02-03 16:53:24 +0100 | [diff] [blame] | 4632 | struct drm_atomic_state *old_state = old_crtc_state->base.state; |
| 4633 | struct drm_plane *primary = crtc->base.primary; |
| 4634 | struct drm_plane_state *old_pri_state = |
| 4635 | drm_atomic_get_existing_plane_state(old_state, primary); |
| 4636 | bool modeset = needs_modeset(&pipe_config->base); |
Maarten Lankhorst | ac21b22 | 2015-06-15 12:33:49 +0200 | [diff] [blame] | 4637 | |
Maarten Lankhorst | 5c74cd7 | 2016-02-03 16:53:24 +0100 | [diff] [blame] | 4638 | if (old_pri_state) { |
| 4639 | struct intel_plane_state *primary_state = |
| 4640 | to_intel_plane_state(primary->state); |
| 4641 | struct intel_plane_state *old_primary_state = |
| 4642 | to_intel_plane_state(old_pri_state); |
| 4643 | |
Maarten Lankhorst | faf68d9 | 2016-06-14 14:24:20 +0200 | [diff] [blame] | 4644 | intel_fbc_pre_update(crtc, pipe_config, primary_state); |
Maarten Lankhorst | 31ae71f | 2016-03-09 10:35:45 +0100 | [diff] [blame] | 4645 | |
Maarten Lankhorst | 5c74cd7 | 2016-02-03 16:53:24 +0100 | [diff] [blame] | 4646 | if (old_primary_state->visible && |
| 4647 | (modeset || !primary_state->visible)) |
| 4648 | intel_pre_disable_primary(&crtc->base); |
| 4649 | } |
Ville Syrjälä | 852eb00 | 2015-06-24 22:00:07 +0300 | [diff] [blame] | 4650 | |
David Weinehall | a4015f9 | 2016-05-19 15:50:36 +0300 | [diff] [blame] | 4651 | if (pipe_config->disable_cxsr && HAS_GMCH_DISPLAY(dev)) { |
Ville Syrjälä | 852eb00 | 2015-06-24 22:00:07 +0300 | [diff] [blame] | 4652 | crtc->wm.cxsr_allowed = false; |
Maarten Lankhorst | 2dfd178 | 2016-02-03 16:53:25 +0100 | [diff] [blame] | 4653 | |
Ville Syrjälä | 2622a08 | 2016-03-09 19:07:26 +0200 | [diff] [blame] | 4654 | /* |
| 4655 | * Vblank time updates from the shadow to live plane control register |
| 4656 | * are blocked if the memory self-refresh mode is active at that |
| 4657 | * moment. So to make sure the plane gets truly disabled, disable |
| 4658 | * first the self-refresh mode. The self-refresh enable bit in turn |
| 4659 | * will be checked/applied by the HW only at the next frame start |
| 4660 | * event which is after the vblank start event, so we need to have a |
| 4661 | * wait-for-vblank between disabling the plane and the pipe. |
| 4662 | */ |
| 4663 | if (old_crtc_state->base.active) { |
Maarten Lankhorst | 2dfd178 | 2016-02-03 16:53:25 +0100 | [diff] [blame] | 4664 | intel_set_memory_cxsr(dev_priv, false); |
Ville Syrjälä | 2622a08 | 2016-03-09 19:07:26 +0200 | [diff] [blame] | 4665 | dev_priv->wm.vlv.cxsr = false; |
| 4666 | intel_wait_for_vblank(dev, crtc->pipe); |
| 4667 | } |
Ville Syrjälä | 852eb00 | 2015-06-24 22:00:07 +0300 | [diff] [blame] | 4668 | } |
Maarten Lankhorst | 92826fc | 2015-12-03 13:49:13 +0100 | [diff] [blame] | 4669 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 4670 | /* |
| 4671 | * IVB workaround: must disable low power watermarks for at least |
| 4672 | * one frame before enabling scaling. LP watermarks can be re-enabled |
| 4673 | * when scaling is disabled. |
| 4674 | * |
| 4675 | * WaCxSRDisabledForSpriteScaling:ivb |
| 4676 | */ |
| 4677 | if (pipe_config->disable_lp_wm) { |
| 4678 | ilk_disable_lp_wm(dev); |
| 4679 | intel_wait_for_vblank(dev, crtc->pipe); |
| 4680 | } |
| 4681 | |
| 4682 | /* |
| 4683 | * If we're doing a modeset, we're done. No need to do any pre-vblank |
| 4684 | * watermark programming here. |
| 4685 | */ |
| 4686 | if (needs_modeset(&pipe_config->base)) |
| 4687 | return; |
| 4688 | |
| 4689 | /* |
| 4690 | * For platforms that support atomic watermarks, program the |
| 4691 | * 'intermediate' watermarks immediately. On pre-gen9 platforms, these |
| 4692 | * will be the intermediate values that are safe for both pre- and |
| 4693 | * post- vblank; when vblank happens, the 'active' values will be set |
| 4694 | * to the final 'target' values and we'll do this again to get the |
| 4695 | * optimal watermarks. For gen9+ platforms, the values we program here |
| 4696 | * will be the final target values which will get automatically latched |
| 4697 | * at vblank time; no further programming will be necessary. |
| 4698 | * |
| 4699 | * If a platform hasn't been transitioned to atomic watermarks yet, |
| 4700 | * we'll continue to update watermarks the old way, if flags tell |
| 4701 | * us to. |
| 4702 | */ |
| 4703 | if (dev_priv->display.initial_watermarks != NULL) |
| 4704 | dev_priv->display.initial_watermarks(pipe_config); |
Ville Syrjälä | caed361 | 2016-03-09 19:07:25 +0200 | [diff] [blame] | 4705 | else if (pipe_config->update_wm_pre) |
Maarten Lankhorst | 92826fc | 2015-12-03 13:49:13 +0100 | [diff] [blame] | 4706 | intel_update_watermarks(&crtc->base); |
Maarten Lankhorst | ac21b22 | 2015-06-15 12:33:49 +0200 | [diff] [blame] | 4707 | } |
| 4708 | |
Maarten Lankhorst | d032ffa | 2015-06-15 12:33:51 +0200 | [diff] [blame] | 4709 | static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask) |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4710 | { |
| 4711 | struct drm_device *dev = crtc->dev; |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4712 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Maarten Lankhorst | d032ffa | 2015-06-15 12:33:51 +0200 | [diff] [blame] | 4713 | struct drm_plane *p; |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4714 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4715 | |
Maarten Lankhorst | 7cac945 | 2015-04-21 17:12:55 +0300 | [diff] [blame] | 4716 | intel_crtc_dpms_overlay_disable(intel_crtc); |
Maarten Lankhorst | 27321ae | 2015-04-21 17:12:52 +0300 | [diff] [blame] | 4717 | |
Maarten Lankhorst | d032ffa | 2015-06-15 12:33:51 +0200 | [diff] [blame] | 4718 | drm_for_each_plane_mask(p, dev, plane_mask) |
| 4719 | to_intel_plane(p)->disable_plane(p, crtc); |
Ville Syrjälä | f98551a | 2014-05-22 17:48:06 +0300 | [diff] [blame] | 4720 | |
Daniel Vetter | f99d706 | 2014-06-19 16:01:59 +0200 | [diff] [blame] | 4721 | /* |
| 4722 | * FIXME: Once we grow proper nuclear flip support out of this we need |
| 4723 | * to compute the mask of flip planes precisely. For the time being |
| 4724 | * consider this a flip to a NULL plane. |
| 4725 | */ |
| 4726 | intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe)); |
Ville Syrjälä | a5c4d7b | 2014-03-07 18:32:13 +0200 | [diff] [blame] | 4727 | } |
| 4728 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4729 | static void ironlake_crtc_enable(struct drm_crtc *crtc) |
| 4730 | { |
| 4731 | struct drm_device *dev = crtc->dev; |
| 4732 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4733 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 4734 | struct intel_encoder *encoder; |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4735 | int pipe = intel_crtc->pipe; |
Maarten Lankhorst | b95c532 | 2016-03-30 17:16:34 +0200 | [diff] [blame] | 4736 | struct intel_crtc_state *pipe_config = |
| 4737 | to_intel_crtc_state(crtc->state); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4738 | |
Maarten Lankhorst | 53d9f4e | 2015-06-01 12:49:52 +0200 | [diff] [blame] | 4739 | if (WARN_ON(intel_crtc->active)) |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4740 | return; |
| 4741 | |
Ville Syrjälä | b2c0593 | 2016-04-01 21:53:17 +0300 | [diff] [blame] | 4742 | /* |
| 4743 | * Sometimes spurious CPU pipe underruns happen during FDI |
| 4744 | * training, at least with VGA+HDMI cloning. Suppress them. |
| 4745 | * |
| 4746 | * On ILK we get an occasional spurious CPU pipe underruns |
| 4747 | * between eDP port A enable and vdd enable. Also PCH port |
| 4748 | * enable seems to result in the occasional CPU pipe underrun. |
| 4749 | * |
| 4750 | * Spurious PCH underruns also occur during PCH enabling. |
| 4751 | */ |
| 4752 | if (intel_crtc->config->has_pch_encoder || IS_GEN5(dev_priv)) |
| 4753 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4754 | if (intel_crtc->config->has_pch_encoder) |
Ville Syrjälä | 81b088c | 2015-10-30 19:21:31 +0200 | [diff] [blame] | 4755 | intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false); |
| 4756 | |
| 4757 | if (intel_crtc->config->has_pch_encoder) |
Daniel Vetter | b14b105 | 2014-04-24 23:55:13 +0200 | [diff] [blame] | 4758 | intel_prepare_shared_dpll(intel_crtc); |
| 4759 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4760 | if (intel_crtc->config->has_dp_encoder) |
Ramalingam C | fe3cd48 | 2015-02-13 15:32:59 +0530 | [diff] [blame] | 4761 | intel_dp_set_m_n(intel_crtc, M1_N1); |
Daniel Vetter | 29407aa | 2014-04-24 23:55:08 +0200 | [diff] [blame] | 4762 | |
| 4763 | intel_set_pipe_timings(intel_crtc); |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 4764 | intel_set_pipe_src_size(intel_crtc); |
Daniel Vetter | 29407aa | 2014-04-24 23:55:08 +0200 | [diff] [blame] | 4765 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4766 | if (intel_crtc->config->has_pch_encoder) { |
Daniel Vetter | 29407aa | 2014-04-24 23:55:08 +0200 | [diff] [blame] | 4767 | intel_cpu_transcoder_set_m_n(intel_crtc, |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4768 | &intel_crtc->config->fdi_m_n, NULL); |
Daniel Vetter | 29407aa | 2014-04-24 23:55:08 +0200 | [diff] [blame] | 4769 | } |
| 4770 | |
| 4771 | ironlake_set_pipeconf(crtc); |
| 4772 | |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4773 | intel_crtc->active = true; |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 4774 | |
Daniel Vetter | f6736a1 | 2013-06-05 13:34:30 +0200 | [diff] [blame] | 4775 | for_each_encoder_on_crtc(dev, crtc, encoder) |
Daniel Vetter | 952735e | 2013-06-05 13:34:27 +0200 | [diff] [blame] | 4776 | if (encoder->pre_enable) |
| 4777 | encoder->pre_enable(encoder); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4778 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4779 | if (intel_crtc->config->has_pch_encoder) { |
Daniel Vetter | fff367c | 2012-10-27 15:50:28 +0200 | [diff] [blame] | 4780 | /* Note: FDI PLL enabling _must_ be done before we enable the |
| 4781 | * cpu pipes, hence this is separate from all the other fdi/pch |
| 4782 | * enabling. */ |
Daniel Vetter | 88cefb6 | 2012-08-12 19:27:14 +0200 | [diff] [blame] | 4783 | ironlake_fdi_pll_enable(intel_crtc); |
Daniel Vetter | 46b6f81 | 2012-09-06 22:08:33 +0200 | [diff] [blame] | 4784 | } else { |
| 4785 | assert_fdi_tx_disabled(dev_priv, pipe); |
| 4786 | assert_fdi_rx_disabled(dev_priv, pipe); |
| 4787 | } |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4788 | |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 4789 | ironlake_pfit_enable(intel_crtc); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4790 | |
Jesse Barnes | 9c54c0d | 2011-06-15 23:32:33 +0200 | [diff] [blame] | 4791 | /* |
| 4792 | * On ILK+ LUT must be loaded before the pipe is running but with |
| 4793 | * clocks enabled |
| 4794 | */ |
Maarten Lankhorst | b95c532 | 2016-03-30 17:16:34 +0200 | [diff] [blame] | 4795 | intel_color_load_luts(&pipe_config->base); |
Jesse Barnes | 9c54c0d | 2011-06-15 23:32:33 +0200 | [diff] [blame] | 4796 | |
Imre Deak | 1d5bf5d | 2016-02-29 22:10:33 +0200 | [diff] [blame] | 4797 | if (dev_priv->display.initial_watermarks != NULL) |
| 4798 | dev_priv->display.initial_watermarks(intel_crtc->config); |
Paulo Zanoni | e1fdc47 | 2014-01-17 13:51:12 -0200 | [diff] [blame] | 4799 | intel_enable_pipe(intel_crtc); |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4800 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4801 | if (intel_crtc->config->has_pch_encoder) |
Jesse Barnes | f67a559 | 2011-01-05 10:31:48 -0800 | [diff] [blame] | 4802 | ironlake_pch_enable(crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4803 | |
Daniel Vetter | f9b61ff | 2015-01-07 13:54:39 +0100 | [diff] [blame] | 4804 | assert_vblank_disabled(crtc); |
| 4805 | drm_crtc_vblank_on(crtc); |
| 4806 | |
Daniel Vetter | fa5c73b | 2012-07-01 23:24:36 +0200 | [diff] [blame] | 4807 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 4808 | encoder->enable(encoder); |
Daniel Vetter | 61b77dd | 2012-07-02 00:16:19 +0200 | [diff] [blame] | 4809 | |
| 4810 | if (HAS_PCH_CPT(dev)) |
Daniel Vetter | a152031 | 2013-05-03 11:49:50 +0200 | [diff] [blame] | 4811 | cpt_verify_modeset(dev, intel_crtc->pipe); |
Ville Syrjälä | 37ca8d4 | 2015-10-30 19:20:27 +0200 | [diff] [blame] | 4812 | |
| 4813 | /* Must wait for vblank to avoid spurious PCH FIFO underruns */ |
| 4814 | if (intel_crtc->config->has_pch_encoder) |
| 4815 | intel_wait_for_vblank(dev, pipe); |
Ville Syrjälä | b2c0593 | 2016-04-01 21:53:17 +0300 | [diff] [blame] | 4816 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
Ville Syrjälä | 37ca8d4 | 2015-10-30 19:20:27 +0200 | [diff] [blame] | 4817 | intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4818 | } |
| 4819 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 4820 | /* IPS only exists on ULT machines and is tied to pipe A. */ |
| 4821 | static bool hsw_crtc_supports_ips(struct intel_crtc *crtc) |
| 4822 | { |
Damien Lespiau | f5adf94 | 2013-06-24 18:29:34 +0100 | [diff] [blame] | 4823 | return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A; |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 4824 | } |
| 4825 | |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4826 | static void haswell_crtc_enable(struct drm_crtc *crtc) |
| 4827 | { |
| 4828 | struct drm_device *dev = crtc->dev; |
| 4829 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4830 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 4831 | struct intel_encoder *encoder; |
Maarten Lankhorst | 99d736a | 2015-06-01 12:50:09 +0200 | [diff] [blame] | 4832 | int pipe = intel_crtc->pipe, hsw_workaround_pipe; |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 4833 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
Maarten Lankhorst | 99d736a | 2015-06-01 12:50:09 +0200 | [diff] [blame] | 4834 | struct intel_crtc_state *pipe_config = |
| 4835 | to_intel_crtc_state(crtc->state); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4836 | |
Maarten Lankhorst | 53d9f4e | 2015-06-01 12:49:52 +0200 | [diff] [blame] | 4837 | if (WARN_ON(intel_crtc->active)) |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4838 | return; |
| 4839 | |
Ville Syrjälä | 81b088c | 2015-10-30 19:21:31 +0200 | [diff] [blame] | 4840 | if (intel_crtc->config->has_pch_encoder) |
| 4841 | intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A, |
| 4842 | false); |
| 4843 | |
Imre Deak | 95a7a2a | 2016-06-13 16:44:35 +0300 | [diff] [blame] | 4844 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 4845 | if (encoder->pre_pll_enable) |
| 4846 | encoder->pre_pll_enable(encoder); |
| 4847 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 4848 | if (intel_crtc->config->shared_dpll) |
Daniel Vetter | df8ad70 | 2014-06-25 22:02:03 +0300 | [diff] [blame] | 4849 | intel_enable_shared_dpll(intel_crtc); |
| 4850 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4851 | if (intel_crtc->config->has_dp_encoder) |
Ramalingam C | fe3cd48 | 2015-02-13 15:32:59 +0530 | [diff] [blame] | 4852 | intel_dp_set_m_n(intel_crtc, M1_N1); |
Daniel Vetter | 229fca9 | 2014-04-24 23:55:09 +0200 | [diff] [blame] | 4853 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 4854 | if (!intel_crtc->config->has_dsi_encoder) |
| 4855 | intel_set_pipe_timings(intel_crtc); |
| 4856 | |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 4857 | intel_set_pipe_src_size(intel_crtc); |
Daniel Vetter | 229fca9 | 2014-04-24 23:55:09 +0200 | [diff] [blame] | 4858 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 4859 | if (cpu_transcoder != TRANSCODER_EDP && |
| 4860 | !transcoder_is_dsi(cpu_transcoder)) { |
| 4861 | I915_WRITE(PIPE_MULT(cpu_transcoder), |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4862 | intel_crtc->config->pixel_multiplier - 1); |
Clint Taylor | ebb69c9 | 2014-09-30 10:30:22 -0700 | [diff] [blame] | 4863 | } |
| 4864 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4865 | if (intel_crtc->config->has_pch_encoder) { |
Daniel Vetter | 229fca9 | 2014-04-24 23:55:09 +0200 | [diff] [blame] | 4866 | intel_cpu_transcoder_set_m_n(intel_crtc, |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4867 | &intel_crtc->config->fdi_m_n, NULL); |
Daniel Vetter | 229fca9 | 2014-04-24 23:55:09 +0200 | [diff] [blame] | 4868 | } |
| 4869 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 4870 | if (!intel_crtc->config->has_dsi_encoder) |
| 4871 | haswell_set_pipeconf(crtc); |
| 4872 | |
Jani Nikula | 391bf04 | 2016-03-18 17:05:40 +0200 | [diff] [blame] | 4873 | haswell_set_pipemisc(crtc); |
Daniel Vetter | 229fca9 | 2014-04-24 23:55:09 +0200 | [diff] [blame] | 4874 | |
Maarten Lankhorst | b95c532 | 2016-03-30 17:16:34 +0200 | [diff] [blame] | 4875 | intel_color_set_csc(&pipe_config->base); |
Daniel Vetter | 229fca9 | 2014-04-24 23:55:09 +0200 | [diff] [blame] | 4876 | |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4877 | intel_crtc->active = true; |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 4878 | |
Daniel Vetter | 6b69851 | 2015-11-28 11:05:39 +0100 | [diff] [blame] | 4879 | if (intel_crtc->config->has_pch_encoder) |
| 4880 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); |
| 4881 | else |
| 4882 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
| 4883 | |
Shashank Sharma | 7d4aefd | 2015-10-01 22:23:49 +0530 | [diff] [blame] | 4884 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4885 | if (encoder->pre_enable) |
| 4886 | encoder->pre_enable(encoder); |
Shashank Sharma | 7d4aefd | 2015-10-01 22:23:49 +0530 | [diff] [blame] | 4887 | } |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4888 | |
Ville Syrjälä | d2d6540 | 2015-10-29 21:25:53 +0200 | [diff] [blame] | 4889 | if (intel_crtc->config->has_pch_encoder) |
Imre Deak | 4fe9467 | 2014-06-25 22:01:49 +0300 | [diff] [blame] | 4890 | dev_priv->display.fdi_link_train(crtc); |
Imre Deak | 4fe9467 | 2014-06-25 22:01:49 +0300 | [diff] [blame] | 4891 | |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 4892 | if (!intel_crtc->config->has_dsi_encoder) |
Shashank Sharma | 7d4aefd | 2015-10-01 22:23:49 +0530 | [diff] [blame] | 4893 | intel_ddi_enable_pipe_clock(intel_crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4894 | |
Rodrigo Vivi | 1c132b4 | 2015-09-02 15:19:26 -0700 | [diff] [blame] | 4895 | if (INTEL_INFO(dev)->gen >= 9) |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 4896 | skylake_pfit_enable(intel_crtc); |
Jesse Barnes | ff6d9f5 | 2015-01-21 17:19:54 -0800 | [diff] [blame] | 4897 | else |
Rodrigo Vivi | 1c132b4 | 2015-09-02 15:19:26 -0700 | [diff] [blame] | 4898 | ironlake_pfit_enable(intel_crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4899 | |
| 4900 | /* |
| 4901 | * On ILK+ LUT must be loaded before the pipe is running but with |
| 4902 | * clocks enabled |
| 4903 | */ |
Maarten Lankhorst | b95c532 | 2016-03-30 17:16:34 +0200 | [diff] [blame] | 4904 | intel_color_load_luts(&pipe_config->base); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4905 | |
Paulo Zanoni | 1f54438 | 2012-10-24 11:32:00 -0200 | [diff] [blame] | 4906 | intel_ddi_set_pipe_settings(crtc); |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 4907 | if (!intel_crtc->config->has_dsi_encoder) |
Shashank Sharma | 7d4aefd | 2015-10-01 22:23:49 +0530 | [diff] [blame] | 4908 | intel_ddi_enable_transcoder_func(crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4909 | |
Imre Deak | 1d5bf5d | 2016-02-29 22:10:33 +0200 | [diff] [blame] | 4910 | if (dev_priv->display.initial_watermarks != NULL) |
| 4911 | dev_priv->display.initial_watermarks(pipe_config); |
| 4912 | else |
| 4913 | intel_update_watermarks(crtc); |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 4914 | |
| 4915 | /* XXX: Do the pipe assertions at the right place for BXT DSI. */ |
| 4916 | if (!intel_crtc->config->has_dsi_encoder) |
| 4917 | intel_enable_pipe(intel_crtc); |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 4918 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 4919 | if (intel_crtc->config->has_pch_encoder) |
Paulo Zanoni | 1507e5b | 2012-10-31 18:12:22 -0200 | [diff] [blame] | 4920 | lpt_pch_enable(crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4921 | |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 4922 | if (intel_crtc->config->dp_encoder_is_mst) |
Dave Airlie | 0e32b39 | 2014-05-02 14:02:48 +1000 | [diff] [blame] | 4923 | intel_ddi_set_vc_payload_alloc(crtc, true); |
| 4924 | |
Daniel Vetter | f9b61ff | 2015-01-07 13:54:39 +0100 | [diff] [blame] | 4925 | assert_vblank_disabled(crtc); |
| 4926 | drm_crtc_vblank_on(crtc); |
| 4927 | |
Jani Nikula | 8807e55 | 2013-08-30 19:40:32 +0300 | [diff] [blame] | 4928 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4929 | encoder->enable(encoder); |
Jani Nikula | 8807e55 | 2013-08-30 19:40:32 +0300 | [diff] [blame] | 4930 | intel_opregion_notify_encoder(encoder, true); |
| 4931 | } |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4932 | |
Daniel Vetter | 6b69851 | 2015-11-28 11:05:39 +0100 | [diff] [blame] | 4933 | if (intel_crtc->config->has_pch_encoder) { |
| 4934 | intel_wait_for_vblank(dev, pipe); |
| 4935 | intel_wait_for_vblank(dev, pipe); |
| 4936 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
Ville Syrjälä | d2d6540 | 2015-10-29 21:25:53 +0200 | [diff] [blame] | 4937 | intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A, |
| 4938 | true); |
Daniel Vetter | 6b69851 | 2015-11-28 11:05:39 +0100 | [diff] [blame] | 4939 | } |
Ville Syrjälä | d2d6540 | 2015-10-29 21:25:53 +0200 | [diff] [blame] | 4940 | |
Paulo Zanoni | e491694 | 2013-09-20 16:21:19 -0300 | [diff] [blame] | 4941 | /* If we change the relative order between pipe/planes enabling, we need |
| 4942 | * to change the workaround. */ |
Maarten Lankhorst | 99d736a | 2015-06-01 12:50:09 +0200 | [diff] [blame] | 4943 | hsw_workaround_pipe = pipe_config->hsw_workaround_pipe; |
| 4944 | if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) { |
| 4945 | intel_wait_for_vblank(dev, hsw_workaround_pipe); |
| 4946 | intel_wait_for_vblank(dev, hsw_workaround_pipe); |
| 4947 | } |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 4948 | } |
| 4949 | |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 4950 | static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force) |
Daniel Vetter | 3f8dce3 | 2013-05-08 10:36:30 +0200 | [diff] [blame] | 4951 | { |
| 4952 | struct drm_device *dev = crtc->base.dev; |
| 4953 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4954 | int pipe = crtc->pipe; |
| 4955 | |
| 4956 | /* To avoid upsetting the power well on haswell only disable the pfit if |
| 4957 | * it's in use. The hw state code will make sure we get this right. */ |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 4958 | if (force || crtc->config->pch_pfit.enabled) { |
Daniel Vetter | 3f8dce3 | 2013-05-08 10:36:30 +0200 | [diff] [blame] | 4959 | I915_WRITE(PF_CTL(pipe), 0); |
| 4960 | I915_WRITE(PF_WIN_POS(pipe), 0); |
| 4961 | I915_WRITE(PF_WIN_SZ(pipe), 0); |
| 4962 | } |
| 4963 | } |
| 4964 | |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4965 | static void ironlake_crtc_disable(struct drm_crtc *crtc) |
| 4966 | { |
| 4967 | struct drm_device *dev = crtc->dev; |
| 4968 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4969 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 4970 | struct intel_encoder *encoder; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4971 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4972 | |
Ville Syrjälä | b2c0593 | 2016-04-01 21:53:17 +0300 | [diff] [blame] | 4973 | /* |
| 4974 | * Sometimes spurious CPU pipe underruns happen when the |
| 4975 | * pipe is already disabled, but FDI RX/TX is still enabled. |
| 4976 | * Happens at least with VGA+HDMI cloning. Suppress them. |
| 4977 | */ |
| 4978 | if (intel_crtc->config->has_pch_encoder) { |
| 4979 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); |
Ville Syrjälä | 37ca8d4 | 2015-10-30 19:20:27 +0200 | [diff] [blame] | 4980 | intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false); |
Ville Syrjälä | b2c0593 | 2016-04-01 21:53:17 +0300 | [diff] [blame] | 4981 | } |
Ville Syrjälä | 37ca8d4 | 2015-10-30 19:20:27 +0200 | [diff] [blame] | 4982 | |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 4983 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 4984 | encoder->disable(encoder); |
| 4985 | |
Daniel Vetter | f9b61ff | 2015-01-07 13:54:39 +0100 | [diff] [blame] | 4986 | drm_crtc_vblank_off(crtc); |
| 4987 | assert_vblank_disabled(crtc); |
| 4988 | |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 4989 | intel_disable_pipe(intel_crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4990 | |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 4991 | ironlake_pfit_disable(intel_crtc, false); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4992 | |
Ville Syrjälä | b2c0593 | 2016-04-01 21:53:17 +0300 | [diff] [blame] | 4993 | if (intel_crtc->config->has_pch_encoder) |
Ville Syrjälä | 5a74f70 | 2015-05-05 17:17:38 +0300 | [diff] [blame] | 4994 | ironlake_fdi_disable(crtc); |
| 4995 | |
Daniel Vetter | bf49ec8 | 2012-09-06 22:15:40 +0200 | [diff] [blame] | 4996 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 4997 | if (encoder->post_disable) |
| 4998 | encoder->post_disable(encoder); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 4999 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 5000 | if (intel_crtc->config->has_pch_encoder) { |
Daniel Vetter | d925c59 | 2013-06-05 13:34:04 +0200 | [diff] [blame] | 5001 | ironlake_disable_pch_transcoder(dev_priv, pipe); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 5002 | |
Daniel Vetter | d925c59 | 2013-06-05 13:34:04 +0200 | [diff] [blame] | 5003 | if (HAS_PCH_CPT(dev)) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 5004 | i915_reg_t reg; |
| 5005 | u32 temp; |
| 5006 | |
Daniel Vetter | d925c59 | 2013-06-05 13:34:04 +0200 | [diff] [blame] | 5007 | /* disable TRANS_DP_CTL */ |
| 5008 | reg = TRANS_DP_CTL(pipe); |
| 5009 | temp = I915_READ(reg); |
| 5010 | temp &= ~(TRANS_DP_OUTPUT_ENABLE | |
| 5011 | TRANS_DP_PORT_SEL_MASK); |
| 5012 | temp |= TRANS_DP_PORT_SEL_NONE; |
| 5013 | I915_WRITE(reg, temp); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 5014 | |
Daniel Vetter | d925c59 | 2013-06-05 13:34:04 +0200 | [diff] [blame] | 5015 | /* disable DPLL_SEL */ |
| 5016 | temp = I915_READ(PCH_DPLL_SEL); |
Daniel Vetter | 1188739 | 2013-06-05 13:34:09 +0200 | [diff] [blame] | 5017 | temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe)); |
Daniel Vetter | d925c59 | 2013-06-05 13:34:04 +0200 | [diff] [blame] | 5018 | I915_WRITE(PCH_DPLL_SEL, temp); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 5019 | } |
Daniel Vetter | d925c59 | 2013-06-05 13:34:04 +0200 | [diff] [blame] | 5020 | |
Daniel Vetter | d925c59 | 2013-06-05 13:34:04 +0200 | [diff] [blame] | 5021 | ironlake_fdi_pll_disable(intel_crtc); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 5022 | } |
Ville Syrjälä | 81b088c | 2015-10-30 19:21:31 +0200 | [diff] [blame] | 5023 | |
Ville Syrjälä | b2c0593 | 2016-04-01 21:53:17 +0300 | [diff] [blame] | 5024 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
Ville Syrjälä | 81b088c | 2015-10-30 19:21:31 +0200 | [diff] [blame] | 5025 | intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true); |
Jesse Barnes | 6be4a60 | 2010-09-10 10:26:01 -0700 | [diff] [blame] | 5026 | } |
| 5027 | |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5028 | static void haswell_crtc_disable(struct drm_crtc *crtc) |
| 5029 | { |
| 5030 | struct drm_device *dev = crtc->dev; |
| 5031 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5032 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5033 | struct intel_encoder *encoder; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 5034 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5035 | |
Ville Syrjälä | d2d6540 | 2015-10-29 21:25:53 +0200 | [diff] [blame] | 5036 | if (intel_crtc->config->has_pch_encoder) |
| 5037 | intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A, |
| 5038 | false); |
| 5039 | |
Jani Nikula | 8807e55 | 2013-08-30 19:40:32 +0300 | [diff] [blame] | 5040 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
| 5041 | intel_opregion_notify_encoder(encoder, false); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5042 | encoder->disable(encoder); |
Jani Nikula | 8807e55 | 2013-08-30 19:40:32 +0300 | [diff] [blame] | 5043 | } |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5044 | |
Daniel Vetter | f9b61ff | 2015-01-07 13:54:39 +0100 | [diff] [blame] | 5045 | drm_crtc_vblank_off(crtc); |
| 5046 | assert_vblank_disabled(crtc); |
| 5047 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 5048 | /* XXX: Do the pipe assertions at the right place for BXT DSI. */ |
| 5049 | if (!intel_crtc->config->has_dsi_encoder) |
| 5050 | intel_disable_pipe(intel_crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5051 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 5052 | if (intel_crtc->config->dp_encoder_is_mst) |
Ville Syrjälä | a4bf214 | 2014-08-18 21:27:34 +0300 | [diff] [blame] | 5053 | intel_ddi_set_vc_payload_alloc(crtc, false); |
| 5054 | |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 5055 | if (!intel_crtc->config->has_dsi_encoder) |
Shashank Sharma | 7d4aefd | 2015-10-01 22:23:49 +0530 | [diff] [blame] | 5056 | intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5057 | |
Rodrigo Vivi | 1c132b4 | 2015-09-02 15:19:26 -0700 | [diff] [blame] | 5058 | if (INTEL_INFO(dev)->gen >= 9) |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 5059 | skylake_scaler_disable(intel_crtc); |
Jesse Barnes | ff6d9f5 | 2015-01-21 17:19:54 -0800 | [diff] [blame] | 5060 | else |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 5061 | ironlake_pfit_disable(intel_crtc, false); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5062 | |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 5063 | if (!intel_crtc->config->has_dsi_encoder) |
Shashank Sharma | 7d4aefd | 2015-10-01 22:23:49 +0530 | [diff] [blame] | 5064 | intel_ddi_disable_pipe_clock(intel_crtc); |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5065 | |
Imre Deak | 97b040a | 2014-06-25 22:01:50 +0300 | [diff] [blame] | 5066 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 5067 | if (encoder->post_disable) |
| 5068 | encoder->post_disable(encoder); |
Ville Syrjälä | 81b088c | 2015-10-30 19:21:31 +0200 | [diff] [blame] | 5069 | |
Ville Syrjälä | 92966a3 | 2015-12-08 16:05:48 +0200 | [diff] [blame] | 5070 | if (intel_crtc->config->has_pch_encoder) { |
| 5071 | lpt_disable_pch_transcoder(dev_priv); |
Ville Syrjälä | 503a74e | 2015-12-04 22:22:14 +0200 | [diff] [blame] | 5072 | lpt_disable_iclkip(dev_priv); |
Ville Syrjälä | 92966a3 | 2015-12-08 16:05:48 +0200 | [diff] [blame] | 5073 | intel_ddi_fdi_disable(crtc); |
| 5074 | |
Ville Syrjälä | 81b088c | 2015-10-30 19:21:31 +0200 | [diff] [blame] | 5075 | intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A, |
| 5076 | true); |
Ville Syrjälä | 92966a3 | 2015-12-08 16:05:48 +0200 | [diff] [blame] | 5077 | } |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 5078 | } |
| 5079 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 5080 | static void i9xx_pfit_enable(struct intel_crtc *crtc) |
| 5081 | { |
| 5082 | struct drm_device *dev = crtc->base.dev; |
| 5083 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 5084 | struct intel_crtc_state *pipe_config = crtc->config; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 5085 | |
Ander Conselvan de Oliveira | 681a850 | 2015-01-15 14:55:24 +0200 | [diff] [blame] | 5086 | if (!pipe_config->gmch_pfit.control) |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 5087 | return; |
| 5088 | |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 5089 | /* |
| 5090 | * The panel fitter should only be adjusted whilst the pipe is disabled, |
| 5091 | * according to register description and PRM. |
| 5092 | */ |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 5093 | WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE); |
| 5094 | assert_pipe_disabled(dev_priv, crtc->pipe); |
| 5095 | |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 5096 | I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios); |
| 5097 | I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control); |
Daniel Vetter | 5a80c45 | 2013-04-25 22:52:18 +0200 | [diff] [blame] | 5098 | |
| 5099 | /* Border color in case we don't scale up to the full screen. Black by |
| 5100 | * default, change to something else for debugging. */ |
| 5101 | I915_WRITE(BCLRPAT(crtc->pipe), 0); |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 5102 | } |
| 5103 | |
Dave Airlie | d05410f | 2014-06-05 13:22:59 +1000 | [diff] [blame] | 5104 | static enum intel_display_power_domain port_to_power_domain(enum port port) |
| 5105 | { |
| 5106 | switch (port) { |
| 5107 | case PORT_A: |
Patrik Jakobsson | 6331a70 | 2015-11-09 16:48:21 +0100 | [diff] [blame] | 5108 | return POWER_DOMAIN_PORT_DDI_A_LANES; |
Dave Airlie | d05410f | 2014-06-05 13:22:59 +1000 | [diff] [blame] | 5109 | case PORT_B: |
Patrik Jakobsson | 6331a70 | 2015-11-09 16:48:21 +0100 | [diff] [blame] | 5110 | return POWER_DOMAIN_PORT_DDI_B_LANES; |
Dave Airlie | d05410f | 2014-06-05 13:22:59 +1000 | [diff] [blame] | 5111 | case PORT_C: |
Patrik Jakobsson | 6331a70 | 2015-11-09 16:48:21 +0100 | [diff] [blame] | 5112 | return POWER_DOMAIN_PORT_DDI_C_LANES; |
Dave Airlie | d05410f | 2014-06-05 13:22:59 +1000 | [diff] [blame] | 5113 | case PORT_D: |
Patrik Jakobsson | 6331a70 | 2015-11-09 16:48:21 +0100 | [diff] [blame] | 5114 | return POWER_DOMAIN_PORT_DDI_D_LANES; |
Xiong Zhang | d8e19f9 | 2015-08-13 18:00:12 +0800 | [diff] [blame] | 5115 | case PORT_E: |
Patrik Jakobsson | 6331a70 | 2015-11-09 16:48:21 +0100 | [diff] [blame] | 5116 | return POWER_DOMAIN_PORT_DDI_E_LANES; |
Dave Airlie | d05410f | 2014-06-05 13:22:59 +1000 | [diff] [blame] | 5117 | default: |
Imre Deak | b9fec16 | 2015-11-18 15:57:25 +0200 | [diff] [blame] | 5118 | MISSING_CASE(port); |
Dave Airlie | d05410f | 2014-06-05 13:22:59 +1000 | [diff] [blame] | 5119 | return POWER_DOMAIN_PORT_OTHER; |
| 5120 | } |
| 5121 | } |
| 5122 | |
Ville Syrjälä | 25f78f5 | 2015-11-16 15:01:04 +0100 | [diff] [blame] | 5123 | static enum intel_display_power_domain port_to_aux_power_domain(enum port port) |
| 5124 | { |
| 5125 | switch (port) { |
| 5126 | case PORT_A: |
| 5127 | return POWER_DOMAIN_AUX_A; |
| 5128 | case PORT_B: |
| 5129 | return POWER_DOMAIN_AUX_B; |
| 5130 | case PORT_C: |
| 5131 | return POWER_DOMAIN_AUX_C; |
| 5132 | case PORT_D: |
| 5133 | return POWER_DOMAIN_AUX_D; |
| 5134 | case PORT_E: |
| 5135 | /* FIXME: Check VBT for actual wiring of PORT E */ |
| 5136 | return POWER_DOMAIN_AUX_D; |
| 5137 | default: |
Imre Deak | b9fec16 | 2015-11-18 15:57:25 +0200 | [diff] [blame] | 5138 | MISSING_CASE(port); |
Ville Syrjälä | 25f78f5 | 2015-11-16 15:01:04 +0100 | [diff] [blame] | 5139 | return POWER_DOMAIN_AUX_A; |
| 5140 | } |
| 5141 | } |
| 5142 | |
Imre Deak | 319be8a | 2014-03-04 19:22:57 +0200 | [diff] [blame] | 5143 | enum intel_display_power_domain |
| 5144 | intel_display_port_power_domain(struct intel_encoder *intel_encoder) |
Imre Deak | 77d22dc | 2014-03-05 16:20:52 +0200 | [diff] [blame] | 5145 | { |
Imre Deak | 319be8a | 2014-03-04 19:22:57 +0200 | [diff] [blame] | 5146 | struct drm_device *dev = intel_encoder->base.dev; |
| 5147 | struct intel_digital_port *intel_dig_port; |
| 5148 | |
| 5149 | switch (intel_encoder->type) { |
| 5150 | case INTEL_OUTPUT_UNKNOWN: |
| 5151 | /* Only DDI platforms should ever use this output type */ |
| 5152 | WARN_ON_ONCE(!HAS_DDI(dev)); |
| 5153 | case INTEL_OUTPUT_DISPLAYPORT: |
| 5154 | case INTEL_OUTPUT_HDMI: |
| 5155 | case INTEL_OUTPUT_EDP: |
| 5156 | intel_dig_port = enc_to_dig_port(&intel_encoder->base); |
Dave Airlie | d05410f | 2014-06-05 13:22:59 +1000 | [diff] [blame] | 5157 | return port_to_power_domain(intel_dig_port->port); |
Dave Airlie | 0e32b39 | 2014-05-02 14:02:48 +1000 | [diff] [blame] | 5158 | case INTEL_OUTPUT_DP_MST: |
| 5159 | intel_dig_port = enc_to_mst(&intel_encoder->base)->primary; |
| 5160 | return port_to_power_domain(intel_dig_port->port); |
Imre Deak | 319be8a | 2014-03-04 19:22:57 +0200 | [diff] [blame] | 5161 | case INTEL_OUTPUT_ANALOG: |
| 5162 | return POWER_DOMAIN_PORT_CRT; |
| 5163 | case INTEL_OUTPUT_DSI: |
| 5164 | return POWER_DOMAIN_PORT_DSI; |
| 5165 | default: |
| 5166 | return POWER_DOMAIN_PORT_OTHER; |
| 5167 | } |
| 5168 | } |
| 5169 | |
Ville Syrjälä | 25f78f5 | 2015-11-16 15:01:04 +0100 | [diff] [blame] | 5170 | enum intel_display_power_domain |
| 5171 | intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder) |
| 5172 | { |
| 5173 | struct drm_device *dev = intel_encoder->base.dev; |
| 5174 | struct intel_digital_port *intel_dig_port; |
| 5175 | |
| 5176 | switch (intel_encoder->type) { |
| 5177 | case INTEL_OUTPUT_UNKNOWN: |
Imre Deak | 651174a | 2015-11-18 15:57:24 +0200 | [diff] [blame] | 5178 | case INTEL_OUTPUT_HDMI: |
| 5179 | /* |
| 5180 | * Only DDI platforms should ever use these output types. |
| 5181 | * We can get here after the HDMI detect code has already set |
| 5182 | * the type of the shared encoder. Since we can't be sure |
| 5183 | * what's the status of the given connectors, play safe and |
| 5184 | * run the DP detection too. |
| 5185 | */ |
Ville Syrjälä | 25f78f5 | 2015-11-16 15:01:04 +0100 | [diff] [blame] | 5186 | WARN_ON_ONCE(!HAS_DDI(dev)); |
| 5187 | case INTEL_OUTPUT_DISPLAYPORT: |
| 5188 | case INTEL_OUTPUT_EDP: |
| 5189 | intel_dig_port = enc_to_dig_port(&intel_encoder->base); |
| 5190 | return port_to_aux_power_domain(intel_dig_port->port); |
| 5191 | case INTEL_OUTPUT_DP_MST: |
| 5192 | intel_dig_port = enc_to_mst(&intel_encoder->base)->primary; |
| 5193 | return port_to_aux_power_domain(intel_dig_port->port); |
| 5194 | default: |
Imre Deak | b9fec16 | 2015-11-18 15:57:25 +0200 | [diff] [blame] | 5195 | MISSING_CASE(intel_encoder->type); |
Ville Syrjälä | 25f78f5 | 2015-11-16 15:01:04 +0100 | [diff] [blame] | 5196 | return POWER_DOMAIN_AUX_A; |
| 5197 | } |
| 5198 | } |
| 5199 | |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5200 | static unsigned long get_crtc_power_domains(struct drm_crtc *crtc, |
| 5201 | struct intel_crtc_state *crtc_state) |
Imre Deak | 319be8a | 2014-03-04 19:22:57 +0200 | [diff] [blame] | 5202 | { |
| 5203 | struct drm_device *dev = crtc->dev; |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5204 | struct drm_encoder *encoder; |
Imre Deak | 319be8a | 2014-03-04 19:22:57 +0200 | [diff] [blame] | 5205 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5206 | enum pipe pipe = intel_crtc->pipe; |
Imre Deak | 77d22dc | 2014-03-05 16:20:52 +0200 | [diff] [blame] | 5207 | unsigned long mask; |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5208 | enum transcoder transcoder = crtc_state->cpu_transcoder; |
Imre Deak | 77d22dc | 2014-03-05 16:20:52 +0200 | [diff] [blame] | 5209 | |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5210 | if (!crtc_state->base.active) |
Maarten Lankhorst | 292b990 | 2015-07-13 16:30:27 +0200 | [diff] [blame] | 5211 | return 0; |
| 5212 | |
Imre Deak | 77d22dc | 2014-03-05 16:20:52 +0200 | [diff] [blame] | 5213 | mask = BIT(POWER_DOMAIN_PIPE(pipe)); |
| 5214 | mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder)); |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5215 | if (crtc_state->pch_pfit.enabled || |
| 5216 | crtc_state->pch_pfit.force_thru) |
Imre Deak | 77d22dc | 2014-03-05 16:20:52 +0200 | [diff] [blame] | 5217 | mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe)); |
| 5218 | |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5219 | drm_for_each_encoder_mask(encoder, dev, crtc_state->base.encoder_mask) { |
| 5220 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
| 5221 | |
Imre Deak | 319be8a | 2014-03-04 19:22:57 +0200 | [diff] [blame] | 5222 | mask |= BIT(intel_display_port_power_domain(intel_encoder)); |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5223 | } |
Imre Deak | 319be8a | 2014-03-04 19:22:57 +0200 | [diff] [blame] | 5224 | |
Maarten Lankhorst | 15e7ec2 | 2016-03-14 09:27:54 +0100 | [diff] [blame] | 5225 | if (crtc_state->shared_dpll) |
| 5226 | mask |= BIT(POWER_DOMAIN_PLLS); |
| 5227 | |
Imre Deak | 77d22dc | 2014-03-05 16:20:52 +0200 | [diff] [blame] | 5228 | return mask; |
| 5229 | } |
| 5230 | |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5231 | static unsigned long |
| 5232 | modeset_get_crtc_power_domains(struct drm_crtc *crtc, |
| 5233 | struct intel_crtc_state *crtc_state) |
Maarten Lankhorst | 292b990 | 2015-07-13 16:30:27 +0200 | [diff] [blame] | 5234 | { |
| 5235 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
| 5236 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 5237 | enum intel_display_power_domain domain; |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 5238 | unsigned long domains, new_domains, old_domains; |
Maarten Lankhorst | 292b990 | 2015-07-13 16:30:27 +0200 | [diff] [blame] | 5239 | |
| 5240 | old_domains = intel_crtc->enabled_power_domains; |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 5241 | intel_crtc->enabled_power_domains = new_domains = |
| 5242 | get_crtc_power_domains(crtc, crtc_state); |
Maarten Lankhorst | 292b990 | 2015-07-13 16:30:27 +0200 | [diff] [blame] | 5243 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 5244 | domains = new_domains & ~old_domains; |
Maarten Lankhorst | 292b990 | 2015-07-13 16:30:27 +0200 | [diff] [blame] | 5245 | |
| 5246 | for_each_power_domain(domain, domains) |
| 5247 | intel_display_power_get(dev_priv, domain); |
| 5248 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 5249 | return old_domains & ~new_domains; |
Maarten Lankhorst | 292b990 | 2015-07-13 16:30:27 +0200 | [diff] [blame] | 5250 | } |
| 5251 | |
| 5252 | static void modeset_put_power_domains(struct drm_i915_private *dev_priv, |
| 5253 | unsigned long domains) |
| 5254 | { |
| 5255 | enum intel_display_power_domain domain; |
| 5256 | |
| 5257 | for_each_power_domain(domain, domains) |
| 5258 | intel_display_power_put(dev_priv, domain); |
| 5259 | } |
| 5260 | |
Mika Kahola | adafdc6 | 2015-08-18 14:36:59 +0300 | [diff] [blame] | 5261 | static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv) |
| 5262 | { |
| 5263 | int max_cdclk_freq = dev_priv->max_cdclk_freq; |
| 5264 | |
| 5265 | if (INTEL_INFO(dev_priv)->gen >= 9 || |
| 5266 | IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
| 5267 | return max_cdclk_freq; |
| 5268 | else if (IS_CHERRYVIEW(dev_priv)) |
| 5269 | return max_cdclk_freq*95/100; |
| 5270 | else if (INTEL_INFO(dev_priv)->gen < 4) |
| 5271 | return 2*max_cdclk_freq*90/100; |
| 5272 | else |
| 5273 | return max_cdclk_freq*90/100; |
| 5274 | } |
| 5275 | |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5276 | static int skl_calc_cdclk(int max_pixclk, int vco); |
| 5277 | |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5278 | static void intel_update_max_cdclk(struct drm_device *dev) |
| 5279 | { |
| 5280 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5281 | |
Rodrigo Vivi | ef11bdb | 2015-10-28 04:16:45 -0700 | [diff] [blame] | 5282 | if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) { |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5283 | u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK; |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5284 | int max_cdclk, vco; |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5285 | |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5286 | vco = dev_priv->skl_preferred_vco_freq; |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5287 | WARN_ON(vco != 8100000 && vco != 8640000); |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5288 | |
| 5289 | /* |
| 5290 | * Use the lower (vco 8640) cdclk values as a |
| 5291 | * first guess. skl_calc_cdclk() will correct it |
| 5292 | * if the preferred vco is 8100 instead. |
| 5293 | */ |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5294 | if (limit == SKL_DFSM_CDCLK_LIMIT_675) |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 5295 | max_cdclk = 617143; |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5296 | else if (limit == SKL_DFSM_CDCLK_LIMIT_540) |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5297 | max_cdclk = 540000; |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5298 | else if (limit == SKL_DFSM_CDCLK_LIMIT_450) |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5299 | max_cdclk = 432000; |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5300 | else |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 5301 | max_cdclk = 308571; |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5302 | |
| 5303 | dev_priv->max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco); |
Matt Roper | 281c114 | 2016-04-05 14:37:19 -0700 | [diff] [blame] | 5304 | } else if (IS_BROXTON(dev)) { |
| 5305 | dev_priv->max_cdclk_freq = 624000; |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5306 | } else if (IS_BROADWELL(dev)) { |
| 5307 | /* |
| 5308 | * FIXME with extra cooling we can allow |
| 5309 | * 540 MHz for ULX and 675 Mhz for ULT. |
| 5310 | * How can we know if extra cooling is |
| 5311 | * available? PCI ID, VTB, something else? |
| 5312 | */ |
| 5313 | if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT) |
| 5314 | dev_priv->max_cdclk_freq = 450000; |
| 5315 | else if (IS_BDW_ULX(dev)) |
| 5316 | dev_priv->max_cdclk_freq = 450000; |
| 5317 | else if (IS_BDW_ULT(dev)) |
| 5318 | dev_priv->max_cdclk_freq = 540000; |
| 5319 | else |
| 5320 | dev_priv->max_cdclk_freq = 675000; |
Mika Kahola | 0904dea | 2015-06-12 10:11:32 +0300 | [diff] [blame] | 5321 | } else if (IS_CHERRYVIEW(dev)) { |
| 5322 | dev_priv->max_cdclk_freq = 320000; |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5323 | } else if (IS_VALLEYVIEW(dev)) { |
| 5324 | dev_priv->max_cdclk_freq = 400000; |
| 5325 | } else { |
| 5326 | /* otherwise assume cdclk is fixed */ |
| 5327 | dev_priv->max_cdclk_freq = dev_priv->cdclk_freq; |
| 5328 | } |
| 5329 | |
Mika Kahola | adafdc6 | 2015-08-18 14:36:59 +0300 | [diff] [blame] | 5330 | dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv); |
| 5331 | |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5332 | DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n", |
| 5333 | dev_priv->max_cdclk_freq); |
Mika Kahola | adafdc6 | 2015-08-18 14:36:59 +0300 | [diff] [blame] | 5334 | |
| 5335 | DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n", |
| 5336 | dev_priv->max_dotclk_freq); |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5337 | } |
| 5338 | |
| 5339 | static void intel_update_cdclk(struct drm_device *dev) |
| 5340 | { |
| 5341 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5342 | |
| 5343 | dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev); |
Ville Syrjälä | 2f2a121 | 2016-05-13 23:41:25 +0300 | [diff] [blame] | 5344 | |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 5345 | if (INTEL_GEN(dev_priv) >= 9) |
Ville Syrjälä | 709e05c | 2016-05-13 23:41:33 +0300 | [diff] [blame] | 5346 | DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz, VCO: %d kHz, ref: %d kHz\n", |
| 5347 | dev_priv->cdclk_freq, dev_priv->cdclk_pll.vco, |
| 5348 | dev_priv->cdclk_pll.ref); |
Ville Syrjälä | 2f2a121 | 2016-05-13 23:41:25 +0300 | [diff] [blame] | 5349 | else |
| 5350 | DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n", |
| 5351 | dev_priv->cdclk_freq); |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5352 | |
| 5353 | /* |
Ville Syrjälä | b5d99ff | 2016-04-26 19:46:34 +0300 | [diff] [blame] | 5354 | * 9:0 CMBUS [sic] CDCLK frequency (cdfreq): |
| 5355 | * Programmng [sic] note: bit[9:2] should be programmed to the number |
| 5356 | * of cdclk that generates 4MHz reference clock freq which is used to |
| 5357 | * generate GMBus clock. This will vary with the cdclk freq. |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5358 | */ |
Ville Syrjälä | b5d99ff | 2016-04-26 19:46:34 +0300 | [diff] [blame] | 5359 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5360 | I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000)); |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5361 | } |
| 5362 | |
Ville Syrjälä | 92891e4 | 2016-05-11 22:44:45 +0300 | [diff] [blame] | 5363 | /* convert from kHz to .1 fixpoint MHz with -1MHz offset */ |
| 5364 | static int skl_cdclk_decimal(int cdclk) |
| 5365 | { |
| 5366 | return DIV_ROUND_CLOSEST(cdclk - 1000, 500); |
| 5367 | } |
| 5368 | |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5369 | static int bxt_de_pll_vco(struct drm_i915_private *dev_priv, int cdclk) |
| 5370 | { |
| 5371 | int ratio; |
| 5372 | |
| 5373 | if (cdclk == dev_priv->cdclk_pll.ref) |
| 5374 | return 0; |
| 5375 | |
| 5376 | switch (cdclk) { |
| 5377 | default: |
| 5378 | MISSING_CASE(cdclk); |
| 5379 | case 144000: |
| 5380 | case 288000: |
| 5381 | case 384000: |
| 5382 | case 576000: |
| 5383 | ratio = 60; |
| 5384 | break; |
| 5385 | case 624000: |
| 5386 | ratio = 65; |
| 5387 | break; |
| 5388 | } |
| 5389 | |
| 5390 | return dev_priv->cdclk_pll.ref * ratio; |
| 5391 | } |
| 5392 | |
Ville Syrjälä | 2b73001 | 2016-05-13 23:41:34 +0300 | [diff] [blame] | 5393 | static void bxt_de_pll_disable(struct drm_i915_private *dev_priv) |
| 5394 | { |
| 5395 | I915_WRITE(BXT_DE_PLL_ENABLE, 0); |
| 5396 | |
| 5397 | /* Timeout 200us */ |
| 5398 | if (wait_for((I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK) == 0, 1)) |
| 5399 | DRM_ERROR("timeout waiting for DE PLL unlock\n"); |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 5400 | |
| 5401 | dev_priv->cdclk_pll.vco = 0; |
Ville Syrjälä | 2b73001 | 2016-05-13 23:41:34 +0300 | [diff] [blame] | 5402 | } |
| 5403 | |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5404 | static void bxt_de_pll_enable(struct drm_i915_private *dev_priv, int vco) |
Ville Syrjälä | 2b73001 | 2016-05-13 23:41:34 +0300 | [diff] [blame] | 5405 | { |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5406 | int ratio = DIV_ROUND_CLOSEST(vco, dev_priv->cdclk_pll.ref); |
Ville Syrjälä | 2b73001 | 2016-05-13 23:41:34 +0300 | [diff] [blame] | 5407 | u32 val; |
| 5408 | |
| 5409 | val = I915_READ(BXT_DE_PLL_CTL); |
| 5410 | val &= ~BXT_DE_PLL_RATIO_MASK; |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5411 | val |= BXT_DE_PLL_RATIO(ratio); |
Ville Syrjälä | 2b73001 | 2016-05-13 23:41:34 +0300 | [diff] [blame] | 5412 | I915_WRITE(BXT_DE_PLL_CTL, val); |
| 5413 | |
| 5414 | I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE); |
| 5415 | |
| 5416 | /* Timeout 200us */ |
| 5417 | if (wait_for((I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK) != 0, 1)) |
| 5418 | DRM_ERROR("timeout waiting for DE PLL lock\n"); |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 5419 | |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5420 | dev_priv->cdclk_pll.vco = vco; |
Ville Syrjälä | 2b73001 | 2016-05-13 23:41:34 +0300 | [diff] [blame] | 5421 | } |
| 5422 | |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 5423 | static void bxt_set_cdclk(struct drm_i915_private *dev_priv, int cdclk) |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5424 | { |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5425 | u32 val, divider; |
| 5426 | int vco, ret; |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5427 | |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5428 | vco = bxt_de_pll_vco(dev_priv, cdclk); |
| 5429 | |
| 5430 | DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco); |
| 5431 | |
| 5432 | /* cdclk = vco / 2 / div{1,1.5,2,4} */ |
| 5433 | switch (DIV_ROUND_CLOSEST(vco, cdclk)) { |
| 5434 | case 8: |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5435 | divider = BXT_CDCLK_CD2X_DIV_SEL_4; |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5436 | break; |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5437 | case 4: |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5438 | divider = BXT_CDCLK_CD2X_DIV_SEL_2; |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5439 | break; |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5440 | case 3: |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5441 | divider = BXT_CDCLK_CD2X_DIV_SEL_1_5; |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5442 | break; |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5443 | case 2: |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5444 | divider = BXT_CDCLK_CD2X_DIV_SEL_1; |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5445 | break; |
| 5446 | default: |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5447 | WARN_ON(cdclk != dev_priv->cdclk_pll.ref); |
| 5448 | WARN_ON(vco != 0); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5449 | |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5450 | divider = BXT_CDCLK_CD2X_DIV_SEL_1; |
| 5451 | break; |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5452 | } |
| 5453 | |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5454 | /* Inform power controller of upcoming frequency change */ |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5455 | mutex_lock(&dev_priv->rps.hw_lock); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5456 | ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, |
| 5457 | 0x80000000); |
| 5458 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 5459 | |
| 5460 | if (ret) { |
| 5461 | DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n", |
Ville Syrjälä | 9ef5615 | 2016-05-11 22:44:49 +0300 | [diff] [blame] | 5462 | ret, cdclk); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5463 | return; |
| 5464 | } |
| 5465 | |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5466 | if (dev_priv->cdclk_pll.vco != 0 && |
| 5467 | dev_priv->cdclk_pll.vco != vco) |
Ville Syrjälä | 2b73001 | 2016-05-13 23:41:34 +0300 | [diff] [blame] | 5468 | bxt_de_pll_disable(dev_priv); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5469 | |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5470 | if (dev_priv->cdclk_pll.vco != vco) |
| 5471 | bxt_de_pll_enable(dev_priv, vco); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5472 | |
Ville Syrjälä | 5f199df | 2016-05-13 23:41:38 +0300 | [diff] [blame] | 5473 | val = divider | skl_cdclk_decimal(cdclk); |
| 5474 | /* |
| 5475 | * FIXME if only the cd2x divider needs changing, it could be done |
| 5476 | * without shutting off the pipe (if only one pipe is active). |
| 5477 | */ |
| 5478 | val |= BXT_CDCLK_CD2X_PIPE_NONE; |
| 5479 | /* |
| 5480 | * Disable SSA Precharge when CD clock frequency < 500 MHz, |
| 5481 | * enable otherwise. |
| 5482 | */ |
| 5483 | if (cdclk >= 500000) |
| 5484 | val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE; |
| 5485 | I915_WRITE(CDCLK_CTL, val); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5486 | |
| 5487 | mutex_lock(&dev_priv->rps.hw_lock); |
| 5488 | ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, |
Ville Syrjälä | 9ef5615 | 2016-05-11 22:44:49 +0300 | [diff] [blame] | 5489 | DIV_ROUND_UP(cdclk, 25000)); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5490 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 5491 | |
| 5492 | if (ret) { |
| 5493 | DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n", |
Ville Syrjälä | 9ef5615 | 2016-05-11 22:44:49 +0300 | [diff] [blame] | 5494 | ret, cdclk); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5495 | return; |
| 5496 | } |
| 5497 | |
Imre Deak | c6c4696 | 2016-04-01 16:02:40 +0300 | [diff] [blame] | 5498 | intel_update_cdclk(dev_priv->dev); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5499 | } |
| 5500 | |
Imre Deak | d66a219 | 2016-05-24 15:38:33 +0300 | [diff] [blame] | 5501 | static void bxt_sanitize_cdclk(struct drm_i915_private *dev_priv) |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5502 | { |
Imre Deak | d66a219 | 2016-05-24 15:38:33 +0300 | [diff] [blame] | 5503 | u32 cdctl, expected; |
| 5504 | |
Ville Syrjälä | 089c6fd | 2016-05-13 23:41:36 +0300 | [diff] [blame] | 5505 | intel_update_cdclk(dev_priv->dev); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5506 | |
Imre Deak | d66a219 | 2016-05-24 15:38:33 +0300 | [diff] [blame] | 5507 | if (dev_priv->cdclk_pll.vco == 0 || |
| 5508 | dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref) |
| 5509 | goto sanitize; |
| 5510 | |
| 5511 | /* DPLL okay; verify the cdclock |
| 5512 | * |
| 5513 | * Some BIOS versions leave an incorrect decimal frequency value and |
| 5514 | * set reserved MBZ bits in CDCLK_CTL at least during exiting from S4, |
| 5515 | * so sanitize this register. |
| 5516 | */ |
| 5517 | cdctl = I915_READ(CDCLK_CTL); |
| 5518 | /* |
| 5519 | * Let's ignore the pipe field, since BIOS could have configured the |
| 5520 | * dividers both synching to an active pipe, or asynchronously |
| 5521 | * (PIPE_NONE). |
| 5522 | */ |
| 5523 | cdctl &= ~BXT_CDCLK_CD2X_PIPE_NONE; |
| 5524 | |
| 5525 | expected = (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) | |
| 5526 | skl_cdclk_decimal(dev_priv->cdclk_freq); |
| 5527 | /* |
| 5528 | * Disable SSA Precharge when CD clock frequency < 500 MHz, |
| 5529 | * enable otherwise. |
| 5530 | */ |
| 5531 | if (dev_priv->cdclk_freq >= 500000) |
| 5532 | expected |= BXT_CDCLK_SSA_PRECHARGE_ENABLE; |
| 5533 | |
| 5534 | if (cdctl == expected) |
| 5535 | /* All well; nothing to sanitize */ |
| 5536 | return; |
| 5537 | |
| 5538 | sanitize: |
| 5539 | DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n"); |
| 5540 | |
| 5541 | /* force cdclk programming */ |
| 5542 | dev_priv->cdclk_freq = 0; |
| 5543 | |
| 5544 | /* force full PLL disable + enable */ |
| 5545 | dev_priv->cdclk_pll.vco = -1; |
| 5546 | } |
| 5547 | |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 5548 | void bxt_init_cdclk(struct drm_i915_private *dev_priv) |
Imre Deak | d66a219 | 2016-05-24 15:38:33 +0300 | [diff] [blame] | 5549 | { |
| 5550 | bxt_sanitize_cdclk(dev_priv); |
| 5551 | |
| 5552 | if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0) |
Ville Syrjälä | 089c6fd | 2016-05-13 23:41:36 +0300 | [diff] [blame] | 5553 | return; |
Imre Deak | c2e001e | 2016-04-01 16:02:43 +0300 | [diff] [blame] | 5554 | |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5555 | /* |
| 5556 | * FIXME: |
| 5557 | * - The initial CDCLK needs to be read from VBT. |
| 5558 | * Need to make this change after VBT has changes for BXT. |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5559 | */ |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 5560 | bxt_set_cdclk(dev_priv, bxt_calc_cdclk(0)); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5561 | } |
| 5562 | |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 5563 | void bxt_uninit_cdclk(struct drm_i915_private *dev_priv) |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5564 | { |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 5565 | bxt_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5566 | } |
| 5567 | |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 5568 | static int skl_calc_cdclk(int max_pixclk, int vco) |
| 5569 | { |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5570 | if (vco == 8640000) { |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 5571 | if (max_pixclk > 540000) |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 5572 | return 617143; |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 5573 | else if (max_pixclk > 432000) |
| 5574 | return 540000; |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 5575 | else if (max_pixclk > 308571) |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 5576 | return 432000; |
| 5577 | else |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 5578 | return 308571; |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 5579 | } else { |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 5580 | if (max_pixclk > 540000) |
| 5581 | return 675000; |
| 5582 | else if (max_pixclk > 450000) |
| 5583 | return 540000; |
| 5584 | else if (max_pixclk > 337500) |
| 5585 | return 450000; |
| 5586 | else |
| 5587 | return 337500; |
| 5588 | } |
| 5589 | } |
| 5590 | |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5591 | static void |
| 5592 | skl_dpll0_update(struct drm_i915_private *dev_priv) |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5593 | { |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5594 | u32 val; |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5595 | |
Ville Syrjälä | 709e05c | 2016-05-13 23:41:33 +0300 | [diff] [blame] | 5596 | dev_priv->cdclk_pll.ref = 24000; |
Imre Deak | 1c3f770 | 2016-05-24 15:38:32 +0300 | [diff] [blame] | 5597 | dev_priv->cdclk_pll.vco = 0; |
Ville Syrjälä | 709e05c | 2016-05-13 23:41:33 +0300 | [diff] [blame] | 5598 | |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5599 | val = I915_READ(LCPLL1_CTL); |
Imre Deak | 1c3f770 | 2016-05-24 15:38:32 +0300 | [diff] [blame] | 5600 | if ((val & LCPLL_PLL_ENABLE) == 0) |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5601 | return; |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5602 | |
Imre Deak | 1c3f770 | 2016-05-24 15:38:32 +0300 | [diff] [blame] | 5603 | if (WARN_ON((val & LCPLL_PLL_LOCK) == 0)) |
| 5604 | return; |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5605 | |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5606 | val = I915_READ(DPLL_CTRL1); |
| 5607 | |
Imre Deak | 1c3f770 | 2016-05-24 15:38:32 +0300 | [diff] [blame] | 5608 | if (WARN_ON((val & (DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | |
| 5609 | DPLL_CTRL1_SSC(SKL_DPLL0) | |
| 5610 | DPLL_CTRL1_OVERRIDE(SKL_DPLL0))) != |
| 5611 | DPLL_CTRL1_OVERRIDE(SKL_DPLL0))) |
| 5612 | return; |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5613 | |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5614 | switch (val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) { |
| 5615 | case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, SKL_DPLL0): |
| 5616 | case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1350, SKL_DPLL0): |
| 5617 | case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1620, SKL_DPLL0): |
| 5618 | case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2700, SKL_DPLL0): |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5619 | dev_priv->cdclk_pll.vco = 8100000; |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5620 | break; |
| 5621 | case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, SKL_DPLL0): |
| 5622 | case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2160, SKL_DPLL0): |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5623 | dev_priv->cdclk_pll.vco = 8640000; |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5624 | break; |
| 5625 | default: |
| 5626 | MISSING_CASE(val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)); |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 5627 | break; |
| 5628 | } |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5629 | } |
| 5630 | |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5631 | void skl_set_preferred_cdclk_vco(struct drm_i915_private *dev_priv, int vco) |
| 5632 | { |
| 5633 | bool changed = dev_priv->skl_preferred_vco_freq != vco; |
| 5634 | |
| 5635 | dev_priv->skl_preferred_vco_freq = vco; |
| 5636 | |
| 5637 | if (changed) |
| 5638 | intel_update_max_cdclk(dev_priv->dev); |
| 5639 | } |
| 5640 | |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5641 | static void |
Ville Syrjälä | 3861fc6 | 2016-05-11 22:44:50 +0300 | [diff] [blame] | 5642 | skl_dpll0_enable(struct drm_i915_private *dev_priv, int vco) |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5643 | { |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 5644 | int min_cdclk = skl_calc_cdclk(0, vco); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5645 | u32 val; |
| 5646 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5647 | WARN_ON(vco != 8100000 && vco != 8640000); |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5648 | |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5649 | /* select the minimum CDCLK before enabling DPLL 0 */ |
Ville Syrjälä | 9ef5615 | 2016-05-11 22:44:49 +0300 | [diff] [blame] | 5650 | val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_cdclk); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5651 | I915_WRITE(CDCLK_CTL, val); |
| 5652 | POSTING_READ(CDCLK_CTL); |
| 5653 | |
| 5654 | /* |
| 5655 | * We always enable DPLL0 with the lowest link rate possible, but still |
| 5656 | * taking into account the VCO required to operate the eDP panel at the |
| 5657 | * desired frequency. The usual DP link rates operate with a VCO of |
| 5658 | * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640. |
| 5659 | * The modeset code is responsible for the selection of the exact link |
| 5660 | * rate later on, with the constraint of choosing a frequency that |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 5661 | * works with vco. |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5662 | */ |
| 5663 | val = I915_READ(DPLL_CTRL1); |
| 5664 | |
| 5665 | val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) | |
| 5666 | DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)); |
| 5667 | val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0); |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5668 | if (vco == 8640000) |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5669 | val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, |
| 5670 | SKL_DPLL0); |
| 5671 | else |
| 5672 | val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, |
| 5673 | SKL_DPLL0); |
| 5674 | |
| 5675 | I915_WRITE(DPLL_CTRL1, val); |
| 5676 | POSTING_READ(DPLL_CTRL1); |
| 5677 | |
| 5678 | I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE); |
| 5679 | |
| 5680 | if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5)) |
| 5681 | DRM_ERROR("DPLL0 not locked\n"); |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 5682 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5683 | dev_priv->cdclk_pll.vco = vco; |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 5684 | |
| 5685 | /* We'll want to keep using the current vco from now on. */ |
| 5686 | skl_set_preferred_cdclk_vco(dev_priv, vco); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5687 | } |
| 5688 | |
Ville Syrjälä | 430e05d | 2016-05-11 22:44:47 +0300 | [diff] [blame] | 5689 | static void |
| 5690 | skl_dpll0_disable(struct drm_i915_private *dev_priv) |
| 5691 | { |
| 5692 | I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE); |
| 5693 | if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1)) |
| 5694 | DRM_ERROR("Couldn't disable DPLL0\n"); |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 5695 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5696 | dev_priv->cdclk_pll.vco = 0; |
Ville Syrjälä | 430e05d | 2016-05-11 22:44:47 +0300 | [diff] [blame] | 5697 | } |
| 5698 | |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5699 | static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv) |
| 5700 | { |
| 5701 | int ret; |
| 5702 | u32 val; |
| 5703 | |
| 5704 | /* inform PCU we want to change CDCLK */ |
| 5705 | val = SKL_CDCLK_PREPARE_FOR_CHANGE; |
| 5706 | mutex_lock(&dev_priv->rps.hw_lock); |
| 5707 | ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val); |
| 5708 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 5709 | |
| 5710 | return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE); |
| 5711 | } |
| 5712 | |
| 5713 | static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv) |
| 5714 | { |
| 5715 | unsigned int i; |
| 5716 | |
| 5717 | for (i = 0; i < 15; i++) { |
| 5718 | if (skl_cdclk_pcu_ready(dev_priv)) |
| 5719 | return true; |
| 5720 | udelay(10); |
| 5721 | } |
| 5722 | |
| 5723 | return false; |
| 5724 | } |
| 5725 | |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 5726 | static void skl_set_cdclk(struct drm_i915_private *dev_priv, int cdclk, int vco) |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5727 | { |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5728 | struct drm_device *dev = dev_priv->dev; |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5729 | u32 freq_select, pcu_ack; |
| 5730 | |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 5731 | WARN_ON((cdclk == 24000) != (vco == 0)); |
| 5732 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5733 | DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5734 | |
| 5735 | if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) { |
| 5736 | DRM_ERROR("failed to inform PCU about cdclk change\n"); |
| 5737 | return; |
| 5738 | } |
| 5739 | |
| 5740 | /* set CDCLK_CTL */ |
Ville Syrjälä | 9ef5615 | 2016-05-11 22:44:49 +0300 | [diff] [blame] | 5741 | switch (cdclk) { |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5742 | case 450000: |
| 5743 | case 432000: |
| 5744 | freq_select = CDCLK_FREQ_450_432; |
| 5745 | pcu_ack = 1; |
| 5746 | break; |
| 5747 | case 540000: |
| 5748 | freq_select = CDCLK_FREQ_540; |
| 5749 | pcu_ack = 2; |
| 5750 | break; |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 5751 | case 308571: |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5752 | case 337500: |
| 5753 | default: |
| 5754 | freq_select = CDCLK_FREQ_337_308; |
| 5755 | pcu_ack = 0; |
| 5756 | break; |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 5757 | case 617143: |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5758 | case 675000: |
| 5759 | freq_select = CDCLK_FREQ_675_617; |
| 5760 | pcu_ack = 3; |
| 5761 | break; |
| 5762 | } |
| 5763 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5764 | if (dev_priv->cdclk_pll.vco != 0 && |
| 5765 | dev_priv->cdclk_pll.vco != vco) |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 5766 | skl_dpll0_disable(dev_priv); |
| 5767 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5768 | if (dev_priv->cdclk_pll.vco != vco) |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 5769 | skl_dpll0_enable(dev_priv, vco); |
| 5770 | |
Ville Syrjälä | 9ef5615 | 2016-05-11 22:44:49 +0300 | [diff] [blame] | 5771 | I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(cdclk)); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5772 | POSTING_READ(CDCLK_CTL); |
| 5773 | |
| 5774 | /* inform PCU of the change */ |
| 5775 | mutex_lock(&dev_priv->rps.hw_lock); |
| 5776 | sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack); |
| 5777 | mutex_unlock(&dev_priv->rps.hw_lock); |
Damien Lespiau | 560a7ae | 2015-06-04 18:21:33 +0100 | [diff] [blame] | 5778 | |
| 5779 | intel_update_cdclk(dev); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5780 | } |
| 5781 | |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5782 | static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv); |
| 5783 | |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5784 | void skl_uninit_cdclk(struct drm_i915_private *dev_priv) |
| 5785 | { |
Ville Syrjälä | 709e05c | 2016-05-13 23:41:33 +0300 | [diff] [blame] | 5786 | skl_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref, 0); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5787 | } |
| 5788 | |
| 5789 | void skl_init_cdclk(struct drm_i915_private *dev_priv) |
| 5790 | { |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5791 | int cdclk, vco; |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5792 | |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5793 | skl_sanitize_cdclk(dev_priv); |
| 5794 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5795 | if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0) { |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5796 | /* |
| 5797 | * Use the current vco as our initial |
| 5798 | * guess as to what the preferred vco is. |
| 5799 | */ |
| 5800 | if (dev_priv->skl_preferred_vco_freq == 0) |
| 5801 | skl_set_preferred_cdclk_vco(dev_priv, |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5802 | dev_priv->cdclk_pll.vco); |
Ville Syrjälä | 70c2c18 | 2016-05-13 23:41:30 +0300 | [diff] [blame] | 5803 | return; |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 5804 | } |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5805 | |
Ville Syrjälä | 70c2c18 | 2016-05-13 23:41:30 +0300 | [diff] [blame] | 5806 | vco = dev_priv->skl_preferred_vco_freq; |
| 5807 | if (vco == 0) |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5808 | vco = 8100000; |
Ville Syrjälä | 70c2c18 | 2016-05-13 23:41:30 +0300 | [diff] [blame] | 5809 | cdclk = skl_calc_cdclk(0, vco); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5810 | |
Ville Syrjälä | 70c2c18 | 2016-05-13 23:41:30 +0300 | [diff] [blame] | 5811 | skl_set_cdclk(dev_priv, cdclk, vco); |
Damien Lespiau | 5d96d8a | 2015-05-21 16:37:48 +0100 | [diff] [blame] | 5812 | } |
| 5813 | |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5814 | static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv) |
Shobhit Kumar | c73666f | 2015-10-20 18:13:12 +0530 | [diff] [blame] | 5815 | { |
Ville Syrjälä | 0949249 | 2016-05-13 23:41:28 +0300 | [diff] [blame] | 5816 | uint32_t cdctl, expected; |
Shobhit Kumar | c73666f | 2015-10-20 18:13:12 +0530 | [diff] [blame] | 5817 | |
Shobhit Kumar | f1b391a | 2015-11-05 18:05:32 +0530 | [diff] [blame] | 5818 | /* |
| 5819 | * check if the pre-os intialized the display |
| 5820 | * There is SWF18 scratchpad register defined which is set by the |
| 5821 | * pre-os which can be used by the OS drivers to check the status |
| 5822 | */ |
| 5823 | if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0) |
| 5824 | goto sanitize; |
| 5825 | |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5826 | intel_update_cdclk(dev_priv->dev); |
Imre Deak | 1c3f770 | 2016-05-24 15:38:32 +0300 | [diff] [blame] | 5827 | /* Is PLL enabled and locked ? */ |
| 5828 | if (dev_priv->cdclk_pll.vco == 0 || |
| 5829 | dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref) |
| 5830 | goto sanitize; |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5831 | |
Shobhit Kumar | c73666f | 2015-10-20 18:13:12 +0530 | [diff] [blame] | 5832 | /* DPLL okay; verify the cdclock |
| 5833 | * |
| 5834 | * Noticed in some instances that the freq selection is correct but |
| 5835 | * decimal part is programmed wrong from BIOS where pre-os does not |
| 5836 | * enable display. Verify the same as well. |
| 5837 | */ |
Ville Syrjälä | 0949249 | 2016-05-13 23:41:28 +0300 | [diff] [blame] | 5838 | cdctl = I915_READ(CDCLK_CTL); |
| 5839 | expected = (cdctl & CDCLK_FREQ_SEL_MASK) | |
| 5840 | skl_cdclk_decimal(dev_priv->cdclk_freq); |
| 5841 | if (cdctl == expected) |
Shobhit Kumar | c73666f | 2015-10-20 18:13:12 +0530 | [diff] [blame] | 5842 | /* All well; nothing to sanitize */ |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5843 | return; |
| 5844 | |
Shobhit Kumar | c73666f | 2015-10-20 18:13:12 +0530 | [diff] [blame] | 5845 | sanitize: |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5846 | DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n"); |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 5847 | |
Ville Syrjälä | 9f7eb31 | 2016-05-13 23:41:29 +0300 | [diff] [blame] | 5848 | /* force cdclk programming */ |
| 5849 | dev_priv->cdclk_freq = 0; |
| 5850 | /* force full PLL disable + enable */ |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 5851 | dev_priv->cdclk_pll.vco = -1; |
Shobhit Kumar | c73666f | 2015-10-20 18:13:12 +0530 | [diff] [blame] | 5852 | } |
| 5853 | |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5854 | /* Adjust CDclk dividers to allow high res or save power if possible */ |
| 5855 | static void valleyview_set_cdclk(struct drm_device *dev, int cdclk) |
| 5856 | { |
| 5857 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5858 | u32 val, cmd; |
| 5859 | |
Vandana Kannan | 164dfd2 | 2014-11-24 13:37:41 +0530 | [diff] [blame] | 5860 | WARN_ON(dev_priv->display.get_display_clock_speed(dev) |
| 5861 | != dev_priv->cdclk_freq); |
Imre Deak | d60c447 | 2014-03-27 17:45:10 +0200 | [diff] [blame] | 5862 | |
Ville Syrjälä | dfcab17 | 2014-06-13 13:37:47 +0300 | [diff] [blame] | 5863 | if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */ |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5864 | cmd = 2; |
Ville Syrjälä | dfcab17 | 2014-06-13 13:37:47 +0300 | [diff] [blame] | 5865 | else if (cdclk == 266667) |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5866 | cmd = 1; |
| 5867 | else |
| 5868 | cmd = 0; |
| 5869 | |
| 5870 | mutex_lock(&dev_priv->rps.hw_lock); |
| 5871 | val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ); |
| 5872 | val &= ~DSPFREQGUAR_MASK; |
| 5873 | val |= (cmd << DSPFREQGUAR_SHIFT); |
| 5874 | vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val); |
| 5875 | if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & |
| 5876 | DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT), |
| 5877 | 50)) { |
| 5878 | DRM_ERROR("timed out waiting for CDclk change\n"); |
| 5879 | } |
| 5880 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 5881 | |
Ville Syrjälä | 54433e9 | 2015-05-26 20:42:31 +0300 | [diff] [blame] | 5882 | mutex_lock(&dev_priv->sb_lock); |
| 5883 | |
Ville Syrjälä | dfcab17 | 2014-06-13 13:37:47 +0300 | [diff] [blame] | 5884 | if (cdclk == 400000) { |
Ville Syrjälä | 6bcda4f | 2014-10-07 17:41:22 +0300 | [diff] [blame] | 5885 | u32 divider; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5886 | |
Ville Syrjälä | 6bcda4f | 2014-10-07 17:41:22 +0300 | [diff] [blame] | 5887 | divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5888 | |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5889 | /* adjust cdclk divider */ |
| 5890 | val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL); |
Vandana Kannan | 87d5d25 | 2015-09-24 23:29:17 +0300 | [diff] [blame] | 5891 | val &= ~CCK_FREQUENCY_VALUES; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5892 | val |= divider; |
| 5893 | vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val); |
Ville Syrjälä | a877e80 | 2014-06-13 13:37:52 +0300 | [diff] [blame] | 5894 | |
| 5895 | if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) & |
Vandana Kannan | 87d5d25 | 2015-09-24 23:29:17 +0300 | [diff] [blame] | 5896 | CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT), |
Ville Syrjälä | a877e80 | 2014-06-13 13:37:52 +0300 | [diff] [blame] | 5897 | 50)) |
| 5898 | DRM_ERROR("timed out waiting for CDclk change\n"); |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5899 | } |
| 5900 | |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5901 | /* adjust self-refresh exit latency value */ |
| 5902 | val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC); |
| 5903 | val &= ~0x7f; |
| 5904 | |
| 5905 | /* |
| 5906 | * For high bandwidth configs, we set a higher latency in the bunit |
| 5907 | * so that the core display fetch happens in time to avoid underruns. |
| 5908 | */ |
Ville Syrjälä | dfcab17 | 2014-06-13 13:37:47 +0300 | [diff] [blame] | 5909 | if (cdclk == 400000) |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5910 | val |= 4500 / 250; /* 4.5 usec */ |
| 5911 | else |
| 5912 | val |= 3000 / 250; /* 3.0 usec */ |
| 5913 | vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val); |
Ville Syrjälä | 54433e9 | 2015-05-26 20:42:31 +0300 | [diff] [blame] | 5914 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 5915 | mutex_unlock(&dev_priv->sb_lock); |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5916 | |
Ville Syrjälä | b628305 | 2015-06-03 15:45:07 +0300 | [diff] [blame] | 5917 | intel_update_cdclk(dev); |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5918 | } |
| 5919 | |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5920 | static void cherryview_set_cdclk(struct drm_device *dev, int cdclk) |
| 5921 | { |
| 5922 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5923 | u32 val, cmd; |
| 5924 | |
Vandana Kannan | 164dfd2 | 2014-11-24 13:37:41 +0530 | [diff] [blame] | 5925 | WARN_ON(dev_priv->display.get_display_clock_speed(dev) |
| 5926 | != dev_priv->cdclk_freq); |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5927 | |
| 5928 | switch (cdclk) { |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5929 | case 333333: |
| 5930 | case 320000: |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5931 | case 266667: |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5932 | case 200000: |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5933 | break; |
| 5934 | default: |
Daniel Vetter | 5f77eeb | 2014-12-08 16:40:10 +0100 | [diff] [blame] | 5935 | MISSING_CASE(cdclk); |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5936 | return; |
| 5937 | } |
| 5938 | |
Ville Syrjälä | 9d0d3fd | 2015-03-02 20:07:17 +0200 | [diff] [blame] | 5939 | /* |
| 5940 | * Specs are full of misinformation, but testing on actual |
| 5941 | * hardware has shown that we just need to write the desired |
| 5942 | * CCK divider into the Punit register. |
| 5943 | */ |
| 5944 | cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1; |
| 5945 | |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5946 | mutex_lock(&dev_priv->rps.hw_lock); |
| 5947 | val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ); |
| 5948 | val &= ~DSPFREQGUAR_MASK_CHV; |
| 5949 | val |= (cmd << DSPFREQGUAR_SHIFT_CHV); |
| 5950 | vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val); |
| 5951 | if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & |
| 5952 | DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV), |
| 5953 | 50)) { |
| 5954 | DRM_ERROR("timed out waiting for CDclk change\n"); |
| 5955 | } |
| 5956 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 5957 | |
Ville Syrjälä | b628305 | 2015-06-03 15:45:07 +0300 | [diff] [blame] | 5958 | intel_update_cdclk(dev); |
Ville Syrjälä | 383c5a6 | 2014-06-28 02:03:57 +0300 | [diff] [blame] | 5959 | } |
| 5960 | |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5961 | static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv, |
| 5962 | int max_pixclk) |
| 5963 | { |
Ville Syrjälä | 6bcda4f | 2014-10-07 17:41:22 +0300 | [diff] [blame] | 5964 | int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000; |
Ville Syrjälä | 6cca319 | 2015-03-02 20:07:16 +0200 | [diff] [blame] | 5965 | int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90; |
Ville Syrjälä | 29dc7ef | 2014-06-13 13:37:50 +0300 | [diff] [blame] | 5966 | |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5967 | /* |
| 5968 | * Really only a few cases to deal with, as only 4 CDclks are supported: |
| 5969 | * 200MHz |
| 5970 | * 267MHz |
Ville Syrjälä | 29dc7ef | 2014-06-13 13:37:50 +0300 | [diff] [blame] | 5971 | * 320/333MHz (depends on HPLL freq) |
Ville Syrjälä | 6cca319 | 2015-03-02 20:07:16 +0200 | [diff] [blame] | 5972 | * 400MHz (VLV only) |
| 5973 | * So we check to see whether we're above 90% (VLV) or 95% (CHV) |
| 5974 | * of the lower bin and adjust if needed. |
Ville Syrjälä | e37c67a | 2014-06-13 13:37:51 +0300 | [diff] [blame] | 5975 | * |
| 5976 | * We seem to get an unstable or solid color picture at 200MHz. |
| 5977 | * Not sure what's wrong. For now use 200MHz only when all pipes |
| 5978 | * are off. |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5979 | */ |
Ville Syrjälä | 6cca319 | 2015-03-02 20:07:16 +0200 | [diff] [blame] | 5980 | if (!IS_CHERRYVIEW(dev_priv) && |
| 5981 | max_pixclk > freq_320*limit/100) |
Ville Syrjälä | dfcab17 | 2014-06-13 13:37:47 +0300 | [diff] [blame] | 5982 | return 400000; |
Ville Syrjälä | 6cca319 | 2015-03-02 20:07:16 +0200 | [diff] [blame] | 5983 | else if (max_pixclk > 266667*limit/100) |
Ville Syrjälä | 29dc7ef | 2014-06-13 13:37:50 +0300 | [diff] [blame] | 5984 | return freq_320; |
Ville Syrjälä | e37c67a | 2014-06-13 13:37:51 +0300 | [diff] [blame] | 5985 | else if (max_pixclk > 0) |
Ville Syrjälä | dfcab17 | 2014-06-13 13:37:47 +0300 | [diff] [blame] | 5986 | return 266667; |
Ville Syrjälä | e37c67a | 2014-06-13 13:37:51 +0300 | [diff] [blame] | 5987 | else |
| 5988 | return 200000; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5989 | } |
| 5990 | |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 5991 | static int bxt_calc_cdclk(int max_pixclk) |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 5992 | { |
Ville Syrjälä | 760e147 | 2016-05-11 22:44:46 +0300 | [diff] [blame] | 5993 | if (max_pixclk > 576000) |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5994 | return 624000; |
Ville Syrjälä | 760e147 | 2016-05-11 22:44:46 +0300 | [diff] [blame] | 5995 | else if (max_pixclk > 384000) |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5996 | return 576000; |
Ville Syrjälä | 760e147 | 2016-05-11 22:44:46 +0300 | [diff] [blame] | 5997 | else if (max_pixclk > 288000) |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 5998 | return 384000; |
Ville Syrjälä | 760e147 | 2016-05-11 22:44:46 +0300 | [diff] [blame] | 5999 | else if (max_pixclk > 144000) |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 6000 | return 288000; |
| 6001 | else |
| 6002 | return 144000; |
| 6003 | } |
| 6004 | |
Maarten Lankhorst | e8788cb | 2016-02-16 10:25:11 +0100 | [diff] [blame] | 6005 | /* Compute the max pixel clock for new configuration. */ |
Ander Conselvan de Oliveira | a821fc4 | 2015-04-21 17:13:23 +0300 | [diff] [blame] | 6006 | static int intel_mode_max_pixclk(struct drm_device *dev, |
| 6007 | struct drm_atomic_state *state) |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6008 | { |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 6009 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
| 6010 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6011 | struct drm_crtc *crtc; |
| 6012 | struct drm_crtc_state *crtc_state; |
| 6013 | unsigned max_pixclk = 0, i; |
| 6014 | enum pipe pipe; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6015 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 6016 | memcpy(intel_state->min_pixclk, dev_priv->min_pixclk, |
| 6017 | sizeof(intel_state->min_pixclk)); |
Ander Conselvan de Oliveira | 304603f | 2015-04-02 14:47:56 +0300 | [diff] [blame] | 6018 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 6019 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
| 6020 | int pixclk = 0; |
Ander Conselvan de Oliveira | 304603f | 2015-04-02 14:47:56 +0300 | [diff] [blame] | 6021 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 6022 | if (crtc_state->enable) |
| 6023 | pixclk = crtc_state->adjusted_mode.crtc_clock; |
| 6024 | |
| 6025 | intel_state->min_pixclk[i] = pixclk; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6026 | } |
| 6027 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 6028 | for_each_pipe(dev_priv, pipe) |
| 6029 | max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk); |
| 6030 | |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6031 | return max_pixclk; |
| 6032 | } |
| 6033 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6034 | static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state) |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6035 | { |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6036 | struct drm_device *dev = state->dev; |
| 6037 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6038 | int max_pixclk = intel_mode_max_pixclk(dev, state); |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 6039 | struct intel_atomic_state *intel_state = |
| 6040 | to_intel_atomic_state(state); |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6041 | |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 6042 | intel_state->cdclk = intel_state->dev_cdclk = |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6043 | valleyview_calc_cdclk(dev_priv, max_pixclk); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 6044 | |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 6045 | if (!intel_state->active_crtcs) |
| 6046 | intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0); |
| 6047 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6048 | return 0; |
| 6049 | } |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6050 | |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 6051 | static int bxt_modeset_calc_cdclk(struct drm_atomic_state *state) |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6052 | { |
Ville Syrjälä | 4e5ca60 | 2016-05-11 22:44:44 +0300 | [diff] [blame] | 6053 | int max_pixclk = ilk_max_pixel_rate(state); |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 6054 | struct intel_atomic_state *intel_state = |
| 6055 | to_intel_atomic_state(state); |
Maarten Lankhorst | 85a96e7 | 2015-06-01 12:49:53 +0200 | [diff] [blame] | 6056 | |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 6057 | intel_state->cdclk = intel_state->dev_cdclk = |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 6058 | bxt_calc_cdclk(max_pixclk); |
Maarten Lankhorst | 85a96e7 | 2015-06-01 12:49:53 +0200 | [diff] [blame] | 6059 | |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 6060 | if (!intel_state->active_crtcs) |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 6061 | intel_state->dev_cdclk = bxt_calc_cdclk(0); |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 6062 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6063 | return 0; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6064 | } |
| 6065 | |
Vidya Srinivas | 1e69cd7 | 2015-03-05 21:19:50 +0200 | [diff] [blame] | 6066 | static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv) |
| 6067 | { |
| 6068 | unsigned int credits, default_credits; |
| 6069 | |
| 6070 | if (IS_CHERRYVIEW(dev_priv)) |
| 6071 | default_credits = PFI_CREDIT(12); |
| 6072 | else |
| 6073 | default_credits = PFI_CREDIT(8); |
| 6074 | |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 6075 | if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) { |
Vidya Srinivas | 1e69cd7 | 2015-03-05 21:19:50 +0200 | [diff] [blame] | 6076 | /* CHV suggested value is 31 or 63 */ |
| 6077 | if (IS_CHERRYVIEW(dev_priv)) |
Ville Syrjälä | fcc0008 | 2015-05-26 20:22:40 +0300 | [diff] [blame] | 6078 | credits = PFI_CREDIT_63; |
Vidya Srinivas | 1e69cd7 | 2015-03-05 21:19:50 +0200 | [diff] [blame] | 6079 | else |
| 6080 | credits = PFI_CREDIT(15); |
| 6081 | } else { |
| 6082 | credits = default_credits; |
| 6083 | } |
| 6084 | |
| 6085 | /* |
| 6086 | * WA - write default credits before re-programming |
| 6087 | * FIXME: should we also set the resend bit here? |
| 6088 | */ |
| 6089 | I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE | |
| 6090 | default_credits); |
| 6091 | |
| 6092 | I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE | |
| 6093 | credits | PFI_CREDIT_RESEND); |
| 6094 | |
| 6095 | /* |
| 6096 | * FIXME is this guaranteed to clear |
| 6097 | * immediately or should we poll for it? |
| 6098 | */ |
| 6099 | WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND); |
| 6100 | } |
| 6101 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6102 | static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state) |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6103 | { |
Ander Conselvan de Oliveira | a821fc4 | 2015-04-21 17:13:23 +0300 | [diff] [blame] | 6104 | struct drm_device *dev = old_state->dev; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6105 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 6106 | struct intel_atomic_state *old_intel_state = |
| 6107 | to_intel_atomic_state(old_state); |
| 6108 | unsigned req_cdclk = old_intel_state->dev_cdclk; |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6109 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6110 | /* |
| 6111 | * FIXME: We can end up here with all power domains off, yet |
| 6112 | * with a CDCLK frequency other than the minimum. To account |
| 6113 | * for this take the PIPE-A power domain, which covers the HW |
| 6114 | * blocks needed for the following programming. This can be |
| 6115 | * removed once it's guaranteed that we get here either with |
| 6116 | * the minimum CDCLK set, or the required power domains |
| 6117 | * enabled. |
| 6118 | */ |
| 6119 | intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A); |
Ander Conselvan de Oliveira | 304603f | 2015-04-02 14:47:56 +0300 | [diff] [blame] | 6120 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6121 | if (IS_CHERRYVIEW(dev)) |
| 6122 | cherryview_set_cdclk(dev, req_cdclk); |
| 6123 | else |
| 6124 | valleyview_set_cdclk(dev, req_cdclk); |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6125 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6126 | vlv_program_pfi_credits(dev_priv); |
Imre Deak | 738c05c | 2014-11-19 16:25:37 +0200 | [diff] [blame] | 6127 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 6128 | intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A); |
Jesse Barnes | 30a970c | 2013-11-04 13:48:12 -0800 | [diff] [blame] | 6129 | } |
| 6130 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6131 | static void valleyview_crtc_enable(struct drm_crtc *crtc) |
| 6132 | { |
| 6133 | struct drm_device *dev = crtc->dev; |
Daniel Vetter | a72e4c9 | 2014-09-30 10:56:47 +0200 | [diff] [blame] | 6134 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6135 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 6136 | struct intel_encoder *encoder; |
Maarten Lankhorst | b95c532 | 2016-03-30 17:16:34 +0200 | [diff] [blame] | 6137 | struct intel_crtc_state *pipe_config = |
| 6138 | to_intel_crtc_state(crtc->state); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6139 | int pipe = intel_crtc->pipe; |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6140 | |
Maarten Lankhorst | 53d9f4e | 2015-06-01 12:49:52 +0200 | [diff] [blame] | 6141 | if (WARN_ON(intel_crtc->active)) |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6142 | return; |
| 6143 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 6144 | if (intel_crtc->config->has_dp_encoder) |
Ramalingam C | fe3cd48 | 2015-02-13 15:32:59 +0530 | [diff] [blame] | 6145 | intel_dp_set_m_n(intel_crtc, M1_N1); |
Daniel Vetter | 5b18e57 | 2014-04-24 23:55:06 +0200 | [diff] [blame] | 6146 | |
| 6147 | intel_set_pipe_timings(intel_crtc); |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 6148 | intel_set_pipe_src_size(intel_crtc); |
Daniel Vetter | 5b18e57 | 2014-04-24 23:55:06 +0200 | [diff] [blame] | 6149 | |
Ville Syrjälä | c14b048 | 2014-10-16 20:52:34 +0300 | [diff] [blame] | 6150 | if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) { |
| 6151 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6152 | |
| 6153 | I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY); |
| 6154 | I915_WRITE(CHV_CANVAS(pipe), 0); |
| 6155 | } |
| 6156 | |
Daniel Vetter | 5b18e57 | 2014-04-24 23:55:06 +0200 | [diff] [blame] | 6157 | i9xx_set_pipeconf(intel_crtc); |
| 6158 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6159 | intel_crtc->active = true; |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6160 | |
Daniel Vetter | a72e4c9 | 2014-09-30 10:56:47 +0200 | [diff] [blame] | 6161 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
Ville Syrjälä | 4a3436e | 2014-05-16 19:40:25 +0300 | [diff] [blame] | 6162 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6163 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 6164 | if (encoder->pre_pll_enable) |
| 6165 | encoder->pre_pll_enable(encoder); |
| 6166 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 6167 | if (IS_CHERRYVIEW(dev)) { |
| 6168 | chv_prepare_pll(intel_crtc, intel_crtc->config); |
| 6169 | chv_enable_pll(intel_crtc, intel_crtc->config); |
| 6170 | } else { |
| 6171 | vlv_prepare_pll(intel_crtc, intel_crtc->config); |
| 6172 | vlv_enable_pll(intel_crtc, intel_crtc->config); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 6173 | } |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6174 | |
| 6175 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 6176 | if (encoder->pre_enable) |
| 6177 | encoder->pre_enable(encoder); |
| 6178 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 6179 | i9xx_pfit_enable(intel_crtc); |
| 6180 | |
Maarten Lankhorst | b95c532 | 2016-03-30 17:16:34 +0200 | [diff] [blame] | 6181 | intel_color_load_luts(&pipe_config->base); |
Ville Syrjälä | 63cbb07 | 2013-06-04 13:48:59 +0300 | [diff] [blame] | 6182 | |
Ville Syrjälä | caed361 | 2016-03-09 19:07:25 +0200 | [diff] [blame] | 6183 | intel_update_watermarks(crtc); |
Paulo Zanoni | e1fdc47 | 2014-01-17 13:51:12 -0200 | [diff] [blame] | 6184 | intel_enable_pipe(intel_crtc); |
Daniel Vetter | be6a6f8 | 2014-04-15 18:41:22 +0200 | [diff] [blame] | 6185 | |
Ville Syrjälä | 4b3a952 | 2014-08-14 22:04:37 +0300 | [diff] [blame] | 6186 | assert_vblank_disabled(crtc); |
| 6187 | drm_crtc_vblank_on(crtc); |
| 6188 | |
Daniel Vetter | f9b61ff | 2015-01-07 13:54:39 +0100 | [diff] [blame] | 6189 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 6190 | encoder->enable(encoder); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6191 | } |
| 6192 | |
Daniel Vetter | f13c2ef | 2014-04-24 23:55:10 +0200 | [diff] [blame] | 6193 | static void i9xx_set_pll_dividers(struct intel_crtc *crtc) |
| 6194 | { |
| 6195 | struct drm_device *dev = crtc->base.dev; |
| 6196 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6197 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 6198 | I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0); |
| 6199 | I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1); |
Daniel Vetter | f13c2ef | 2014-04-24 23:55:10 +0200 | [diff] [blame] | 6200 | } |
| 6201 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 6202 | static void i9xx_crtc_enable(struct drm_crtc *crtc) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 6203 | { |
| 6204 | struct drm_device *dev = crtc->dev; |
Daniel Vetter | a72e4c9 | 2014-09-30 10:56:47 +0200 | [diff] [blame] | 6205 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6206 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 6207 | struct intel_encoder *encoder; |
Maarten Lankhorst | b95c532 | 2016-03-30 17:16:34 +0200 | [diff] [blame] | 6208 | struct intel_crtc_state *pipe_config = |
| 6209 | to_intel_crtc_state(crtc->state); |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 6210 | enum pipe pipe = intel_crtc->pipe; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6211 | |
Maarten Lankhorst | 53d9f4e | 2015-06-01 12:49:52 +0200 | [diff] [blame] | 6212 | if (WARN_ON(intel_crtc->active)) |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 6213 | return; |
| 6214 | |
Daniel Vetter | f13c2ef | 2014-04-24 23:55:10 +0200 | [diff] [blame] | 6215 | i9xx_set_pll_dividers(intel_crtc); |
| 6216 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 6217 | if (intel_crtc->config->has_dp_encoder) |
Ramalingam C | fe3cd48 | 2015-02-13 15:32:59 +0530 | [diff] [blame] | 6218 | intel_dp_set_m_n(intel_crtc, M1_N1); |
Daniel Vetter | 5b18e57 | 2014-04-24 23:55:06 +0200 | [diff] [blame] | 6219 | |
| 6220 | intel_set_pipe_timings(intel_crtc); |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 6221 | intel_set_pipe_src_size(intel_crtc); |
Daniel Vetter | 5b18e57 | 2014-04-24 23:55:06 +0200 | [diff] [blame] | 6222 | |
Daniel Vetter | 5b18e57 | 2014-04-24 23:55:06 +0200 | [diff] [blame] | 6223 | i9xx_set_pipeconf(intel_crtc); |
| 6224 | |
Chris Wilson | f7abfe8 | 2010-09-13 14:19:16 +0100 | [diff] [blame] | 6225 | intel_crtc->active = true; |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 6226 | |
Ville Syrjälä | 4a3436e | 2014-05-16 19:40:25 +0300 | [diff] [blame] | 6227 | if (!IS_GEN2(dev)) |
Daniel Vetter | a72e4c9 | 2014-09-30 10:56:47 +0200 | [diff] [blame] | 6228 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
Ville Syrjälä | 4a3436e | 2014-05-16 19:40:25 +0300 | [diff] [blame] | 6229 | |
Daniel Vetter | 66e3d5c | 2013-06-16 21:24:16 +0200 | [diff] [blame] | 6230 | for_each_encoder_on_crtc(dev, crtc, encoder) |
Mika Kuoppala | 9d6d9f1 | 2013-02-08 16:35:38 +0200 | [diff] [blame] | 6231 | if (encoder->pre_enable) |
| 6232 | encoder->pre_enable(encoder); |
| 6233 | |
Daniel Vetter | f6736a1 | 2013-06-05 13:34:30 +0200 | [diff] [blame] | 6234 | i9xx_enable_pll(intel_crtc); |
| 6235 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 6236 | i9xx_pfit_enable(intel_crtc); |
| 6237 | |
Maarten Lankhorst | b95c532 | 2016-03-30 17:16:34 +0200 | [diff] [blame] | 6238 | intel_color_load_luts(&pipe_config->base); |
Ville Syrjälä | 63cbb07 | 2013-06-04 13:48:59 +0300 | [diff] [blame] | 6239 | |
Ville Syrjälä | f37fcc2 | 2013-09-10 11:39:55 +0300 | [diff] [blame] | 6240 | intel_update_watermarks(crtc); |
Paulo Zanoni | e1fdc47 | 2014-01-17 13:51:12 -0200 | [diff] [blame] | 6241 | intel_enable_pipe(intel_crtc); |
Daniel Vetter | be6a6f8 | 2014-04-15 18:41:22 +0200 | [diff] [blame] | 6242 | |
Ville Syrjälä | 4b3a952 | 2014-08-14 22:04:37 +0300 | [diff] [blame] | 6243 | assert_vblank_disabled(crtc); |
| 6244 | drm_crtc_vblank_on(crtc); |
| 6245 | |
Daniel Vetter | f9b61ff | 2015-01-07 13:54:39 +0100 | [diff] [blame] | 6246 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 6247 | encoder->enable(encoder); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 6248 | } |
| 6249 | |
Daniel Vetter | 87476d6 | 2013-04-11 16:29:06 +0200 | [diff] [blame] | 6250 | static void i9xx_pfit_disable(struct intel_crtc *crtc) |
| 6251 | { |
| 6252 | struct drm_device *dev = crtc->base.dev; |
| 6253 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 328d8e8 | 2013-05-08 10:36:31 +0200 | [diff] [blame] | 6254 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 6255 | if (!crtc->config->gmch_pfit.control) |
Daniel Vetter | 328d8e8 | 2013-05-08 10:36:31 +0200 | [diff] [blame] | 6256 | return; |
Daniel Vetter | 87476d6 | 2013-04-11 16:29:06 +0200 | [diff] [blame] | 6257 | |
| 6258 | assert_pipe_disabled(dev_priv, crtc->pipe); |
| 6259 | |
Daniel Vetter | 328d8e8 | 2013-05-08 10:36:31 +0200 | [diff] [blame] | 6260 | DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n", |
| 6261 | I915_READ(PFIT_CONTROL)); |
| 6262 | I915_WRITE(PFIT_CONTROL, 0); |
Daniel Vetter | 87476d6 | 2013-04-11 16:29:06 +0200 | [diff] [blame] | 6263 | } |
| 6264 | |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 6265 | static void i9xx_crtc_disable(struct drm_crtc *crtc) |
| 6266 | { |
| 6267 | struct drm_device *dev = crtc->dev; |
| 6268 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6269 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 6270 | struct intel_encoder *encoder; |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 6271 | int pipe = intel_crtc->pipe; |
Daniel Vetter | ef9c3ae | 2012-06-29 22:40:09 +0200 | [diff] [blame] | 6272 | |
Ville Syrjälä | 6304cd9 | 2014-04-25 13:30:12 +0300 | [diff] [blame] | 6273 | /* |
| 6274 | * On gen2 planes are double buffered but the pipe isn't, so we must |
| 6275 | * wait for planes to fully turn off before disabling the pipe. |
| 6276 | */ |
Ander Conselvan de Oliveira | 90e83e5 | 2016-03-22 10:11:24 +0200 | [diff] [blame] | 6277 | if (IS_GEN2(dev)) |
| 6278 | intel_wait_for_vblank(dev, pipe); |
Ville Syrjälä | 6304cd9 | 2014-04-25 13:30:12 +0300 | [diff] [blame] | 6279 | |
Ville Syrjälä | 4b3a952 | 2014-08-14 22:04:37 +0300 | [diff] [blame] | 6280 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 6281 | encoder->disable(encoder); |
| 6282 | |
Daniel Vetter | f9b61ff | 2015-01-07 13:54:39 +0100 | [diff] [blame] | 6283 | drm_crtc_vblank_off(crtc); |
| 6284 | assert_vblank_disabled(crtc); |
| 6285 | |
Ville Syrjälä | 575f7ab | 2014-08-15 01:21:56 +0300 | [diff] [blame] | 6286 | intel_disable_pipe(intel_crtc); |
Mika Kuoppala | 24a1f16 | 2013-02-08 16:35:37 +0200 | [diff] [blame] | 6287 | |
Daniel Vetter | 87476d6 | 2013-04-11 16:29:06 +0200 | [diff] [blame] | 6288 | i9xx_pfit_disable(intel_crtc); |
Mika Kuoppala | 24a1f16 | 2013-02-08 16:35:37 +0200 | [diff] [blame] | 6289 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 6290 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 6291 | if (encoder->post_disable) |
| 6292 | encoder->post_disable(encoder); |
| 6293 | |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 6294 | if (!intel_crtc->config->has_dsi_encoder) { |
Chon Ming Lee | 076ed3b | 2014-04-09 13:28:17 +0300 | [diff] [blame] | 6295 | if (IS_CHERRYVIEW(dev)) |
| 6296 | chv_disable_pll(dev_priv, pipe); |
| 6297 | else if (IS_VALLEYVIEW(dev)) |
| 6298 | vlv_disable_pll(dev_priv, pipe); |
| 6299 | else |
Ville Syrjälä | 1c4e027 | 2014-09-05 21:52:42 +0300 | [diff] [blame] | 6300 | i9xx_disable_pll(intel_crtc); |
Chon Ming Lee | 076ed3b | 2014-04-09 13:28:17 +0300 | [diff] [blame] | 6301 | } |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 6302 | |
Ville Syrjälä | d6db995 | 2015-07-08 23:45:49 +0300 | [diff] [blame] | 6303 | for_each_encoder_on_crtc(dev, crtc, encoder) |
| 6304 | if (encoder->post_pll_disable) |
| 6305 | encoder->post_pll_disable(encoder); |
| 6306 | |
Ville Syrjälä | 4a3436e | 2014-05-16 19:40:25 +0300 | [diff] [blame] | 6307 | if (!IS_GEN2(dev)) |
Daniel Vetter | a72e4c9 | 2014-09-30 10:56:47 +0200 | [diff] [blame] | 6308 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); |
Jesse Barnes | 0b8765c6 | 2010-09-10 10:31:34 -0700 | [diff] [blame] | 6309 | } |
| 6310 | |
Maarten Lankhorst | b17d48e | 2015-06-12 11:15:39 +0200 | [diff] [blame] | 6311 | static void intel_crtc_disable_noatomic(struct drm_crtc *crtc) |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 6312 | { |
Maarten Lankhorst | 842e030 | 2016-03-02 15:48:01 +0100 | [diff] [blame] | 6313 | struct intel_encoder *encoder; |
Daniel Vetter | 0e572fe | 2014-04-24 23:55:42 +0200 | [diff] [blame] | 6314 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Maarten Lankhorst | b17d48e | 2015-06-12 11:15:39 +0200 | [diff] [blame] | 6315 | struct drm_i915_private *dev_priv = to_i915(crtc->dev); |
Daniel Vetter | 0e572fe | 2014-04-24 23:55:42 +0200 | [diff] [blame] | 6316 | enum intel_display_power_domain domain; |
| 6317 | unsigned long domains; |
Daniel Vetter | 976f8a2 | 2012-07-08 22:34:21 +0200 | [diff] [blame] | 6318 | |
Maarten Lankhorst | b17d48e | 2015-06-12 11:15:39 +0200 | [diff] [blame] | 6319 | if (!intel_crtc->active) |
| 6320 | return; |
Daniel Vetter | 0e572fe | 2014-04-24 23:55:42 +0200 | [diff] [blame] | 6321 | |
Maarten Lankhorst | a539205 | 2015-06-15 12:33:52 +0200 | [diff] [blame] | 6322 | if (to_intel_plane_state(crtc->primary->state)->visible) { |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 6323 | WARN_ON(intel_crtc->flip_work); |
Maarten Lankhorst | fc32b1f | 2015-10-19 17:09:23 +0200 | [diff] [blame] | 6324 | |
Ville Syrjälä | 2622a08 | 2016-03-09 19:07:26 +0200 | [diff] [blame] | 6325 | intel_pre_disable_primary_noatomic(crtc); |
Maarten Lankhorst | 54a41961 | 2015-11-23 10:25:28 +0100 | [diff] [blame] | 6326 | |
| 6327 | intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary)); |
| 6328 | to_intel_plane_state(crtc->primary->state)->visible = false; |
Maarten Lankhorst | a539205 | 2015-06-15 12:33:52 +0200 | [diff] [blame] | 6329 | } |
| 6330 | |
Maarten Lankhorst | b17d48e | 2015-06-12 11:15:39 +0200 | [diff] [blame] | 6331 | dev_priv->display.crtc_disable(crtc); |
Maarten Lankhorst | 842e030 | 2016-03-02 15:48:01 +0100 | [diff] [blame] | 6332 | |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 6333 | DRM_DEBUG_KMS("[CRTC:%d:%s] hw state adjusted, was enabled, now disabled\n", |
| 6334 | crtc->base.id, crtc->name); |
Maarten Lankhorst | 842e030 | 2016-03-02 15:48:01 +0100 | [diff] [blame] | 6335 | |
| 6336 | WARN_ON(drm_atomic_set_mode_for_crtc(crtc->state, NULL) < 0); |
| 6337 | crtc->state->active = false; |
Matt Roper | 37d9078 | 2015-09-24 15:53:06 -0700 | [diff] [blame] | 6338 | intel_crtc->active = false; |
Maarten Lankhorst | 842e030 | 2016-03-02 15:48:01 +0100 | [diff] [blame] | 6339 | crtc->enabled = false; |
| 6340 | crtc->state->connector_mask = 0; |
| 6341 | crtc->state->encoder_mask = 0; |
| 6342 | |
| 6343 | for_each_encoder_on_crtc(crtc->dev, crtc, encoder) |
| 6344 | encoder->base.crtc = NULL; |
| 6345 | |
Paulo Zanoni | 58f9c0b | 2016-01-19 11:35:51 -0200 | [diff] [blame] | 6346 | intel_fbc_disable(intel_crtc); |
Matt Roper | 37d9078 | 2015-09-24 15:53:06 -0700 | [diff] [blame] | 6347 | intel_update_watermarks(crtc); |
Maarten Lankhorst | 1f7457b | 2015-07-13 11:55:05 +0200 | [diff] [blame] | 6348 | intel_disable_shared_dpll(intel_crtc); |
Daniel Vetter | 0e572fe | 2014-04-24 23:55:42 +0200 | [diff] [blame] | 6349 | |
Maarten Lankhorst | b17d48e | 2015-06-12 11:15:39 +0200 | [diff] [blame] | 6350 | domains = intel_crtc->enabled_power_domains; |
| 6351 | for_each_power_domain(domain, domains) |
| 6352 | intel_display_power_put(dev_priv, domain); |
| 6353 | intel_crtc->enabled_power_domains = 0; |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 6354 | |
| 6355 | dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe); |
| 6356 | dev_priv->min_pixclk[intel_crtc->pipe] = 0; |
Maarten Lankhorst | b17d48e | 2015-06-12 11:15:39 +0200 | [diff] [blame] | 6357 | } |
| 6358 | |
Maarten Lankhorst | 6b72d48 | 2015-06-01 12:49:47 +0200 | [diff] [blame] | 6359 | /* |
| 6360 | * turn all crtc's off, but do not adjust state |
| 6361 | * This has to be paired with a call to intel_modeset_setup_hw_state. |
| 6362 | */ |
Maarten Lankhorst | 70e0bd7 | 2015-07-13 16:30:29 +0200 | [diff] [blame] | 6363 | int intel_display_suspend(struct drm_device *dev) |
Maarten Lankhorst | 6b72d48 | 2015-06-01 12:49:47 +0200 | [diff] [blame] | 6364 | { |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 6365 | struct drm_i915_private *dev_priv = to_i915(dev); |
Maarten Lankhorst | 70e0bd7 | 2015-07-13 16:30:29 +0200 | [diff] [blame] | 6366 | struct drm_atomic_state *state; |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 6367 | int ret; |
Maarten Lankhorst | 6b72d48 | 2015-06-01 12:49:47 +0200 | [diff] [blame] | 6368 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 6369 | state = drm_atomic_helper_suspend(dev); |
| 6370 | ret = PTR_ERR_OR_ZERO(state); |
Maarten Lankhorst | 70e0bd7 | 2015-07-13 16:30:29 +0200 | [diff] [blame] | 6371 | if (ret) |
| 6372 | DRM_ERROR("Suspending crtc's failed with %i\n", ret); |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 6373 | else |
| 6374 | dev_priv->modeset_restore_state = state; |
Maarten Lankhorst | 70e0bd7 | 2015-07-13 16:30:29 +0200 | [diff] [blame] | 6375 | return ret; |
Maarten Lankhorst | 6b72d48 | 2015-06-01 12:49:47 +0200 | [diff] [blame] | 6376 | } |
| 6377 | |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 6378 | void intel_encoder_destroy(struct drm_encoder *encoder) |
| 6379 | { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 6380 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 6381 | |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 6382 | drm_encoder_cleanup(encoder); |
| 6383 | kfree(intel_encoder); |
| 6384 | } |
| 6385 | |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6386 | /* Cross check the actual hw state with our own modeset state tracking (and it's |
| 6387 | * internal consistency). */ |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 6388 | static void intel_connector_verify_state(struct intel_connector *connector) |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6389 | { |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 6390 | struct drm_crtc *crtc = connector->base.state->crtc; |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 6391 | |
| 6392 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", |
| 6393 | connector->base.base.id, |
| 6394 | connector->base.name); |
| 6395 | |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6396 | if (connector->get_hw_state(connector)) { |
Maarten Lankhorst | e85376c | 2015-08-27 13:13:31 +0200 | [diff] [blame] | 6397 | struct intel_encoder *encoder = connector->encoder; |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 6398 | struct drm_connector_state *conn_state = connector->base.state; |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6399 | |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 6400 | I915_STATE_WARN(!crtc, |
| 6401 | "connector enabled without attached crtc\n"); |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6402 | |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 6403 | if (!crtc) |
| 6404 | return; |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6405 | |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 6406 | I915_STATE_WARN(!crtc->state->active, |
| 6407 | "connector is active, but attached crtc isn't\n"); |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6408 | |
Maarten Lankhorst | e85376c | 2015-08-27 13:13:31 +0200 | [diff] [blame] | 6409 | if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST) |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 6410 | return; |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6411 | |
Maarten Lankhorst | e85376c | 2015-08-27 13:13:31 +0200 | [diff] [blame] | 6412 | I915_STATE_WARN(conn_state->best_encoder != &encoder->base, |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 6413 | "atomic encoder doesn't match attached encoder\n"); |
Dave Airlie | 36cd744 | 2014-05-02 13:44:18 +1000 | [diff] [blame] | 6414 | |
Maarten Lankhorst | e85376c | 2015-08-27 13:13:31 +0200 | [diff] [blame] | 6415 | I915_STATE_WARN(conn_state->crtc != encoder->base.crtc, |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 6416 | "attached encoder crtc differs from connector crtc\n"); |
| 6417 | } else { |
Maarten Lankhorst | 4d688a2 | 2015-08-05 12:37:06 +0200 | [diff] [blame] | 6418 | I915_STATE_WARN(crtc && crtc->state->active, |
| 6419 | "attached crtc is active, but connector isn't\n"); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 6420 | I915_STATE_WARN(!crtc && connector->base.state->best_encoder, |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 6421 | "best encoder set without crtc!\n"); |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 6422 | } |
| 6423 | } |
| 6424 | |
Ander Conselvan de Oliveira | 08d9bc9 | 2015-04-10 10:59:10 +0300 | [diff] [blame] | 6425 | int intel_connector_init(struct intel_connector *connector) |
| 6426 | { |
Maarten Lankhorst | 5350a03 | 2016-01-04 12:53:15 +0100 | [diff] [blame] | 6427 | drm_atomic_helper_connector_reset(&connector->base); |
Ander Conselvan de Oliveira | 08d9bc9 | 2015-04-10 10:59:10 +0300 | [diff] [blame] | 6428 | |
Maarten Lankhorst | 5350a03 | 2016-01-04 12:53:15 +0100 | [diff] [blame] | 6429 | if (!connector->base.state) |
Ander Conselvan de Oliveira | 08d9bc9 | 2015-04-10 10:59:10 +0300 | [diff] [blame] | 6430 | return -ENOMEM; |
| 6431 | |
Ander Conselvan de Oliveira | 08d9bc9 | 2015-04-10 10:59:10 +0300 | [diff] [blame] | 6432 | return 0; |
| 6433 | } |
| 6434 | |
| 6435 | struct intel_connector *intel_connector_alloc(void) |
| 6436 | { |
| 6437 | struct intel_connector *connector; |
| 6438 | |
| 6439 | connector = kzalloc(sizeof *connector, GFP_KERNEL); |
| 6440 | if (!connector) |
| 6441 | return NULL; |
| 6442 | |
| 6443 | if (intel_connector_init(connector) < 0) { |
| 6444 | kfree(connector); |
| 6445 | return NULL; |
| 6446 | } |
| 6447 | |
| 6448 | return connector; |
| 6449 | } |
| 6450 | |
Daniel Vetter | f0947c3 | 2012-07-02 13:10:34 +0200 | [diff] [blame] | 6451 | /* Simple connector->get_hw_state implementation for encoders that support only |
| 6452 | * one connector and no cloning and hence the encoder state determines the state |
| 6453 | * of the connector. */ |
| 6454 | bool intel_connector_get_hw_state(struct intel_connector *connector) |
| 6455 | { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 6456 | enum pipe pipe = 0; |
Daniel Vetter | f0947c3 | 2012-07-02 13:10:34 +0200 | [diff] [blame] | 6457 | struct intel_encoder *encoder = connector->encoder; |
| 6458 | |
| 6459 | return encoder->get_hw_state(encoder, &pipe); |
| 6460 | } |
| 6461 | |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6462 | static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state) |
Ville Syrjälä | d272ddf | 2015-03-11 18:52:31 +0200 | [diff] [blame] | 6463 | { |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6464 | if (crtc_state->base.enable && crtc_state->has_pch_encoder) |
| 6465 | return crtc_state->fdi_lanes; |
Ville Syrjälä | d272ddf | 2015-03-11 18:52:31 +0200 | [diff] [blame] | 6466 | |
| 6467 | return 0; |
| 6468 | } |
| 6469 | |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6470 | static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 6471 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6472 | { |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6473 | struct drm_atomic_state *state = pipe_config->base.state; |
| 6474 | struct intel_crtc *other_crtc; |
| 6475 | struct intel_crtc_state *other_crtc_state; |
| 6476 | |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6477 | DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n", |
| 6478 | pipe_name(pipe), pipe_config->fdi_lanes); |
| 6479 | if (pipe_config->fdi_lanes > 4) { |
| 6480 | DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n", |
| 6481 | pipe_name(pipe), pipe_config->fdi_lanes); |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6482 | return -EINVAL; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6483 | } |
| 6484 | |
Paulo Zanoni | bafb655 | 2013-11-02 21:07:44 -0700 | [diff] [blame] | 6485 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6486 | if (pipe_config->fdi_lanes > 2) { |
| 6487 | DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n", |
| 6488 | pipe_config->fdi_lanes); |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6489 | return -EINVAL; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6490 | } else { |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6491 | return 0; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6492 | } |
| 6493 | } |
| 6494 | |
| 6495 | if (INTEL_INFO(dev)->num_pipes == 2) |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6496 | return 0; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6497 | |
| 6498 | /* Ivybridge 3 pipe is really complicated */ |
| 6499 | switch (pipe) { |
| 6500 | case PIPE_A: |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6501 | return 0; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6502 | case PIPE_B: |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6503 | if (pipe_config->fdi_lanes <= 2) |
| 6504 | return 0; |
| 6505 | |
| 6506 | other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C)); |
| 6507 | other_crtc_state = |
| 6508 | intel_atomic_get_crtc_state(state, other_crtc); |
| 6509 | if (IS_ERR(other_crtc_state)) |
| 6510 | return PTR_ERR(other_crtc_state); |
| 6511 | |
| 6512 | if (pipe_required_fdi_lanes(other_crtc_state) > 0) { |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6513 | DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n", |
| 6514 | pipe_name(pipe), pipe_config->fdi_lanes); |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6515 | return -EINVAL; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6516 | } |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6517 | return 0; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6518 | case PIPE_C: |
Ville Syrjälä | 251cc67 | 2015-03-11 18:52:30 +0200 | [diff] [blame] | 6519 | if (pipe_config->fdi_lanes > 2) { |
| 6520 | DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n", |
| 6521 | pipe_name(pipe), pipe_config->fdi_lanes); |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6522 | return -EINVAL; |
Ville Syrjälä | 251cc67 | 2015-03-11 18:52:30 +0200 | [diff] [blame] | 6523 | } |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6524 | |
| 6525 | other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B)); |
| 6526 | other_crtc_state = |
| 6527 | intel_atomic_get_crtc_state(state, other_crtc); |
| 6528 | if (IS_ERR(other_crtc_state)) |
| 6529 | return PTR_ERR(other_crtc_state); |
| 6530 | |
| 6531 | if (pipe_required_fdi_lanes(other_crtc_state) > 2) { |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6532 | DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n"); |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6533 | return -EINVAL; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6534 | } |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6535 | return 0; |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6536 | default: |
| 6537 | BUG(); |
| 6538 | } |
| 6539 | } |
| 6540 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 6541 | #define RETRY 1 |
| 6542 | static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 6543 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6544 | { |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6545 | struct drm_device *dev = intel_crtc->base.dev; |
Ville Syrjälä | 7c5f93b | 2015-09-08 13:40:49 +0300 | [diff] [blame] | 6546 | const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode; |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6547 | int lane, link_bw, fdi_dotclock, ret; |
| 6548 | bool needs_recompute = false; |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6549 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 6550 | retry: |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6551 | /* FDI is a binary signal running at ~2.7GHz, encoding |
| 6552 | * each output octet as 10 bits. The actual frequency |
| 6553 | * is stored as a divider into a 100MHz clock, and the |
| 6554 | * mode pixel clock is stored in units of 1KHz. |
| 6555 | * Hence the bw of each lane in terms of the mode signal |
| 6556 | * is: |
| 6557 | */ |
Ville Syrjälä | 21a727b | 2016-02-17 21:41:10 +0200 | [diff] [blame] | 6558 | link_bw = intel_fdi_link_freq(to_i915(dev), pipe_config); |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6559 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 6560 | fdi_dotclock = adjusted_mode->crtc_clock; |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6561 | |
Daniel Vetter | 2bd89a0 | 2013-06-01 17:16:19 +0200 | [diff] [blame] | 6562 | lane = ironlake_get_lanes_required(fdi_dotclock, link_bw, |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6563 | pipe_config->pipe_bpp); |
| 6564 | |
| 6565 | pipe_config->fdi_lanes = lane; |
| 6566 | |
Daniel Vetter | 2bd89a0 | 2013-06-01 17:16:19 +0200 | [diff] [blame] | 6567 | intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock, |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6568 | link_bw, &pipe_config->fdi_m_n); |
Daniel Vetter | 1857e1d | 2013-04-29 19:34:16 +0200 | [diff] [blame] | 6569 | |
Ville Syrjälä | e3b247d | 2016-02-17 21:41:09 +0200 | [diff] [blame] | 6570 | ret = ironlake_check_fdi_lanes(dev, intel_crtc->pipe, pipe_config); |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6571 | if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) { |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 6572 | pipe_config->pipe_bpp -= 2*3; |
| 6573 | DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n", |
| 6574 | pipe_config->pipe_bpp); |
| 6575 | needs_recompute = true; |
| 6576 | pipe_config->bw_constrained = true; |
| 6577 | |
| 6578 | goto retry; |
| 6579 | } |
| 6580 | |
| 6581 | if (needs_recompute) |
| 6582 | return RETRY; |
| 6583 | |
Ander Conselvan de Oliveira | 6d29398 | 2015-03-30 08:33:12 +0300 | [diff] [blame] | 6584 | return ret; |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6585 | } |
| 6586 | |
Ville Syrjälä | 8cfb340 | 2015-06-03 15:45:11 +0300 | [diff] [blame] | 6587 | static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv, |
| 6588 | struct intel_crtc_state *pipe_config) |
| 6589 | { |
| 6590 | if (pipe_config->pipe_bpp > 24) |
| 6591 | return false; |
| 6592 | |
| 6593 | /* HSW can handle pixel rate up to cdclk? */ |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 6594 | if (IS_HASWELL(dev_priv)) |
Ville Syrjälä | 8cfb340 | 2015-06-03 15:45:11 +0300 | [diff] [blame] | 6595 | return true; |
| 6596 | |
| 6597 | /* |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 6598 | * We compare against max which means we must take |
| 6599 | * the increased cdclk requirement into account when |
| 6600 | * calculating the new cdclk. |
| 6601 | * |
| 6602 | * Should measure whether using a lower cdclk w/o IPS |
Ville Syrjälä | 8cfb340 | 2015-06-03 15:45:11 +0300 | [diff] [blame] | 6603 | */ |
| 6604 | return ilk_pipe_pixel_rate(pipe_config) <= |
| 6605 | dev_priv->max_cdclk_freq * 95 / 100; |
| 6606 | } |
| 6607 | |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 6608 | static void hsw_compute_ips_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 6609 | struct intel_crtc_state *pipe_config) |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 6610 | { |
Ville Syrjälä | 8cfb340 | 2015-06-03 15:45:11 +0300 | [diff] [blame] | 6611 | struct drm_device *dev = crtc->base.dev; |
| 6612 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6613 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 6614 | pipe_config->ips_enabled = i915.enable_ips && |
Ville Syrjälä | 8cfb340 | 2015-06-03 15:45:11 +0300 | [diff] [blame] | 6615 | hsw_crtc_supports_ips(crtc) && |
| 6616 | pipe_config_supports_ips(dev_priv, pipe_config); |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 6617 | } |
| 6618 | |
Ville Syrjälä | 39acb4a | 2015-10-30 23:39:38 +0200 | [diff] [blame] | 6619 | static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc) |
| 6620 | { |
| 6621 | const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 6622 | |
| 6623 | /* GDG double wide on either pipe, otherwise pipe A only */ |
| 6624 | return INTEL_INFO(dev_priv)->gen < 4 && |
| 6625 | (crtc->pipe == PIPE_A || IS_I915G(dev_priv)); |
| 6626 | } |
| 6627 | |
Daniel Vetter | a43f6e0 | 2013-06-07 23:10:32 +0200 | [diff] [blame] | 6628 | static int intel_crtc_compute_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 6629 | struct intel_crtc_state *pipe_config) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6630 | { |
Daniel Vetter | a43f6e0 | 2013-06-07 23:10:32 +0200 | [diff] [blame] | 6631 | struct drm_device *dev = crtc->base.dev; |
Ander Conselvan de Oliveira | 8bd31e6 | 2014-10-29 11:32:33 +0200 | [diff] [blame] | 6632 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 7c5f93b | 2015-09-08 13:40:49 +0300 | [diff] [blame] | 6633 | const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode; |
Ville Syrjälä | f326115 | 2016-05-24 21:34:18 +0300 | [diff] [blame] | 6634 | int clock_limit = dev_priv->max_dotclk_freq; |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 6635 | |
Ville Syrjälä | cf532bb | 2013-09-04 18:30:02 +0300 | [diff] [blame] | 6636 | if (INTEL_INFO(dev)->gen < 4) { |
Ville Syrjälä | f326115 | 2016-05-24 21:34:18 +0300 | [diff] [blame] | 6637 | clock_limit = dev_priv->max_cdclk_freq * 9 / 10; |
Ville Syrjälä | cf532bb | 2013-09-04 18:30:02 +0300 | [diff] [blame] | 6638 | |
| 6639 | /* |
Ville Syrjälä | 39acb4a | 2015-10-30 23:39:38 +0200 | [diff] [blame] | 6640 | * Enable double wide mode when the dot clock |
Ville Syrjälä | cf532bb | 2013-09-04 18:30:02 +0300 | [diff] [blame] | 6641 | * is > 90% of the (display) core speed. |
Ville Syrjälä | cf532bb | 2013-09-04 18:30:02 +0300 | [diff] [blame] | 6642 | */ |
Ville Syrjälä | 39acb4a | 2015-10-30 23:39:38 +0200 | [diff] [blame] | 6643 | if (intel_crtc_supports_double_wide(crtc) && |
| 6644 | adjusted_mode->crtc_clock > clock_limit) { |
Ville Syrjälä | f326115 | 2016-05-24 21:34:18 +0300 | [diff] [blame] | 6645 | clock_limit = dev_priv->max_dotclk_freq; |
Ville Syrjälä | cf532bb | 2013-09-04 18:30:02 +0300 | [diff] [blame] | 6646 | pipe_config->double_wide = true; |
Ville Syrjälä | ad3a447 | 2013-09-04 18:30:04 +0300 | [diff] [blame] | 6647 | } |
Ville Syrjälä | f326115 | 2016-05-24 21:34:18 +0300 | [diff] [blame] | 6648 | } |
Ville Syrjälä | ad3a447 | 2013-09-04 18:30:04 +0300 | [diff] [blame] | 6649 | |
Ville Syrjälä | f326115 | 2016-05-24 21:34:18 +0300 | [diff] [blame] | 6650 | if (adjusted_mode->crtc_clock > clock_limit) { |
| 6651 | DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n", |
| 6652 | adjusted_mode->crtc_clock, clock_limit, |
| 6653 | yesno(pipe_config->double_wide)); |
| 6654 | return -EINVAL; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 6655 | } |
Chris Wilson | 8974935 | 2010-09-12 18:25:19 +0100 | [diff] [blame] | 6656 | |
Ville Syrjälä | 1d1d0e2 | 2013-09-04 18:30:05 +0300 | [diff] [blame] | 6657 | /* |
| 6658 | * Pipe horizontal size must be even in: |
| 6659 | * - DVO ganged mode |
| 6660 | * - LVDS dual channel mode |
| 6661 | * - Double wide pipe |
| 6662 | */ |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 6663 | if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) && |
Ville Syrjälä | 1d1d0e2 | 2013-09-04 18:30:05 +0300 | [diff] [blame] | 6664 | intel_is_dual_link_lvds(dev)) || pipe_config->double_wide) |
| 6665 | pipe_config->pipe_src_w &= ~1; |
| 6666 | |
Damien Lespiau | 8693a82 | 2013-05-03 18:48:11 +0100 | [diff] [blame] | 6667 | /* Cantiga+ cannot handle modes with a hsync front porch of 0. |
| 6668 | * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw. |
Chris Wilson | 44f46b42 | 2012-06-21 13:19:59 +0300 | [diff] [blame] | 6669 | */ |
| 6670 | if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) && |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 6671 | adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay) |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 6672 | return -EINVAL; |
Chris Wilson | 44f46b42 | 2012-06-21 13:19:59 +0300 | [diff] [blame] | 6673 | |
Damien Lespiau | f5adf94 | 2013-06-24 18:29:34 +0100 | [diff] [blame] | 6674 | if (HAS_IPS(dev)) |
Daniel Vetter | a43f6e0 | 2013-06-07 23:10:32 +0200 | [diff] [blame] | 6675 | hsw_compute_ips_config(crtc, pipe_config); |
| 6676 | |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6677 | if (pipe_config->has_pch_encoder) |
Daniel Vetter | a43f6e0 | 2013-06-07 23:10:32 +0200 | [diff] [blame] | 6678 | return ironlake_fdi_compute_config(crtc, pipe_config); |
Daniel Vetter | 877d48d | 2013-04-19 11:24:43 +0200 | [diff] [blame] | 6679 | |
Maarten Lankhorst | cf5a15b | 2015-06-15 12:33:41 +0200 | [diff] [blame] | 6680 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6681 | } |
| 6682 | |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6683 | static int skylake_get_display_clock_speed(struct drm_device *dev) |
| 6684 | { |
| 6685 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 6686 | uint32_t cdctl; |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6687 | |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 6688 | skl_dpll0_update(dev_priv); |
| 6689 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 6690 | if (dev_priv->cdclk_pll.vco == 0) |
Ville Syrjälä | 709e05c | 2016-05-13 23:41:33 +0300 | [diff] [blame] | 6691 | return dev_priv->cdclk_pll.ref; |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6692 | |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 6693 | cdctl = I915_READ(CDCLK_CTL); |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6694 | |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 6695 | if (dev_priv->cdclk_pll.vco == 8640000) { |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6696 | switch (cdctl & CDCLK_FREQ_SEL_MASK) { |
| 6697 | case CDCLK_FREQ_450_432: |
| 6698 | return 432000; |
| 6699 | case CDCLK_FREQ_337_308: |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 6700 | return 308571; |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 6701 | case CDCLK_FREQ_540: |
| 6702 | return 540000; |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6703 | case CDCLK_FREQ_675_617: |
Ville Syrjälä | 487ed2e | 2016-05-13 23:41:31 +0300 | [diff] [blame] | 6704 | return 617143; |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6705 | default: |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 6706 | MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK); |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6707 | } |
| 6708 | } else { |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6709 | switch (cdctl & CDCLK_FREQ_SEL_MASK) { |
| 6710 | case CDCLK_FREQ_450_432: |
| 6711 | return 450000; |
| 6712 | case CDCLK_FREQ_337_308: |
| 6713 | return 337500; |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 6714 | case CDCLK_FREQ_540: |
| 6715 | return 540000; |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6716 | case CDCLK_FREQ_675_617: |
| 6717 | return 675000; |
| 6718 | default: |
Ville Syrjälä | ea61791 | 2016-05-13 23:41:24 +0300 | [diff] [blame] | 6719 | MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK); |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6720 | } |
| 6721 | } |
| 6722 | |
Ville Syrjälä | 709e05c | 2016-05-13 23:41:33 +0300 | [diff] [blame] | 6723 | return dev_priv->cdclk_pll.ref; |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6724 | } |
| 6725 | |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 6726 | static void bxt_de_pll_update(struct drm_i915_private *dev_priv) |
| 6727 | { |
| 6728 | u32 val; |
| 6729 | |
| 6730 | dev_priv->cdclk_pll.ref = 19200; |
Imre Deak | 1c3f770 | 2016-05-24 15:38:32 +0300 | [diff] [blame] | 6731 | dev_priv->cdclk_pll.vco = 0; |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 6732 | |
| 6733 | val = I915_READ(BXT_DE_PLL_ENABLE); |
Imre Deak | 1c3f770 | 2016-05-24 15:38:32 +0300 | [diff] [blame] | 6734 | if ((val & BXT_DE_PLL_PLL_ENABLE) == 0) |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 6735 | return; |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 6736 | |
Imre Deak | 1c3f770 | 2016-05-24 15:38:32 +0300 | [diff] [blame] | 6737 | if (WARN_ON((val & BXT_DE_PLL_LOCK) == 0)) |
| 6738 | return; |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 6739 | |
| 6740 | val = I915_READ(BXT_DE_PLL_CTL); |
| 6741 | dev_priv->cdclk_pll.vco = (val & BXT_DE_PLL_RATIO_MASK) * |
| 6742 | dev_priv->cdclk_pll.ref; |
| 6743 | } |
| 6744 | |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6745 | static int broxton_get_display_clock_speed(struct drm_device *dev) |
| 6746 | { |
| 6747 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6748 | u32 divider; |
| 6749 | int div, vco; |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6750 | |
Ville Syrjälä | 83d7c81 | 2016-05-13 23:41:35 +0300 | [diff] [blame] | 6751 | bxt_de_pll_update(dev_priv); |
| 6752 | |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6753 | vco = dev_priv->cdclk_pll.vco; |
| 6754 | if (vco == 0) |
| 6755 | return dev_priv->cdclk_pll.ref; |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6756 | |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6757 | divider = I915_READ(CDCLK_CTL) & BXT_CDCLK_CD2X_DIV_SEL_MASK; |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6758 | |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6759 | switch (divider) { |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6760 | case BXT_CDCLK_CD2X_DIV_SEL_1: |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6761 | div = 2; |
| 6762 | break; |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6763 | case BXT_CDCLK_CD2X_DIV_SEL_1_5: |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6764 | div = 3; |
| 6765 | break; |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6766 | case BXT_CDCLK_CD2X_DIV_SEL_2: |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6767 | div = 4; |
| 6768 | break; |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6769 | case BXT_CDCLK_CD2X_DIV_SEL_4: |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6770 | div = 8; |
| 6771 | break; |
| 6772 | default: |
| 6773 | MISSING_CASE(divider); |
| 6774 | return dev_priv->cdclk_pll.ref; |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6775 | } |
| 6776 | |
Ville Syrjälä | f598624 | 2016-05-13 23:41:37 +0300 | [diff] [blame] | 6777 | return DIV_ROUND_CLOSEST(vco, div); |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 6778 | } |
| 6779 | |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 6780 | static int broadwell_get_display_clock_speed(struct drm_device *dev) |
| 6781 | { |
| 6782 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6783 | uint32_t lcpll = I915_READ(LCPLL_CTL); |
| 6784 | uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK; |
| 6785 | |
| 6786 | if (lcpll & LCPLL_CD_SOURCE_FCLK) |
| 6787 | return 800000; |
| 6788 | else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT) |
| 6789 | return 450000; |
| 6790 | else if (freq == LCPLL_CLK_FREQ_450) |
| 6791 | return 450000; |
| 6792 | else if (freq == LCPLL_CLK_FREQ_54O_BDW) |
| 6793 | return 540000; |
| 6794 | else if (freq == LCPLL_CLK_FREQ_337_5_BDW) |
| 6795 | return 337500; |
| 6796 | else |
| 6797 | return 675000; |
| 6798 | } |
| 6799 | |
| 6800 | static int haswell_get_display_clock_speed(struct drm_device *dev) |
| 6801 | { |
| 6802 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6803 | uint32_t lcpll = I915_READ(LCPLL_CTL); |
| 6804 | uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK; |
| 6805 | |
| 6806 | if (lcpll & LCPLL_CD_SOURCE_FCLK) |
| 6807 | return 800000; |
| 6808 | else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT) |
| 6809 | return 450000; |
| 6810 | else if (freq == LCPLL_CLK_FREQ_450) |
| 6811 | return 450000; |
| 6812 | else if (IS_HSW_ULT(dev)) |
| 6813 | return 337500; |
| 6814 | else |
| 6815 | return 540000; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6816 | } |
| 6817 | |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 6818 | static int valleyview_get_display_clock_speed(struct drm_device *dev) |
| 6819 | { |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 6820 | return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk", |
| 6821 | CCK_DISPLAY_CLOCK_CONTROL); |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 6822 | } |
| 6823 | |
Ville Syrjälä | b37a643 | 2015-03-31 14:11:54 +0300 | [diff] [blame] | 6824 | static int ilk_get_display_clock_speed(struct drm_device *dev) |
| 6825 | { |
| 6826 | return 450000; |
| 6827 | } |
| 6828 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6829 | static int i945_get_display_clock_speed(struct drm_device *dev) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6830 | { |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6831 | return 400000; |
| 6832 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6833 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6834 | static int i915_get_display_clock_speed(struct drm_device *dev) |
| 6835 | { |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6836 | return 333333; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6837 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6838 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6839 | static int i9xx_misc_get_display_clock_speed(struct drm_device *dev) |
| 6840 | { |
| 6841 | return 200000; |
| 6842 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6843 | |
Daniel Vetter | 257a7ff | 2013-07-26 08:35:42 +0200 | [diff] [blame] | 6844 | static int pnv_get_display_clock_speed(struct drm_device *dev) |
| 6845 | { |
| 6846 | u16 gcfgc = 0; |
| 6847 | |
| 6848 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
| 6849 | |
| 6850 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { |
| 6851 | case GC_DISPLAY_CLOCK_267_MHZ_PNV: |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6852 | return 266667; |
Daniel Vetter | 257a7ff | 2013-07-26 08:35:42 +0200 | [diff] [blame] | 6853 | case GC_DISPLAY_CLOCK_333_MHZ_PNV: |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6854 | return 333333; |
Daniel Vetter | 257a7ff | 2013-07-26 08:35:42 +0200 | [diff] [blame] | 6855 | case GC_DISPLAY_CLOCK_444_MHZ_PNV: |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6856 | return 444444; |
Daniel Vetter | 257a7ff | 2013-07-26 08:35:42 +0200 | [diff] [blame] | 6857 | case GC_DISPLAY_CLOCK_200_MHZ_PNV: |
| 6858 | return 200000; |
| 6859 | default: |
| 6860 | DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc); |
| 6861 | case GC_DISPLAY_CLOCK_133_MHZ_PNV: |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6862 | return 133333; |
Daniel Vetter | 257a7ff | 2013-07-26 08:35:42 +0200 | [diff] [blame] | 6863 | case GC_DISPLAY_CLOCK_167_MHZ_PNV: |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6864 | return 166667; |
Daniel Vetter | 257a7ff | 2013-07-26 08:35:42 +0200 | [diff] [blame] | 6865 | } |
| 6866 | } |
| 6867 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6868 | static int i915gm_get_display_clock_speed(struct drm_device *dev) |
| 6869 | { |
| 6870 | u16 gcfgc = 0; |
| 6871 | |
| 6872 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
| 6873 | |
| 6874 | if (gcfgc & GC_LOW_FREQUENCY_ENABLE) |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6875 | return 133333; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6876 | else { |
| 6877 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { |
| 6878 | case GC_DISPLAY_CLOCK_333_MHZ: |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6879 | return 333333; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6880 | default: |
| 6881 | case GC_DISPLAY_CLOCK_190_200_MHZ: |
| 6882 | return 190000; |
| 6883 | } |
| 6884 | } |
| 6885 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6886 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6887 | static int i865_get_display_clock_speed(struct drm_device *dev) |
| 6888 | { |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6889 | return 266667; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6890 | } |
| 6891 | |
Ville Syrjälä | 1b1d271 | 2015-05-22 11:22:31 +0300 | [diff] [blame] | 6892 | static int i85x_get_display_clock_speed(struct drm_device *dev) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6893 | { |
| 6894 | u16 hpllcc = 0; |
Ville Syrjälä | 1b1d271 | 2015-05-22 11:22:31 +0300 | [diff] [blame] | 6895 | |
Ville Syrjälä | 65cd2b3 | 2015-05-22 11:22:32 +0300 | [diff] [blame] | 6896 | /* |
| 6897 | * 852GM/852GMV only supports 133 MHz and the HPLLCC |
| 6898 | * encoding is different :( |
| 6899 | * FIXME is this the right way to detect 852GM/852GMV? |
| 6900 | */ |
| 6901 | if (dev->pdev->revision == 0x1) |
| 6902 | return 133333; |
| 6903 | |
Ville Syrjälä | 1b1d271 | 2015-05-22 11:22:31 +0300 | [diff] [blame] | 6904 | pci_bus_read_config_word(dev->pdev->bus, |
| 6905 | PCI_DEVFN(0, 3), HPLLCC, &hpllcc); |
| 6906 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6907 | /* Assume that the hardware is in the high speed state. This |
| 6908 | * should be the default. |
| 6909 | */ |
| 6910 | switch (hpllcc & GC_CLOCK_CONTROL_MASK) { |
| 6911 | case GC_CLOCK_133_200: |
Ville Syrjälä | 1b1d271 | 2015-05-22 11:22:31 +0300 | [diff] [blame] | 6912 | case GC_CLOCK_133_200_2: |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6913 | case GC_CLOCK_100_200: |
| 6914 | return 200000; |
| 6915 | case GC_CLOCK_166_250: |
| 6916 | return 250000; |
| 6917 | case GC_CLOCK_100_133: |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6918 | return 133333; |
Ville Syrjälä | 1b1d271 | 2015-05-22 11:22:31 +0300 | [diff] [blame] | 6919 | case GC_CLOCK_133_266: |
| 6920 | case GC_CLOCK_133_266_2: |
| 6921 | case GC_CLOCK_166_266: |
| 6922 | return 266667; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 6923 | } |
| 6924 | |
| 6925 | /* Shouldn't happen */ |
| 6926 | return 0; |
| 6927 | } |
| 6928 | |
| 6929 | static int i830_get_display_clock_speed(struct drm_device *dev) |
| 6930 | { |
Ville Syrjälä | e907f17 | 2015-03-31 14:09:47 +0300 | [diff] [blame] | 6931 | return 133333; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 6932 | } |
| 6933 | |
Ville Syrjälä | 34edce2 | 2015-05-22 11:22:33 +0300 | [diff] [blame] | 6934 | static unsigned int intel_hpll_vco(struct drm_device *dev) |
| 6935 | { |
| 6936 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6937 | static const unsigned int blb_vco[8] = { |
| 6938 | [0] = 3200000, |
| 6939 | [1] = 4000000, |
| 6940 | [2] = 5333333, |
| 6941 | [3] = 4800000, |
| 6942 | [4] = 6400000, |
| 6943 | }; |
| 6944 | static const unsigned int pnv_vco[8] = { |
| 6945 | [0] = 3200000, |
| 6946 | [1] = 4000000, |
| 6947 | [2] = 5333333, |
| 6948 | [3] = 4800000, |
| 6949 | [4] = 2666667, |
| 6950 | }; |
| 6951 | static const unsigned int cl_vco[8] = { |
| 6952 | [0] = 3200000, |
| 6953 | [1] = 4000000, |
| 6954 | [2] = 5333333, |
| 6955 | [3] = 6400000, |
| 6956 | [4] = 3333333, |
| 6957 | [5] = 3566667, |
| 6958 | [6] = 4266667, |
| 6959 | }; |
| 6960 | static const unsigned int elk_vco[8] = { |
| 6961 | [0] = 3200000, |
| 6962 | [1] = 4000000, |
| 6963 | [2] = 5333333, |
| 6964 | [3] = 4800000, |
| 6965 | }; |
| 6966 | static const unsigned int ctg_vco[8] = { |
| 6967 | [0] = 3200000, |
| 6968 | [1] = 4000000, |
| 6969 | [2] = 5333333, |
| 6970 | [3] = 6400000, |
| 6971 | [4] = 2666667, |
| 6972 | [5] = 4266667, |
| 6973 | }; |
| 6974 | const unsigned int *vco_table; |
| 6975 | unsigned int vco; |
| 6976 | uint8_t tmp = 0; |
| 6977 | |
| 6978 | /* FIXME other chipsets? */ |
| 6979 | if (IS_GM45(dev)) |
| 6980 | vco_table = ctg_vco; |
| 6981 | else if (IS_G4X(dev)) |
| 6982 | vco_table = elk_vco; |
| 6983 | else if (IS_CRESTLINE(dev)) |
| 6984 | vco_table = cl_vco; |
| 6985 | else if (IS_PINEVIEW(dev)) |
| 6986 | vco_table = pnv_vco; |
| 6987 | else if (IS_G33(dev)) |
| 6988 | vco_table = blb_vco; |
| 6989 | else |
| 6990 | return 0; |
| 6991 | |
| 6992 | tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO); |
| 6993 | |
| 6994 | vco = vco_table[tmp & 0x7]; |
| 6995 | if (vco == 0) |
| 6996 | DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp); |
| 6997 | else |
| 6998 | DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco); |
| 6999 | |
| 7000 | return vco; |
| 7001 | } |
| 7002 | |
| 7003 | static int gm45_get_display_clock_speed(struct drm_device *dev) |
| 7004 | { |
| 7005 | unsigned int cdclk_sel, vco = intel_hpll_vco(dev); |
| 7006 | uint16_t tmp = 0; |
| 7007 | |
| 7008 | pci_read_config_word(dev->pdev, GCFGC, &tmp); |
| 7009 | |
| 7010 | cdclk_sel = (tmp >> 12) & 0x1; |
| 7011 | |
| 7012 | switch (vco) { |
| 7013 | case 2666667: |
| 7014 | case 4000000: |
| 7015 | case 5333333: |
| 7016 | return cdclk_sel ? 333333 : 222222; |
| 7017 | case 3200000: |
| 7018 | return cdclk_sel ? 320000 : 228571; |
| 7019 | default: |
| 7020 | DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp); |
| 7021 | return 222222; |
| 7022 | } |
| 7023 | } |
| 7024 | |
| 7025 | static int i965gm_get_display_clock_speed(struct drm_device *dev) |
| 7026 | { |
| 7027 | static const uint8_t div_3200[] = { 16, 10, 8 }; |
| 7028 | static const uint8_t div_4000[] = { 20, 12, 10 }; |
| 7029 | static const uint8_t div_5333[] = { 24, 16, 14 }; |
| 7030 | const uint8_t *div_table; |
| 7031 | unsigned int cdclk_sel, vco = intel_hpll_vco(dev); |
| 7032 | uint16_t tmp = 0; |
| 7033 | |
| 7034 | pci_read_config_word(dev->pdev, GCFGC, &tmp); |
| 7035 | |
| 7036 | cdclk_sel = ((tmp >> 8) & 0x1f) - 1; |
| 7037 | |
| 7038 | if (cdclk_sel >= ARRAY_SIZE(div_3200)) |
| 7039 | goto fail; |
| 7040 | |
| 7041 | switch (vco) { |
| 7042 | case 3200000: |
| 7043 | div_table = div_3200; |
| 7044 | break; |
| 7045 | case 4000000: |
| 7046 | div_table = div_4000; |
| 7047 | break; |
| 7048 | case 5333333: |
| 7049 | div_table = div_5333; |
| 7050 | break; |
| 7051 | default: |
| 7052 | goto fail; |
| 7053 | } |
| 7054 | |
| 7055 | return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]); |
| 7056 | |
Damien Lespiau | caf4e25 | 2015-06-04 16:56:18 +0100 | [diff] [blame] | 7057 | fail: |
Ville Syrjälä | 34edce2 | 2015-05-22 11:22:33 +0300 | [diff] [blame] | 7058 | DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp); |
| 7059 | return 200000; |
| 7060 | } |
| 7061 | |
| 7062 | static int g33_get_display_clock_speed(struct drm_device *dev) |
| 7063 | { |
| 7064 | static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 }; |
| 7065 | static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 }; |
| 7066 | static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 }; |
| 7067 | static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 }; |
| 7068 | const uint8_t *div_table; |
| 7069 | unsigned int cdclk_sel, vco = intel_hpll_vco(dev); |
| 7070 | uint16_t tmp = 0; |
| 7071 | |
| 7072 | pci_read_config_word(dev->pdev, GCFGC, &tmp); |
| 7073 | |
| 7074 | cdclk_sel = (tmp >> 4) & 0x7; |
| 7075 | |
| 7076 | if (cdclk_sel >= ARRAY_SIZE(div_3200)) |
| 7077 | goto fail; |
| 7078 | |
| 7079 | switch (vco) { |
| 7080 | case 3200000: |
| 7081 | div_table = div_3200; |
| 7082 | break; |
| 7083 | case 4000000: |
| 7084 | div_table = div_4000; |
| 7085 | break; |
| 7086 | case 4800000: |
| 7087 | div_table = div_4800; |
| 7088 | break; |
| 7089 | case 5333333: |
| 7090 | div_table = div_5333; |
| 7091 | break; |
| 7092 | default: |
| 7093 | goto fail; |
| 7094 | } |
| 7095 | |
| 7096 | return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]); |
| 7097 | |
Damien Lespiau | caf4e25 | 2015-06-04 16:56:18 +0100 | [diff] [blame] | 7098 | fail: |
Ville Syrjälä | 34edce2 | 2015-05-22 11:22:33 +0300 | [diff] [blame] | 7099 | DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp); |
| 7100 | return 190476; |
| 7101 | } |
| 7102 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 7103 | static void |
Ville Syrjälä | a65851a | 2013-04-23 15:03:34 +0300 | [diff] [blame] | 7104 | intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 7105 | { |
Ville Syrjälä | a65851a | 2013-04-23 15:03:34 +0300 | [diff] [blame] | 7106 | while (*num > DATA_LINK_M_N_MASK || |
| 7107 | *den > DATA_LINK_M_N_MASK) { |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 7108 | *num >>= 1; |
| 7109 | *den >>= 1; |
| 7110 | } |
| 7111 | } |
| 7112 | |
Ville Syrjälä | a65851a | 2013-04-23 15:03:34 +0300 | [diff] [blame] | 7113 | static void compute_m_n(unsigned int m, unsigned int n, |
| 7114 | uint32_t *ret_m, uint32_t *ret_n) |
| 7115 | { |
| 7116 | *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX); |
| 7117 | *ret_m = div_u64((uint64_t) m * *ret_n, n); |
| 7118 | intel_reduce_m_n_ratio(ret_m, ret_n); |
| 7119 | } |
| 7120 | |
Daniel Vetter | e69d0bc | 2012-11-29 15:59:36 +0100 | [diff] [blame] | 7121 | void |
| 7122 | intel_link_compute_m_n(int bits_per_pixel, int nlanes, |
| 7123 | int pixel_clock, int link_clock, |
| 7124 | struct intel_link_m_n *m_n) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 7125 | { |
Daniel Vetter | e69d0bc | 2012-11-29 15:59:36 +0100 | [diff] [blame] | 7126 | m_n->tu = 64; |
Ville Syrjälä | a65851a | 2013-04-23 15:03:34 +0300 | [diff] [blame] | 7127 | |
| 7128 | compute_m_n(bits_per_pixel * pixel_clock, |
| 7129 | link_clock * nlanes * 8, |
| 7130 | &m_n->gmch_m, &m_n->gmch_n); |
| 7131 | |
| 7132 | compute_m_n(pixel_clock, link_clock, |
| 7133 | &m_n->link_m, &m_n->link_n); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 7134 | } |
| 7135 | |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 7136 | static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv) |
| 7137 | { |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 7138 | if (i915.panel_use_ssc >= 0) |
| 7139 | return i915.panel_use_ssc != 0; |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 7140 | return dev_priv->vbt.lvds_use_ssc |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 7141 | && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE); |
Chris Wilson | a761503 | 2011-01-12 17:04:08 +0000 | [diff] [blame] | 7142 | } |
| 7143 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 7144 | static uint32_t pnv_dpll_compute_fp(struct dpll *dpll) |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 7145 | { |
Daniel Vetter | 7df00d7 | 2013-05-21 21:54:55 +0200 | [diff] [blame] | 7146 | return (1 << dpll->n) << 16 | dpll->m2; |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 7147 | } |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 7148 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 7149 | static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll) |
| 7150 | { |
| 7151 | return dpll->n << 16 | dpll->m1 << 8 | dpll->m2; |
Jesse Barnes | c65d77d | 2011-12-15 12:30:36 -0800 | [diff] [blame] | 7152 | } |
| 7153 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 7154 | static void i9xx_update_pll_dividers(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7155 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 7156 | struct dpll *reduced_clock) |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7157 | { |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 7158 | struct drm_device *dev = crtc->base.dev; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7159 | u32 fp, fp2 = 0; |
| 7160 | |
| 7161 | if (IS_PINEVIEW(dev)) { |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7162 | fp = pnv_dpll_compute_fp(&crtc_state->dpll); |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7163 | if (reduced_clock) |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 7164 | fp2 = pnv_dpll_compute_fp(reduced_clock); |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7165 | } else { |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7166 | fp = i9xx_dpll_compute_fp(&crtc_state->dpll); |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7167 | if (reduced_clock) |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 7168 | fp2 = i9xx_dpll_compute_fp(reduced_clock); |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7169 | } |
| 7170 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7171 | crtc_state->dpll_hw_state.fp0 = fp; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7172 | |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 7173 | crtc->lowfreq_avail = false; |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 7174 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) && |
Rodrigo Vivi | ab585de | 2015-03-24 12:40:09 -0700 | [diff] [blame] | 7175 | reduced_clock) { |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7176 | crtc_state->dpll_hw_state.fp1 = fp2; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 7177 | crtc->lowfreq_avail = true; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7178 | } else { |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7179 | crtc_state->dpll_hw_state.fp1 = fp; |
Jesse Barnes | a7516a0 | 2011-12-15 12:30:37 -0800 | [diff] [blame] | 7180 | } |
| 7181 | } |
| 7182 | |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 7183 | static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe |
| 7184 | pipe) |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7185 | { |
| 7186 | u32 reg_val; |
| 7187 | |
| 7188 | /* |
| 7189 | * PLLB opamp always calibrates to max value of 0x3f, force enable it |
| 7190 | * and set it to a reasonable value instead. |
| 7191 | */ |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7192 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7193 | reg_val &= 0xffffff00; |
| 7194 | reg_val |= 0x00000030; |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7195 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7196 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7197 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7198 | reg_val &= 0x8cffffff; |
| 7199 | reg_val = 0x8c000000; |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7200 | vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7201 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7202 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7203 | reg_val &= 0xffffff00; |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7204 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7205 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7206 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7207 | reg_val &= 0x00ffffff; |
| 7208 | reg_val |= 0xb0000000; |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7209 | vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7210 | } |
| 7211 | |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 7212 | static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc, |
| 7213 | struct intel_link_m_n *m_n) |
| 7214 | { |
| 7215 | struct drm_device *dev = crtc->base.dev; |
| 7216 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7217 | int pipe = crtc->pipe; |
| 7218 | |
Daniel Vetter | e3b95f1 | 2013-05-03 11:49:49 +0200 | [diff] [blame] | 7219 | I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m); |
| 7220 | I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n); |
| 7221 | I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m); |
| 7222 | I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n); |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 7223 | } |
| 7224 | |
| 7225 | static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc, |
Vandana Kannan | f769cd2 | 2014-08-05 07:51:22 -0700 | [diff] [blame] | 7226 | struct intel_link_m_n *m_n, |
| 7227 | struct intel_link_m_n *m2_n2) |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 7228 | { |
| 7229 | struct drm_device *dev = crtc->base.dev; |
| 7230 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7231 | int pipe = crtc->pipe; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7232 | enum transcoder transcoder = crtc->config->cpu_transcoder; |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 7233 | |
| 7234 | if (INTEL_INFO(dev)->gen >= 5) { |
| 7235 | I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m); |
| 7236 | I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n); |
| 7237 | I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m); |
| 7238 | I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n); |
Vandana Kannan | f769cd2 | 2014-08-05 07:51:22 -0700 | [diff] [blame] | 7239 | /* M2_N2 registers to be set only for gen < 8 (M2_N2 available |
| 7240 | * for gen < 8) and if DRRS is supported (to make sure the |
| 7241 | * registers are not unnecessarily accessed). |
| 7242 | */ |
Durgadoss R | 44395bf | 2015-02-13 15:33:02 +0530 | [diff] [blame] | 7243 | if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) && |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7244 | crtc->config->has_drrs) { |
Vandana Kannan | f769cd2 | 2014-08-05 07:51:22 -0700 | [diff] [blame] | 7245 | I915_WRITE(PIPE_DATA_M2(transcoder), |
| 7246 | TU_SIZE(m2_n2->tu) | m2_n2->gmch_m); |
| 7247 | I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n); |
| 7248 | I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m); |
| 7249 | I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n); |
| 7250 | } |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 7251 | } else { |
Daniel Vetter | e3b95f1 | 2013-05-03 11:49:49 +0200 | [diff] [blame] | 7252 | I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m); |
| 7253 | I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n); |
| 7254 | I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m); |
| 7255 | I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n); |
Daniel Vetter | b551842 | 2013-05-03 11:49:48 +0200 | [diff] [blame] | 7256 | } |
| 7257 | } |
| 7258 | |
Ramalingam C | fe3cd48 | 2015-02-13 15:32:59 +0530 | [diff] [blame] | 7259 | void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n) |
Daniel Vetter | 03afc4a | 2013-04-02 23:42:31 +0200 | [diff] [blame] | 7260 | { |
Ramalingam C | fe3cd48 | 2015-02-13 15:32:59 +0530 | [diff] [blame] | 7261 | struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL; |
| 7262 | |
| 7263 | if (m_n == M1_N1) { |
| 7264 | dp_m_n = &crtc->config->dp_m_n; |
| 7265 | dp_m2_n2 = &crtc->config->dp_m2_n2; |
| 7266 | } else if (m_n == M2_N2) { |
| 7267 | |
| 7268 | /* |
| 7269 | * M2_N2 registers are not supported. Hence m2_n2 divider value |
| 7270 | * needs to be programmed into M1_N1. |
| 7271 | */ |
| 7272 | dp_m_n = &crtc->config->dp_m2_n2; |
| 7273 | } else { |
| 7274 | DRM_ERROR("Unsupported divider value\n"); |
| 7275 | return; |
| 7276 | } |
| 7277 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7278 | if (crtc->config->has_pch_encoder) |
| 7279 | intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n); |
Daniel Vetter | 03afc4a | 2013-04-02 23:42:31 +0200 | [diff] [blame] | 7280 | else |
Ramalingam C | fe3cd48 | 2015-02-13 15:32:59 +0530 | [diff] [blame] | 7281 | intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2); |
Daniel Vetter | 03afc4a | 2013-04-02 23:42:31 +0200 | [diff] [blame] | 7282 | } |
| 7283 | |
Daniel Vetter | 251ac86 | 2015-06-18 10:30:24 +0200 | [diff] [blame] | 7284 | static void vlv_compute_dpll(struct intel_crtc *crtc, |
| 7285 | struct intel_crtc_state *pipe_config) |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7286 | { |
Ville Syrjälä | 03ed5cbf | 2016-03-15 16:39:55 +0200 | [diff] [blame] | 7287 | pipe_config->dpll_hw_state.dpll = DPLL_INTEGRATED_REF_CLK_VLV | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7288 | DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS; |
Ville Syrjälä | 03ed5cbf | 2016-03-15 16:39:55 +0200 | [diff] [blame] | 7289 | if (crtc->pipe != PIPE_A) |
| 7290 | pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV; |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7291 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7292 | /* DPLL not used with DSI, but still need the rest set up */ |
Ville Syrjälä | 187a1c0 | 2016-04-18 20:34:04 +0300 | [diff] [blame] | 7293 | if (!pipe_config->has_dsi_encoder) |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7294 | pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE | |
| 7295 | DPLL_EXT_BUFFER_ENABLE_VLV; |
| 7296 | |
Ville Syrjälä | 03ed5cbf | 2016-03-15 16:39:55 +0200 | [diff] [blame] | 7297 | pipe_config->dpll_hw_state.dpll_md = |
| 7298 | (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT; |
| 7299 | } |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7300 | |
Ville Syrjälä | 03ed5cbf | 2016-03-15 16:39:55 +0200 | [diff] [blame] | 7301 | static void chv_compute_dpll(struct intel_crtc *crtc, |
| 7302 | struct intel_crtc_state *pipe_config) |
| 7303 | { |
| 7304 | pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7305 | DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS; |
Ville Syrjälä | 03ed5cbf | 2016-03-15 16:39:55 +0200 | [diff] [blame] | 7306 | if (crtc->pipe != PIPE_A) |
| 7307 | pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV; |
| 7308 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7309 | /* DPLL not used with DSI, but still need the rest set up */ |
Ville Syrjälä | 187a1c0 | 2016-04-18 20:34:04 +0300 | [diff] [blame] | 7310 | if (!pipe_config->has_dsi_encoder) |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7311 | pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE; |
| 7312 | |
Ville Syrjälä | 03ed5cbf | 2016-03-15 16:39:55 +0200 | [diff] [blame] | 7313 | pipe_config->dpll_hw_state.dpll_md = |
| 7314 | (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT; |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7315 | } |
| 7316 | |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7317 | static void vlv_prepare_pll(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 7318 | const struct intel_crtc_state *pipe_config) |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7319 | { |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 7320 | struct drm_device *dev = crtc->base.dev; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7321 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7322 | enum pipe pipe = crtc->pipe; |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7323 | u32 mdiv; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7324 | u32 bestn, bestm1, bestm2, bestp1, bestp2; |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7325 | u32 coreclk, reg_val; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7326 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7327 | /* Enable Refclk */ |
| 7328 | I915_WRITE(DPLL(pipe), |
| 7329 | pipe_config->dpll_hw_state.dpll & |
| 7330 | ~(DPLL_VCO_ENABLE | DPLL_EXT_BUFFER_ENABLE_VLV)); |
| 7331 | |
| 7332 | /* No need to actually set up the DPLL with DSI */ |
| 7333 | if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0) |
| 7334 | return; |
| 7335 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 7336 | mutex_lock(&dev_priv->sb_lock); |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 7337 | |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7338 | bestn = pipe_config->dpll.n; |
| 7339 | bestm1 = pipe_config->dpll.m1; |
| 7340 | bestm2 = pipe_config->dpll.m2; |
| 7341 | bestp1 = pipe_config->dpll.p1; |
| 7342 | bestp2 = pipe_config->dpll.p2; |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7343 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7344 | /* See eDP HDMI DPIO driver vbios notes doc */ |
| 7345 | |
| 7346 | /* PLL B needs special handling */ |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7347 | if (pipe == PIPE_B) |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 7348 | vlv_pllb_recal_opamp(dev_priv, pipe); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7349 | |
| 7350 | /* Set up Tx target for periodic Rcomp update */ |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7351 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7352 | |
| 7353 | /* Disable target IRef on PLL */ |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7354 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7355 | reg_val &= 0x00ffffff; |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7356 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7357 | |
| 7358 | /* Disable fast lock */ |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7359 | vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7360 | |
| 7361 | /* Set idtafcrecal before PLL is enabled */ |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7362 | mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK)); |
| 7363 | mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT)); |
| 7364 | mdiv |= ((bestn << DPIO_N_SHIFT)); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7365 | mdiv |= (1 << DPIO_K_SHIFT); |
Jesse Barnes | 7df5080 | 2013-05-02 10:48:09 -0700 | [diff] [blame] | 7366 | |
| 7367 | /* |
| 7368 | * Post divider depends on pixel clock rate, DAC vs digital (and LVDS, |
| 7369 | * but we don't support that). |
| 7370 | * Note: don't use the DAC post divider as it seems unstable. |
| 7371 | */ |
| 7372 | mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT); |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7373 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7374 | |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7375 | mdiv |= DPIO_ENABLE_CALIBRATION; |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7376 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7377 | |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7378 | /* Set HBR and RBR LPF coefficients */ |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7379 | if (pipe_config->port_clock == 162000 || |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 7380 | intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) || |
| 7381 | intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7382 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe), |
Ville Syrjälä | 885b0120 | 2013-07-05 19:21:38 +0300 | [diff] [blame] | 7383 | 0x009f0003); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7384 | else |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7385 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7386 | 0x00d0000f); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7387 | |
Ander Conselvan de Oliveira | 681a850 | 2015-01-15 14:55:24 +0200 | [diff] [blame] | 7388 | if (pipe_config->has_dp_encoder) { |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7389 | /* Use SSC source */ |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7390 | if (pipe == PIPE_A) |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7391 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7392 | 0x0df40000); |
| 7393 | else |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7394 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7395 | 0x0df70000); |
| 7396 | } else { /* HDMI or VGA */ |
| 7397 | /* Use bend source */ |
Daniel Vetter | bdd4b6a | 2014-04-24 23:55:11 +0200 | [diff] [blame] | 7398 | if (pipe == PIPE_A) |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7399 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7400 | 0x0df70000); |
| 7401 | else |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7402 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe), |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7403 | 0x0df40000); |
| 7404 | } |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7405 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7406 | coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe)); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7407 | coreclk = (coreclk & 0x0000ff00) | 0x01c00000; |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 7408 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
| 7409 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7410 | coreclk |= 0x01000000; |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7411 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk); |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 7412 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 7413 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000); |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 7414 | mutex_unlock(&dev_priv->sb_lock); |
Jesse Barnes | a0c4da24 | 2012-06-15 11:55:13 -0700 | [diff] [blame] | 7415 | } |
| 7416 | |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7417 | static void chv_prepare_pll(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 7418 | const struct intel_crtc_state *pipe_config) |
Ville Syrjälä | 1ae0d13 | 2014-06-28 02:04:00 +0300 | [diff] [blame] | 7419 | { |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7420 | struct drm_device *dev = crtc->base.dev; |
| 7421 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7422 | enum pipe pipe = crtc->pipe; |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7423 | enum dpio_channel port = vlv_pipe_to_channel(pipe); |
Vijay Purushothaman | 9cbe40c | 2015-03-05 19:33:08 +0530 | [diff] [blame] | 7424 | u32 loopfilter, tribuf_calcntr; |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7425 | u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac; |
Vijay Purushothaman | a945ce7e | 2015-03-05 19:30:57 +0530 | [diff] [blame] | 7426 | u32 dpio_val; |
Vijay Purushothaman | 9cbe40c | 2015-03-05 19:33:08 +0530 | [diff] [blame] | 7427 | int vco; |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7428 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 7429 | /* Enable Refclk and SSC */ |
| 7430 | I915_WRITE(DPLL(pipe), |
| 7431 | pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE); |
| 7432 | |
| 7433 | /* No need to actually set up the DPLL with DSI */ |
| 7434 | if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0) |
| 7435 | return; |
| 7436 | |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7437 | bestn = pipe_config->dpll.n; |
| 7438 | bestm2_frac = pipe_config->dpll.m2 & 0x3fffff; |
| 7439 | bestm1 = pipe_config->dpll.m1; |
| 7440 | bestm2 = pipe_config->dpll.m2 >> 22; |
| 7441 | bestp1 = pipe_config->dpll.p1; |
| 7442 | bestp2 = pipe_config->dpll.p2; |
Vijay Purushothaman | 9cbe40c | 2015-03-05 19:33:08 +0530 | [diff] [blame] | 7443 | vco = pipe_config->dpll.vco; |
Vijay Purushothaman | a945ce7e | 2015-03-05 19:30:57 +0530 | [diff] [blame] | 7444 | dpio_val = 0; |
Vijay Purushothaman | 9cbe40c | 2015-03-05 19:33:08 +0530 | [diff] [blame] | 7445 | loopfilter = 0; |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7446 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 7447 | mutex_lock(&dev_priv->sb_lock); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7448 | |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7449 | /* p1 and p2 divider */ |
| 7450 | vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port), |
| 7451 | 5 << DPIO_CHV_S1_DIV_SHIFT | |
| 7452 | bestp1 << DPIO_CHV_P1_DIV_SHIFT | |
| 7453 | bestp2 << DPIO_CHV_P2_DIV_SHIFT | |
| 7454 | 1 << DPIO_CHV_K_DIV_SHIFT); |
| 7455 | |
| 7456 | /* Feedback post-divider - m2 */ |
| 7457 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2); |
| 7458 | |
| 7459 | /* Feedback refclk divider - n and m1 */ |
| 7460 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port), |
| 7461 | DPIO_CHV_M1_DIV_BY_2 | |
| 7462 | 1 << DPIO_CHV_N_DIV_SHIFT); |
| 7463 | |
| 7464 | /* M2 fraction division */ |
Ville Syrjälä | 25a25df | 2015-07-08 23:45:47 +0300 | [diff] [blame] | 7465 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7466 | |
| 7467 | /* M2 fraction division enable */ |
Vijay Purushothaman | a945ce7e | 2015-03-05 19:30:57 +0530 | [diff] [blame] | 7468 | dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port)); |
| 7469 | dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN); |
| 7470 | dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT); |
| 7471 | if (bestm2_frac) |
| 7472 | dpio_val |= DPIO_CHV_FRAC_DIV_EN; |
| 7473 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7474 | |
Vijay Purushothaman | de3a0fd | 2015-03-05 19:32:06 +0530 | [diff] [blame] | 7475 | /* Program digital lock detect threshold */ |
| 7476 | dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port)); |
| 7477 | dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK | |
| 7478 | DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE); |
| 7479 | dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT); |
| 7480 | if (!bestm2_frac) |
| 7481 | dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE; |
| 7482 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val); |
| 7483 | |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7484 | /* Loop filter */ |
Vijay Purushothaman | 9cbe40c | 2015-03-05 19:33:08 +0530 | [diff] [blame] | 7485 | if (vco == 5400000) { |
| 7486 | loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT); |
| 7487 | loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT); |
| 7488 | loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT); |
| 7489 | tribuf_calcntr = 0x9; |
| 7490 | } else if (vco <= 6200000) { |
| 7491 | loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT); |
| 7492 | loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT); |
| 7493 | loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT); |
| 7494 | tribuf_calcntr = 0x9; |
| 7495 | } else if (vco <= 6480000) { |
| 7496 | loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT); |
| 7497 | loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT); |
| 7498 | loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT); |
| 7499 | tribuf_calcntr = 0x8; |
| 7500 | } else { |
| 7501 | /* Not supported. Apply the same limits as in the max case */ |
| 7502 | loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT); |
| 7503 | loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT); |
| 7504 | loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT); |
| 7505 | tribuf_calcntr = 0; |
| 7506 | } |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7507 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter); |
| 7508 | |
Ville Syrjälä | 968040b | 2015-03-11 22:52:08 +0200 | [diff] [blame] | 7509 | dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port)); |
Vijay Purushothaman | 9cbe40c | 2015-03-05 19:33:08 +0530 | [diff] [blame] | 7510 | dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK; |
| 7511 | dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT); |
| 7512 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val); |
| 7513 | |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7514 | /* AFC Recal */ |
| 7515 | vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), |
| 7516 | vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) | |
| 7517 | DPIO_AFC_RECAL); |
| 7518 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 7519 | mutex_unlock(&dev_priv->sb_lock); |
Chon Ming Lee | 9d556c9 | 2014-05-02 14:27:47 +0300 | [diff] [blame] | 7520 | } |
| 7521 | |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7522 | /** |
| 7523 | * vlv_force_pll_on - forcibly enable just the PLL |
| 7524 | * @dev_priv: i915 private structure |
| 7525 | * @pipe: pipe PLL to enable |
| 7526 | * @dpll: PLL configuration |
| 7527 | * |
| 7528 | * Enable the PLL for @pipe using the supplied @dpll config. To be used |
| 7529 | * in cases where we need the PLL enabled even when @pipe is not going to |
| 7530 | * be enabled. |
| 7531 | */ |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 7532 | int vlv_force_pll_on(struct drm_device *dev, enum pipe pipe, |
| 7533 | const struct dpll *dpll) |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7534 | { |
| 7535 | struct intel_crtc *crtc = |
| 7536 | to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe)); |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 7537 | struct intel_crtc_state *pipe_config; |
| 7538 | |
| 7539 | pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL); |
| 7540 | if (!pipe_config) |
| 7541 | return -ENOMEM; |
| 7542 | |
| 7543 | pipe_config->base.crtc = &crtc->base; |
| 7544 | pipe_config->pixel_multiplier = 1; |
| 7545 | pipe_config->dpll = *dpll; |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7546 | |
| 7547 | if (IS_CHERRYVIEW(dev)) { |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 7548 | chv_compute_dpll(crtc, pipe_config); |
| 7549 | chv_prepare_pll(crtc, pipe_config); |
| 7550 | chv_enable_pll(crtc, pipe_config); |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7551 | } else { |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 7552 | vlv_compute_dpll(crtc, pipe_config); |
| 7553 | vlv_prepare_pll(crtc, pipe_config); |
| 7554 | vlv_enable_pll(crtc, pipe_config); |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7555 | } |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 7556 | |
| 7557 | kfree(pipe_config); |
| 7558 | |
| 7559 | return 0; |
Ville Syrjälä | d288f65 | 2014-10-28 13:20:22 +0200 | [diff] [blame] | 7560 | } |
| 7561 | |
| 7562 | /** |
| 7563 | * vlv_force_pll_off - forcibly disable just the PLL |
| 7564 | * @dev_priv: i915 private structure |
| 7565 | * @pipe: pipe PLL to disable |
| 7566 | * |
| 7567 | * Disable the PLL for @pipe. To be used in cases where we need |
| 7568 | * the PLL enabled even when @pipe is not going to be enabled. |
| 7569 | */ |
| 7570 | void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe) |
| 7571 | { |
| 7572 | if (IS_CHERRYVIEW(dev)) |
| 7573 | chv_disable_pll(to_i915(dev), pipe); |
| 7574 | else |
| 7575 | vlv_disable_pll(to_i915(dev), pipe); |
| 7576 | } |
| 7577 | |
Daniel Vetter | 251ac86 | 2015-06-18 10:30:24 +0200 | [diff] [blame] | 7578 | static void i9xx_compute_dpll(struct intel_crtc *crtc, |
| 7579 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 7580 | struct dpll *reduced_clock) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7581 | { |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 7582 | struct drm_device *dev = crtc->base.dev; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7583 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7584 | u32 dpll; |
| 7585 | bool is_sdvo; |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7586 | struct dpll *clock = &crtc_state->dpll; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7587 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7588 | i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock); |
Vijay Purushothaman | 2a8f64c | 2012-09-27 19:13:06 +0530 | [diff] [blame] | 7589 | |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 7590 | is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) || |
| 7591 | intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI); |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7592 | |
| 7593 | dpll = DPLL_VGA_MODE_DIS; |
| 7594 | |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 7595 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7596 | dpll |= DPLLB_MODE_LVDS; |
| 7597 | else |
| 7598 | dpll |= DPLLB_MODE_DAC_SERIAL; |
Daniel Vetter | 6cc5f34 | 2013-03-27 00:44:53 +0100 | [diff] [blame] | 7599 | |
Daniel Vetter | ef1b460 | 2013-06-01 17:17:04 +0200 | [diff] [blame] | 7600 | if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) { |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7601 | dpll |= (crtc_state->pixel_multiplier - 1) |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 7602 | << SDVO_MULTIPLIER_SHIFT_HIRES; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7603 | } |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 7604 | |
| 7605 | if (is_sdvo) |
Daniel Vetter | 4a33e48 | 2013-07-06 12:52:05 +0200 | [diff] [blame] | 7606 | dpll |= DPLL_SDVO_HIGH_SPEED; |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 7607 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7608 | if (crtc_state->has_dp_encoder) |
Daniel Vetter | 4a33e48 | 2013-07-06 12:52:05 +0200 | [diff] [blame] | 7609 | dpll |= DPLL_SDVO_HIGH_SPEED; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7610 | |
| 7611 | /* compute bitmask from p1 value */ |
| 7612 | if (IS_PINEVIEW(dev)) |
| 7613 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW; |
| 7614 | else { |
| 7615 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 7616 | if (IS_G4X(dev) && reduced_clock) |
| 7617 | dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
| 7618 | } |
| 7619 | switch (clock->p2) { |
| 7620 | case 5: |
| 7621 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 7622 | break; |
| 7623 | case 7: |
| 7624 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 7625 | break; |
| 7626 | case 10: |
| 7627 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 7628 | break; |
| 7629 | case 14: |
| 7630 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 7631 | break; |
| 7632 | } |
| 7633 | if (INTEL_INFO(dev)->gen >= 4) |
| 7634 | dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT); |
| 7635 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7636 | if (crtc_state->sdvo_tv_clock) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7637 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 7638 | else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) && |
Ander Conselvan de Oliveira | ceb4100 | 2016-03-21 18:00:02 +0200 | [diff] [blame] | 7639 | intel_panel_use_ssc(dev_priv)) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7640 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 7641 | else |
| 7642 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 7643 | |
| 7644 | dpll |= DPLL_VCO_ENABLE; |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7645 | crtc_state->dpll_hw_state.dpll = dpll; |
Daniel Vetter | 8bcc279 | 2013-06-05 13:34:28 +0200 | [diff] [blame] | 7646 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7647 | if (INTEL_INFO(dev)->gen >= 4) { |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7648 | u32 dpll_md = (crtc_state->pixel_multiplier - 1) |
Daniel Vetter | ef1b460 | 2013-06-01 17:17:04 +0200 | [diff] [blame] | 7649 | << DPLL_MD_UDI_MULTIPLIER_SHIFT; |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7650 | crtc_state->dpll_hw_state.dpll_md = dpll_md; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7651 | } |
| 7652 | } |
| 7653 | |
Daniel Vetter | 251ac86 | 2015-06-18 10:30:24 +0200 | [diff] [blame] | 7654 | static void i8xx_compute_dpll(struct intel_crtc *crtc, |
| 7655 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 7656 | struct dpll *reduced_clock) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7657 | { |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 7658 | struct drm_device *dev = crtc->base.dev; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7659 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7660 | u32 dpll; |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7661 | struct dpll *clock = &crtc_state->dpll; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7662 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7663 | i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock); |
Vijay Purushothaman | 2a8f64c | 2012-09-27 19:13:06 +0530 | [diff] [blame] | 7664 | |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7665 | dpll = DPLL_VGA_MODE_DIS; |
| 7666 | |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 7667 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7668 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 7669 | } else { |
| 7670 | if (clock->p1 == 2) |
| 7671 | dpll |= PLL_P1_DIVIDE_BY_TWO; |
| 7672 | else |
| 7673 | dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
| 7674 | if (clock->p2 == 4) |
| 7675 | dpll |= PLL_P2_DIVIDE_BY_4; |
| 7676 | } |
| 7677 | |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 7678 | if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO)) |
Daniel Vetter | 4a33e48 | 2013-07-06 12:52:05 +0200 | [diff] [blame] | 7679 | dpll |= DPLL_DVO_2X_MODE; |
| 7680 | |
Ander Conselvan de Oliveira | a93e255 | 2015-03-20 16:18:17 +0200 | [diff] [blame] | 7681 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) && |
Ander Conselvan de Oliveira | ceb4100 | 2016-03-21 18:00:02 +0200 | [diff] [blame] | 7682 | intel_panel_use_ssc(dev_priv)) |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7683 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
| 7684 | else |
| 7685 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 7686 | |
| 7687 | dpll |= DPLL_VCO_ENABLE; |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 7688 | crtc_state->dpll_hw_state.dpll = dpll; |
Daniel Vetter | eb1cbe4 | 2012-03-28 23:12:16 +0200 | [diff] [blame] | 7689 | } |
| 7690 | |
Daniel Vetter | 8a654f3 | 2013-06-01 17:16:22 +0200 | [diff] [blame] | 7691 | static void intel_set_pipe_timings(struct intel_crtc *intel_crtc) |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7692 | { |
| 7693 | struct drm_device *dev = intel_crtc->base.dev; |
| 7694 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7695 | enum pipe pipe = intel_crtc->pipe; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7696 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
Ville Syrjälä | 7c5f93b | 2015-09-08 13:40:49 +0300 | [diff] [blame] | 7697 | const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode; |
Ville Syrjälä | 1caea6e | 2014-03-28 23:29:32 +0200 | [diff] [blame] | 7698 | uint32_t crtc_vtotal, crtc_vblank_end; |
| 7699 | int vsyncshift = 0; |
Daniel Vetter | 4d8a62e | 2013-05-03 11:49:51 +0200 | [diff] [blame] | 7700 | |
| 7701 | /* We need to be careful not to changed the adjusted mode, for otherwise |
| 7702 | * the hw state checker will get angry at the mismatch. */ |
| 7703 | crtc_vtotal = adjusted_mode->crtc_vtotal; |
| 7704 | crtc_vblank_end = adjusted_mode->crtc_vblank_end; |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7705 | |
Ville Syrjälä | 609aeac | 2014-03-28 23:29:30 +0200 | [diff] [blame] | 7706 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7707 | /* the chip adds 2 halflines automatically */ |
Daniel Vetter | 4d8a62e | 2013-05-03 11:49:51 +0200 | [diff] [blame] | 7708 | crtc_vtotal -= 1; |
| 7709 | crtc_vblank_end -= 1; |
Ville Syrjälä | 609aeac | 2014-03-28 23:29:30 +0200 | [diff] [blame] | 7710 | |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 7711 | if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO)) |
Ville Syrjälä | 609aeac | 2014-03-28 23:29:30 +0200 | [diff] [blame] | 7712 | vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2; |
| 7713 | else |
| 7714 | vsyncshift = adjusted_mode->crtc_hsync_start - |
| 7715 | adjusted_mode->crtc_htotal / 2; |
Ville Syrjälä | 1caea6e | 2014-03-28 23:29:32 +0200 | [diff] [blame] | 7716 | if (vsyncshift < 0) |
| 7717 | vsyncshift += adjusted_mode->crtc_htotal; |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7718 | } |
| 7719 | |
| 7720 | if (INTEL_INFO(dev)->gen > 3) |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 7721 | I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift); |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7722 | |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 7723 | I915_WRITE(HTOTAL(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7724 | (adjusted_mode->crtc_hdisplay - 1) | |
| 7725 | ((adjusted_mode->crtc_htotal - 1) << 16)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 7726 | I915_WRITE(HBLANK(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7727 | (adjusted_mode->crtc_hblank_start - 1) | |
| 7728 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 7729 | I915_WRITE(HSYNC(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7730 | (adjusted_mode->crtc_hsync_start - 1) | |
| 7731 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); |
| 7732 | |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 7733 | I915_WRITE(VTOTAL(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7734 | (adjusted_mode->crtc_vdisplay - 1) | |
Daniel Vetter | 4d8a62e | 2013-05-03 11:49:51 +0200 | [diff] [blame] | 7735 | ((crtc_vtotal - 1) << 16)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 7736 | I915_WRITE(VBLANK(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7737 | (adjusted_mode->crtc_vblank_start - 1) | |
Daniel Vetter | 4d8a62e | 2013-05-03 11:49:51 +0200 | [diff] [blame] | 7738 | ((crtc_vblank_end - 1) << 16)); |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 7739 | I915_WRITE(VSYNC(cpu_transcoder), |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7740 | (adjusted_mode->crtc_vsync_start - 1) | |
| 7741 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); |
| 7742 | |
Paulo Zanoni | b5e508d | 2012-10-24 11:34:43 -0200 | [diff] [blame] | 7743 | /* Workaround: when the EDP input selection is B, the VTOTAL_B must be |
| 7744 | * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is |
| 7745 | * documented on the DDI_FUNC_CTL register description, EDP Input Select |
| 7746 | * bits. */ |
| 7747 | if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP && |
| 7748 | (pipe == PIPE_B || pipe == PIPE_C)) |
| 7749 | I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder))); |
| 7750 | |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 7751 | } |
| 7752 | |
| 7753 | static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc) |
| 7754 | { |
| 7755 | struct drm_device *dev = intel_crtc->base.dev; |
| 7756 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7757 | enum pipe pipe = intel_crtc->pipe; |
| 7758 | |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7759 | /* pipesrc controls the size that is scaled from, which should |
| 7760 | * always be the user's requested size. |
| 7761 | */ |
| 7762 | I915_WRITE(PIPESRC(pipe), |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7763 | ((intel_crtc->config->pipe_src_w - 1) << 16) | |
| 7764 | (intel_crtc->config->pipe_src_h - 1)); |
Paulo Zanoni | b0e77b9 | 2012-10-01 18:10:53 -0300 | [diff] [blame] | 7765 | } |
| 7766 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7767 | static void intel_get_pipe_timings(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 7768 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7769 | { |
| 7770 | struct drm_device *dev = crtc->base.dev; |
| 7771 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7772 | enum transcoder cpu_transcoder = pipe_config->cpu_transcoder; |
| 7773 | uint32_t tmp; |
| 7774 | |
| 7775 | tmp = I915_READ(HTOTAL(cpu_transcoder)); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7776 | pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1; |
| 7777 | pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7778 | tmp = I915_READ(HBLANK(cpu_transcoder)); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7779 | pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1; |
| 7780 | pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7781 | tmp = I915_READ(HSYNC(cpu_transcoder)); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7782 | pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1; |
| 7783 | pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7784 | |
| 7785 | tmp = I915_READ(VTOTAL(cpu_transcoder)); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7786 | pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1; |
| 7787 | pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7788 | tmp = I915_READ(VBLANK(cpu_transcoder)); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7789 | pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1; |
| 7790 | pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7791 | tmp = I915_READ(VSYNC(cpu_transcoder)); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7792 | pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1; |
| 7793 | pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7794 | |
| 7795 | if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) { |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7796 | pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE; |
| 7797 | pipe_config->base.adjusted_mode.crtc_vtotal += 1; |
| 7798 | pipe_config->base.adjusted_mode.crtc_vblank_end += 1; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7799 | } |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 7800 | } |
| 7801 | |
| 7802 | static void intel_get_pipe_src_size(struct intel_crtc *crtc, |
| 7803 | struct intel_crtc_state *pipe_config) |
| 7804 | { |
| 7805 | struct drm_device *dev = crtc->base.dev; |
| 7806 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7807 | u32 tmp; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7808 | |
| 7809 | tmp = I915_READ(PIPESRC(crtc->pipe)); |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 7810 | pipe_config->pipe_src_h = (tmp & 0xffff) + 1; |
| 7811 | pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1; |
| 7812 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7813 | pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h; |
| 7814 | pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w; |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 7815 | } |
| 7816 | |
Daniel Vetter | f6a8328 | 2014-02-11 15:28:57 -0800 | [diff] [blame] | 7817 | void intel_mode_from_pipe_config(struct drm_display_mode *mode, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 7818 | struct intel_crtc_state *pipe_config) |
Jesse Barnes | babea61 | 2013-06-26 18:57:38 +0300 | [diff] [blame] | 7819 | { |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7820 | mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay; |
| 7821 | mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal; |
| 7822 | mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start; |
| 7823 | mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end; |
Jesse Barnes | babea61 | 2013-06-26 18:57:38 +0300 | [diff] [blame] | 7824 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7825 | mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay; |
| 7826 | mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal; |
| 7827 | mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start; |
| 7828 | mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end; |
Jesse Barnes | babea61 | 2013-06-26 18:57:38 +0300 | [diff] [blame] | 7829 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7830 | mode->flags = pipe_config->base.adjusted_mode.flags; |
Maarten Lankhorst | cd13f5a | 2015-07-14 14:12:02 +0200 | [diff] [blame] | 7831 | mode->type = DRM_MODE_TYPE_DRIVER; |
Jesse Barnes | babea61 | 2013-06-26 18:57:38 +0300 | [diff] [blame] | 7832 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 7833 | mode->clock = pipe_config->base.adjusted_mode.crtc_clock; |
| 7834 | mode->flags |= pipe_config->base.adjusted_mode.flags; |
Maarten Lankhorst | cd13f5a | 2015-07-14 14:12:02 +0200 | [diff] [blame] | 7835 | |
| 7836 | mode->hsync = drm_mode_hsync(mode); |
| 7837 | mode->vrefresh = drm_mode_vrefresh(mode); |
| 7838 | drm_mode_set_name(mode); |
Jesse Barnes | babea61 | 2013-06-26 18:57:38 +0300 | [diff] [blame] | 7839 | } |
| 7840 | |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 7841 | static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc) |
| 7842 | { |
| 7843 | struct drm_device *dev = intel_crtc->base.dev; |
| 7844 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7845 | uint32_t pipeconf; |
| 7846 | |
Daniel Vetter | 9f11a9e | 2013-06-13 00:54:58 +0200 | [diff] [blame] | 7847 | pipeconf = 0; |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 7848 | |
Ville Syrjälä | b6b5d04 | 2014-08-15 01:22:07 +0300 | [diff] [blame] | 7849 | if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || |
| 7850 | (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) |
| 7851 | pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE; |
Daniel Vetter | 67c72a1 | 2013-09-24 11:46:14 +0200 | [diff] [blame] | 7852 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7853 | if (intel_crtc->config->double_wide) |
Ville Syrjälä | cf532bb | 2013-09-04 18:30:02 +0300 | [diff] [blame] | 7854 | pipeconf |= PIPECONF_DOUBLE_WIDE; |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 7855 | |
Daniel Vetter | ff9ce46 | 2013-04-24 14:57:17 +0200 | [diff] [blame] | 7856 | /* only g4x and later have fancy bpc/dither controls */ |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 7857 | if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Daniel Vetter | ff9ce46 | 2013-04-24 14:57:17 +0200 | [diff] [blame] | 7858 | /* Bspec claims that we can't use dithering for 30bpp pipes. */ |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7859 | if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30) |
Daniel Vetter | ff9ce46 | 2013-04-24 14:57:17 +0200 | [diff] [blame] | 7860 | pipeconf |= PIPECONF_DITHER_EN | |
| 7861 | PIPECONF_DITHER_TYPE_SP; |
| 7862 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7863 | switch (intel_crtc->config->pipe_bpp) { |
Daniel Vetter | ff9ce46 | 2013-04-24 14:57:17 +0200 | [diff] [blame] | 7864 | case 18: |
| 7865 | pipeconf |= PIPECONF_6BPC; |
| 7866 | break; |
| 7867 | case 24: |
| 7868 | pipeconf |= PIPECONF_8BPC; |
| 7869 | break; |
| 7870 | case 30: |
| 7871 | pipeconf |= PIPECONF_10BPC; |
| 7872 | break; |
| 7873 | default: |
| 7874 | /* Case prevented by intel_choose_pipe_bpp_dither. */ |
| 7875 | BUG(); |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 7876 | } |
| 7877 | } |
| 7878 | |
| 7879 | if (HAS_PIPE_CXSR(dev)) { |
| 7880 | if (intel_crtc->lowfreq_avail) { |
| 7881 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); |
| 7882 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; |
| 7883 | } else { |
| 7884 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 7885 | } |
| 7886 | } |
| 7887 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 7888 | if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) { |
Ville Syrjälä | efc2cff | 2014-03-28 23:29:31 +0200 | [diff] [blame] | 7889 | if (INTEL_INFO(dev)->gen < 4 || |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 7890 | intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO)) |
Ville Syrjälä | efc2cff | 2014-03-28 23:29:31 +0200 | [diff] [blame] | 7891 | pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION; |
| 7892 | else |
| 7893 | pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT; |
| 7894 | } else |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 7895 | pipeconf |= PIPECONF_PROGRESSIVE; |
| 7896 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 7897 | if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && |
| 7898 | intel_crtc->config->limited_color_range) |
Daniel Vetter | 9f11a9e | 2013-06-13 00:54:58 +0200 | [diff] [blame] | 7899 | pipeconf |= PIPECONF_COLOR_RANGE_SELECT; |
Ville Syrjälä | 9c8e09b | 2013-04-02 16:10:09 +0300 | [diff] [blame] | 7900 | |
Daniel Vetter | 84b046f | 2013-02-19 18:48:54 +0100 | [diff] [blame] | 7901 | I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf); |
| 7902 | POSTING_READ(PIPECONF(intel_crtc->pipe)); |
| 7903 | } |
| 7904 | |
Ander Conselvan de Oliveira | 81c97f5 | 2016-03-22 15:35:23 +0200 | [diff] [blame] | 7905 | static int i8xx_crtc_compute_clock(struct intel_crtc *crtc, |
| 7906 | struct intel_crtc_state *crtc_state) |
| 7907 | { |
| 7908 | struct drm_device *dev = crtc->base.dev; |
| 7909 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 7910 | const struct intel_limit *limit; |
Ander Conselvan de Oliveira | 81c97f5 | 2016-03-22 15:35:23 +0200 | [diff] [blame] | 7911 | int refclk = 48000; |
| 7912 | |
| 7913 | memset(&crtc_state->dpll_hw_state, 0, |
| 7914 | sizeof(crtc_state->dpll_hw_state)); |
| 7915 | |
| 7916 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
| 7917 | if (intel_panel_use_ssc(dev_priv)) { |
| 7918 | refclk = dev_priv->vbt.lvds_ssc_freq; |
| 7919 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk); |
| 7920 | } |
| 7921 | |
| 7922 | limit = &intel_limits_i8xx_lvds; |
| 7923 | } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO)) { |
| 7924 | limit = &intel_limits_i8xx_dvo; |
| 7925 | } else { |
| 7926 | limit = &intel_limits_i8xx_dac; |
| 7927 | } |
| 7928 | |
| 7929 | if (!crtc_state->clock_set && |
| 7930 | !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock, |
| 7931 | refclk, NULL, &crtc_state->dpll)) { |
| 7932 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 7933 | return -EINVAL; |
| 7934 | } |
| 7935 | |
| 7936 | i8xx_compute_dpll(crtc, crtc_state, NULL); |
| 7937 | |
| 7938 | return 0; |
| 7939 | } |
| 7940 | |
Ander Conselvan de Oliveira | 19ec669 | 2016-03-21 18:00:15 +0200 | [diff] [blame] | 7941 | static int g4x_crtc_compute_clock(struct intel_crtc *crtc, |
| 7942 | struct intel_crtc_state *crtc_state) |
| 7943 | { |
| 7944 | struct drm_device *dev = crtc->base.dev; |
| 7945 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 7946 | const struct intel_limit *limit; |
Ander Conselvan de Oliveira | 19ec669 | 2016-03-21 18:00:15 +0200 | [diff] [blame] | 7947 | int refclk = 96000; |
| 7948 | |
| 7949 | memset(&crtc_state->dpll_hw_state, 0, |
| 7950 | sizeof(crtc_state->dpll_hw_state)); |
| 7951 | |
| 7952 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
| 7953 | if (intel_panel_use_ssc(dev_priv)) { |
| 7954 | refclk = dev_priv->vbt.lvds_ssc_freq; |
| 7955 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk); |
| 7956 | } |
| 7957 | |
| 7958 | if (intel_is_dual_link_lvds(dev)) |
| 7959 | limit = &intel_limits_g4x_dual_channel_lvds; |
| 7960 | else |
| 7961 | limit = &intel_limits_g4x_single_channel_lvds; |
| 7962 | } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) || |
| 7963 | intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) { |
| 7964 | limit = &intel_limits_g4x_hdmi; |
| 7965 | } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) { |
| 7966 | limit = &intel_limits_g4x_sdvo; |
| 7967 | } else { |
| 7968 | /* The option is for other outputs */ |
| 7969 | limit = &intel_limits_i9xx_sdvo; |
| 7970 | } |
| 7971 | |
| 7972 | if (!crtc_state->clock_set && |
| 7973 | !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock, |
| 7974 | refclk, NULL, &crtc_state->dpll)) { |
| 7975 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 7976 | return -EINVAL; |
| 7977 | } |
| 7978 | |
| 7979 | i9xx_compute_dpll(crtc, crtc_state, NULL); |
| 7980 | |
| 7981 | return 0; |
| 7982 | } |
| 7983 | |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 7984 | static int pnv_crtc_compute_clock(struct intel_crtc *crtc, |
| 7985 | struct intel_crtc_state *crtc_state) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7986 | { |
Ander Conselvan de Oliveira | c765319 | 2014-10-20 13:46:44 +0300 | [diff] [blame] | 7987 | struct drm_device *dev = crtc->base.dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7988 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 7989 | const struct intel_limit *limit; |
Ander Conselvan de Oliveira | 81c97f5 | 2016-03-22 15:35:23 +0200 | [diff] [blame] | 7990 | int refclk = 96000; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 7991 | |
Ander Conselvan de Oliveira | dd3cd74 | 2015-05-15 13:34:29 +0300 | [diff] [blame] | 7992 | memset(&crtc_state->dpll_hw_state, 0, |
| 7993 | sizeof(crtc_state->dpll_hw_state)); |
| 7994 | |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 7995 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
| 7996 | if (intel_panel_use_ssc(dev_priv)) { |
| 7997 | refclk = dev_priv->vbt.lvds_ssc_freq; |
| 7998 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk); |
| 7999 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8000 | |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 8001 | limit = &intel_limits_pineview_lvds; |
| 8002 | } else { |
| 8003 | limit = &intel_limits_pineview_sdvo; |
Ander Conselvan de Oliveira | 81c97f5 | 2016-03-22 15:35:23 +0200 | [diff] [blame] | 8004 | } |
Jani Nikula | f233533 | 2013-09-13 11:03:09 +0300 | [diff] [blame] | 8005 | |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 8006 | if (!crtc_state->clock_set && |
| 8007 | !pnv_find_best_dpll(limit, crtc_state, crtc_state->port_clock, |
| 8008 | refclk, NULL, &crtc_state->dpll)) { |
| 8009 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 8010 | return -EINVAL; |
| 8011 | } |
| 8012 | |
| 8013 | i9xx_compute_dpll(crtc, crtc_state, NULL); |
| 8014 | |
| 8015 | return 0; |
| 8016 | } |
| 8017 | |
| 8018 | static int i9xx_crtc_compute_clock(struct intel_crtc *crtc, |
| 8019 | struct intel_crtc_state *crtc_state) |
| 8020 | { |
| 8021 | struct drm_device *dev = crtc->base.dev; |
| 8022 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 8023 | const struct intel_limit *limit; |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 8024 | int refclk = 96000; |
| 8025 | |
| 8026 | memset(&crtc_state->dpll_hw_state, 0, |
| 8027 | sizeof(crtc_state->dpll_hw_state)); |
| 8028 | |
| 8029 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
| 8030 | if (intel_panel_use_ssc(dev_priv)) { |
| 8031 | refclk = dev_priv->vbt.lvds_ssc_freq; |
| 8032 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk); |
Jani Nikula | e9fd1c0 | 2013-08-27 15:12:23 +0300 | [diff] [blame] | 8033 | } |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 8034 | |
| 8035 | limit = &intel_limits_i9xx_lvds; |
| 8036 | } else { |
| 8037 | limit = &intel_limits_i9xx_sdvo; |
| 8038 | } |
| 8039 | |
| 8040 | if (!crtc_state->clock_set && |
| 8041 | !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock, |
| 8042 | refclk, NULL, &crtc_state->dpll)) { |
| 8043 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 8044 | return -EINVAL; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 8045 | } |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 8046 | |
Ander Conselvan de Oliveira | 81c97f5 | 2016-03-22 15:35:23 +0200 | [diff] [blame] | 8047 | i9xx_compute_dpll(crtc, crtc_state, NULL); |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 8048 | |
Daniel Vetter | c8f7a0d | 2014-04-24 23:55:04 +0200 | [diff] [blame] | 8049 | return 0; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 8050 | } |
| 8051 | |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 8052 | static int chv_crtc_compute_clock(struct intel_crtc *crtc, |
| 8053 | struct intel_crtc_state *crtc_state) |
| 8054 | { |
| 8055 | int refclk = 100000; |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 8056 | const struct intel_limit *limit = &intel_limits_chv; |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 8057 | |
| 8058 | memset(&crtc_state->dpll_hw_state, 0, |
| 8059 | sizeof(crtc_state->dpll_hw_state)); |
| 8060 | |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 8061 | if (!crtc_state->clock_set && |
| 8062 | !chv_find_best_dpll(limit, crtc_state, crtc_state->port_clock, |
| 8063 | refclk, NULL, &crtc_state->dpll)) { |
| 8064 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 8065 | return -EINVAL; |
| 8066 | } |
| 8067 | |
| 8068 | chv_compute_dpll(crtc, crtc_state); |
| 8069 | |
| 8070 | return 0; |
| 8071 | } |
| 8072 | |
| 8073 | static int vlv_crtc_compute_clock(struct intel_crtc *crtc, |
| 8074 | struct intel_crtc_state *crtc_state) |
| 8075 | { |
| 8076 | int refclk = 100000; |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 8077 | const struct intel_limit *limit = &intel_limits_vlv; |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 8078 | |
| 8079 | memset(&crtc_state->dpll_hw_state, 0, |
| 8080 | sizeof(crtc_state->dpll_hw_state)); |
| 8081 | |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 8082 | if (!crtc_state->clock_set && |
| 8083 | !vlv_find_best_dpll(limit, crtc_state, crtc_state->port_clock, |
| 8084 | refclk, NULL, &crtc_state->dpll)) { |
| 8085 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 8086 | return -EINVAL; |
| 8087 | } |
| 8088 | |
| 8089 | vlv_compute_dpll(crtc, crtc_state); |
| 8090 | |
| 8091 | return 0; |
| 8092 | } |
| 8093 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8094 | static void i9xx_get_pfit_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 8095 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8096 | { |
| 8097 | struct drm_device *dev = crtc->base.dev; |
| 8098 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 8099 | uint32_t tmp; |
| 8100 | |
Ville Syrjälä | dc9e7dec | 2014-01-10 14:06:45 +0200 | [diff] [blame] | 8101 | if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev))) |
| 8102 | return; |
| 8103 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8104 | tmp = I915_READ(PFIT_CONTROL); |
Daniel Vetter | 0692282 | 2013-07-11 13:35:40 +0200 | [diff] [blame] | 8105 | if (!(tmp & PFIT_ENABLE)) |
| 8106 | return; |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8107 | |
Daniel Vetter | 0692282 | 2013-07-11 13:35:40 +0200 | [diff] [blame] | 8108 | /* Check whether the pfit is attached to our pipe. */ |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8109 | if (INTEL_INFO(dev)->gen < 4) { |
| 8110 | if (crtc->pipe != PIPE_B) |
| 8111 | return; |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8112 | } else { |
| 8113 | if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT)) |
| 8114 | return; |
| 8115 | } |
| 8116 | |
Daniel Vetter | 0692282 | 2013-07-11 13:35:40 +0200 | [diff] [blame] | 8117 | pipe_config->gmch_pfit.control = tmp; |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8118 | pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS); |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8119 | } |
| 8120 | |
Jesse Barnes | acbec81 | 2013-09-20 11:29:32 -0700 | [diff] [blame] | 8121 | static void vlv_crtc_clock_get(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 8122 | struct intel_crtc_state *pipe_config) |
Jesse Barnes | acbec81 | 2013-09-20 11:29:32 -0700 | [diff] [blame] | 8123 | { |
| 8124 | struct drm_device *dev = crtc->base.dev; |
| 8125 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 8126 | int pipe = pipe_config->cpu_transcoder; |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 8127 | struct dpll clock; |
Jesse Barnes | acbec81 | 2013-09-20 11:29:32 -0700 | [diff] [blame] | 8128 | u32 mdiv; |
Chris Wilson | 662c6ec | 2013-09-25 14:24:01 -0700 | [diff] [blame] | 8129 | int refclk = 100000; |
Jesse Barnes | acbec81 | 2013-09-20 11:29:32 -0700 | [diff] [blame] | 8130 | |
Ville Syrjälä | b521973 | 2016-03-15 16:40:01 +0200 | [diff] [blame] | 8131 | /* In case of DSI, DPLL will not be used */ |
| 8132 | if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0) |
Shobhit Kumar | f573de5 | 2014-07-30 20:32:37 +0530 | [diff] [blame] | 8133 | return; |
| 8134 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 8135 | mutex_lock(&dev_priv->sb_lock); |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 8136 | mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe)); |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 8137 | mutex_unlock(&dev_priv->sb_lock); |
Jesse Barnes | acbec81 | 2013-09-20 11:29:32 -0700 | [diff] [blame] | 8138 | |
| 8139 | clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7; |
| 8140 | clock.m2 = mdiv & DPIO_M2DIV_MASK; |
| 8141 | clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf; |
| 8142 | clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7; |
| 8143 | clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f; |
| 8144 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 8145 | pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock); |
Jesse Barnes | acbec81 | 2013-09-20 11:29:32 -0700 | [diff] [blame] | 8146 | } |
| 8147 | |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 8148 | static void |
| 8149 | i9xx_get_initial_plane_config(struct intel_crtc *crtc, |
| 8150 | struct intel_initial_plane_config *plane_config) |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8151 | { |
| 8152 | struct drm_device *dev = crtc->base.dev; |
| 8153 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 8154 | u32 val, base, offset; |
| 8155 | int pipe = crtc->pipe, plane = crtc->plane; |
| 8156 | int fourcc, pixel_format; |
Tvrtko Ursulin | 6761dd3 | 2015-03-23 11:10:32 +0000 | [diff] [blame] | 8157 | unsigned int aligned_height; |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 8158 | struct drm_framebuffer *fb; |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 8159 | struct intel_framebuffer *intel_fb; |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8160 | |
Damien Lespiau | 42a7b08 | 2015-02-05 19:35:13 +0000 | [diff] [blame] | 8161 | val = I915_READ(DSPCNTR(plane)); |
| 8162 | if (!(val & DISPLAY_PLANE_ENABLE)) |
| 8163 | return; |
| 8164 | |
Damien Lespiau | d9806c9 | 2015-01-21 14:07:19 +0000 | [diff] [blame] | 8165 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 8166 | if (!intel_fb) { |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8167 | DRM_DEBUG_KMS("failed to alloc fb\n"); |
| 8168 | return; |
| 8169 | } |
| 8170 | |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 8171 | fb = &intel_fb->base; |
| 8172 | |
Daniel Vetter | 18c5247 | 2015-02-10 17:16:09 +0000 | [diff] [blame] | 8173 | if (INTEL_INFO(dev)->gen >= 4) { |
| 8174 | if (val & DISPPLANE_TILED) { |
Damien Lespiau | 49af449 | 2015-01-20 12:51:44 +0000 | [diff] [blame] | 8175 | plane_config->tiling = I915_TILING_X; |
Daniel Vetter | 18c5247 | 2015-02-10 17:16:09 +0000 | [diff] [blame] | 8176 | fb->modifier[0] = I915_FORMAT_MOD_X_TILED; |
| 8177 | } |
| 8178 | } |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8179 | |
| 8180 | pixel_format = val & DISPPLANE_PIXFORMAT_MASK; |
Damien Lespiau | b35d63f | 2015-01-20 12:51:50 +0000 | [diff] [blame] | 8181 | fourcc = i9xx_format_to_fourcc(pixel_format); |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 8182 | fb->pixel_format = fourcc; |
| 8183 | fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8; |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8184 | |
| 8185 | if (INTEL_INFO(dev)->gen >= 4) { |
Damien Lespiau | 49af449 | 2015-01-20 12:51:44 +0000 | [diff] [blame] | 8186 | if (plane_config->tiling) |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8187 | offset = I915_READ(DSPTILEOFF(plane)); |
| 8188 | else |
| 8189 | offset = I915_READ(DSPLINOFF(plane)); |
| 8190 | base = I915_READ(DSPSURF(plane)) & 0xfffff000; |
| 8191 | } else { |
| 8192 | base = I915_READ(DSPADDR(plane)); |
| 8193 | } |
| 8194 | plane_config->base = base; |
| 8195 | |
| 8196 | val = I915_READ(PIPESRC(pipe)); |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 8197 | fb->width = ((val >> 16) & 0xfff) + 1; |
| 8198 | fb->height = ((val >> 0) & 0xfff) + 1; |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8199 | |
| 8200 | val = I915_READ(DSPSTRIDE(pipe)); |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 8201 | fb->pitches[0] = val & 0xffffffc0; |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8202 | |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 8203 | aligned_height = intel_fb_align_height(dev, fb->height, |
Daniel Vetter | 091df6c | 2015-02-10 17:16:10 +0000 | [diff] [blame] | 8204 | fb->pixel_format, |
| 8205 | fb->modifier[0]); |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8206 | |
Daniel Vetter | f37b5c2 | 2015-02-10 23:12:27 +0100 | [diff] [blame] | 8207 | plane_config->size = fb->pitches[0] * aligned_height; |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8208 | |
Damien Lespiau | 2844a92 | 2015-01-20 12:51:48 +0000 | [diff] [blame] | 8209 | DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n", |
| 8210 | pipe_name(pipe), plane, fb->width, fb->height, |
| 8211 | fb->bits_per_pixel, base, fb->pitches[0], |
| 8212 | plane_config->size); |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8213 | |
Damien Lespiau | 2d14030 | 2015-02-05 17:22:18 +0000 | [diff] [blame] | 8214 | plane_config->fb = intel_fb; |
Jesse Barnes | 1ad292b | 2014-03-07 08:57:49 -0800 | [diff] [blame] | 8215 | } |
| 8216 | |
Ville Syrjälä | 70b23a9 | 2014-04-09 13:28:22 +0300 | [diff] [blame] | 8217 | static void chv_crtc_clock_get(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 8218 | struct intel_crtc_state *pipe_config) |
Ville Syrjälä | 70b23a9 | 2014-04-09 13:28:22 +0300 | [diff] [blame] | 8219 | { |
| 8220 | struct drm_device *dev = crtc->base.dev; |
| 8221 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 8222 | int pipe = pipe_config->cpu_transcoder; |
| 8223 | enum dpio_channel port = vlv_pipe_to_channel(pipe); |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 8224 | struct dpll clock; |
Imre Deak | 0d7b6b1 | 2015-07-02 14:29:58 +0300 | [diff] [blame] | 8225 | u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3; |
Ville Syrjälä | 70b23a9 | 2014-04-09 13:28:22 +0300 | [diff] [blame] | 8226 | int refclk = 100000; |
| 8227 | |
Ville Syrjälä | b521973 | 2016-03-15 16:40:01 +0200 | [diff] [blame] | 8228 | /* In case of DSI, DPLL will not be used */ |
| 8229 | if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0) |
| 8230 | return; |
| 8231 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 8232 | mutex_lock(&dev_priv->sb_lock); |
Ville Syrjälä | 70b23a9 | 2014-04-09 13:28:22 +0300 | [diff] [blame] | 8233 | cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port)); |
| 8234 | pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port)); |
| 8235 | pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port)); |
| 8236 | pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port)); |
Imre Deak | 0d7b6b1 | 2015-07-02 14:29:58 +0300 | [diff] [blame] | 8237 | pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port)); |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 8238 | mutex_unlock(&dev_priv->sb_lock); |
Ville Syrjälä | 70b23a9 | 2014-04-09 13:28:22 +0300 | [diff] [blame] | 8239 | |
| 8240 | clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0; |
Imre Deak | 0d7b6b1 | 2015-07-02 14:29:58 +0300 | [diff] [blame] | 8241 | clock.m2 = (pll_dw0 & 0xff) << 22; |
| 8242 | if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN) |
| 8243 | clock.m2 |= pll_dw2 & 0x3fffff; |
Ville Syrjälä | 70b23a9 | 2014-04-09 13:28:22 +0300 | [diff] [blame] | 8244 | clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf; |
| 8245 | clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7; |
| 8246 | clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f; |
| 8247 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 8248 | pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock); |
Ville Syrjälä | 70b23a9 | 2014-04-09 13:28:22 +0300 | [diff] [blame] | 8249 | } |
| 8250 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8251 | static bool i9xx_get_pipe_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 8252 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8253 | { |
| 8254 | struct drm_device *dev = crtc->base.dev; |
| 8255 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 8256 | enum intel_display_power_domain power_domain; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8257 | uint32_t tmp; |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 8258 | bool ret; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8259 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 8260 | power_domain = POWER_DOMAIN_PIPE(crtc->pipe); |
| 8261 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) |
Imre Deak | b5482bd | 2014-03-05 16:20:55 +0200 | [diff] [blame] | 8262 | return false; |
| 8263 | |
Daniel Vetter | e143a21 | 2013-07-04 12:01:15 +0200 | [diff] [blame] | 8264 | pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe; |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 8265 | pipe_config->shared_dpll = NULL; |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 8266 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 8267 | ret = false; |
| 8268 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8269 | tmp = I915_READ(PIPECONF(crtc->pipe)); |
| 8270 | if (!(tmp & PIPECONF_ENABLE)) |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 8271 | goto out; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8272 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 8273 | if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 42571ae | 2013-09-06 23:29:00 +0300 | [diff] [blame] | 8274 | switch (tmp & PIPECONF_BPC_MASK) { |
| 8275 | case PIPECONF_6BPC: |
| 8276 | pipe_config->pipe_bpp = 18; |
| 8277 | break; |
| 8278 | case PIPECONF_8BPC: |
| 8279 | pipe_config->pipe_bpp = 24; |
| 8280 | break; |
| 8281 | case PIPECONF_10BPC: |
| 8282 | pipe_config->pipe_bpp = 30; |
| 8283 | break; |
| 8284 | default: |
| 8285 | break; |
| 8286 | } |
| 8287 | } |
| 8288 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 8289 | if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && |
| 8290 | (tmp & PIPECONF_COLOR_RANGE_SELECT)) |
Daniel Vetter | b5a9fa0 | 2014-04-24 23:54:49 +0200 | [diff] [blame] | 8291 | pipe_config->limited_color_range = true; |
| 8292 | |
Ville Syrjälä | 282740f | 2013-09-04 18:30:03 +0300 | [diff] [blame] | 8293 | if (INTEL_INFO(dev)->gen < 4) |
| 8294 | pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE; |
| 8295 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 8296 | intel_get_pipe_timings(crtc, pipe_config); |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 8297 | intel_get_pipe_src_size(crtc, pipe_config); |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 8298 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 8299 | i9xx_get_pfit_config(crtc, pipe_config); |
| 8300 | |
Daniel Vetter | 6c49f24 | 2013-06-06 12:45:25 +0200 | [diff] [blame] | 8301 | if (INTEL_INFO(dev)->gen >= 4) { |
Ville Syrjälä | c231775 | 2016-03-15 16:39:56 +0200 | [diff] [blame] | 8302 | /* No way to read it out on pipes B and C */ |
| 8303 | if (IS_CHERRYVIEW(dev) && crtc->pipe != PIPE_A) |
| 8304 | tmp = dev_priv->chv_dpll_md[crtc->pipe]; |
| 8305 | else |
| 8306 | tmp = I915_READ(DPLL_MD(crtc->pipe)); |
Daniel Vetter | 6c49f24 | 2013-06-06 12:45:25 +0200 | [diff] [blame] | 8307 | pipe_config->pixel_multiplier = |
| 8308 | ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK) |
| 8309 | >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1; |
Daniel Vetter | 8bcc279 | 2013-06-05 13:34:28 +0200 | [diff] [blame] | 8310 | pipe_config->dpll_hw_state.dpll_md = tmp; |
Daniel Vetter | 6c49f24 | 2013-06-06 12:45:25 +0200 | [diff] [blame] | 8311 | } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) { |
| 8312 | tmp = I915_READ(DPLL(crtc->pipe)); |
| 8313 | pipe_config->pixel_multiplier = |
| 8314 | ((tmp & SDVO_MULTIPLIER_MASK) |
| 8315 | >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1; |
| 8316 | } else { |
| 8317 | /* Note that on i915G/GM the pixel multiplier is in the sdvo |
| 8318 | * port and will be fixed up in the encoder->get_config |
| 8319 | * function. */ |
| 8320 | pipe_config->pixel_multiplier = 1; |
| 8321 | } |
Daniel Vetter | 8bcc279 | 2013-06-05 13:34:28 +0200 | [diff] [blame] | 8322 | pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 8323 | if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 1c4e027 | 2014-09-05 21:52:42 +0300 | [diff] [blame] | 8324 | /* |
| 8325 | * DPLL_DVO_2X_MODE must be enabled for both DPLLs |
| 8326 | * on 830. Filter it out here so that we don't |
| 8327 | * report errors due to that. |
| 8328 | */ |
| 8329 | if (IS_I830(dev)) |
| 8330 | pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE; |
| 8331 | |
Daniel Vetter | 8bcc279 | 2013-06-05 13:34:28 +0200 | [diff] [blame] | 8332 | pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe)); |
| 8333 | pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe)); |
Ville Syrjälä | 165e901 | 2013-06-26 17:44:15 +0300 | [diff] [blame] | 8334 | } else { |
| 8335 | /* Mask out read-only status bits. */ |
| 8336 | pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV | |
| 8337 | DPLL_PORTC_READY_MASK | |
| 8338 | DPLL_PORTB_READY_MASK); |
Daniel Vetter | 8bcc279 | 2013-06-05 13:34:28 +0200 | [diff] [blame] | 8339 | } |
Daniel Vetter | 6c49f24 | 2013-06-06 12:45:25 +0200 | [diff] [blame] | 8340 | |
Ville Syrjälä | 70b23a9 | 2014-04-09 13:28:22 +0300 | [diff] [blame] | 8341 | if (IS_CHERRYVIEW(dev)) |
| 8342 | chv_crtc_clock_get(crtc, pipe_config); |
| 8343 | else if (IS_VALLEYVIEW(dev)) |
Jesse Barnes | acbec81 | 2013-09-20 11:29:32 -0700 | [diff] [blame] | 8344 | vlv_crtc_clock_get(crtc, pipe_config); |
| 8345 | else |
| 8346 | i9xx_crtc_clock_get(crtc, pipe_config); |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 8347 | |
Ville Syrjälä | 0f64614 | 2015-08-26 19:39:18 +0300 | [diff] [blame] | 8348 | /* |
| 8349 | * Normally the dotclock is filled in by the encoder .get_config() |
| 8350 | * but in case the pipe is enabled w/o any ports we need a sane |
| 8351 | * default. |
| 8352 | */ |
| 8353 | pipe_config->base.adjusted_mode.crtc_clock = |
| 8354 | pipe_config->port_clock / pipe_config->pixel_multiplier; |
| 8355 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 8356 | ret = true; |
| 8357 | |
| 8358 | out: |
| 8359 | intel_display_power_put(dev_priv, power_domain); |
| 8360 | |
| 8361 | return ret; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 8362 | } |
| 8363 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8364 | static void ironlake_init_pch_refclk(struct drm_device *dev) |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8365 | { |
| 8366 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8367 | struct intel_encoder *encoder; |
Lyude | 1c1a24d | 2016-06-14 11:04:09 -0400 | [diff] [blame] | 8368 | int i; |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8369 | u32 val, final; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8370 | bool has_lvds = false; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8371 | bool has_cpu_edp = false; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8372 | bool has_panel = false; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 8373 | bool has_ck505 = false; |
| 8374 | bool can_ssc = false; |
Lyude | 1c1a24d | 2016-06-14 11:04:09 -0400 | [diff] [blame] | 8375 | bool using_ssc_source = false; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8376 | |
| 8377 | /* We need to take the global config into account */ |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 8378 | for_each_intel_encoder(dev, encoder) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8379 | switch (encoder->type) { |
| 8380 | case INTEL_OUTPUT_LVDS: |
| 8381 | has_panel = true; |
| 8382 | has_lvds = true; |
| 8383 | break; |
| 8384 | case INTEL_OUTPUT_EDP: |
| 8385 | has_panel = true; |
Imre Deak | 2de6905 | 2013-05-08 13:14:04 +0300 | [diff] [blame] | 8386 | if (enc_to_dig_port(&encoder->base)->port == PORT_A) |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8387 | has_cpu_edp = true; |
| 8388 | break; |
Paulo Zanoni | 6847d71b | 2014-10-27 17:47:52 -0200 | [diff] [blame] | 8389 | default: |
| 8390 | break; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8391 | } |
| 8392 | } |
| 8393 | |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 8394 | if (HAS_PCH_IBX(dev)) { |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 8395 | has_ck505 = dev_priv->vbt.display_clock_mode; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 8396 | can_ssc = has_ck505; |
| 8397 | } else { |
| 8398 | has_ck505 = false; |
| 8399 | can_ssc = true; |
| 8400 | } |
| 8401 | |
Lyude | 1c1a24d | 2016-06-14 11:04:09 -0400 | [diff] [blame] | 8402 | /* Check if any DPLLs are using the SSC source */ |
| 8403 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { |
| 8404 | u32 temp = I915_READ(PCH_DPLL(i)); |
| 8405 | |
| 8406 | if (!(temp & DPLL_VCO_ENABLE)) |
| 8407 | continue; |
| 8408 | |
| 8409 | if ((temp & PLL_REF_INPUT_MASK) == |
| 8410 | PLLB_REF_INPUT_SPREADSPECTRUMIN) { |
| 8411 | using_ssc_source = true; |
| 8412 | break; |
| 8413 | } |
| 8414 | } |
| 8415 | |
| 8416 | DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d using_ssc_source %d\n", |
| 8417 | has_panel, has_lvds, has_ck505, using_ssc_source); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8418 | |
| 8419 | /* Ironlake: try to setup display ref clock before DPLL |
| 8420 | * enabling. This is only under driver's control after |
| 8421 | * PCH B stepping, previous chipset stepping should be |
| 8422 | * ignoring this setting. |
| 8423 | */ |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8424 | val = I915_READ(PCH_DREF_CONTROL); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8425 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8426 | /* As we must carefully and slowly disable/enable each source in turn, |
| 8427 | * compute the final state we want first and check if we need to |
| 8428 | * make any changes at all. |
| 8429 | */ |
| 8430 | final = val; |
| 8431 | final &= ~DREF_NONSPREAD_SOURCE_MASK; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 8432 | if (has_ck505) |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8433 | final |= DREF_NONSPREAD_CK505_ENABLE; |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 8434 | else |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8435 | final |= DREF_NONSPREAD_SOURCE_ENABLE; |
| 8436 | |
Daniel Vetter | 8c07eb6 | 2016-06-09 18:39:07 +0200 | [diff] [blame] | 8437 | final &= ~DREF_SSC_SOURCE_MASK; |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8438 | final &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
Daniel Vetter | 8c07eb6 | 2016-06-09 18:39:07 +0200 | [diff] [blame] | 8439 | final &= ~DREF_SSC1_ENABLE; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8440 | |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8441 | if (has_panel) { |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8442 | final |= DREF_SSC_SOURCE_ENABLE; |
| 8443 | |
| 8444 | if (intel_panel_use_ssc(dev_priv) && can_ssc) |
| 8445 | final |= DREF_SSC1_ENABLE; |
| 8446 | |
| 8447 | if (has_cpu_edp) { |
| 8448 | if (intel_panel_use_ssc(dev_priv) && can_ssc) |
| 8449 | final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
| 8450 | else |
| 8451 | final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
| 8452 | } else |
| 8453 | final |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
Lyude | 1c1a24d | 2016-06-14 11:04:09 -0400 | [diff] [blame] | 8454 | } else if (using_ssc_source) { |
| 8455 | final |= DREF_SSC_SOURCE_ENABLE; |
| 8456 | final |= DREF_SSC1_ENABLE; |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8457 | } |
| 8458 | |
| 8459 | if (final == val) |
| 8460 | return; |
| 8461 | |
| 8462 | /* Always enable nonspread source */ |
| 8463 | val &= ~DREF_NONSPREAD_SOURCE_MASK; |
| 8464 | |
| 8465 | if (has_ck505) |
| 8466 | val |= DREF_NONSPREAD_CK505_ENABLE; |
| 8467 | else |
| 8468 | val |= DREF_NONSPREAD_SOURCE_ENABLE; |
| 8469 | |
| 8470 | if (has_panel) { |
| 8471 | val &= ~DREF_SSC_SOURCE_MASK; |
| 8472 | val |= DREF_SSC_SOURCE_ENABLE; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8473 | |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8474 | /* SSC must be turned on before enabling the CPU output */ |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 8475 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8476 | DRM_DEBUG_KMS("Using SSC on panel\n"); |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8477 | val |= DREF_SSC1_ENABLE; |
Daniel Vetter | e77166b | 2012-03-30 22:14:05 +0200 | [diff] [blame] | 8478 | } else |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8479 | val &= ~DREF_SSC1_ENABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8480 | |
| 8481 | /* Get SSC going before enabling the outputs */ |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8482 | I915_WRITE(PCH_DREF_CONTROL, val); |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8483 | POSTING_READ(PCH_DREF_CONTROL); |
| 8484 | udelay(200); |
| 8485 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8486 | val &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8487 | |
| 8488 | /* Enable CPU source on CPU attached eDP */ |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8489 | if (has_cpu_edp) { |
Keith Packard | 99eb6a0 | 2011-09-26 14:29:12 -0700 | [diff] [blame] | 8490 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8491 | DRM_DEBUG_KMS("Using SSC on eDP\n"); |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8492 | val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
Robin Schroer | eba905b | 2014-05-18 02:24:50 +0200 | [diff] [blame] | 8493 | } else |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8494 | val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8495 | } else |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8496 | val |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8497 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8498 | I915_WRITE(PCH_DREF_CONTROL, val); |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8499 | POSTING_READ(PCH_DREF_CONTROL); |
| 8500 | udelay(200); |
| 8501 | } else { |
Lyude | 1c1a24d | 2016-06-14 11:04:09 -0400 | [diff] [blame] | 8502 | DRM_DEBUG_KMS("Disabling CPU source output\n"); |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8503 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8504 | val &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8505 | |
| 8506 | /* Turn off CPU output */ |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8507 | val |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8508 | |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8509 | I915_WRITE(PCH_DREF_CONTROL, val); |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8510 | POSTING_READ(PCH_DREF_CONTROL); |
| 8511 | udelay(200); |
| 8512 | |
Lyude | 1c1a24d | 2016-06-14 11:04:09 -0400 | [diff] [blame] | 8513 | if (!using_ssc_source) { |
| 8514 | DRM_DEBUG_KMS("Disabling SSC source\n"); |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8515 | |
Lyude | 1c1a24d | 2016-06-14 11:04:09 -0400 | [diff] [blame] | 8516 | /* Turn off the SSC source */ |
| 8517 | val &= ~DREF_SSC_SOURCE_MASK; |
| 8518 | val |= DREF_SSC_SOURCE_DISABLE; |
Keith Packard | 199e5d7 | 2011-09-22 12:01:57 -0700 | [diff] [blame] | 8519 | |
Lyude | 1c1a24d | 2016-06-14 11:04:09 -0400 | [diff] [blame] | 8520 | /* Turn off SSC1 */ |
| 8521 | val &= ~DREF_SSC1_ENABLE; |
| 8522 | |
| 8523 | I915_WRITE(PCH_DREF_CONTROL, val); |
| 8524 | POSTING_READ(PCH_DREF_CONTROL); |
| 8525 | udelay(200); |
| 8526 | } |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8527 | } |
Chris Wilson | 74cfd7a | 2013-03-26 16:33:04 -0700 | [diff] [blame] | 8528 | |
| 8529 | BUG_ON(val != final); |
Jesse Barnes | 13d83a6 | 2011-08-03 12:59:20 -0700 | [diff] [blame] | 8530 | } |
| 8531 | |
Paulo Zanoni | f31f2d5 | 2013-07-18 18:51:11 -0300 | [diff] [blame] | 8532 | static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv) |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8533 | { |
Paulo Zanoni | f31f2d5 | 2013-07-18 18:51:11 -0300 | [diff] [blame] | 8534 | uint32_t tmp; |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8535 | |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8536 | tmp = I915_READ(SOUTH_CHICKEN2); |
| 8537 | tmp |= FDI_MPHY_IOSFSB_RESET_CTL; |
| 8538 | I915_WRITE(SOUTH_CHICKEN2, tmp); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8539 | |
Imre Deak | cf3598c | 2016-06-28 13:37:31 +0300 | [diff] [blame] | 8540 | if (wait_for_us(I915_READ(SOUTH_CHICKEN2) & |
| 8541 | FDI_MPHY_IOSFSB_RESET_STATUS, 100)) |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8542 | DRM_ERROR("FDI mPHY reset assert timeout\n"); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8543 | |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8544 | tmp = I915_READ(SOUTH_CHICKEN2); |
| 8545 | tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL; |
| 8546 | I915_WRITE(SOUTH_CHICKEN2, tmp); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8547 | |
Imre Deak | cf3598c | 2016-06-28 13:37:31 +0300 | [diff] [blame] | 8548 | if (wait_for_us((I915_READ(SOUTH_CHICKEN2) & |
| 8549 | FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100)) |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8550 | DRM_ERROR("FDI mPHY reset de-assert timeout\n"); |
Paulo Zanoni | f31f2d5 | 2013-07-18 18:51:11 -0300 | [diff] [blame] | 8551 | } |
| 8552 | |
| 8553 | /* WaMPhyProgramming:hsw */ |
| 8554 | static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv) |
| 8555 | { |
| 8556 | uint32_t tmp; |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8557 | |
| 8558 | tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY); |
| 8559 | tmp &= ~(0xFF << 24); |
| 8560 | tmp |= (0x12 << 24); |
| 8561 | intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY); |
| 8562 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8563 | tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY); |
| 8564 | tmp |= (1 << 11); |
| 8565 | intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY); |
| 8566 | |
| 8567 | tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY); |
| 8568 | tmp |= (1 << 11); |
| 8569 | intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY); |
| 8570 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8571 | tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY); |
| 8572 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); |
| 8573 | intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY); |
| 8574 | |
| 8575 | tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY); |
| 8576 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); |
| 8577 | intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY); |
| 8578 | |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8579 | tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY); |
| 8580 | tmp &= ~(7 << 13); |
| 8581 | tmp |= (5 << 13); |
| 8582 | intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8583 | |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8584 | tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY); |
| 8585 | tmp &= ~(7 << 13); |
| 8586 | tmp |= (5 << 13); |
| 8587 | intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8588 | |
| 8589 | tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY); |
| 8590 | tmp &= ~0xFF; |
| 8591 | tmp |= 0x1C; |
| 8592 | intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY); |
| 8593 | |
| 8594 | tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY); |
| 8595 | tmp &= ~0xFF; |
| 8596 | tmp |= 0x1C; |
| 8597 | intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY); |
| 8598 | |
| 8599 | tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY); |
| 8600 | tmp &= ~(0xFF << 16); |
| 8601 | tmp |= (0x1C << 16); |
| 8602 | intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY); |
| 8603 | |
| 8604 | tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY); |
| 8605 | tmp &= ~(0xFF << 16); |
| 8606 | tmp |= (0x1C << 16); |
| 8607 | intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY); |
| 8608 | |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8609 | tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY); |
| 8610 | tmp |= (1 << 27); |
| 8611 | intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8612 | |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8613 | tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY); |
| 8614 | tmp |= (1 << 27); |
| 8615 | intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8616 | |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8617 | tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY); |
| 8618 | tmp &= ~(0xF << 28); |
| 8619 | tmp |= (4 << 28); |
| 8620 | intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8621 | |
Paulo Zanoni | 0ff066a | 2013-07-12 14:19:36 -0300 | [diff] [blame] | 8622 | tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY); |
| 8623 | tmp &= ~(0xF << 28); |
| 8624 | tmp |= (4 << 28); |
| 8625 | intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY); |
Paulo Zanoni | f31f2d5 | 2013-07-18 18:51:11 -0300 | [diff] [blame] | 8626 | } |
| 8627 | |
Paulo Zanoni | 2fa86a1 | 2013-07-23 11:19:24 -0300 | [diff] [blame] | 8628 | /* Implements 3 different sequences from BSpec chapter "Display iCLK |
| 8629 | * Programming" based on the parameters passed: |
| 8630 | * - Sequence to enable CLKOUT_DP |
| 8631 | * - Sequence to enable CLKOUT_DP without spread |
| 8632 | * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O |
| 8633 | */ |
| 8634 | static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread, |
| 8635 | bool with_fdi) |
Paulo Zanoni | f31f2d5 | 2013-07-18 18:51:11 -0300 | [diff] [blame] | 8636 | { |
| 8637 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | 2fa86a1 | 2013-07-23 11:19:24 -0300 | [diff] [blame] | 8638 | uint32_t reg, tmp; |
| 8639 | |
| 8640 | if (WARN(with_fdi && !with_spread, "FDI requires downspread\n")) |
| 8641 | with_spread = true; |
Ville Syrjälä | c269952 | 2015-08-27 23:55:59 +0300 | [diff] [blame] | 8642 | if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n")) |
Paulo Zanoni | 2fa86a1 | 2013-07-23 11:19:24 -0300 | [diff] [blame] | 8643 | with_fdi = false; |
Paulo Zanoni | f31f2d5 | 2013-07-18 18:51:11 -0300 | [diff] [blame] | 8644 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 8645 | mutex_lock(&dev_priv->sb_lock); |
Paulo Zanoni | f31f2d5 | 2013-07-18 18:51:11 -0300 | [diff] [blame] | 8646 | |
| 8647 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); |
| 8648 | tmp &= ~SBI_SSCCTL_DISABLE; |
| 8649 | tmp |= SBI_SSCCTL_PATHALT; |
| 8650 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); |
| 8651 | |
| 8652 | udelay(24); |
| 8653 | |
Paulo Zanoni | 2fa86a1 | 2013-07-23 11:19:24 -0300 | [diff] [blame] | 8654 | if (with_spread) { |
| 8655 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); |
| 8656 | tmp &= ~SBI_SSCCTL_PATHALT; |
| 8657 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); |
Paulo Zanoni | f31f2d5 | 2013-07-18 18:51:11 -0300 | [diff] [blame] | 8658 | |
Paulo Zanoni | 2fa86a1 | 2013-07-23 11:19:24 -0300 | [diff] [blame] | 8659 | if (with_fdi) { |
| 8660 | lpt_reset_fdi_mphy(dev_priv); |
| 8661 | lpt_program_fdi_mphy(dev_priv); |
| 8662 | } |
| 8663 | } |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8664 | |
Ville Syrjälä | c269952 | 2015-08-27 23:55:59 +0300 | [diff] [blame] | 8665 | reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0; |
Paulo Zanoni | 2fa86a1 | 2013-07-23 11:19:24 -0300 | [diff] [blame] | 8666 | tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK); |
| 8667 | tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE; |
| 8668 | intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK); |
Daniel Vetter | c00db24 | 2013-01-22 15:33:27 +0100 | [diff] [blame] | 8669 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 8670 | mutex_unlock(&dev_priv->sb_lock); |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8671 | } |
| 8672 | |
Paulo Zanoni | 47701c3 | 2013-07-23 11:19:25 -0300 | [diff] [blame] | 8673 | /* Sequence to disable CLKOUT_DP */ |
| 8674 | static void lpt_disable_clkout_dp(struct drm_device *dev) |
| 8675 | { |
| 8676 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 8677 | uint32_t reg, tmp; |
| 8678 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 8679 | mutex_lock(&dev_priv->sb_lock); |
Paulo Zanoni | 47701c3 | 2013-07-23 11:19:25 -0300 | [diff] [blame] | 8680 | |
Ville Syrjälä | c269952 | 2015-08-27 23:55:59 +0300 | [diff] [blame] | 8681 | reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0; |
Paulo Zanoni | 47701c3 | 2013-07-23 11:19:25 -0300 | [diff] [blame] | 8682 | tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK); |
| 8683 | tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE; |
| 8684 | intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK); |
| 8685 | |
| 8686 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); |
| 8687 | if (!(tmp & SBI_SSCCTL_DISABLE)) { |
| 8688 | if (!(tmp & SBI_SSCCTL_PATHALT)) { |
| 8689 | tmp |= SBI_SSCCTL_PATHALT; |
| 8690 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); |
| 8691 | udelay(32); |
| 8692 | } |
| 8693 | tmp |= SBI_SSCCTL_DISABLE; |
| 8694 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); |
| 8695 | } |
| 8696 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 8697 | mutex_unlock(&dev_priv->sb_lock); |
Paulo Zanoni | 47701c3 | 2013-07-23 11:19:25 -0300 | [diff] [blame] | 8698 | } |
| 8699 | |
Ville Syrjälä | f7be2c2 | 2015-12-04 22:19:39 +0200 | [diff] [blame] | 8700 | #define BEND_IDX(steps) ((50 + (steps)) / 5) |
| 8701 | |
| 8702 | static const uint16_t sscdivintphase[] = { |
| 8703 | [BEND_IDX( 50)] = 0x3B23, |
| 8704 | [BEND_IDX( 45)] = 0x3B23, |
| 8705 | [BEND_IDX( 40)] = 0x3C23, |
| 8706 | [BEND_IDX( 35)] = 0x3C23, |
| 8707 | [BEND_IDX( 30)] = 0x3D23, |
| 8708 | [BEND_IDX( 25)] = 0x3D23, |
| 8709 | [BEND_IDX( 20)] = 0x3E23, |
| 8710 | [BEND_IDX( 15)] = 0x3E23, |
| 8711 | [BEND_IDX( 10)] = 0x3F23, |
| 8712 | [BEND_IDX( 5)] = 0x3F23, |
| 8713 | [BEND_IDX( 0)] = 0x0025, |
| 8714 | [BEND_IDX( -5)] = 0x0025, |
| 8715 | [BEND_IDX(-10)] = 0x0125, |
| 8716 | [BEND_IDX(-15)] = 0x0125, |
| 8717 | [BEND_IDX(-20)] = 0x0225, |
| 8718 | [BEND_IDX(-25)] = 0x0225, |
| 8719 | [BEND_IDX(-30)] = 0x0325, |
| 8720 | [BEND_IDX(-35)] = 0x0325, |
| 8721 | [BEND_IDX(-40)] = 0x0425, |
| 8722 | [BEND_IDX(-45)] = 0x0425, |
| 8723 | [BEND_IDX(-50)] = 0x0525, |
| 8724 | }; |
| 8725 | |
| 8726 | /* |
| 8727 | * Bend CLKOUT_DP |
| 8728 | * steps -50 to 50 inclusive, in steps of 5 |
| 8729 | * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz) |
| 8730 | * change in clock period = -(steps / 10) * 5.787 ps |
| 8731 | */ |
| 8732 | static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps) |
| 8733 | { |
| 8734 | uint32_t tmp; |
| 8735 | int idx = BEND_IDX(steps); |
| 8736 | |
| 8737 | if (WARN_ON(steps % 5 != 0)) |
| 8738 | return; |
| 8739 | |
| 8740 | if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase))) |
| 8741 | return; |
| 8742 | |
| 8743 | mutex_lock(&dev_priv->sb_lock); |
| 8744 | |
| 8745 | if (steps % 10 != 0) |
| 8746 | tmp = 0xAAAAAAAB; |
| 8747 | else |
| 8748 | tmp = 0x00000000; |
| 8749 | intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK); |
| 8750 | |
| 8751 | tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK); |
| 8752 | tmp &= 0xffff0000; |
| 8753 | tmp |= sscdivintphase[idx]; |
| 8754 | intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK); |
| 8755 | |
| 8756 | mutex_unlock(&dev_priv->sb_lock); |
| 8757 | } |
| 8758 | |
| 8759 | #undef BEND_IDX |
| 8760 | |
Paulo Zanoni | bf8fa3d | 2013-07-12 14:19:38 -0300 | [diff] [blame] | 8761 | static void lpt_init_pch_refclk(struct drm_device *dev) |
| 8762 | { |
Paulo Zanoni | bf8fa3d | 2013-07-12 14:19:38 -0300 | [diff] [blame] | 8763 | struct intel_encoder *encoder; |
| 8764 | bool has_vga = false; |
| 8765 | |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 8766 | for_each_intel_encoder(dev, encoder) { |
Paulo Zanoni | bf8fa3d | 2013-07-12 14:19:38 -0300 | [diff] [blame] | 8767 | switch (encoder->type) { |
| 8768 | case INTEL_OUTPUT_ANALOG: |
| 8769 | has_vga = true; |
| 8770 | break; |
Paulo Zanoni | 6847d71b | 2014-10-27 17:47:52 -0200 | [diff] [blame] | 8771 | default: |
| 8772 | break; |
Paulo Zanoni | bf8fa3d | 2013-07-12 14:19:38 -0300 | [diff] [blame] | 8773 | } |
| 8774 | } |
| 8775 | |
Ville Syrjälä | f7be2c2 | 2015-12-04 22:19:39 +0200 | [diff] [blame] | 8776 | if (has_vga) { |
| 8777 | lpt_bend_clkout_dp(to_i915(dev), 0); |
Paulo Zanoni | 47701c3 | 2013-07-23 11:19:25 -0300 | [diff] [blame] | 8778 | lpt_enable_clkout_dp(dev, true, true); |
Ville Syrjälä | f7be2c2 | 2015-12-04 22:19:39 +0200 | [diff] [blame] | 8779 | } else { |
Paulo Zanoni | 47701c3 | 2013-07-23 11:19:25 -0300 | [diff] [blame] | 8780 | lpt_disable_clkout_dp(dev); |
Ville Syrjälä | f7be2c2 | 2015-12-04 22:19:39 +0200 | [diff] [blame] | 8781 | } |
Paulo Zanoni | bf8fa3d | 2013-07-12 14:19:38 -0300 | [diff] [blame] | 8782 | } |
| 8783 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 8784 | /* |
| 8785 | * Initialize reference clocks when the driver loads |
| 8786 | */ |
| 8787 | void intel_init_pch_refclk(struct drm_device *dev) |
| 8788 | { |
| 8789 | if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) |
| 8790 | ironlake_init_pch_refclk(dev); |
| 8791 | else if (HAS_PCH_LPT(dev)) |
| 8792 | lpt_init_pch_refclk(dev); |
| 8793 | } |
| 8794 | |
Daniel Vetter | 6ff9360 | 2013-04-19 11:24:36 +0200 | [diff] [blame] | 8795 | static void ironlake_set_pipeconf(struct drm_crtc *crtc) |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8796 | { |
| 8797 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
| 8798 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 8799 | int pipe = intel_crtc->pipe; |
| 8800 | uint32_t val; |
| 8801 | |
Daniel Vetter | 7811407 | 2013-06-13 00:54:57 +0200 | [diff] [blame] | 8802 | val = 0; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8803 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 8804 | switch (intel_crtc->config->pipe_bpp) { |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8805 | case 18: |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 8806 | val |= PIPECONF_6BPC; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8807 | break; |
| 8808 | case 24: |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 8809 | val |= PIPECONF_8BPC; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8810 | break; |
| 8811 | case 30: |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 8812 | val |= PIPECONF_10BPC; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8813 | break; |
| 8814 | case 36: |
Daniel Vetter | dfd07d7 | 2012-12-17 11:21:38 +0100 | [diff] [blame] | 8815 | val |= PIPECONF_12BPC; |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8816 | break; |
| 8817 | default: |
Paulo Zanoni | cc769b6 | 2012-09-20 18:36:03 -0300 | [diff] [blame] | 8818 | /* Case prevented by intel_choose_pipe_bpp_dither. */ |
| 8819 | BUG(); |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8820 | } |
| 8821 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 8822 | if (intel_crtc->config->dither) |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8823 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); |
| 8824 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 8825 | if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8826 | val |= PIPECONF_INTERLACED_ILK; |
| 8827 | else |
| 8828 | val |= PIPECONF_PROGRESSIVE; |
| 8829 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 8830 | if (intel_crtc->config->limited_color_range) |
Ville Syrjälä | 3685a8f | 2013-01-17 16:31:28 +0200 | [diff] [blame] | 8831 | val |= PIPECONF_COLOR_RANGE_SELECT; |
Ville Syrjälä | 3685a8f | 2013-01-17 16:31:28 +0200 | [diff] [blame] | 8832 | |
Paulo Zanoni | c820356 | 2012-09-12 10:06:29 -0300 | [diff] [blame] | 8833 | I915_WRITE(PIPECONF(pipe), val); |
| 8834 | POSTING_READ(PIPECONF(pipe)); |
| 8835 | } |
| 8836 | |
Daniel Vetter | 6ff9360 | 2013-04-19 11:24:36 +0200 | [diff] [blame] | 8837 | static void haswell_set_pipeconf(struct drm_crtc *crtc) |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 8838 | { |
Jani Nikula | 391bf04 | 2016-03-18 17:05:40 +0200 | [diff] [blame] | 8839 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 8840 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 8841 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
Jani Nikula | 391bf04 | 2016-03-18 17:05:40 +0200 | [diff] [blame] | 8842 | u32 val = 0; |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 8843 | |
Jani Nikula | 391bf04 | 2016-03-18 17:05:40 +0200 | [diff] [blame] | 8844 | if (IS_HASWELL(dev_priv) && intel_crtc->config->dither) |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 8845 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); |
| 8846 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 8847 | if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 8848 | val |= PIPECONF_INTERLACED_ILK; |
| 8849 | else |
| 8850 | val |= PIPECONF_PROGRESSIVE; |
| 8851 | |
Paulo Zanoni | 702e7a5 | 2012-10-23 18:29:59 -0200 | [diff] [blame] | 8852 | I915_WRITE(PIPECONF(cpu_transcoder), val); |
| 8853 | POSTING_READ(PIPECONF(cpu_transcoder)); |
Jani Nikula | 391bf04 | 2016-03-18 17:05:40 +0200 | [diff] [blame] | 8854 | } |
| 8855 | |
Jani Nikula | 391bf04 | 2016-03-18 17:05:40 +0200 | [diff] [blame] | 8856 | static void haswell_set_pipemisc(struct drm_crtc *crtc) |
| 8857 | { |
| 8858 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
| 8859 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 8860 | |
| 8861 | if (IS_BROADWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 9) { |
| 8862 | u32 val = 0; |
Paulo Zanoni | 756f85c | 2013-11-02 21:07:38 -0700 | [diff] [blame] | 8863 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 8864 | switch (intel_crtc->config->pipe_bpp) { |
Paulo Zanoni | 756f85c | 2013-11-02 21:07:38 -0700 | [diff] [blame] | 8865 | case 18: |
| 8866 | val |= PIPEMISC_DITHER_6_BPC; |
| 8867 | break; |
| 8868 | case 24: |
| 8869 | val |= PIPEMISC_DITHER_8_BPC; |
| 8870 | break; |
| 8871 | case 30: |
| 8872 | val |= PIPEMISC_DITHER_10_BPC; |
| 8873 | break; |
| 8874 | case 36: |
| 8875 | val |= PIPEMISC_DITHER_12_BPC; |
| 8876 | break; |
| 8877 | default: |
| 8878 | /* Case prevented by pipe_config_set_bpp. */ |
| 8879 | BUG(); |
| 8880 | } |
| 8881 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 8882 | if (intel_crtc->config->dither) |
Paulo Zanoni | 756f85c | 2013-11-02 21:07:38 -0700 | [diff] [blame] | 8883 | val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP; |
| 8884 | |
Jani Nikula | 391bf04 | 2016-03-18 17:05:40 +0200 | [diff] [blame] | 8885 | I915_WRITE(PIPEMISC(intel_crtc->pipe), val); |
Paulo Zanoni | 756f85c | 2013-11-02 21:07:38 -0700 | [diff] [blame] | 8886 | } |
Paulo Zanoni | ee2b0b3 | 2012-10-05 12:05:57 -0300 | [diff] [blame] | 8887 | } |
| 8888 | |
Paulo Zanoni | d4b1931 | 2012-11-29 11:29:32 -0200 | [diff] [blame] | 8889 | int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp) |
| 8890 | { |
| 8891 | /* |
| 8892 | * Account for spread spectrum to avoid |
| 8893 | * oversubscribing the link. Max center spread |
| 8894 | * is 2.5%; use 5% for safety's sake. |
| 8895 | */ |
| 8896 | u32 bps = target_clock * bpp * 21 / 20; |
Ville Syrjälä | 619d4d0 | 2014-02-27 14:23:14 +0200 | [diff] [blame] | 8897 | return DIV_ROUND_UP(bps, link_bw * 8); |
Paulo Zanoni | d4b1931 | 2012-11-29 11:29:32 -0200 | [diff] [blame] | 8898 | } |
| 8899 | |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 8900 | static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor) |
Daniel Vetter | 6cf86a5 | 2013-04-02 23:38:10 +0200 | [diff] [blame] | 8901 | { |
Daniel Vetter | 7429e9d | 2013-04-20 17:19:46 +0200 | [diff] [blame] | 8902 | return i9xx_dpll_compute_m(dpll) < factor * dpll->n; |
Paulo Zanoni | f48d8f2 | 2012-09-20 18:36:04 -0300 | [diff] [blame] | 8903 | } |
| 8904 | |
Ander Conselvan de Oliveira | b75ca6f | 2016-03-21 18:00:11 +0200 | [diff] [blame] | 8905 | static void ironlake_compute_dpll(struct intel_crtc *intel_crtc, |
| 8906 | struct intel_crtc_state *crtc_state, |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 8907 | struct dpll *reduced_clock) |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 8908 | { |
| 8909 | struct drm_crtc *crtc = &intel_crtc->base; |
| 8910 | struct drm_device *dev = crtc->dev; |
| 8911 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 55bb999 | 2015-03-20 16:18:19 +0200 | [diff] [blame] | 8912 | struct drm_atomic_state *state = crtc_state->base.state; |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 8913 | struct drm_connector *connector; |
Ander Conselvan de Oliveira | 55bb999 | 2015-03-20 16:18:19 +0200 | [diff] [blame] | 8914 | struct drm_connector_state *connector_state; |
| 8915 | struct intel_encoder *encoder; |
Ander Conselvan de Oliveira | b75ca6f | 2016-03-21 18:00:11 +0200 | [diff] [blame] | 8916 | u32 dpll, fp, fp2; |
Ander Conselvan de Oliveira | ceb4100 | 2016-03-21 18:00:02 +0200 | [diff] [blame] | 8917 | int factor, i; |
Daniel Vetter | 09ede54 | 2013-04-30 14:01:45 +0200 | [diff] [blame] | 8918 | bool is_lvds = false, is_sdvo = false; |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 8919 | |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 8920 | for_each_connector_in_state(state, connector, connector_state, i) { |
Ander Conselvan de Oliveira | 55bb999 | 2015-03-20 16:18:19 +0200 | [diff] [blame] | 8921 | if (connector_state->crtc != crtc_state->base.crtc) |
| 8922 | continue; |
| 8923 | |
| 8924 | encoder = to_intel_encoder(connector_state->best_encoder); |
| 8925 | |
| 8926 | switch (encoder->type) { |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 8927 | case INTEL_OUTPUT_LVDS: |
| 8928 | is_lvds = true; |
| 8929 | break; |
| 8930 | case INTEL_OUTPUT_SDVO: |
| 8931 | case INTEL_OUTPUT_HDMI: |
| 8932 | is_sdvo = true; |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 8933 | break; |
Paulo Zanoni | 6847d71b | 2014-10-27 17:47:52 -0200 | [diff] [blame] | 8934 | default: |
| 8935 | break; |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 8936 | } |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 8937 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8938 | |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 8939 | /* Enable autotuning of the PLL clock (if permissible) */ |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 8940 | factor = 21; |
| 8941 | if (is_lvds) { |
| 8942 | if ((intel_panel_use_ssc(dev_priv) && |
Ville Syrjälä | e91e941 | 2013-12-09 18:54:16 +0200 | [diff] [blame] | 8943 | dev_priv->vbt.lvds_ssc_freq == 100000) || |
Daniel Vetter | f0b4405 | 2013-04-04 22:20:33 +0200 | [diff] [blame] | 8944 | (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev))) |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 8945 | factor = 25; |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 8946 | } else if (crtc_state->sdvo_tv_clock) |
Eric Anholt | 8febb29 | 2011-03-30 13:01:07 -0700 | [diff] [blame] | 8947 | factor = 20; |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 8948 | |
Ander Conselvan de Oliveira | b75ca6f | 2016-03-21 18:00:11 +0200 | [diff] [blame] | 8949 | fp = i9xx_dpll_compute_fp(&crtc_state->dpll); |
Chris Wilson | c185812 | 2010-12-03 21:35:48 +0000 | [diff] [blame] | 8950 | |
Ander Conselvan de Oliveira | b75ca6f | 2016-03-21 18:00:11 +0200 | [diff] [blame] | 8951 | if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor)) |
| 8952 | fp |= FP_CB_TUNE; |
| 8953 | |
| 8954 | if (reduced_clock) { |
| 8955 | fp2 = i9xx_dpll_compute_fp(reduced_clock); |
| 8956 | |
| 8957 | if (reduced_clock->m < factor * reduced_clock->n) |
| 8958 | fp2 |= FP_CB_TUNE; |
| 8959 | } else { |
| 8960 | fp2 = fp; |
| 8961 | } |
Daniel Vetter | 9a7c789 | 2013-04-04 22:20:34 +0200 | [diff] [blame] | 8962 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 8963 | dpll = 0; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 8964 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 8965 | if (is_lvds) |
| 8966 | dpll |= DPLLB_MODE_LVDS; |
| 8967 | else |
| 8968 | dpll |= DPLLB_MODE_DAC_SERIAL; |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 8969 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 8970 | dpll |= (crtc_state->pixel_multiplier - 1) |
Daniel Vetter | ef1b460 | 2013-06-01 17:17:04 +0200 | [diff] [blame] | 8971 | << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT; |
Daniel Vetter | 198a037f | 2013-04-19 11:14:37 +0200 | [diff] [blame] | 8972 | |
| 8973 | if (is_sdvo) |
Daniel Vetter | 4a33e48 | 2013-07-06 12:52:05 +0200 | [diff] [blame] | 8974 | dpll |= DPLL_SDVO_HIGH_SPEED; |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 8975 | if (crtc_state->has_dp_encoder) |
Daniel Vetter | 4a33e48 | 2013-07-06 12:52:05 +0200 | [diff] [blame] | 8976 | dpll |= DPLL_SDVO_HIGH_SPEED; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8977 | |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 8978 | /* compute bitmask from p1 value */ |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 8979 | dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 8980 | /* also FPA1 */ |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 8981 | dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 8982 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 8983 | switch (crtc_state->dpll.p2) { |
Eric Anholt | a07d678 | 2011-03-30 13:01:08 -0700 | [diff] [blame] | 8984 | case 5: |
| 8985 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; |
| 8986 | break; |
| 8987 | case 7: |
| 8988 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; |
| 8989 | break; |
| 8990 | case 10: |
| 8991 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; |
| 8992 | break; |
| 8993 | case 14: |
| 8994 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; |
| 8995 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 8996 | } |
| 8997 | |
Ander Conselvan de Oliveira | ceb4100 | 2016-03-21 18:00:02 +0200 | [diff] [blame] | 8998 | if (is_lvds && intel_panel_use_ssc(dev_priv)) |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 8999 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9000 | else |
| 9001 | dpll |= PLL_REF_INPUT_DREFCLK; |
| 9002 | |
Ander Conselvan de Oliveira | b75ca6f | 2016-03-21 18:00:11 +0200 | [diff] [blame] | 9003 | dpll |= DPLL_VCO_ENABLE; |
| 9004 | |
| 9005 | crtc_state->dpll_hw_state.dpll = dpll; |
| 9006 | crtc_state->dpll_hw_state.fp0 = fp; |
| 9007 | crtc_state->dpll_hw_state.fp1 = fp2; |
Paulo Zanoni | de13a2e | 2012-09-20 18:36:05 -0300 | [diff] [blame] | 9008 | } |
| 9009 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 9010 | static int ironlake_crtc_compute_clock(struct intel_crtc *crtc, |
| 9011 | struct intel_crtc_state *crtc_state) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9012 | { |
Ander Conselvan de Oliveira | 997c030 | 2016-03-21 18:00:12 +0200 | [diff] [blame] | 9013 | struct drm_device *dev = crtc->base.dev; |
| 9014 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 9015 | struct dpll reduced_clock; |
Ander Conselvan de Oliveira | 7ed9f89 | 2016-03-21 18:00:07 +0200 | [diff] [blame] | 9016 | bool has_reduced_clock = false; |
Daniel Vetter | e2b7826 | 2013-06-07 23:10:03 +0200 | [diff] [blame] | 9017 | struct intel_shared_dpll *pll; |
Ander Conselvan de Oliveira | 1b6f495 | 2016-05-04 12:11:59 +0300 | [diff] [blame] | 9018 | const struct intel_limit *limit; |
Ander Conselvan de Oliveira | 997c030 | 2016-03-21 18:00:12 +0200 | [diff] [blame] | 9019 | int refclk = 120000; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9020 | |
Ander Conselvan de Oliveira | dd3cd74 | 2015-05-15 13:34:29 +0300 | [diff] [blame] | 9021 | memset(&crtc_state->dpll_hw_state, 0, |
| 9022 | sizeof(crtc_state->dpll_hw_state)); |
| 9023 | |
Ander Conselvan de Oliveira | ded220e | 2016-03-21 18:00:09 +0200 | [diff] [blame] | 9024 | crtc->lowfreq_avail = false; |
| 9025 | |
| 9026 | /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */ |
| 9027 | if (!crtc_state->has_pch_encoder) |
| 9028 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9029 | |
Ander Conselvan de Oliveira | 997c030 | 2016-03-21 18:00:12 +0200 | [diff] [blame] | 9030 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
| 9031 | if (intel_panel_use_ssc(dev_priv)) { |
| 9032 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", |
| 9033 | dev_priv->vbt.lvds_ssc_freq); |
| 9034 | refclk = dev_priv->vbt.lvds_ssc_freq; |
| 9035 | } |
| 9036 | |
| 9037 | if (intel_is_dual_link_lvds(dev)) { |
| 9038 | if (refclk == 100000) |
| 9039 | limit = &intel_limits_ironlake_dual_lvds_100m; |
| 9040 | else |
| 9041 | limit = &intel_limits_ironlake_dual_lvds; |
| 9042 | } else { |
| 9043 | if (refclk == 100000) |
| 9044 | limit = &intel_limits_ironlake_single_lvds_100m; |
| 9045 | else |
| 9046 | limit = &intel_limits_ironlake_single_lvds; |
| 9047 | } |
| 9048 | } else { |
| 9049 | limit = &intel_limits_ironlake_dac; |
| 9050 | } |
| 9051 | |
Ander Conselvan de Oliveira | 364ee29 | 2016-03-21 18:00:10 +0200 | [diff] [blame] | 9052 | if (!crtc_state->clock_set && |
Ander Conselvan de Oliveira | 997c030 | 2016-03-21 18:00:12 +0200 | [diff] [blame] | 9053 | !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock, |
| 9054 | refclk, NULL, &crtc_state->dpll)) { |
Ander Conselvan de Oliveira | 364ee29 | 2016-03-21 18:00:10 +0200 | [diff] [blame] | 9055 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
| 9056 | return -EINVAL; |
Daniel Vetter | f47709a | 2013-03-28 10:42:02 +0100 | [diff] [blame] | 9057 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9058 | |
Ander Conselvan de Oliveira | b75ca6f | 2016-03-21 18:00:11 +0200 | [diff] [blame] | 9059 | ironlake_compute_dpll(crtc, crtc_state, |
| 9060 | has_reduced_clock ? &reduced_clock : NULL); |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 9061 | |
Ander Conselvan de Oliveira | ded220e | 2016-03-21 18:00:09 +0200 | [diff] [blame] | 9062 | pll = intel_get_shared_dpll(crtc, crtc_state, NULL); |
| 9063 | if (pll == NULL) { |
| 9064 | DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n", |
| 9065 | pipe_name(crtc->pipe)); |
| 9066 | return -EINVAL; |
Ander Conselvan de Oliveira | 3fb3770 | 2014-10-29 11:32:35 +0200 | [diff] [blame] | 9067 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9068 | |
Ander Conselvan de Oliveira | ded220e | 2016-03-21 18:00:09 +0200 | [diff] [blame] | 9069 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) && |
| 9070 | has_reduced_clock) |
Ander Conselvan de Oliveira | c765319 | 2014-10-20 13:46:44 +0300 | [diff] [blame] | 9071 | crtc->lowfreq_avail = true; |
Daniel Vetter | e2b7826 | 2013-06-07 23:10:03 +0200 | [diff] [blame] | 9072 | |
Daniel Vetter | c8f7a0d | 2014-04-24 23:55:04 +0200 | [diff] [blame] | 9073 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9074 | } |
| 9075 | |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9076 | static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc, |
| 9077 | struct intel_link_m_n *m_n) |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 9078 | { |
| 9079 | struct drm_device *dev = crtc->base.dev; |
| 9080 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9081 | enum pipe pipe = crtc->pipe; |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 9082 | |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9083 | m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe)); |
| 9084 | m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe)); |
| 9085 | m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe)) |
| 9086 | & ~TU_SIZE_MASK; |
| 9087 | m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe)); |
| 9088 | m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe)) |
| 9089 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; |
| 9090 | } |
| 9091 | |
| 9092 | static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc, |
| 9093 | enum transcoder transcoder, |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 9094 | struct intel_link_m_n *m_n, |
| 9095 | struct intel_link_m_n *m2_n2) |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9096 | { |
| 9097 | struct drm_device *dev = crtc->base.dev; |
| 9098 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9099 | enum pipe pipe = crtc->pipe; |
| 9100 | |
| 9101 | if (INTEL_INFO(dev)->gen >= 5) { |
| 9102 | m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder)); |
| 9103 | m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder)); |
| 9104 | m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder)) |
| 9105 | & ~TU_SIZE_MASK; |
| 9106 | m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder)); |
| 9107 | m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder)) |
| 9108 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 9109 | /* Read M2_N2 registers only for gen < 8 (M2_N2 available for |
| 9110 | * gen < 8) and if DRRS is supported (to make sure the |
| 9111 | * registers are not unnecessarily read). |
| 9112 | */ |
| 9113 | if (m2_n2 && INTEL_INFO(dev)->gen < 8 && |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 9114 | crtc->config->has_drrs) { |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 9115 | m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder)); |
| 9116 | m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder)); |
| 9117 | m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder)) |
| 9118 | & ~TU_SIZE_MASK; |
| 9119 | m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder)); |
| 9120 | m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder)) |
| 9121 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; |
| 9122 | } |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9123 | } else { |
| 9124 | m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe)); |
| 9125 | m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe)); |
| 9126 | m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe)) |
| 9127 | & ~TU_SIZE_MASK; |
| 9128 | m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe)); |
| 9129 | m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe)) |
| 9130 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; |
| 9131 | } |
| 9132 | } |
| 9133 | |
| 9134 | void intel_dp_get_m_n(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 9135 | struct intel_crtc_state *pipe_config) |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9136 | { |
Ander Conselvan de Oliveira | 681a850 | 2015-01-15 14:55:24 +0200 | [diff] [blame] | 9137 | if (pipe_config->has_pch_encoder) |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9138 | intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n); |
| 9139 | else |
| 9140 | intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder, |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 9141 | &pipe_config->dp_m_n, |
| 9142 | &pipe_config->dp_m2_n2); |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9143 | } |
| 9144 | |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 9145 | static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 9146 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 9147 | { |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 9148 | intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder, |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 9149 | &pipe_config->fdi_m_n, NULL); |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 9150 | } |
| 9151 | |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 9152 | static void skylake_get_pfit_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 9153 | struct intel_crtc_state *pipe_config) |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 9154 | { |
| 9155 | struct drm_device *dev = crtc->base.dev; |
| 9156 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 9157 | struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state; |
| 9158 | uint32_t ps_ctrl = 0; |
| 9159 | int id = -1; |
| 9160 | int i; |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 9161 | |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 9162 | /* find scaler attached to this pipe */ |
| 9163 | for (i = 0; i < crtc->num_scalers; i++) { |
| 9164 | ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i)); |
| 9165 | if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) { |
| 9166 | id = i; |
| 9167 | pipe_config->pch_pfit.enabled = true; |
| 9168 | pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i)); |
| 9169 | pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i)); |
| 9170 | break; |
| 9171 | } |
| 9172 | } |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 9173 | |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 9174 | scaler_state->scaler_id = id; |
| 9175 | if (id >= 0) { |
| 9176 | scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX); |
| 9177 | } else { |
| 9178 | scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX); |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 9179 | } |
| 9180 | } |
| 9181 | |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 9182 | static void |
| 9183 | skylake_get_initial_plane_config(struct intel_crtc *crtc, |
| 9184 | struct intel_initial_plane_config *plane_config) |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9185 | { |
| 9186 | struct drm_device *dev = crtc->base.dev; |
| 9187 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 40f4628 | 2015-02-27 11:15:21 +0000 | [diff] [blame] | 9188 | u32 val, base, offset, stride_mult, tiling; |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9189 | int pipe = crtc->pipe; |
| 9190 | int fourcc, pixel_format; |
Tvrtko Ursulin | 6761dd3 | 2015-03-23 11:10:32 +0000 | [diff] [blame] | 9191 | unsigned int aligned_height; |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9192 | struct drm_framebuffer *fb; |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 9193 | struct intel_framebuffer *intel_fb; |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9194 | |
Damien Lespiau | d9806c9 | 2015-01-21 14:07:19 +0000 | [diff] [blame] | 9195 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 9196 | if (!intel_fb) { |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9197 | DRM_DEBUG_KMS("failed to alloc fb\n"); |
| 9198 | return; |
| 9199 | } |
| 9200 | |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 9201 | fb = &intel_fb->base; |
| 9202 | |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9203 | val = I915_READ(PLANE_CTL(pipe, 0)); |
Damien Lespiau | 42a7b08 | 2015-02-05 19:35:13 +0000 | [diff] [blame] | 9204 | if (!(val & PLANE_CTL_ENABLE)) |
| 9205 | goto error; |
| 9206 | |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9207 | pixel_format = val & PLANE_CTL_FORMAT_MASK; |
| 9208 | fourcc = skl_format_to_fourcc(pixel_format, |
| 9209 | val & PLANE_CTL_ORDER_RGBX, |
| 9210 | val & PLANE_CTL_ALPHA_MASK); |
| 9211 | fb->pixel_format = fourcc; |
| 9212 | fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8; |
| 9213 | |
Damien Lespiau | 40f4628 | 2015-02-27 11:15:21 +0000 | [diff] [blame] | 9214 | tiling = val & PLANE_CTL_TILED_MASK; |
| 9215 | switch (tiling) { |
| 9216 | case PLANE_CTL_TILED_LINEAR: |
| 9217 | fb->modifier[0] = DRM_FORMAT_MOD_NONE; |
| 9218 | break; |
| 9219 | case PLANE_CTL_TILED_X: |
| 9220 | plane_config->tiling = I915_TILING_X; |
| 9221 | fb->modifier[0] = I915_FORMAT_MOD_X_TILED; |
| 9222 | break; |
| 9223 | case PLANE_CTL_TILED_Y: |
| 9224 | fb->modifier[0] = I915_FORMAT_MOD_Y_TILED; |
| 9225 | break; |
| 9226 | case PLANE_CTL_TILED_YF: |
| 9227 | fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED; |
| 9228 | break; |
| 9229 | default: |
| 9230 | MISSING_CASE(tiling); |
| 9231 | goto error; |
| 9232 | } |
| 9233 | |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9234 | base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000; |
| 9235 | plane_config->base = base; |
| 9236 | |
| 9237 | offset = I915_READ(PLANE_OFFSET(pipe, 0)); |
| 9238 | |
| 9239 | val = I915_READ(PLANE_SIZE(pipe, 0)); |
| 9240 | fb->height = ((val >> 16) & 0xfff) + 1; |
| 9241 | fb->width = ((val >> 0) & 0x1fff) + 1; |
| 9242 | |
| 9243 | val = I915_READ(PLANE_STRIDE(pipe, 0)); |
Ville Syrjälä | 7b49f94 | 2016-01-12 21:08:32 +0200 | [diff] [blame] | 9244 | stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0], |
Damien Lespiau | 40f4628 | 2015-02-27 11:15:21 +0000 | [diff] [blame] | 9245 | fb->pixel_format); |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9246 | fb->pitches[0] = (val & 0x3ff) * stride_mult; |
| 9247 | |
| 9248 | aligned_height = intel_fb_align_height(dev, fb->height, |
Daniel Vetter | 091df6c | 2015-02-10 17:16:10 +0000 | [diff] [blame] | 9249 | fb->pixel_format, |
| 9250 | fb->modifier[0]); |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9251 | |
Daniel Vetter | f37b5c2 | 2015-02-10 23:12:27 +0100 | [diff] [blame] | 9252 | plane_config->size = fb->pitches[0] * aligned_height; |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9253 | |
| 9254 | DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n", |
| 9255 | pipe_name(pipe), fb->width, fb->height, |
| 9256 | fb->bits_per_pixel, base, fb->pitches[0], |
| 9257 | plane_config->size); |
| 9258 | |
Damien Lespiau | 2d14030 | 2015-02-05 17:22:18 +0000 | [diff] [blame] | 9259 | plane_config->fb = intel_fb; |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 9260 | return; |
| 9261 | |
| 9262 | error: |
| 9263 | kfree(fb); |
| 9264 | } |
| 9265 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 9266 | static void ironlake_get_pfit_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 9267 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 9268 | { |
| 9269 | struct drm_device *dev = crtc->base.dev; |
| 9270 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9271 | uint32_t tmp; |
| 9272 | |
| 9273 | tmp = I915_READ(PF_CTL(crtc->pipe)); |
| 9274 | |
| 9275 | if (tmp & PF_ENABLE) { |
Chris Wilson | fd4daa9 | 2013-08-27 17:04:17 +0100 | [diff] [blame] | 9276 | pipe_config->pch_pfit.enabled = true; |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 9277 | pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe)); |
| 9278 | pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe)); |
Daniel Vetter | cb8b2a3 | 2013-06-01 17:16:23 +0200 | [diff] [blame] | 9279 | |
| 9280 | /* We currently do not free assignements of panel fitters on |
| 9281 | * ivb/hsw (since we don't use the higher upscaling modes which |
| 9282 | * differentiates them) so just WARN about this case for now. */ |
| 9283 | if (IS_GEN7(dev)) { |
| 9284 | WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) != |
| 9285 | PF_PIPE_SEL_IVB(crtc->pipe)); |
| 9286 | } |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 9287 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9288 | } |
| 9289 | |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 9290 | static void |
| 9291 | ironlake_get_initial_plane_config(struct intel_crtc *crtc, |
| 9292 | struct intel_initial_plane_config *plane_config) |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9293 | { |
| 9294 | struct drm_device *dev = crtc->base.dev; |
| 9295 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9296 | u32 val, base, offset; |
Damien Lespiau | aeee5a4 | 2015-01-20 12:51:47 +0000 | [diff] [blame] | 9297 | int pipe = crtc->pipe; |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9298 | int fourcc, pixel_format; |
Tvrtko Ursulin | 6761dd3 | 2015-03-23 11:10:32 +0000 | [diff] [blame] | 9299 | unsigned int aligned_height; |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 9300 | struct drm_framebuffer *fb; |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 9301 | struct intel_framebuffer *intel_fb; |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9302 | |
Damien Lespiau | 42a7b08 | 2015-02-05 19:35:13 +0000 | [diff] [blame] | 9303 | val = I915_READ(DSPCNTR(pipe)); |
| 9304 | if (!(val & DISPLAY_PLANE_ENABLE)) |
| 9305 | return; |
| 9306 | |
Damien Lespiau | d9806c9 | 2015-01-21 14:07:19 +0000 | [diff] [blame] | 9307 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 9308 | if (!intel_fb) { |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9309 | DRM_DEBUG_KMS("failed to alloc fb\n"); |
| 9310 | return; |
| 9311 | } |
| 9312 | |
Damien Lespiau | 1b842c8 | 2015-01-21 13:50:54 +0000 | [diff] [blame] | 9313 | fb = &intel_fb->base; |
| 9314 | |
Daniel Vetter | 18c5247 | 2015-02-10 17:16:09 +0000 | [diff] [blame] | 9315 | if (INTEL_INFO(dev)->gen >= 4) { |
| 9316 | if (val & DISPPLANE_TILED) { |
Damien Lespiau | 49af449 | 2015-01-20 12:51:44 +0000 | [diff] [blame] | 9317 | plane_config->tiling = I915_TILING_X; |
Daniel Vetter | 18c5247 | 2015-02-10 17:16:09 +0000 | [diff] [blame] | 9318 | fb->modifier[0] = I915_FORMAT_MOD_X_TILED; |
| 9319 | } |
| 9320 | } |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9321 | |
| 9322 | pixel_format = val & DISPPLANE_PIXFORMAT_MASK; |
Damien Lespiau | b35d63f | 2015-01-20 12:51:50 +0000 | [diff] [blame] | 9323 | fourcc = i9xx_format_to_fourcc(pixel_format); |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 9324 | fb->pixel_format = fourcc; |
| 9325 | fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8; |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9326 | |
Damien Lespiau | aeee5a4 | 2015-01-20 12:51:47 +0000 | [diff] [blame] | 9327 | base = I915_READ(DSPSURF(pipe)) & 0xfffff000; |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9328 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
Damien Lespiau | aeee5a4 | 2015-01-20 12:51:47 +0000 | [diff] [blame] | 9329 | offset = I915_READ(DSPOFFSET(pipe)); |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9330 | } else { |
Damien Lespiau | 49af449 | 2015-01-20 12:51:44 +0000 | [diff] [blame] | 9331 | if (plane_config->tiling) |
Damien Lespiau | aeee5a4 | 2015-01-20 12:51:47 +0000 | [diff] [blame] | 9332 | offset = I915_READ(DSPTILEOFF(pipe)); |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9333 | else |
Damien Lespiau | aeee5a4 | 2015-01-20 12:51:47 +0000 | [diff] [blame] | 9334 | offset = I915_READ(DSPLINOFF(pipe)); |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9335 | } |
| 9336 | plane_config->base = base; |
| 9337 | |
| 9338 | val = I915_READ(PIPESRC(pipe)); |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 9339 | fb->width = ((val >> 16) & 0xfff) + 1; |
| 9340 | fb->height = ((val >> 0) & 0xfff) + 1; |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9341 | |
| 9342 | val = I915_READ(DSPSTRIDE(pipe)); |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 9343 | fb->pitches[0] = val & 0xffffffc0; |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9344 | |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 9345 | aligned_height = intel_fb_align_height(dev, fb->height, |
Daniel Vetter | 091df6c | 2015-02-10 17:16:10 +0000 | [diff] [blame] | 9346 | fb->pixel_format, |
| 9347 | fb->modifier[0]); |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9348 | |
Daniel Vetter | f37b5c2 | 2015-02-10 23:12:27 +0100 | [diff] [blame] | 9349 | plane_config->size = fb->pitches[0] * aligned_height; |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9350 | |
Damien Lespiau | 2844a92 | 2015-01-20 12:51:48 +0000 | [diff] [blame] | 9351 | DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n", |
| 9352 | pipe_name(pipe), fb->width, fb->height, |
| 9353 | fb->bits_per_pixel, base, fb->pitches[0], |
| 9354 | plane_config->size); |
Damien Lespiau | b113d5e | 2015-01-20 12:51:46 +0000 | [diff] [blame] | 9355 | |
Damien Lespiau | 2d14030 | 2015-02-05 17:22:18 +0000 | [diff] [blame] | 9356 | plane_config->fb = intel_fb; |
Jesse Barnes | 4c6baa5 | 2014-03-07 08:57:50 -0800 | [diff] [blame] | 9357 | } |
| 9358 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9359 | static bool ironlake_get_pipe_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 9360 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9361 | { |
| 9362 | struct drm_device *dev = crtc->base.dev; |
| 9363 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 9364 | enum intel_display_power_domain power_domain; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9365 | uint32_t tmp; |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 9366 | bool ret; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9367 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 9368 | power_domain = POWER_DOMAIN_PIPE(crtc->pipe); |
| 9369 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) |
Paulo Zanoni | 930e8c9 | 2014-07-04 13:38:34 -0300 | [diff] [blame] | 9370 | return false; |
| 9371 | |
Daniel Vetter | e143a21 | 2013-07-04 12:01:15 +0200 | [diff] [blame] | 9372 | pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe; |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9373 | pipe_config->shared_dpll = NULL; |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 9374 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 9375 | ret = false; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9376 | tmp = I915_READ(PIPECONF(crtc->pipe)); |
| 9377 | if (!(tmp & PIPECONF_ENABLE)) |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 9378 | goto out; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9379 | |
Ville Syrjälä | 42571ae | 2013-09-06 23:29:00 +0300 | [diff] [blame] | 9380 | switch (tmp & PIPECONF_BPC_MASK) { |
| 9381 | case PIPECONF_6BPC: |
| 9382 | pipe_config->pipe_bpp = 18; |
| 9383 | break; |
| 9384 | case PIPECONF_8BPC: |
| 9385 | pipe_config->pipe_bpp = 24; |
| 9386 | break; |
| 9387 | case PIPECONF_10BPC: |
| 9388 | pipe_config->pipe_bpp = 30; |
| 9389 | break; |
| 9390 | case PIPECONF_12BPC: |
| 9391 | pipe_config->pipe_bpp = 36; |
| 9392 | break; |
| 9393 | default: |
| 9394 | break; |
| 9395 | } |
| 9396 | |
Daniel Vetter | b5a9fa0 | 2014-04-24 23:54:49 +0200 | [diff] [blame] | 9397 | if (tmp & PIPECONF_COLOR_RANGE_SELECT) |
| 9398 | pipe_config->limited_color_range = true; |
| 9399 | |
Daniel Vetter | ab9412b | 2013-05-03 11:49:46 +0200 | [diff] [blame] | 9400 | if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) { |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 9401 | struct intel_shared_dpll *pll; |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9402 | enum intel_dpll_id pll_id; |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 9403 | |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 9404 | pipe_config->has_pch_encoder = true; |
| 9405 | |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 9406 | tmp = I915_READ(FDI_RX_CTL(crtc->pipe)); |
| 9407 | pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >> |
| 9408 | FDI_DP_PORT_WIDTH_SHIFT) + 1; |
Daniel Vetter | 7241920 | 2013-04-04 13:28:53 +0200 | [diff] [blame] | 9409 | |
| 9410 | ironlake_get_fdi_m_n_config(crtc, pipe_config); |
Daniel Vetter | 6c49f24 | 2013-06-06 12:45:25 +0200 | [diff] [blame] | 9411 | |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 9412 | if (HAS_PCH_IBX(dev_priv)) { |
Imre Deak | d9a7bc6 | 2016-05-12 16:18:50 +0300 | [diff] [blame] | 9413 | /* |
| 9414 | * The pipe->pch transcoder and pch transcoder->pll |
| 9415 | * mapping is fixed. |
| 9416 | */ |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9417 | pll_id = (enum intel_dpll_id) crtc->pipe; |
Daniel Vetter | c0d43d6 | 2013-06-07 23:11:08 +0200 | [diff] [blame] | 9418 | } else { |
| 9419 | tmp = I915_READ(PCH_DPLL_SEL); |
| 9420 | if (tmp & TRANS_DPLLB_SEL(crtc->pipe)) |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9421 | pll_id = DPLL_ID_PCH_PLL_B; |
Daniel Vetter | c0d43d6 | 2013-06-07 23:11:08 +0200 | [diff] [blame] | 9422 | else |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9423 | pll_id= DPLL_ID_PCH_PLL_A; |
Daniel Vetter | c0d43d6 | 2013-06-07 23:11:08 +0200 | [diff] [blame] | 9424 | } |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 9425 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9426 | pipe_config->shared_dpll = |
| 9427 | intel_get_shared_dpll_by_id(dev_priv, pll_id); |
| 9428 | pll = pipe_config->shared_dpll; |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 9429 | |
Ander Conselvan de Oliveira | 2edd644 | 2016-03-08 17:46:21 +0200 | [diff] [blame] | 9430 | WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll, |
| 9431 | &pipe_config->dpll_hw_state)); |
Daniel Vetter | c93f54c | 2013-06-27 19:47:19 +0200 | [diff] [blame] | 9432 | |
| 9433 | tmp = pipe_config->dpll_hw_state.dpll; |
| 9434 | pipe_config->pixel_multiplier = |
| 9435 | ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK) |
| 9436 | >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1; |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 9437 | |
| 9438 | ironlake_pch_clock_get(crtc, pipe_config); |
Daniel Vetter | 6c49f24 | 2013-06-06 12:45:25 +0200 | [diff] [blame] | 9439 | } else { |
| 9440 | pipe_config->pixel_multiplier = 1; |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 9441 | } |
| 9442 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 9443 | intel_get_pipe_timings(crtc, pipe_config); |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 9444 | intel_get_pipe_src_size(crtc, pipe_config); |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 9445 | |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 9446 | ironlake_get_pfit_config(crtc, pipe_config); |
| 9447 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 9448 | ret = true; |
| 9449 | |
| 9450 | out: |
| 9451 | intel_display_power_put(dev_priv, power_domain); |
| 9452 | |
| 9453 | return ret; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 9454 | } |
| 9455 | |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9456 | static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv) |
| 9457 | { |
| 9458 | struct drm_device *dev = dev_priv->dev; |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9459 | struct intel_crtc *crtc; |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9460 | |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 9461 | for_each_intel_crtc(dev, crtc) |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 9462 | I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n", |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9463 | pipe_name(crtc->pipe)); |
| 9464 | |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 9465 | I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n"); |
| 9466 | I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n"); |
Ville Syrjälä | 01403de | 2015-09-18 20:03:33 +0300 | [diff] [blame] | 9467 | I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n"); |
| 9468 | I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n"); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 9469 | I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n"); |
| 9470 | I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE, |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9471 | "CPU PWM1 enabled\n"); |
Paulo Zanoni | c5107b8 | 2014-07-04 11:50:30 -0300 | [diff] [blame] | 9472 | if (IS_HASWELL(dev)) |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 9473 | I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE, |
Paulo Zanoni | c5107b8 | 2014-07-04 11:50:30 -0300 | [diff] [blame] | 9474 | "CPU PWM2 enabled\n"); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 9475 | I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE, |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9476 | "PCH PWM1 enabled\n"); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 9477 | I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE, |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9478 | "Utility pin enabled\n"); |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 9479 | I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n"); |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9480 | |
Paulo Zanoni | 9926ada | 2014-04-01 19:39:47 -0300 | [diff] [blame] | 9481 | /* |
| 9482 | * In theory we can still leave IRQs enabled, as long as only the HPD |
| 9483 | * interrupts remain enabled. We used to check for that, but since it's |
| 9484 | * gen-specific and since we only disable LCPLL after we fully disable |
| 9485 | * the interrupts, the check below should be enough. |
| 9486 | */ |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 9487 | I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n"); |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9488 | } |
| 9489 | |
Paulo Zanoni | 9ccd5ae | 2014-07-04 11:59:58 -0300 | [diff] [blame] | 9490 | static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv) |
| 9491 | { |
| 9492 | struct drm_device *dev = dev_priv->dev; |
| 9493 | |
| 9494 | if (IS_HASWELL(dev)) |
| 9495 | return I915_READ(D_COMP_HSW); |
| 9496 | else |
| 9497 | return I915_READ(D_COMP_BDW); |
| 9498 | } |
| 9499 | |
Paulo Zanoni | 3c4c9b8 | 2014-03-07 20:12:36 -0300 | [diff] [blame] | 9500 | static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val) |
| 9501 | { |
| 9502 | struct drm_device *dev = dev_priv->dev; |
| 9503 | |
| 9504 | if (IS_HASWELL(dev)) { |
| 9505 | mutex_lock(&dev_priv->rps.hw_lock); |
| 9506 | if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP, |
| 9507 | val)) |
Paulo Zanoni | f475dad | 2014-07-04 11:59:57 -0300 | [diff] [blame] | 9508 | DRM_ERROR("Failed to write to D_COMP\n"); |
Paulo Zanoni | 3c4c9b8 | 2014-03-07 20:12:36 -0300 | [diff] [blame] | 9509 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 9510 | } else { |
Paulo Zanoni | 9ccd5ae | 2014-07-04 11:59:58 -0300 | [diff] [blame] | 9511 | I915_WRITE(D_COMP_BDW, val); |
| 9512 | POSTING_READ(D_COMP_BDW); |
Paulo Zanoni | 3c4c9b8 | 2014-03-07 20:12:36 -0300 | [diff] [blame] | 9513 | } |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9514 | } |
| 9515 | |
| 9516 | /* |
| 9517 | * This function implements pieces of two sequences from BSpec: |
| 9518 | * - Sequence for display software to disable LCPLL |
| 9519 | * - Sequence for display software to allow package C8+ |
| 9520 | * The steps implemented here are just the steps that actually touch the LCPLL |
| 9521 | * register. Callers should take care of disabling all the display engine |
| 9522 | * functions, doing the mode unset, fixing interrupts, etc. |
| 9523 | */ |
Paulo Zanoni | 6ff58d5 | 2013-09-24 13:52:57 -0300 | [diff] [blame] | 9524 | static void hsw_disable_lcpll(struct drm_i915_private *dev_priv, |
| 9525 | bool switch_to_fclk, bool allow_power_down) |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9526 | { |
| 9527 | uint32_t val; |
| 9528 | |
| 9529 | assert_can_disable_lcpll(dev_priv); |
| 9530 | |
| 9531 | val = I915_READ(LCPLL_CTL); |
| 9532 | |
| 9533 | if (switch_to_fclk) { |
| 9534 | val |= LCPLL_CD_SOURCE_FCLK; |
| 9535 | I915_WRITE(LCPLL_CTL, val); |
| 9536 | |
Imre Deak | f53dd63 | 2016-06-28 13:37:32 +0300 | [diff] [blame] | 9537 | if (wait_for_us(I915_READ(LCPLL_CTL) & |
| 9538 | LCPLL_CD_SOURCE_FCLK_DONE, 1)) |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9539 | DRM_ERROR("Switching to FCLK failed\n"); |
| 9540 | |
| 9541 | val = I915_READ(LCPLL_CTL); |
| 9542 | } |
| 9543 | |
| 9544 | val |= LCPLL_PLL_DISABLE; |
| 9545 | I915_WRITE(LCPLL_CTL, val); |
| 9546 | POSTING_READ(LCPLL_CTL); |
| 9547 | |
| 9548 | if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1)) |
| 9549 | DRM_ERROR("LCPLL still locked\n"); |
| 9550 | |
Paulo Zanoni | 9ccd5ae | 2014-07-04 11:59:58 -0300 | [diff] [blame] | 9551 | val = hsw_read_dcomp(dev_priv); |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9552 | val |= D_COMP_COMP_DISABLE; |
Paulo Zanoni | 3c4c9b8 | 2014-03-07 20:12:36 -0300 | [diff] [blame] | 9553 | hsw_write_dcomp(dev_priv, val); |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9554 | ndelay(100); |
| 9555 | |
Paulo Zanoni | 9ccd5ae | 2014-07-04 11:59:58 -0300 | [diff] [blame] | 9556 | if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0, |
| 9557 | 1)) |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9558 | DRM_ERROR("D_COMP RCOMP still in progress\n"); |
| 9559 | |
| 9560 | if (allow_power_down) { |
| 9561 | val = I915_READ(LCPLL_CTL); |
| 9562 | val |= LCPLL_POWER_DOWN_ALLOW; |
| 9563 | I915_WRITE(LCPLL_CTL, val); |
| 9564 | POSTING_READ(LCPLL_CTL); |
| 9565 | } |
| 9566 | } |
| 9567 | |
| 9568 | /* |
| 9569 | * Fully restores LCPLL, disallowing power down and switching back to LCPLL |
| 9570 | * source. |
| 9571 | */ |
Paulo Zanoni | 6ff58d5 | 2013-09-24 13:52:57 -0300 | [diff] [blame] | 9572 | static void hsw_restore_lcpll(struct drm_i915_private *dev_priv) |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9573 | { |
| 9574 | uint32_t val; |
| 9575 | |
| 9576 | val = I915_READ(LCPLL_CTL); |
| 9577 | |
| 9578 | if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK | |
| 9579 | LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK) |
| 9580 | return; |
| 9581 | |
Paulo Zanoni | a8a8bd5 | 2014-03-07 20:08:05 -0300 | [diff] [blame] | 9582 | /* |
| 9583 | * Make sure we're not on PC8 state before disabling PC8, otherwise |
| 9584 | * we'll hang the machine. To prevent PC8 state, just enable force_wake. |
Paulo Zanoni | a8a8bd5 | 2014-03-07 20:08:05 -0300 | [diff] [blame] | 9585 | */ |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 9586 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Paulo Zanoni | 215733f | 2013-08-19 13:18:07 -0300 | [diff] [blame] | 9587 | |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9588 | if (val & LCPLL_POWER_DOWN_ALLOW) { |
| 9589 | val &= ~LCPLL_POWER_DOWN_ALLOW; |
| 9590 | I915_WRITE(LCPLL_CTL, val); |
Daniel Vetter | 35d8f2e | 2013-08-21 23:38:08 +0200 | [diff] [blame] | 9591 | POSTING_READ(LCPLL_CTL); |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9592 | } |
| 9593 | |
Paulo Zanoni | 9ccd5ae | 2014-07-04 11:59:58 -0300 | [diff] [blame] | 9594 | val = hsw_read_dcomp(dev_priv); |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9595 | val |= D_COMP_COMP_FORCE; |
| 9596 | val &= ~D_COMP_COMP_DISABLE; |
Paulo Zanoni | 3c4c9b8 | 2014-03-07 20:12:36 -0300 | [diff] [blame] | 9597 | hsw_write_dcomp(dev_priv, val); |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9598 | |
| 9599 | val = I915_READ(LCPLL_CTL); |
| 9600 | val &= ~LCPLL_PLL_DISABLE; |
| 9601 | I915_WRITE(LCPLL_CTL, val); |
| 9602 | |
| 9603 | if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5)) |
| 9604 | DRM_ERROR("LCPLL not locked yet\n"); |
| 9605 | |
| 9606 | if (val & LCPLL_CD_SOURCE_FCLK) { |
| 9607 | val = I915_READ(LCPLL_CTL); |
| 9608 | val &= ~LCPLL_CD_SOURCE_FCLK; |
| 9609 | I915_WRITE(LCPLL_CTL, val); |
| 9610 | |
Imre Deak | f53dd63 | 2016-06-28 13:37:32 +0300 | [diff] [blame] | 9611 | if (wait_for_us((I915_READ(LCPLL_CTL) & |
| 9612 | LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1)) |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9613 | DRM_ERROR("Switching back to LCPLL failed\n"); |
| 9614 | } |
Paulo Zanoni | 215733f | 2013-08-19 13:18:07 -0300 | [diff] [blame] | 9615 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 9616 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Ville Syrjälä | b628305 | 2015-06-03 15:45:07 +0300 | [diff] [blame] | 9617 | intel_update_cdclk(dev_priv->dev); |
Paulo Zanoni | be256dc | 2013-07-23 11:19:26 -0300 | [diff] [blame] | 9618 | } |
| 9619 | |
Paulo Zanoni | 765dab67 | 2014-03-07 20:08:18 -0300 | [diff] [blame] | 9620 | /* |
| 9621 | * Package states C8 and deeper are really deep PC states that can only be |
| 9622 | * reached when all the devices on the system allow it, so even if the graphics |
| 9623 | * device allows PC8+, it doesn't mean the system will actually get to these |
| 9624 | * states. Our driver only allows PC8+ when going into runtime PM. |
| 9625 | * |
| 9626 | * The requirements for PC8+ are that all the outputs are disabled, the power |
| 9627 | * well is disabled and most interrupts are disabled, and these are also |
| 9628 | * requirements for runtime PM. When these conditions are met, we manually do |
| 9629 | * the other conditions: disable the interrupts, clocks and switch LCPLL refclk |
| 9630 | * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard |
| 9631 | * hang the machine. |
| 9632 | * |
| 9633 | * When we really reach PC8 or deeper states (not just when we allow it) we lose |
| 9634 | * the state of some registers, so when we come back from PC8+ we need to |
| 9635 | * restore this state. We don't get into PC8+ if we're not in RC6, so we don't |
| 9636 | * need to take care of the registers kept by RC6. Notice that this happens even |
| 9637 | * if we don't put the device in PCI D3 state (which is what currently happens |
| 9638 | * because of the runtime PM support). |
| 9639 | * |
| 9640 | * For more, read "Display Sequences for Package C8" on the hardware |
| 9641 | * documentation. |
| 9642 | */ |
Paulo Zanoni | a14cb6f | 2014-03-07 20:08:17 -0300 | [diff] [blame] | 9643 | void hsw_enable_pc8(struct drm_i915_private *dev_priv) |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9644 | { |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9645 | struct drm_device *dev = dev_priv->dev; |
| 9646 | uint32_t val; |
| 9647 | |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9648 | DRM_DEBUG_KMS("Enabling package C8+\n"); |
| 9649 | |
Ville Syrjälä | c269952 | 2015-08-27 23:55:59 +0300 | [diff] [blame] | 9650 | if (HAS_PCH_LPT_LP(dev)) { |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9651 | val = I915_READ(SOUTH_DSPCLK_GATE_D); |
| 9652 | val &= ~PCH_LP_PARTITION_LEVEL_DISABLE; |
| 9653 | I915_WRITE(SOUTH_DSPCLK_GATE_D, val); |
| 9654 | } |
| 9655 | |
| 9656 | lpt_disable_clkout_dp(dev); |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9657 | hsw_disable_lcpll(dev_priv, true, true); |
| 9658 | } |
| 9659 | |
Paulo Zanoni | a14cb6f | 2014-03-07 20:08:17 -0300 | [diff] [blame] | 9660 | void hsw_disable_pc8(struct drm_i915_private *dev_priv) |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9661 | { |
| 9662 | struct drm_device *dev = dev_priv->dev; |
| 9663 | uint32_t val; |
| 9664 | |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9665 | DRM_DEBUG_KMS("Disabling package C8+\n"); |
| 9666 | |
| 9667 | hsw_restore_lcpll(dev_priv); |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9668 | lpt_init_pch_refclk(dev); |
| 9669 | |
Ville Syrjälä | c269952 | 2015-08-27 23:55:59 +0300 | [diff] [blame] | 9670 | if (HAS_PCH_LPT_LP(dev)) { |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9671 | val = I915_READ(SOUTH_DSPCLK_GATE_D); |
| 9672 | val |= PCH_LP_PARTITION_LEVEL_DISABLE; |
| 9673 | I915_WRITE(SOUTH_DSPCLK_GATE_D, val); |
| 9674 | } |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 9675 | } |
| 9676 | |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 9677 | static void bxt_modeset_commit_cdclk(struct drm_atomic_state *old_state) |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 9678 | { |
Ander Conselvan de Oliveira | a821fc4 | 2015-04-21 17:13:23 +0300 | [diff] [blame] | 9679 | struct drm_device *dev = old_state->dev; |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 9680 | struct intel_atomic_state *old_intel_state = |
| 9681 | to_intel_atomic_state(old_state); |
| 9682 | unsigned int req_cdclk = old_intel_state->dev_cdclk; |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 9683 | |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 9684 | bxt_set_cdclk(to_i915(dev), req_cdclk); |
Vandana Kannan | f8437dd1 | 2014-11-24 13:37:39 +0530 | [diff] [blame] | 9685 | } |
| 9686 | |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9687 | /* compute the max rate for new configuration */ |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9688 | static int ilk_max_pixel_rate(struct drm_atomic_state *state) |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9689 | { |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 9690 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
| 9691 | struct drm_i915_private *dev_priv = state->dev->dev_private; |
| 9692 | struct drm_crtc *crtc; |
| 9693 | struct drm_crtc_state *cstate; |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9694 | struct intel_crtc_state *crtc_state; |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 9695 | unsigned max_pixel_rate = 0, i; |
| 9696 | enum pipe pipe; |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9697 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 9698 | memcpy(intel_state->min_pixclk, dev_priv->min_pixclk, |
| 9699 | sizeof(intel_state->min_pixclk)); |
| 9700 | |
| 9701 | for_each_crtc_in_state(state, crtc, cstate, i) { |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9702 | int pixel_rate; |
| 9703 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 9704 | crtc_state = to_intel_crtc_state(cstate); |
| 9705 | if (!crtc_state->base.enable) { |
| 9706 | intel_state->min_pixclk[i] = 0; |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9707 | continue; |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 9708 | } |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9709 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9710 | pixel_rate = ilk_pipe_pixel_rate(crtc_state); |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9711 | |
| 9712 | /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */ |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 9713 | if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled) |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9714 | pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95); |
| 9715 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 9716 | intel_state->min_pixclk[i] = pixel_rate; |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9717 | } |
| 9718 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 9719 | for_each_pipe(dev_priv, pipe) |
| 9720 | max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate); |
| 9721 | |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9722 | return max_pixel_rate; |
| 9723 | } |
| 9724 | |
| 9725 | static void broadwell_set_cdclk(struct drm_device *dev, int cdclk) |
| 9726 | { |
| 9727 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 9728 | uint32_t val, data; |
| 9729 | int ret; |
| 9730 | |
| 9731 | if (WARN((I915_READ(LCPLL_CTL) & |
| 9732 | (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK | |
| 9733 | LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE | |
| 9734 | LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW | |
| 9735 | LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK, |
| 9736 | "trying to change cdclk frequency with cdclk not enabled\n")) |
| 9737 | return; |
| 9738 | |
| 9739 | mutex_lock(&dev_priv->rps.hw_lock); |
| 9740 | ret = sandybridge_pcode_write(dev_priv, |
| 9741 | BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0); |
| 9742 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 9743 | if (ret) { |
| 9744 | DRM_ERROR("failed to inform pcode about cdclk change\n"); |
| 9745 | return; |
| 9746 | } |
| 9747 | |
| 9748 | val = I915_READ(LCPLL_CTL); |
| 9749 | val |= LCPLL_CD_SOURCE_FCLK; |
| 9750 | I915_WRITE(LCPLL_CTL, val); |
| 9751 | |
Tvrtko Ursulin | 5ba0017 | 2016-03-03 14:36:45 +0000 | [diff] [blame] | 9752 | if (wait_for_us(I915_READ(LCPLL_CTL) & |
| 9753 | LCPLL_CD_SOURCE_FCLK_DONE, 1)) |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9754 | DRM_ERROR("Switching to FCLK failed\n"); |
| 9755 | |
| 9756 | val = I915_READ(LCPLL_CTL); |
| 9757 | val &= ~LCPLL_CLK_FREQ_MASK; |
| 9758 | |
| 9759 | switch (cdclk) { |
| 9760 | case 450000: |
| 9761 | val |= LCPLL_CLK_FREQ_450; |
| 9762 | data = 0; |
| 9763 | break; |
| 9764 | case 540000: |
| 9765 | val |= LCPLL_CLK_FREQ_54O_BDW; |
| 9766 | data = 1; |
| 9767 | break; |
| 9768 | case 337500: |
| 9769 | val |= LCPLL_CLK_FREQ_337_5_BDW; |
| 9770 | data = 2; |
| 9771 | break; |
| 9772 | case 675000: |
| 9773 | val |= LCPLL_CLK_FREQ_675_BDW; |
| 9774 | data = 3; |
| 9775 | break; |
| 9776 | default: |
| 9777 | WARN(1, "invalid cdclk frequency\n"); |
| 9778 | return; |
| 9779 | } |
| 9780 | |
| 9781 | I915_WRITE(LCPLL_CTL, val); |
| 9782 | |
| 9783 | val = I915_READ(LCPLL_CTL); |
| 9784 | val &= ~LCPLL_CD_SOURCE_FCLK; |
| 9785 | I915_WRITE(LCPLL_CTL, val); |
| 9786 | |
Tvrtko Ursulin | 5ba0017 | 2016-03-03 14:36:45 +0000 | [diff] [blame] | 9787 | if (wait_for_us((I915_READ(LCPLL_CTL) & |
| 9788 | LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1)) |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9789 | DRM_ERROR("Switching back to LCPLL failed\n"); |
| 9790 | |
| 9791 | mutex_lock(&dev_priv->rps.hw_lock); |
| 9792 | sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data); |
| 9793 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 9794 | |
Ville Syrjälä | 7f1052a | 2016-04-26 19:46:32 +0300 | [diff] [blame] | 9795 | I915_WRITE(CDCLK_FREQ, DIV_ROUND_CLOSEST(cdclk, 1000) - 1); |
| 9796 | |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9797 | intel_update_cdclk(dev); |
| 9798 | |
| 9799 | WARN(cdclk != dev_priv->cdclk_freq, |
| 9800 | "cdclk requested %d kHz but got %d kHz\n", |
| 9801 | cdclk, dev_priv->cdclk_freq); |
| 9802 | } |
| 9803 | |
Ville Syrjälä | 587c791 | 2016-05-11 22:44:41 +0300 | [diff] [blame] | 9804 | static int broadwell_calc_cdclk(int max_pixclk) |
| 9805 | { |
| 9806 | if (max_pixclk > 540000) |
| 9807 | return 675000; |
| 9808 | else if (max_pixclk > 450000) |
| 9809 | return 540000; |
| 9810 | else if (max_pixclk > 337500) |
| 9811 | return 450000; |
| 9812 | else |
| 9813 | return 337500; |
| 9814 | } |
| 9815 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9816 | static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state) |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9817 | { |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9818 | struct drm_i915_private *dev_priv = to_i915(state->dev); |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 9819 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9820 | int max_pixclk = ilk_max_pixel_rate(state); |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9821 | int cdclk; |
| 9822 | |
| 9823 | /* |
| 9824 | * FIXME should also account for plane ratio |
| 9825 | * once 64bpp pixel formats are supported. |
| 9826 | */ |
Ville Syrjälä | 587c791 | 2016-05-11 22:44:41 +0300 | [diff] [blame] | 9827 | cdclk = broadwell_calc_cdclk(max_pixclk); |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9828 | |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9829 | if (cdclk > dev_priv->max_cdclk_freq) { |
Maarten Lankhorst | 63ba534 | 2015-11-24 11:29:03 +0100 | [diff] [blame] | 9830 | DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n", |
| 9831 | cdclk, dev_priv->max_cdclk_freq); |
| 9832 | return -EINVAL; |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9833 | } |
| 9834 | |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 9835 | intel_state->cdclk = intel_state->dev_cdclk = cdclk; |
| 9836 | if (!intel_state->active_crtcs) |
Ville Syrjälä | 587c791 | 2016-05-11 22:44:41 +0300 | [diff] [blame] | 9837 | intel_state->dev_cdclk = broadwell_calc_cdclk(0); |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9838 | |
| 9839 | return 0; |
| 9840 | } |
| 9841 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9842 | static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state) |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9843 | { |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9844 | struct drm_device *dev = old_state->dev; |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 9845 | struct intel_atomic_state *old_intel_state = |
| 9846 | to_intel_atomic_state(old_state); |
| 9847 | unsigned req_cdclk = old_intel_state->dev_cdclk; |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9848 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 9849 | broadwell_set_cdclk(dev, req_cdclk); |
Ville Syrjälä | b432e5c | 2015-06-03 15:45:13 +0300 | [diff] [blame] | 9850 | } |
| 9851 | |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 9852 | static int skl_modeset_calc_cdclk(struct drm_atomic_state *state) |
| 9853 | { |
| 9854 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
| 9855 | struct drm_i915_private *dev_priv = to_i915(state->dev); |
| 9856 | const int max_pixclk = ilk_max_pixel_rate(state); |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 9857 | int vco = intel_state->cdclk_pll_vco; |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 9858 | int cdclk; |
| 9859 | |
| 9860 | /* |
| 9861 | * FIXME should also account for plane ratio |
| 9862 | * once 64bpp pixel formats are supported. |
| 9863 | */ |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 9864 | cdclk = skl_calc_cdclk(max_pixclk, vco); |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 9865 | |
| 9866 | /* |
| 9867 | * FIXME move the cdclk caclulation to |
| 9868 | * compute_config() so we can fail gracegully. |
| 9869 | */ |
| 9870 | if (cdclk > dev_priv->max_cdclk_freq) { |
| 9871 | DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n", |
| 9872 | cdclk, dev_priv->max_cdclk_freq); |
| 9873 | cdclk = dev_priv->max_cdclk_freq; |
| 9874 | } |
| 9875 | |
| 9876 | intel_state->cdclk = intel_state->dev_cdclk = cdclk; |
| 9877 | if (!intel_state->active_crtcs) |
Ville Syrjälä | a8ca493 | 2016-05-13 23:41:23 +0300 | [diff] [blame] | 9878 | intel_state->dev_cdclk = skl_calc_cdclk(0, vco); |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 9879 | |
| 9880 | return 0; |
| 9881 | } |
| 9882 | |
| 9883 | static void skl_modeset_commit_cdclk(struct drm_atomic_state *old_state) |
| 9884 | { |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 9885 | struct drm_i915_private *dev_priv = to_i915(old_state->dev); |
| 9886 | struct intel_atomic_state *intel_state = to_intel_atomic_state(old_state); |
| 9887 | unsigned int req_cdclk = intel_state->dev_cdclk; |
| 9888 | unsigned int req_vco = intel_state->cdclk_pll_vco; |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 9889 | |
Ville Syrjälä | 1cd593e | 2016-05-13 23:41:26 +0300 | [diff] [blame] | 9890 | skl_set_cdclk(dev_priv, req_cdclk, req_vco); |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 9891 | } |
| 9892 | |
Ander Conselvan de Oliveira | 190f68c | 2015-01-15 14:55:23 +0200 | [diff] [blame] | 9893 | static int haswell_crtc_compute_clock(struct intel_crtc *crtc, |
| 9894 | struct intel_crtc_state *crtc_state) |
Paulo Zanoni | 09b4ddf | 2012-10-05 12:05:55 -0300 | [diff] [blame] | 9895 | { |
Mika Kahola | af3997b | 2016-02-05 13:29:28 +0200 | [diff] [blame] | 9896 | struct intel_encoder *intel_encoder = |
| 9897 | intel_ddi_get_crtc_new_encoder(crtc_state); |
| 9898 | |
| 9899 | if (intel_encoder->type != INTEL_OUTPUT_DSI) { |
| 9900 | if (!intel_ddi_pll_select(crtc, crtc_state)) |
| 9901 | return -EINVAL; |
| 9902 | } |
Daniel Vetter | 716c2e5 | 2014-06-25 22:02:02 +0300 | [diff] [blame] | 9903 | |
Ander Conselvan de Oliveira | c765319 | 2014-10-20 13:46:44 +0300 | [diff] [blame] | 9904 | crtc->lowfreq_avail = false; |
Daniel Vetter | 644cef3 | 2014-04-24 23:55:07 +0200 | [diff] [blame] | 9905 | |
Daniel Vetter | c8f7a0d | 2014-04-24 23:55:04 +0200 | [diff] [blame] | 9906 | return 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 9907 | } |
| 9908 | |
Satheeshakrishna M | 3760b59 | 2014-08-22 09:49:11 +0530 | [diff] [blame] | 9909 | static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv, |
| 9910 | enum port port, |
| 9911 | struct intel_crtc_state *pipe_config) |
| 9912 | { |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9913 | enum intel_dpll_id id; |
| 9914 | |
Satheeshakrishna M | 3760b59 | 2014-08-22 09:49:11 +0530 | [diff] [blame] | 9915 | switch (port) { |
| 9916 | case PORT_A: |
| 9917 | pipe_config->ddi_pll_sel = SKL_DPLL0; |
Imre Deak | 08250c4 | 2016-03-14 19:55:34 +0200 | [diff] [blame] | 9918 | id = DPLL_ID_SKL_DPLL0; |
Satheeshakrishna M | 3760b59 | 2014-08-22 09:49:11 +0530 | [diff] [blame] | 9919 | break; |
| 9920 | case PORT_B: |
| 9921 | pipe_config->ddi_pll_sel = SKL_DPLL1; |
Imre Deak | 08250c4 | 2016-03-14 19:55:34 +0200 | [diff] [blame] | 9922 | id = DPLL_ID_SKL_DPLL1; |
Satheeshakrishna M | 3760b59 | 2014-08-22 09:49:11 +0530 | [diff] [blame] | 9923 | break; |
| 9924 | case PORT_C: |
| 9925 | pipe_config->ddi_pll_sel = SKL_DPLL2; |
Imre Deak | 08250c4 | 2016-03-14 19:55:34 +0200 | [diff] [blame] | 9926 | id = DPLL_ID_SKL_DPLL2; |
Satheeshakrishna M | 3760b59 | 2014-08-22 09:49:11 +0530 | [diff] [blame] | 9927 | break; |
| 9928 | default: |
| 9929 | DRM_ERROR("Incorrect port type\n"); |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9930 | return; |
Satheeshakrishna M | 3760b59 | 2014-08-22 09:49:11 +0530 | [diff] [blame] | 9931 | } |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9932 | |
| 9933 | pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id); |
Satheeshakrishna M | 3760b59 | 2014-08-22 09:49:11 +0530 | [diff] [blame] | 9934 | } |
| 9935 | |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9936 | static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv, |
| 9937 | enum port port, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 9938 | struct intel_crtc_state *pipe_config) |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9939 | { |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9940 | enum intel_dpll_id id; |
Ander Conselvan de Oliveira | a3c988e | 2016-03-08 17:46:27 +0200 | [diff] [blame] | 9941 | u32 temp; |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9942 | |
| 9943 | temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port); |
| 9944 | pipe_config->ddi_pll_sel = temp >> (port * 3 + 1); |
| 9945 | |
| 9946 | switch (pipe_config->ddi_pll_sel) { |
Damien Lespiau | 3148ade | 2014-11-21 16:14:56 +0000 | [diff] [blame] | 9947 | case SKL_DPLL0: |
Ander Conselvan de Oliveira | a3c988e | 2016-03-08 17:46:27 +0200 | [diff] [blame] | 9948 | id = DPLL_ID_SKL_DPLL0; |
| 9949 | break; |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9950 | case SKL_DPLL1: |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9951 | id = DPLL_ID_SKL_DPLL1; |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9952 | break; |
| 9953 | case SKL_DPLL2: |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9954 | id = DPLL_ID_SKL_DPLL2; |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9955 | break; |
| 9956 | case SKL_DPLL3: |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9957 | id = DPLL_ID_SKL_DPLL3; |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9958 | break; |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9959 | default: |
| 9960 | MISSING_CASE(pipe_config->ddi_pll_sel); |
| 9961 | return; |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9962 | } |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9963 | |
| 9964 | pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id); |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 9965 | } |
| 9966 | |
Damien Lespiau | 7d2c817 | 2014-07-29 18:06:18 +0100 | [diff] [blame] | 9967 | static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv, |
| 9968 | enum port port, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 9969 | struct intel_crtc_state *pipe_config) |
Damien Lespiau | 7d2c817 | 2014-07-29 18:06:18 +0100 | [diff] [blame] | 9970 | { |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9971 | enum intel_dpll_id id; |
| 9972 | |
Damien Lespiau | 7d2c817 | 2014-07-29 18:06:18 +0100 | [diff] [blame] | 9973 | pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port)); |
| 9974 | |
| 9975 | switch (pipe_config->ddi_pll_sel) { |
| 9976 | case PORT_CLK_SEL_WRPLL1: |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9977 | id = DPLL_ID_WRPLL1; |
Damien Lespiau | 7d2c817 | 2014-07-29 18:06:18 +0100 | [diff] [blame] | 9978 | break; |
| 9979 | case PORT_CLK_SEL_WRPLL2: |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9980 | id = DPLL_ID_WRPLL2; |
Damien Lespiau | 7d2c817 | 2014-07-29 18:06:18 +0100 | [diff] [blame] | 9981 | break; |
Maarten Lankhorst | 00490c2 | 2015-11-16 14:42:12 +0100 | [diff] [blame] | 9982 | case PORT_CLK_SEL_SPLL: |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9983 | id = DPLL_ID_SPLL; |
Ville Syrjälä | 79bd23d | 2015-12-01 23:32:07 +0200 | [diff] [blame] | 9984 | break; |
Ander Conselvan de Oliveira | 9d16da6 | 2016-03-08 17:46:26 +0200 | [diff] [blame] | 9985 | case PORT_CLK_SEL_LCPLL_810: |
| 9986 | id = DPLL_ID_LCPLL_810; |
| 9987 | break; |
| 9988 | case PORT_CLK_SEL_LCPLL_1350: |
| 9989 | id = DPLL_ID_LCPLL_1350; |
| 9990 | break; |
| 9991 | case PORT_CLK_SEL_LCPLL_2700: |
| 9992 | id = DPLL_ID_LCPLL_2700; |
| 9993 | break; |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9994 | default: |
| 9995 | MISSING_CASE(pipe_config->ddi_pll_sel); |
| 9996 | /* fall through */ |
| 9997 | case PORT_CLK_SEL_NONE: |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 9998 | return; |
Damien Lespiau | 7d2c817 | 2014-07-29 18:06:18 +0100 | [diff] [blame] | 9999 | } |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 10000 | |
| 10001 | pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id); |
Damien Lespiau | 7d2c817 | 2014-07-29 18:06:18 +0100 | [diff] [blame] | 10002 | } |
| 10003 | |
Jani Nikula | cf30429 | 2016-03-18 17:05:41 +0200 | [diff] [blame] | 10004 | static bool hsw_get_transcoder_state(struct intel_crtc *crtc, |
| 10005 | struct intel_crtc_state *pipe_config, |
| 10006 | unsigned long *power_domain_mask) |
| 10007 | { |
| 10008 | struct drm_device *dev = crtc->base.dev; |
| 10009 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 10010 | enum intel_display_power_domain power_domain; |
| 10011 | u32 tmp; |
| 10012 | |
Imre Deak | d9a7bc6 | 2016-05-12 16:18:50 +0300 | [diff] [blame] | 10013 | /* |
| 10014 | * The pipe->transcoder mapping is fixed with the exception of the eDP |
| 10015 | * transcoder handled below. |
| 10016 | */ |
Jani Nikula | cf30429 | 2016-03-18 17:05:41 +0200 | [diff] [blame] | 10017 | pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe; |
| 10018 | |
| 10019 | /* |
| 10020 | * XXX: Do intel_display_power_get_if_enabled before reading this (for |
| 10021 | * consistency and less surprising code; it's in always on power). |
| 10022 | */ |
| 10023 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP)); |
| 10024 | if (tmp & TRANS_DDI_FUNC_ENABLE) { |
| 10025 | enum pipe trans_edp_pipe; |
| 10026 | switch (tmp & TRANS_DDI_EDP_INPUT_MASK) { |
| 10027 | default: |
| 10028 | WARN(1, "unknown pipe linked to edp transcoder\n"); |
| 10029 | case TRANS_DDI_EDP_INPUT_A_ONOFF: |
| 10030 | case TRANS_DDI_EDP_INPUT_A_ON: |
| 10031 | trans_edp_pipe = PIPE_A; |
| 10032 | break; |
| 10033 | case TRANS_DDI_EDP_INPUT_B_ONOFF: |
| 10034 | trans_edp_pipe = PIPE_B; |
| 10035 | break; |
| 10036 | case TRANS_DDI_EDP_INPUT_C_ONOFF: |
| 10037 | trans_edp_pipe = PIPE_C; |
| 10038 | break; |
| 10039 | } |
| 10040 | |
| 10041 | if (trans_edp_pipe == crtc->pipe) |
| 10042 | pipe_config->cpu_transcoder = TRANSCODER_EDP; |
| 10043 | } |
| 10044 | |
| 10045 | power_domain = POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder); |
| 10046 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) |
| 10047 | return false; |
| 10048 | *power_domain_mask |= BIT(power_domain); |
| 10049 | |
| 10050 | tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder)); |
| 10051 | |
| 10052 | return tmp & PIPECONF_ENABLE; |
| 10053 | } |
| 10054 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 10055 | static bool bxt_get_dsi_transcoder_state(struct intel_crtc *crtc, |
| 10056 | struct intel_crtc_state *pipe_config, |
| 10057 | unsigned long *power_domain_mask) |
| 10058 | { |
| 10059 | struct drm_device *dev = crtc->base.dev; |
| 10060 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 10061 | enum intel_display_power_domain power_domain; |
| 10062 | enum port port; |
| 10063 | enum transcoder cpu_transcoder; |
| 10064 | u32 tmp; |
| 10065 | |
| 10066 | pipe_config->has_dsi_encoder = false; |
| 10067 | |
| 10068 | for_each_port_masked(port, BIT(PORT_A) | BIT(PORT_C)) { |
| 10069 | if (port == PORT_A) |
| 10070 | cpu_transcoder = TRANSCODER_DSI_A; |
| 10071 | else |
| 10072 | cpu_transcoder = TRANSCODER_DSI_C; |
| 10073 | |
| 10074 | power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder); |
| 10075 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) |
| 10076 | continue; |
| 10077 | *power_domain_mask |= BIT(power_domain); |
| 10078 | |
Imre Deak | db18b6a | 2016-03-24 12:41:40 +0200 | [diff] [blame] | 10079 | /* |
| 10080 | * The PLL needs to be enabled with a valid divider |
| 10081 | * configuration, otherwise accessing DSI registers will hang |
| 10082 | * the machine. See BSpec North Display Engine |
| 10083 | * registers/MIPI[BXT]. We can break out here early, since we |
| 10084 | * need the same DSI PLL to be enabled for both DSI ports. |
| 10085 | */ |
| 10086 | if (!intel_dsi_pll_is_enabled(dev_priv)) |
| 10087 | break; |
| 10088 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 10089 | /* XXX: this works for video mode only */ |
| 10090 | tmp = I915_READ(BXT_MIPI_PORT_CTRL(port)); |
| 10091 | if (!(tmp & DPI_ENABLE)) |
| 10092 | continue; |
| 10093 | |
| 10094 | tmp = I915_READ(MIPI_CTRL(port)); |
| 10095 | if ((tmp & BXT_PIPE_SELECT_MASK) != BXT_PIPE_SELECT(crtc->pipe)) |
| 10096 | continue; |
| 10097 | |
| 10098 | pipe_config->cpu_transcoder = cpu_transcoder; |
| 10099 | pipe_config->has_dsi_encoder = true; |
| 10100 | break; |
| 10101 | } |
| 10102 | |
| 10103 | return pipe_config->has_dsi_encoder; |
| 10104 | } |
| 10105 | |
Daniel Vetter | 26804af | 2014-06-25 22:01:55 +0300 | [diff] [blame] | 10106 | static void haswell_get_ddi_port_state(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 10107 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 26804af | 2014-06-25 22:01:55 +0300 | [diff] [blame] | 10108 | { |
| 10109 | struct drm_device *dev = crtc->base.dev; |
| 10110 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | d452c5b | 2014-07-04 11:27:39 -0300 | [diff] [blame] | 10111 | struct intel_shared_dpll *pll; |
Daniel Vetter | 26804af | 2014-06-25 22:01:55 +0300 | [diff] [blame] | 10112 | enum port port; |
| 10113 | uint32_t tmp; |
| 10114 | |
| 10115 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder)); |
| 10116 | |
| 10117 | port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT; |
| 10118 | |
Rodrigo Vivi | ef11bdb | 2015-10-28 04:16:45 -0700 | [diff] [blame] | 10119 | if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 10120 | skylake_get_ddi_pll(dev_priv, port, pipe_config); |
Satheeshakrishna M | 3760b59 | 2014-08-22 09:49:11 +0530 | [diff] [blame] | 10121 | else if (IS_BROXTON(dev)) |
| 10122 | bxt_get_ddi_pll(dev_priv, port, pipe_config); |
Satheeshakrishna M | 96b7dfb | 2014-11-13 14:55:17 +0000 | [diff] [blame] | 10123 | else |
| 10124 | haswell_get_ddi_pll(dev_priv, port, pipe_config); |
Daniel Vetter | 9cd8693 | 2014-06-25 22:01:57 +0300 | [diff] [blame] | 10125 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 10126 | pll = pipe_config->shared_dpll; |
| 10127 | if (pll) { |
Ander Conselvan de Oliveira | 2edd644 | 2016-03-08 17:46:21 +0200 | [diff] [blame] | 10128 | WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll, |
| 10129 | &pipe_config->dpll_hw_state)); |
Daniel Vetter | d452c5b | 2014-07-04 11:27:39 -0300 | [diff] [blame] | 10130 | } |
| 10131 | |
Daniel Vetter | 26804af | 2014-06-25 22:01:55 +0300 | [diff] [blame] | 10132 | /* |
| 10133 | * Haswell has only FDI/PCH transcoder A. It is which is connected to |
| 10134 | * DDI E. So just check whether this pipe is wired to DDI E and whether |
| 10135 | * the PCH transcoder is on. |
| 10136 | */ |
Damien Lespiau | ca37045 | 2013-12-03 13:56:24 +0000 | [diff] [blame] | 10137 | if (INTEL_INFO(dev)->gen < 9 && |
| 10138 | (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) { |
Daniel Vetter | 26804af | 2014-06-25 22:01:55 +0300 | [diff] [blame] | 10139 | pipe_config->has_pch_encoder = true; |
| 10140 | |
| 10141 | tmp = I915_READ(FDI_RX_CTL(PIPE_A)); |
| 10142 | pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >> |
| 10143 | FDI_DP_PORT_WIDTH_SHIFT) + 1; |
| 10144 | |
| 10145 | ironlake_get_fdi_m_n_config(crtc, pipe_config); |
| 10146 | } |
| 10147 | } |
| 10148 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 10149 | static bool haswell_get_pipe_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 10150 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 10151 | { |
| 10152 | struct drm_device *dev = crtc->base.dev; |
| 10153 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 10154 | enum intel_display_power_domain power_domain; |
| 10155 | unsigned long power_domain_mask; |
Jani Nikula | cf30429 | 2016-03-18 17:05:41 +0200 | [diff] [blame] | 10156 | bool active; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 10157 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 10158 | power_domain = POWER_DOMAIN_PIPE(crtc->pipe); |
| 10159 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) |
Imre Deak | b5482bd | 2014-03-05 16:20:55 +0200 | [diff] [blame] | 10160 | return false; |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 10161 | power_domain_mask = BIT(power_domain); |
| 10162 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 10163 | pipe_config->shared_dpll = NULL; |
Daniel Vetter | c0d43d6 | 2013-06-07 23:11:08 +0200 | [diff] [blame] | 10164 | |
Jani Nikula | cf30429 | 2016-03-18 17:05:41 +0200 | [diff] [blame] | 10165 | active = hsw_get_transcoder_state(crtc, pipe_config, &power_domain_mask); |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 10166 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 10167 | if (IS_BROXTON(dev_priv)) { |
| 10168 | bxt_get_dsi_transcoder_state(crtc, pipe_config, |
| 10169 | &power_domain_mask); |
| 10170 | WARN_ON(active && pipe_config->has_dsi_encoder); |
| 10171 | if (pipe_config->has_dsi_encoder) |
| 10172 | active = true; |
| 10173 | } |
| 10174 | |
Jani Nikula | cf30429 | 2016-03-18 17:05:41 +0200 | [diff] [blame] | 10175 | if (!active) |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 10176 | goto out; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 10177 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 10178 | if (!pipe_config->has_dsi_encoder) { |
| 10179 | haswell_get_ddi_port_state(crtc, pipe_config); |
| 10180 | intel_get_pipe_timings(crtc, pipe_config); |
| 10181 | } |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 10182 | |
Jani Nikula | bc58be6 | 2016-03-18 17:05:39 +0200 | [diff] [blame] | 10183 | intel_get_pipe_src_size(crtc, pipe_config); |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 10184 | |
Lionel Landwerlin | 05dc698 | 2016-03-16 10:57:15 +0000 | [diff] [blame] | 10185 | pipe_config->gamma_mode = |
| 10186 | I915_READ(GAMMA_MODE(crtc->pipe)) & GAMMA_MODE_MODE_MASK; |
| 10187 | |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 10188 | if (INTEL_INFO(dev)->gen >= 9) { |
| 10189 | skl_init_scalers(dev, crtc, pipe_config); |
| 10190 | } |
| 10191 | |
Chandra Konduru | af99ced | 2015-05-11 14:35:47 -0700 | [diff] [blame] | 10192 | if (INTEL_INFO(dev)->gen >= 9) { |
| 10193 | pipe_config->scaler_state.scaler_id = -1; |
| 10194 | pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX); |
| 10195 | } |
| 10196 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 10197 | power_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe); |
| 10198 | if (intel_display_power_get_if_enabled(dev_priv, power_domain)) { |
| 10199 | power_domain_mask |= BIT(power_domain); |
Rodrigo Vivi | 1c132b4 | 2015-09-02 15:19:26 -0700 | [diff] [blame] | 10200 | if (INTEL_INFO(dev)->gen >= 9) |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 10201 | skylake_get_pfit_config(crtc, pipe_config); |
Jesse Barnes | ff6d9f5 | 2015-01-21 17:19:54 -0800 | [diff] [blame] | 10202 | else |
Rodrigo Vivi | 1c132b4 | 2015-09-02 15:19:26 -0700 | [diff] [blame] | 10203 | ironlake_get_pfit_config(crtc, pipe_config); |
Jesse Barnes | bd2e244 | 2014-11-13 17:51:47 +0000 | [diff] [blame] | 10204 | } |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 10205 | |
Jesse Barnes | e59150d | 2014-01-07 13:30:45 -0800 | [diff] [blame] | 10206 | if (IS_HASWELL(dev)) |
| 10207 | pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) && |
| 10208 | (I915_READ(IPS_CTL) & IPS_ENABLE); |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 10209 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 10210 | if (pipe_config->cpu_transcoder != TRANSCODER_EDP && |
| 10211 | !transcoder_is_dsi(pipe_config->cpu_transcoder)) { |
Clint Taylor | ebb69c9 | 2014-09-30 10:30:22 -0700 | [diff] [blame] | 10212 | pipe_config->pixel_multiplier = |
| 10213 | I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1; |
| 10214 | } else { |
| 10215 | pipe_config->pixel_multiplier = 1; |
| 10216 | } |
Daniel Vetter | 6c49f24 | 2013-06-06 12:45:25 +0200 | [diff] [blame] | 10217 | |
Imre Deak | 1729050 | 2016-02-12 18:55:11 +0200 | [diff] [blame] | 10218 | out: |
| 10219 | for_each_power_domain(power_domain, power_domain_mask) |
| 10220 | intel_display_power_put(dev_priv, power_domain); |
| 10221 | |
Jani Nikula | cf30429 | 2016-03-18 17:05:41 +0200 | [diff] [blame] | 10222 | return active; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 10223 | } |
| 10224 | |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10225 | static void i845_update_cursor(struct drm_crtc *crtc, u32 base, |
| 10226 | const struct intel_plane_state *plane_state) |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 10227 | { |
| 10228 | struct drm_device *dev = crtc->dev; |
| 10229 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 10230 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 10231 | uint32_t cntl = 0, size = 0; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 10232 | |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10233 | if (plane_state && plane_state->visible) { |
| 10234 | unsigned int width = plane_state->base.crtc_w; |
| 10235 | unsigned int height = plane_state->base.crtc_h; |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 10236 | unsigned int stride = roundup_pow_of_two(width) * 4; |
| 10237 | |
| 10238 | switch (stride) { |
| 10239 | default: |
| 10240 | WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n", |
| 10241 | width, stride); |
| 10242 | stride = 256; |
| 10243 | /* fallthrough */ |
| 10244 | case 256: |
| 10245 | case 512: |
| 10246 | case 1024: |
| 10247 | case 2048: |
| 10248 | break; |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 10249 | } |
| 10250 | |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 10251 | cntl |= CURSOR_ENABLE | |
| 10252 | CURSOR_GAMMA_ENABLE | |
| 10253 | CURSOR_FORMAT_ARGB | |
| 10254 | CURSOR_STRIDE(stride); |
| 10255 | |
| 10256 | size = (height << 12) | width; |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 10257 | } |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 10258 | |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 10259 | if (intel_crtc->cursor_cntl != 0 && |
| 10260 | (intel_crtc->cursor_base != base || |
| 10261 | intel_crtc->cursor_size != size || |
| 10262 | intel_crtc->cursor_cntl != cntl)) { |
| 10263 | /* On these chipsets we can only modify the base/size/stride |
| 10264 | * whilst the cursor is disabled. |
| 10265 | */ |
Ville Syrjälä | 0b87c24 | 2015-09-22 19:47:51 +0300 | [diff] [blame] | 10266 | I915_WRITE(CURCNTR(PIPE_A), 0); |
| 10267 | POSTING_READ(CURCNTR(PIPE_A)); |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 10268 | intel_crtc->cursor_cntl = 0; |
| 10269 | } |
| 10270 | |
Ville Syrjälä | 99d1f38 | 2014-09-12 20:53:32 +0300 | [diff] [blame] | 10271 | if (intel_crtc->cursor_base != base) { |
Ville Syrjälä | 0b87c24 | 2015-09-22 19:47:51 +0300 | [diff] [blame] | 10272 | I915_WRITE(CURBASE(PIPE_A), base); |
Ville Syrjälä | 99d1f38 | 2014-09-12 20:53:32 +0300 | [diff] [blame] | 10273 | intel_crtc->cursor_base = base; |
| 10274 | } |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 10275 | |
| 10276 | if (intel_crtc->cursor_size != size) { |
| 10277 | I915_WRITE(CURSIZE, size); |
| 10278 | intel_crtc->cursor_size = size; |
| 10279 | } |
| 10280 | |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 10281 | if (intel_crtc->cursor_cntl != cntl) { |
Ville Syrjälä | 0b87c24 | 2015-09-22 19:47:51 +0300 | [diff] [blame] | 10282 | I915_WRITE(CURCNTR(PIPE_A), cntl); |
| 10283 | POSTING_READ(CURCNTR(PIPE_A)); |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 10284 | intel_crtc->cursor_cntl = cntl; |
| 10285 | } |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 10286 | } |
| 10287 | |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10288 | static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base, |
| 10289 | const struct intel_plane_state *plane_state) |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 10290 | { |
| 10291 | struct drm_device *dev = crtc->dev; |
| 10292 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 10293 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 10294 | int pipe = intel_crtc->pipe; |
Ville Syrjälä | 663f312 | 2015-12-14 13:16:48 +0200 | [diff] [blame] | 10295 | uint32_t cntl = 0; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 10296 | |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10297 | if (plane_state && plane_state->visible) { |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 10298 | cntl = MCURSOR_GAMMA_ENABLE; |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10299 | switch (plane_state->base.crtc_w) { |
Sagar Kamble | 4726e0b | 2014-03-10 17:06:23 +0530 | [diff] [blame] | 10300 | case 64: |
| 10301 | cntl |= CURSOR_MODE_64_ARGB_AX; |
| 10302 | break; |
| 10303 | case 128: |
| 10304 | cntl |= CURSOR_MODE_128_ARGB_AX; |
| 10305 | break; |
| 10306 | case 256: |
| 10307 | cntl |= CURSOR_MODE_256_ARGB_AX; |
| 10308 | break; |
| 10309 | default: |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10310 | MISSING_CASE(plane_state->base.crtc_w); |
Sagar Kamble | 4726e0b | 2014-03-10 17:06:23 +0530 | [diff] [blame] | 10311 | return; |
Chris Wilson | 560b85b | 2010-08-07 11:01:38 +0100 | [diff] [blame] | 10312 | } |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 10313 | cntl |= pipe << 28; /* Connect to correct pipe */ |
Ville Syrjälä | 47bf17a | 2014-09-12 20:53:33 +0300 | [diff] [blame] | 10314 | |
Bob Paauwe | fc6f93b | 2015-08-31 14:03:30 -0700 | [diff] [blame] | 10315 | if (HAS_DDI(dev)) |
Ville Syrjälä | 47bf17a | 2014-09-12 20:53:33 +0300 | [diff] [blame] | 10316 | cntl |= CURSOR_PIPE_CSC_ENABLE; |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 10317 | |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10318 | if (plane_state->base.rotation == BIT(DRM_ROTATE_180)) |
| 10319 | cntl |= CURSOR_ROTATE_180; |
| 10320 | } |
Ville Syrjälä | 4398ad4 | 2014-10-23 07:41:34 -0700 | [diff] [blame] | 10321 | |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 10322 | if (intel_crtc->cursor_cntl != cntl) { |
| 10323 | I915_WRITE(CURCNTR(pipe), cntl); |
| 10324 | POSTING_READ(CURCNTR(pipe)); |
| 10325 | intel_crtc->cursor_cntl = cntl; |
| 10326 | } |
| 10327 | |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 10328 | /* and commit changes on next vblank */ |
Ville Syrjälä | 5efb3e2 | 2014-04-09 13:28:53 +0300 | [diff] [blame] | 10329 | I915_WRITE(CURBASE(pipe), base); |
| 10330 | POSTING_READ(CURBASE(pipe)); |
Ville Syrjälä | 99d1f38 | 2014-09-12 20:53:32 +0300 | [diff] [blame] | 10331 | |
| 10332 | intel_crtc->cursor_base = base; |
Jesse Barnes | 65a21cd | 2011-10-12 11:10:21 -0700 | [diff] [blame] | 10333 | } |
| 10334 | |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 10335 | /* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */ |
Chris Wilson | 6b383a7 | 2010-09-13 13:54:26 +0100 | [diff] [blame] | 10336 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10337 | const struct intel_plane_state *plane_state) |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 10338 | { |
| 10339 | struct drm_device *dev = crtc->dev; |
| 10340 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 10341 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 10342 | int pipe = intel_crtc->pipe; |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10343 | u32 base = intel_crtc->cursor_addr; |
| 10344 | u32 pos = 0; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 10345 | |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10346 | if (plane_state) { |
| 10347 | int x = plane_state->base.crtc_x; |
| 10348 | int y = plane_state->base.crtc_y; |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 10349 | |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10350 | if (x < 0) { |
| 10351 | pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; |
| 10352 | x = -x; |
| 10353 | } |
| 10354 | pos |= x << CURSOR_X_SHIFT; |
| 10355 | |
| 10356 | if (y < 0) { |
| 10357 | pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT; |
| 10358 | y = -y; |
| 10359 | } |
| 10360 | pos |= y << CURSOR_Y_SHIFT; |
| 10361 | |
| 10362 | /* ILK+ do this automagically */ |
| 10363 | if (HAS_GMCH_DISPLAY(dev) && |
| 10364 | plane_state->base.rotation == BIT(DRM_ROTATE_180)) { |
| 10365 | base += (plane_state->base.crtc_h * |
| 10366 | plane_state->base.crtc_w - 1) * 4; |
| 10367 | } |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 10368 | } |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 10369 | |
Ville Syrjälä | 5efb3e2 | 2014-04-09 13:28:53 +0300 | [diff] [blame] | 10370 | I915_WRITE(CURPOS(pipe), pos); |
| 10371 | |
Ville Syrjälä | 8ac5466 | 2014-08-12 19:39:54 +0300 | [diff] [blame] | 10372 | if (IS_845G(dev) || IS_I865G(dev)) |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10373 | i845_update_cursor(crtc, base, plane_state); |
Ville Syrjälä | 5efb3e2 | 2014-04-09 13:28:53 +0300 | [diff] [blame] | 10374 | else |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 10375 | i9xx_update_cursor(crtc, base, plane_state); |
Chris Wilson | cda4b7d | 2010-07-09 08:45:04 +0100 | [diff] [blame] | 10376 | } |
| 10377 | |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 10378 | static bool cursor_size_ok(struct drm_device *dev, |
| 10379 | uint32_t width, uint32_t height) |
| 10380 | { |
| 10381 | if (width == 0 || height == 0) |
| 10382 | return false; |
| 10383 | |
| 10384 | /* |
| 10385 | * 845g/865g are special in that they are only limited by |
| 10386 | * the width of their cursors, the height is arbitrary up to |
| 10387 | * the precision of the register. Everything else requires |
| 10388 | * square cursors, limited to a few power-of-two sizes. |
| 10389 | */ |
| 10390 | if (IS_845G(dev) || IS_I865G(dev)) { |
| 10391 | if ((width & 63) != 0) |
| 10392 | return false; |
| 10393 | |
| 10394 | if (width > (IS_845G(dev) ? 64 : 512)) |
| 10395 | return false; |
| 10396 | |
| 10397 | if (height > 1023) |
| 10398 | return false; |
| 10399 | } else { |
| 10400 | switch (width | height) { |
| 10401 | case 256: |
| 10402 | case 128: |
| 10403 | if (IS_GEN2(dev)) |
| 10404 | return false; |
| 10405 | case 64: |
| 10406 | break; |
| 10407 | default: |
| 10408 | return false; |
| 10409 | } |
| 10410 | } |
| 10411 | |
| 10412 | return true; |
| 10413 | } |
| 10414 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10415 | /* VESA 640x480x72Hz mode to set on the pipe */ |
| 10416 | static struct drm_display_mode load_detect_mode = { |
| 10417 | DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664, |
| 10418 | 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC), |
| 10419 | }; |
| 10420 | |
Daniel Vetter | a8bb681 | 2014-02-10 18:00:39 +0100 | [diff] [blame] | 10421 | struct drm_framebuffer * |
| 10422 | __intel_framebuffer_create(struct drm_device *dev, |
| 10423 | struct drm_mode_fb_cmd2 *mode_cmd, |
| 10424 | struct drm_i915_gem_object *obj) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10425 | { |
| 10426 | struct intel_framebuffer *intel_fb; |
| 10427 | int ret; |
| 10428 | |
| 10429 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
Lukas Wunner | dcb1394 | 2015-07-04 11:50:58 +0200 | [diff] [blame] | 10430 | if (!intel_fb) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10431 | return ERR_PTR(-ENOMEM); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10432 | |
| 10433 | ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj); |
Daniel Vetter | dd4916c | 2013-10-09 21:23:51 +0200 | [diff] [blame] | 10434 | if (ret) |
| 10435 | goto err; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10436 | |
| 10437 | return &intel_fb->base; |
Daniel Vetter | dd4916c | 2013-10-09 21:23:51 +0200 | [diff] [blame] | 10438 | |
Lukas Wunner | dcb1394 | 2015-07-04 11:50:58 +0200 | [diff] [blame] | 10439 | err: |
| 10440 | kfree(intel_fb); |
Daniel Vetter | dd4916c | 2013-10-09 21:23:51 +0200 | [diff] [blame] | 10441 | return ERR_PTR(ret); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10442 | } |
| 10443 | |
Daniel Vetter | b5ea642 | 2014-03-02 21:18:00 +0100 | [diff] [blame] | 10444 | static struct drm_framebuffer * |
Daniel Vetter | a8bb681 | 2014-02-10 18:00:39 +0100 | [diff] [blame] | 10445 | intel_framebuffer_create(struct drm_device *dev, |
| 10446 | struct drm_mode_fb_cmd2 *mode_cmd, |
| 10447 | struct drm_i915_gem_object *obj) |
| 10448 | { |
| 10449 | struct drm_framebuffer *fb; |
| 10450 | int ret; |
| 10451 | |
| 10452 | ret = i915_mutex_lock_interruptible(dev); |
| 10453 | if (ret) |
| 10454 | return ERR_PTR(ret); |
| 10455 | fb = __intel_framebuffer_create(dev, mode_cmd, obj); |
| 10456 | mutex_unlock(&dev->struct_mutex); |
| 10457 | |
| 10458 | return fb; |
| 10459 | } |
| 10460 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10461 | static u32 |
| 10462 | intel_framebuffer_pitch_for_width(int width, int bpp) |
| 10463 | { |
| 10464 | u32 pitch = DIV_ROUND_UP(width * bpp, 8); |
| 10465 | return ALIGN(pitch, 64); |
| 10466 | } |
| 10467 | |
| 10468 | static u32 |
| 10469 | intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp) |
| 10470 | { |
| 10471 | u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp); |
Fabian Frederick | 1267a26 | 2014-07-01 20:39:41 +0200 | [diff] [blame] | 10472 | return PAGE_ALIGN(pitch * mode->vdisplay); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10473 | } |
| 10474 | |
| 10475 | static struct drm_framebuffer * |
| 10476 | intel_framebuffer_create_for_mode(struct drm_device *dev, |
| 10477 | struct drm_display_mode *mode, |
| 10478 | int depth, int bpp) |
| 10479 | { |
Lukas Wunner | dcb1394 | 2015-07-04 11:50:58 +0200 | [diff] [blame] | 10480 | struct drm_framebuffer *fb; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10481 | struct drm_i915_gem_object *obj; |
Chris Wilson | 0fed39b | 2012-11-05 22:25:07 +0000 | [diff] [blame] | 10482 | struct drm_mode_fb_cmd2 mode_cmd = { 0 }; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10483 | |
Dave Gordon | d37cd8a | 2016-04-22 19:14:32 +0100 | [diff] [blame] | 10484 | obj = i915_gem_object_create(dev, |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10485 | intel_framebuffer_size_for_mode(mode, bpp)); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 10486 | if (IS_ERR(obj)) |
| 10487 | return ERR_CAST(obj); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10488 | |
| 10489 | mode_cmd.width = mode->hdisplay; |
| 10490 | mode_cmd.height = mode->vdisplay; |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 10491 | mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width, |
| 10492 | bpp); |
Dave Airlie | 5ca0c34 | 2012-02-23 15:33:40 +0000 | [diff] [blame] | 10493 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10494 | |
Lukas Wunner | dcb1394 | 2015-07-04 11:50:58 +0200 | [diff] [blame] | 10495 | fb = intel_framebuffer_create(dev, &mode_cmd, obj); |
| 10496 | if (IS_ERR(fb)) |
| 10497 | drm_gem_object_unreference_unlocked(&obj->base); |
| 10498 | |
| 10499 | return fb; |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10500 | } |
| 10501 | |
| 10502 | static struct drm_framebuffer * |
| 10503 | mode_fits_in_fbdev(struct drm_device *dev, |
| 10504 | struct drm_display_mode *mode) |
| 10505 | { |
Daniel Vetter | 0695726 | 2015-08-10 13:34:08 +0200 | [diff] [blame] | 10506 | #ifdef CONFIG_DRM_FBDEV_EMULATION |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10507 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 10508 | struct drm_i915_gem_object *obj; |
| 10509 | struct drm_framebuffer *fb; |
| 10510 | |
Daniel Vetter | 4c0e552 | 2014-02-14 16:35:54 +0100 | [diff] [blame] | 10511 | if (!dev_priv->fbdev) |
| 10512 | return NULL; |
| 10513 | |
| 10514 | if (!dev_priv->fbdev->fb) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10515 | return NULL; |
| 10516 | |
Jesse Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 10517 | obj = dev_priv->fbdev->fb->obj; |
Daniel Vetter | 4c0e552 | 2014-02-14 16:35:54 +0100 | [diff] [blame] | 10518 | BUG_ON(!obj); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10519 | |
Jesse Barnes | 8bcd455 | 2014-02-07 12:10:38 -0800 | [diff] [blame] | 10520 | fb = &dev_priv->fbdev->fb->base; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 10521 | if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay, |
| 10522 | fb->bits_per_pixel)) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10523 | return NULL; |
| 10524 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 10525 | if (obj->base.size < mode->vdisplay * fb->pitches[0]) |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10526 | return NULL; |
| 10527 | |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10528 | drm_framebuffer_reference(fb); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10529 | return fb; |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 10530 | #else |
| 10531 | return NULL; |
| 10532 | #endif |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10533 | } |
| 10534 | |
Ander Conselvan de Oliveira | d3a40d1 | 2015-04-21 17:13:09 +0300 | [diff] [blame] | 10535 | static int intel_modeset_setup_plane_state(struct drm_atomic_state *state, |
| 10536 | struct drm_crtc *crtc, |
| 10537 | struct drm_display_mode *mode, |
| 10538 | struct drm_framebuffer *fb, |
| 10539 | int x, int y) |
| 10540 | { |
| 10541 | struct drm_plane_state *plane_state; |
| 10542 | int hdisplay, vdisplay; |
| 10543 | int ret; |
| 10544 | |
| 10545 | plane_state = drm_atomic_get_plane_state(state, crtc->primary); |
| 10546 | if (IS_ERR(plane_state)) |
| 10547 | return PTR_ERR(plane_state); |
| 10548 | |
| 10549 | if (mode) |
| 10550 | drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay); |
| 10551 | else |
| 10552 | hdisplay = vdisplay = 0; |
| 10553 | |
| 10554 | ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL); |
| 10555 | if (ret) |
| 10556 | return ret; |
| 10557 | drm_atomic_set_fb_for_plane(plane_state, fb); |
| 10558 | plane_state->crtc_x = 0; |
| 10559 | plane_state->crtc_y = 0; |
| 10560 | plane_state->crtc_w = hdisplay; |
| 10561 | plane_state->crtc_h = vdisplay; |
| 10562 | plane_state->src_x = x << 16; |
| 10563 | plane_state->src_y = y << 16; |
| 10564 | plane_state->src_w = hdisplay << 16; |
| 10565 | plane_state->src_h = vdisplay << 16; |
| 10566 | |
| 10567 | return 0; |
| 10568 | } |
| 10569 | |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 10570 | bool intel_get_load_detect_pipe(struct drm_connector *connector, |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 10571 | struct drm_display_mode *mode, |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 10572 | struct intel_load_detect_pipe *old, |
| 10573 | struct drm_modeset_acquire_ctx *ctx) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10574 | { |
| 10575 | struct intel_crtc *intel_crtc; |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 10576 | struct intel_encoder *intel_encoder = |
| 10577 | intel_attached_encoder(connector); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10578 | struct drm_crtc *possible_crtc; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 10579 | struct drm_encoder *encoder = &intel_encoder->base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10580 | struct drm_crtc *crtc = NULL; |
| 10581 | struct drm_device *dev = encoder->dev; |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 10582 | struct drm_framebuffer *fb; |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 10583 | struct drm_mode_config *config = &dev->mode_config; |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10584 | struct drm_atomic_state *state = NULL, *restore_state = NULL; |
Ander Conselvan de Oliveira | 944b0c7 | 2015-03-20 16:18:07 +0200 | [diff] [blame] | 10585 | struct drm_connector_state *connector_state; |
Ander Conselvan de Oliveira | 4be0731 | 2015-04-21 17:13:01 +0300 | [diff] [blame] | 10586 | struct intel_crtc_state *crtc_state; |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 10587 | int ret, i = -1; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10588 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10589 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 10590 | connector->base.id, connector->name, |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 10591 | encoder->base.id, encoder->name); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10592 | |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10593 | old->restore_state = NULL; |
| 10594 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 10595 | retry: |
| 10596 | ret = drm_modeset_lock(&config->connection_mutex, ctx); |
| 10597 | if (ret) |
Maarten Lankhorst | ad3c558 | 2015-07-13 16:30:26 +0200 | [diff] [blame] | 10598 | goto fail; |
Daniel Vetter | 6e9f798 | 2014-05-29 23:54:47 +0200 | [diff] [blame] | 10599 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10600 | /* |
| 10601 | * Algorithm gets a little messy: |
Chris Wilson | 7a5e480 | 2011-04-19 23:21:12 +0100 | [diff] [blame] | 10602 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10603 | * - if the connector already has an assigned crtc, use it (but make |
| 10604 | * sure it's on first) |
Chris Wilson | 7a5e480 | 2011-04-19 23:21:12 +0100 | [diff] [blame] | 10605 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10606 | * - try to find the first unused crtc that can drive this connector, |
| 10607 | * and use that if we find one |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10608 | */ |
| 10609 | |
| 10610 | /* See if we already have a CRTC for this connector */ |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10611 | if (connector->state->crtc) { |
| 10612 | crtc = connector->state->crtc; |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 10613 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 10614 | ret = drm_modeset_lock(&crtc->mutex, ctx); |
| 10615 | if (ret) |
Maarten Lankhorst | ad3c558 | 2015-07-13 16:30:26 +0200 | [diff] [blame] | 10616 | goto fail; |
Chris Wilson | 8261b19 | 2011-04-19 23:18:09 +0100 | [diff] [blame] | 10617 | |
| 10618 | /* Make sure the crtc and connector are running */ |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10619 | goto found; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10620 | } |
| 10621 | |
| 10622 | /* Find an unused one (if possible) */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 10623 | for_each_crtc(dev, possible_crtc) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10624 | i++; |
| 10625 | if (!(encoder->possible_crtcs & (1 << i))) |
| 10626 | continue; |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10627 | |
| 10628 | ret = drm_modeset_lock(&possible_crtc->mutex, ctx); |
| 10629 | if (ret) |
| 10630 | goto fail; |
| 10631 | |
| 10632 | if (possible_crtc->state->enable) { |
| 10633 | drm_modeset_unlock(&possible_crtc->mutex); |
Ville Syrjälä | a459249 | 2014-08-11 13:15:36 +0300 | [diff] [blame] | 10634 | continue; |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10635 | } |
Ville Syrjälä | a459249 | 2014-08-11 13:15:36 +0300 | [diff] [blame] | 10636 | |
| 10637 | crtc = possible_crtc; |
| 10638 | break; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10639 | } |
| 10640 | |
| 10641 | /* |
| 10642 | * If we didn't find an unused CRTC, don't use any. |
| 10643 | */ |
| 10644 | if (!crtc) { |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 10645 | DRM_DEBUG_KMS("no pipe available for load-detect\n"); |
Maarten Lankhorst | ad3c558 | 2015-07-13 16:30:26 +0200 | [diff] [blame] | 10646 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10647 | } |
| 10648 | |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10649 | found: |
| 10650 | intel_crtc = to_intel_crtc(crtc); |
| 10651 | |
Daniel Vetter | 4d02e2d | 2014-11-11 10:12:00 +0100 | [diff] [blame] | 10652 | ret = drm_modeset_lock(&crtc->primary->mutex, ctx); |
| 10653 | if (ret) |
Maarten Lankhorst | ad3c558 | 2015-07-13 16:30:26 +0200 | [diff] [blame] | 10654 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10655 | |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 10656 | state = drm_atomic_state_alloc(dev); |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10657 | restore_state = drm_atomic_state_alloc(dev); |
| 10658 | if (!state || !restore_state) { |
| 10659 | ret = -ENOMEM; |
| 10660 | goto fail; |
| 10661 | } |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 10662 | |
| 10663 | state->acquire_ctx = ctx; |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10664 | restore_state->acquire_ctx = ctx; |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 10665 | |
Ander Conselvan de Oliveira | 944b0c7 | 2015-03-20 16:18:07 +0200 | [diff] [blame] | 10666 | connector_state = drm_atomic_get_connector_state(state, connector); |
| 10667 | if (IS_ERR(connector_state)) { |
| 10668 | ret = PTR_ERR(connector_state); |
| 10669 | goto fail; |
| 10670 | } |
| 10671 | |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10672 | ret = drm_atomic_set_crtc_for_connector(connector_state, crtc); |
| 10673 | if (ret) |
| 10674 | goto fail; |
Ander Conselvan de Oliveira | 944b0c7 | 2015-03-20 16:18:07 +0200 | [diff] [blame] | 10675 | |
Ander Conselvan de Oliveira | 4be0731 | 2015-04-21 17:13:01 +0300 | [diff] [blame] | 10676 | crtc_state = intel_atomic_get_crtc_state(state, intel_crtc); |
| 10677 | if (IS_ERR(crtc_state)) { |
| 10678 | ret = PTR_ERR(crtc_state); |
| 10679 | goto fail; |
| 10680 | } |
| 10681 | |
Maarten Lankhorst | 49d6fa2 | 2015-05-11 10:45:15 +0200 | [diff] [blame] | 10682 | crtc_state->base.active = crtc_state->base.enable = true; |
Ander Conselvan de Oliveira | 4be0731 | 2015-04-21 17:13:01 +0300 | [diff] [blame] | 10683 | |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 10684 | if (!mode) |
| 10685 | mode = &load_detect_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10686 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10687 | /* We need a framebuffer large enough to accommodate all accesses |
| 10688 | * that the plane may generate whilst we perform load detection. |
| 10689 | * We can not rely on the fbcon either being present (we get called |
| 10690 | * during its initialisation to detect all boot displays, or it may |
| 10691 | * not even exist) or that it is large enough to satisfy the |
| 10692 | * requested mode. |
| 10693 | */ |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 10694 | fb = mode_fits_in_fbdev(dev, mode); |
| 10695 | if (fb == NULL) { |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10696 | DRM_DEBUG_KMS("creating tmp fb for load-detection\n"); |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 10697 | fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10698 | } else |
| 10699 | DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n"); |
Daniel Vetter | 94352cf | 2012-07-05 22:51:56 +0200 | [diff] [blame] | 10700 | if (IS_ERR(fb)) { |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10701 | DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n"); |
Ville Syrjälä | 412b61d | 2014-01-17 15:59:39 +0200 | [diff] [blame] | 10702 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10703 | } |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10704 | |
Ander Conselvan de Oliveira | d3a40d1 | 2015-04-21 17:13:09 +0300 | [diff] [blame] | 10705 | ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0); |
| 10706 | if (ret) |
| 10707 | goto fail; |
| 10708 | |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10709 | drm_framebuffer_unreference(fb); |
| 10710 | |
| 10711 | ret = drm_atomic_set_mode_for_crtc(&crtc_state->base, mode); |
| 10712 | if (ret) |
| 10713 | goto fail; |
| 10714 | |
| 10715 | ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state, connector)); |
| 10716 | if (!ret) |
| 10717 | ret = PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state, crtc)); |
| 10718 | if (!ret) |
| 10719 | ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(restore_state, crtc->primary)); |
| 10720 | if (ret) { |
| 10721 | DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret); |
| 10722 | goto fail; |
| 10723 | } |
Ander Conselvan de Oliveira | 8c7b5cc | 2015-04-21 17:13:19 +0300 | [diff] [blame] | 10724 | |
Maarten Lankhorst | 3ba8607 | 2016-02-29 09:18:57 +0100 | [diff] [blame] | 10725 | ret = drm_atomic_commit(state); |
| 10726 | if (ret) { |
Chris Wilson | 6492711 | 2011-04-20 07:25:26 +0100 | [diff] [blame] | 10727 | DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n"); |
Ville Syrjälä | 412b61d | 2014-01-17 15:59:39 +0200 | [diff] [blame] | 10728 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10729 | } |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10730 | |
| 10731 | old->restore_state = restore_state; |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 10732 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10733 | /* let the connector get through one full cycle before testing */ |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 10734 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 10735 | return true; |
Ville Syrjälä | 412b61d | 2014-01-17 15:59:39 +0200 | [diff] [blame] | 10736 | |
Maarten Lankhorst | ad3c558 | 2015-07-13 16:30:26 +0200 | [diff] [blame] | 10737 | fail: |
Ander Conselvan de Oliveira | e5d958e | 2015-04-21 17:12:57 +0300 | [diff] [blame] | 10738 | drm_atomic_state_free(state); |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10739 | drm_atomic_state_free(restore_state); |
| 10740 | restore_state = state = NULL; |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 10741 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 10742 | if (ret == -EDEADLK) { |
| 10743 | drm_modeset_backoff(ctx); |
| 10744 | goto retry; |
| 10745 | } |
| 10746 | |
Ville Syrjälä | 412b61d | 2014-01-17 15:59:39 +0200 | [diff] [blame] | 10747 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10748 | } |
| 10749 | |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 10750 | void intel_release_load_detect_pipe(struct drm_connector *connector, |
Ander Conselvan de Oliveira | 49172fe | 2015-03-20 16:18:02 +0200 | [diff] [blame] | 10751 | struct intel_load_detect_pipe *old, |
| 10752 | struct drm_modeset_acquire_ctx *ctx) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10753 | { |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 10754 | struct intel_encoder *intel_encoder = |
| 10755 | intel_attached_encoder(connector); |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 10756 | struct drm_encoder *encoder = &intel_encoder->base; |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10757 | struct drm_atomic_state *state = old->restore_state; |
Ander Conselvan de Oliveira | d3a40d1 | 2015-04-21 17:13:09 +0300 | [diff] [blame] | 10758 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10759 | |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10760 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 10761 | connector->base.id, connector->name, |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 10762 | encoder->base.id, encoder->name); |
Chris Wilson | d2dff87 | 2011-04-19 08:36:26 +0100 | [diff] [blame] | 10763 | |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10764 | if (!state) |
Chris Wilson | 0622a53 | 2011-04-21 09:32:11 +0100 | [diff] [blame] | 10765 | return; |
Maarten Lankhorst | edde361 | 2016-02-17 09:18:35 +0100 | [diff] [blame] | 10766 | |
| 10767 | ret = drm_atomic_commit(state); |
| 10768 | if (ret) { |
| 10769 | DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret); |
| 10770 | drm_atomic_state_free(state); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10771 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10772 | } |
| 10773 | |
Ville Syrjälä | da4a1ef | 2013-09-09 14:06:37 +0300 | [diff] [blame] | 10774 | static int i9xx_pll_refclk(struct drm_device *dev, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 10775 | const struct intel_crtc_state *pipe_config) |
Ville Syrjälä | da4a1ef | 2013-09-09 14:06:37 +0300 | [diff] [blame] | 10776 | { |
| 10777 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 10778 | u32 dpll = pipe_config->dpll_hw_state.dpll; |
| 10779 | |
| 10780 | if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN) |
Ville Syrjälä | e91e941 | 2013-12-09 18:54:16 +0200 | [diff] [blame] | 10781 | return dev_priv->vbt.lvds_ssc_freq; |
Ville Syrjälä | da4a1ef | 2013-09-09 14:06:37 +0300 | [diff] [blame] | 10782 | else if (HAS_PCH_SPLIT(dev)) |
| 10783 | return 120000; |
| 10784 | else if (!IS_GEN2(dev)) |
| 10785 | return 96000; |
| 10786 | else |
| 10787 | return 48000; |
| 10788 | } |
| 10789 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10790 | /* Returns the clock of the currently programmed mode of the given pipe. */ |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10791 | static void i9xx_crtc_clock_get(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 10792 | struct intel_crtc_state *pipe_config) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10793 | { |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10794 | struct drm_device *dev = crtc->base.dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10795 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10796 | int pipe = pipe_config->cpu_transcoder; |
Ville Syrjälä | 293623f | 2013-09-13 16:18:46 +0300 | [diff] [blame] | 10797 | u32 dpll = pipe_config->dpll_hw_state.dpll; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10798 | u32 fp; |
Ander Conselvan de Oliveira | 9e2c847 | 2016-05-04 12:11:57 +0300 | [diff] [blame] | 10799 | struct dpll clock; |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 10800 | int port_clock; |
Ville Syrjälä | da4a1ef | 2013-09-09 14:06:37 +0300 | [diff] [blame] | 10801 | int refclk = i9xx_pll_refclk(dev, pipe_config); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10802 | |
| 10803 | if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0) |
Ville Syrjälä | 293623f | 2013-09-13 16:18:46 +0300 | [diff] [blame] | 10804 | fp = pipe_config->dpll_hw_state.fp0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10805 | else |
Ville Syrjälä | 293623f | 2013-09-13 16:18:46 +0300 | [diff] [blame] | 10806 | fp = pipe_config->dpll_hw_state.fp1; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10807 | |
| 10808 | clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT; |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 10809 | if (IS_PINEVIEW(dev)) { |
| 10810 | clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1; |
| 10811 | clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT; |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 10812 | } else { |
| 10813 | clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT; |
| 10814 | clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT; |
| 10815 | } |
| 10816 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 10817 | if (!IS_GEN2(dev)) { |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 10818 | if (IS_PINEVIEW(dev)) |
| 10819 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >> |
| 10820 | DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW); |
Shaohua Li | 2177832 | 2009-02-23 15:19:16 +0800 | [diff] [blame] | 10821 | else |
| 10822 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10823 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
| 10824 | |
| 10825 | switch (dpll & DPLL_MODE_MASK) { |
| 10826 | case DPLLB_MODE_DAC_SERIAL: |
| 10827 | clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ? |
| 10828 | 5 : 10; |
| 10829 | break; |
| 10830 | case DPLLB_MODE_LVDS: |
| 10831 | clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ? |
| 10832 | 7 : 14; |
| 10833 | break; |
| 10834 | default: |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 10835 | DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed " |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10836 | "mode\n", (int)(dpll & DPLL_MODE_MASK)); |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10837 | return; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10838 | } |
| 10839 | |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame] | 10840 | if (IS_PINEVIEW(dev)) |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 10841 | port_clock = pnv_calc_dpll_params(refclk, &clock); |
Daniel Vetter | ac58c3f | 2013-06-01 17:16:17 +0200 | [diff] [blame] | 10842 | else |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 10843 | port_clock = i9xx_calc_dpll_params(refclk, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10844 | } else { |
Ville Syrjälä | 0fb5822 | 2014-01-10 14:06:46 +0200 | [diff] [blame] | 10845 | u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS); |
Ville Syrjälä | b1c560d | 2013-12-09 18:54:13 +0200 | [diff] [blame] | 10846 | bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10847 | |
| 10848 | if (is_lvds) { |
| 10849 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> |
| 10850 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
Ville Syrjälä | b1c560d | 2013-12-09 18:54:13 +0200 | [diff] [blame] | 10851 | |
| 10852 | if (lvds & LVDS_CLKB_POWER_UP) |
| 10853 | clock.p2 = 7; |
| 10854 | else |
| 10855 | clock.p2 = 14; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10856 | } else { |
| 10857 | if (dpll & PLL_P1_DIVIDE_BY_TWO) |
| 10858 | clock.p1 = 2; |
| 10859 | else { |
| 10860 | clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >> |
| 10861 | DPLL_FPA01_P1_POST_DIV_SHIFT) + 2; |
| 10862 | } |
| 10863 | if (dpll & PLL_P2_DIVIDE_BY_4) |
| 10864 | clock.p2 = 4; |
| 10865 | else |
| 10866 | clock.p2 = 2; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10867 | } |
Ville Syrjälä | da4a1ef | 2013-09-09 14:06:37 +0300 | [diff] [blame] | 10868 | |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 10869 | port_clock = i9xx_calc_dpll_params(refclk, &clock); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10870 | } |
| 10871 | |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 10872 | /* |
| 10873 | * This value includes pixel_multiplier. We will use |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 10874 | * port_clock to compute adjusted_mode.crtc_clock in the |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 10875 | * encoder's get_config() function. |
| 10876 | */ |
Imre Deak | dccbea3 | 2015-06-22 23:35:51 +0300 | [diff] [blame] | 10877 | pipe_config->port_clock = port_clock; |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10878 | } |
| 10879 | |
Ville Syrjälä | 6878da0 | 2013-09-13 15:59:11 +0300 | [diff] [blame] | 10880 | int intel_dotclock_calculate(int link_freq, |
| 10881 | const struct intel_link_m_n *m_n) |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10882 | { |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10883 | /* |
| 10884 | * The calculation for the data clock is: |
Ville Syrjälä | 1041a02 | 2013-09-06 23:28:58 +0300 | [diff] [blame] | 10885 | * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10886 | * But we want to avoid losing precison if possible, so: |
Ville Syrjälä | 1041a02 | 2013-09-06 23:28:58 +0300 | [diff] [blame] | 10887 | * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp)) |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10888 | * |
| 10889 | * and the link clock is simpler: |
Ville Syrjälä | 1041a02 | 2013-09-06 23:28:58 +0300 | [diff] [blame] | 10890 | * link_clock = (m * link_clock) / n |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10891 | */ |
| 10892 | |
Ville Syrjälä | 6878da0 | 2013-09-13 15:59:11 +0300 | [diff] [blame] | 10893 | if (!m_n->link_n) |
| 10894 | return 0; |
| 10895 | |
| 10896 | return div_u64((u64)m_n->link_m * link_freq, m_n->link_n); |
| 10897 | } |
| 10898 | |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 10899 | static void ironlake_pch_clock_get(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 10900 | struct intel_crtc_state *pipe_config) |
Ville Syrjälä | 6878da0 | 2013-09-13 15:59:11 +0300 | [diff] [blame] | 10901 | { |
Ville Syrjälä | e3b247d | 2016-02-17 21:41:09 +0200 | [diff] [blame] | 10902 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 10903 | |
| 10904 | /* read out port_clock from the DPLL */ |
| 10905 | i9xx_crtc_clock_get(crtc, pipe_config); |
Ville Syrjälä | 6878da0 | 2013-09-13 15:59:11 +0300 | [diff] [blame] | 10906 | |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10907 | /* |
Ville Syrjälä | e3b247d | 2016-02-17 21:41:09 +0200 | [diff] [blame] | 10908 | * In case there is an active pipe without active ports, |
| 10909 | * we may need some idea for the dotclock anyway. |
| 10910 | * Calculate one based on the FDI configuration. |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10911 | */ |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 10912 | pipe_config->base.adjusted_mode.crtc_clock = |
Ville Syrjälä | 21a727b | 2016-02-17 21:41:10 +0200 | [diff] [blame] | 10913 | intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config), |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 10914 | &pipe_config->fdi_m_n); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10915 | } |
| 10916 | |
| 10917 | /** Returns the currently programmed mode of the given pipe. */ |
| 10918 | struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev, |
| 10919 | struct drm_crtc *crtc) |
| 10920 | { |
Jesse Barnes | 548f245 | 2011-02-17 10:40:53 -0800 | [diff] [blame] | 10921 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10922 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 10923 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10924 | struct drm_display_mode *mode; |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 10925 | struct intel_crtc_state *pipe_config; |
Paulo Zanoni | fe2b8f9 | 2012-10-23 18:30:02 -0200 | [diff] [blame] | 10926 | int htot = I915_READ(HTOTAL(cpu_transcoder)); |
| 10927 | int hsync = I915_READ(HSYNC(cpu_transcoder)); |
| 10928 | int vtot = I915_READ(VTOTAL(cpu_transcoder)); |
| 10929 | int vsync = I915_READ(VSYNC(cpu_transcoder)); |
Ville Syrjälä | 293623f | 2013-09-13 16:18:46 +0300 | [diff] [blame] | 10930 | enum pipe pipe = intel_crtc->pipe; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10931 | |
| 10932 | mode = kzalloc(sizeof(*mode), GFP_KERNEL); |
| 10933 | if (!mode) |
| 10934 | return NULL; |
| 10935 | |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 10936 | pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL); |
| 10937 | if (!pipe_config) { |
| 10938 | kfree(mode); |
| 10939 | return NULL; |
| 10940 | } |
| 10941 | |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10942 | /* |
| 10943 | * Construct a pipe_config sufficient for getting the clock info |
| 10944 | * back out of crtc_clock_get. |
| 10945 | * |
| 10946 | * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need |
| 10947 | * to use a real value here instead. |
| 10948 | */ |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 10949 | pipe_config->cpu_transcoder = (enum transcoder) pipe; |
| 10950 | pipe_config->pixel_multiplier = 1; |
| 10951 | pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(pipe)); |
| 10952 | pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(pipe)); |
| 10953 | pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(pipe)); |
| 10954 | i9xx_crtc_clock_get(intel_crtc, pipe_config); |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 10955 | |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 10956 | mode->clock = pipe_config->port_clock / pipe_config->pixel_multiplier; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10957 | mode->hdisplay = (htot & 0xffff) + 1; |
| 10958 | mode->htotal = ((htot & 0xffff0000) >> 16) + 1; |
| 10959 | mode->hsync_start = (hsync & 0xffff) + 1; |
| 10960 | mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1; |
| 10961 | mode->vdisplay = (vtot & 0xffff) + 1; |
| 10962 | mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; |
| 10963 | mode->vsync_start = (vsync & 0xffff) + 1; |
| 10964 | mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1; |
| 10965 | |
| 10966 | drm_mode_set_name(mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10967 | |
Tvrtko Ursulin | 3f36b93 | 2016-01-19 15:25:17 +0000 | [diff] [blame] | 10968 | kfree(pipe_config); |
| 10969 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10970 | return mode; |
| 10971 | } |
| 10972 | |
Tvrtko Ursulin | 7d99373 | 2016-04-28 12:57:00 +0100 | [diff] [blame] | 10973 | void intel_mark_busy(struct drm_i915_private *dev_priv) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 10974 | { |
Chris Wilson | f62a007 | 2014-02-21 17:55:39 +0000 | [diff] [blame] | 10975 | if (dev_priv->mm.busy) |
| 10976 | return; |
| 10977 | |
Paulo Zanoni | 43694d6 | 2014-03-07 20:08:08 -0300 | [diff] [blame] | 10978 | intel_runtime_pm_get(dev_priv); |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 10979 | i915_update_gfx_val(dev_priv); |
Tvrtko Ursulin | 7d99373 | 2016-04-28 12:57:00 +0100 | [diff] [blame] | 10980 | if (INTEL_GEN(dev_priv) >= 6) |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 10981 | gen6_rps_busy(dev_priv); |
Chris Wilson | f62a007 | 2014-02-21 17:55:39 +0000 | [diff] [blame] | 10982 | dev_priv->mm.busy = true; |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 10983 | } |
| 10984 | |
Tvrtko Ursulin | 7d99373 | 2016-04-28 12:57:00 +0100 | [diff] [blame] | 10985 | void intel_mark_idle(struct drm_i915_private *dev_priv) |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 10986 | { |
Chris Wilson | f62a007 | 2014-02-21 17:55:39 +0000 | [diff] [blame] | 10987 | if (!dev_priv->mm.busy) |
| 10988 | return; |
| 10989 | |
| 10990 | dev_priv->mm.busy = false; |
| 10991 | |
Tvrtko Ursulin | 7d99373 | 2016-04-28 12:57:00 +0100 | [diff] [blame] | 10992 | if (INTEL_GEN(dev_priv) >= 6) |
| 10993 | gen6_rps_idle(dev_priv); |
Paulo Zanoni | bb4cdd5 | 2014-02-21 13:52:19 -0300 | [diff] [blame] | 10994 | |
Paulo Zanoni | 43694d6 | 2014-03-07 20:08:08 -0300 | [diff] [blame] | 10995 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 10996 | } |
| 10997 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 10998 | static void intel_crtc_destroy(struct drm_crtc *crtc) |
| 10999 | { |
| 11000 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 11001 | struct drm_device *dev = crtc->dev; |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11002 | struct intel_flip_work *work; |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 11003 | |
Daniel Vetter | 5e2d7af | 2014-09-15 14:55:22 +0200 | [diff] [blame] | 11004 | spin_lock_irq(&dev->event_lock); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11005 | work = intel_crtc->flip_work; |
| 11006 | intel_crtc->flip_work = NULL; |
| 11007 | spin_unlock_irq(&dev->event_lock); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 11008 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11009 | if (work) { |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11010 | cancel_work_sync(&work->mmio_work); |
| 11011 | cancel_work_sync(&work->unpin_work); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11012 | kfree(work); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 11013 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 11014 | |
| 11015 | drm_crtc_cleanup(crtc); |
Daniel Vetter | 67e77c5 | 2010-08-20 22:26:30 +0200 | [diff] [blame] | 11016 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 11017 | kfree(intel_crtc); |
| 11018 | } |
| 11019 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 11020 | static void intel_unpin_work_fn(struct work_struct *__work) |
| 11021 | { |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11022 | struct intel_flip_work *work = |
| 11023 | container_of(__work, struct intel_flip_work, unpin_work); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11024 | struct intel_crtc *crtc = to_intel_crtc(work->crtc); |
| 11025 | struct drm_device *dev = crtc->base.dev; |
| 11026 | struct drm_plane *primary = crtc->base.primary; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 11027 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11028 | if (is_mmio_work(work)) |
| 11029 | flush_work(&work->mmio_work); |
| 11030 | |
| 11031 | mutex_lock(&dev->struct_mutex); |
| 11032 | intel_unpin_fb_obj(work->old_fb, primary->state->rotation); |
| 11033 | drm_gem_object_unreference(&work->pending_flip_obj->base); |
| 11034 | |
| 11035 | if (work->flip_queued_req) |
| 11036 | i915_gem_request_assign(&work->flip_queued_req, NULL); |
| 11037 | mutex_unlock(&dev->struct_mutex); |
| 11038 | |
| 11039 | intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit); |
| 11040 | intel_fbc_post_update(crtc); |
| 11041 | drm_framebuffer_unreference(work->old_fb); |
| 11042 | |
| 11043 | BUG_ON(atomic_read(&crtc->unpin_work_count) == 0); |
| 11044 | atomic_dec(&crtc->unpin_work_count); |
| 11045 | |
| 11046 | kfree(work); |
| 11047 | } |
| 11048 | |
| 11049 | /* Is 'a' after or equal to 'b'? */ |
| 11050 | static bool g4x_flip_count_after_eq(u32 a, u32 b) |
| 11051 | { |
| 11052 | return !((a - b) & 0x80000000); |
| 11053 | } |
| 11054 | |
| 11055 | static bool __pageflip_finished_cs(struct intel_crtc *crtc, |
| 11056 | struct intel_flip_work *work) |
| 11057 | { |
| 11058 | struct drm_device *dev = crtc->base.dev; |
| 11059 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 11060 | unsigned reset_counter; |
| 11061 | |
| 11062 | reset_counter = i915_reset_counter(&dev_priv->gpu_error); |
| 11063 | if (crtc->reset_counter != reset_counter) |
| 11064 | return true; |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11065 | |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11066 | /* |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11067 | * The relevant registers doen't exist on pre-ctg. |
| 11068 | * As the flip done interrupt doesn't trigger for mmio |
| 11069 | * flips on gmch platforms, a flip count check isn't |
| 11070 | * really needed there. But since ctg has the registers, |
| 11071 | * include it in the check anyway. |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11072 | */ |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11073 | if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev)) |
| 11074 | return true; |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11075 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11076 | /* |
| 11077 | * BDW signals flip done immediately if the plane |
| 11078 | * is disabled, even if the plane enable is already |
| 11079 | * armed to occur at the next vblank :( |
| 11080 | */ |
Maarten Lankhorst | a6747b7 | 2016-05-17 15:08:01 +0200 | [diff] [blame] | 11081 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11082 | /* |
| 11083 | * A DSPSURFLIVE check isn't enough in case the mmio and CS flips |
| 11084 | * used the same base address. In that case the mmio flip might |
| 11085 | * have completed, but the CS hasn't even executed the flip yet. |
| 11086 | * |
| 11087 | * A flip count check isn't enough as the CS might have updated |
| 11088 | * the base address just after start of vblank, but before we |
| 11089 | * managed to process the interrupt. This means we'd complete the |
| 11090 | * CS flip too soon. |
| 11091 | * |
| 11092 | * Combining both checks should get us a good enough result. It may |
| 11093 | * still happen that the CS flip has been executed, but has not |
| 11094 | * yet actually completed. But in case the base address is the same |
| 11095 | * anyway, we don't really care. |
| 11096 | */ |
| 11097 | return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) == |
| 11098 | crtc->flip_work->gtt_offset && |
| 11099 | g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)), |
| 11100 | crtc->flip_work->flip_count); |
| 11101 | } |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11102 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11103 | static bool |
| 11104 | __pageflip_finished_mmio(struct intel_crtc *crtc, |
| 11105 | struct intel_flip_work *work) |
| 11106 | { |
| 11107 | /* |
| 11108 | * MMIO work completes when vblank is different from |
| 11109 | * flip_queued_vblank. |
| 11110 | * |
| 11111 | * Reset counter value doesn't matter, this is handled by |
| 11112 | * i915_wait_request finishing early, so no need to handle |
| 11113 | * reset here. |
| 11114 | */ |
| 11115 | return intel_crtc_get_vblank_counter(crtc) != work->flip_queued_vblank; |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 11116 | } |
| 11117 | |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11118 | |
| 11119 | static bool pageflip_finished(struct intel_crtc *crtc, |
| 11120 | struct intel_flip_work *work) |
| 11121 | { |
| 11122 | if (!atomic_read(&work->pending)) |
| 11123 | return false; |
| 11124 | |
| 11125 | smp_rmb(); |
| 11126 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11127 | if (is_mmio_work(work)) |
| 11128 | return __pageflip_finished_mmio(crtc, work); |
| 11129 | else |
| 11130 | return __pageflip_finished_cs(crtc, work); |
| 11131 | } |
| 11132 | |
| 11133 | void intel_finish_page_flip_cs(struct drm_i915_private *dev_priv, int pipe) |
| 11134 | { |
| 11135 | struct drm_device *dev = dev_priv->dev; |
| 11136 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 11137 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11138 | struct intel_flip_work *work; |
| 11139 | unsigned long flags; |
| 11140 | |
| 11141 | /* Ignore early vblank irqs */ |
| 11142 | if (!crtc) |
| 11143 | return; |
| 11144 | |
Daniel Vetter | f326038 | 2014-09-15 14:55:23 +0200 | [diff] [blame] | 11145 | /* |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11146 | * This is called both by irq handlers and the reset code (to complete |
| 11147 | * lost pageflips) so needs the full irqsave spinlocks. |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 11148 | */ |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11149 | spin_lock_irqsave(&dev->event_lock, flags); |
| 11150 | work = intel_crtc->flip_work; |
| 11151 | |
| 11152 | if (work != NULL && |
| 11153 | !is_mmio_work(work) && |
| 11154 | pageflip_finished(intel_crtc, work)) |
| 11155 | page_flip_completed(intel_crtc); |
| 11156 | |
| 11157 | spin_unlock_irqrestore(&dev->event_lock, flags); |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 11158 | } |
| 11159 | |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11160 | void intel_finish_page_flip_mmio(struct drm_i915_private *dev_priv, int pipe) |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 11161 | { |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11162 | struct drm_device *dev = dev_priv->dev; |
| 11163 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 11164 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11165 | struct intel_flip_work *work; |
| 11166 | unsigned long flags; |
| 11167 | |
| 11168 | /* Ignore early vblank irqs */ |
| 11169 | if (!crtc) |
| 11170 | return; |
| 11171 | |
| 11172 | /* |
| 11173 | * This is called both by irq handlers and the reset code (to complete |
| 11174 | * lost pageflips) so needs the full irqsave spinlocks. |
| 11175 | */ |
| 11176 | spin_lock_irqsave(&dev->event_lock, flags); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11177 | work = intel_crtc->flip_work; |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11178 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11179 | if (work != NULL && |
| 11180 | is_mmio_work(work) && |
| 11181 | pageflip_finished(intel_crtc, work)) |
| 11182 | page_flip_completed(intel_crtc); |
Maarten Lankhorst | 6885843 | 2016-05-17 15:07:52 +0200 | [diff] [blame] | 11183 | |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11184 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 11185 | } |
| 11186 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11187 | static inline void intel_mark_page_flip_active(struct intel_crtc *crtc, |
| 11188 | struct intel_flip_work *work) |
| 11189 | { |
| 11190 | work->flip_queued_vblank = intel_crtc_get_vblank_counter(crtc); |
| 11191 | |
| 11192 | /* Ensure that the work item is consistent when activating it ... */ |
| 11193 | smp_mb__before_atomic(); |
| 11194 | atomic_set(&work->pending, 1); |
| 11195 | } |
| 11196 | |
| 11197 | static int intel_gen2_queue_flip(struct drm_device *dev, |
| 11198 | struct drm_crtc *crtc, |
| 11199 | struct drm_framebuffer *fb, |
| 11200 | struct drm_i915_gem_object *obj, |
| 11201 | struct drm_i915_gem_request *req, |
| 11202 | uint32_t flags) |
| 11203 | { |
| 11204 | struct intel_engine_cs *engine = req->engine; |
| 11205 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11206 | u32 flip_mask; |
| 11207 | int ret; |
| 11208 | |
| 11209 | ret = intel_ring_begin(req, 6); |
| 11210 | if (ret) |
| 11211 | return ret; |
| 11212 | |
| 11213 | /* Can't queue multiple flips, so wait for the previous |
| 11214 | * one to finish before executing the next. |
| 11215 | */ |
| 11216 | if (intel_crtc->plane) |
| 11217 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; |
| 11218 | else |
| 11219 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; |
| 11220 | intel_ring_emit(engine, MI_WAIT_FOR_EVENT | flip_mask); |
| 11221 | intel_ring_emit(engine, MI_NOOP); |
| 11222 | intel_ring_emit(engine, MI_DISPLAY_FLIP | |
| 11223 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 11224 | intel_ring_emit(engine, fb->pitches[0]); |
| 11225 | intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset); |
| 11226 | intel_ring_emit(engine, 0); /* aux display base address, unused */ |
| 11227 | |
| 11228 | return 0; |
| 11229 | } |
| 11230 | |
| 11231 | static int intel_gen3_queue_flip(struct drm_device *dev, |
| 11232 | struct drm_crtc *crtc, |
| 11233 | struct drm_framebuffer *fb, |
| 11234 | struct drm_i915_gem_object *obj, |
| 11235 | struct drm_i915_gem_request *req, |
| 11236 | uint32_t flags) |
| 11237 | { |
| 11238 | struct intel_engine_cs *engine = req->engine; |
| 11239 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11240 | u32 flip_mask; |
| 11241 | int ret; |
| 11242 | |
| 11243 | ret = intel_ring_begin(req, 6); |
| 11244 | if (ret) |
| 11245 | return ret; |
| 11246 | |
| 11247 | if (intel_crtc->plane) |
| 11248 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; |
| 11249 | else |
| 11250 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; |
| 11251 | intel_ring_emit(engine, MI_WAIT_FOR_EVENT | flip_mask); |
| 11252 | intel_ring_emit(engine, MI_NOOP); |
| 11253 | intel_ring_emit(engine, MI_DISPLAY_FLIP_I915 | |
| 11254 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 11255 | intel_ring_emit(engine, fb->pitches[0]); |
| 11256 | intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset); |
| 11257 | intel_ring_emit(engine, MI_NOOP); |
| 11258 | |
| 11259 | return 0; |
| 11260 | } |
| 11261 | |
| 11262 | static int intel_gen4_queue_flip(struct drm_device *dev, |
| 11263 | struct drm_crtc *crtc, |
| 11264 | struct drm_framebuffer *fb, |
| 11265 | struct drm_i915_gem_object *obj, |
| 11266 | struct drm_i915_gem_request *req, |
| 11267 | uint32_t flags) |
| 11268 | { |
| 11269 | struct intel_engine_cs *engine = req->engine; |
| 11270 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 11271 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11272 | uint32_t pf, pipesrc; |
| 11273 | int ret; |
| 11274 | |
| 11275 | ret = intel_ring_begin(req, 4); |
| 11276 | if (ret) |
| 11277 | return ret; |
| 11278 | |
| 11279 | /* i965+ uses the linear or tiled offsets from the |
| 11280 | * Display Registers (which do not change across a page-flip) |
| 11281 | * so we need only reprogram the base address. |
| 11282 | */ |
| 11283 | intel_ring_emit(engine, MI_DISPLAY_FLIP | |
| 11284 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 11285 | intel_ring_emit(engine, fb->pitches[0]); |
| 11286 | intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset | |
| 11287 | obj->tiling_mode); |
| 11288 | |
| 11289 | /* XXX Enabling the panel-fitter across page-flip is so far |
| 11290 | * untested on non-native modes, so ignore it for now. |
| 11291 | * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE; |
| 11292 | */ |
| 11293 | pf = 0; |
| 11294 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
| 11295 | intel_ring_emit(engine, pf | pipesrc); |
| 11296 | |
| 11297 | return 0; |
| 11298 | } |
| 11299 | |
| 11300 | static int intel_gen6_queue_flip(struct drm_device *dev, |
| 11301 | struct drm_crtc *crtc, |
| 11302 | struct drm_framebuffer *fb, |
| 11303 | struct drm_i915_gem_object *obj, |
| 11304 | struct drm_i915_gem_request *req, |
| 11305 | uint32_t flags) |
| 11306 | { |
| 11307 | struct intel_engine_cs *engine = req->engine; |
| 11308 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 11309 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11310 | uint32_t pf, pipesrc; |
| 11311 | int ret; |
| 11312 | |
| 11313 | ret = intel_ring_begin(req, 4); |
| 11314 | if (ret) |
| 11315 | return ret; |
| 11316 | |
| 11317 | intel_ring_emit(engine, MI_DISPLAY_FLIP | |
| 11318 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
| 11319 | intel_ring_emit(engine, fb->pitches[0] | obj->tiling_mode); |
| 11320 | intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset); |
| 11321 | |
| 11322 | /* Contrary to the suggestions in the documentation, |
| 11323 | * "Enable Panel Fitter" does not seem to be required when page |
| 11324 | * flipping with a non-native mode, and worse causes a normal |
| 11325 | * modeset to fail. |
| 11326 | * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE; |
| 11327 | */ |
| 11328 | pf = 0; |
| 11329 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
| 11330 | intel_ring_emit(engine, pf | pipesrc); |
| 11331 | |
| 11332 | return 0; |
| 11333 | } |
| 11334 | |
| 11335 | static int intel_gen7_queue_flip(struct drm_device *dev, |
| 11336 | struct drm_crtc *crtc, |
| 11337 | struct drm_framebuffer *fb, |
| 11338 | struct drm_i915_gem_object *obj, |
| 11339 | struct drm_i915_gem_request *req, |
| 11340 | uint32_t flags) |
| 11341 | { |
| 11342 | struct intel_engine_cs *engine = req->engine; |
| 11343 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11344 | uint32_t plane_bit = 0; |
| 11345 | int len, ret; |
| 11346 | |
| 11347 | switch (intel_crtc->plane) { |
| 11348 | case PLANE_A: |
| 11349 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A; |
| 11350 | break; |
| 11351 | case PLANE_B: |
| 11352 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B; |
| 11353 | break; |
| 11354 | case PLANE_C: |
| 11355 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C; |
| 11356 | break; |
| 11357 | default: |
| 11358 | WARN_ONCE(1, "unknown plane in flip command\n"); |
| 11359 | return -ENODEV; |
| 11360 | } |
| 11361 | |
| 11362 | len = 4; |
| 11363 | if (engine->id == RCS) { |
| 11364 | len += 6; |
| 11365 | /* |
| 11366 | * On Gen 8, SRM is now taking an extra dword to accommodate |
| 11367 | * 48bits addresses, and we need a NOOP for the batch size to |
| 11368 | * stay even. |
| 11369 | */ |
| 11370 | if (IS_GEN8(dev)) |
| 11371 | len += 2; |
| 11372 | } |
| 11373 | |
| 11374 | /* |
| 11375 | * BSpec MI_DISPLAY_FLIP for IVB: |
| 11376 | * "The full packet must be contained within the same cache line." |
| 11377 | * |
| 11378 | * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same |
| 11379 | * cacheline, if we ever start emitting more commands before |
| 11380 | * the MI_DISPLAY_FLIP we may need to first emit everything else, |
| 11381 | * then do the cacheline alignment, and finally emit the |
| 11382 | * MI_DISPLAY_FLIP. |
| 11383 | */ |
| 11384 | ret = intel_ring_cacheline_align(req); |
| 11385 | if (ret) |
| 11386 | return ret; |
| 11387 | |
| 11388 | ret = intel_ring_begin(req, len); |
| 11389 | if (ret) |
| 11390 | return ret; |
| 11391 | |
| 11392 | /* Unmask the flip-done completion message. Note that the bspec says that |
| 11393 | * we should do this for both the BCS and RCS, and that we must not unmask |
| 11394 | * more than one flip event at any time (or ensure that one flip message |
| 11395 | * can be sent by waiting for flip-done prior to queueing new flips). |
| 11396 | * Experimentation says that BCS works despite DERRMR masking all |
| 11397 | * flip-done completion events and that unmasking all planes at once |
| 11398 | * for the RCS also doesn't appear to drop events. Setting the DERRMR |
| 11399 | * to zero does lead to lockups within MI_DISPLAY_FLIP. |
| 11400 | */ |
| 11401 | if (engine->id == RCS) { |
| 11402 | intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1)); |
| 11403 | intel_ring_emit_reg(engine, DERRMR); |
| 11404 | intel_ring_emit(engine, ~(DERRMR_PIPEA_PRI_FLIP_DONE | |
| 11405 | DERRMR_PIPEB_PRI_FLIP_DONE | |
| 11406 | DERRMR_PIPEC_PRI_FLIP_DONE)); |
| 11407 | if (IS_GEN8(dev)) |
| 11408 | intel_ring_emit(engine, MI_STORE_REGISTER_MEM_GEN8 | |
| 11409 | MI_SRM_LRM_GLOBAL_GTT); |
| 11410 | else |
| 11411 | intel_ring_emit(engine, MI_STORE_REGISTER_MEM | |
| 11412 | MI_SRM_LRM_GLOBAL_GTT); |
| 11413 | intel_ring_emit_reg(engine, DERRMR); |
| 11414 | intel_ring_emit(engine, engine->scratch.gtt_offset + 256); |
| 11415 | if (IS_GEN8(dev)) { |
| 11416 | intel_ring_emit(engine, 0); |
| 11417 | intel_ring_emit(engine, MI_NOOP); |
| 11418 | } |
| 11419 | } |
| 11420 | |
| 11421 | intel_ring_emit(engine, MI_DISPLAY_FLIP_I915 | plane_bit); |
| 11422 | intel_ring_emit(engine, (fb->pitches[0] | obj->tiling_mode)); |
| 11423 | intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset); |
| 11424 | intel_ring_emit(engine, (MI_NOOP)); |
| 11425 | |
| 11426 | return 0; |
| 11427 | } |
| 11428 | |
| 11429 | static bool use_mmio_flip(struct intel_engine_cs *engine, |
| 11430 | struct drm_i915_gem_object *obj) |
| 11431 | { |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 11432 | struct reservation_object *resv; |
| 11433 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11434 | /* |
| 11435 | * This is not being used for older platforms, because |
| 11436 | * non-availability of flip done interrupt forces us to use |
| 11437 | * CS flips. Older platforms derive flip done using some clever |
| 11438 | * tricks involving the flip_pending status bits and vblank irqs. |
| 11439 | * So using MMIO flips there would disrupt this mechanism. |
| 11440 | */ |
| 11441 | |
| 11442 | if (engine == NULL) |
| 11443 | return true; |
| 11444 | |
| 11445 | if (INTEL_GEN(engine->i915) < 5) |
| 11446 | return false; |
| 11447 | |
| 11448 | if (i915.use_mmio_flip < 0) |
| 11449 | return false; |
| 11450 | else if (i915.use_mmio_flip > 0) |
| 11451 | return true; |
| 11452 | else if (i915.enable_execlists) |
| 11453 | return true; |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 11454 | |
| 11455 | resv = i915_gem_object_get_dmabuf_resv(obj); |
| 11456 | if (resv && !reservation_object_test_signaled_rcu(resv, false)) |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11457 | return true; |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 11458 | |
| 11459 | return engine != i915_gem_request_get_engine(obj->last_write_req); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11460 | } |
| 11461 | |
| 11462 | static void skl_do_mmio_flip(struct intel_crtc *intel_crtc, |
| 11463 | unsigned int rotation, |
| 11464 | struct intel_flip_work *work) |
| 11465 | { |
| 11466 | struct drm_device *dev = intel_crtc->base.dev; |
| 11467 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 11468 | struct drm_framebuffer *fb = intel_crtc->base.primary->fb; |
| 11469 | const enum pipe pipe = intel_crtc->pipe; |
| 11470 | u32 ctl, stride, tile_height; |
| 11471 | |
| 11472 | ctl = I915_READ(PLANE_CTL(pipe, 0)); |
| 11473 | ctl &= ~PLANE_CTL_TILED_MASK; |
| 11474 | switch (fb->modifier[0]) { |
| 11475 | case DRM_FORMAT_MOD_NONE: |
| 11476 | break; |
| 11477 | case I915_FORMAT_MOD_X_TILED: |
| 11478 | ctl |= PLANE_CTL_TILED_X; |
| 11479 | break; |
| 11480 | case I915_FORMAT_MOD_Y_TILED: |
| 11481 | ctl |= PLANE_CTL_TILED_Y; |
| 11482 | break; |
| 11483 | case I915_FORMAT_MOD_Yf_TILED: |
| 11484 | ctl |= PLANE_CTL_TILED_YF; |
| 11485 | break; |
| 11486 | default: |
| 11487 | MISSING_CASE(fb->modifier[0]); |
| 11488 | } |
| 11489 | |
| 11490 | /* |
| 11491 | * The stride is either expressed as a multiple of 64 bytes chunks for |
| 11492 | * linear buffers or in number of tiles for tiled buffers. |
| 11493 | */ |
| 11494 | if (intel_rotation_90_or_270(rotation)) { |
| 11495 | /* stride = Surface height in tiles */ |
| 11496 | tile_height = intel_tile_height(dev_priv, fb->modifier[0], 0); |
| 11497 | stride = DIV_ROUND_UP(fb->height, tile_height); |
| 11498 | } else { |
| 11499 | stride = fb->pitches[0] / |
| 11500 | intel_fb_stride_alignment(dev_priv, fb->modifier[0], |
| 11501 | fb->pixel_format); |
| 11502 | } |
| 11503 | |
| 11504 | /* |
| 11505 | * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on |
| 11506 | * PLANE_SURF updates, the update is then guaranteed to be atomic. |
| 11507 | */ |
| 11508 | I915_WRITE(PLANE_CTL(pipe, 0), ctl); |
| 11509 | I915_WRITE(PLANE_STRIDE(pipe, 0), stride); |
| 11510 | |
| 11511 | I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset); |
| 11512 | POSTING_READ(PLANE_SURF(pipe, 0)); |
| 11513 | } |
| 11514 | |
| 11515 | static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc, |
| 11516 | struct intel_flip_work *work) |
| 11517 | { |
| 11518 | struct drm_device *dev = intel_crtc->base.dev; |
| 11519 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 11520 | struct intel_framebuffer *intel_fb = |
| 11521 | to_intel_framebuffer(intel_crtc->base.primary->fb); |
| 11522 | struct drm_i915_gem_object *obj = intel_fb->obj; |
| 11523 | i915_reg_t reg = DSPCNTR(intel_crtc->plane); |
| 11524 | u32 dspcntr; |
| 11525 | |
| 11526 | dspcntr = I915_READ(reg); |
| 11527 | |
| 11528 | if (obj->tiling_mode != I915_TILING_NONE) |
| 11529 | dspcntr |= DISPPLANE_TILED; |
| 11530 | else |
| 11531 | dspcntr &= ~DISPPLANE_TILED; |
| 11532 | |
| 11533 | I915_WRITE(reg, dspcntr); |
| 11534 | |
| 11535 | I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset); |
| 11536 | POSTING_READ(DSPSURF(intel_crtc->plane)); |
| 11537 | } |
| 11538 | |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11539 | static void intel_mmio_flip_work_func(struct work_struct *w) |
Damien Lespiau | ff94456 | 2014-11-20 14:58:16 +0000 | [diff] [blame] | 11540 | { |
Maarten Lankhorst | 51cbaf0 | 2016-05-17 15:07:49 +0200 | [diff] [blame] | 11541 | struct intel_flip_work *work = |
| 11542 | container_of(w, struct intel_flip_work, mmio_work); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11543 | struct intel_crtc *crtc = to_intel_crtc(work->crtc); |
| 11544 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 11545 | struct intel_framebuffer *intel_fb = |
| 11546 | to_intel_framebuffer(crtc->base.primary->fb); |
| 11547 | struct drm_i915_gem_object *obj = intel_fb->obj; |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 11548 | struct reservation_object *resv; |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11549 | |
| 11550 | if (work->flip_queued_req) |
| 11551 | WARN_ON(__i915_wait_request(work->flip_queued_req, |
| 11552 | false, NULL, |
| 11553 | &dev_priv->rps.mmioflips)); |
| 11554 | |
| 11555 | /* For framebuffer backed by dmabuf, wait for fence */ |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 11556 | resv = i915_gem_object_get_dmabuf_resv(obj); |
| 11557 | if (resv) |
| 11558 | WARN_ON(reservation_object_wait_timeout_rcu(resv, false, false, |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11559 | MAX_SCHEDULE_TIMEOUT) < 0); |
| 11560 | |
| 11561 | intel_pipe_update_start(crtc); |
| 11562 | |
| 11563 | if (INTEL_GEN(dev_priv) >= 9) |
| 11564 | skl_do_mmio_flip(crtc, work->rotation, work); |
| 11565 | else |
| 11566 | /* use_mmio_flip() retricts MMIO flips to ilk+ */ |
| 11567 | ilk_do_mmio_flip(crtc, work); |
| 11568 | |
| 11569 | intel_pipe_update_end(crtc, work); |
| 11570 | } |
| 11571 | |
| 11572 | static int intel_default_queue_flip(struct drm_device *dev, |
| 11573 | struct drm_crtc *crtc, |
| 11574 | struct drm_framebuffer *fb, |
| 11575 | struct drm_i915_gem_object *obj, |
| 11576 | struct drm_i915_gem_request *req, |
| 11577 | uint32_t flags) |
| 11578 | { |
| 11579 | return -ENODEV; |
| 11580 | } |
| 11581 | |
| 11582 | static bool __pageflip_stall_check_cs(struct drm_i915_private *dev_priv, |
| 11583 | struct intel_crtc *intel_crtc, |
| 11584 | struct intel_flip_work *work) |
| 11585 | { |
| 11586 | u32 addr, vblank; |
| 11587 | |
| 11588 | if (!atomic_read(&work->pending)) |
| 11589 | return false; |
| 11590 | |
| 11591 | smp_rmb(); |
| 11592 | |
| 11593 | vblank = intel_crtc_get_vblank_counter(intel_crtc); |
| 11594 | if (work->flip_ready_vblank == 0) { |
| 11595 | if (work->flip_queued_req && |
| 11596 | !i915_gem_request_completed(work->flip_queued_req, true)) |
| 11597 | return false; |
| 11598 | |
| 11599 | work->flip_ready_vblank = vblank; |
| 11600 | } |
| 11601 | |
| 11602 | if (vblank - work->flip_ready_vblank < 3) |
| 11603 | return false; |
| 11604 | |
| 11605 | /* Potential stall - if we see that the flip has happened, |
| 11606 | * assume a missed interrupt. */ |
| 11607 | if (INTEL_GEN(dev_priv) >= 4) |
| 11608 | addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane))); |
| 11609 | else |
| 11610 | addr = I915_READ(DSPADDR(intel_crtc->plane)); |
| 11611 | |
| 11612 | /* There is a potential issue here with a false positive after a flip |
| 11613 | * to the same address. We could address this by checking for a |
| 11614 | * non-incrementing frame counter. |
| 11615 | */ |
| 11616 | return addr == work->gtt_offset; |
| 11617 | } |
| 11618 | |
| 11619 | void intel_check_page_flip(struct drm_i915_private *dev_priv, int pipe) |
| 11620 | { |
| 11621 | struct drm_device *dev = dev_priv->dev; |
| 11622 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11623 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11624 | struct intel_flip_work *work; |
| 11625 | |
| 11626 | WARN_ON(!in_interrupt()); |
| 11627 | |
| 11628 | if (crtc == NULL) |
| 11629 | return; |
| 11630 | |
| 11631 | spin_lock(&dev->event_lock); |
| 11632 | work = intel_crtc->flip_work; |
| 11633 | |
| 11634 | if (work != NULL && !is_mmio_work(work) && |
| 11635 | __pageflip_stall_check_cs(dev_priv, intel_crtc, work)) { |
| 11636 | WARN_ONCE(1, |
| 11637 | "Kicking stuck page flip: queued at %d, now %d\n", |
| 11638 | work->flip_queued_vblank, intel_crtc_get_vblank_counter(intel_crtc)); |
| 11639 | page_flip_completed(intel_crtc); |
| 11640 | work = NULL; |
| 11641 | } |
| 11642 | |
| 11643 | if (work != NULL && !is_mmio_work(work) && |
| 11644 | intel_crtc_get_vblank_counter(intel_crtc) - work->flip_queued_vblank > 1) |
| 11645 | intel_queue_rps_boost_for_request(work->flip_queued_req); |
| 11646 | spin_unlock(&dev->event_lock); |
| 11647 | } |
| 11648 | |
| 11649 | static int intel_crtc_page_flip(struct drm_crtc *crtc, |
| 11650 | struct drm_framebuffer *fb, |
| 11651 | struct drm_pending_vblank_event *event, |
| 11652 | uint32_t page_flip_flags) |
| 11653 | { |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11654 | struct drm_device *dev = crtc->dev; |
Maarten Lankhorst | aa420dd | 2016-05-17 15:07:51 +0200 | [diff] [blame] | 11655 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11656 | struct drm_framebuffer *old_fb = crtc->primary->fb; |
| 11657 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
| 11658 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11659 | struct drm_plane *primary = crtc->primary; |
| 11660 | enum pipe pipe = intel_crtc->pipe; |
| 11661 | struct intel_flip_work *work; |
| 11662 | struct intel_engine_cs *engine; |
| 11663 | bool mmio_flip; |
| 11664 | struct drm_i915_gem_request *request = NULL; |
| 11665 | int ret; |
Sourab Gupta | 84c33a6 | 2014-06-02 16:47:17 +0530 | [diff] [blame] | 11666 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11667 | /* |
| 11668 | * drm_mode_page_flip_ioctl() should already catch this, but double |
| 11669 | * check to be safe. In the future we may enable pageflipping from |
| 11670 | * a disabled primary plane. |
| 11671 | */ |
| 11672 | if (WARN_ON(intel_fb_obj(old_fb) == NULL)) |
| 11673 | return -EBUSY; |
Maarten Lankhorst | a6747b7 | 2016-05-17 15:08:01 +0200 | [diff] [blame] | 11674 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11675 | /* Can't change pixel format via MI display flips. */ |
| 11676 | if (fb->pixel_format != crtc->primary->fb->pixel_format) |
| 11677 | return -EINVAL; |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11678 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11679 | /* |
| 11680 | * TILEOFF/LINOFF registers can't be changed via MI display flips. |
| 11681 | * Note that pitch changes could also affect these register. |
| 11682 | */ |
| 11683 | if (INTEL_INFO(dev)->gen > 3 && |
| 11684 | (fb->offsets[0] != crtc->primary->fb->offsets[0] || |
| 11685 | fb->pitches[0] != crtc->primary->fb->pitches[0])) |
| 11686 | return -EINVAL; |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11687 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11688 | if (i915_terminally_wedged(&dev_priv->gpu_error)) |
| 11689 | goto out_hang; |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11690 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11691 | work = kzalloc(sizeof(*work), GFP_KERNEL); |
| 11692 | if (work == NULL) |
| 11693 | return -ENOMEM; |
| 11694 | |
| 11695 | work->event = event; |
| 11696 | work->crtc = crtc; |
| 11697 | work->old_fb = old_fb; |
| 11698 | INIT_WORK(&work->unpin_work, intel_unpin_work_fn); |
Sourab Gupta | 84c33a6 | 2014-06-02 16:47:17 +0530 | [diff] [blame] | 11699 | |
Maarten Lankhorst | d55dbd0 | 2016-05-17 15:08:04 +0200 | [diff] [blame] | 11700 | ret = drm_crtc_vblank_get(crtc); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11701 | if (ret) |
| 11702 | goto free_work; |
Maarten Lankhorst | d55dbd0 | 2016-05-17 15:08:04 +0200 | [diff] [blame] | 11703 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11704 | /* We borrow the event spin lock for protecting flip_work */ |
| 11705 | spin_lock_irq(&dev->event_lock); |
| 11706 | if (intel_crtc->flip_work) { |
| 11707 | /* Before declaring the flip queue wedged, check if |
| 11708 | * the hardware completed the operation behind our backs. |
| 11709 | */ |
| 11710 | if (pageflip_finished(intel_crtc, intel_crtc->flip_work)) { |
| 11711 | DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n"); |
| 11712 | page_flip_completed(intel_crtc); |
| 11713 | } else { |
| 11714 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); |
| 11715 | spin_unlock_irq(&dev->event_lock); |
Maarten Lankhorst | d55dbd0 | 2016-05-17 15:08:04 +0200 | [diff] [blame] | 11716 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11717 | drm_crtc_vblank_put(crtc); |
| 11718 | kfree(work); |
| 11719 | return -EBUSY; |
| 11720 | } |
| 11721 | } |
| 11722 | intel_crtc->flip_work = work; |
| 11723 | spin_unlock_irq(&dev->event_lock); |
Alex Goins | fd8e058 | 2015-11-25 18:43:38 -0800 | [diff] [blame] | 11724 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11725 | if (atomic_read(&intel_crtc->unpin_work_count) >= 2) |
| 11726 | flush_workqueue(dev_priv->wq); |
| 11727 | |
| 11728 | /* Reference the objects for the scheduled work. */ |
| 11729 | drm_framebuffer_reference(work->old_fb); |
| 11730 | drm_gem_object_reference(&obj->base); |
| 11731 | |
| 11732 | crtc->primary->fb = fb; |
| 11733 | update_state_fb(crtc->primary); |
Maarten Lankhorst | faf68d9 | 2016-06-14 14:24:20 +0200 | [diff] [blame] | 11734 | |
| 11735 | intel_fbc_pre_update(intel_crtc, intel_crtc->config, |
| 11736 | to_intel_plane_state(primary->state)); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11737 | |
| 11738 | work->pending_flip_obj = obj; |
| 11739 | |
| 11740 | ret = i915_mutex_lock_interruptible(dev); |
| 11741 | if (ret) |
| 11742 | goto cleanup; |
| 11743 | |
| 11744 | intel_crtc->reset_counter = i915_reset_counter(&dev_priv->gpu_error); |
| 11745 | if (__i915_reset_in_progress_or_wedged(intel_crtc->reset_counter)) { |
| 11746 | ret = -EIO; |
| 11747 | goto cleanup; |
| 11748 | } |
| 11749 | |
| 11750 | atomic_inc(&intel_crtc->unpin_work_count); |
| 11751 | |
| 11752 | if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) |
| 11753 | work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1; |
| 11754 | |
| 11755 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
| 11756 | engine = &dev_priv->engine[BCS]; |
| 11757 | if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode) |
| 11758 | /* vlv: DISPLAY_FLIP fails to change tiling */ |
| 11759 | engine = NULL; |
| 11760 | } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) { |
| 11761 | engine = &dev_priv->engine[BCS]; |
| 11762 | } else if (INTEL_INFO(dev)->gen >= 7) { |
| 11763 | engine = i915_gem_request_get_engine(obj->last_write_req); |
| 11764 | if (engine == NULL || engine->id != RCS) |
| 11765 | engine = &dev_priv->engine[BCS]; |
| 11766 | } else { |
| 11767 | engine = &dev_priv->engine[RCS]; |
| 11768 | } |
| 11769 | |
| 11770 | mmio_flip = use_mmio_flip(engine, obj); |
| 11771 | |
| 11772 | /* When using CS flips, we want to emit semaphores between rings. |
| 11773 | * However, when using mmio flips we will create a task to do the |
| 11774 | * synchronisation, so all we want here is to pin the framebuffer |
| 11775 | * into the display plane and skip any waits. |
| 11776 | */ |
| 11777 | if (!mmio_flip) { |
| 11778 | ret = i915_gem_object_sync(obj, engine, &request); |
| 11779 | if (!ret && !request) { |
| 11780 | request = i915_gem_request_alloc(engine, NULL); |
| 11781 | ret = PTR_ERR_OR_ZERO(request); |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11782 | } |
Sourab Gupta | 84c33a6 | 2014-06-02 16:47:17 +0530 | [diff] [blame] | 11783 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11784 | if (ret) |
| 11785 | goto cleanup_pending; |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11786 | } |
| 11787 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11788 | ret = intel_pin_and_fence_fb_obj(fb, primary->state->rotation); |
| 11789 | if (ret) |
| 11790 | goto cleanup_pending; |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11791 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11792 | work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary), |
| 11793 | obj, 0); |
| 11794 | work->gtt_offset += intel_crtc->dspaddr_offset; |
| 11795 | work->rotation = crtc->primary->state->rotation; |
| 11796 | |
| 11797 | if (mmio_flip) { |
| 11798 | INIT_WORK(&work->mmio_work, intel_mmio_flip_work_func); |
| 11799 | |
| 11800 | i915_gem_request_assign(&work->flip_queued_req, |
| 11801 | obj->last_write_req); |
| 11802 | |
| 11803 | schedule_work(&work->mmio_work); |
| 11804 | } else { |
| 11805 | i915_gem_request_assign(&work->flip_queued_req, request); |
| 11806 | ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request, |
| 11807 | page_flip_flags); |
| 11808 | if (ret) |
| 11809 | goto cleanup_unpin; |
| 11810 | |
| 11811 | intel_mark_page_flip_active(intel_crtc, work); |
| 11812 | |
| 11813 | i915_add_request_no_flush(request); |
Maarten Lankhorst | 143f73b3 | 2016-05-17 15:07:54 +0200 | [diff] [blame] | 11814 | } |
| 11815 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11816 | i915_gem_track_fb(intel_fb_obj(old_fb), obj, |
| 11817 | to_intel_plane(primary)->frontbuffer_bit); |
| 11818 | mutex_unlock(&dev->struct_mutex); |
| 11819 | |
| 11820 | intel_frontbuffer_flip_prepare(dev, |
| 11821 | to_intel_plane(primary)->frontbuffer_bit); |
| 11822 | |
| 11823 | trace_i915_flip_request(intel_crtc->plane, obj); |
| 11824 | |
| 11825 | return 0; |
| 11826 | |
| 11827 | cleanup_unpin: |
| 11828 | intel_unpin_fb_obj(fb, crtc->primary->state->rotation); |
| 11829 | cleanup_pending: |
| 11830 | if (!IS_ERR_OR_NULL(request)) |
| 11831 | i915_add_request_no_flush(request); |
| 11832 | atomic_dec(&intel_crtc->unpin_work_count); |
| 11833 | mutex_unlock(&dev->struct_mutex); |
| 11834 | cleanup: |
| 11835 | crtc->primary->fb = old_fb; |
| 11836 | update_state_fb(crtc->primary); |
| 11837 | |
| 11838 | drm_gem_object_unreference_unlocked(&obj->base); |
| 11839 | drm_framebuffer_unreference(work->old_fb); |
| 11840 | |
| 11841 | spin_lock_irq(&dev->event_lock); |
| 11842 | intel_crtc->flip_work = NULL; |
| 11843 | spin_unlock_irq(&dev->event_lock); |
| 11844 | |
| 11845 | drm_crtc_vblank_put(crtc); |
| 11846 | free_work: |
| 11847 | kfree(work); |
| 11848 | |
| 11849 | if (ret == -EIO) { |
| 11850 | struct drm_atomic_state *state; |
| 11851 | struct drm_plane_state *plane_state; |
| 11852 | |
| 11853 | out_hang: |
| 11854 | state = drm_atomic_state_alloc(dev); |
| 11855 | if (!state) |
| 11856 | return -ENOMEM; |
| 11857 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 11858 | |
| 11859 | retry: |
| 11860 | plane_state = drm_atomic_get_plane_state(state, primary); |
| 11861 | ret = PTR_ERR_OR_ZERO(plane_state); |
| 11862 | if (!ret) { |
| 11863 | drm_atomic_set_fb_for_plane(plane_state, fb); |
| 11864 | |
| 11865 | ret = drm_atomic_set_crtc_for_plane(plane_state, crtc); |
| 11866 | if (!ret) |
| 11867 | ret = drm_atomic_commit(state); |
| 11868 | } |
| 11869 | |
| 11870 | if (ret == -EDEADLK) { |
| 11871 | drm_modeset_backoff(state->acquire_ctx); |
| 11872 | drm_atomic_state_clear(state); |
| 11873 | goto retry; |
| 11874 | } |
| 11875 | |
| 11876 | if (ret) |
| 11877 | drm_atomic_state_free(state); |
| 11878 | |
| 11879 | if (ret == 0 && event) { |
| 11880 | spin_lock_irq(&dev->event_lock); |
| 11881 | drm_crtc_send_vblank_event(crtc, event); |
| 11882 | spin_unlock_irq(&dev->event_lock); |
| 11883 | } |
| 11884 | } |
| 11885 | return ret; |
Jesse Barnes | 8c9f3aa | 2011-06-16 09:19:13 -0700 | [diff] [blame] | 11886 | } |
| 11887 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 11888 | |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11889 | /** |
| 11890 | * intel_wm_need_update - Check whether watermarks need updating |
| 11891 | * @plane: drm plane |
| 11892 | * @state: new plane state |
| 11893 | * |
| 11894 | * Check current plane state versus the new one to determine whether |
| 11895 | * watermarks need to be recalculated. |
| 11896 | * |
| 11897 | * Returns true or false. |
| 11898 | */ |
| 11899 | static bool intel_wm_need_update(struct drm_plane *plane, |
| 11900 | struct drm_plane_state *state) |
| 11901 | { |
Matt Roper | d21fbe8 | 2015-09-24 15:53:12 -0700 | [diff] [blame] | 11902 | struct intel_plane_state *new = to_intel_plane_state(state); |
| 11903 | struct intel_plane_state *cur = to_intel_plane_state(plane->state); |
| 11904 | |
| 11905 | /* Update watermarks on tiling or size changes. */ |
Maarten Lankhorst | 92826fc | 2015-12-03 13:49:13 +0100 | [diff] [blame] | 11906 | if (new->visible != cur->visible) |
| 11907 | return true; |
| 11908 | |
| 11909 | if (!cur->base.fb || !new->base.fb) |
| 11910 | return false; |
| 11911 | |
| 11912 | if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] || |
| 11913 | cur->base.rotation != new->base.rotation || |
Matt Roper | d21fbe8 | 2015-09-24 15:53:12 -0700 | [diff] [blame] | 11914 | drm_rect_width(&new->src) != drm_rect_width(&cur->src) || |
| 11915 | drm_rect_height(&new->src) != drm_rect_height(&cur->src) || |
| 11916 | drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) || |
| 11917 | drm_rect_height(&new->dst) != drm_rect_height(&cur->dst)) |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11918 | return true; |
| 11919 | |
| 11920 | return false; |
| 11921 | } |
| 11922 | |
Matt Roper | d21fbe8 | 2015-09-24 15:53:12 -0700 | [diff] [blame] | 11923 | static bool needs_scaling(struct intel_plane_state *state) |
| 11924 | { |
| 11925 | int src_w = drm_rect_width(&state->src) >> 16; |
| 11926 | int src_h = drm_rect_height(&state->src) >> 16; |
| 11927 | int dst_w = drm_rect_width(&state->dst); |
| 11928 | int dst_h = drm_rect_height(&state->dst); |
| 11929 | |
| 11930 | return (src_w != dst_w || src_h != dst_h); |
| 11931 | } |
| 11932 | |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11933 | int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state, |
| 11934 | struct drm_plane_state *plane_state) |
| 11935 | { |
Maarten Lankhorst | ab1d3a0 | 2015-11-19 16:07:14 +0100 | [diff] [blame] | 11936 | struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state); |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11937 | struct drm_crtc *crtc = crtc_state->crtc; |
| 11938 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 11939 | struct drm_plane *plane = plane_state->plane; |
| 11940 | struct drm_device *dev = crtc->dev; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 11941 | struct drm_i915_private *dev_priv = to_i915(dev); |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11942 | struct intel_plane_state *old_plane_state = |
| 11943 | to_intel_plane_state(plane->state); |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11944 | bool mode_changed = needs_modeset(crtc_state); |
| 11945 | bool was_crtc_enabled = crtc->state->active; |
| 11946 | bool is_crtc_enabled = crtc_state->active; |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11947 | bool turn_off, turn_on, visible, was_visible; |
| 11948 | struct drm_framebuffer *fb = plane_state->fb; |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 11949 | int ret; |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11950 | |
| 11951 | if (crtc_state && INTEL_INFO(dev)->gen >= 9 && |
| 11952 | plane->type != DRM_PLANE_TYPE_CURSOR) { |
| 11953 | ret = skl_update_scaler_plane( |
| 11954 | to_intel_crtc_state(crtc_state), |
| 11955 | to_intel_plane_state(plane_state)); |
| 11956 | if (ret) |
| 11957 | return ret; |
| 11958 | } |
| 11959 | |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11960 | was_visible = old_plane_state->visible; |
| 11961 | visible = to_intel_plane_state(plane_state)->visible; |
| 11962 | |
| 11963 | if (!was_crtc_enabled && WARN_ON(was_visible)) |
| 11964 | was_visible = false; |
| 11965 | |
Maarten Lankhorst | 35c08f4 | 2015-12-03 14:31:07 +0100 | [diff] [blame] | 11966 | /* |
| 11967 | * Visibility is calculated as if the crtc was on, but |
| 11968 | * after scaler setup everything depends on it being off |
| 11969 | * when the crtc isn't active. |
Ville Syrjälä | f818ffe | 2016-04-29 17:31:18 +0300 | [diff] [blame] | 11970 | * |
| 11971 | * FIXME this is wrong for watermarks. Watermarks should also |
| 11972 | * be computed as if the pipe would be active. Perhaps move |
| 11973 | * per-plane wm computation to the .check_plane() hook, and |
| 11974 | * only combine the results from all planes in the current place? |
Maarten Lankhorst | 35c08f4 | 2015-12-03 14:31:07 +0100 | [diff] [blame] | 11975 | */ |
| 11976 | if (!is_crtc_enabled) |
| 11977 | to_intel_plane_state(plane_state)->visible = visible = false; |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11978 | |
| 11979 | if (!was_visible && !visible) |
| 11980 | return 0; |
| 11981 | |
Maarten Lankhorst | e886167 | 2016-02-24 11:24:26 +0100 | [diff] [blame] | 11982 | if (fb != old_plane_state->base.fb) |
| 11983 | pipe_config->fb_changed = true; |
| 11984 | |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11985 | turn_off = was_visible && (!visible || mode_changed); |
| 11986 | turn_on = visible && (!was_visible || mode_changed); |
| 11987 | |
Ville Syrjälä | 72660ce | 2016-05-27 20:59:20 +0300 | [diff] [blame] | 11988 | DRM_DEBUG_ATOMIC("[CRTC:%d:%s] has [PLANE:%d:%s] with fb %i\n", |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 11989 | intel_crtc->base.base.id, |
| 11990 | intel_crtc->base.name, |
Ville Syrjälä | 72660ce | 2016-05-27 20:59:20 +0300 | [diff] [blame] | 11991 | plane->base.id, plane->name, |
| 11992 | fb ? fb->base.id : -1); |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11993 | |
Ville Syrjälä | 72660ce | 2016-05-27 20:59:20 +0300 | [diff] [blame] | 11994 | DRM_DEBUG_ATOMIC("[PLANE:%d:%s] visible %i -> %i, off %i, on %i, ms %i\n", |
| 11995 | plane->base.id, plane->name, |
| 11996 | was_visible, visible, |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 11997 | turn_off, turn_on, mode_changed); |
| 11998 | |
Ville Syrjälä | caed361 | 2016-03-09 19:07:25 +0200 | [diff] [blame] | 11999 | if (turn_on) { |
| 12000 | pipe_config->update_wm_pre = true; |
| 12001 | |
| 12002 | /* must disable cxsr around plane enable/disable */ |
| 12003 | if (plane->type != DRM_PLANE_TYPE_CURSOR) |
| 12004 | pipe_config->disable_cxsr = true; |
| 12005 | } else if (turn_off) { |
| 12006 | pipe_config->update_wm_post = true; |
Maarten Lankhorst | 92826fc | 2015-12-03 13:49:13 +0100 | [diff] [blame] | 12007 | |
Ville Syrjälä | 852eb00 | 2015-06-24 22:00:07 +0300 | [diff] [blame] | 12008 | /* must disable cxsr around plane enable/disable */ |
Maarten Lankhorst | e886167 | 2016-02-24 11:24:26 +0100 | [diff] [blame] | 12009 | if (plane->type != DRM_PLANE_TYPE_CURSOR) |
Maarten Lankhorst | ab1d3a0 | 2015-11-19 16:07:14 +0100 | [diff] [blame] | 12010 | pipe_config->disable_cxsr = true; |
Ville Syrjälä | 852eb00 | 2015-06-24 22:00:07 +0300 | [diff] [blame] | 12011 | } else if (intel_wm_need_update(plane, plane_state)) { |
Ville Syrjälä | caed361 | 2016-03-09 19:07:25 +0200 | [diff] [blame] | 12012 | /* FIXME bollocks */ |
| 12013 | pipe_config->update_wm_pre = true; |
| 12014 | pipe_config->update_wm_post = true; |
Ville Syrjälä | 852eb00 | 2015-06-24 22:00:07 +0300 | [diff] [blame] | 12015 | } |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 12016 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 12017 | /* Pre-gen9 platforms need two-step watermark updates */ |
Ville Syrjälä | caed361 | 2016-03-09 19:07:25 +0200 | [diff] [blame] | 12018 | if ((pipe_config->update_wm_pre || pipe_config->update_wm_post) && |
| 12019 | INTEL_INFO(dev)->gen < 9 && dev_priv->display.optimize_watermarks) |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 12020 | to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true; |
| 12021 | |
Rodrigo Vivi | 8be6ca8 | 2015-08-24 16:38:23 -0700 | [diff] [blame] | 12022 | if (visible || was_visible) |
Maarten Lankhorst | cd202f6 | 2016-03-09 10:35:44 +0100 | [diff] [blame] | 12023 | pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit; |
Ville Syrjälä | a9ff871 | 2015-06-24 21:59:34 +0300 | [diff] [blame] | 12024 | |
Maarten Lankhorst | 31ae71f | 2016-03-09 10:35:45 +0100 | [diff] [blame] | 12025 | /* |
| 12026 | * WaCxSRDisabledForSpriteScaling:ivb |
| 12027 | * |
| 12028 | * cstate->update_wm was already set above, so this flag will |
| 12029 | * take effect when we commit and program watermarks. |
| 12030 | */ |
| 12031 | if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev) && |
| 12032 | needs_scaling(to_intel_plane_state(plane_state)) && |
| 12033 | !needs_scaling(old_plane_state)) |
| 12034 | pipe_config->disable_lp_wm = true; |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 12035 | |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 12036 | return 0; |
| 12037 | } |
| 12038 | |
Maarten Lankhorst | 6d3a1ce | 2015-06-15 12:33:40 +0200 | [diff] [blame] | 12039 | static bool encoders_cloneable(const struct intel_encoder *a, |
| 12040 | const struct intel_encoder *b) |
| 12041 | { |
| 12042 | /* masks could be asymmetric, so check both ways */ |
| 12043 | return a == b || (a->cloneable & (1 << b->type) && |
| 12044 | b->cloneable & (1 << a->type)); |
| 12045 | } |
| 12046 | |
| 12047 | static bool check_single_encoder_cloning(struct drm_atomic_state *state, |
| 12048 | struct intel_crtc *crtc, |
| 12049 | struct intel_encoder *encoder) |
| 12050 | { |
| 12051 | struct intel_encoder *source_encoder; |
| 12052 | struct drm_connector *connector; |
| 12053 | struct drm_connector_state *connector_state; |
| 12054 | int i; |
| 12055 | |
| 12056 | for_each_connector_in_state(state, connector, connector_state, i) { |
| 12057 | if (connector_state->crtc != &crtc->base) |
| 12058 | continue; |
| 12059 | |
| 12060 | source_encoder = |
| 12061 | to_intel_encoder(connector_state->best_encoder); |
| 12062 | if (!encoders_cloneable(encoder, source_encoder)) |
| 12063 | return false; |
| 12064 | } |
| 12065 | |
| 12066 | return true; |
| 12067 | } |
| 12068 | |
| 12069 | static bool check_encoder_cloning(struct drm_atomic_state *state, |
| 12070 | struct intel_crtc *crtc) |
| 12071 | { |
| 12072 | struct intel_encoder *encoder; |
| 12073 | struct drm_connector *connector; |
| 12074 | struct drm_connector_state *connector_state; |
| 12075 | int i; |
| 12076 | |
| 12077 | for_each_connector_in_state(state, connector, connector_state, i) { |
| 12078 | if (connector_state->crtc != &crtc->base) |
| 12079 | continue; |
| 12080 | |
| 12081 | encoder = to_intel_encoder(connector_state->best_encoder); |
| 12082 | if (!check_single_encoder_cloning(state, crtc, encoder)) |
| 12083 | return false; |
| 12084 | } |
| 12085 | |
| 12086 | return true; |
| 12087 | } |
| 12088 | |
| 12089 | static int intel_crtc_atomic_check(struct drm_crtc *crtc, |
| 12090 | struct drm_crtc_state *crtc_state) |
| 12091 | { |
Maarten Lankhorst | cf5a15b | 2015-06-15 12:33:41 +0200 | [diff] [blame] | 12092 | struct drm_device *dev = crtc->dev; |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 12093 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | 6d3a1ce | 2015-06-15 12:33:40 +0200 | [diff] [blame] | 12094 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Maarten Lankhorst | cf5a15b | 2015-06-15 12:33:41 +0200 | [diff] [blame] | 12095 | struct intel_crtc_state *pipe_config = |
| 12096 | to_intel_crtc_state(crtc_state); |
Maarten Lankhorst | 6d3a1ce | 2015-06-15 12:33:40 +0200 | [diff] [blame] | 12097 | struct drm_atomic_state *state = crtc_state->state; |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 12098 | int ret; |
Maarten Lankhorst | 6d3a1ce | 2015-06-15 12:33:40 +0200 | [diff] [blame] | 12099 | bool mode_changed = needs_modeset(crtc_state); |
| 12100 | |
| 12101 | if (mode_changed && !check_encoder_cloning(state, intel_crtc)) { |
| 12102 | DRM_DEBUG_KMS("rejecting invalid cloning configuration\n"); |
| 12103 | return -EINVAL; |
| 12104 | } |
| 12105 | |
Ville Syrjälä | 852eb00 | 2015-06-24 22:00:07 +0300 | [diff] [blame] | 12106 | if (mode_changed && !crtc_state->active) |
Ville Syrjälä | caed361 | 2016-03-09 19:07:25 +0200 | [diff] [blame] | 12107 | pipe_config->update_wm_post = true; |
Maarten Lankhorst | eddfcbc | 2015-06-15 12:33:53 +0200 | [diff] [blame] | 12108 | |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 12109 | if (mode_changed && crtc_state->enable && |
| 12110 | dev_priv->display.crtc_compute_clock && |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 12111 | !WARN_ON(pipe_config->shared_dpll)) { |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 12112 | ret = dev_priv->display.crtc_compute_clock(intel_crtc, |
| 12113 | pipe_config); |
| 12114 | if (ret) |
| 12115 | return ret; |
| 12116 | } |
| 12117 | |
Lionel Landwerlin | 82cf435 | 2016-03-16 10:57:16 +0000 | [diff] [blame] | 12118 | if (crtc_state->color_mgmt_changed) { |
| 12119 | ret = intel_color_check(crtc, crtc_state); |
| 12120 | if (ret) |
| 12121 | return ret; |
| 12122 | } |
| 12123 | |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 12124 | ret = 0; |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 12125 | if (dev_priv->display.compute_pipe_wm) { |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 12126 | ret = dev_priv->display.compute_pipe_wm(pipe_config); |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 12127 | if (ret) { |
| 12128 | DRM_DEBUG_KMS("Target pipe watermarks are invalid\n"); |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 12129 | return ret; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 12130 | } |
| 12131 | } |
| 12132 | |
| 12133 | if (dev_priv->display.compute_intermediate_wm && |
| 12134 | !to_intel_atomic_state(state)->skip_intermediate_wm) { |
| 12135 | if (WARN_ON(!dev_priv->display.compute_pipe_wm)) |
| 12136 | return 0; |
| 12137 | |
| 12138 | /* |
| 12139 | * Calculate 'intermediate' watermarks that satisfy both the |
| 12140 | * old state and the new state. We can program these |
| 12141 | * immediately. |
| 12142 | */ |
| 12143 | ret = dev_priv->display.compute_intermediate_wm(crtc->dev, |
| 12144 | intel_crtc, |
| 12145 | pipe_config); |
| 12146 | if (ret) { |
| 12147 | DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n"); |
| 12148 | return ret; |
| 12149 | } |
Ville Syrjälä | e3d5457 | 2016-05-13 10:10:42 -0700 | [diff] [blame] | 12150 | } else if (dev_priv->display.compute_intermediate_wm) { |
| 12151 | if (HAS_PCH_SPLIT(dev_priv) && INTEL_GEN(dev_priv) < 9) |
| 12152 | pipe_config->wm.ilk.intermediate = pipe_config->wm.ilk.optimal; |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 12153 | } |
| 12154 | |
Maarten Lankhorst | e435d6e | 2015-07-13 16:30:15 +0200 | [diff] [blame] | 12155 | if (INTEL_INFO(dev)->gen >= 9) { |
| 12156 | if (mode_changed) |
| 12157 | ret = skl_update_scaler_crtc(pipe_config); |
| 12158 | |
| 12159 | if (!ret) |
| 12160 | ret = intel_atomic_setup_scalers(dev, intel_crtc, |
| 12161 | pipe_config); |
| 12162 | } |
| 12163 | |
| 12164 | return ret; |
Maarten Lankhorst | 6d3a1ce | 2015-06-15 12:33:40 +0200 | [diff] [blame] | 12165 | } |
| 12166 | |
Jani Nikula | 65b38e0 | 2015-04-13 11:26:56 +0300 | [diff] [blame] | 12167 | static const struct drm_crtc_helper_funcs intel_helper_funcs = { |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 12168 | .mode_set_base_atomic = intel_pipe_set_base_atomic, |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 12169 | .atomic_begin = intel_begin_crtc_commit, |
| 12170 | .atomic_flush = intel_finish_crtc_commit, |
Maarten Lankhorst | 6d3a1ce | 2015-06-15 12:33:40 +0200 | [diff] [blame] | 12171 | .atomic_check = intel_crtc_atomic_check, |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 12172 | }; |
| 12173 | |
Ander Conselvan de Oliveira | d29b2f9 | 2015-03-20 16:18:05 +0200 | [diff] [blame] | 12174 | static void intel_modeset_update_connector_atomic_state(struct drm_device *dev) |
| 12175 | { |
| 12176 | struct intel_connector *connector; |
| 12177 | |
| 12178 | for_each_intel_connector(dev, connector) { |
Daniel Vetter | 8863dc7 | 2016-05-06 15:39:03 +0200 | [diff] [blame] | 12179 | if (connector->base.state->crtc) |
| 12180 | drm_connector_unreference(&connector->base); |
| 12181 | |
Ander Conselvan de Oliveira | d29b2f9 | 2015-03-20 16:18:05 +0200 | [diff] [blame] | 12182 | if (connector->base.encoder) { |
| 12183 | connector->base.state->best_encoder = |
| 12184 | connector->base.encoder; |
| 12185 | connector->base.state->crtc = |
| 12186 | connector->base.encoder->crtc; |
Daniel Vetter | 8863dc7 | 2016-05-06 15:39:03 +0200 | [diff] [blame] | 12187 | |
| 12188 | drm_connector_reference(&connector->base); |
Ander Conselvan de Oliveira | d29b2f9 | 2015-03-20 16:18:05 +0200 | [diff] [blame] | 12189 | } else { |
| 12190 | connector->base.state->best_encoder = NULL; |
| 12191 | connector->base.state->crtc = NULL; |
| 12192 | } |
| 12193 | } |
| 12194 | } |
| 12195 | |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 12196 | static void |
Robin Schroer | eba905b | 2014-05-18 02:24:50 +0200 | [diff] [blame] | 12197 | connected_sink_compute_bpp(struct intel_connector *connector, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 12198 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12199 | { |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 12200 | int bpp = pipe_config->pipe_bpp; |
| 12201 | |
| 12202 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n", |
| 12203 | connector->base.base.id, |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 12204 | connector->base.name); |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 12205 | |
| 12206 | /* Don't use an invalid EDID bpc value */ |
| 12207 | if (connector->base.display_info.bpc && |
| 12208 | connector->base.display_info.bpc * 3 < bpp) { |
| 12209 | DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n", |
| 12210 | bpp, connector->base.display_info.bpc*3); |
| 12211 | pipe_config->pipe_bpp = connector->base.display_info.bpc*3; |
| 12212 | } |
| 12213 | |
Jani Nikula | 013dd9e | 2016-01-13 16:35:20 +0200 | [diff] [blame] | 12214 | /* Clamp bpp to default limit on screens without EDID 1.4 */ |
| 12215 | if (connector->base.display_info.bpc == 0) { |
| 12216 | int type = connector->base.connector_type; |
| 12217 | int clamp_bpp = 24; |
| 12218 | |
| 12219 | /* Fall back to 18 bpp when DP sink capability is unknown. */ |
| 12220 | if (type == DRM_MODE_CONNECTOR_DisplayPort || |
| 12221 | type == DRM_MODE_CONNECTOR_eDP) |
| 12222 | clamp_bpp = 18; |
| 12223 | |
| 12224 | if (bpp > clamp_bpp) { |
| 12225 | DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of %d\n", |
| 12226 | bpp, clamp_bpp); |
| 12227 | pipe_config->pipe_bpp = clamp_bpp; |
| 12228 | } |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 12229 | } |
| 12230 | } |
| 12231 | |
| 12232 | static int |
| 12233 | compute_baseline_pipe_bpp(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 12234 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 050f7ae | 2013-06-02 13:26:23 +0200 | [diff] [blame] | 12235 | { |
| 12236 | struct drm_device *dev = crtc->base.dev; |
Ander Conselvan de Oliveira | 1486017 | 2015-03-20 16:18:09 +0200 | [diff] [blame] | 12237 | struct drm_atomic_state *state; |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 12238 | struct drm_connector *connector; |
| 12239 | struct drm_connector_state *connector_state; |
Ander Conselvan de Oliveira | 1486017 | 2015-03-20 16:18:09 +0200 | [diff] [blame] | 12240 | int bpp, i; |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12241 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 12242 | if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))) |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12243 | bpp = 10*3; |
Daniel Vetter | d328c9d | 2015-04-10 16:22:37 +0200 | [diff] [blame] | 12244 | else if (INTEL_INFO(dev)->gen >= 5) |
| 12245 | bpp = 12*3; |
| 12246 | else |
| 12247 | bpp = 8*3; |
| 12248 | |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12249 | |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12250 | pipe_config->pipe_bpp = bpp; |
| 12251 | |
Ander Conselvan de Oliveira | 1486017 | 2015-03-20 16:18:09 +0200 | [diff] [blame] | 12252 | state = pipe_config->base.state; |
| 12253 | |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12254 | /* Clamp display bpp to EDID value */ |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 12255 | for_each_connector_in_state(state, connector, connector_state, i) { |
| 12256 | if (connector_state->crtc != &crtc->base) |
Ander Conselvan de Oliveira | 1486017 | 2015-03-20 16:18:09 +0200 | [diff] [blame] | 12257 | continue; |
| 12258 | |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 12259 | connected_sink_compute_bpp(to_intel_connector(connector), |
| 12260 | pipe_config); |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12261 | } |
| 12262 | |
| 12263 | return bpp; |
| 12264 | } |
| 12265 | |
Daniel Vetter | 644db71 | 2013-09-19 14:53:58 +0200 | [diff] [blame] | 12266 | static void intel_dump_crtc_timings(const struct drm_display_mode *mode) |
| 12267 | { |
| 12268 | DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, " |
| 12269 | "type: 0x%x flags: 0x%x\n", |
Damien Lespiau | 1342830 | 2013-09-25 16:45:36 +0100 | [diff] [blame] | 12270 | mode->crtc_clock, |
Daniel Vetter | 644db71 | 2013-09-19 14:53:58 +0200 | [diff] [blame] | 12271 | mode->crtc_hdisplay, mode->crtc_hsync_start, |
| 12272 | mode->crtc_hsync_end, mode->crtc_htotal, |
| 12273 | mode->crtc_vdisplay, mode->crtc_vsync_start, |
| 12274 | mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags); |
| 12275 | } |
| 12276 | |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12277 | static void intel_dump_pipe_config(struct intel_crtc *crtc, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 12278 | struct intel_crtc_state *pipe_config, |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12279 | const char *context) |
| 12280 | { |
Chandra Konduru | 6a60cd8 | 2015-04-07 15:28:40 -0700 | [diff] [blame] | 12281 | struct drm_device *dev = crtc->base.dev; |
| 12282 | struct drm_plane *plane; |
| 12283 | struct intel_plane *intel_plane; |
| 12284 | struct intel_plane_state *state; |
| 12285 | struct drm_framebuffer *fb; |
| 12286 | |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 12287 | DRM_DEBUG_KMS("[CRTC:%d:%s]%s config %p for pipe %c\n", |
| 12288 | crtc->base.base.id, crtc->base.name, |
Chandra Konduru | 6a60cd8 | 2015-04-07 15:28:40 -0700 | [diff] [blame] | 12289 | context, pipe_config, pipe_name(crtc->pipe)); |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12290 | |
Jani Nikula | da20563 | 2016-03-15 21:51:10 +0200 | [diff] [blame] | 12291 | DRM_DEBUG_KMS("cpu_transcoder: %s\n", transcoder_name(pipe_config->cpu_transcoder)); |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12292 | DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n", |
| 12293 | pipe_config->pipe_bpp, pipe_config->dither); |
| 12294 | DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n", |
| 12295 | pipe_config->has_pch_encoder, |
| 12296 | pipe_config->fdi_lanes, |
| 12297 | pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n, |
| 12298 | pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n, |
| 12299 | pipe_config->fdi_m_n.tu); |
Ville Syrjälä | 90a6b7b | 2015-07-06 16:39:15 +0300 | [diff] [blame] | 12300 | DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n", |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 12301 | pipe_config->has_dp_encoder, |
Ville Syrjälä | 90a6b7b | 2015-07-06 16:39:15 +0300 | [diff] [blame] | 12302 | pipe_config->lane_count, |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 12303 | pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n, |
| 12304 | pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n, |
| 12305 | pipe_config->dp_m_n.tu); |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 12306 | |
Ville Syrjälä | 90a6b7b | 2015-07-06 16:39:15 +0300 | [diff] [blame] | 12307 | DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n", |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 12308 | pipe_config->has_dp_encoder, |
Ville Syrjälä | 90a6b7b | 2015-07-06 16:39:15 +0300 | [diff] [blame] | 12309 | pipe_config->lane_count, |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 12310 | pipe_config->dp_m2_n2.gmch_m, |
| 12311 | pipe_config->dp_m2_n2.gmch_n, |
| 12312 | pipe_config->dp_m2_n2.link_m, |
| 12313 | pipe_config->dp_m2_n2.link_n, |
| 12314 | pipe_config->dp_m2_n2.tu); |
| 12315 | |
Daniel Vetter | 55072d1 | 2014-11-20 16:10:28 +0100 | [diff] [blame] | 12316 | DRM_DEBUG_KMS("audio: %i, infoframes: %i\n", |
| 12317 | pipe_config->has_audio, |
| 12318 | pipe_config->has_infoframe); |
| 12319 | |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12320 | DRM_DEBUG_KMS("requested mode:\n"); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12321 | drm_mode_debug_printmodeline(&pipe_config->base.mode); |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12322 | DRM_DEBUG_KMS("adjusted mode:\n"); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12323 | drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode); |
| 12324 | intel_dump_crtc_timings(&pipe_config->base.adjusted_mode); |
Ville Syrjälä | d71b8d4 | 2013-09-06 23:29:08 +0300 | [diff] [blame] | 12325 | DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock); |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 12326 | DRM_DEBUG_KMS("pipe src size: %dx%d\n", |
| 12327 | pipe_config->pipe_src_w, pipe_config->pipe_src_h); |
Tvrtko Ursulin | 0ec463d | 2015-05-13 16:51:08 +0100 | [diff] [blame] | 12328 | DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n", |
| 12329 | crtc->num_scalers, |
| 12330 | pipe_config->scaler_state.scaler_users, |
| 12331 | pipe_config->scaler_state.scaler_id); |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12332 | DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n", |
| 12333 | pipe_config->gmch_pfit.control, |
| 12334 | pipe_config->gmch_pfit.pgm_ratios, |
| 12335 | pipe_config->gmch_pfit.lvds_border_bits); |
Chris Wilson | fd4daa9 | 2013-08-27 17:04:17 +0100 | [diff] [blame] | 12336 | DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n", |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12337 | pipe_config->pch_pfit.pos, |
Chris Wilson | fd4daa9 | 2013-08-27 17:04:17 +0100 | [diff] [blame] | 12338 | pipe_config->pch_pfit.size, |
| 12339 | pipe_config->pch_pfit.enabled ? "enabled" : "disabled"); |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 12340 | DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled); |
Ville Syrjälä | cf532bb | 2013-09-04 18:30:02 +0300 | [diff] [blame] | 12341 | DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide); |
Chandra Konduru | 6a60cd8 | 2015-04-07 15:28:40 -0700 | [diff] [blame] | 12342 | |
Tvrtko Ursulin | 415ff0f | 2015-05-14 13:38:31 +0100 | [diff] [blame] | 12343 | if (IS_BROXTON(dev)) { |
Imre Deak | 05712c1 | 2015-06-18 17:25:54 +0300 | [diff] [blame] | 12344 | DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x," |
Tvrtko Ursulin | 415ff0f | 2015-05-14 13:38:31 +0100 | [diff] [blame] | 12345 | "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, " |
Imre Deak | c845333 | 2015-06-18 17:25:55 +0300 | [diff] [blame] | 12346 | "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n", |
Tvrtko Ursulin | 415ff0f | 2015-05-14 13:38:31 +0100 | [diff] [blame] | 12347 | pipe_config->ddi_pll_sel, |
| 12348 | pipe_config->dpll_hw_state.ebb0, |
Imre Deak | 05712c1 | 2015-06-18 17:25:54 +0300 | [diff] [blame] | 12349 | pipe_config->dpll_hw_state.ebb4, |
Tvrtko Ursulin | 415ff0f | 2015-05-14 13:38:31 +0100 | [diff] [blame] | 12350 | pipe_config->dpll_hw_state.pll0, |
| 12351 | pipe_config->dpll_hw_state.pll1, |
| 12352 | pipe_config->dpll_hw_state.pll2, |
| 12353 | pipe_config->dpll_hw_state.pll3, |
| 12354 | pipe_config->dpll_hw_state.pll6, |
| 12355 | pipe_config->dpll_hw_state.pll8, |
Imre Deak | 05712c1 | 2015-06-18 17:25:54 +0300 | [diff] [blame] | 12356 | pipe_config->dpll_hw_state.pll9, |
Imre Deak | c845333 | 2015-06-18 17:25:55 +0300 | [diff] [blame] | 12357 | pipe_config->dpll_hw_state.pll10, |
Tvrtko Ursulin | 415ff0f | 2015-05-14 13:38:31 +0100 | [diff] [blame] | 12358 | pipe_config->dpll_hw_state.pcsdw12); |
Rodrigo Vivi | ef11bdb | 2015-10-28 04:16:45 -0700 | [diff] [blame] | 12359 | } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) { |
Tvrtko Ursulin | 415ff0f | 2015-05-14 13:38:31 +0100 | [diff] [blame] | 12360 | DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: " |
| 12361 | "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n", |
| 12362 | pipe_config->ddi_pll_sel, |
| 12363 | pipe_config->dpll_hw_state.ctrl1, |
| 12364 | pipe_config->dpll_hw_state.cfgcr1, |
| 12365 | pipe_config->dpll_hw_state.cfgcr2); |
| 12366 | } else if (HAS_DDI(dev)) { |
Ville Syrjälä | 1260f07 | 2016-02-17 21:41:08 +0200 | [diff] [blame] | 12367 | DRM_DEBUG_KMS("ddi_pll_sel: 0x%x; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n", |
Tvrtko Ursulin | 415ff0f | 2015-05-14 13:38:31 +0100 | [diff] [blame] | 12368 | pipe_config->ddi_pll_sel, |
Maarten Lankhorst | 00490c2 | 2015-11-16 14:42:12 +0100 | [diff] [blame] | 12369 | pipe_config->dpll_hw_state.wrpll, |
| 12370 | pipe_config->dpll_hw_state.spll); |
Tvrtko Ursulin | 415ff0f | 2015-05-14 13:38:31 +0100 | [diff] [blame] | 12371 | } else { |
| 12372 | DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, " |
| 12373 | "fp0: 0x%x, fp1: 0x%x\n", |
| 12374 | pipe_config->dpll_hw_state.dpll, |
| 12375 | pipe_config->dpll_hw_state.dpll_md, |
| 12376 | pipe_config->dpll_hw_state.fp0, |
| 12377 | pipe_config->dpll_hw_state.fp1); |
| 12378 | } |
| 12379 | |
Chandra Konduru | 6a60cd8 | 2015-04-07 15:28:40 -0700 | [diff] [blame] | 12380 | DRM_DEBUG_KMS("planes on this crtc\n"); |
| 12381 | list_for_each_entry(plane, &dev->mode_config.plane_list, head) { |
| 12382 | intel_plane = to_intel_plane(plane); |
| 12383 | if (intel_plane->pipe != crtc->pipe) |
| 12384 | continue; |
| 12385 | |
| 12386 | state = to_intel_plane_state(plane->state); |
| 12387 | fb = state->base.fb; |
| 12388 | if (!fb) { |
Ville Syrjälä | 1d577e0 | 2016-05-27 20:59:25 +0300 | [diff] [blame] | 12389 | DRM_DEBUG_KMS("[PLANE:%d:%s] disabled, scaler_id = %d\n", |
| 12390 | plane->base.id, plane->name, state->scaler_id); |
Chandra Konduru | 6a60cd8 | 2015-04-07 15:28:40 -0700 | [diff] [blame] | 12391 | continue; |
| 12392 | } |
| 12393 | |
Ville Syrjälä | 1d577e0 | 2016-05-27 20:59:25 +0300 | [diff] [blame] | 12394 | DRM_DEBUG_KMS("[PLANE:%d:%s] enabled", |
| 12395 | plane->base.id, plane->name); |
| 12396 | DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = %s", |
| 12397 | fb->base.id, fb->width, fb->height, |
| 12398 | drm_get_format_name(fb->pixel_format)); |
| 12399 | DRM_DEBUG_KMS("\tscaler:%d src %dx%d+%d+%d dst %dx%d+%d+%d\n", |
| 12400 | state->scaler_id, |
| 12401 | state->src.x1 >> 16, state->src.y1 >> 16, |
| 12402 | drm_rect_width(&state->src) >> 16, |
| 12403 | drm_rect_height(&state->src) >> 16, |
| 12404 | state->dst.x1, state->dst.y1, |
| 12405 | drm_rect_width(&state->dst), |
| 12406 | drm_rect_height(&state->dst)); |
Chandra Konduru | 6a60cd8 | 2015-04-07 15:28:40 -0700 | [diff] [blame] | 12407 | } |
Daniel Vetter | c0b0341 | 2013-05-28 12:05:54 +0200 | [diff] [blame] | 12408 | } |
| 12409 | |
Ander Conselvan de Oliveira | 5448a00 | 2015-04-02 14:47:59 +0300 | [diff] [blame] | 12410 | static bool check_digital_port_conflicts(struct drm_atomic_state *state) |
Ville Syrjälä | 00f0b37 | 2014-12-02 14:10:46 +0200 | [diff] [blame] | 12411 | { |
Ander Conselvan de Oliveira | 5448a00 | 2015-04-02 14:47:59 +0300 | [diff] [blame] | 12412 | struct drm_device *dev = state->dev; |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 12413 | struct drm_connector *connector; |
Ville Syrjälä | 00f0b37 | 2014-12-02 14:10:46 +0200 | [diff] [blame] | 12414 | unsigned int used_ports = 0; |
| 12415 | |
| 12416 | /* |
| 12417 | * Walk the connector list instead of the encoder |
| 12418 | * list to detect the problem on ddi platforms |
| 12419 | * where there's just one encoder per digital port. |
| 12420 | */ |
Ville Syrjälä | 0bff485 | 2015-12-10 18:22:31 +0200 | [diff] [blame] | 12421 | drm_for_each_connector(connector, dev) { |
| 12422 | struct drm_connector_state *connector_state; |
| 12423 | struct intel_encoder *encoder; |
| 12424 | |
| 12425 | connector_state = drm_atomic_get_existing_connector_state(state, connector); |
| 12426 | if (!connector_state) |
| 12427 | connector_state = connector->state; |
| 12428 | |
Ander Conselvan de Oliveira | 5448a00 | 2015-04-02 14:47:59 +0300 | [diff] [blame] | 12429 | if (!connector_state->best_encoder) |
| 12430 | continue; |
| 12431 | |
| 12432 | encoder = to_intel_encoder(connector_state->best_encoder); |
| 12433 | |
| 12434 | WARN_ON(!connector_state->crtc); |
Ville Syrjälä | 00f0b37 | 2014-12-02 14:10:46 +0200 | [diff] [blame] | 12435 | |
| 12436 | switch (encoder->type) { |
| 12437 | unsigned int port_mask; |
| 12438 | case INTEL_OUTPUT_UNKNOWN: |
| 12439 | if (WARN_ON(!HAS_DDI(dev))) |
| 12440 | break; |
| 12441 | case INTEL_OUTPUT_DISPLAYPORT: |
| 12442 | case INTEL_OUTPUT_HDMI: |
| 12443 | case INTEL_OUTPUT_EDP: |
| 12444 | port_mask = 1 << enc_to_dig_port(&encoder->base)->port; |
| 12445 | |
| 12446 | /* the same port mustn't appear more than once */ |
| 12447 | if (used_ports & port_mask) |
| 12448 | return false; |
| 12449 | |
| 12450 | used_ports |= port_mask; |
| 12451 | default: |
| 12452 | break; |
| 12453 | } |
| 12454 | } |
| 12455 | |
| 12456 | return true; |
| 12457 | } |
| 12458 | |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 12459 | static void |
| 12460 | clear_intel_crtc_state(struct intel_crtc_state *crtc_state) |
| 12461 | { |
| 12462 | struct drm_crtc_state tmp_state; |
Chandra Konduru | 663a364 | 2015-04-07 15:28:41 -0700 | [diff] [blame] | 12463 | struct intel_crtc_scaler_state scaler_state; |
Ander Conselvan de Oliveira | 4978cc9 | 2015-04-21 17:13:21 +0300 | [diff] [blame] | 12464 | struct intel_dpll_hw_state dpll_hw_state; |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 12465 | struct intel_shared_dpll *shared_dpll; |
Ander Conselvan de Oliveira | 8504c74 | 2015-05-15 11:51:50 +0300 | [diff] [blame] | 12466 | uint32_t ddi_pll_sel; |
Maarten Lankhorst | c4e2d04 | 2015-08-05 12:36:59 +0200 | [diff] [blame] | 12467 | bool force_thru; |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 12468 | |
Ander Conselvan de Oliveira | 7546a38 | 2015-05-20 09:03:27 +0300 | [diff] [blame] | 12469 | /* FIXME: before the switch to atomic started, a new pipe_config was |
| 12470 | * kzalloc'd. Code that depends on any field being zero should be |
| 12471 | * fixed, so that the crtc_state can be safely duplicated. For now, |
| 12472 | * only fields that are know to not cause problems are preserved. */ |
| 12473 | |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 12474 | tmp_state = crtc_state->base; |
Chandra Konduru | 663a364 | 2015-04-07 15:28:41 -0700 | [diff] [blame] | 12475 | scaler_state = crtc_state->scaler_state; |
Ander Conselvan de Oliveira | 4978cc9 | 2015-04-21 17:13:21 +0300 | [diff] [blame] | 12476 | shared_dpll = crtc_state->shared_dpll; |
| 12477 | dpll_hw_state = crtc_state->dpll_hw_state; |
Ander Conselvan de Oliveira | 8504c74 | 2015-05-15 11:51:50 +0300 | [diff] [blame] | 12478 | ddi_pll_sel = crtc_state->ddi_pll_sel; |
Maarten Lankhorst | c4e2d04 | 2015-08-05 12:36:59 +0200 | [diff] [blame] | 12479 | force_thru = crtc_state->pch_pfit.force_thru; |
Ander Conselvan de Oliveira | 4978cc9 | 2015-04-21 17:13:21 +0300 | [diff] [blame] | 12480 | |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 12481 | memset(crtc_state, 0, sizeof *crtc_state); |
Ander Conselvan de Oliveira | 4978cc9 | 2015-04-21 17:13:21 +0300 | [diff] [blame] | 12482 | |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 12483 | crtc_state->base = tmp_state; |
Chandra Konduru | 663a364 | 2015-04-07 15:28:41 -0700 | [diff] [blame] | 12484 | crtc_state->scaler_state = scaler_state; |
Ander Conselvan de Oliveira | 4978cc9 | 2015-04-21 17:13:21 +0300 | [diff] [blame] | 12485 | crtc_state->shared_dpll = shared_dpll; |
| 12486 | crtc_state->dpll_hw_state = dpll_hw_state; |
Ander Conselvan de Oliveira | 8504c74 | 2015-05-15 11:51:50 +0300 | [diff] [blame] | 12487 | crtc_state->ddi_pll_sel = ddi_pll_sel; |
Maarten Lankhorst | c4e2d04 | 2015-08-05 12:36:59 +0200 | [diff] [blame] | 12488 | crtc_state->pch_pfit.force_thru = force_thru; |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 12489 | } |
| 12490 | |
Ander Conselvan de Oliveira | 548ee15 | 2015-04-21 17:13:02 +0300 | [diff] [blame] | 12491 | static int |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 12492 | intel_modeset_pipe_config(struct drm_crtc *crtc, |
Maarten Lankhorst | b359283 | 2015-06-15 12:33:38 +0200 | [diff] [blame] | 12493 | struct intel_crtc_state *pipe_config) |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12494 | { |
Maarten Lankhorst | b359283 | 2015-06-15 12:33:38 +0200 | [diff] [blame] | 12495 | struct drm_atomic_state *state = pipe_config->base.state; |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12496 | struct intel_encoder *encoder; |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 12497 | struct drm_connector *connector; |
Ander Conselvan de Oliveira | 0b90187 | 2015-03-20 16:18:08 +0200 | [diff] [blame] | 12498 | struct drm_connector_state *connector_state; |
Daniel Vetter | d328c9d | 2015-04-10 16:22:37 +0200 | [diff] [blame] | 12499 | int base_bpp, ret = -EINVAL; |
Ander Conselvan de Oliveira | 0b90187 | 2015-03-20 16:18:08 +0200 | [diff] [blame] | 12500 | int i; |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 12501 | bool retry = true; |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12502 | |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 12503 | clear_intel_crtc_state(pipe_config); |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12504 | |
Daniel Vetter | e143a21 | 2013-07-04 12:01:15 +0200 | [diff] [blame] | 12505 | pipe_config->cpu_transcoder = |
| 12506 | (enum transcoder) to_intel_crtc(crtc)->pipe; |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 12507 | |
Imre Deak | 2960bc9 | 2013-07-30 13:36:32 +0300 | [diff] [blame] | 12508 | /* |
| 12509 | * Sanitize sync polarity flags based on requested ones. If neither |
| 12510 | * positive or negative polarity is requested, treat this as meaning |
| 12511 | * negative polarity. |
| 12512 | */ |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12513 | if (!(pipe_config->base.adjusted_mode.flags & |
Imre Deak | 2960bc9 | 2013-07-30 13:36:32 +0300 | [diff] [blame] | 12514 | (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC))) |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12515 | pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC; |
Imre Deak | 2960bc9 | 2013-07-30 13:36:32 +0300 | [diff] [blame] | 12516 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12517 | if (!(pipe_config->base.adjusted_mode.flags & |
Imre Deak | 2960bc9 | 2013-07-30 13:36:32 +0300 | [diff] [blame] | 12518 | (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC))) |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12519 | pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC; |
Imre Deak | 2960bc9 | 2013-07-30 13:36:32 +0300 | [diff] [blame] | 12520 | |
Daniel Vetter | d328c9d | 2015-04-10 16:22:37 +0200 | [diff] [blame] | 12521 | base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc), |
| 12522 | pipe_config); |
| 12523 | if (base_bpp < 0) |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12524 | goto fail; |
| 12525 | |
Ville Syrjälä | e41a56b | 2013-10-01 22:52:14 +0300 | [diff] [blame] | 12526 | /* |
| 12527 | * Determine the real pipe dimensions. Note that stereo modes can |
| 12528 | * increase the actual pipe size due to the frame doubling and |
| 12529 | * insertion of additional space for blanks between the frame. This |
| 12530 | * is stored in the crtc timings. We use the requested mode to do this |
| 12531 | * computation to clearly distinguish it from the adjusted mode, which |
| 12532 | * can be changed by the connectors in the below retry loop. |
| 12533 | */ |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12534 | drm_crtc_get_hv_timing(&pipe_config->base.mode, |
Gustavo Padovan | ecb7e16 | 2014-12-01 15:40:09 -0800 | [diff] [blame] | 12535 | &pipe_config->pipe_src_w, |
| 12536 | &pipe_config->pipe_src_h); |
Ville Syrjälä | e41a56b | 2013-10-01 22:52:14 +0300 | [diff] [blame] | 12537 | |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 12538 | encoder_retry: |
Daniel Vetter | ef1b460 | 2013-06-01 17:17:04 +0200 | [diff] [blame] | 12539 | /* Ensure the port clock defaults are reset when retrying. */ |
Daniel Vetter | ff9a675 | 2013-06-01 17:16:21 +0200 | [diff] [blame] | 12540 | pipe_config->port_clock = 0; |
Daniel Vetter | ef1b460 | 2013-06-01 17:17:04 +0200 | [diff] [blame] | 12541 | pipe_config->pixel_multiplier = 1; |
Daniel Vetter | ff9a675 | 2013-06-01 17:16:21 +0200 | [diff] [blame] | 12542 | |
Daniel Vetter | 135c81b | 2013-07-21 21:37:09 +0200 | [diff] [blame] | 12543 | /* Fill in default crtc timings, allow encoders to overwrite them. */ |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12544 | drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode, |
| 12545 | CRTC_STEREO_DOUBLE); |
Daniel Vetter | 135c81b | 2013-07-21 21:37:09 +0200 | [diff] [blame] | 12546 | |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12547 | /* Pass our mode to the connectors and the CRTC to give them a chance to |
| 12548 | * adjust it according to limitations or connector properties, and also |
| 12549 | * a chance to reject the mode entirely. |
| 12550 | */ |
Ander Conselvan de Oliveira | da3ced298 | 2015-04-21 17:12:59 +0300 | [diff] [blame] | 12551 | for_each_connector_in_state(state, connector, connector_state, i) { |
Ander Conselvan de Oliveira | 0b90187 | 2015-03-20 16:18:08 +0200 | [diff] [blame] | 12552 | if (connector_state->crtc != crtc) |
| 12553 | continue; |
| 12554 | |
| 12555 | encoder = to_intel_encoder(connector_state->best_encoder); |
| 12556 | |
Daniel Vetter | efea6e8 | 2013-07-21 21:36:59 +0200 | [diff] [blame] | 12557 | if (!(encoder->compute_config(encoder, pipe_config))) { |
| 12558 | DRM_DEBUG_KMS("Encoder config failure\n"); |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12559 | goto fail; |
| 12560 | } |
| 12561 | } |
| 12562 | |
Daniel Vetter | ff9a675 | 2013-06-01 17:16:21 +0200 | [diff] [blame] | 12563 | /* Set default port clock if not overwritten by the encoder. Needs to be |
| 12564 | * done afterwards in case the encoder adjusts the mode. */ |
| 12565 | if (!pipe_config->port_clock) |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12566 | pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 12567 | * pipe_config->pixel_multiplier; |
Daniel Vetter | ff9a675 | 2013-06-01 17:16:21 +0200 | [diff] [blame] | 12568 | |
Daniel Vetter | a43f6e0 | 2013-06-07 23:10:32 +0200 | [diff] [blame] | 12569 | ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config); |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 12570 | if (ret < 0) { |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12571 | DRM_DEBUG_KMS("CRTC fixup failed\n"); |
| 12572 | goto fail; |
| 12573 | } |
Daniel Vetter | e29c22c | 2013-02-21 00:00:16 +0100 | [diff] [blame] | 12574 | |
| 12575 | if (ret == RETRY) { |
| 12576 | if (WARN(!retry, "loop in pipe configuration computation\n")) { |
| 12577 | ret = -EINVAL; |
| 12578 | goto fail; |
| 12579 | } |
| 12580 | |
| 12581 | DRM_DEBUG_KMS("CRTC bw constrained, retrying\n"); |
| 12582 | retry = false; |
| 12583 | goto encoder_retry; |
| 12584 | } |
| 12585 | |
Daniel Vetter | e8fa427 | 2015-08-12 11:43:34 +0200 | [diff] [blame] | 12586 | /* Dithering seems to not pass-through bits correctly when it should, so |
| 12587 | * only enable it on 6bpc panels. */ |
| 12588 | pipe_config->dither = pipe_config->pipe_bpp == 6*3; |
Daniel Vetter | 62f0ace | 2015-08-26 18:57:26 +0200 | [diff] [blame] | 12589 | DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n", |
Daniel Vetter | d328c9d | 2015-04-10 16:22:37 +0200 | [diff] [blame] | 12590 | base_bpp, pipe_config->pipe_bpp, pipe_config->dither); |
Daniel Vetter | 4e53c2e | 2013-03-27 00:44:58 +0100 | [diff] [blame] | 12591 | |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12592 | fail: |
Ander Conselvan de Oliveira | 548ee15 | 2015-04-21 17:13:02 +0300 | [diff] [blame] | 12593 | return ret; |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 12594 | } |
| 12595 | |
Ander Conselvan de Oliveira | 0a9ab30 | 2015-04-21 17:13:04 +0300 | [diff] [blame] | 12596 | static void |
Maarten Lankhorst | 4740b0f | 2015-08-05 12:37:10 +0200 | [diff] [blame] | 12597 | intel_modeset_update_crtc_state(struct drm_atomic_state *state) |
Ander Conselvan de Oliveira | 0a9ab30 | 2015-04-21 17:13:04 +0300 | [diff] [blame] | 12598 | { |
Ander Conselvan de Oliveira | 0a9ab30 | 2015-04-21 17:13:04 +0300 | [diff] [blame] | 12599 | struct drm_crtc *crtc; |
| 12600 | struct drm_crtc_state *crtc_state; |
Maarten Lankhorst | 8a75d15 | 2015-07-13 16:30:14 +0200 | [diff] [blame] | 12601 | int i; |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 12602 | |
Ville Syrjälä | 7668851 | 2014-01-10 11:28:06 +0200 | [diff] [blame] | 12603 | /* Double check state. */ |
Maarten Lankhorst | 8a75d15 | 2015-07-13 16:30:14 +0200 | [diff] [blame] | 12604 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Maarten Lankhorst | 3cb480b | 2015-06-01 12:49:49 +0200 | [diff] [blame] | 12605 | to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state); |
Maarten Lankhorst | fc467a22 | 2015-06-01 12:50:07 +0200 | [diff] [blame] | 12606 | |
| 12607 | /* Update hwmode for vblank functions */ |
| 12608 | if (crtc->state->active) |
| 12609 | crtc->hwmode = crtc->state->adjusted_mode; |
| 12610 | else |
| 12611 | crtc->hwmode.crtc_clock = 0; |
Maarten Lankhorst | 61067a5 | 2015-09-23 16:29:36 +0200 | [diff] [blame] | 12612 | |
| 12613 | /* |
| 12614 | * Update legacy state to satisfy fbc code. This can |
| 12615 | * be removed when fbc uses the atomic state. |
| 12616 | */ |
| 12617 | if (drm_atomic_get_existing_plane_state(state, crtc->primary)) { |
| 12618 | struct drm_plane_state *plane_state = crtc->primary->state; |
| 12619 | |
| 12620 | crtc->primary->fb = plane_state->fb; |
| 12621 | crtc->x = plane_state->src_x >> 16; |
| 12622 | crtc->y = plane_state->src_y >> 16; |
| 12623 | } |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 12624 | } |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 12625 | } |
| 12626 | |
Ville Syrjälä | 3bd2626 | 2013-09-06 23:29:02 +0300 | [diff] [blame] | 12627 | static bool intel_fuzzy_clock_check(int clock1, int clock2) |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 12628 | { |
Ville Syrjälä | 3bd2626 | 2013-09-06 23:29:02 +0300 | [diff] [blame] | 12629 | int diff; |
Jesse Barnes | f1f644d | 2013-06-27 00:39:25 +0300 | [diff] [blame] | 12630 | |
| 12631 | if (clock1 == clock2) |
| 12632 | return true; |
| 12633 | |
| 12634 | if (!clock1 || !clock2) |
| 12635 | return false; |
| 12636 | |
| 12637 | diff = abs(clock1 - clock2); |
| 12638 | |
| 12639 | if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105) |
| 12640 | return true; |
| 12641 | |
| 12642 | return false; |
| 12643 | } |
| 12644 | |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 12645 | #define for_each_intel_crtc_masked(dev, mask, intel_crtc) \ |
| 12646 | list_for_each_entry((intel_crtc), \ |
| 12647 | &(dev)->mode_config.crtc_list, \ |
| 12648 | base.head) \ |
Jani Nikula | 95150bd | 2015-11-24 21:21:56 +0200 | [diff] [blame] | 12649 | for_each_if (mask & (1 <<(intel_crtc)->pipe)) |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 12650 | |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12651 | static bool |
| 12652 | intel_compare_m_n(unsigned int m, unsigned int n, |
| 12653 | unsigned int m2, unsigned int n2, |
| 12654 | bool exact) |
| 12655 | { |
| 12656 | if (m == m2 && n == n2) |
| 12657 | return true; |
| 12658 | |
| 12659 | if (exact || !m || !n || !m2 || !n2) |
| 12660 | return false; |
| 12661 | |
| 12662 | BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX); |
| 12663 | |
Maarten Lankhorst | 31d10b5 | 2016-01-06 13:54:43 +0100 | [diff] [blame] | 12664 | if (n > n2) { |
| 12665 | while (n > n2) { |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12666 | m2 <<= 1; |
| 12667 | n2 <<= 1; |
| 12668 | } |
Maarten Lankhorst | 31d10b5 | 2016-01-06 13:54:43 +0100 | [diff] [blame] | 12669 | } else if (n < n2) { |
| 12670 | while (n < n2) { |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12671 | m <<= 1; |
| 12672 | n <<= 1; |
| 12673 | } |
| 12674 | } |
| 12675 | |
Maarten Lankhorst | 31d10b5 | 2016-01-06 13:54:43 +0100 | [diff] [blame] | 12676 | if (n != n2) |
| 12677 | return false; |
| 12678 | |
| 12679 | return intel_fuzzy_clock_check(m, m2); |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12680 | } |
| 12681 | |
| 12682 | static bool |
| 12683 | intel_compare_link_m_n(const struct intel_link_m_n *m_n, |
| 12684 | struct intel_link_m_n *m2_n2, |
| 12685 | bool adjust) |
| 12686 | { |
| 12687 | if (m_n->tu == m2_n2->tu && |
| 12688 | intel_compare_m_n(m_n->gmch_m, m_n->gmch_n, |
| 12689 | m2_n2->gmch_m, m2_n2->gmch_n, !adjust) && |
| 12690 | intel_compare_m_n(m_n->link_m, m_n->link_n, |
| 12691 | m2_n2->link_m, m2_n2->link_n, !adjust)) { |
| 12692 | if (adjust) |
| 12693 | *m2_n2 = *m_n; |
| 12694 | |
| 12695 | return true; |
| 12696 | } |
| 12697 | |
| 12698 | return false; |
| 12699 | } |
| 12700 | |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 12701 | static bool |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 12702 | intel_pipe_config_compare(struct drm_device *dev, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 12703 | struct intel_crtc_state *current_config, |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12704 | struct intel_crtc_state *pipe_config, |
| 12705 | bool adjust) |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 12706 | { |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12707 | bool ret = true; |
| 12708 | |
| 12709 | #define INTEL_ERR_OR_DBG_KMS(fmt, ...) \ |
| 12710 | do { \ |
| 12711 | if (!adjust) \ |
| 12712 | DRM_ERROR(fmt, ##__VA_ARGS__); \ |
| 12713 | else \ |
| 12714 | DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \ |
| 12715 | } while (0) |
| 12716 | |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 12717 | #define PIPE_CONF_CHECK_X(name) \ |
| 12718 | if (current_config->name != pipe_config->name) { \ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12719 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 12720 | "(expected 0x%08x, found 0x%08x)\n", \ |
| 12721 | current_config->name, \ |
| 12722 | pipe_config->name); \ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12723 | ret = false; \ |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 12724 | } |
| 12725 | |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 12726 | #define PIPE_CONF_CHECK_I(name) \ |
| 12727 | if (current_config->name != pipe_config->name) { \ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12728 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 12729 | "(expected %i, found %i)\n", \ |
| 12730 | current_config->name, \ |
| 12731 | pipe_config->name); \ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12732 | ret = false; \ |
| 12733 | } |
| 12734 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 12735 | #define PIPE_CONF_CHECK_P(name) \ |
| 12736 | if (current_config->name != pipe_config->name) { \ |
| 12737 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
| 12738 | "(expected %p, found %p)\n", \ |
| 12739 | current_config->name, \ |
| 12740 | pipe_config->name); \ |
| 12741 | ret = false; \ |
| 12742 | } |
| 12743 | |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12744 | #define PIPE_CONF_CHECK_M_N(name) \ |
| 12745 | if (!intel_compare_link_m_n(¤t_config->name, \ |
| 12746 | &pipe_config->name,\ |
| 12747 | adjust)) { \ |
| 12748 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
| 12749 | "(expected tu %i gmch %i/%i link %i/%i, " \ |
| 12750 | "found tu %i, gmch %i/%i link %i/%i)\n", \ |
| 12751 | current_config->name.tu, \ |
| 12752 | current_config->name.gmch_m, \ |
| 12753 | current_config->name.gmch_n, \ |
| 12754 | current_config->name.link_m, \ |
| 12755 | current_config->name.link_n, \ |
| 12756 | pipe_config->name.tu, \ |
| 12757 | pipe_config->name.gmch_m, \ |
| 12758 | pipe_config->name.gmch_n, \ |
| 12759 | pipe_config->name.link_m, \ |
| 12760 | pipe_config->name.link_n); \ |
| 12761 | ret = false; \ |
| 12762 | } |
| 12763 | |
Daniel Vetter | 55c561a | 2016-03-30 11:34:36 +0200 | [diff] [blame] | 12764 | /* This is required for BDW+ where there is only one set of registers for |
| 12765 | * switching between high and low RR. |
| 12766 | * This macro can be used whenever a comparison has to be made between one |
| 12767 | * hw state and multiple sw state variables. |
| 12768 | */ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12769 | #define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \ |
| 12770 | if (!intel_compare_link_m_n(¤t_config->name, \ |
| 12771 | &pipe_config->name, adjust) && \ |
| 12772 | !intel_compare_link_m_n(¤t_config->alt_name, \ |
| 12773 | &pipe_config->name, adjust)) { \ |
| 12774 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
| 12775 | "(expected tu %i gmch %i/%i link %i/%i, " \ |
| 12776 | "or tu %i gmch %i/%i link %i/%i, " \ |
| 12777 | "found tu %i, gmch %i/%i link %i/%i)\n", \ |
| 12778 | current_config->name.tu, \ |
| 12779 | current_config->name.gmch_m, \ |
| 12780 | current_config->name.gmch_n, \ |
| 12781 | current_config->name.link_m, \ |
| 12782 | current_config->name.link_n, \ |
| 12783 | current_config->alt_name.tu, \ |
| 12784 | current_config->alt_name.gmch_m, \ |
| 12785 | current_config->alt_name.gmch_n, \ |
| 12786 | current_config->alt_name.link_m, \ |
| 12787 | current_config->alt_name.link_n, \ |
| 12788 | pipe_config->name.tu, \ |
| 12789 | pipe_config->name.gmch_m, \ |
| 12790 | pipe_config->name.gmch_n, \ |
| 12791 | pipe_config->name.link_m, \ |
| 12792 | pipe_config->name.link_n); \ |
| 12793 | ret = false; \ |
Daniel Vetter | 88adfff | 2013-03-28 10:42:01 +0100 | [diff] [blame] | 12794 | } |
| 12795 | |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 12796 | #define PIPE_CONF_CHECK_FLAGS(name, mask) \ |
| 12797 | if ((current_config->name ^ pipe_config->name) & (mask)) { \ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12798 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \ |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 12799 | "(expected %i, found %i)\n", \ |
| 12800 | current_config->name & (mask), \ |
| 12801 | pipe_config->name & (mask)); \ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12802 | ret = false; \ |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 12803 | } |
| 12804 | |
Ville Syrjälä | 5e55065 | 2013-09-06 23:29:07 +0300 | [diff] [blame] | 12805 | #define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \ |
| 12806 | if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12807 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
Ville Syrjälä | 5e55065 | 2013-09-06 23:29:07 +0300 | [diff] [blame] | 12808 | "(expected %i, found %i)\n", \ |
| 12809 | current_config->name, \ |
| 12810 | pipe_config->name); \ |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12811 | ret = false; \ |
Ville Syrjälä | 5e55065 | 2013-09-06 23:29:07 +0300 | [diff] [blame] | 12812 | } |
| 12813 | |
Daniel Vetter | bb76006 | 2013-06-06 14:55:52 +0200 | [diff] [blame] | 12814 | #define PIPE_CONF_QUIRK(quirk) \ |
| 12815 | ((current_config->quirks | pipe_config->quirks) & (quirk)) |
| 12816 | |
Daniel Vetter | eccb140 | 2013-05-22 00:50:22 +0200 | [diff] [blame] | 12817 | PIPE_CONF_CHECK_I(cpu_transcoder); |
| 12818 | |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 12819 | PIPE_CONF_CHECK_I(has_pch_encoder); |
| 12820 | PIPE_CONF_CHECK_I(fdi_lanes); |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12821 | PIPE_CONF_CHECK_M_N(fdi_m_n); |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 12822 | |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 12823 | PIPE_CONF_CHECK_I(has_dp_encoder); |
Ville Syrjälä | 90a6b7b | 2015-07-06 16:39:15 +0300 | [diff] [blame] | 12824 | PIPE_CONF_CHECK_I(lane_count); |
Imre Deak | 95a7a2a | 2016-06-13 16:44:35 +0300 | [diff] [blame] | 12825 | PIPE_CONF_CHECK_X(lane_lat_optim_mask); |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 12826 | |
| 12827 | if (INTEL_INFO(dev)->gen < 8) { |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12828 | PIPE_CONF_CHECK_M_N(dp_m_n); |
Vandana Kannan | b95af8b | 2014-08-05 07:51:23 -0700 | [diff] [blame] | 12829 | |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12830 | if (current_config->has_drrs) |
| 12831 | PIPE_CONF_CHECK_M_N(dp_m2_n2); |
| 12832 | } else |
| 12833 | PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2); |
Ville Syrjälä | eb14cb7 | 2013-09-10 17:02:54 +0300 | [diff] [blame] | 12834 | |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 12835 | PIPE_CONF_CHECK_I(has_dsi_encoder); |
| 12836 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12837 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay); |
| 12838 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal); |
| 12839 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start); |
| 12840 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end); |
| 12841 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start); |
| 12842 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end); |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 12843 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12844 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay); |
| 12845 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal); |
| 12846 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start); |
| 12847 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end); |
| 12848 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start); |
| 12849 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end); |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 12850 | |
Daniel Vetter | c93f54c | 2013-06-27 19:47:19 +0200 | [diff] [blame] | 12851 | PIPE_CONF_CHECK_I(pixel_multiplier); |
Daniel Vetter | 6897b4b5 | 2014-04-24 23:54:47 +0200 | [diff] [blame] | 12852 | PIPE_CONF_CHECK_I(has_hdmi_sink); |
Daniel Vetter | b5a9fa0 | 2014-04-24 23:54:49 +0200 | [diff] [blame] | 12853 | if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) || |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 12854 | IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) |
Daniel Vetter | b5a9fa0 | 2014-04-24 23:54:49 +0200 | [diff] [blame] | 12855 | PIPE_CONF_CHECK_I(limited_color_range); |
Jesse Barnes | e43823e | 2014-11-05 14:26:08 -0800 | [diff] [blame] | 12856 | PIPE_CONF_CHECK_I(has_infoframe); |
Daniel Vetter | 6c49f24 | 2013-06-06 12:45:25 +0200 | [diff] [blame] | 12857 | |
Daniel Vetter | 9ed109a | 2014-04-24 23:54:52 +0200 | [diff] [blame] | 12858 | PIPE_CONF_CHECK_I(has_audio); |
| 12859 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12860 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 12861 | DRM_MODE_FLAG_INTERLACE); |
| 12862 | |
Daniel Vetter | bb76006 | 2013-06-06 14:55:52 +0200 | [diff] [blame] | 12863 | if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) { |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12864 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
Daniel Vetter | bb76006 | 2013-06-06 14:55:52 +0200 | [diff] [blame] | 12865 | DRM_MODE_FLAG_PHSYNC); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12866 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
Daniel Vetter | bb76006 | 2013-06-06 14:55:52 +0200 | [diff] [blame] | 12867 | DRM_MODE_FLAG_NHSYNC); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12868 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
Daniel Vetter | bb76006 | 2013-06-06 14:55:52 +0200 | [diff] [blame] | 12869 | DRM_MODE_FLAG_PVSYNC); |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12870 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
Daniel Vetter | bb76006 | 2013-06-06 14:55:52 +0200 | [diff] [blame] | 12871 | DRM_MODE_FLAG_NVSYNC); |
| 12872 | } |
Jesse Barnes | 045ac3b | 2013-05-14 17:08:26 -0700 | [diff] [blame] | 12873 | |
Ville Syrjälä | 333b8ca | 2015-09-03 21:50:16 +0300 | [diff] [blame] | 12874 | PIPE_CONF_CHECK_X(gmch_pfit.control); |
Daniel Vetter | e2ff2d4 | 2015-07-15 14:15:50 +0200 | [diff] [blame] | 12875 | /* pfit ratios are autocomputed by the hw on gen4+ */ |
| 12876 | if (INTEL_INFO(dev)->gen < 4) |
Ville Syrjälä | 7f7d8dd | 2016-03-15 16:40:07 +0200 | [diff] [blame] | 12877 | PIPE_CONF_CHECK_X(gmch_pfit.pgm_ratios); |
Ville Syrjälä | 333b8ca | 2015-09-03 21:50:16 +0300 | [diff] [blame] | 12878 | PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits); |
Daniel Vetter | 9953599 | 2014-04-13 12:00:33 +0200 | [diff] [blame] | 12879 | |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 12880 | if (!adjust) { |
| 12881 | PIPE_CONF_CHECK_I(pipe_src_w); |
| 12882 | PIPE_CONF_CHECK_I(pipe_src_h); |
| 12883 | |
| 12884 | PIPE_CONF_CHECK_I(pch_pfit.enabled); |
| 12885 | if (current_config->pch_pfit.enabled) { |
| 12886 | PIPE_CONF_CHECK_X(pch_pfit.pos); |
| 12887 | PIPE_CONF_CHECK_X(pch_pfit.size); |
| 12888 | } |
Daniel Vetter | 2fa2fe9 | 2013-05-07 23:34:16 +0200 | [diff] [blame] | 12889 | |
Maarten Lankhorst | 7aefe2b | 2015-09-14 11:30:10 +0200 | [diff] [blame] | 12890 | PIPE_CONF_CHECK_I(scaler_state.scaler_id); |
| 12891 | } |
Chandra Konduru | a1b2278 | 2015-04-07 15:28:45 -0700 | [diff] [blame] | 12892 | |
Jesse Barnes | e59150d | 2014-01-07 13:30:45 -0800 | [diff] [blame] | 12893 | /* BDW+ don't expose a synchronous way to read the state */ |
| 12894 | if (IS_HASWELL(dev)) |
| 12895 | PIPE_CONF_CHECK_I(ips_enabled); |
Paulo Zanoni | 42db64e | 2013-05-31 16:33:22 -0300 | [diff] [blame] | 12896 | |
Ville Syrjälä | 282740f | 2013-09-04 18:30:03 +0300 | [diff] [blame] | 12897 | PIPE_CONF_CHECK_I(double_wide); |
| 12898 | |
Daniel Vetter | 26804af | 2014-06-25 22:01:55 +0300 | [diff] [blame] | 12899 | PIPE_CONF_CHECK_X(ddi_pll_sel); |
| 12900 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 12901 | PIPE_CONF_CHECK_P(shared_dpll); |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 12902 | PIPE_CONF_CHECK_X(dpll_hw_state.dpll); |
Daniel Vetter | 8bcc279 | 2013-06-05 13:34:28 +0200 | [diff] [blame] | 12903 | PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md); |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 12904 | PIPE_CONF_CHECK_X(dpll_hw_state.fp0); |
| 12905 | PIPE_CONF_CHECK_X(dpll_hw_state.fp1); |
Daniel Vetter | d452c5b | 2014-07-04 11:27:39 -0300 | [diff] [blame] | 12906 | PIPE_CONF_CHECK_X(dpll_hw_state.wrpll); |
Maarten Lankhorst | 00490c2 | 2015-11-16 14:42:12 +0100 | [diff] [blame] | 12907 | PIPE_CONF_CHECK_X(dpll_hw_state.spll); |
Damien Lespiau | 3f4cd19 | 2014-11-13 14:55:21 +0000 | [diff] [blame] | 12908 | PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1); |
| 12909 | PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1); |
| 12910 | PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2); |
Daniel Vetter | c0d43d6 | 2013-06-07 23:11:08 +0200 | [diff] [blame] | 12911 | |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 12912 | PIPE_CONF_CHECK_X(dsi_pll.ctrl); |
| 12913 | PIPE_CONF_CHECK_X(dsi_pll.div); |
| 12914 | |
Ville Syrjälä | 42571ae | 2013-09-06 23:29:00 +0300 | [diff] [blame] | 12915 | if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) |
| 12916 | PIPE_CONF_CHECK_I(pipe_bpp); |
| 12917 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 12918 | PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock); |
Jesse Barnes | a9a7e98 | 2014-01-20 14:18:04 -0800 | [diff] [blame] | 12919 | PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock); |
Ville Syrjälä | 5e55065 | 2013-09-06 23:29:07 +0300 | [diff] [blame] | 12920 | |
Daniel Vetter | 66e985c | 2013-06-05 13:34:20 +0200 | [diff] [blame] | 12921 | #undef PIPE_CONF_CHECK_X |
Daniel Vetter | 08a2403 | 2013-04-19 11:25:34 +0200 | [diff] [blame] | 12922 | #undef PIPE_CONF_CHECK_I |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 12923 | #undef PIPE_CONF_CHECK_P |
Daniel Vetter | 1bd1bd8 | 2013-04-29 21:56:12 +0200 | [diff] [blame] | 12924 | #undef PIPE_CONF_CHECK_FLAGS |
Ville Syrjälä | 5e55065 | 2013-09-06 23:29:07 +0300 | [diff] [blame] | 12925 | #undef PIPE_CONF_CHECK_CLOCK_FUZZY |
Daniel Vetter | bb76006 | 2013-06-06 14:55:52 +0200 | [diff] [blame] | 12926 | #undef PIPE_CONF_QUIRK |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12927 | #undef INTEL_ERR_OR_DBG_KMS |
Daniel Vetter | 627eb5a | 2013-04-29 19:33:42 +0200 | [diff] [blame] | 12928 | |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 12929 | return ret; |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 12930 | } |
| 12931 | |
Ville Syrjälä | e3b247d | 2016-02-17 21:41:09 +0200 | [diff] [blame] | 12932 | static void intel_pipe_config_sanity_check(struct drm_i915_private *dev_priv, |
| 12933 | const struct intel_crtc_state *pipe_config) |
| 12934 | { |
| 12935 | if (pipe_config->has_pch_encoder) { |
Ville Syrjälä | 21a727b | 2016-02-17 21:41:10 +0200 | [diff] [blame] | 12936 | int fdi_dotclock = intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config), |
Ville Syrjälä | e3b247d | 2016-02-17 21:41:09 +0200 | [diff] [blame] | 12937 | &pipe_config->fdi_m_n); |
| 12938 | int dotclock = pipe_config->base.adjusted_mode.crtc_clock; |
| 12939 | |
| 12940 | /* |
| 12941 | * FDI already provided one idea for the dotclock. |
| 12942 | * Yell if the encoder disagrees. |
| 12943 | */ |
| 12944 | WARN(!intel_fuzzy_clock_check(fdi_dotclock, dotclock), |
| 12945 | "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n", |
| 12946 | fdi_dotclock, dotclock); |
| 12947 | } |
| 12948 | } |
| 12949 | |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 12950 | static void verify_wm_state(struct drm_crtc *crtc, |
| 12951 | struct drm_crtc_state *new_state) |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 12952 | { |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 12953 | struct drm_device *dev = crtc->dev; |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 12954 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 12955 | struct skl_ddb_allocation hw_ddb, *sw_ddb; |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 12956 | struct skl_ddb_entry *hw_entry, *sw_entry; |
| 12957 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 12958 | const enum pipe pipe = intel_crtc->pipe; |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 12959 | int plane; |
| 12960 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 12961 | if (INTEL_INFO(dev)->gen < 9 || !new_state->active) |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 12962 | return; |
| 12963 | |
| 12964 | skl_ddb_get_hw_state(dev_priv, &hw_ddb); |
| 12965 | sw_ddb = &dev_priv->wm.skl_hw.ddb; |
| 12966 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 12967 | /* planes */ |
| 12968 | for_each_plane(dev_priv, pipe, plane) { |
| 12969 | hw_entry = &hw_ddb.plane[pipe][plane]; |
| 12970 | sw_entry = &sw_ddb->plane[pipe][plane]; |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 12971 | |
| 12972 | if (skl_ddb_entry_equal(hw_entry, sw_entry)) |
| 12973 | continue; |
| 12974 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 12975 | DRM_ERROR("mismatch in DDB state pipe %c plane %d " |
| 12976 | "(expected (%u,%u), found (%u,%u))\n", |
| 12977 | pipe_name(pipe), plane + 1, |
| 12978 | sw_entry->start, sw_entry->end, |
| 12979 | hw_entry->start, hw_entry->end); |
| 12980 | } |
| 12981 | |
| 12982 | /* cursor */ |
| 12983 | hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR]; |
| 12984 | sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR]; |
| 12985 | |
| 12986 | if (!skl_ddb_entry_equal(hw_entry, sw_entry)) { |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 12987 | DRM_ERROR("mismatch in DDB state pipe %c cursor " |
| 12988 | "(expected (%u,%u), found (%u,%u))\n", |
| 12989 | pipe_name(pipe), |
| 12990 | sw_entry->start, sw_entry->end, |
| 12991 | hw_entry->start, hw_entry->end); |
| 12992 | } |
| 12993 | } |
| 12994 | |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 12995 | static void |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 12996 | verify_connector_state(struct drm_device *dev, struct drm_crtc *crtc) |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 12997 | { |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 12998 | struct drm_connector *connector; |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 12999 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13000 | drm_for_each_connector(connector, dev) { |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 13001 | struct drm_encoder *encoder = connector->encoder; |
| 13002 | struct drm_connector_state *state = connector->state; |
Maarten Lankhorst | ad3c558 | 2015-07-13 16:30:26 +0200 | [diff] [blame] | 13003 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13004 | if (state->crtc != crtc) |
| 13005 | continue; |
| 13006 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13007 | intel_connector_verify_state(to_intel_connector(connector)); |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13008 | |
Maarten Lankhorst | ad3c558 | 2015-07-13 16:30:26 +0200 | [diff] [blame] | 13009 | I915_STATE_WARN(state->best_encoder != encoder, |
Maarten Lankhorst | 35dd3c6 | 2015-08-06 13:49:22 +0200 | [diff] [blame] | 13010 | "connector's atomic encoder doesn't match legacy encoder\n"); |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13011 | } |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 13012 | } |
| 13013 | |
| 13014 | static void |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13015 | verify_encoder_state(struct drm_device *dev) |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 13016 | { |
| 13017 | struct intel_encoder *encoder; |
| 13018 | struct intel_connector *connector; |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13019 | |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 13020 | for_each_intel_encoder(dev, encoder) { |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13021 | bool enabled = false; |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13022 | enum pipe pipe; |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13023 | |
| 13024 | DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", |
| 13025 | encoder->base.base.id, |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 13026 | encoder->base.name); |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13027 | |
Ander Conselvan de Oliveira | 3a3371f | 2015-03-03 15:21:56 +0200 | [diff] [blame] | 13028 | for_each_intel_connector(dev, connector) { |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13029 | if (connector->base.state->best_encoder != &encoder->base) |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13030 | continue; |
| 13031 | enabled = true; |
Maarten Lankhorst | ad3c558 | 2015-07-13 16:30:26 +0200 | [diff] [blame] | 13032 | |
| 13033 | I915_STATE_WARN(connector->base.state->crtc != |
| 13034 | encoder->base.crtc, |
| 13035 | "connector's crtc doesn't match encoder crtc\n"); |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13036 | } |
Dave Airlie | 0e32b39 | 2014-05-02 14:02:48 +1000 | [diff] [blame] | 13037 | |
Rob Clark | e2c719b | 2014-12-15 13:56:32 -0500 | [diff] [blame] | 13038 | I915_STATE_WARN(!!encoder->base.crtc != enabled, |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13039 | "encoder's enabled state mismatch " |
| 13040 | "(expected %i, found %i)\n", |
| 13041 | !!encoder->base.crtc, enabled); |
Maarten Lankhorst | 7c60d19 | 2015-08-05 12:37:04 +0200 | [diff] [blame] | 13042 | |
| 13043 | if (!encoder->base.crtc) { |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13044 | bool active; |
| 13045 | |
| 13046 | active = encoder->get_hw_state(encoder, &pipe); |
Maarten Lankhorst | 7c60d19 | 2015-08-05 12:37:04 +0200 | [diff] [blame] | 13047 | I915_STATE_WARN(active, |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13048 | "encoder detached but still enabled on pipe %c.\n", |
| 13049 | pipe_name(pipe)); |
Maarten Lankhorst | 7c60d19 | 2015-08-05 12:37:04 +0200 | [diff] [blame] | 13050 | } |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13051 | } |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 13052 | } |
| 13053 | |
| 13054 | static void |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13055 | verify_crtc_state(struct drm_crtc *crtc, |
| 13056 | struct drm_crtc_state *old_crtc_state, |
| 13057 | struct drm_crtc_state *new_crtc_state) |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 13058 | { |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13059 | struct drm_device *dev = crtc->dev; |
Jani Nikula | fbee40d | 2014-03-31 14:27:18 +0300 | [diff] [blame] | 13060 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 13061 | struct intel_encoder *encoder; |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13062 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 13063 | struct intel_crtc_state *pipe_config, *sw_config; |
| 13064 | struct drm_atomic_state *old_state; |
| 13065 | bool active; |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13066 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13067 | old_state = old_crtc_state->state; |
Daniel Vetter | ec2dc6a | 2016-05-09 16:34:09 +0200 | [diff] [blame] | 13068 | __drm_atomic_helper_crtc_destroy_state(old_crtc_state); |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13069 | pipe_config = to_intel_crtc_state(old_crtc_state); |
| 13070 | memset(pipe_config, 0, sizeof(*pipe_config)); |
| 13071 | pipe_config->base.crtc = crtc; |
| 13072 | pipe_config->base.state = old_state; |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13073 | |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 13074 | DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name); |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 13075 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13076 | active = dev_priv->display.get_pipe_config(intel_crtc, pipe_config); |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13077 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13078 | /* hw state is inconsistent with the pipe quirk */ |
| 13079 | if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || |
| 13080 | (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) |
| 13081 | active = new_crtc_state->active; |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13082 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13083 | I915_STATE_WARN(new_crtc_state->active != active, |
| 13084 | "crtc active state doesn't match with hw state " |
| 13085 | "(expected %i, found %i)\n", new_crtc_state->active, active); |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13086 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13087 | I915_STATE_WARN(intel_crtc->active != new_crtc_state->active, |
| 13088 | "transitional active state does not match atomic hw state " |
| 13089 | "(expected %i, found %i)\n", new_crtc_state->active, intel_crtc->active); |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13090 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13091 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
| 13092 | enum pipe pipe; |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13093 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13094 | active = encoder->get_hw_state(encoder, &pipe); |
| 13095 | I915_STATE_WARN(active != new_crtc_state->active, |
| 13096 | "[ENCODER:%i] active %i with crtc active %i\n", |
| 13097 | encoder->base.base.id, active, new_crtc_state->active); |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13098 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13099 | I915_STATE_WARN(active && intel_crtc->pipe != pipe, |
| 13100 | "Encoder connected to wrong pipe %c\n", |
| 13101 | pipe_name(pipe)); |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13102 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13103 | if (active) |
| 13104 | encoder->get_config(encoder, pipe_config); |
| 13105 | } |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13106 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13107 | if (!new_crtc_state->active) |
| 13108 | return; |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13109 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13110 | intel_pipe_config_sanity_check(dev_priv, pipe_config); |
Maarten Lankhorst | 4d20cd8 | 2015-08-05 12:37:05 +0200 | [diff] [blame] | 13111 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13112 | sw_config = to_intel_crtc_state(crtc->state); |
| 13113 | if (!intel_pipe_config_compare(dev, sw_config, |
| 13114 | pipe_config, false)) { |
| 13115 | I915_STATE_WARN(1, "pipe state doesn't match!\n"); |
| 13116 | intel_dump_pipe_config(intel_crtc, pipe_config, |
| 13117 | "[hw state]"); |
| 13118 | intel_dump_pipe_config(intel_crtc, sw_config, |
| 13119 | "[sw state]"); |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 13120 | } |
| 13121 | } |
| 13122 | |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 13123 | static void |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13124 | verify_single_dpll_state(struct drm_i915_private *dev_priv, |
| 13125 | struct intel_shared_dpll *pll, |
| 13126 | struct drm_crtc *crtc, |
| 13127 | struct drm_crtc_state *new_state) |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13128 | { |
| 13129 | struct intel_dpll_hw_state dpll_hw_state; |
| 13130 | unsigned crtc_mask; |
| 13131 | bool active; |
| 13132 | |
| 13133 | memset(&dpll_hw_state, 0, sizeof(dpll_hw_state)); |
| 13134 | |
| 13135 | DRM_DEBUG_KMS("%s\n", pll->name); |
| 13136 | |
| 13137 | active = pll->funcs.get_hw_state(dev_priv, pll, &dpll_hw_state); |
| 13138 | |
| 13139 | if (!(pll->flags & INTEL_DPLL_ALWAYS_ON)) { |
| 13140 | I915_STATE_WARN(!pll->on && pll->active_mask, |
| 13141 | "pll in active use but not on in sw tracking\n"); |
| 13142 | I915_STATE_WARN(pll->on && !pll->active_mask, |
| 13143 | "pll is on but not used by any active crtc\n"); |
| 13144 | I915_STATE_WARN(pll->on != active, |
| 13145 | "pll on state mismatch (expected %i, found %i)\n", |
| 13146 | pll->on, active); |
| 13147 | } |
| 13148 | |
| 13149 | if (!crtc) { |
| 13150 | I915_STATE_WARN(pll->active_mask & ~pll->config.crtc_mask, |
| 13151 | "more active pll users than references: %x vs %x\n", |
| 13152 | pll->active_mask, pll->config.crtc_mask); |
| 13153 | |
| 13154 | return; |
| 13155 | } |
| 13156 | |
| 13157 | crtc_mask = 1 << drm_crtc_index(crtc); |
| 13158 | |
| 13159 | if (new_state->active) |
| 13160 | I915_STATE_WARN(!(pll->active_mask & crtc_mask), |
| 13161 | "pll active mismatch (expected pipe %c in active mask 0x%02x)\n", |
| 13162 | pipe_name(drm_crtc_index(crtc)), pll->active_mask); |
| 13163 | else |
| 13164 | I915_STATE_WARN(pll->active_mask & crtc_mask, |
| 13165 | "pll active mismatch (didn't expect pipe %c in active mask 0x%02x)\n", |
| 13166 | pipe_name(drm_crtc_index(crtc)), pll->active_mask); |
| 13167 | |
| 13168 | I915_STATE_WARN(!(pll->config.crtc_mask & crtc_mask), |
| 13169 | "pll enabled crtcs mismatch (expected 0x%x in 0x%02x)\n", |
| 13170 | crtc_mask, pll->config.crtc_mask); |
| 13171 | |
| 13172 | I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, |
| 13173 | &dpll_hw_state, |
| 13174 | sizeof(dpll_hw_state)), |
| 13175 | "pll hw state mismatch\n"); |
| 13176 | } |
| 13177 | |
| 13178 | static void |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13179 | verify_shared_dpll_state(struct drm_device *dev, struct drm_crtc *crtc, |
| 13180 | struct drm_crtc_state *old_crtc_state, |
| 13181 | struct drm_crtc_state *new_crtc_state) |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 13182 | { |
Jani Nikula | fbee40d | 2014-03-31 14:27:18 +0300 | [diff] [blame] | 13183 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13184 | struct intel_crtc_state *old_state = to_intel_crtc_state(old_crtc_state); |
| 13185 | struct intel_crtc_state *new_state = to_intel_crtc_state(new_crtc_state); |
| 13186 | |
| 13187 | if (new_state->shared_dpll) |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13188 | verify_single_dpll_state(dev_priv, new_state->shared_dpll, crtc, new_crtc_state); |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13189 | |
| 13190 | if (old_state->shared_dpll && |
| 13191 | old_state->shared_dpll != new_state->shared_dpll) { |
| 13192 | unsigned crtc_mask = 1 << drm_crtc_index(crtc); |
| 13193 | struct intel_shared_dpll *pll = old_state->shared_dpll; |
| 13194 | |
| 13195 | I915_STATE_WARN(pll->active_mask & crtc_mask, |
| 13196 | "pll active mismatch (didn't expect pipe %c in active mask)\n", |
| 13197 | pipe_name(drm_crtc_index(crtc))); |
| 13198 | I915_STATE_WARN(pll->config.crtc_mask & crtc_mask, |
| 13199 | "pll enabled crtcs mismatch (found %x in enabled mask)\n", |
| 13200 | pipe_name(drm_crtc_index(crtc))); |
| 13201 | } |
| 13202 | } |
| 13203 | |
| 13204 | static void |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13205 | intel_modeset_verify_crtc(struct drm_crtc *crtc, |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13206 | struct drm_crtc_state *old_state, |
| 13207 | struct drm_crtc_state *new_state) |
| 13208 | { |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13209 | if (!needs_modeset(new_state) && |
| 13210 | !to_intel_crtc_state(new_state)->update_pipe) |
| 13211 | return; |
| 13212 | |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13213 | verify_wm_state(crtc, new_state); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13214 | verify_connector_state(crtc->dev, crtc); |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13215 | verify_crtc_state(crtc, old_state, new_state); |
| 13216 | verify_shared_dpll_state(crtc->dev, crtc, old_state, new_state); |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13217 | } |
| 13218 | |
| 13219 | static void |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13220 | verify_disabled_dpll_state(struct drm_device *dev) |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13221 | { |
| 13222 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 91d1b4b | 2013-06-05 13:34:18 +0200 | [diff] [blame] | 13223 | int i; |
Daniel Vetter | 5358901 | 2013-06-05 13:34:16 +0200 | [diff] [blame] | 13224 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13225 | for (i = 0; i < dev_priv->num_shared_dpll; i++) |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13226 | verify_single_dpll_state(dev_priv, &dev_priv->shared_dplls[i], NULL, NULL); |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13227 | } |
Daniel Vetter | 5358901 | 2013-06-05 13:34:16 +0200 | [diff] [blame] | 13228 | |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13229 | static void |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13230 | intel_modeset_verify_disabled(struct drm_device *dev) |
Maarten Lankhorst | e7c8454 | 2016-03-23 14:58:06 +0100 | [diff] [blame] | 13231 | { |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13232 | verify_encoder_state(dev); |
| 13233 | verify_connector_state(dev, NULL); |
| 13234 | verify_disabled_dpll_state(dev); |
Daniel Vetter | e2e1ed4 | 2012-07-08 21:14:38 +0200 | [diff] [blame] | 13235 | } |
| 13236 | |
Ville Syrjälä | 80715b2 | 2014-05-15 20:23:23 +0300 | [diff] [blame] | 13237 | static void update_scanline_offset(struct intel_crtc *crtc) |
| 13238 | { |
| 13239 | struct drm_device *dev = crtc->base.dev; |
| 13240 | |
| 13241 | /* |
| 13242 | * The scanline counter increments at the leading edge of hsync. |
| 13243 | * |
| 13244 | * On most platforms it starts counting from vtotal-1 on the |
| 13245 | * first active line. That means the scanline counter value is |
| 13246 | * always one less than what we would expect. Ie. just after |
| 13247 | * start of vblank, which also occurs at start of hsync (on the |
| 13248 | * last active line), the scanline counter will read vblank_start-1. |
| 13249 | * |
| 13250 | * On gen2 the scanline counter starts counting from 1 instead |
| 13251 | * of vtotal-1, so we have to subtract one (or rather add vtotal-1 |
| 13252 | * to keep the value positive), instead of adding one. |
| 13253 | * |
| 13254 | * On HSW+ the behaviour of the scanline counter depends on the output |
| 13255 | * type. For DP ports it behaves like most other platforms, but on HDMI |
| 13256 | * there's an extra 1 line difference. So we need to add two instead of |
| 13257 | * one to the value. |
| 13258 | */ |
| 13259 | if (IS_GEN2(dev)) { |
Ville Syrjälä | 124abe0 | 2015-09-08 13:40:45 +0300 | [diff] [blame] | 13260 | const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode; |
Ville Syrjälä | 80715b2 | 2014-05-15 20:23:23 +0300 | [diff] [blame] | 13261 | int vtotal; |
| 13262 | |
Ville Syrjälä | 124abe0 | 2015-09-08 13:40:45 +0300 | [diff] [blame] | 13263 | vtotal = adjusted_mode->crtc_vtotal; |
| 13264 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) |
Ville Syrjälä | 80715b2 | 2014-05-15 20:23:23 +0300 | [diff] [blame] | 13265 | vtotal /= 2; |
| 13266 | |
| 13267 | crtc->scanline_offset = vtotal - 1; |
| 13268 | } else if (HAS_DDI(dev) && |
Ander Conselvan de Oliveira | 409ee76 | 2014-10-20 13:46:45 +0300 | [diff] [blame] | 13269 | intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) { |
Ville Syrjälä | 80715b2 | 2014-05-15 20:23:23 +0300 | [diff] [blame] | 13270 | crtc->scanline_offset = 2; |
| 13271 | } else |
| 13272 | crtc->scanline_offset = 1; |
| 13273 | } |
| 13274 | |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 13275 | static void intel_modeset_clear_plls(struct drm_atomic_state *state) |
Ander Conselvan de Oliveira | ed6739e | 2015-01-29 16:55:08 +0200 | [diff] [blame] | 13276 | { |
Ander Conselvan de Oliveira | 225da59 | 2015-04-02 14:47:57 +0300 | [diff] [blame] | 13277 | struct drm_device *dev = state->dev; |
Ander Conselvan de Oliveira | ed6739e | 2015-01-29 16:55:08 +0200 | [diff] [blame] | 13278 | struct drm_i915_private *dev_priv = to_i915(dev); |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 13279 | struct intel_shared_dpll_config *shared_dpll = NULL; |
Ander Conselvan de Oliveira | 0a9ab30 | 2015-04-21 17:13:04 +0300 | [diff] [blame] | 13280 | struct drm_crtc *crtc; |
| 13281 | struct drm_crtc_state *crtc_state; |
Ander Conselvan de Oliveira | 0a9ab30 | 2015-04-21 17:13:04 +0300 | [diff] [blame] | 13282 | int i; |
Ander Conselvan de Oliveira | ed6739e | 2015-01-29 16:55:08 +0200 | [diff] [blame] | 13283 | |
| 13284 | if (!dev_priv->display.crtc_compute_clock) |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 13285 | return; |
Ander Conselvan de Oliveira | ed6739e | 2015-01-29 16:55:08 +0200 | [diff] [blame] | 13286 | |
Ander Conselvan de Oliveira | 0a9ab30 | 2015-04-21 17:13:04 +0300 | [diff] [blame] | 13287 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Maarten Lankhorst | fb1a38a | 2016-02-09 13:02:17 +0100 | [diff] [blame] | 13288 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 13289 | struct intel_shared_dpll *old_dpll = |
| 13290 | to_intel_crtc_state(crtc->state)->shared_dpll; |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 13291 | |
Maarten Lankhorst | fb1a38a | 2016-02-09 13:02:17 +0100 | [diff] [blame] | 13292 | if (!needs_modeset(crtc_state)) |
Ander Conselvan de Oliveira | 225da59 | 2015-04-02 14:47:57 +0300 | [diff] [blame] | 13293 | continue; |
| 13294 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 13295 | to_intel_crtc_state(crtc_state)->shared_dpll = NULL; |
Maarten Lankhorst | fb1a38a | 2016-02-09 13:02:17 +0100 | [diff] [blame] | 13296 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 13297 | if (!old_dpll) |
Maarten Lankhorst | fb1a38a | 2016-02-09 13:02:17 +0100 | [diff] [blame] | 13298 | continue; |
Ander Conselvan de Oliveira | 0a9ab30 | 2015-04-21 17:13:04 +0300 | [diff] [blame] | 13299 | |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 13300 | if (!shared_dpll) |
| 13301 | shared_dpll = intel_atomic_get_shared_dpll_state(state); |
| 13302 | |
Ander Conselvan de Oliveira | 8106ddb | 2016-03-08 17:46:18 +0200 | [diff] [blame] | 13303 | intel_shared_dpll_config_put(shared_dpll, old_dpll, intel_crtc); |
Ander Conselvan de Oliveira | ed6739e | 2015-01-29 16:55:08 +0200 | [diff] [blame] | 13304 | } |
Ander Conselvan de Oliveira | ed6739e | 2015-01-29 16:55:08 +0200 | [diff] [blame] | 13305 | } |
| 13306 | |
Maarten Lankhorst | 99d736a | 2015-06-01 12:50:09 +0200 | [diff] [blame] | 13307 | /* |
| 13308 | * This implements the workaround described in the "notes" section of the mode |
| 13309 | * set sequence documentation. When going from no pipes or single pipe to |
| 13310 | * multiple pipes, and planes are enabled after the pipe, we need to wait at |
| 13311 | * least 2 vblanks on the first pipe before enabling planes on the second pipe. |
| 13312 | */ |
| 13313 | static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state) |
| 13314 | { |
| 13315 | struct drm_crtc_state *crtc_state; |
| 13316 | struct intel_crtc *intel_crtc; |
| 13317 | struct drm_crtc *crtc; |
| 13318 | struct intel_crtc_state *first_crtc_state = NULL; |
| 13319 | struct intel_crtc_state *other_crtc_state = NULL; |
| 13320 | enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE; |
| 13321 | int i; |
| 13322 | |
| 13323 | /* look at all crtc's that are going to be enabled in during modeset */ |
| 13324 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
| 13325 | intel_crtc = to_intel_crtc(crtc); |
| 13326 | |
| 13327 | if (!crtc_state->active || !needs_modeset(crtc_state)) |
| 13328 | continue; |
| 13329 | |
| 13330 | if (first_crtc_state) { |
| 13331 | other_crtc_state = to_intel_crtc_state(crtc_state); |
| 13332 | break; |
| 13333 | } else { |
| 13334 | first_crtc_state = to_intel_crtc_state(crtc_state); |
| 13335 | first_pipe = intel_crtc->pipe; |
| 13336 | } |
| 13337 | } |
| 13338 | |
| 13339 | /* No workaround needed? */ |
| 13340 | if (!first_crtc_state) |
| 13341 | return 0; |
| 13342 | |
| 13343 | /* w/a possibly needed, check how many crtc's are already enabled. */ |
| 13344 | for_each_intel_crtc(state->dev, intel_crtc) { |
| 13345 | struct intel_crtc_state *pipe_config; |
| 13346 | |
| 13347 | pipe_config = intel_atomic_get_crtc_state(state, intel_crtc); |
| 13348 | if (IS_ERR(pipe_config)) |
| 13349 | return PTR_ERR(pipe_config); |
| 13350 | |
| 13351 | pipe_config->hsw_workaround_pipe = INVALID_PIPE; |
| 13352 | |
| 13353 | if (!pipe_config->base.active || |
| 13354 | needs_modeset(&pipe_config->base)) |
| 13355 | continue; |
| 13356 | |
| 13357 | /* 2 or more enabled crtcs means no need for w/a */ |
| 13358 | if (enabled_pipe != INVALID_PIPE) |
| 13359 | return 0; |
| 13360 | |
| 13361 | enabled_pipe = intel_crtc->pipe; |
| 13362 | } |
| 13363 | |
| 13364 | if (enabled_pipe != INVALID_PIPE) |
| 13365 | first_crtc_state->hsw_workaround_pipe = enabled_pipe; |
| 13366 | else if (other_crtc_state) |
| 13367 | other_crtc_state->hsw_workaround_pipe = first_pipe; |
| 13368 | |
| 13369 | return 0; |
| 13370 | } |
| 13371 | |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 13372 | static int intel_modeset_all_pipes(struct drm_atomic_state *state) |
| 13373 | { |
| 13374 | struct drm_crtc *crtc; |
| 13375 | struct drm_crtc_state *crtc_state; |
| 13376 | int ret = 0; |
| 13377 | |
| 13378 | /* add all active pipes to the state */ |
| 13379 | for_each_crtc(state->dev, crtc) { |
| 13380 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 13381 | if (IS_ERR(crtc_state)) |
| 13382 | return PTR_ERR(crtc_state); |
| 13383 | |
| 13384 | if (!crtc_state->active || needs_modeset(crtc_state)) |
| 13385 | continue; |
| 13386 | |
| 13387 | crtc_state->mode_changed = true; |
| 13388 | |
| 13389 | ret = drm_atomic_add_affected_connectors(state, crtc); |
| 13390 | if (ret) |
| 13391 | break; |
| 13392 | |
| 13393 | ret = drm_atomic_add_affected_planes(state, crtc); |
| 13394 | if (ret) |
| 13395 | break; |
| 13396 | } |
| 13397 | |
| 13398 | return ret; |
| 13399 | } |
| 13400 | |
Ander Conselvan de Oliveira | c347a67 | 2015-06-01 12:50:02 +0200 | [diff] [blame] | 13401 | static int intel_modeset_checks(struct drm_atomic_state *state) |
Ander Conselvan de Oliveira | 054518d | 2015-04-21 17:13:06 +0300 | [diff] [blame] | 13402 | { |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 13403 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
| 13404 | struct drm_i915_private *dev_priv = state->dev->dev_private; |
| 13405 | struct drm_crtc *crtc; |
| 13406 | struct drm_crtc_state *crtc_state; |
| 13407 | int ret = 0, i; |
Ander Conselvan de Oliveira | 054518d | 2015-04-21 17:13:06 +0300 | [diff] [blame] | 13408 | |
Maarten Lankhorst | b359283 | 2015-06-15 12:33:38 +0200 | [diff] [blame] | 13409 | if (!check_digital_port_conflicts(state)) { |
| 13410 | DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n"); |
| 13411 | return -EINVAL; |
| 13412 | } |
| 13413 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 13414 | intel_state->modeset = true; |
| 13415 | intel_state->active_crtcs = dev_priv->active_crtcs; |
| 13416 | |
| 13417 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
| 13418 | if (crtc_state->active) |
| 13419 | intel_state->active_crtcs |= 1 << i; |
| 13420 | else |
| 13421 | intel_state->active_crtcs &= ~(1 << i); |
Matt Roper | 8b4a7d0 | 2016-05-12 07:06:00 -0700 | [diff] [blame] | 13422 | |
| 13423 | if (crtc_state->active != crtc->state->active) |
| 13424 | intel_state->active_pipe_changes |= drm_crtc_mask(crtc); |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 13425 | } |
| 13426 | |
Ander Conselvan de Oliveira | 054518d | 2015-04-21 17:13:06 +0300 | [diff] [blame] | 13427 | /* |
| 13428 | * See if the config requires any additional preparation, e.g. |
| 13429 | * to adjust global state with pipes off. We need to do this |
| 13430 | * here so we can get the modeset_pipe updated config for the new |
| 13431 | * mode set on this crtc. For other crtcs we need to use the |
| 13432 | * adjusted_mode bits in the crtc directly. |
| 13433 | */ |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 13434 | if (dev_priv->display.modeset_calc_cdclk) { |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 13435 | if (!intel_state->cdclk_pll_vco) |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 13436 | intel_state->cdclk_pll_vco = dev_priv->cdclk_pll.vco; |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 13437 | if (!intel_state->cdclk_pll_vco) |
| 13438 | intel_state->cdclk_pll_vco = dev_priv->skl_preferred_vco_freq; |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 13439 | |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 13440 | ret = dev_priv->display.modeset_calc_cdclk(state); |
| 13441 | if (ret < 0) |
| 13442 | return ret; |
| 13443 | |
| 13444 | if (intel_state->dev_cdclk != dev_priv->cdclk_freq || |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 13445 | intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco) |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 13446 | ret = intel_modeset_all_pipes(state); |
| 13447 | |
| 13448 | if (ret < 0) |
Ander Conselvan de Oliveira | 054518d | 2015-04-21 17:13:06 +0300 | [diff] [blame] | 13449 | return ret; |
Maarten Lankhorst | e8788cb | 2016-02-16 10:25:11 +0100 | [diff] [blame] | 13450 | |
| 13451 | DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n", |
| 13452 | intel_state->cdclk, intel_state->dev_cdclk); |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 13453 | } else |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 13454 | to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq; |
Ander Conselvan de Oliveira | 054518d | 2015-04-21 17:13:06 +0300 | [diff] [blame] | 13455 | |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 13456 | intel_modeset_clear_plls(state); |
Ander Conselvan de Oliveira | 054518d | 2015-04-21 17:13:06 +0300 | [diff] [blame] | 13457 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 13458 | if (IS_HASWELL(dev_priv)) |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 13459 | return haswell_mode_set_planes_workaround(state); |
Maarten Lankhorst | 99d736a | 2015-06-01 12:50:09 +0200 | [diff] [blame] | 13460 | |
Maarten Lankhorst | ad42137 | 2015-06-15 12:33:42 +0200 | [diff] [blame] | 13461 | return 0; |
Ander Conselvan de Oliveira | 054518d | 2015-04-21 17:13:06 +0300 | [diff] [blame] | 13462 | } |
| 13463 | |
Matt Roper | aa36313 | 2015-09-24 15:53:18 -0700 | [diff] [blame] | 13464 | /* |
| 13465 | * Handle calculation of various watermark data at the end of the atomic check |
| 13466 | * phase. The code here should be run after the per-crtc and per-plane 'check' |
| 13467 | * handlers to ensure that all derived state has been updated. |
| 13468 | */ |
Matt Roper | 55994c2 | 2016-05-12 07:06:08 -0700 | [diff] [blame] | 13469 | static int calc_watermark_data(struct drm_atomic_state *state) |
Matt Roper | aa36313 | 2015-09-24 15:53:18 -0700 | [diff] [blame] | 13470 | { |
| 13471 | struct drm_device *dev = state->dev; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 13472 | struct drm_i915_private *dev_priv = to_i915(dev); |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 13473 | |
| 13474 | /* Is there platform-specific watermark information to calculate? */ |
| 13475 | if (dev_priv->display.compute_global_watermarks) |
Matt Roper | 55994c2 | 2016-05-12 07:06:08 -0700 | [diff] [blame] | 13476 | return dev_priv->display.compute_global_watermarks(state); |
| 13477 | |
| 13478 | return 0; |
Matt Roper | aa36313 | 2015-09-24 15:53:18 -0700 | [diff] [blame] | 13479 | } |
| 13480 | |
Maarten Lankhorst | 74c090b | 2015-07-13 16:30:30 +0200 | [diff] [blame] | 13481 | /** |
| 13482 | * intel_atomic_check - validate state object |
| 13483 | * @dev: drm device |
| 13484 | * @state: state to validate |
| 13485 | */ |
| 13486 | static int intel_atomic_check(struct drm_device *dev, |
| 13487 | struct drm_atomic_state *state) |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 13488 | { |
Paulo Zanoni | dd8b3bd | 2016-01-19 11:35:49 -0200 | [diff] [blame] | 13489 | struct drm_i915_private *dev_priv = to_i915(dev); |
Matt Roper | aa36313 | 2015-09-24 15:53:18 -0700 | [diff] [blame] | 13490 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
Ander Conselvan de Oliveira | c347a67 | 2015-06-01 12:50:02 +0200 | [diff] [blame] | 13491 | struct drm_crtc *crtc; |
| 13492 | struct drm_crtc_state *crtc_state; |
| 13493 | int ret, i; |
Maarten Lankhorst | 61333b6 | 2015-06-15 12:33:50 +0200 | [diff] [blame] | 13494 | bool any_ms = false; |
Ander Conselvan de Oliveira | c347a67 | 2015-06-01 12:50:02 +0200 | [diff] [blame] | 13495 | |
Maarten Lankhorst | 74c090b | 2015-07-13 16:30:30 +0200 | [diff] [blame] | 13496 | ret = drm_atomic_helper_check_modeset(dev, state); |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 13497 | if (ret) |
| 13498 | return ret; |
| 13499 | |
Ander Conselvan de Oliveira | c347a67 | 2015-06-01 12:50:02 +0200 | [diff] [blame] | 13500 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 13501 | struct intel_crtc_state *pipe_config = |
| 13502 | to_intel_crtc_state(crtc_state); |
Daniel Vetter | 1ed51de | 2015-07-15 14:15:51 +0200 | [diff] [blame] | 13503 | |
| 13504 | /* Catch I915_MODE_FLAG_INHERITED */ |
| 13505 | if (crtc_state->mode.private_flags != crtc->state->mode.private_flags) |
| 13506 | crtc_state->mode_changed = true; |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 13507 | |
Daniel Vetter | 2649548 | 2015-07-15 14:15:52 +0200 | [diff] [blame] | 13508 | if (!needs_modeset(crtc_state)) |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 13509 | continue; |
| 13510 | |
Daniel Vetter | af4a879 | 2016-05-09 09:31:25 +0200 | [diff] [blame] | 13511 | if (!crtc_state->enable) { |
| 13512 | any_ms = true; |
| 13513 | continue; |
| 13514 | } |
| 13515 | |
Daniel Vetter | 2649548 | 2015-07-15 14:15:52 +0200 | [diff] [blame] | 13516 | /* FIXME: For only active_changed we shouldn't need to do any |
| 13517 | * state recomputation at all. */ |
| 13518 | |
Daniel Vetter | 1ed51de | 2015-07-15 14:15:51 +0200 | [diff] [blame] | 13519 | ret = drm_atomic_add_affected_connectors(state, crtc); |
| 13520 | if (ret) |
| 13521 | return ret; |
Maarten Lankhorst | b359283 | 2015-06-15 12:33:38 +0200 | [diff] [blame] | 13522 | |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 13523 | ret = intel_modeset_pipe_config(crtc, pipe_config); |
Maarten Lankhorst | 25aa1c3 | 2016-05-03 10:30:38 +0200 | [diff] [blame] | 13524 | if (ret) { |
| 13525 | intel_dump_pipe_config(to_intel_crtc(crtc), |
| 13526 | pipe_config, "[failed]"); |
Ander Conselvan de Oliveira | c347a67 | 2015-06-01 12:50:02 +0200 | [diff] [blame] | 13527 | return ret; |
Maarten Lankhorst | 25aa1c3 | 2016-05-03 10:30:38 +0200 | [diff] [blame] | 13528 | } |
Ander Conselvan de Oliveira | c347a67 | 2015-06-01 12:50:02 +0200 | [diff] [blame] | 13529 | |
Jani Nikula | 7383123 | 2015-11-19 10:26:30 +0200 | [diff] [blame] | 13530 | if (i915.fastboot && |
Paulo Zanoni | dd8b3bd | 2016-01-19 11:35:49 -0200 | [diff] [blame] | 13531 | intel_pipe_config_compare(dev, |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 13532 | to_intel_crtc_state(crtc->state), |
Daniel Vetter | 1ed51de | 2015-07-15 14:15:51 +0200 | [diff] [blame] | 13533 | pipe_config, true)) { |
Daniel Vetter | 2649548 | 2015-07-15 14:15:52 +0200 | [diff] [blame] | 13534 | crtc_state->mode_changed = false; |
Maarten Lankhorst | bfd16b2 | 2015-08-27 15:44:05 +0200 | [diff] [blame] | 13535 | to_intel_crtc_state(crtc_state)->update_pipe = true; |
Daniel Vetter | 2649548 | 2015-07-15 14:15:52 +0200 | [diff] [blame] | 13536 | } |
| 13537 | |
Daniel Vetter | af4a879 | 2016-05-09 09:31:25 +0200 | [diff] [blame] | 13538 | if (needs_modeset(crtc_state)) |
Daniel Vetter | 2649548 | 2015-07-15 14:15:52 +0200 | [diff] [blame] | 13539 | any_ms = true; |
Maarten Lankhorst | 61333b6 | 2015-06-15 12:33:50 +0200 | [diff] [blame] | 13540 | |
Daniel Vetter | af4a879 | 2016-05-09 09:31:25 +0200 | [diff] [blame] | 13541 | ret = drm_atomic_add_affected_planes(state, crtc); |
| 13542 | if (ret) |
| 13543 | return ret; |
Maarten Lankhorst | cfb23ed | 2015-07-14 12:17:40 +0200 | [diff] [blame] | 13544 | |
Daniel Vetter | 2649548 | 2015-07-15 14:15:52 +0200 | [diff] [blame] | 13545 | intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config, |
| 13546 | needs_modeset(crtc_state) ? |
| 13547 | "[modeset]" : "[fastset]"); |
Ander Conselvan de Oliveira | c347a67 | 2015-06-01 12:50:02 +0200 | [diff] [blame] | 13548 | } |
| 13549 | |
Maarten Lankhorst | 61333b6 | 2015-06-15 12:33:50 +0200 | [diff] [blame] | 13550 | if (any_ms) { |
| 13551 | ret = intel_modeset_checks(state); |
| 13552 | |
| 13553 | if (ret) |
| 13554 | return ret; |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 13555 | } else |
Paulo Zanoni | dd8b3bd | 2016-01-19 11:35:49 -0200 | [diff] [blame] | 13556 | intel_state->cdclk = dev_priv->cdclk_freq; |
Ander Conselvan de Oliveira | c347a67 | 2015-06-01 12:50:02 +0200 | [diff] [blame] | 13557 | |
Paulo Zanoni | dd8b3bd | 2016-01-19 11:35:49 -0200 | [diff] [blame] | 13558 | ret = drm_atomic_helper_check_planes(dev, state); |
Matt Roper | aa36313 | 2015-09-24 15:53:18 -0700 | [diff] [blame] | 13559 | if (ret) |
| 13560 | return ret; |
| 13561 | |
Paulo Zanoni | f51be2e | 2016-01-19 11:35:50 -0200 | [diff] [blame] | 13562 | intel_fbc_choose_crtc(dev_priv, state); |
Matt Roper | 55994c2 | 2016-05-12 07:06:08 -0700 | [diff] [blame] | 13563 | return calc_watermark_data(state); |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 13564 | } |
| 13565 | |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 13566 | static int intel_atomic_prepare_commit(struct drm_device *dev, |
| 13567 | struct drm_atomic_state *state, |
Maarten Lankhorst | 81072bf | 2016-04-26 16:11:45 +0200 | [diff] [blame] | 13568 | bool nonblock) |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 13569 | { |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13570 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 13571 | struct drm_plane_state *plane_state; |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 13572 | struct drm_crtc_state *crtc_state; |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13573 | struct drm_plane *plane; |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 13574 | struct drm_crtc *crtc; |
| 13575 | int i, ret; |
| 13576 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13577 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
| 13578 | if (state->legacy_cursor_update) |
| 13579 | continue; |
| 13580 | |
| 13581 | ret = intel_crtc_wait_for_pending_flips(crtc); |
| 13582 | if (ret) |
| 13583 | return ret; |
| 13584 | |
| 13585 | if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2) |
| 13586 | flush_workqueue(dev_priv->wq); |
Maarten Lankhorst | d55dbd0 | 2016-05-17 15:08:04 +0200 | [diff] [blame] | 13587 | } |
| 13588 | |
Maarten Lankhorst | f935675 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 13589 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 13590 | if (ret) |
| 13591 | return ret; |
| 13592 | |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 13593 | ret = drm_atomic_helper_prepare_planes(dev, state); |
Chris Wilson | f7e5838 | 2016-04-13 17:35:07 +0100 | [diff] [blame] | 13594 | mutex_unlock(&dev->struct_mutex); |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13595 | |
Dave Airlie | 21daaee | 2016-05-05 09:56:30 +1000 | [diff] [blame] | 13596 | if (!ret && !nonblock) { |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13597 | for_each_plane_in_state(state, plane, plane_state, i) { |
| 13598 | struct intel_plane_state *intel_plane_state = |
| 13599 | to_intel_plane_state(plane_state); |
| 13600 | |
| 13601 | if (!intel_plane_state->wait_req) |
| 13602 | continue; |
| 13603 | |
| 13604 | ret = __i915_wait_request(intel_plane_state->wait_req, |
Chris Wilson | 299259a | 2016-04-13 17:35:06 +0100 | [diff] [blame] | 13605 | true, NULL, NULL); |
Chris Wilson | f7e5838 | 2016-04-13 17:35:07 +0100 | [diff] [blame] | 13606 | if (ret) { |
Chris Wilson | f4457ae | 2016-04-13 17:35:08 +0100 | [diff] [blame] | 13607 | /* Any hang should be swallowed by the wait */ |
| 13608 | WARN_ON(ret == -EIO); |
Chris Wilson | f7e5838 | 2016-04-13 17:35:07 +0100 | [diff] [blame] | 13609 | mutex_lock(&dev->struct_mutex); |
| 13610 | drm_atomic_helper_cleanup_planes(dev, state); |
| 13611 | mutex_unlock(&dev->struct_mutex); |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13612 | break; |
Chris Wilson | f7e5838 | 2016-04-13 17:35:07 +0100 | [diff] [blame] | 13613 | } |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13614 | } |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13615 | } |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 13616 | |
| 13617 | return ret; |
| 13618 | } |
| 13619 | |
Maarten Lankhorst | a299141 | 2016-05-17 15:07:48 +0200 | [diff] [blame] | 13620 | u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc) |
| 13621 | { |
| 13622 | struct drm_device *dev = crtc->base.dev; |
| 13623 | |
| 13624 | if (!dev->max_vblank_count) |
| 13625 | return drm_accurate_vblank_count(&crtc->base); |
| 13626 | |
| 13627 | return dev->driver->get_vblank_counter(dev, crtc->pipe); |
| 13628 | } |
| 13629 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13630 | static void intel_atomic_wait_for_vblanks(struct drm_device *dev, |
| 13631 | struct drm_i915_private *dev_priv, |
| 13632 | unsigned crtc_mask) |
Maarten Lankhorst | e886167 | 2016-02-24 11:24:26 +0100 | [diff] [blame] | 13633 | { |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13634 | unsigned last_vblank_count[I915_MAX_PIPES]; |
| 13635 | enum pipe pipe; |
| 13636 | int ret; |
Maarten Lankhorst | e886167 | 2016-02-24 11:24:26 +0100 | [diff] [blame] | 13637 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13638 | if (!crtc_mask) |
| 13639 | return; |
Maarten Lankhorst | e886167 | 2016-02-24 11:24:26 +0100 | [diff] [blame] | 13640 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13641 | for_each_pipe(dev_priv, pipe) { |
| 13642 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
Maarten Lankhorst | e886167 | 2016-02-24 11:24:26 +0100 | [diff] [blame] | 13643 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13644 | if (!((1 << pipe) & crtc_mask)) |
Maarten Lankhorst | e886167 | 2016-02-24 11:24:26 +0100 | [diff] [blame] | 13645 | continue; |
| 13646 | |
Maarten Lankhorst | d55dbd0 | 2016-05-17 15:08:04 +0200 | [diff] [blame] | 13647 | ret = drm_crtc_vblank_get(crtc); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13648 | if (WARN_ON(ret != 0)) { |
| 13649 | crtc_mask &= ~(1 << pipe); |
| 13650 | continue; |
| 13651 | } |
Maarten Lankhorst | d55dbd0 | 2016-05-17 15:08:04 +0200 | [diff] [blame] | 13652 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13653 | last_vblank_count[pipe] = drm_crtc_vblank_count(crtc); |
| 13654 | } |
| 13655 | |
| 13656 | for_each_pipe(dev_priv, pipe) { |
| 13657 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 13658 | long lret; |
| 13659 | |
| 13660 | if (!((1 << pipe) & crtc_mask)) |
| 13661 | continue; |
| 13662 | |
| 13663 | lret = wait_event_timeout(dev->vblank[pipe].queue, |
| 13664 | last_vblank_count[pipe] != |
| 13665 | drm_crtc_vblank_count(crtc), |
| 13666 | msecs_to_jiffies(50)); |
| 13667 | |
| 13668 | WARN(!lret, "pipe %c vblank wait timed out\n", pipe_name(pipe)); |
| 13669 | |
| 13670 | drm_crtc_vblank_put(crtc); |
Maarten Lankhorst | d55dbd0 | 2016-05-17 15:08:04 +0200 | [diff] [blame] | 13671 | } |
| 13672 | } |
| 13673 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13674 | static bool needs_vblank_wait(struct intel_crtc_state *crtc_state) |
Maarten Lankhorst | a6747b7 | 2016-05-17 15:08:01 +0200 | [diff] [blame] | 13675 | { |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13676 | /* fb updated, need to unpin old fb */ |
| 13677 | if (crtc_state->fb_changed) |
| 13678 | return true; |
Maarten Lankhorst | a6747b7 | 2016-05-17 15:08:01 +0200 | [diff] [blame] | 13679 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13680 | /* wm changes, need vblank before final wm's */ |
| 13681 | if (crtc_state->update_wm_post) |
| 13682 | return true; |
Maarten Lankhorst | a6747b7 | 2016-05-17 15:08:01 +0200 | [diff] [blame] | 13683 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13684 | /* |
| 13685 | * cxsr is re-enabled after vblank. |
| 13686 | * This is already handled by crtc_state->update_wm_post, |
| 13687 | * but added for clarity. |
| 13688 | */ |
| 13689 | if (crtc_state->disable_cxsr) |
| 13690 | return true; |
Maarten Lankhorst | a6747b7 | 2016-05-17 15:08:01 +0200 | [diff] [blame] | 13691 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13692 | return false; |
Maarten Lankhorst | e886167 | 2016-02-24 11:24:26 +0100 | [diff] [blame] | 13693 | } |
| 13694 | |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13695 | static void intel_atomic_commit_tail(struct drm_atomic_state *state) |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 13696 | { |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13697 | struct drm_device *dev = state->dev; |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 13698 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
Jani Nikula | fbee40d | 2014-03-31 14:27:18 +0300 | [diff] [blame] | 13699 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 29ceb0e | 2016-03-09 19:07:27 +0200 | [diff] [blame] | 13700 | struct drm_crtc_state *old_crtc_state; |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13701 | struct drm_crtc *crtc; |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13702 | struct intel_crtc_state *intel_cstate; |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13703 | struct drm_plane *plane; |
| 13704 | struct drm_plane_state *plane_state; |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13705 | bool hw_check = intel_state->modeset; |
| 13706 | unsigned long put_domains[I915_MAX_PIPES] = {}; |
| 13707 | unsigned crtc_vblank_mask = 0; |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13708 | int i, ret; |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 13709 | |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13710 | for_each_plane_in_state(state, plane, plane_state, i) { |
| 13711 | struct intel_plane_state *intel_plane_state = |
| 13712 | to_intel_plane_state(plane_state); |
Daniel Vetter | ea0000f | 2016-06-13 16:13:46 +0200 | [diff] [blame] | 13713 | |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13714 | if (!intel_plane_state->wait_req) |
| 13715 | continue; |
| 13716 | |
| 13717 | ret = __i915_wait_request(intel_plane_state->wait_req, |
| 13718 | true, NULL, NULL); |
| 13719 | /* EIO should be eaten, and we can't get interrupted in the |
| 13720 | * worker, and blocking commits have waited already. */ |
| 13721 | WARN_ON(ret); |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 13722 | } |
Ander Conselvan de Oliveira | d4afb8c | 2015-04-21 17:13:22 +0300 | [diff] [blame] | 13723 | |
Daniel Vetter | ea0000f | 2016-06-13 16:13:46 +0200 | [diff] [blame] | 13724 | drm_atomic_helper_wait_for_dependencies(state); |
| 13725 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 13726 | if (intel_state->modeset) { |
| 13727 | memcpy(dev_priv->min_pixclk, intel_state->min_pixclk, |
| 13728 | sizeof(intel_state->min_pixclk)); |
| 13729 | dev_priv->active_crtcs = intel_state->active_crtcs; |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 13730 | dev_priv->atomic_cdclk_freq = intel_state->cdclk; |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13731 | |
| 13732 | intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET); |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 13733 | } |
| 13734 | |
Ville Syrjälä | 29ceb0e | 2016-03-09 19:07:27 +0200 | [diff] [blame] | 13735 | for_each_crtc_in_state(state, crtc, old_crtc_state, i) { |
Maarten Lankhorst | a539205 | 2015-06-15 12:33:52 +0200 | [diff] [blame] | 13736 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 13737 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13738 | if (needs_modeset(crtc->state) || |
| 13739 | to_intel_crtc_state(crtc->state)->update_pipe) { |
| 13740 | hw_check = true; |
| 13741 | |
| 13742 | put_domains[to_intel_crtc(crtc)->pipe] = |
| 13743 | modeset_get_crtc_power_domains(crtc, |
| 13744 | to_intel_crtc_state(crtc->state)); |
| 13745 | } |
| 13746 | |
Maarten Lankhorst | 61333b6 | 2015-06-15 12:33:50 +0200 | [diff] [blame] | 13747 | if (!needs_modeset(crtc->state)) |
| 13748 | continue; |
| 13749 | |
Ville Syrjälä | 29ceb0e | 2016-03-09 19:07:27 +0200 | [diff] [blame] | 13750 | intel_pre_plane_update(to_intel_crtc_state(old_crtc_state)); |
Daniel Vetter | 460da916 | 2013-03-27 00:44:51 +0100 | [diff] [blame] | 13751 | |
Ville Syrjälä | 29ceb0e | 2016-03-09 19:07:27 +0200 | [diff] [blame] | 13752 | if (old_crtc_state->active) { |
| 13753 | intel_crtc_disable_planes(crtc, old_crtc_state->plane_mask); |
Maarten Lankhorst | a539205 | 2015-06-15 12:33:52 +0200 | [diff] [blame] | 13754 | dev_priv->display.crtc_disable(crtc); |
Maarten Lankhorst | eddfcbc | 2015-06-15 12:33:53 +0200 | [diff] [blame] | 13755 | intel_crtc->active = false; |
Paulo Zanoni | 58f9c0b | 2016-01-19 11:35:51 -0200 | [diff] [blame] | 13756 | intel_fbc_disable(intel_crtc); |
Maarten Lankhorst | eddfcbc | 2015-06-15 12:33:53 +0200 | [diff] [blame] | 13757 | intel_disable_shared_dpll(intel_crtc); |
Ville Syrjälä | 9bbc8258a | 2015-11-20 22:09:20 +0200 | [diff] [blame] | 13758 | |
| 13759 | /* |
| 13760 | * Underruns don't always raise |
| 13761 | * interrupts, so check manually. |
| 13762 | */ |
| 13763 | intel_check_cpu_fifo_underruns(dev_priv); |
| 13764 | intel_check_pch_fifo_underruns(dev_priv); |
Maarten Lankhorst | b900111 | 2015-11-19 16:07:16 +0100 | [diff] [blame] | 13765 | |
| 13766 | if (!crtc->state->active) |
| 13767 | intel_update_watermarks(crtc); |
Maarten Lankhorst | a539205 | 2015-06-15 12:33:52 +0200 | [diff] [blame] | 13768 | } |
Daniel Vetter | b8cecdf | 2013-03-27 00:44:50 +0100 | [diff] [blame] | 13769 | } |
Daniel Vetter | 7758a11 | 2012-07-08 19:40:39 +0200 | [diff] [blame] | 13770 | |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 13771 | /* Only after disabling all output pipelines that will be changed can we |
| 13772 | * update the the output configuration. */ |
Maarten Lankhorst | 4740b0f | 2015-08-05 12:37:10 +0200 | [diff] [blame] | 13773 | intel_modeset_update_crtc_state(state); |
Daniel Vetter | ea9d758 | 2012-07-10 10:42:52 +0200 | [diff] [blame] | 13774 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 13775 | if (intel_state->modeset) { |
Maarten Lankhorst | 4740b0f | 2015-08-05 12:37:10 +0200 | [diff] [blame] | 13776 | drm_atomic_helper_update_legacy_modeset_state(state->dev, state); |
Maarten Lankhorst | 33c8df89 | 2016-02-10 13:49:37 +0100 | [diff] [blame] | 13777 | |
| 13778 | if (dev_priv->display.modeset_commit_cdclk && |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 13779 | (intel_state->dev_cdclk != dev_priv->cdclk_freq || |
Ville Syrjälä | 63911d7 | 2016-05-13 23:41:32 +0300 | [diff] [blame] | 13780 | intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco)) |
Maarten Lankhorst | 33c8df89 | 2016-02-10 13:49:37 +0100 | [diff] [blame] | 13781 | dev_priv->display.modeset_commit_cdclk(state); |
Maarten Lankhorst | f6d1973 | 2016-03-23 14:58:07 +0100 | [diff] [blame] | 13782 | |
Maarten Lankhorst | c0ead70 | 2016-03-30 10:00:05 +0200 | [diff] [blame] | 13783 | intel_modeset_verify_disabled(dev); |
Maarten Lankhorst | 4740b0f | 2015-08-05 12:37:10 +0200 | [diff] [blame] | 13784 | } |
Daniel Vetter | 47fab73 | 2012-10-26 10:58:18 +0200 | [diff] [blame] | 13785 | |
Daniel Vetter | a6778b3 | 2012-07-02 09:56:42 +0200 | [diff] [blame] | 13786 | /* Now enable the clocks, plane, pipe, and connectors that we set up. */ |
Ville Syrjälä | 29ceb0e | 2016-03-09 19:07:27 +0200 | [diff] [blame] | 13787 | for_each_crtc_in_state(state, crtc, old_crtc_state, i) { |
Maarten Lankhorst | f6ac4b2 | 2015-07-13 16:30:31 +0200 | [diff] [blame] | 13788 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 13789 | bool modeset = needs_modeset(crtc->state); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13790 | struct intel_crtc_state *pipe_config = |
| 13791 | to_intel_crtc_state(crtc->state); |
Patrik Jakobsson | 9f836f9 | 2015-11-16 16:20:01 +0100 | [diff] [blame] | 13792 | |
Maarten Lankhorst | f6ac4b2 | 2015-07-13 16:30:31 +0200 | [diff] [blame] | 13793 | if (modeset && crtc->state->active) { |
Maarten Lankhorst | a539205 | 2015-06-15 12:33:52 +0200 | [diff] [blame] | 13794 | update_scanline_offset(to_intel_crtc(crtc)); |
| 13795 | dev_priv->display.crtc_enable(crtc); |
| 13796 | } |
| 13797 | |
Daniel Vetter | 1f7528c | 2016-06-13 16:13:45 +0200 | [diff] [blame] | 13798 | /* Complete events for now disable pipes here. */ |
| 13799 | if (modeset && !crtc->state->active && crtc->state->event) { |
| 13800 | spin_lock_irq(&dev->event_lock); |
| 13801 | drm_crtc_send_vblank_event(crtc, crtc->state->event); |
| 13802 | spin_unlock_irq(&dev->event_lock); |
| 13803 | |
| 13804 | crtc->state->event = NULL; |
| 13805 | } |
| 13806 | |
Maarten Lankhorst | f6ac4b2 | 2015-07-13 16:30:31 +0200 | [diff] [blame] | 13807 | if (!modeset) |
Ville Syrjälä | 29ceb0e | 2016-03-09 19:07:27 +0200 | [diff] [blame] | 13808 | intel_pre_plane_update(to_intel_crtc_state(old_crtc_state)); |
Maarten Lankhorst | f6ac4b2 | 2015-07-13 16:30:31 +0200 | [diff] [blame] | 13809 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13810 | if (crtc->state->active && |
| 13811 | drm_atomic_get_existing_plane_state(state, crtc->primary)) |
Maarten Lankhorst | faf68d9 | 2016-06-14 14:24:20 +0200 | [diff] [blame] | 13812 | intel_fbc_enable(intel_crtc, pipe_config, to_intel_plane_state(crtc->primary->state)); |
Maarten Lankhorst | a6747b7 | 2016-05-17 15:08:01 +0200 | [diff] [blame] | 13813 | |
Daniel Vetter | 1f7528c | 2016-06-13 16:13:45 +0200 | [diff] [blame] | 13814 | if (crtc->state->active) |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13815 | drm_atomic_helper_commit_planes_on_crtc(old_crtc_state); |
Maarten Lankhorst | a6747b7 | 2016-05-17 15:08:01 +0200 | [diff] [blame] | 13816 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13817 | if (pipe_config->base.active && needs_vblank_wait(pipe_config)) |
| 13818 | crtc_vblank_mask |= 1 << i; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 13819 | } |
| 13820 | |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13821 | /* FIXME: We should call drm_atomic_helper_commit_hw_done() here |
| 13822 | * already, but still need the state for the delayed optimization. To |
| 13823 | * fix this: |
| 13824 | * - wrap the optimization/post_plane_update stuff into a per-crtc work. |
| 13825 | * - schedule that vblank worker _before_ calling hw_done |
| 13826 | * - at the start of commit_tail, cancel it _synchrously |
| 13827 | * - switch over to the vblank wait helper in the core after that since |
| 13828 | * we don't need out special handling any more. |
| 13829 | */ |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13830 | if (!state->legacy_cursor_update) |
| 13831 | intel_atomic_wait_for_vblanks(dev, dev_priv, crtc_vblank_mask); |
| 13832 | |
| 13833 | /* |
| 13834 | * Now that the vblank has passed, we can go ahead and program the |
| 13835 | * optimal watermarks on platforms that need two-step watermark |
| 13836 | * programming. |
| 13837 | * |
| 13838 | * TODO: Move this (and other cleanup) to an async worker eventually. |
| 13839 | */ |
| 13840 | for_each_crtc_in_state(state, crtc, old_crtc_state, i) { |
| 13841 | intel_cstate = to_intel_crtc_state(crtc->state); |
| 13842 | |
| 13843 | if (dev_priv->display.optimize_watermarks) |
| 13844 | dev_priv->display.optimize_watermarks(intel_cstate); |
| 13845 | } |
| 13846 | |
| 13847 | for_each_crtc_in_state(state, crtc, old_crtc_state, i) { |
| 13848 | intel_post_plane_update(to_intel_crtc_state(old_crtc_state)); |
| 13849 | |
| 13850 | if (put_domains[i]) |
| 13851 | modeset_put_power_domains(dev_priv, put_domains[i]); |
| 13852 | |
| 13853 | intel_modeset_verify_crtc(crtc, old_crtc_state, crtc->state); |
| 13854 | } |
| 13855 | |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13856 | drm_atomic_helper_commit_hw_done(state); |
| 13857 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 13858 | if (intel_state->modeset) |
| 13859 | intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET); |
| 13860 | |
| 13861 | mutex_lock(&dev->struct_mutex); |
| 13862 | drm_atomic_helper_cleanup_planes(dev, state); |
| 13863 | mutex_unlock(&dev->struct_mutex); |
| 13864 | |
Daniel Vetter | ea0000f | 2016-06-13 16:13:46 +0200 | [diff] [blame] | 13865 | drm_atomic_helper_commit_cleanup_done(state); |
| 13866 | |
Maarten Lankhorst | ee165b1 | 2015-08-05 12:37:00 +0200 | [diff] [blame] | 13867 | drm_atomic_state_free(state); |
Jesse Barnes | 7f27126e | 2014-11-05 14:26:06 -0800 | [diff] [blame] | 13868 | |
Mika Kuoppala | 7571494 | 2015-12-16 09:26:48 +0200 | [diff] [blame] | 13869 | /* As one of the primary mmio accessors, KMS has a high likelihood |
| 13870 | * of triggering bugs in unclaimed access. After we finish |
| 13871 | * modesetting, see if an error has been flagged, and if so |
| 13872 | * enable debugging for the next modeset - and hope we catch |
| 13873 | * the culprit. |
| 13874 | * |
| 13875 | * XXX note that we assume display power is on at this point. |
| 13876 | * This might hold true now but we need to add pm helper to check |
| 13877 | * unclaimed only when the hardware is on, as atomic commits |
| 13878 | * can happen also when the device is completely off. |
| 13879 | */ |
| 13880 | intel_uncore_arm_unclaimed_mmio_detection(dev_priv); |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13881 | } |
| 13882 | |
| 13883 | static void intel_atomic_commit_work(struct work_struct *work) |
| 13884 | { |
| 13885 | struct drm_atomic_state *state = container_of(work, |
| 13886 | struct drm_atomic_state, |
| 13887 | commit_work); |
| 13888 | intel_atomic_commit_tail(state); |
| 13889 | } |
| 13890 | |
Daniel Vetter | 6c9c1b3 | 2016-06-13 16:13:48 +0200 | [diff] [blame] | 13891 | static void intel_atomic_track_fbs(struct drm_atomic_state *state) |
| 13892 | { |
| 13893 | struct drm_plane_state *old_plane_state; |
| 13894 | struct drm_plane *plane; |
| 13895 | struct drm_i915_gem_object *obj, *old_obj; |
| 13896 | struct intel_plane *intel_plane; |
| 13897 | int i; |
| 13898 | |
| 13899 | mutex_lock(&state->dev->struct_mutex); |
| 13900 | for_each_plane_in_state(state, plane, old_plane_state, i) { |
| 13901 | obj = intel_fb_obj(plane->state->fb); |
| 13902 | old_obj = intel_fb_obj(old_plane_state->fb); |
| 13903 | intel_plane = to_intel_plane(plane); |
| 13904 | |
| 13905 | i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit); |
| 13906 | } |
| 13907 | mutex_unlock(&state->dev->struct_mutex); |
| 13908 | } |
| 13909 | |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13910 | /** |
| 13911 | * intel_atomic_commit - commit validated state object |
| 13912 | * @dev: DRM device |
| 13913 | * @state: the top-level driver state object |
| 13914 | * @nonblock: nonblocking commit |
| 13915 | * |
| 13916 | * This function commits a top-level state object that has been validated |
| 13917 | * with drm_atomic_helper_check(). |
| 13918 | * |
| 13919 | * FIXME: Atomic modeset support for i915 is not yet complete. At the moment |
| 13920 | * nonblocking commits are only safe for pure plane updates. Everything else |
| 13921 | * should work though. |
| 13922 | * |
| 13923 | * RETURNS |
| 13924 | * Zero for success or -errno. |
| 13925 | */ |
| 13926 | static int intel_atomic_commit(struct drm_device *dev, |
| 13927 | struct drm_atomic_state *state, |
| 13928 | bool nonblock) |
| 13929 | { |
| 13930 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
| 13931 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 13932 | int ret = 0; |
| 13933 | |
| 13934 | if (intel_state->modeset && nonblock) { |
| 13935 | DRM_DEBUG_KMS("nonblocking commit for modeset not yet implemented.\n"); |
| 13936 | return -EINVAL; |
| 13937 | } |
| 13938 | |
| 13939 | ret = drm_atomic_helper_setup_commit(state, nonblock); |
| 13940 | if (ret) |
| 13941 | return ret; |
| 13942 | |
| 13943 | INIT_WORK(&state->commit_work, intel_atomic_commit_work); |
| 13944 | |
| 13945 | ret = intel_atomic_prepare_commit(dev, state, nonblock); |
| 13946 | if (ret) { |
| 13947 | DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret); |
| 13948 | return ret; |
| 13949 | } |
| 13950 | |
| 13951 | drm_atomic_helper_swap_state(state, true); |
| 13952 | dev_priv->wm.distrust_bios_wm = false; |
| 13953 | dev_priv->wm.skl_results = intel_state->wm_results; |
| 13954 | intel_shared_dpll_commit(state); |
Daniel Vetter | 6c9c1b3 | 2016-06-13 16:13:48 +0200 | [diff] [blame] | 13955 | intel_atomic_track_fbs(state); |
Daniel Vetter | 94f0502 | 2016-06-14 18:01:00 +0200 | [diff] [blame] | 13956 | |
| 13957 | if (nonblock) |
| 13958 | queue_work(system_unbound_wq, &state->commit_work); |
| 13959 | else |
| 13960 | intel_atomic_commit_tail(state); |
Mika Kuoppala | 7571494 | 2015-12-16 09:26:48 +0200 | [diff] [blame] | 13961 | |
Maarten Lankhorst | 74c090b | 2015-07-13 16:30:30 +0200 | [diff] [blame] | 13962 | return 0; |
Daniel Vetter | f30da18 | 2013-04-11 20:22:50 +0200 | [diff] [blame] | 13963 | } |
| 13964 | |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 13965 | void intel_crtc_restore_mode(struct drm_crtc *crtc) |
| 13966 | { |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 13967 | struct drm_device *dev = crtc->dev; |
| 13968 | struct drm_atomic_state *state; |
Maarten Lankhorst | e694eb0 | 2015-07-14 16:19:12 +0200 | [diff] [blame] | 13969 | struct drm_crtc_state *crtc_state; |
Ander Conselvan de Oliveira | 2bfb462 | 2015-04-21 17:13:20 +0300 | [diff] [blame] | 13970 | int ret; |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 13971 | |
| 13972 | state = drm_atomic_state_alloc(dev); |
| 13973 | if (!state) { |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 13974 | DRM_DEBUG_KMS("[CRTC:%d:%s] crtc restore failed, out of memory", |
| 13975 | crtc->base.id, crtc->name); |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 13976 | return; |
| 13977 | } |
| 13978 | |
Maarten Lankhorst | e694eb0 | 2015-07-14 16:19:12 +0200 | [diff] [blame] | 13979 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 13980 | |
Maarten Lankhorst | e694eb0 | 2015-07-14 16:19:12 +0200 | [diff] [blame] | 13981 | retry: |
| 13982 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 13983 | ret = PTR_ERR_OR_ZERO(crtc_state); |
| 13984 | if (!ret) { |
| 13985 | if (!crtc_state->active) |
| 13986 | goto out; |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 13987 | |
Maarten Lankhorst | e694eb0 | 2015-07-14 16:19:12 +0200 | [diff] [blame] | 13988 | crtc_state->mode_changed = true; |
Maarten Lankhorst | 74c090b | 2015-07-13 16:30:30 +0200 | [diff] [blame] | 13989 | ret = drm_atomic_commit(state); |
Ander Conselvan de Oliveira | 83a5715 | 2015-03-20 16:18:03 +0200 | [diff] [blame] | 13990 | } |
| 13991 | |
Maarten Lankhorst | e694eb0 | 2015-07-14 16:19:12 +0200 | [diff] [blame] | 13992 | if (ret == -EDEADLK) { |
| 13993 | drm_atomic_state_clear(state); |
| 13994 | drm_modeset_backoff(state->acquire_ctx); |
| 13995 | goto retry; |
Ander Conselvan de Oliveira | 4be0731 | 2015-04-21 17:13:01 +0300 | [diff] [blame] | 13996 | } |
| 13997 | |
Ander Conselvan de Oliveira | 2bfb462 | 2015-04-21 17:13:20 +0300 | [diff] [blame] | 13998 | if (ret) |
Maarten Lankhorst | e694eb0 | 2015-07-14 16:19:12 +0200 | [diff] [blame] | 13999 | out: |
Ander Conselvan de Oliveira | 2bfb462 | 2015-04-21 17:13:20 +0300 | [diff] [blame] | 14000 | drm_atomic_state_free(state); |
Chris Wilson | c0c36b94 | 2012-12-19 16:08:43 +0000 | [diff] [blame] | 14001 | } |
| 14002 | |
Daniel Vetter | 25c5b26 | 2012-07-08 22:08:04 +0200 | [diff] [blame] | 14003 | #undef for_each_intel_crtc_masked |
| 14004 | |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 14005 | static const struct drm_crtc_funcs intel_crtc_funcs = { |
Lionel Landwerlin | 82cf435 | 2016-03-16 10:57:16 +0000 | [diff] [blame] | 14006 | .gamma_set = drm_atomic_helper_legacy_gamma_set, |
Maarten Lankhorst | 74c090b | 2015-07-13 16:30:30 +0200 | [diff] [blame] | 14007 | .set_config = drm_atomic_helper_set_config, |
Lionel Landwerlin | 82cf435 | 2016-03-16 10:57:16 +0000 | [diff] [blame] | 14008 | .set_property = drm_atomic_helper_crtc_set_property, |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 14009 | .destroy = intel_crtc_destroy, |
Chris Wilson | 527b6ab | 2016-06-24 13:44:03 +0100 | [diff] [blame^] | 14010 | .page_flip = intel_crtc_page_flip, |
Matt Roper | 1356837 | 2015-01-21 16:35:47 -0800 | [diff] [blame] | 14011 | .atomic_duplicate_state = intel_crtc_duplicate_state, |
| 14012 | .atomic_destroy_state = intel_crtc_destroy_state, |
Chris Wilson | f6e5b16 | 2011-04-12 18:06:51 +0100 | [diff] [blame] | 14013 | }; |
| 14014 | |
Matt Roper | 6beb8c23 | 2014-12-01 15:40:14 -0800 | [diff] [blame] | 14015 | /** |
| 14016 | * intel_prepare_plane_fb - Prepare fb for usage on plane |
| 14017 | * @plane: drm plane to prepare for |
| 14018 | * @fb: framebuffer to prepare for presentation |
| 14019 | * |
| 14020 | * Prepares a framebuffer for usage on a display plane. Generally this |
| 14021 | * involves pinning the underlying object and updating the frontbuffer tracking |
| 14022 | * bits. Some older platforms need special physical address handling for |
| 14023 | * cursor planes. |
| 14024 | * |
Maarten Lankhorst | f935675 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 14025 | * Must be called with struct_mutex held. |
| 14026 | * |
Matt Roper | 6beb8c23 | 2014-12-01 15:40:14 -0800 | [diff] [blame] | 14027 | * Returns 0 on success, negative error code on failure. |
| 14028 | */ |
| 14029 | int |
| 14030 | intel_prepare_plane_fb(struct drm_plane *plane, |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 14031 | const struct drm_plane_state *new_state) |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14032 | { |
| 14033 | struct drm_device *dev = plane->dev; |
Maarten Lankhorst | 844f911 | 2015-09-02 10:42:40 +0200 | [diff] [blame] | 14034 | struct drm_framebuffer *fb = new_state->fb; |
Matt Roper | 6beb8c23 | 2014-12-01 15:40:14 -0800 | [diff] [blame] | 14035 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Maarten Lankhorst | 1ee4939 | 2015-09-23 13:27:08 +0200 | [diff] [blame] | 14036 | struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb); |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 14037 | struct reservation_object *resv; |
Matt Roper | 6beb8c23 | 2014-12-01 15:40:14 -0800 | [diff] [blame] | 14038 | int ret = 0; |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14039 | |
Maarten Lankhorst | 1ee4939 | 2015-09-23 13:27:08 +0200 | [diff] [blame] | 14040 | if (!obj && !old_obj) |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14041 | return 0; |
| 14042 | |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 14043 | if (old_obj) { |
| 14044 | struct drm_crtc_state *crtc_state = |
| 14045 | drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc); |
| 14046 | |
| 14047 | /* Big Hammer, we also need to ensure that any pending |
| 14048 | * MI_WAIT_FOR_EVENT inside a user batch buffer on the |
| 14049 | * current scanout is retired before unpinning the old |
| 14050 | * framebuffer. Note that we rely on userspace rendering |
| 14051 | * into the buffer attached to the pipe they are waiting |
| 14052 | * on. If not, userspace generates a GPU hang with IPEHR |
| 14053 | * point to the MI_WAIT_FOR_EVENT. |
| 14054 | * |
| 14055 | * This should only fail upon a hung GPU, in which case we |
| 14056 | * can safely continue. |
| 14057 | */ |
| 14058 | if (needs_modeset(crtc_state)) |
| 14059 | ret = i915_gem_object_wait_rendering(old_obj, true); |
Chris Wilson | f4457ae | 2016-04-13 17:35:08 +0100 | [diff] [blame] | 14060 | if (ret) { |
| 14061 | /* GPU hangs should have been swallowed by the wait */ |
| 14062 | WARN_ON(ret == -EIO); |
Maarten Lankhorst | f935675 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 14063 | return ret; |
Chris Wilson | f4457ae | 2016-04-13 17:35:08 +0100 | [diff] [blame] | 14064 | } |
Maarten Lankhorst | 5008e87 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 14065 | } |
| 14066 | |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 14067 | if (!obj) |
| 14068 | return 0; |
| 14069 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 14070 | /* For framebuffer backed by dmabuf, wait for fence */ |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 14071 | resv = i915_gem_object_get_dmabuf_resv(obj); |
| 14072 | if (resv) { |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 14073 | long lret; |
| 14074 | |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 14075 | lret = reservation_object_wait_timeout_rcu(resv, false, true, |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 14076 | MAX_SCHEDULE_TIMEOUT); |
| 14077 | if (lret == -ERESTARTSYS) |
| 14078 | return lret; |
| 14079 | |
| 14080 | WARN(lret < 0, "waiting returns %li\n", lret); |
| 14081 | } |
| 14082 | |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 14083 | if (plane->type == DRM_PLANE_TYPE_CURSOR && |
Matt Roper | 6beb8c23 | 2014-12-01 15:40:14 -0800 | [diff] [blame] | 14084 | INTEL_INFO(dev)->cursor_needs_physical) { |
| 14085 | int align = IS_I830(dev) ? 16 * 1024 : 256; |
| 14086 | ret = i915_gem_object_attach_phys(obj, align); |
| 14087 | if (ret) |
| 14088 | DRM_DEBUG_KMS("failed to attach phys object\n"); |
| 14089 | } else { |
Ville Syrjälä | 3465c58 | 2016-02-15 22:54:43 +0200 | [diff] [blame] | 14090 | ret = intel_pin_and_fence_fb_obj(fb, new_state->rotation); |
Matt Roper | 6beb8c23 | 2014-12-01 15:40:14 -0800 | [diff] [blame] | 14091 | } |
| 14092 | |
Chris Wilson | c37efb9 | 2016-06-17 08:28:47 +0100 | [diff] [blame] | 14093 | if (ret == 0) { |
Daniel Vetter | 6c9c1b3 | 2016-06-13 16:13:48 +0200 | [diff] [blame] | 14094 | struct intel_plane_state *plane_state = |
| 14095 | to_intel_plane_state(new_state); |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 14096 | |
Daniel Vetter | 6c9c1b3 | 2016-06-13 16:13:48 +0200 | [diff] [blame] | 14097 | i915_gem_request_assign(&plane_state->wait_req, |
| 14098 | obj->last_write_req); |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 14099 | } |
Matt Roper | 6beb8c23 | 2014-12-01 15:40:14 -0800 | [diff] [blame] | 14100 | |
Matt Roper | 6beb8c23 | 2014-12-01 15:40:14 -0800 | [diff] [blame] | 14101 | return ret; |
| 14102 | } |
| 14103 | |
Matt Roper | 38f3ce3 | 2014-12-02 07:45:25 -0800 | [diff] [blame] | 14104 | /** |
| 14105 | * intel_cleanup_plane_fb - Cleans up an fb after plane use |
| 14106 | * @plane: drm plane to clean up for |
| 14107 | * @fb: old framebuffer that was on plane |
| 14108 | * |
| 14109 | * Cleans up a framebuffer that has just been removed from a plane. |
Maarten Lankhorst | f935675 | 2015-08-18 13:40:05 +0200 | [diff] [blame] | 14110 | * |
| 14111 | * Must be called with struct_mutex held. |
Matt Roper | 38f3ce3 | 2014-12-02 07:45:25 -0800 | [diff] [blame] | 14112 | */ |
| 14113 | void |
| 14114 | intel_cleanup_plane_fb(struct drm_plane *plane, |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 14115 | const struct drm_plane_state *old_state) |
Matt Roper | 38f3ce3 | 2014-12-02 07:45:25 -0800 | [diff] [blame] | 14116 | { |
| 14117 | struct drm_device *dev = plane->dev; |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 14118 | struct intel_plane_state *old_intel_state; |
Maarten Lankhorst | 1ee4939 | 2015-09-23 13:27:08 +0200 | [diff] [blame] | 14119 | struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb); |
| 14120 | struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb); |
Matt Roper | 38f3ce3 | 2014-12-02 07:45:25 -0800 | [diff] [blame] | 14121 | |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 14122 | old_intel_state = to_intel_plane_state(old_state); |
| 14123 | |
Maarten Lankhorst | 1ee4939 | 2015-09-23 13:27:08 +0200 | [diff] [blame] | 14124 | if (!obj && !old_obj) |
Matt Roper | 38f3ce3 | 2014-12-02 07:45:25 -0800 | [diff] [blame] | 14125 | return; |
| 14126 | |
Maarten Lankhorst | 1ee4939 | 2015-09-23 13:27:08 +0200 | [diff] [blame] | 14127 | if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR || |
| 14128 | !INTEL_INFO(dev)->cursor_needs_physical)) |
Ville Syrjälä | 3465c58 | 2016-02-15 22:54:43 +0200 | [diff] [blame] | 14129 | intel_unpin_fb_obj(old_state->fb, old_state->rotation); |
Maarten Lankhorst | 1ee4939 | 2015-09-23 13:27:08 +0200 | [diff] [blame] | 14130 | |
Maarten Lankhorst | 7580d77 | 2015-08-18 13:40:06 +0200 | [diff] [blame] | 14131 | i915_gem_request_assign(&old_intel_state->wait_req, NULL); |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14132 | } |
| 14133 | |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 14134 | int |
| 14135 | skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state) |
| 14136 | { |
| 14137 | int max_scale; |
| 14138 | struct drm_device *dev; |
| 14139 | struct drm_i915_private *dev_priv; |
| 14140 | int crtc_clock, cdclk; |
| 14141 | |
Maarten Lankhorst | bf8a0af | 2015-11-24 11:29:02 +0100 | [diff] [blame] | 14142 | if (!intel_crtc || !crtc_state->base.enable) |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 14143 | return DRM_PLANE_HELPER_NO_SCALING; |
| 14144 | |
| 14145 | dev = intel_crtc->base.dev; |
| 14146 | dev_priv = dev->dev_private; |
| 14147 | crtc_clock = crtc_state->base.adjusted_mode.crtc_clock; |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 14148 | cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 14149 | |
Tvrtko Ursulin | 54bf1ce | 2015-10-20 17:17:07 +0100 | [diff] [blame] | 14150 | if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock)) |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 14151 | return DRM_PLANE_HELPER_NO_SCALING; |
| 14152 | |
| 14153 | /* |
| 14154 | * skl max scale is lower of: |
| 14155 | * close to 3 but not 3, -1 is for that purpose |
| 14156 | * or |
| 14157 | * cdclk/crtc_clock |
| 14158 | */ |
| 14159 | max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock)); |
| 14160 | |
| 14161 | return max_scale; |
| 14162 | } |
| 14163 | |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14164 | static int |
Gustavo Padovan | 3c692a4 | 2014-09-05 17:04:49 -0300 | [diff] [blame] | 14165 | intel_check_primary_plane(struct drm_plane *plane, |
Maarten Lankhorst | 061e4b8 | 2015-06-15 12:33:46 +0200 | [diff] [blame] | 14166 | struct intel_crtc_state *crtc_state, |
Gustavo Padovan | 3c692a4 | 2014-09-05 17:04:49 -0300 | [diff] [blame] | 14167 | struct intel_plane_state *state) |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14168 | { |
Matt Roper | 2b875c2 | 2014-12-01 15:40:13 -0800 | [diff] [blame] | 14169 | struct drm_crtc *crtc = state->base.crtc; |
| 14170 | struct drm_framebuffer *fb = state->base.fb; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 14171 | int min_scale = DRM_PLANE_HELPER_NO_SCALING; |
Maarten Lankhorst | 061e4b8 | 2015-06-15 12:33:46 +0200 | [diff] [blame] | 14172 | int max_scale = DRM_PLANE_HELPER_NO_SCALING; |
| 14173 | bool can_position = false; |
Gustavo Padovan | 3c692a4 | 2014-09-05 17:04:49 -0300 | [diff] [blame] | 14174 | |
Ville Syrjälä | 693bdc2 | 2016-01-15 20:46:53 +0200 | [diff] [blame] | 14175 | if (INTEL_INFO(plane->dev)->gen >= 9) { |
| 14176 | /* use scaler when colorkey is not required */ |
| 14177 | if (state->ckey.flags == I915_SET_COLORKEY_NONE) { |
| 14178 | min_scale = 1; |
| 14179 | max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state); |
| 14180 | } |
Sonika Jindal | d810636 | 2015-04-10 14:37:28 +0530 | [diff] [blame] | 14181 | can_position = true; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 14182 | } |
Sonika Jindal | d810636 | 2015-04-10 14:37:28 +0530 | [diff] [blame] | 14183 | |
Maarten Lankhorst | 061e4b8 | 2015-06-15 12:33:46 +0200 | [diff] [blame] | 14184 | return drm_plane_helper_check_update(plane, crtc, fb, &state->src, |
| 14185 | &state->dst, &state->clip, |
Ville Syrjälä | 9b8b013 | 2016-06-17 17:13:10 +0300 | [diff] [blame] | 14186 | state->base.rotation, |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 14187 | min_scale, max_scale, |
| 14188 | can_position, true, |
| 14189 | &state->visible); |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14190 | } |
| 14191 | |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 14192 | static void intel_begin_crtc_commit(struct drm_crtc *crtc, |
| 14193 | struct drm_crtc_state *old_crtc_state) |
| 14194 | { |
| 14195 | struct drm_device *dev = crtc->dev; |
| 14196 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 14197 | struct intel_crtc_state *old_intel_state = |
| 14198 | to_intel_crtc_state(old_crtc_state); |
| 14199 | bool modeset = needs_modeset(crtc->state); |
| 14200 | |
| 14201 | /* Perform vblank evasion around commit operation */ |
| 14202 | intel_pipe_update_start(intel_crtc); |
| 14203 | |
| 14204 | if (modeset) |
| 14205 | return; |
| 14206 | |
| 14207 | if (crtc->state->color_mgmt_changed || to_intel_crtc_state(crtc->state)->update_pipe) { |
| 14208 | intel_color_set_csc(crtc->state); |
| 14209 | intel_color_load_luts(crtc->state); |
| 14210 | } |
| 14211 | |
| 14212 | if (to_intel_crtc_state(crtc->state)->update_pipe) |
| 14213 | intel_update_pipe_config(intel_crtc, old_intel_state); |
| 14214 | else if (INTEL_INFO(dev)->gen >= 9) |
| 14215 | skl_detach_scalers(intel_crtc); |
| 14216 | } |
| 14217 | |
| 14218 | static void intel_finish_crtc_commit(struct drm_crtc *crtc, |
| 14219 | struct drm_crtc_state *old_crtc_state) |
| 14220 | { |
| 14221 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 14222 | |
| 14223 | intel_pipe_update_end(intel_crtc, NULL); |
| 14224 | } |
| 14225 | |
Matt Roper | cf4c7c1 | 2014-12-04 10:27:42 -0800 | [diff] [blame] | 14226 | /** |
Matt Roper | 4a3b876 | 2014-12-23 10:41:51 -0800 | [diff] [blame] | 14227 | * intel_plane_destroy - destroy a plane |
| 14228 | * @plane: plane to destroy |
Matt Roper | cf4c7c1 | 2014-12-04 10:27:42 -0800 | [diff] [blame] | 14229 | * |
Matt Roper | 4a3b876 | 2014-12-23 10:41:51 -0800 | [diff] [blame] | 14230 | * Common destruction function for all types of planes (primary, cursor, |
| 14231 | * sprite). |
Matt Roper | cf4c7c1 | 2014-12-04 10:27:42 -0800 | [diff] [blame] | 14232 | */ |
Matt Roper | 4a3b876 | 2014-12-23 10:41:51 -0800 | [diff] [blame] | 14233 | void intel_plane_destroy(struct drm_plane *plane) |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14234 | { |
Ville Syrjälä | 69ae561 | 2016-05-27 20:59:22 +0300 | [diff] [blame] | 14235 | if (!plane) |
| 14236 | return; |
| 14237 | |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14238 | drm_plane_cleanup(plane); |
Ville Syrjälä | 69ae561 | 2016-05-27 20:59:22 +0300 | [diff] [blame] | 14239 | kfree(to_intel_plane(plane)); |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14240 | } |
| 14241 | |
Matt Roper | 65a3fea | 2015-01-21 16:35:42 -0800 | [diff] [blame] | 14242 | const struct drm_plane_funcs intel_plane_funcs = { |
Matt Roper | 70a101f | 2015-04-08 18:56:53 -0700 | [diff] [blame] | 14243 | .update_plane = drm_atomic_helper_update_plane, |
| 14244 | .disable_plane = drm_atomic_helper_disable_plane, |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14245 | .destroy = intel_plane_destroy, |
Matt Roper | c196e1d | 2015-01-21 16:35:48 -0800 | [diff] [blame] | 14246 | .set_property = drm_atomic_helper_plane_set_property, |
Matt Roper | a98b343 | 2015-01-21 16:35:43 -0800 | [diff] [blame] | 14247 | .atomic_get_property = intel_plane_atomic_get_property, |
| 14248 | .atomic_set_property = intel_plane_atomic_set_property, |
Matt Roper | ea2c67b | 2014-12-23 10:41:52 -0800 | [diff] [blame] | 14249 | .atomic_duplicate_state = intel_plane_duplicate_state, |
| 14250 | .atomic_destroy_state = intel_plane_destroy_state, |
| 14251 | |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14252 | }; |
| 14253 | |
| 14254 | static struct drm_plane *intel_primary_plane_create(struct drm_device *dev, |
| 14255 | int pipe) |
| 14256 | { |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14257 | struct intel_plane *primary = NULL; |
| 14258 | struct intel_plane_state *state = NULL; |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14259 | const uint32_t *intel_primary_formats; |
Thierry Reding | 45e3743 | 2015-08-12 16:54:28 +0200 | [diff] [blame] | 14260 | unsigned int num_formats; |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14261 | int ret; |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14262 | |
| 14263 | primary = kzalloc(sizeof(*primary), GFP_KERNEL); |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14264 | if (!primary) |
| 14265 | goto fail; |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14266 | |
Matt Roper | 8e7d688 | 2015-01-21 16:35:41 -0800 | [diff] [blame] | 14267 | state = intel_create_plane_state(&primary->base); |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14268 | if (!state) |
| 14269 | goto fail; |
Matt Roper | 8e7d688 | 2015-01-21 16:35:41 -0800 | [diff] [blame] | 14270 | primary->base.state = &state->base; |
Matt Roper | ea2c67b | 2014-12-23 10:41:52 -0800 | [diff] [blame] | 14271 | |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14272 | primary->can_scale = false; |
| 14273 | primary->max_downscale = 1; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 14274 | if (INTEL_INFO(dev)->gen >= 9) { |
| 14275 | primary->can_scale = true; |
Chandra Konduru | af99ced | 2015-05-11 14:35:47 -0700 | [diff] [blame] | 14276 | state->scaler_id = -1; |
Chandra Konduru | 6156a45 | 2015-04-27 13:48:39 -0700 | [diff] [blame] | 14277 | } |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14278 | primary->pipe = pipe; |
| 14279 | primary->plane = pipe; |
Ville Syrjälä | a9ff871 | 2015-06-24 21:59:34 +0300 | [diff] [blame] | 14280 | primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe); |
Matt Roper | c59cb17 | 2014-12-01 15:40:16 -0800 | [diff] [blame] | 14281 | primary->check_plane = intel_check_primary_plane; |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14282 | if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) |
| 14283 | primary->plane = !pipe; |
| 14284 | |
Damien Lespiau | 6c0fd45 | 2015-05-19 12:29:16 +0100 | [diff] [blame] | 14285 | if (INTEL_INFO(dev)->gen >= 9) { |
| 14286 | intel_primary_formats = skl_primary_formats; |
| 14287 | num_formats = ARRAY_SIZE(skl_primary_formats); |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 14288 | |
| 14289 | primary->update_plane = skylake_update_primary_plane; |
| 14290 | primary->disable_plane = skylake_disable_primary_plane; |
| 14291 | } else if (HAS_PCH_SPLIT(dev)) { |
| 14292 | intel_primary_formats = i965_primary_formats; |
| 14293 | num_formats = ARRAY_SIZE(i965_primary_formats); |
| 14294 | |
| 14295 | primary->update_plane = ironlake_update_primary_plane; |
| 14296 | primary->disable_plane = i9xx_disable_primary_plane; |
Damien Lespiau | 6c0fd45 | 2015-05-19 12:29:16 +0100 | [diff] [blame] | 14297 | } else if (INTEL_INFO(dev)->gen >= 4) { |
Damien Lespiau | 568db4f | 2015-05-12 16:13:18 +0100 | [diff] [blame] | 14298 | intel_primary_formats = i965_primary_formats; |
| 14299 | num_formats = ARRAY_SIZE(i965_primary_formats); |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 14300 | |
| 14301 | primary->update_plane = i9xx_update_primary_plane; |
| 14302 | primary->disable_plane = i9xx_disable_primary_plane; |
Damien Lespiau | 6c0fd45 | 2015-05-19 12:29:16 +0100 | [diff] [blame] | 14303 | } else { |
| 14304 | intel_primary_formats = i8xx_primary_formats; |
| 14305 | num_formats = ARRAY_SIZE(i8xx_primary_formats); |
Maarten Lankhorst | a8d201a | 2016-01-07 11:54:11 +0100 | [diff] [blame] | 14306 | |
| 14307 | primary->update_plane = i9xx_update_primary_plane; |
| 14308 | primary->disable_plane = i9xx_disable_primary_plane; |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14309 | } |
| 14310 | |
Ville Syrjälä | 38573dc | 2016-05-27 20:59:23 +0300 | [diff] [blame] | 14311 | if (INTEL_INFO(dev)->gen >= 9) |
| 14312 | ret = drm_universal_plane_init(dev, &primary->base, 0, |
| 14313 | &intel_plane_funcs, |
| 14314 | intel_primary_formats, num_formats, |
| 14315 | DRM_PLANE_TYPE_PRIMARY, |
| 14316 | "plane 1%c", pipe_name(pipe)); |
| 14317 | else if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) |
| 14318 | ret = drm_universal_plane_init(dev, &primary->base, 0, |
| 14319 | &intel_plane_funcs, |
| 14320 | intel_primary_formats, num_formats, |
| 14321 | DRM_PLANE_TYPE_PRIMARY, |
| 14322 | "primary %c", pipe_name(pipe)); |
| 14323 | else |
| 14324 | ret = drm_universal_plane_init(dev, &primary->base, 0, |
| 14325 | &intel_plane_funcs, |
| 14326 | intel_primary_formats, num_formats, |
| 14327 | DRM_PLANE_TYPE_PRIMARY, |
| 14328 | "plane %c", plane_name(primary->plane)); |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14329 | if (ret) |
| 14330 | goto fail; |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 14331 | |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 14332 | if (INTEL_INFO(dev)->gen >= 4) |
| 14333 | intel_create_rotation_property(dev, primary); |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 14334 | |
Matt Roper | ea2c67b | 2014-12-23 10:41:52 -0800 | [diff] [blame] | 14335 | drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs); |
| 14336 | |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14337 | return &primary->base; |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14338 | |
| 14339 | fail: |
| 14340 | kfree(state); |
| 14341 | kfree(primary); |
| 14342 | |
| 14343 | return NULL; |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14344 | } |
| 14345 | |
Sonika Jindal | 3b7a511 | 2015-04-10 14:37:29 +0530 | [diff] [blame] | 14346 | void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane) |
| 14347 | { |
| 14348 | if (!dev->mode_config.rotation_property) { |
| 14349 | unsigned long flags = BIT(DRM_ROTATE_0) | |
| 14350 | BIT(DRM_ROTATE_180); |
| 14351 | |
| 14352 | if (INTEL_INFO(dev)->gen >= 9) |
| 14353 | flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270); |
| 14354 | |
| 14355 | dev->mode_config.rotation_property = |
| 14356 | drm_mode_create_rotation_property(dev, flags); |
| 14357 | } |
| 14358 | if (dev->mode_config.rotation_property) |
| 14359 | drm_object_attach_property(&plane->base.base, |
| 14360 | dev->mode_config.rotation_property, |
| 14361 | plane->base.state->rotation); |
| 14362 | } |
| 14363 | |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14364 | static int |
Gustavo Padovan | 852e787 | 2014-09-05 17:22:31 -0300 | [diff] [blame] | 14365 | intel_check_cursor_plane(struct drm_plane *plane, |
Maarten Lankhorst | 061e4b8 | 2015-06-15 12:33:46 +0200 | [diff] [blame] | 14366 | struct intel_crtc_state *crtc_state, |
Gustavo Padovan | 852e787 | 2014-09-05 17:22:31 -0300 | [diff] [blame] | 14367 | struct intel_plane_state *state) |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14368 | { |
Maarten Lankhorst | 061e4b8 | 2015-06-15 12:33:46 +0200 | [diff] [blame] | 14369 | struct drm_crtc *crtc = crtc_state->base.crtc; |
Matt Roper | 2b875c2 | 2014-12-01 15:40:13 -0800 | [diff] [blame] | 14370 | struct drm_framebuffer *fb = state->base.fb; |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14371 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Ville Syrjälä | b29ec92 | 2015-12-18 19:24:39 +0200 | [diff] [blame] | 14372 | enum pipe pipe = to_intel_plane(plane)->pipe; |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14373 | unsigned stride; |
| 14374 | int ret; |
Gustavo Padovan | 852e787 | 2014-09-05 17:22:31 -0300 | [diff] [blame] | 14375 | |
Maarten Lankhorst | 061e4b8 | 2015-06-15 12:33:46 +0200 | [diff] [blame] | 14376 | ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src, |
| 14377 | &state->dst, &state->clip, |
Ville Syrjälä | 9b8b013 | 2016-06-17 17:13:10 +0300 | [diff] [blame] | 14378 | state->base.rotation, |
Gustavo Padovan | 852e787 | 2014-09-05 17:22:31 -0300 | [diff] [blame] | 14379 | DRM_PLANE_HELPER_NO_SCALING, |
| 14380 | DRM_PLANE_HELPER_NO_SCALING, |
| 14381 | true, true, &state->visible); |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14382 | if (ret) |
| 14383 | return ret; |
| 14384 | |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14385 | /* if we want to turn off the cursor ignore width and height */ |
| 14386 | if (!obj) |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 14387 | return 0; |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14388 | |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14389 | /* Check for which cursor types we support */ |
Maarten Lankhorst | 061e4b8 | 2015-06-15 12:33:46 +0200 | [diff] [blame] | 14390 | if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) { |
Matt Roper | ea2c67b | 2014-12-23 10:41:52 -0800 | [diff] [blame] | 14391 | DRM_DEBUG("Cursor dimension %dx%d not supported\n", |
| 14392 | state->base.crtc_w, state->base.crtc_h); |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14393 | return -EINVAL; |
| 14394 | } |
| 14395 | |
Matt Roper | ea2c67b | 2014-12-23 10:41:52 -0800 | [diff] [blame] | 14396 | stride = roundup_pow_of_two(state->base.crtc_w) * 4; |
| 14397 | if (obj->base.size < stride * state->base.crtc_h) { |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14398 | DRM_DEBUG_KMS("buffer is too small\n"); |
| 14399 | return -ENOMEM; |
| 14400 | } |
| 14401 | |
Ville Syrjälä | 3a656b5 | 2015-03-09 21:08:37 +0200 | [diff] [blame] | 14402 | if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) { |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14403 | DRM_DEBUG_KMS("cursor cannot be tiled\n"); |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 14404 | return -EINVAL; |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14405 | } |
Gustavo Padovan | 757f9a3 | 2014-09-24 14:20:24 -0300 | [diff] [blame] | 14406 | |
Ville Syrjälä | b29ec92 | 2015-12-18 19:24:39 +0200 | [diff] [blame] | 14407 | /* |
| 14408 | * There's something wrong with the cursor on CHV pipe C. |
| 14409 | * If it straddles the left edge of the screen then |
| 14410 | * moving it away from the edge or disabling it often |
| 14411 | * results in a pipe underrun, and often that can lead to |
| 14412 | * dead pipe (constant underrun reported, and it scans |
| 14413 | * out just a solid color). To recover from that, the |
| 14414 | * display power well must be turned off and on again. |
| 14415 | * Refuse the put the cursor into that compromised position. |
| 14416 | */ |
| 14417 | if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C && |
| 14418 | state->visible && state->base.crtc_x < 0) { |
| 14419 | DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n"); |
| 14420 | return -EINVAL; |
| 14421 | } |
| 14422 | |
Maarten Lankhorst | da20eab | 2015-06-15 12:33:44 +0200 | [diff] [blame] | 14423 | return 0; |
Gustavo Padovan | 852e787 | 2014-09-05 17:22:31 -0300 | [diff] [blame] | 14424 | } |
| 14425 | |
Matt Roper | f4a2cf2 | 2014-12-01 15:40:12 -0800 | [diff] [blame] | 14426 | static void |
Maarten Lankhorst | a8ad0d8 | 2015-04-21 17:12:51 +0300 | [diff] [blame] | 14427 | intel_disable_cursor_plane(struct drm_plane *plane, |
Maarten Lankhorst | 7fabf5e | 2015-06-15 12:33:47 +0200 | [diff] [blame] | 14428 | struct drm_crtc *crtc) |
Maarten Lankhorst | a8ad0d8 | 2015-04-21 17:12:51 +0300 | [diff] [blame] | 14429 | { |
Maarten Lankhorst | f285802 | 2016-01-07 11:54:09 +0100 | [diff] [blame] | 14430 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 14431 | |
| 14432 | intel_crtc->cursor_addr = 0; |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 14433 | intel_crtc_update_cursor(crtc, NULL); |
Maarten Lankhorst | a8ad0d8 | 2015-04-21 17:12:51 +0300 | [diff] [blame] | 14434 | } |
| 14435 | |
| 14436 | static void |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 14437 | intel_update_cursor_plane(struct drm_plane *plane, |
| 14438 | const struct intel_crtc_state *crtc_state, |
| 14439 | const struct intel_plane_state *state) |
Gustavo Padovan | 852e787 | 2014-09-05 17:22:31 -0300 | [diff] [blame] | 14440 | { |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 14441 | struct drm_crtc *crtc = crtc_state->base.crtc; |
| 14442 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Matt Roper | ea2c67b | 2014-12-23 10:41:52 -0800 | [diff] [blame] | 14443 | struct drm_device *dev = plane->dev; |
Matt Roper | 2b875c2 | 2014-12-01 15:40:13 -0800 | [diff] [blame] | 14444 | struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb); |
Gustavo Padovan | a912f12 | 2014-12-01 15:40:10 -0800 | [diff] [blame] | 14445 | uint32_t addr; |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14446 | |
Matt Roper | f4a2cf2 | 2014-12-01 15:40:12 -0800 | [diff] [blame] | 14447 | if (!obj) |
Gustavo Padovan | a912f12 | 2014-12-01 15:40:10 -0800 | [diff] [blame] | 14448 | addr = 0; |
Matt Roper | f4a2cf2 | 2014-12-01 15:40:12 -0800 | [diff] [blame] | 14449 | else if (!INTEL_INFO(dev)->cursor_needs_physical) |
Gustavo Padovan | a912f12 | 2014-12-01 15:40:10 -0800 | [diff] [blame] | 14450 | addr = i915_gem_obj_ggtt_offset(obj); |
Matt Roper | f4a2cf2 | 2014-12-01 15:40:12 -0800 | [diff] [blame] | 14451 | else |
Gustavo Padovan | a912f12 | 2014-12-01 15:40:10 -0800 | [diff] [blame] | 14452 | addr = obj->phys_handle->busaddr; |
Gustavo Padovan | a912f12 | 2014-12-01 15:40:10 -0800 | [diff] [blame] | 14453 | |
Gustavo Padovan | a912f12 | 2014-12-01 15:40:10 -0800 | [diff] [blame] | 14454 | intel_crtc->cursor_addr = addr; |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 14455 | intel_crtc_update_cursor(crtc, state); |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14456 | } |
Gustavo Padovan | 852e787 | 2014-09-05 17:22:31 -0300 | [diff] [blame] | 14457 | |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14458 | static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev, |
| 14459 | int pipe) |
| 14460 | { |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14461 | struct intel_plane *cursor = NULL; |
| 14462 | struct intel_plane_state *state = NULL; |
| 14463 | int ret; |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14464 | |
| 14465 | cursor = kzalloc(sizeof(*cursor), GFP_KERNEL); |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14466 | if (!cursor) |
| 14467 | goto fail; |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14468 | |
Matt Roper | 8e7d688 | 2015-01-21 16:35:41 -0800 | [diff] [blame] | 14469 | state = intel_create_plane_state(&cursor->base); |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14470 | if (!state) |
| 14471 | goto fail; |
Matt Roper | 8e7d688 | 2015-01-21 16:35:41 -0800 | [diff] [blame] | 14472 | cursor->base.state = &state->base; |
Matt Roper | ea2c67b | 2014-12-23 10:41:52 -0800 | [diff] [blame] | 14473 | |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14474 | cursor->can_scale = false; |
| 14475 | cursor->max_downscale = 1; |
| 14476 | cursor->pipe = pipe; |
| 14477 | cursor->plane = pipe; |
Ville Syrjälä | a9ff871 | 2015-06-24 21:59:34 +0300 | [diff] [blame] | 14478 | cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe); |
Matt Roper | c59cb17 | 2014-12-01 15:40:16 -0800 | [diff] [blame] | 14479 | cursor->check_plane = intel_check_cursor_plane; |
Maarten Lankhorst | 55a08b3f | 2016-01-07 11:54:10 +0100 | [diff] [blame] | 14480 | cursor->update_plane = intel_update_cursor_plane; |
Maarten Lankhorst | a8ad0d8 | 2015-04-21 17:12:51 +0300 | [diff] [blame] | 14481 | cursor->disable_plane = intel_disable_cursor_plane; |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14482 | |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14483 | ret = drm_universal_plane_init(dev, &cursor->base, 0, |
| 14484 | &intel_plane_funcs, |
| 14485 | intel_cursor_formats, |
| 14486 | ARRAY_SIZE(intel_cursor_formats), |
Ville Syrjälä | 38573dc | 2016-05-27 20:59:23 +0300 | [diff] [blame] | 14487 | DRM_PLANE_TYPE_CURSOR, |
| 14488 | "cursor %c", pipe_name(pipe)); |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14489 | if (ret) |
| 14490 | goto fail; |
Ville Syrjälä | 4398ad4 | 2014-10-23 07:41:34 -0700 | [diff] [blame] | 14491 | |
| 14492 | if (INTEL_INFO(dev)->gen >= 4) { |
| 14493 | if (!dev->mode_config.rotation_property) |
| 14494 | dev->mode_config.rotation_property = |
| 14495 | drm_mode_create_rotation_property(dev, |
| 14496 | BIT(DRM_ROTATE_0) | |
| 14497 | BIT(DRM_ROTATE_180)); |
| 14498 | if (dev->mode_config.rotation_property) |
| 14499 | drm_object_attach_property(&cursor->base.base, |
| 14500 | dev->mode_config.rotation_property, |
Matt Roper | 8e7d688 | 2015-01-21 16:35:41 -0800 | [diff] [blame] | 14501 | state->base.rotation); |
Ville Syrjälä | 4398ad4 | 2014-10-23 07:41:34 -0700 | [diff] [blame] | 14502 | } |
| 14503 | |
Chandra Konduru | af99ced | 2015-05-11 14:35:47 -0700 | [diff] [blame] | 14504 | if (INTEL_INFO(dev)->gen >=9) |
| 14505 | state->scaler_id = -1; |
| 14506 | |
Matt Roper | ea2c67b | 2014-12-23 10:41:52 -0800 | [diff] [blame] | 14507 | drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs); |
| 14508 | |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14509 | return &cursor->base; |
Ville Syrjälä | fca0ce2 | 2016-03-21 14:43:22 +0000 | [diff] [blame] | 14510 | |
| 14511 | fail: |
| 14512 | kfree(state); |
| 14513 | kfree(cursor); |
| 14514 | |
| 14515 | return NULL; |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14516 | } |
| 14517 | |
Chandra Konduru | 549e2bf | 2015-04-07 15:28:38 -0700 | [diff] [blame] | 14518 | static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc, |
| 14519 | struct intel_crtc_state *crtc_state) |
| 14520 | { |
| 14521 | int i; |
| 14522 | struct intel_scaler *intel_scaler; |
| 14523 | struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state; |
| 14524 | |
| 14525 | for (i = 0; i < intel_crtc->num_scalers; i++) { |
| 14526 | intel_scaler = &scaler_state->scalers[i]; |
| 14527 | intel_scaler->in_use = 0; |
Chandra Konduru | 549e2bf | 2015-04-07 15:28:38 -0700 | [diff] [blame] | 14528 | intel_scaler->mode = PS_SCALER_MODE_DYN; |
| 14529 | } |
| 14530 | |
| 14531 | scaler_state->scaler_id = -1; |
| 14532 | } |
| 14533 | |
Hannes Eder | b358d0a | 2008-12-18 21:18:47 +0100 | [diff] [blame] | 14534 | static void intel_crtc_init(struct drm_device *dev, int pipe) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14535 | { |
Jani Nikula | fbee40d | 2014-03-31 14:27:18 +0300 | [diff] [blame] | 14536 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14537 | struct intel_crtc *intel_crtc; |
Ander Conselvan de Oliveira | f5de6e0 | 2015-01-15 14:55:26 +0200 | [diff] [blame] | 14538 | struct intel_crtc_state *crtc_state = NULL; |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14539 | struct drm_plane *primary = NULL; |
| 14540 | struct drm_plane *cursor = NULL; |
Lionel Landwerlin | 8563b1e | 2016-03-16 10:57:14 +0000 | [diff] [blame] | 14541 | int ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14542 | |
Daniel Vetter | 955382f | 2013-09-19 14:05:45 +0200 | [diff] [blame] | 14543 | intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14544 | if (intel_crtc == NULL) |
| 14545 | return; |
| 14546 | |
Ander Conselvan de Oliveira | f5de6e0 | 2015-01-15 14:55:26 +0200 | [diff] [blame] | 14547 | crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL); |
| 14548 | if (!crtc_state) |
| 14549 | goto fail; |
Ander Conselvan de Oliveira | 550acef | 2015-04-21 17:13:24 +0300 | [diff] [blame] | 14550 | intel_crtc->config = crtc_state; |
| 14551 | intel_crtc->base.state = &crtc_state->base; |
Matt Roper | 0787824 | 2015-02-25 11:43:26 -0800 | [diff] [blame] | 14552 | crtc_state->base.crtc = &intel_crtc->base; |
Ander Conselvan de Oliveira | f5de6e0 | 2015-01-15 14:55:26 +0200 | [diff] [blame] | 14553 | |
Chandra Konduru | 549e2bf | 2015-04-07 15:28:38 -0700 | [diff] [blame] | 14554 | /* initialize shared scalers */ |
| 14555 | if (INTEL_INFO(dev)->gen >= 9) { |
| 14556 | if (pipe == PIPE_C) |
| 14557 | intel_crtc->num_scalers = 1; |
| 14558 | else |
| 14559 | intel_crtc->num_scalers = SKL_NUM_SCALERS; |
| 14560 | |
| 14561 | skl_init_scalers(dev, intel_crtc, crtc_state); |
| 14562 | } |
| 14563 | |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14564 | primary = intel_primary_plane_create(dev, pipe); |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14565 | if (!primary) |
| 14566 | goto fail; |
| 14567 | |
| 14568 | cursor = intel_cursor_plane_create(dev, pipe); |
| 14569 | if (!cursor) |
| 14570 | goto fail; |
| 14571 | |
Matt Roper | 465c120 | 2014-05-29 08:06:54 -0700 | [diff] [blame] | 14572 | ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary, |
Ville Syrjälä | 4d5d72b7 | 2016-05-27 20:59:21 +0300 | [diff] [blame] | 14573 | cursor, &intel_crtc_funcs, |
| 14574 | "pipe %c", pipe_name(pipe)); |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14575 | if (ret) |
| 14576 | goto fail; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14577 | |
Ville Syrjälä | 1f1c2e2 | 2013-11-28 17:30:01 +0200 | [diff] [blame] | 14578 | /* |
| 14579 | * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port |
Daniel Vetter | 8c0f92e | 2014-06-16 02:08:26 +0200 | [diff] [blame] | 14580 | * is hooked to pipe B. Hence we want plane A feeding pipe B. |
Ville Syrjälä | 1f1c2e2 | 2013-11-28 17:30:01 +0200 | [diff] [blame] | 14581 | */ |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 14582 | intel_crtc->pipe = pipe; |
| 14583 | intel_crtc->plane = pipe; |
Daniel Vetter | 3a77c4c | 2014-01-10 08:50:12 +0100 | [diff] [blame] | 14584 | if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 14585 | DRM_DEBUG_KMS("swapping pipes & planes for FBC\n"); |
Chris Wilson | e2e767a | 2010-09-13 16:53:12 +0100 | [diff] [blame] | 14586 | intel_crtc->plane = !pipe; |
Jesse Barnes | 8082400 | 2009-09-10 15:28:06 -0700 | [diff] [blame] | 14587 | } |
| 14588 | |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 14589 | intel_crtc->cursor_base = ~0; |
| 14590 | intel_crtc->cursor_cntl = ~0; |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 14591 | intel_crtc->cursor_size = ~0; |
Ville Syrjälä | 8d7849d | 2014-04-29 13:35:46 +0300 | [diff] [blame] | 14592 | |
Ville Syrjälä | 852eb00 | 2015-06-24 22:00:07 +0300 | [diff] [blame] | 14593 | intel_crtc->wm.cxsr_allowed = true; |
| 14594 | |
Jesse Barnes | 22fd0fa | 2009-12-02 13:42:53 -0800 | [diff] [blame] | 14595 | BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) || |
| 14596 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL); |
| 14597 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base; |
| 14598 | dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base; |
| 14599 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14600 | drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs); |
Daniel Vetter | 87b6b10 | 2014-05-15 15:33:46 +0200 | [diff] [blame] | 14601 | |
Lionel Landwerlin | 8563b1e | 2016-03-16 10:57:14 +0000 | [diff] [blame] | 14602 | intel_color_init(&intel_crtc->base); |
| 14603 | |
Daniel Vetter | 87b6b10 | 2014-05-15 15:33:46 +0200 | [diff] [blame] | 14604 | WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe); |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14605 | return; |
| 14606 | |
| 14607 | fail: |
Ville Syrjälä | 69ae561 | 2016-05-27 20:59:22 +0300 | [diff] [blame] | 14608 | intel_plane_destroy(primary); |
| 14609 | intel_plane_destroy(cursor); |
Ander Conselvan de Oliveira | f5de6e0 | 2015-01-15 14:55:26 +0200 | [diff] [blame] | 14610 | kfree(crtc_state); |
Matt Roper | 3d7d651 | 2014-06-10 08:28:13 -0700 | [diff] [blame] | 14611 | kfree(intel_crtc); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14612 | } |
| 14613 | |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 14614 | enum pipe intel_get_pipe_from_connector(struct intel_connector *connector) |
| 14615 | { |
| 14616 | struct drm_encoder *encoder = connector->base.encoder; |
Daniel Vetter | 6e9f798 | 2014-05-29 23:54:47 +0200 | [diff] [blame] | 14617 | struct drm_device *dev = connector->base.dev; |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 14618 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 14619 | WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex)); |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 14620 | |
Ville Syrjälä | d3babd3 | 2014-11-07 11:16:01 +0200 | [diff] [blame] | 14621 | if (!encoder || WARN_ON(!encoder->crtc)) |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 14622 | return INVALID_PIPE; |
| 14623 | |
| 14624 | return to_intel_crtc(encoder->crtc)->pipe; |
| 14625 | } |
| 14626 | |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 14627 | int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 14628 | struct drm_file *file) |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 14629 | { |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 14630 | struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data; |
Rob Clark | 7707e65 | 2014-07-17 23:30:04 -0400 | [diff] [blame] | 14631 | struct drm_crtc *drmmode_crtc; |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 14632 | struct intel_crtc *crtc; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 14633 | |
Rob Clark | 7707e65 | 2014-07-17 23:30:04 -0400 | [diff] [blame] | 14634 | drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id); |
Chris Wilson | 71240ed | 2016-06-24 14:00:24 +0100 | [diff] [blame] | 14635 | if (!drmmode_crtc) |
Ville Syrjälä | 3f2c205 | 2013-10-17 13:35:03 +0300 | [diff] [blame] | 14636 | return -ENOENT; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 14637 | |
Rob Clark | 7707e65 | 2014-07-17 23:30:04 -0400 | [diff] [blame] | 14638 | crtc = to_intel_crtc(drmmode_crtc); |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 14639 | pipe_from_crtc_id->pipe = crtc->pipe; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 14640 | |
Daniel Vetter | c05422d | 2009-08-11 16:05:30 +0200 | [diff] [blame] | 14641 | return 0; |
Carl Worth | 08d7b3d | 2009-04-29 14:43:54 -0700 | [diff] [blame] | 14642 | } |
| 14643 | |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 14644 | static int intel_encoder_clones(struct intel_encoder *encoder) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14645 | { |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 14646 | struct drm_device *dev = encoder->base.dev; |
| 14647 | struct intel_encoder *source_encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14648 | int index_mask = 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14649 | int entry = 0; |
| 14650 | |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 14651 | for_each_intel_encoder(dev, source_encoder) { |
Ville Syrjälä | bc079e8 | 2014-03-03 16:15:28 +0200 | [diff] [blame] | 14652 | if (encoders_cloneable(encoder, source_encoder)) |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 14653 | index_mask |= (1 << entry); |
| 14654 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14655 | entry++; |
| 14656 | } |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 14657 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14658 | return index_mask; |
| 14659 | } |
| 14660 | |
Chris Wilson | 4d30244 | 2010-12-14 19:21:29 +0000 | [diff] [blame] | 14661 | static bool has_edp_a(struct drm_device *dev) |
| 14662 | { |
| 14663 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 14664 | |
| 14665 | if (!IS_MOBILE(dev)) |
| 14666 | return false; |
| 14667 | |
| 14668 | if ((I915_READ(DP_A) & DP_DETECTED) == 0) |
| 14669 | return false; |
| 14670 | |
Damien Lespiau | e358990 | 2014-02-07 19:12:50 +0000 | [diff] [blame] | 14671 | if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE)) |
Chris Wilson | 4d30244 | 2010-12-14 19:21:29 +0000 | [diff] [blame] | 14672 | return false; |
| 14673 | |
| 14674 | return true; |
| 14675 | } |
| 14676 | |
Jesse Barnes | 84b4e04 | 2014-06-25 08:24:29 -0700 | [diff] [blame] | 14677 | static bool intel_crt_present(struct drm_device *dev) |
| 14678 | { |
| 14679 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 14680 | |
Damien Lespiau | 884497e | 2013-12-03 13:56:23 +0000 | [diff] [blame] | 14681 | if (INTEL_INFO(dev)->gen >= 9) |
| 14682 | return false; |
| 14683 | |
Damien Lespiau | cf404ce | 2014-10-01 20:04:15 +0100 | [diff] [blame] | 14684 | if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev)) |
Jesse Barnes | 84b4e04 | 2014-06-25 08:24:29 -0700 | [diff] [blame] | 14685 | return false; |
| 14686 | |
| 14687 | if (IS_CHERRYVIEW(dev)) |
| 14688 | return false; |
| 14689 | |
Ville Syrjälä | 65e472e | 2015-12-01 23:28:55 +0200 | [diff] [blame] | 14690 | if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED) |
| 14691 | return false; |
| 14692 | |
Ville Syrjälä | 70ac54d | 2015-12-01 23:29:56 +0200 | [diff] [blame] | 14693 | /* DDI E can't be used if DDI A requires 4 lanes */ |
| 14694 | if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES) |
| 14695 | return false; |
| 14696 | |
Ville Syrjälä | e4abb73 | 2015-12-01 23:31:33 +0200 | [diff] [blame] | 14697 | if (!dev_priv->vbt.int_crt_support) |
Jesse Barnes | 84b4e04 | 2014-06-25 08:24:29 -0700 | [diff] [blame] | 14698 | return false; |
| 14699 | |
| 14700 | return true; |
| 14701 | } |
| 14702 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14703 | static void intel_setup_outputs(struct drm_device *dev) |
| 14704 | { |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 14705 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 14706 | struct intel_encoder *encoder; |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 14707 | bool dpd_is_edp = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14708 | |
Imre Deak | 97a824e1 | 2016-06-21 11:51:47 +0300 | [diff] [blame] | 14709 | /* |
| 14710 | * intel_edp_init_connector() depends on this completing first, to |
| 14711 | * prevent the registeration of both eDP and LVDS and the incorrect |
| 14712 | * sharing of the PPS. |
| 14713 | */ |
Daniel Vetter | c909335 | 2013-06-06 22:22:47 +0200 | [diff] [blame] | 14714 | intel_lvds_init(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14715 | |
Jesse Barnes | 84b4e04 | 2014-06-25 08:24:29 -0700 | [diff] [blame] | 14716 | if (intel_crt_present(dev)) |
Paulo Zanoni | 79935fc | 2012-11-20 13:27:40 -0200 | [diff] [blame] | 14717 | intel_crt_init(dev); |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 14718 | |
Vandana Kannan | c776eb2 | 2014-08-19 12:05:01 +0530 | [diff] [blame] | 14719 | if (IS_BROXTON(dev)) { |
| 14720 | /* |
| 14721 | * FIXME: Broxton doesn't support port detection via the |
| 14722 | * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to |
| 14723 | * detect the ports. |
| 14724 | */ |
| 14725 | intel_ddi_init(dev, PORT_A); |
| 14726 | intel_ddi_init(dev, PORT_B); |
| 14727 | intel_ddi_init(dev, PORT_C); |
Shashank Sharma | c6c794a | 2016-03-22 12:01:50 +0200 | [diff] [blame] | 14728 | |
| 14729 | intel_dsi_init(dev); |
Vandana Kannan | c776eb2 | 2014-08-19 12:05:01 +0530 | [diff] [blame] | 14730 | } else if (HAS_DDI(dev)) { |
Eugeni Dodonov | 0e72a5b | 2012-05-09 15:37:27 -0300 | [diff] [blame] | 14731 | int found; |
| 14732 | |
Jesse Barnes | de31fac | 2015-03-06 15:53:32 -0800 | [diff] [blame] | 14733 | /* |
| 14734 | * Haswell uses DDI functions to detect digital outputs. |
| 14735 | * On SKL pre-D0 the strap isn't connected, so we assume |
| 14736 | * it's there. |
| 14737 | */ |
Ville Syrjälä | 7717940 | 2015-09-18 20:03:35 +0300 | [diff] [blame] | 14738 | found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED; |
Jesse Barnes | de31fac | 2015-03-06 15:53:32 -0800 | [diff] [blame] | 14739 | /* WaIgnoreDDIAStrap: skl */ |
Rodrigo Vivi | ef11bdb | 2015-10-28 04:16:45 -0700 | [diff] [blame] | 14740 | if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) |
Eugeni Dodonov | 0e72a5b | 2012-05-09 15:37:27 -0300 | [diff] [blame] | 14741 | intel_ddi_init(dev, PORT_A); |
| 14742 | |
| 14743 | /* DDI B, C and D detection is indicated by the SFUSE_STRAP |
| 14744 | * register */ |
| 14745 | found = I915_READ(SFUSE_STRAP); |
| 14746 | |
| 14747 | if (found & SFUSE_STRAP_DDIB_DETECTED) |
| 14748 | intel_ddi_init(dev, PORT_B); |
| 14749 | if (found & SFUSE_STRAP_DDIC_DETECTED) |
| 14750 | intel_ddi_init(dev, PORT_C); |
| 14751 | if (found & SFUSE_STRAP_DDID_DETECTED) |
| 14752 | intel_ddi_init(dev, PORT_D); |
Rodrigo Vivi | 2800e4c | 2015-08-07 17:35:21 -0700 | [diff] [blame] | 14753 | /* |
| 14754 | * On SKL we don't have a way to detect DDI-E so we rely on VBT. |
| 14755 | */ |
Rodrigo Vivi | ef11bdb | 2015-10-28 04:16:45 -0700 | [diff] [blame] | 14756 | if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) && |
Rodrigo Vivi | 2800e4c | 2015-08-07 17:35:21 -0700 | [diff] [blame] | 14757 | (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp || |
| 14758 | dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi || |
| 14759 | dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi)) |
| 14760 | intel_ddi_init(dev, PORT_E); |
| 14761 | |
Eugeni Dodonov | 0e72a5b | 2012-05-09 15:37:27 -0300 | [diff] [blame] | 14762 | } else if (HAS_PCH_SPLIT(dev)) { |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 14763 | int found; |
Ville Syrjälä | 5d8a775 | 2013-11-01 18:22:39 +0200 | [diff] [blame] | 14764 | dpd_is_edp = intel_dp_is_edp(dev, PORT_D); |
Daniel Vetter | 270b304 | 2012-10-27 15:52:05 +0200 | [diff] [blame] | 14765 | |
| 14766 | if (has_edp_a(dev)) |
| 14767 | intel_dp_init(dev, DP_A, PORT_A); |
Adam Jackson | cb0953d | 2010-07-16 14:46:29 -0400 | [diff] [blame] | 14768 | |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 14769 | if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) { |
Zhao Yakui | 461ed3c | 2010-03-30 15:11:33 +0800 | [diff] [blame] | 14770 | /* PCH SDVOB multiplex with HDMIB */ |
Ville Syrjälä | 2a5c083 | 2015-11-06 21:29:59 +0200 | [diff] [blame] | 14771 | found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 14772 | if (!found) |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 14773 | intel_hdmi_init(dev, PCH_HDMIB, PORT_B); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 14774 | if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED)) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 14775 | intel_dp_init(dev, PCH_DP_B, PORT_B); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 14776 | } |
| 14777 | |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 14778 | if (I915_READ(PCH_HDMIC) & SDVO_DETECTED) |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 14779 | intel_hdmi_init(dev, PCH_HDMIC, PORT_C); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 14780 | |
Paulo Zanoni | dc0fa71 | 2013-02-19 16:21:46 -0300 | [diff] [blame] | 14781 | if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED) |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 14782 | intel_hdmi_init(dev, PCH_HDMID, PORT_D); |
Zhenyu Wang | 30ad48b | 2009-06-05 15:38:43 +0800 | [diff] [blame] | 14783 | |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 14784 | if (I915_READ(PCH_DP_C) & DP_DETECTED) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 14785 | intel_dp_init(dev, PCH_DP_C, PORT_C); |
Zhenyu Wang | 5eb08b6 | 2009-07-24 01:00:31 +0800 | [diff] [blame] | 14786 | |
Daniel Vetter | 270b304 | 2012-10-27 15:52:05 +0200 | [diff] [blame] | 14787 | if (I915_READ(PCH_DP_D) & DP_DETECTED) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 14788 | intel_dp_init(dev, PCH_DP_D, PORT_D); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 14789 | } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 22f35042 | 2016-06-03 12:17:43 +0300 | [diff] [blame] | 14790 | bool has_edp, has_port; |
Chris Wilson | 457c52d | 2016-06-01 08:27:50 +0100 | [diff] [blame] | 14791 | |
Ville Syrjälä | e17ac6d | 2014-10-09 19:37:15 +0300 | [diff] [blame] | 14792 | /* |
| 14793 | * The DP_DETECTED bit is the latched state of the DDC |
| 14794 | * SDA pin at boot. However since eDP doesn't require DDC |
| 14795 | * (no way to plug in a DP->HDMI dongle) the DDC pins for |
| 14796 | * eDP ports may have been muxed to an alternate function. |
| 14797 | * Thus we can't rely on the DP_DETECTED bit alone to detect |
| 14798 | * eDP ports. Consult the VBT as well as DP_DETECTED to |
| 14799 | * detect eDP ports. |
Ville Syrjälä | 22f35042 | 2016-06-03 12:17:43 +0300 | [diff] [blame] | 14800 | * |
| 14801 | * Sadly the straps seem to be missing sometimes even for HDMI |
| 14802 | * ports (eg. on Voyo V3 - CHT x7-Z8700), so check both strap |
| 14803 | * and VBT for the presence of the port. Additionally we can't |
| 14804 | * trust the port type the VBT declares as we've seen at least |
| 14805 | * HDMI ports that the VBT claim are DP or eDP. |
Ville Syrjälä | e17ac6d | 2014-10-09 19:37:15 +0300 | [diff] [blame] | 14806 | */ |
Chris Wilson | 457c52d | 2016-06-01 08:27:50 +0100 | [diff] [blame] | 14807 | has_edp = intel_dp_is_edp(dev, PORT_B); |
Ville Syrjälä | 22f35042 | 2016-06-03 12:17:43 +0300 | [diff] [blame] | 14808 | has_port = intel_bios_is_port_present(dev_priv, PORT_B); |
| 14809 | if (I915_READ(VLV_DP_B) & DP_DETECTED || has_port) |
Chris Wilson | 457c52d | 2016-06-01 08:27:50 +0100 | [diff] [blame] | 14810 | has_edp &= intel_dp_init(dev, VLV_DP_B, PORT_B); |
Ville Syrjälä | 22f35042 | 2016-06-03 12:17:43 +0300 | [diff] [blame] | 14811 | if ((I915_READ(VLV_HDMIB) & SDVO_DETECTED || has_port) && !has_edp) |
Ville Syrjälä | e66eb81 | 2015-09-18 20:03:34 +0300 | [diff] [blame] | 14812 | intel_hdmi_init(dev, VLV_HDMIB, PORT_B); |
Artem Bityutskiy | 585a94b | 2013-10-16 18:10:41 +0300 | [diff] [blame] | 14813 | |
Chris Wilson | 457c52d | 2016-06-01 08:27:50 +0100 | [diff] [blame] | 14814 | has_edp = intel_dp_is_edp(dev, PORT_C); |
Ville Syrjälä | 22f35042 | 2016-06-03 12:17:43 +0300 | [diff] [blame] | 14815 | has_port = intel_bios_is_port_present(dev_priv, PORT_C); |
| 14816 | if (I915_READ(VLV_DP_C) & DP_DETECTED || has_port) |
Chris Wilson | 457c52d | 2016-06-01 08:27:50 +0100 | [diff] [blame] | 14817 | has_edp &= intel_dp_init(dev, VLV_DP_C, PORT_C); |
Ville Syrjälä | 22f35042 | 2016-06-03 12:17:43 +0300 | [diff] [blame] | 14818 | if ((I915_READ(VLV_HDMIC) & SDVO_DETECTED || has_port) && !has_edp) |
Ville Syrjälä | e66eb81 | 2015-09-18 20:03:34 +0300 | [diff] [blame] | 14819 | intel_hdmi_init(dev, VLV_HDMIC, PORT_C); |
Gajanan Bhat | 19c0392 | 2012-09-27 19:13:07 +0530 | [diff] [blame] | 14820 | |
Ville Syrjälä | 9418c1f | 2014-04-09 13:28:56 +0300 | [diff] [blame] | 14821 | if (IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 22f35042 | 2016-06-03 12:17:43 +0300 | [diff] [blame] | 14822 | /* |
| 14823 | * eDP not supported on port D, |
| 14824 | * so no need to worry about it |
| 14825 | */ |
| 14826 | has_port = intel_bios_is_port_present(dev_priv, PORT_D); |
| 14827 | if (I915_READ(CHV_DP_D) & DP_DETECTED || has_port) |
Ville Syrjälä | e66eb81 | 2015-09-18 20:03:34 +0300 | [diff] [blame] | 14828 | intel_dp_init(dev, CHV_DP_D, PORT_D); |
Ville Syrjälä | 22f35042 | 2016-06-03 12:17:43 +0300 | [diff] [blame] | 14829 | if (I915_READ(CHV_HDMID) & SDVO_DETECTED || has_port) |
| 14830 | intel_hdmi_init(dev, CHV_HDMID, PORT_D); |
Ville Syrjälä | 9418c1f | 2014-04-09 13:28:56 +0300 | [diff] [blame] | 14831 | } |
| 14832 | |
Jani Nikula | 3cfca97 | 2013-08-27 15:12:26 +0300 | [diff] [blame] | 14833 | intel_dsi_init(dev); |
Daniel Vetter | 09da55d | 2015-07-07 11:44:32 +0200 | [diff] [blame] | 14834 | } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) { |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 14835 | bool found = false; |
Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 14836 | |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 14837 | if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 14838 | DRM_DEBUG_KMS("probing SDVOB\n"); |
Ville Syrjälä | 2a5c083 | 2015-11-06 21:29:59 +0200 | [diff] [blame] | 14839 | found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B); |
Daniel Vetter | 3fec3d2 | 2015-07-07 09:10:07 +0200 | [diff] [blame] | 14840 | if (!found && IS_G4X(dev)) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 14841 | DRM_DEBUG_KMS("probing HDMI on SDVOB\n"); |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 14842 | intel_hdmi_init(dev, GEN4_HDMIB, PORT_B); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 14843 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 14844 | |
Daniel Vetter | 3fec3d2 | 2015-07-07 09:10:07 +0200 | [diff] [blame] | 14845 | if (!found && IS_G4X(dev)) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 14846 | intel_dp_init(dev, DP_B, PORT_B); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 14847 | } |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 14848 | |
| 14849 | /* Before G4X SDVOC doesn't have its own detect register */ |
Kristian Høgsberg | 13520b0 | 2009-03-13 15:42:14 -0400 | [diff] [blame] | 14850 | |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 14851 | if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 14852 | DRM_DEBUG_KMS("probing SDVOC\n"); |
Ville Syrjälä | 2a5c083 | 2015-11-06 21:29:59 +0200 | [diff] [blame] | 14853 | found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 14854 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 14855 | |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 14856 | if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) { |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 14857 | |
Daniel Vetter | 3fec3d2 | 2015-07-07 09:10:07 +0200 | [diff] [blame] | 14858 | if (IS_G4X(dev)) { |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 14859 | DRM_DEBUG_KMS("probing HDMI on SDVOC\n"); |
Paulo Zanoni | e2debe9 | 2013-02-18 19:00:27 -0300 | [diff] [blame] | 14860 | intel_hdmi_init(dev, GEN4_HDMIC, PORT_C); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 14861 | } |
Daniel Vetter | 3fec3d2 | 2015-07-07 09:10:07 +0200 | [diff] [blame] | 14862 | if (IS_G4X(dev)) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 14863 | intel_dp_init(dev, DP_C, PORT_C); |
Eric Anholt | 725e30a | 2009-01-22 13:01:02 -0800 | [diff] [blame] | 14864 | } |
Ma Ling | 27185ae | 2009-08-24 13:50:23 +0800 | [diff] [blame] | 14865 | |
Daniel Vetter | 3fec3d2 | 2015-07-07 09:10:07 +0200 | [diff] [blame] | 14866 | if (IS_G4X(dev) && |
Imre Deak | e7281ea | 2013-05-08 13:14:08 +0300 | [diff] [blame] | 14867 | (I915_READ(DP_D) & DP_DETECTED)) |
Paulo Zanoni | ab9d7c3 | 2012-07-17 17:53:45 -0300 | [diff] [blame] | 14868 | intel_dp_init(dev, DP_D, PORT_D); |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 14869 | } else if (IS_GEN2(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14870 | intel_dvo_init(dev); |
| 14871 | |
Zhenyu Wang | 103a196 | 2009-11-27 11:44:36 +0800 | [diff] [blame] | 14872 | if (SUPPORTS_TV(dev)) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14873 | intel_tv_init(dev); |
| 14874 | |
Rodrigo Vivi | 0bc12bc | 2014-11-14 08:52:28 -0800 | [diff] [blame] | 14875 | intel_psr_init(dev); |
Rodrigo Vivi | 7c8f8a7 | 2014-06-13 05:10:03 -0700 | [diff] [blame] | 14876 | |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 14877 | for_each_intel_encoder(dev, encoder) { |
Chris Wilson | 4ef69c7 | 2010-09-09 15:14:28 +0100 | [diff] [blame] | 14878 | encoder->base.possible_crtcs = encoder->crtc_mask; |
| 14879 | encoder->base.possible_clones = |
Daniel Vetter | 66a9278 | 2012-07-12 20:08:18 +0200 | [diff] [blame] | 14880 | intel_encoder_clones(encoder); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14881 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 14882 | |
Paulo Zanoni | dde86e2 | 2012-12-01 12:04:25 -0200 | [diff] [blame] | 14883 | intel_init_pch_refclk(dev); |
Daniel Vetter | 270b304 | 2012-10-27 15:52:05 +0200 | [diff] [blame] | 14884 | |
| 14885 | drm_helper_move_panel_connectors_to_head(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14886 | } |
| 14887 | |
| 14888 | static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb) |
| 14889 | { |
Ville Syrjälä | 60a5ca0 | 2014-06-13 11:10:53 +0300 | [diff] [blame] | 14890 | struct drm_device *dev = fb->dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14891 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14892 | |
Daniel Vetter | ef2d633 | 2014-02-10 18:00:38 +0100 | [diff] [blame] | 14893 | drm_framebuffer_cleanup(fb); |
Ville Syrjälä | 60a5ca0 | 2014-06-13 11:10:53 +0300 | [diff] [blame] | 14894 | mutex_lock(&dev->struct_mutex); |
Daniel Vetter | ef2d633 | 2014-02-10 18:00:38 +0100 | [diff] [blame] | 14895 | WARN_ON(!intel_fb->obj->framebuffer_references--); |
Ville Syrjälä | 60a5ca0 | 2014-06-13 11:10:53 +0300 | [diff] [blame] | 14896 | drm_gem_object_unreference(&intel_fb->obj->base); |
| 14897 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14898 | kfree(intel_fb); |
| 14899 | } |
| 14900 | |
| 14901 | static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 14902 | struct drm_file *file, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14903 | unsigned int *handle) |
| 14904 | { |
| 14905 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 14906 | struct drm_i915_gem_object *obj = intel_fb->obj; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14907 | |
Chris Wilson | cc917ab | 2015-10-13 14:22:26 +0100 | [diff] [blame] | 14908 | if (obj->userptr.mm) { |
| 14909 | DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n"); |
| 14910 | return -EINVAL; |
| 14911 | } |
| 14912 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 14913 | return drm_gem_handle_create(file, &obj->base, handle); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14914 | } |
| 14915 | |
Rodrigo Vivi | 86c9858 | 2015-07-08 16:22:45 -0700 | [diff] [blame] | 14916 | static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb, |
| 14917 | struct drm_file *file, |
| 14918 | unsigned flags, unsigned color, |
| 14919 | struct drm_clip_rect *clips, |
| 14920 | unsigned num_clips) |
| 14921 | { |
| 14922 | struct drm_device *dev = fb->dev; |
| 14923 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
| 14924 | struct drm_i915_gem_object *obj = intel_fb->obj; |
| 14925 | |
| 14926 | mutex_lock(&dev->struct_mutex); |
Paulo Zanoni | 74b4ea1 | 2015-07-14 16:29:14 -0300 | [diff] [blame] | 14927 | intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB); |
Rodrigo Vivi | 86c9858 | 2015-07-08 16:22:45 -0700 | [diff] [blame] | 14928 | mutex_unlock(&dev->struct_mutex); |
| 14929 | |
| 14930 | return 0; |
| 14931 | } |
| 14932 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14933 | static const struct drm_framebuffer_funcs intel_fb_funcs = { |
| 14934 | .destroy = intel_user_framebuffer_destroy, |
| 14935 | .create_handle = intel_user_framebuffer_create_handle, |
Rodrigo Vivi | 86c9858 | 2015-07-08 16:22:45 -0700 | [diff] [blame] | 14936 | .dirty = intel_user_framebuffer_dirty, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14937 | }; |
| 14938 | |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 14939 | static |
| 14940 | u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier, |
| 14941 | uint32_t pixel_format) |
| 14942 | { |
| 14943 | u32 gen = INTEL_INFO(dev)->gen; |
| 14944 | |
| 14945 | if (gen >= 9) { |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 14946 | int cpp = drm_format_plane_cpp(pixel_format, 0); |
| 14947 | |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 14948 | /* "The stride in bytes must not exceed the of the size of 8K |
| 14949 | * pixels and 32K bytes." |
| 14950 | */ |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 14951 | return min(8192 * cpp, 32768); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 14952 | } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) { |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 14953 | return 32*1024; |
| 14954 | } else if (gen >= 4) { |
| 14955 | if (fb_modifier == I915_FORMAT_MOD_X_TILED) |
| 14956 | return 16*1024; |
| 14957 | else |
| 14958 | return 32*1024; |
| 14959 | } else if (gen >= 3) { |
| 14960 | if (fb_modifier == I915_FORMAT_MOD_X_TILED) |
| 14961 | return 8*1024; |
| 14962 | else |
| 14963 | return 16*1024; |
| 14964 | } else { |
| 14965 | /* XXX DSPC is limited to 4k tiled */ |
| 14966 | return 8*1024; |
| 14967 | } |
| 14968 | } |
| 14969 | |
Daniel Vetter | b5ea642 | 2014-03-02 21:18:00 +0100 | [diff] [blame] | 14970 | static int intel_framebuffer_init(struct drm_device *dev, |
| 14971 | struct intel_framebuffer *intel_fb, |
| 14972 | struct drm_mode_fb_cmd2 *mode_cmd, |
| 14973 | struct drm_i915_gem_object *obj) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14974 | { |
Ville Syrjälä | 7b49f94 | 2016-01-12 21:08:32 +0200 | [diff] [blame] | 14975 | struct drm_i915_private *dev_priv = to_i915(dev); |
Tvrtko Ursulin | 6761dd3 | 2015-03-23 11:10:32 +0000 | [diff] [blame] | 14976 | unsigned int aligned_height; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14977 | int ret; |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 14978 | u32 pitch_limit, stride_alignment; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14979 | |
Daniel Vetter | dd4916c | 2013-10-09 21:23:51 +0200 | [diff] [blame] | 14980 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 14981 | |
Daniel Vetter | 2a80ead | 2015-02-10 17:16:06 +0000 | [diff] [blame] | 14982 | if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) { |
| 14983 | /* Enforce that fb modifier and tiling mode match, but only for |
| 14984 | * X-tiled. This is needed for FBC. */ |
| 14985 | if (!!(obj->tiling_mode == I915_TILING_X) != |
| 14986 | !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) { |
| 14987 | DRM_DEBUG("tiling_mode doesn't match fb modifier\n"); |
| 14988 | return -EINVAL; |
| 14989 | } |
| 14990 | } else { |
| 14991 | if (obj->tiling_mode == I915_TILING_X) |
| 14992 | mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED; |
| 14993 | else if (obj->tiling_mode == I915_TILING_Y) { |
| 14994 | DRM_DEBUG("No Y tiling for legacy addfb\n"); |
| 14995 | return -EINVAL; |
| 14996 | } |
| 14997 | } |
| 14998 | |
Tvrtko Ursulin | 9a8f0a1 | 2015-02-27 11:15:24 +0000 | [diff] [blame] | 14999 | /* Passed in modifier sanity checking. */ |
| 15000 | switch (mode_cmd->modifier[0]) { |
| 15001 | case I915_FORMAT_MOD_Y_TILED: |
| 15002 | case I915_FORMAT_MOD_Yf_TILED: |
| 15003 | if (INTEL_INFO(dev)->gen < 9) { |
| 15004 | DRM_DEBUG("Unsupported tiling 0x%llx!\n", |
| 15005 | mode_cmd->modifier[0]); |
| 15006 | return -EINVAL; |
| 15007 | } |
| 15008 | case DRM_FORMAT_MOD_NONE: |
| 15009 | case I915_FORMAT_MOD_X_TILED: |
| 15010 | break; |
| 15011 | default: |
Jesse Barnes | c0f4042 | 2015-03-23 12:43:50 -0700 | [diff] [blame] | 15012 | DRM_DEBUG("Unsupported fb modifier 0x%llx!\n", |
| 15013 | mode_cmd->modifier[0]); |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 15014 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15015 | } |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 15016 | |
Ville Syrjälä | 7b49f94 | 2016-01-12 21:08:32 +0200 | [diff] [blame] | 15017 | stride_alignment = intel_fb_stride_alignment(dev_priv, |
| 15018 | mode_cmd->modifier[0], |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 15019 | mode_cmd->pixel_format); |
| 15020 | if (mode_cmd->pitches[0] & (stride_alignment - 1)) { |
| 15021 | DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n", |
| 15022 | mode_cmd->pitches[0], stride_alignment); |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 15023 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15024 | } |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 15025 | |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 15026 | pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0], |
| 15027 | mode_cmd->pixel_format); |
Chris Wilson | a35cdaa | 2013-06-25 17:26:45 +0100 | [diff] [blame] | 15028 | if (mode_cmd->pitches[0] > pitch_limit) { |
Damien Lespiau | b321803 | 2015-02-27 11:15:18 +0000 | [diff] [blame] | 15029 | DRM_DEBUG("%s pitch (%u) must be at less than %d\n", |
| 15030 | mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ? |
Daniel Vetter | 2a80ead | 2015-02-10 17:16:06 +0000 | [diff] [blame] | 15031 | "tiled" : "linear", |
Chris Wilson | a35cdaa | 2013-06-25 17:26:45 +0100 | [diff] [blame] | 15032 | mode_cmd->pitches[0], pitch_limit); |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 15033 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15034 | } |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 15035 | |
Daniel Vetter | 2a80ead | 2015-02-10 17:16:06 +0000 | [diff] [blame] | 15036 | if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED && |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15037 | mode_cmd->pitches[0] != obj->stride) { |
| 15038 | DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n", |
| 15039 | mode_cmd->pitches[0], obj->stride); |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 15040 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15041 | } |
Ville Syrjälä | 5d7bd70 | 2012-10-31 17:50:18 +0200 | [diff] [blame] | 15042 | |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15043 | /* Reject formats not supported by any plane early. */ |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 15044 | switch (mode_cmd->pixel_format) { |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15045 | case DRM_FORMAT_C8: |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 15046 | case DRM_FORMAT_RGB565: |
| 15047 | case DRM_FORMAT_XRGB8888: |
| 15048 | case DRM_FORMAT_ARGB8888: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15049 | break; |
| 15050 | case DRM_FORMAT_XRGB1555: |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15051 | if (INTEL_INFO(dev)->gen > 3) { |
Ville Syrjälä | 4ee62c7 | 2013-06-07 15:43:05 +0000 | [diff] [blame] | 15052 | DRM_DEBUG("unsupported pixel format: %s\n", |
| 15053 | drm_get_format_name(mode_cmd->pixel_format)); |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15054 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15055 | } |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15056 | break; |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15057 | case DRM_FORMAT_ABGR8888: |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 15058 | if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && |
| 15059 | INTEL_INFO(dev)->gen < 9) { |
Damien Lespiau | 6c0fd45 | 2015-05-19 12:29:16 +0100 | [diff] [blame] | 15060 | DRM_DEBUG("unsupported pixel format: %s\n", |
| 15061 | drm_get_format_name(mode_cmd->pixel_format)); |
| 15062 | return -EINVAL; |
| 15063 | } |
| 15064 | break; |
| 15065 | case DRM_FORMAT_XBGR8888: |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 15066 | case DRM_FORMAT_XRGB2101010: |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15067 | case DRM_FORMAT_XBGR2101010: |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15068 | if (INTEL_INFO(dev)->gen < 4) { |
Ville Syrjälä | 4ee62c7 | 2013-06-07 15:43:05 +0000 | [diff] [blame] | 15069 | DRM_DEBUG("unsupported pixel format: %s\n", |
| 15070 | drm_get_format_name(mode_cmd->pixel_format)); |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15071 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15072 | } |
Jesse Barnes | b562674 | 2011-06-24 12:19:27 -0700 | [diff] [blame] | 15073 | break; |
Damien Lespiau | 7531208 | 2015-05-15 19:06:01 +0100 | [diff] [blame] | 15074 | case DRM_FORMAT_ABGR2101010: |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 15075 | if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) { |
Damien Lespiau | 7531208 | 2015-05-15 19:06:01 +0100 | [diff] [blame] | 15076 | DRM_DEBUG("unsupported pixel format: %s\n", |
| 15077 | drm_get_format_name(mode_cmd->pixel_format)); |
| 15078 | return -EINVAL; |
| 15079 | } |
| 15080 | break; |
Ville Syrjälä | 04b3924 | 2011-11-17 18:05:13 +0200 | [diff] [blame] | 15081 | case DRM_FORMAT_YUYV: |
| 15082 | case DRM_FORMAT_UYVY: |
| 15083 | case DRM_FORMAT_YVYU: |
| 15084 | case DRM_FORMAT_VYUY: |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15085 | if (INTEL_INFO(dev)->gen < 5) { |
Ville Syrjälä | 4ee62c7 | 2013-06-07 15:43:05 +0000 | [diff] [blame] | 15086 | DRM_DEBUG("unsupported pixel format: %s\n", |
| 15087 | drm_get_format_name(mode_cmd->pixel_format)); |
Ville Syrjälä | 57779d0 | 2012-10-31 17:50:14 +0200 | [diff] [blame] | 15088 | return -EINVAL; |
Chris Wilson | c16ed4b | 2012-12-18 22:13:14 +0000 | [diff] [blame] | 15089 | } |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 15090 | break; |
| 15091 | default: |
Ville Syrjälä | 4ee62c7 | 2013-06-07 15:43:05 +0000 | [diff] [blame] | 15092 | DRM_DEBUG("unsupported pixel format: %s\n", |
| 15093 | drm_get_format_name(mode_cmd->pixel_format)); |
Chris Wilson | 57cd650 | 2010-08-08 12:34:44 +0100 | [diff] [blame] | 15094 | return -EINVAL; |
| 15095 | } |
| 15096 | |
Ville Syrjälä | 90f9a33 | 2012-10-31 17:50:19 +0200 | [diff] [blame] | 15097 | /* FIXME need to adjust LINOFF/TILEOFF accordingly. */ |
| 15098 | if (mode_cmd->offsets[0] != 0) |
| 15099 | return -EINVAL; |
| 15100 | |
Damien Lespiau | ec2c981 | 2015-01-20 12:51:45 +0000 | [diff] [blame] | 15101 | aligned_height = intel_fb_align_height(dev, mode_cmd->height, |
Daniel Vetter | 091df6c | 2015-02-10 17:16:10 +0000 | [diff] [blame] | 15102 | mode_cmd->pixel_format, |
| 15103 | mode_cmd->modifier[0]); |
Daniel Vetter | 53155c0 | 2013-10-09 21:55:33 +0200 | [diff] [blame] | 15104 | /* FIXME drm helper for size checks (especially planar formats)? */ |
| 15105 | if (obj->base.size < aligned_height * mode_cmd->pitches[0]) |
| 15106 | return -EINVAL; |
| 15107 | |
Daniel Vetter | c7d73f6 | 2012-12-13 23:38:38 +0100 | [diff] [blame] | 15108 | drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd); |
| 15109 | intel_fb->obj = obj; |
| 15110 | |
Ville Syrjälä | 2d7a215 | 2016-02-15 22:54:47 +0200 | [diff] [blame] | 15111 | intel_fill_fb_info(dev_priv, &intel_fb->base); |
| 15112 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15113 | ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs); |
| 15114 | if (ret) { |
| 15115 | DRM_ERROR("framebuffer init failed %d\n", ret); |
| 15116 | return ret; |
| 15117 | } |
| 15118 | |
Ville Syrjälä | 0b05e1e | 2016-01-14 15:22:09 +0200 | [diff] [blame] | 15119 | intel_fb->obj->framebuffer_references++; |
| 15120 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15121 | return 0; |
| 15122 | } |
| 15123 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15124 | static struct drm_framebuffer * |
| 15125 | intel_user_framebuffer_create(struct drm_device *dev, |
| 15126 | struct drm_file *filp, |
Ville Syrjälä | 1eb83451 | 2015-11-11 19:11:29 +0200 | [diff] [blame] | 15127 | const struct drm_mode_fb_cmd2 *user_mode_cmd) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15128 | { |
Lukas Wunner | dcb1394 | 2015-07-04 11:50:58 +0200 | [diff] [blame] | 15129 | struct drm_framebuffer *fb; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 15130 | struct drm_i915_gem_object *obj; |
Ville Syrjälä | 76dc376 | 2015-11-11 19:11:28 +0200 | [diff] [blame] | 15131 | struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15132 | |
Chris Wilson | a8ad0bd | 2016-05-09 11:04:54 +0100 | [diff] [blame] | 15133 | obj = to_intel_bo(drm_gem_object_lookup(filp, mode_cmd.handles[0])); |
Chris Wilson | c872522 | 2011-02-19 11:31:06 +0000 | [diff] [blame] | 15134 | if (&obj->base == NULL) |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 15135 | return ERR_PTR(-ENOENT); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15136 | |
Daniel Vetter | 92907cb | 2015-11-23 09:04:05 +0100 | [diff] [blame] | 15137 | fb = intel_framebuffer_create(dev, &mode_cmd, obj); |
Lukas Wunner | dcb1394 | 2015-07-04 11:50:58 +0200 | [diff] [blame] | 15138 | if (IS_ERR(fb)) |
| 15139 | drm_gem_object_unreference_unlocked(&obj->base); |
| 15140 | |
| 15141 | return fb; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15142 | } |
| 15143 | |
Daniel Vetter | 0695726 | 2015-08-10 13:34:08 +0200 | [diff] [blame] | 15144 | #ifndef CONFIG_DRM_FBDEV_EMULATION |
Daniel Vetter | 0632fef | 2013-10-08 17:44:49 +0200 | [diff] [blame] | 15145 | static inline void intel_fbdev_output_poll_changed(struct drm_device *dev) |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 15146 | { |
| 15147 | } |
| 15148 | #endif |
| 15149 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15150 | static const struct drm_mode_config_funcs intel_mode_funcs = { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15151 | .fb_create = intel_user_framebuffer_create, |
Daniel Vetter | 0632fef | 2013-10-08 17:44:49 +0200 | [diff] [blame] | 15152 | .output_poll_changed = intel_fbdev_output_poll_changed, |
Matt Roper | 5ee67f1 | 2015-01-21 16:35:44 -0800 | [diff] [blame] | 15153 | .atomic_check = intel_atomic_check, |
| 15154 | .atomic_commit = intel_atomic_commit, |
Maarten Lankhorst | de419ab | 2015-06-04 10:21:28 +0200 | [diff] [blame] | 15155 | .atomic_state_alloc = intel_atomic_state_alloc, |
| 15156 | .atomic_state_clear = intel_atomic_state_clear, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15157 | }; |
| 15158 | |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15159 | /** |
| 15160 | * intel_init_display_hooks - initialize the display modesetting hooks |
| 15161 | * @dev_priv: device private |
| 15162 | */ |
| 15163 | void intel_init_display_hooks(struct drm_i915_private *dev_priv) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15164 | { |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15165 | if (INTEL_INFO(dev_priv)->gen >= 9) { |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 15166 | dev_priv->display.get_pipe_config = haswell_get_pipe_config; |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 15167 | dev_priv->display.get_initial_plane_config = |
| 15168 | skylake_get_initial_plane_config; |
Damien Lespiau | bc8d7df | 2015-01-20 12:51:51 +0000 | [diff] [blame] | 15169 | dev_priv->display.crtc_compute_clock = |
| 15170 | haswell_crtc_compute_clock; |
| 15171 | dev_priv->display.crtc_enable = haswell_crtc_enable; |
| 15172 | dev_priv->display.crtc_disable = haswell_crtc_disable; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15173 | } else if (HAS_DDI(dev_priv)) { |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 15174 | dev_priv->display.get_pipe_config = haswell_get_pipe_config; |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 15175 | dev_priv->display.get_initial_plane_config = |
| 15176 | ironlake_get_initial_plane_config; |
Ander Conselvan de Oliveira | 797d025 | 2014-10-29 11:32:34 +0200 | [diff] [blame] | 15177 | dev_priv->display.crtc_compute_clock = |
| 15178 | haswell_crtc_compute_clock; |
Paulo Zanoni | 4f771f1 | 2012-10-23 18:29:51 -0200 | [diff] [blame] | 15179 | dev_priv->display.crtc_enable = haswell_crtc_enable; |
| 15180 | dev_priv->display.crtc_disable = haswell_crtc_disable; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15181 | } else if (HAS_PCH_SPLIT(dev_priv)) { |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 15182 | dev_priv->display.get_pipe_config = ironlake_get_pipe_config; |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 15183 | dev_priv->display.get_initial_plane_config = |
| 15184 | ironlake_get_initial_plane_config; |
Ander Conselvan de Oliveira | 3fb3770 | 2014-10-29 11:32:35 +0200 | [diff] [blame] | 15185 | dev_priv->display.crtc_compute_clock = |
| 15186 | ironlake_crtc_compute_clock; |
Daniel Vetter | 76e5a89 | 2012-06-29 22:39:33 +0200 | [diff] [blame] | 15187 | dev_priv->display.crtc_enable = ironlake_crtc_enable; |
| 15188 | dev_priv->display.crtc_disable = ironlake_crtc_disable; |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 15189 | } else if (IS_CHERRYVIEW(dev_priv)) { |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 15190 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 15191 | dev_priv->display.get_initial_plane_config = |
| 15192 | i9xx_get_initial_plane_config; |
Ander Conselvan de Oliveira | 65b3d6a | 2016-03-21 18:00:13 +0200 | [diff] [blame] | 15193 | dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock; |
| 15194 | dev_priv->display.crtc_enable = valleyview_crtc_enable; |
| 15195 | dev_priv->display.crtc_disable = i9xx_crtc_disable; |
| 15196 | } else if (IS_VALLEYVIEW(dev_priv)) { |
| 15197 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
| 15198 | dev_priv->display.get_initial_plane_config = |
| 15199 | i9xx_get_initial_plane_config; |
| 15200 | dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock; |
Jesse Barnes | 89b667f | 2013-04-18 14:51:36 -0700 | [diff] [blame] | 15201 | dev_priv->display.crtc_enable = valleyview_crtc_enable; |
| 15202 | dev_priv->display.crtc_disable = i9xx_crtc_disable; |
Ander Conselvan de Oliveira | 19ec669 | 2016-03-21 18:00:15 +0200 | [diff] [blame] | 15203 | } else if (IS_G4X(dev_priv)) { |
| 15204 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
| 15205 | dev_priv->display.get_initial_plane_config = |
| 15206 | i9xx_get_initial_plane_config; |
| 15207 | dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock; |
| 15208 | dev_priv->display.crtc_enable = i9xx_crtc_enable; |
| 15209 | dev_priv->display.crtc_disable = i9xx_crtc_disable; |
Ander Conselvan de Oliveira | 70e8aa2 | 2016-03-21 18:00:16 +0200 | [diff] [blame] | 15210 | } else if (IS_PINEVIEW(dev_priv)) { |
| 15211 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
| 15212 | dev_priv->display.get_initial_plane_config = |
| 15213 | i9xx_get_initial_plane_config; |
| 15214 | dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock; |
| 15215 | dev_priv->display.crtc_enable = i9xx_crtc_enable; |
| 15216 | dev_priv->display.crtc_disable = i9xx_crtc_disable; |
Ander Conselvan de Oliveira | 81c97f5 | 2016-03-22 15:35:23 +0200 | [diff] [blame] | 15217 | } else if (!IS_GEN2(dev_priv)) { |
Daniel Vetter | 0e8ffe1 | 2013-03-28 10:42:00 +0100 | [diff] [blame] | 15218 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
Damien Lespiau | 5724dbd | 2015-01-20 12:51:52 +0000 | [diff] [blame] | 15219 | dev_priv->display.get_initial_plane_config = |
| 15220 | i9xx_get_initial_plane_config; |
Ander Conselvan de Oliveira | d6dfee7 | 2014-10-29 11:32:36 +0200 | [diff] [blame] | 15221 | dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock; |
Daniel Vetter | 76e5a89 | 2012-06-29 22:39:33 +0200 | [diff] [blame] | 15222 | dev_priv->display.crtc_enable = i9xx_crtc_enable; |
| 15223 | dev_priv->display.crtc_disable = i9xx_crtc_disable; |
Ander Conselvan de Oliveira | 81c97f5 | 2016-03-22 15:35:23 +0200 | [diff] [blame] | 15224 | } else { |
| 15225 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
| 15226 | dev_priv->display.get_initial_plane_config = |
| 15227 | i9xx_get_initial_plane_config; |
| 15228 | dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock; |
| 15229 | dev_priv->display.crtc_enable = i9xx_crtc_enable; |
| 15230 | dev_priv->display.crtc_disable = i9xx_crtc_disable; |
Eric Anholt | f564048e | 2011-03-30 13:01:02 -0700 | [diff] [blame] | 15231 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15232 | |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15233 | /* Returns the core display clock speed */ |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15234 | if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 15235 | dev_priv->display.get_display_clock_speed = |
| 15236 | skylake_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15237 | else if (IS_BROXTON(dev_priv)) |
Bob Paauwe | acd3f3d | 2015-06-23 14:14:26 -0700 | [diff] [blame] | 15238 | dev_priv->display.get_display_clock_speed = |
| 15239 | broxton_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15240 | else if (IS_BROADWELL(dev_priv)) |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 15241 | dev_priv->display.get_display_clock_speed = |
| 15242 | broadwell_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15243 | else if (IS_HASWELL(dev_priv)) |
Ville Syrjälä | 1652d19 | 2015-03-31 14:12:01 +0300 | [diff] [blame] | 15244 | dev_priv->display.get_display_clock_speed = |
| 15245 | haswell_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15246 | else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Jesse Barnes | 25eb05fc | 2012-03-28 13:39:23 -0700 | [diff] [blame] | 15247 | dev_priv->display.get_display_clock_speed = |
| 15248 | valleyview_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15249 | else if (IS_GEN5(dev_priv)) |
Ville Syrjälä | b37a643 | 2015-03-31 14:11:54 +0300 | [diff] [blame] | 15250 | dev_priv->display.get_display_clock_speed = |
| 15251 | ilk_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15252 | else if (IS_I945G(dev_priv) || IS_BROADWATER(dev_priv) || |
| 15253 | IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15254 | dev_priv->display.get_display_clock_speed = |
| 15255 | i945_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15256 | else if (IS_GM45(dev_priv)) |
Ville Syrjälä | 34edce2 | 2015-05-22 11:22:33 +0300 | [diff] [blame] | 15257 | dev_priv->display.get_display_clock_speed = |
| 15258 | gm45_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15259 | else if (IS_CRESTLINE(dev_priv)) |
Ville Syrjälä | 34edce2 | 2015-05-22 11:22:33 +0300 | [diff] [blame] | 15260 | dev_priv->display.get_display_clock_speed = |
| 15261 | i965gm_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15262 | else if (IS_PINEVIEW(dev_priv)) |
Ville Syrjälä | 34edce2 | 2015-05-22 11:22:33 +0300 | [diff] [blame] | 15263 | dev_priv->display.get_display_clock_speed = |
| 15264 | pnv_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15265 | else if (IS_G33(dev_priv) || IS_G4X(dev_priv)) |
Ville Syrjälä | 34edce2 | 2015-05-22 11:22:33 +0300 | [diff] [blame] | 15266 | dev_priv->display.get_display_clock_speed = |
| 15267 | g33_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15268 | else if (IS_I915G(dev_priv)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15269 | dev_priv->display.get_display_clock_speed = |
| 15270 | i915_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15271 | else if (IS_I945GM(dev_priv) || IS_845G(dev_priv)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15272 | dev_priv->display.get_display_clock_speed = |
| 15273 | i9xx_misc_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15274 | else if (IS_I915GM(dev_priv)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15275 | dev_priv->display.get_display_clock_speed = |
| 15276 | i915gm_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15277 | else if (IS_I865G(dev_priv)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15278 | dev_priv->display.get_display_clock_speed = |
| 15279 | i865_get_display_clock_speed; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15280 | else if (IS_I85X(dev_priv)) |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15281 | dev_priv->display.get_display_clock_speed = |
Ville Syrjälä | 1b1d271 | 2015-05-22 11:22:31 +0300 | [diff] [blame] | 15282 | i85x_get_display_clock_speed; |
Ville Syrjälä | 623e01e | 2015-05-22 11:22:34 +0300 | [diff] [blame] | 15283 | else { /* 830 */ |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15284 | WARN(!IS_I830(dev_priv), "Unknown platform. Assuming 133 MHz CDCLK\n"); |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15285 | dev_priv->display.get_display_clock_speed = |
| 15286 | i830_get_display_clock_speed; |
Ville Syrjälä | 623e01e | 2015-05-22 11:22:34 +0300 | [diff] [blame] | 15287 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15288 | |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15289 | if (IS_GEN5(dev_priv)) { |
Sonika Jindal | 3bb11b5 | 2014-08-11 09:06:39 +0530 | [diff] [blame] | 15290 | dev_priv->display.fdi_link_train = ironlake_fdi_link_train; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15291 | } else if (IS_GEN6(dev_priv)) { |
Sonika Jindal | 3bb11b5 | 2014-08-11 09:06:39 +0530 | [diff] [blame] | 15292 | dev_priv->display.fdi_link_train = gen6_fdi_link_train; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15293 | } else if (IS_IVYBRIDGE(dev_priv)) { |
Sonika Jindal | 3bb11b5 | 2014-08-11 09:06:39 +0530 | [diff] [blame] | 15294 | /* FIXME: detect B0+ stepping and use auto training */ |
| 15295 | dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15296 | } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
Sonika Jindal | 3bb11b5 | 2014-08-11 09:06:39 +0530 | [diff] [blame] | 15297 | dev_priv->display.fdi_link_train = hsw_fdi_link_train; |
Ville Syrjälä | 445e780 | 2016-05-11 22:44:42 +0300 | [diff] [blame] | 15298 | } |
| 15299 | |
| 15300 | if (IS_BROADWELL(dev_priv)) { |
| 15301 | dev_priv->display.modeset_commit_cdclk = |
| 15302 | broadwell_modeset_commit_cdclk; |
| 15303 | dev_priv->display.modeset_calc_cdclk = |
| 15304 | broadwell_modeset_calc_cdclk; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15305 | } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 15306 | dev_priv->display.modeset_commit_cdclk = |
| 15307 | valleyview_modeset_commit_cdclk; |
| 15308 | dev_priv->display.modeset_calc_cdclk = |
| 15309 | valleyview_modeset_calc_cdclk; |
Imre Deak | 8821294 | 2016-03-16 13:38:53 +0200 | [diff] [blame] | 15310 | } else if (IS_BROXTON(dev_priv)) { |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 15311 | dev_priv->display.modeset_commit_cdclk = |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 15312 | bxt_modeset_commit_cdclk; |
Maarten Lankhorst | 27c329e | 2015-06-15 12:33:56 +0200 | [diff] [blame] | 15313 | dev_priv->display.modeset_calc_cdclk = |
Imre Deak | 324513c | 2016-06-13 16:44:36 +0300 | [diff] [blame] | 15314 | bxt_modeset_calc_cdclk; |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 15315 | } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) { |
| 15316 | dev_priv->display.modeset_commit_cdclk = |
| 15317 | skl_modeset_commit_cdclk; |
| 15318 | dev_priv->display.modeset_calc_cdclk = |
| 15319 | skl_modeset_calc_cdclk; |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15320 | } |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 15321 | |
| 15322 | switch (INTEL_INFO(dev_priv)->gen) { |
| 15323 | case 2: |
| 15324 | dev_priv->display.queue_flip = intel_gen2_queue_flip; |
| 15325 | break; |
| 15326 | |
| 15327 | case 3: |
| 15328 | dev_priv->display.queue_flip = intel_gen3_queue_flip; |
| 15329 | break; |
| 15330 | |
| 15331 | case 4: |
| 15332 | case 5: |
| 15333 | dev_priv->display.queue_flip = intel_gen4_queue_flip; |
| 15334 | break; |
| 15335 | |
| 15336 | case 6: |
| 15337 | dev_priv->display.queue_flip = intel_gen6_queue_flip; |
| 15338 | break; |
| 15339 | case 7: |
| 15340 | case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */ |
| 15341 | dev_priv->display.queue_flip = intel_gen7_queue_flip; |
| 15342 | break; |
| 15343 | case 9: |
| 15344 | /* Drop through - unsupported since execlist only. */ |
| 15345 | default: |
| 15346 | /* Default just returns -ENODEV to indicate unsupported */ |
| 15347 | dev_priv->display.queue_flip = intel_default_queue_flip; |
| 15348 | } |
Jesse Barnes | e70236a | 2009-09-21 10:42:27 -0700 | [diff] [blame] | 15349 | } |
| 15350 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15351 | /* |
| 15352 | * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend, |
| 15353 | * resume, or other times. This quirk makes sure that's the case for |
| 15354 | * affected systems. |
| 15355 | */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 15356 | static void quirk_pipea_force(struct drm_device *dev) |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15357 | { |
| 15358 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 15359 | |
| 15360 | dev_priv->quirks |= QUIRK_PIPEA_FORCE; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 15361 | DRM_INFO("applying pipe a force quirk\n"); |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15362 | } |
| 15363 | |
Ville Syrjälä | b6b5d04 | 2014-08-15 01:22:07 +0300 | [diff] [blame] | 15364 | static void quirk_pipeb_force(struct drm_device *dev) |
| 15365 | { |
| 15366 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 15367 | |
| 15368 | dev_priv->quirks |= QUIRK_PIPEB_FORCE; |
| 15369 | DRM_INFO("applying pipe b force quirk\n"); |
| 15370 | } |
| 15371 | |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 15372 | /* |
| 15373 | * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason |
| 15374 | */ |
| 15375 | static void quirk_ssc_force_disable(struct drm_device *dev) |
| 15376 | { |
| 15377 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 15378 | dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 15379 | DRM_INFO("applying lvds SSC disable quirk\n"); |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 15380 | } |
| 15381 | |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 15382 | /* |
Carsten Emde | 5a15ab5 | 2012-03-15 15:56:27 +0100 | [diff] [blame] | 15383 | * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight |
| 15384 | * brightness value |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 15385 | */ |
| 15386 | static void quirk_invert_brightness(struct drm_device *dev) |
| 15387 | { |
| 15388 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 15389 | dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS; |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 15390 | DRM_INFO("applying inverted panel brightness quirk\n"); |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15391 | } |
| 15392 | |
Scot Doyle | 9c72cc6 | 2014-07-03 23:27:50 +0000 | [diff] [blame] | 15393 | /* Some VBT's incorrectly indicate no backlight is present */ |
| 15394 | static void quirk_backlight_present(struct drm_device *dev) |
| 15395 | { |
| 15396 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 15397 | dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT; |
| 15398 | DRM_INFO("applying backlight present quirk\n"); |
| 15399 | } |
| 15400 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15401 | struct intel_quirk { |
| 15402 | int device; |
| 15403 | int subsystem_vendor; |
| 15404 | int subsystem_device; |
| 15405 | void (*hook)(struct drm_device *dev); |
| 15406 | }; |
| 15407 | |
Egbert Eich | 5f85f17 | 2012-10-14 15:46:38 +0200 | [diff] [blame] | 15408 | /* For systems that don't have a meaningful PCI subdevice/subvendor ID */ |
| 15409 | struct intel_dmi_quirk { |
| 15410 | void (*hook)(struct drm_device *dev); |
| 15411 | const struct dmi_system_id (*dmi_id_list)[]; |
| 15412 | }; |
| 15413 | |
| 15414 | static int intel_dmi_reverse_brightness(const struct dmi_system_id *id) |
| 15415 | { |
| 15416 | DRM_INFO("Backlight polarity reversed on %s\n", id->ident); |
| 15417 | return 1; |
| 15418 | } |
| 15419 | |
| 15420 | static const struct intel_dmi_quirk intel_dmi_quirks[] = { |
| 15421 | { |
| 15422 | .dmi_id_list = &(const struct dmi_system_id[]) { |
| 15423 | { |
| 15424 | .callback = intel_dmi_reverse_brightness, |
| 15425 | .ident = "NCR Corporation", |
| 15426 | .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"), |
| 15427 | DMI_MATCH(DMI_PRODUCT_NAME, ""), |
| 15428 | }, |
| 15429 | }, |
| 15430 | { } /* terminating entry */ |
| 15431 | }, |
| 15432 | .hook = quirk_invert_brightness, |
| 15433 | }, |
| 15434 | }; |
| 15435 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 15436 | static struct intel_quirk intel_quirks[] = { |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15437 | /* Toshiba Protege R-205, S-209 needs pipe A force quirk */ |
| 15438 | { 0x2592, 0x1179, 0x0001, quirk_pipea_force }, |
| 15439 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15440 | /* ThinkPad T60 needs pipe A force quirk (bug #16494) */ |
| 15441 | { 0x2782, 0x17aa, 0x201a, quirk_pipea_force }, |
| 15442 | |
Ville Syrjälä | 5f080c0 | 2014-08-15 01:22:06 +0300 | [diff] [blame] | 15443 | /* 830 needs to leave pipe A & dpll A up */ |
| 15444 | { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
| 15445 | |
Ville Syrjälä | b6b5d04 | 2014-08-15 01:22:07 +0300 | [diff] [blame] | 15446 | /* 830 needs to leave pipe B & dpll B up */ |
| 15447 | { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force }, |
| 15448 | |
Keith Packard | 435793d | 2011-07-12 14:56:22 -0700 | [diff] [blame] | 15449 | /* Lenovo U160 cannot use SSC on LVDS */ |
| 15450 | { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable }, |
Michel Alexandre Salim | 070d329 | 2011-07-28 18:52:06 +0200 | [diff] [blame] | 15451 | |
| 15452 | /* Sony Vaio Y cannot use SSC on LVDS */ |
| 15453 | { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable }, |
Carsten Emde | 5a15ab5 | 2012-03-15 15:56:27 +0100 | [diff] [blame] | 15454 | |
Alexander van Heukelum | be505f6 | 2013-12-28 21:00:39 +0100 | [diff] [blame] | 15455 | /* Acer Aspire 5734Z must invert backlight brightness */ |
| 15456 | { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness }, |
| 15457 | |
| 15458 | /* Acer/eMachines G725 */ |
| 15459 | { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness }, |
| 15460 | |
| 15461 | /* Acer/eMachines e725 */ |
| 15462 | { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness }, |
| 15463 | |
| 15464 | /* Acer/Packard Bell NCL20 */ |
| 15465 | { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness }, |
| 15466 | |
| 15467 | /* Acer Aspire 4736Z */ |
| 15468 | { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness }, |
Jani Nikula | 0f540c3 | 2014-01-13 17:30:34 +0200 | [diff] [blame] | 15469 | |
| 15470 | /* Acer Aspire 5336 */ |
| 15471 | { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness }, |
Scot Doyle | 2e93a1a | 2014-07-03 23:27:51 +0000 | [diff] [blame] | 15472 | |
| 15473 | /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */ |
| 15474 | { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present }, |
Scot Doyle | d4967d8 | 2014-07-03 23:27:52 +0000 | [diff] [blame] | 15475 | |
Scot Doyle | dfb3d47b | 2014-08-21 16:08:02 +0000 | [diff] [blame] | 15476 | /* Acer C720 Chromebook (Core i3 4005U) */ |
| 15477 | { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present }, |
| 15478 | |
jens stein | b2a9601 | 2014-10-28 20:25:53 +0100 | [diff] [blame] | 15479 | /* Apple Macbook 2,1 (Core 2 T7400) */ |
| 15480 | { 0x27a2, 0x8086, 0x7270, quirk_backlight_present }, |
| 15481 | |
Jani Nikula | 1b9448b0 | 2015-11-05 11:49:59 +0200 | [diff] [blame] | 15482 | /* Apple Macbook 4,1 */ |
| 15483 | { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present }, |
| 15484 | |
Scot Doyle | d4967d8 | 2014-07-03 23:27:52 +0000 | [diff] [blame] | 15485 | /* Toshiba CB35 Chromebook (Celeron 2955U) */ |
| 15486 | { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present }, |
Scot Doyle | 724cb06 | 2014-07-11 22:16:30 +0000 | [diff] [blame] | 15487 | |
| 15488 | /* HP Chromebook 14 (Celeron 2955U) */ |
| 15489 | { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present }, |
Jani Nikula | cf6f0af | 2015-02-19 10:53:39 +0200 | [diff] [blame] | 15490 | |
| 15491 | /* Dell Chromebook 11 */ |
| 15492 | { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present }, |
Jani Nikula | 9be64ee | 2015-10-30 14:50:24 +0200 | [diff] [blame] | 15493 | |
| 15494 | /* Dell Chromebook 11 (2015 version) */ |
| 15495 | { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present }, |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15496 | }; |
| 15497 | |
| 15498 | static void intel_init_quirks(struct drm_device *dev) |
| 15499 | { |
| 15500 | struct pci_dev *d = dev->pdev; |
| 15501 | int i; |
| 15502 | |
| 15503 | for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) { |
| 15504 | struct intel_quirk *q = &intel_quirks[i]; |
| 15505 | |
| 15506 | if (d->device == q->device && |
| 15507 | (d->subsystem_vendor == q->subsystem_vendor || |
| 15508 | q->subsystem_vendor == PCI_ANY_ID) && |
| 15509 | (d->subsystem_device == q->subsystem_device || |
| 15510 | q->subsystem_device == PCI_ANY_ID)) |
| 15511 | q->hook(dev); |
| 15512 | } |
Egbert Eich | 5f85f17 | 2012-10-14 15:46:38 +0200 | [diff] [blame] | 15513 | for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) { |
| 15514 | if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0) |
| 15515 | intel_dmi_quirks[i].hook(dev); |
| 15516 | } |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15517 | } |
| 15518 | |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 15519 | /* Disable the VGA plane that we never use */ |
| 15520 | static void i915_disable_vga(struct drm_device *dev) |
| 15521 | { |
| 15522 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 15523 | u8 sr1; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 15524 | i915_reg_t vga_reg = i915_vgacntrl_reg(dev); |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 15525 | |
Ville Syrjälä | 2b37c61 | 2014-01-22 21:32:38 +0200 | [diff] [blame] | 15526 | /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */ |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 15527 | vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO); |
Jesse Barnes | 3fdcf43 | 2012-04-06 11:46:27 -0700 | [diff] [blame] | 15528 | outb(SR01, VGA_SR_INDEX); |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 15529 | sr1 = inb(VGA_SR_DATA); |
| 15530 | outb(sr1 | 1<<5, VGA_SR_DATA); |
| 15531 | vga_put(dev->pdev, VGA_RSRC_LEGACY_IO); |
| 15532 | udelay(300); |
| 15533 | |
Ville Syrjälä | 01f5a62 | 2014-12-16 18:38:37 +0200 | [diff] [blame] | 15534 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 15535 | POSTING_READ(vga_reg); |
| 15536 | } |
| 15537 | |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 15538 | void intel_modeset_init_hw(struct drm_device *dev) |
| 15539 | { |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 15540 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 15541 | |
Ville Syrjälä | b628305 | 2015-06-03 15:45:07 +0300 | [diff] [blame] | 15542 | intel_update_cdclk(dev); |
Maarten Lankhorst | 1a617b7 | 2015-12-03 14:31:06 +0100 | [diff] [blame] | 15543 | |
| 15544 | dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq; |
| 15545 | |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 15546 | intel_init_clock_gating(dev); |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 15547 | intel_enable_gt_powersave(dev_priv); |
Daniel Vetter | f817586 | 2012-04-10 15:50:11 +0200 | [diff] [blame] | 15548 | } |
| 15549 | |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15550 | /* |
| 15551 | * Calculate what we think the watermarks should be for the state we've read |
| 15552 | * out of the hardware and then immediately program those watermarks so that |
| 15553 | * we ensure the hardware settings match our internal state. |
| 15554 | * |
| 15555 | * We can calculate what we think WM's should be by creating a duplicate of the |
| 15556 | * current state (which was constructed during hardware readout) and running it |
| 15557 | * through the atomic check code to calculate new watermark values in the |
| 15558 | * state object. |
| 15559 | */ |
| 15560 | static void sanitize_watermarks(struct drm_device *dev) |
| 15561 | { |
| 15562 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 15563 | struct drm_atomic_state *state; |
| 15564 | struct drm_crtc *crtc; |
| 15565 | struct drm_crtc_state *cstate; |
| 15566 | struct drm_modeset_acquire_ctx ctx; |
| 15567 | int ret; |
| 15568 | int i; |
| 15569 | |
| 15570 | /* Only supported on platforms that use atomic watermark design */ |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 15571 | if (!dev_priv->display.optimize_watermarks) |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15572 | return; |
| 15573 | |
| 15574 | /* |
| 15575 | * We need to hold connection_mutex before calling duplicate_state so |
| 15576 | * that the connector loop is protected. |
| 15577 | */ |
| 15578 | drm_modeset_acquire_init(&ctx, 0); |
| 15579 | retry: |
Matt Roper | 0cd1262 | 2016-01-12 07:13:37 -0800 | [diff] [blame] | 15580 | ret = drm_modeset_lock_all_ctx(dev, &ctx); |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15581 | if (ret == -EDEADLK) { |
| 15582 | drm_modeset_backoff(&ctx); |
| 15583 | goto retry; |
| 15584 | } else if (WARN_ON(ret)) { |
Matt Roper | 0cd1262 | 2016-01-12 07:13:37 -0800 | [diff] [blame] | 15585 | goto fail; |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15586 | } |
| 15587 | |
| 15588 | state = drm_atomic_helper_duplicate_state(dev, &ctx); |
| 15589 | if (WARN_ON(IS_ERR(state))) |
Matt Roper | 0cd1262 | 2016-01-12 07:13:37 -0800 | [diff] [blame] | 15590 | goto fail; |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15591 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 15592 | /* |
| 15593 | * Hardware readout is the only time we don't want to calculate |
| 15594 | * intermediate watermarks (since we don't trust the current |
| 15595 | * watermarks). |
| 15596 | */ |
| 15597 | to_intel_atomic_state(state)->skip_intermediate_wm = true; |
| 15598 | |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15599 | ret = intel_atomic_check(dev, state); |
| 15600 | if (ret) { |
| 15601 | /* |
| 15602 | * If we fail here, it means that the hardware appears to be |
| 15603 | * programmed in a way that shouldn't be possible, given our |
| 15604 | * understanding of watermark requirements. This might mean a |
| 15605 | * mistake in the hardware readout code or a mistake in the |
| 15606 | * watermark calculations for a given platform. Raise a WARN |
| 15607 | * so that this is noticeable. |
| 15608 | * |
| 15609 | * If this actually happens, we'll have to just leave the |
| 15610 | * BIOS-programmed watermarks untouched and hope for the best. |
| 15611 | */ |
| 15612 | WARN(true, "Could not determine valid watermarks for inherited state\n"); |
Matt Roper | 0cd1262 | 2016-01-12 07:13:37 -0800 | [diff] [blame] | 15613 | goto fail; |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15614 | } |
| 15615 | |
| 15616 | /* Write calculated watermark values back */ |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15617 | for_each_crtc_in_state(state, crtc, cstate, i) { |
| 15618 | struct intel_crtc_state *cs = to_intel_crtc_state(cstate); |
| 15619 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 15620 | cs->wm.need_postvbl_update = true; |
| 15621 | dev_priv->display.optimize_watermarks(cs); |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15622 | } |
| 15623 | |
| 15624 | drm_atomic_state_free(state); |
Matt Roper | 0cd1262 | 2016-01-12 07:13:37 -0800 | [diff] [blame] | 15625 | fail: |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15626 | drm_modeset_drop_locks(&ctx); |
| 15627 | drm_modeset_acquire_fini(&ctx); |
| 15628 | } |
| 15629 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15630 | void intel_modeset_init(struct drm_device *dev) |
| 15631 | { |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 15632 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 15633 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Damien Lespiau | 1fe4778 | 2014-03-03 17:31:47 +0000 | [diff] [blame] | 15634 | int sprite, ret; |
Damien Lespiau | 8cc87b7 | 2014-03-03 17:31:44 +0000 | [diff] [blame] | 15635 | enum pipe pipe; |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 15636 | struct intel_crtc *crtc; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15637 | |
| 15638 | drm_mode_config_init(dev); |
| 15639 | |
| 15640 | dev->mode_config.min_width = 0; |
| 15641 | dev->mode_config.min_height = 0; |
| 15642 | |
Dave Airlie | 019d96c | 2011-09-29 16:20:42 +0100 | [diff] [blame] | 15643 | dev->mode_config.preferred_depth = 24; |
| 15644 | dev->mode_config.prefer_shadow = 1; |
| 15645 | |
Tvrtko Ursulin | 25bab38 | 2015-02-10 17:16:16 +0000 | [diff] [blame] | 15646 | dev->mode_config.allow_fb_modifiers = true; |
| 15647 | |
Laurent Pinchart | e6ecefa | 2012-05-17 13:27:23 +0200 | [diff] [blame] | 15648 | dev->mode_config.funcs = &intel_mode_funcs; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15649 | |
Jesse Barnes | b690e96 | 2010-07-19 13:53:12 -0700 | [diff] [blame] | 15650 | intel_init_quirks(dev); |
| 15651 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 15652 | intel_init_pm(dev); |
| 15653 | |
Ben Widawsky | e3c7475 | 2013-04-05 13:12:39 -0700 | [diff] [blame] | 15654 | if (INTEL_INFO(dev)->num_pipes == 0) |
| 15655 | return; |
| 15656 | |
Lukas Wunner | 69f92f6 | 2015-07-15 13:57:35 +0200 | [diff] [blame] | 15657 | /* |
| 15658 | * There may be no VBT; and if the BIOS enabled SSC we can |
| 15659 | * just keep using it to avoid unnecessary flicker. Whereas if the |
| 15660 | * BIOS isn't using it, don't assume it will work even if the VBT |
| 15661 | * indicates as much. |
| 15662 | */ |
| 15663 | if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) { |
| 15664 | bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) & |
| 15665 | DREF_SSC1_ENABLE); |
| 15666 | |
| 15667 | if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) { |
| 15668 | DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n", |
| 15669 | bios_lvds_use_ssc ? "en" : "dis", |
| 15670 | dev_priv->vbt.lvds_use_ssc ? "en" : "dis"); |
| 15671 | dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc; |
| 15672 | } |
| 15673 | } |
| 15674 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 15675 | if (IS_GEN2(dev)) { |
| 15676 | dev->mode_config.max_width = 2048; |
| 15677 | dev->mode_config.max_height = 2048; |
| 15678 | } else if (IS_GEN3(dev)) { |
Keith Packard | 5e4d6fa | 2009-07-12 23:53:17 -0700 | [diff] [blame] | 15679 | dev->mode_config.max_width = 4096; |
| 15680 | dev->mode_config.max_height = 4096; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15681 | } else { |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 15682 | dev->mode_config.max_width = 8192; |
| 15683 | dev->mode_config.max_height = 8192; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15684 | } |
Damien Lespiau | 068be56 | 2014-03-28 14:17:49 +0000 | [diff] [blame] | 15685 | |
Ville Syrjälä | dc41c15 | 2014-08-13 11:57:05 +0300 | [diff] [blame] | 15686 | if (IS_845G(dev) || IS_I865G(dev)) { |
| 15687 | dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512; |
| 15688 | dev->mode_config.cursor_height = 1023; |
| 15689 | } else if (IS_GEN2(dev)) { |
Damien Lespiau | 068be56 | 2014-03-28 14:17:49 +0000 | [diff] [blame] | 15690 | dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH; |
| 15691 | dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT; |
| 15692 | } else { |
| 15693 | dev->mode_config.cursor_width = MAX_CURSOR_WIDTH; |
| 15694 | dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT; |
| 15695 | } |
| 15696 | |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 15697 | dev->mode_config.fb_base = ggtt->mappable_base; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15698 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 15699 | DRM_DEBUG_KMS("%d display pipe%s available.\n", |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 15700 | INTEL_INFO(dev)->num_pipes, |
| 15701 | INTEL_INFO(dev)->num_pipes > 1 ? "s" : ""); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15702 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 15703 | for_each_pipe(dev_priv, pipe) { |
Damien Lespiau | 8cc87b7 | 2014-03-03 17:31:44 +0000 | [diff] [blame] | 15704 | intel_crtc_init(dev, pipe); |
Damien Lespiau | 3bdcfc0 | 2015-02-28 14:54:09 +0000 | [diff] [blame] | 15705 | for_each_sprite(dev_priv, pipe, sprite) { |
Damien Lespiau | 1fe4778 | 2014-03-03 17:31:47 +0000 | [diff] [blame] | 15706 | ret = intel_plane_init(dev, pipe, sprite); |
Jesse Barnes | 7f1f385 | 2013-04-02 11:22:20 -0700 | [diff] [blame] | 15707 | if (ret) |
Ville Syrjälä | 06da8da | 2013-04-17 17:48:51 +0300 | [diff] [blame] | 15708 | DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n", |
Damien Lespiau | 1fe4778 | 2014-03-03 17:31:47 +0000 | [diff] [blame] | 15709 | pipe_name(pipe), sprite_name(pipe, sprite), ret); |
Jesse Barnes | 7f1f385 | 2013-04-02 11:22:20 -0700 | [diff] [blame] | 15710 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15711 | } |
| 15712 | |
Ville Syrjälä | bfa7df0 | 2015-09-24 23:29:18 +0300 | [diff] [blame] | 15713 | intel_update_czclk(dev_priv); |
| 15714 | intel_update_cdclk(dev); |
| 15715 | |
Daniel Vetter | e72f9fb | 2013-06-05 13:34:06 +0200 | [diff] [blame] | 15716 | intel_shared_dpll_init(dev); |
Jesse Barnes | ee7b9f9 | 2012-04-20 17:11:53 +0100 | [diff] [blame] | 15717 | |
Ville Syrjälä | b204535 | 2016-05-13 23:41:27 +0300 | [diff] [blame] | 15718 | if (dev_priv->max_cdclk_freq == 0) |
| 15719 | intel_update_max_cdclk(dev); |
| 15720 | |
Jesse Barnes | 9cce37f | 2010-08-13 15:11:26 -0700 | [diff] [blame] | 15721 | /* Just disable it once at startup */ |
| 15722 | i915_disable_vga(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 15723 | intel_setup_outputs(dev); |
Chris Wilson | 11be49e | 2012-11-15 11:32:20 +0000 | [diff] [blame] | 15724 | |
Daniel Vetter | 6e9f798 | 2014-05-29 23:54:47 +0200 | [diff] [blame] | 15725 | drm_modeset_lock_all(dev); |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 15726 | intel_modeset_setup_hw_state(dev); |
Daniel Vetter | 6e9f798 | 2014-05-29 23:54:47 +0200 | [diff] [blame] | 15727 | drm_modeset_unlock_all(dev); |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 15728 | |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 15729 | for_each_intel_crtc(dev, crtc) { |
Maarten Lankhorst | eeebeac | 2015-07-14 12:33:29 +0200 | [diff] [blame] | 15730 | struct intel_initial_plane_config plane_config = {}; |
| 15731 | |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 15732 | if (!crtc->active) |
| 15733 | continue; |
| 15734 | |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 15735 | /* |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 15736 | * Note that reserving the BIOS fb up front prevents us |
| 15737 | * from stuffing other stolen allocations like the ring |
| 15738 | * on top. This prevents some ugliness at boot time, and |
| 15739 | * can even allow for smooth boot transitions if the BIOS |
| 15740 | * fb is large enough for the active pipe configuration. |
| 15741 | */ |
Maarten Lankhorst | eeebeac | 2015-07-14 12:33:29 +0200 | [diff] [blame] | 15742 | dev_priv->display.get_initial_plane_config(crtc, |
| 15743 | &plane_config); |
| 15744 | |
| 15745 | /* |
| 15746 | * If the fb is shared between multiple heads, we'll |
| 15747 | * just get the first one. |
| 15748 | */ |
| 15749 | intel_find_initial_plane_obj(crtc, &plane_config); |
Jesse Barnes | 46f297f | 2014-03-07 08:57:48 -0800 | [diff] [blame] | 15750 | } |
Matt Roper | d93c037 | 2015-12-03 11:37:41 -0800 | [diff] [blame] | 15751 | |
| 15752 | /* |
| 15753 | * Make sure hardware watermarks really match the state we read out. |
| 15754 | * Note that we need to do this after reconstructing the BIOS fb's |
| 15755 | * since the watermark calculation done here will use pstate->fb. |
| 15756 | */ |
| 15757 | sanitize_watermarks(dev); |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 15758 | } |
Jesse Barnes | d5bb081 | 2011-01-05 12:01:26 -0800 | [diff] [blame] | 15759 | |
Daniel Vetter | 7fad798 | 2012-07-04 17:51:47 +0200 | [diff] [blame] | 15760 | static void intel_enable_pipe_a(struct drm_device *dev) |
| 15761 | { |
| 15762 | struct intel_connector *connector; |
| 15763 | struct drm_connector *crt = NULL; |
| 15764 | struct intel_load_detect_pipe load_detect_temp; |
Ville Syrjälä | 208bf9f | 2014-08-11 13:15:35 +0300 | [diff] [blame] | 15765 | struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx; |
Daniel Vetter | 7fad798 | 2012-07-04 17:51:47 +0200 | [diff] [blame] | 15766 | |
| 15767 | /* We can't just switch on the pipe A, we need to set things up with a |
| 15768 | * proper mode and output configuration. As a gross hack, enable pipe A |
| 15769 | * by enabling the load detect pipe once. */ |
Ander Conselvan de Oliveira | 3a3371f | 2015-03-03 15:21:56 +0200 | [diff] [blame] | 15770 | for_each_intel_connector(dev, connector) { |
Daniel Vetter | 7fad798 | 2012-07-04 17:51:47 +0200 | [diff] [blame] | 15771 | if (connector->encoder->type == INTEL_OUTPUT_ANALOG) { |
| 15772 | crt = &connector->base; |
| 15773 | break; |
| 15774 | } |
| 15775 | } |
| 15776 | |
| 15777 | if (!crt) |
| 15778 | return; |
| 15779 | |
Ville Syrjälä | 208bf9f | 2014-08-11 13:15:35 +0300 | [diff] [blame] | 15780 | if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx)) |
Ander Conselvan de Oliveira | 49172fe | 2015-03-20 16:18:02 +0200 | [diff] [blame] | 15781 | intel_release_load_detect_pipe(crt, &load_detect_temp, ctx); |
Daniel Vetter | 7fad798 | 2012-07-04 17:51:47 +0200 | [diff] [blame] | 15782 | } |
| 15783 | |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 15784 | static bool |
| 15785 | intel_check_plane_mapping(struct intel_crtc *crtc) |
| 15786 | { |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 15787 | struct drm_device *dev = crtc->base.dev; |
| 15788 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 15789 | u32 val; |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 15790 | |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 15791 | if (INTEL_INFO(dev)->num_pipes == 1) |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 15792 | return true; |
| 15793 | |
Ville Syrjälä | 649636e | 2015-09-22 19:50:01 +0300 | [diff] [blame] | 15794 | val = I915_READ(DSPCNTR(!crtc->plane)); |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 15795 | |
| 15796 | if ((val & DISPLAY_PLANE_ENABLE) && |
| 15797 | (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe)) |
| 15798 | return false; |
| 15799 | |
| 15800 | return true; |
| 15801 | } |
| 15802 | |
Ville Syrjälä | 02e93c3 | 2015-08-26 19:39:19 +0300 | [diff] [blame] | 15803 | static bool intel_crtc_has_encoders(struct intel_crtc *crtc) |
| 15804 | { |
| 15805 | struct drm_device *dev = crtc->base.dev; |
| 15806 | struct intel_encoder *encoder; |
| 15807 | |
| 15808 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
| 15809 | return true; |
| 15810 | |
| 15811 | return false; |
| 15812 | } |
| 15813 | |
Ville Syrjälä | dd75619 | 2016-02-17 21:28:45 +0200 | [diff] [blame] | 15814 | static bool intel_encoder_has_connectors(struct intel_encoder *encoder) |
| 15815 | { |
| 15816 | struct drm_device *dev = encoder->base.dev; |
| 15817 | struct intel_connector *connector; |
| 15818 | |
| 15819 | for_each_connector_on_encoder(dev, &encoder->base, connector) |
| 15820 | return true; |
| 15821 | |
| 15822 | return false; |
| 15823 | } |
| 15824 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15825 | static void intel_sanitize_crtc(struct intel_crtc *crtc) |
| 15826 | { |
| 15827 | struct drm_device *dev = crtc->base.dev; |
| 15828 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 15829 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15830 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15831 | /* Clear any frame start delays used for debugging left by the BIOS */ |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 15832 | if (!transcoder_is_dsi(cpu_transcoder)) { |
| 15833 | i915_reg_t reg = PIPECONF(cpu_transcoder); |
| 15834 | |
| 15835 | I915_WRITE(reg, |
| 15836 | I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK); |
| 15837 | } |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15838 | |
Ville Syrjälä | d3eaf88 | 2014-05-20 17:20:05 +0300 | [diff] [blame] | 15839 | /* restore vblank interrupts to correct state */ |
Daniel Vetter | 9625604 | 2015-02-13 21:03:42 +0100 | [diff] [blame] | 15840 | drm_crtc_vblank_reset(&crtc->base); |
Ville Syrjälä | d297e10 | 2014-08-06 14:50:01 +0300 | [diff] [blame] | 15841 | if (crtc->active) { |
Ville Syrjälä | f9cd7b8 | 2015-09-10 18:59:08 +0300 | [diff] [blame] | 15842 | struct intel_plane *plane; |
| 15843 | |
Daniel Vetter | 9625604 | 2015-02-13 21:03:42 +0100 | [diff] [blame] | 15844 | drm_crtc_vblank_on(&crtc->base); |
Ville Syrjälä | f9cd7b8 | 2015-09-10 18:59:08 +0300 | [diff] [blame] | 15845 | |
| 15846 | /* Disable everything but the primary plane */ |
| 15847 | for_each_intel_plane_on_crtc(dev, crtc, plane) { |
| 15848 | if (plane->base.type == DRM_PLANE_TYPE_PRIMARY) |
| 15849 | continue; |
| 15850 | |
| 15851 | plane->disable_plane(&plane->base, &crtc->base); |
| 15852 | } |
Daniel Vetter | 9625604 | 2015-02-13 21:03:42 +0100 | [diff] [blame] | 15853 | } |
Ville Syrjälä | d3eaf88 | 2014-05-20 17:20:05 +0300 | [diff] [blame] | 15854 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15855 | /* We need to sanitize the plane -> pipe mapping first because this will |
Daniel Vetter | fa55583 | 2012-10-10 23:14:00 +0200 | [diff] [blame] | 15856 | * disable the crtc (and hence change the state) if it is wrong. Note |
| 15857 | * that gen4+ has a fixed plane -> pipe mapping. */ |
| 15858 | if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15859 | bool plane; |
| 15860 | |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 15861 | DRM_DEBUG_KMS("[CRTC:%d:%s] wrong plane connection detected!\n", |
| 15862 | crtc->base.base.id, crtc->base.name); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15863 | |
| 15864 | /* Pipe has the wrong plane attached and the plane is active. |
| 15865 | * Temporarily change the plane mapping and disable everything |
| 15866 | * ... */ |
| 15867 | plane = crtc->plane; |
Maarten Lankhorst | b70709a | 2015-04-21 17:12:53 +0300 | [diff] [blame] | 15868 | to_intel_plane_state(crtc->base.primary->state)->visible = true; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15869 | crtc->plane = !plane; |
Maarten Lankhorst | b17d48e | 2015-06-12 11:15:39 +0200 | [diff] [blame] | 15870 | intel_crtc_disable_noatomic(&crtc->base); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15871 | crtc->plane = plane; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15872 | } |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15873 | |
Daniel Vetter | 7fad798 | 2012-07-04 17:51:47 +0200 | [diff] [blame] | 15874 | if (dev_priv->quirks & QUIRK_PIPEA_FORCE && |
| 15875 | crtc->pipe == PIPE_A && !crtc->active) { |
| 15876 | /* BIOS forgot to enable pipe A, this mostly happens after |
| 15877 | * resume. Force-enable the pipe to fix this, the update_dpms |
| 15878 | * call below we restore the pipe to the right state, but leave |
| 15879 | * the required bits on. */ |
| 15880 | intel_enable_pipe_a(dev); |
| 15881 | } |
| 15882 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15883 | /* Adjust the state of the output pipe according to whether we |
| 15884 | * have active connectors/encoders. */ |
Maarten Lankhorst | 842e030 | 2016-03-02 15:48:01 +0100 | [diff] [blame] | 15885 | if (crtc->active && !intel_crtc_has_encoders(crtc)) |
Maarten Lankhorst | b17d48e | 2015-06-12 11:15:39 +0200 | [diff] [blame] | 15886 | intel_crtc_disable_noatomic(&crtc->base); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15887 | |
Ville Syrjälä | a3ed6aa | 2014-09-03 14:09:52 +0300 | [diff] [blame] | 15888 | if (crtc->active || HAS_GMCH_DISPLAY(dev)) { |
Daniel Vetter | 4cc3148 | 2014-03-24 00:01:41 +0100 | [diff] [blame] | 15889 | /* |
| 15890 | * We start out with underrun reporting disabled to avoid races. |
| 15891 | * For correct bookkeeping mark this on active crtcs. |
| 15892 | * |
Daniel Vetter | c5ab3bc | 2014-05-14 15:40:34 +0200 | [diff] [blame] | 15893 | * Also on gmch platforms we dont have any hardware bits to |
| 15894 | * disable the underrun reporting. Which means we need to start |
| 15895 | * out with underrun reporting disabled also on inactive pipes, |
| 15896 | * since otherwise we'll complain about the garbage we read when |
| 15897 | * e.g. coming up after runtime pm. |
| 15898 | * |
Daniel Vetter | 4cc3148 | 2014-03-24 00:01:41 +0100 | [diff] [blame] | 15899 | * No protection against concurrent access is required - at |
| 15900 | * worst a fifo underrun happens which also sets this to false. |
| 15901 | */ |
| 15902 | crtc->cpu_fifo_underrun_disabled = true; |
| 15903 | crtc->pch_fifo_underrun_disabled = true; |
| 15904 | } |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15905 | } |
| 15906 | |
| 15907 | static void intel_sanitize_encoder(struct intel_encoder *encoder) |
| 15908 | { |
| 15909 | struct intel_connector *connector; |
| 15910 | struct drm_device *dev = encoder->base.dev; |
| 15911 | |
| 15912 | /* We need to check both for a crtc link (meaning that the |
| 15913 | * encoder is active and trying to read from a pipe) and the |
| 15914 | * pipe itself being active. */ |
| 15915 | bool has_active_crtc = encoder->base.crtc && |
| 15916 | to_intel_crtc(encoder->base.crtc)->active; |
| 15917 | |
Ville Syrjälä | dd75619 | 2016-02-17 21:28:45 +0200 | [diff] [blame] | 15918 | if (intel_encoder_has_connectors(encoder) && !has_active_crtc) { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15919 | DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n", |
| 15920 | encoder->base.base.id, |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 15921 | encoder->base.name); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15922 | |
| 15923 | /* Connector is active, but has no active pipe. This is |
| 15924 | * fallout from our resume register restoring. Disable |
| 15925 | * the encoder manually again. */ |
| 15926 | if (encoder->base.crtc) { |
| 15927 | DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n", |
| 15928 | encoder->base.base.id, |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 15929 | encoder->base.name); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15930 | encoder->disable(encoder); |
Ville Syrjälä | a62d149 | 2014-06-28 02:04:01 +0300 | [diff] [blame] | 15931 | if (encoder->post_disable) |
| 15932 | encoder->post_disable(encoder); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15933 | } |
Egbert Eich | 7f1950f | 2014-04-25 10:56:22 +0200 | [diff] [blame] | 15934 | encoder->base.crtc = NULL; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15935 | |
| 15936 | /* Inconsistent output/port/pipe state happens presumably due to |
| 15937 | * a bug in one of the get_hw_state functions. Or someplace else |
| 15938 | * in our code, like the register restore mess on resume. Clamp |
| 15939 | * things to off as a safer default. */ |
Ander Conselvan de Oliveira | 3a3371f | 2015-03-03 15:21:56 +0200 | [diff] [blame] | 15940 | for_each_intel_connector(dev, connector) { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15941 | if (connector->encoder != encoder) |
| 15942 | continue; |
Egbert Eich | 7f1950f | 2014-04-25 10:56:22 +0200 | [diff] [blame] | 15943 | connector->base.dpms = DRM_MODE_DPMS_OFF; |
| 15944 | connector->base.encoder = NULL; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 15945 | } |
| 15946 | } |
| 15947 | /* Enabled encoders without active connectors will be fixed in |
| 15948 | * the crtc fixup. */ |
| 15949 | } |
| 15950 | |
Imre Deak | 0409875 | 2014-02-18 00:02:16 +0200 | [diff] [blame] | 15951 | void i915_redisable_vga_power_on(struct drm_device *dev) |
Krzysztof Mazur | 0fde901 | 2012-12-19 11:03:41 +0100 | [diff] [blame] | 15952 | { |
| 15953 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 15954 | i915_reg_t vga_reg = i915_vgacntrl_reg(dev); |
Krzysztof Mazur | 0fde901 | 2012-12-19 11:03:41 +0100 | [diff] [blame] | 15955 | |
Imre Deak | 0409875 | 2014-02-18 00:02:16 +0200 | [diff] [blame] | 15956 | if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) { |
| 15957 | DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n"); |
| 15958 | i915_disable_vga(dev); |
| 15959 | } |
| 15960 | } |
| 15961 | |
| 15962 | void i915_redisable_vga(struct drm_device *dev) |
| 15963 | { |
| 15964 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 15965 | |
Paulo Zanoni | 8dc8a27 | 2013-08-02 16:22:24 -0300 | [diff] [blame] | 15966 | /* This function can be called both from intel_modeset_setup_hw_state or |
| 15967 | * at a very early point in our resume sequence, where the power well |
| 15968 | * structures are not yet restored. Since this function is at a very |
| 15969 | * paranoid "someone might have enabled VGA while we were not looking" |
| 15970 | * level, just check if the power well is enabled instead of trying to |
| 15971 | * follow the "don't touch the power well if we don't need it" policy |
| 15972 | * the rest of the driver uses. */ |
Imre Deak | 6392f84 | 2016-02-12 18:55:13 +0200 | [diff] [blame] | 15973 | if (!intel_display_power_get_if_enabled(dev_priv, POWER_DOMAIN_VGA)) |
Paulo Zanoni | 8dc8a27 | 2013-08-02 16:22:24 -0300 | [diff] [blame] | 15974 | return; |
| 15975 | |
Imre Deak | 0409875 | 2014-02-18 00:02:16 +0200 | [diff] [blame] | 15976 | i915_redisable_vga_power_on(dev); |
Imre Deak | 6392f84 | 2016-02-12 18:55:13 +0200 | [diff] [blame] | 15977 | |
| 15978 | intel_display_power_put(dev_priv, POWER_DOMAIN_VGA); |
Krzysztof Mazur | 0fde901 | 2012-12-19 11:03:41 +0100 | [diff] [blame] | 15979 | } |
| 15980 | |
Ville Syrjälä | f9cd7b8 | 2015-09-10 18:59:08 +0300 | [diff] [blame] | 15981 | static bool primary_get_hw_state(struct intel_plane *plane) |
Ville Syrjälä | 98ec773 | 2014-04-30 17:43:01 +0300 | [diff] [blame] | 15982 | { |
Ville Syrjälä | f9cd7b8 | 2015-09-10 18:59:08 +0300 | [diff] [blame] | 15983 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
Ville Syrjälä | 98ec773 | 2014-04-30 17:43:01 +0300 | [diff] [blame] | 15984 | |
Ville Syrjälä | f9cd7b8 | 2015-09-10 18:59:08 +0300 | [diff] [blame] | 15985 | return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE; |
Maarten Lankhorst | d032ffa | 2015-06-15 12:33:51 +0200 | [diff] [blame] | 15986 | } |
Ville Syrjälä | 98ec773 | 2014-04-30 17:43:01 +0300 | [diff] [blame] | 15987 | |
Ville Syrjälä | f9cd7b8 | 2015-09-10 18:59:08 +0300 | [diff] [blame] | 15988 | /* FIXME read out full plane state for all planes */ |
| 15989 | static void readout_plane_state(struct intel_crtc *crtc) |
Maarten Lankhorst | d032ffa | 2015-06-15 12:33:51 +0200 | [diff] [blame] | 15990 | { |
Maarten Lankhorst | b26d3ea | 2015-09-23 16:11:41 +0200 | [diff] [blame] | 15991 | struct drm_plane *primary = crtc->base.primary; |
Ville Syrjälä | f9cd7b8 | 2015-09-10 18:59:08 +0300 | [diff] [blame] | 15992 | struct intel_plane_state *plane_state = |
Maarten Lankhorst | b26d3ea | 2015-09-23 16:11:41 +0200 | [diff] [blame] | 15993 | to_intel_plane_state(primary->state); |
Maarten Lankhorst | d032ffa | 2015-06-15 12:33:51 +0200 | [diff] [blame] | 15994 | |
Matt Roper | 19b8d38 | 2015-09-24 15:53:17 -0700 | [diff] [blame] | 15995 | plane_state->visible = crtc->active && |
Maarten Lankhorst | b26d3ea | 2015-09-23 16:11:41 +0200 | [diff] [blame] | 15996 | primary_get_hw_state(to_intel_plane(primary)); |
| 15997 | |
| 15998 | if (plane_state->visible) |
| 15999 | crtc->base.state->plane_mask |= 1 << drm_plane_index(primary); |
Ville Syrjälä | 98ec773 | 2014-04-30 17:43:01 +0300 | [diff] [blame] | 16000 | } |
| 16001 | |
Daniel Vetter | 30e984d | 2013-06-05 13:34:17 +0200 | [diff] [blame] | 16002 | static void intel_modeset_readout_hw_state(struct drm_device *dev) |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16003 | { |
| 16004 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 16005 | enum pipe pipe; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16006 | struct intel_crtc *crtc; |
| 16007 | struct intel_encoder *encoder; |
| 16008 | struct intel_connector *connector; |
Daniel Vetter | 5358901 | 2013-06-05 13:34:16 +0200 | [diff] [blame] | 16009 | int i; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16010 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 16011 | dev_priv->active_crtcs = 0; |
| 16012 | |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 16013 | for_each_intel_crtc(dev, crtc) { |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 16014 | struct intel_crtc_state *crtc_state = crtc->config; |
| 16015 | int pixclk = 0; |
Daniel Vetter | 3b117c8 | 2013-04-17 20:15:07 +0200 | [diff] [blame] | 16016 | |
Daniel Vetter | ec2dc6a | 2016-05-09 16:34:09 +0200 | [diff] [blame] | 16017 | __drm_atomic_helper_crtc_destroy_state(&crtc_state->base); |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 16018 | memset(crtc_state, 0, sizeof(*crtc_state)); |
| 16019 | crtc_state->base.crtc = &crtc->base; |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16020 | |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 16021 | crtc_state->base.active = crtc_state->base.enable = |
| 16022 | dev_priv->display.get_pipe_config(crtc, crtc_state); |
| 16023 | |
| 16024 | crtc->base.enabled = crtc_state->base.enable; |
| 16025 | crtc->active = crtc_state->base.active; |
| 16026 | |
| 16027 | if (crtc_state->base.active) { |
| 16028 | dev_priv->active_crtcs |= 1 << crtc->pipe; |
| 16029 | |
Clint Taylor | c89e39f | 2016-05-13 23:41:21 +0300 | [diff] [blame] | 16030 | if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv)) |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 16031 | pixclk = ilk_pipe_pixel_rate(crtc_state); |
Ville Syrjälä | 9558d15 | 2016-05-13 23:41:20 +0300 | [diff] [blame] | 16032 | else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 16033 | pixclk = crtc_state->base.adjusted_mode.crtc_clock; |
| 16034 | else |
| 16035 | WARN_ON(dev_priv->display.modeset_calc_cdclk); |
Ville Syrjälä | 9558d15 | 2016-05-13 23:41:20 +0300 | [diff] [blame] | 16036 | |
| 16037 | /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */ |
| 16038 | if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled) |
| 16039 | pixclk = DIV_ROUND_UP(pixclk * 100, 95); |
Maarten Lankhorst | 565602d | 2015-12-10 12:33:57 +0100 | [diff] [blame] | 16040 | } |
| 16041 | |
| 16042 | dev_priv->min_pixclk[crtc->pipe] = pixclk; |
Maarten Lankhorst | b70709a | 2015-04-21 17:12:53 +0300 | [diff] [blame] | 16043 | |
Ville Syrjälä | f9cd7b8 | 2015-09-10 18:59:08 +0300 | [diff] [blame] | 16044 | readout_plane_state(crtc); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16045 | |
Ville Syrjälä | 78108b7 | 2016-05-27 20:59:19 +0300 | [diff] [blame] | 16046 | DRM_DEBUG_KMS("[CRTC:%d:%s] hw state readout: %s\n", |
| 16047 | crtc->base.base.id, crtc->base.name, |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16048 | crtc->active ? "enabled" : "disabled"); |
| 16049 | } |
| 16050 | |
Daniel Vetter | 5358901 | 2013-06-05 13:34:16 +0200 | [diff] [blame] | 16051 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { |
| 16052 | struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i]; |
| 16053 | |
Ander Conselvan de Oliveira | 2edd644 | 2016-03-08 17:46:21 +0200 | [diff] [blame] | 16054 | pll->on = pll->funcs.get_hw_state(dev_priv, pll, |
| 16055 | &pll->config.hw_state); |
Ander Conselvan de Oliveira | 3e369b7 | 2014-10-29 11:32:32 +0200 | [diff] [blame] | 16056 | pll->config.crtc_mask = 0; |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 16057 | for_each_intel_crtc(dev, crtc) { |
Maarten Lankhorst | 2dd66ebd | 2016-03-14 09:27:52 +0100 | [diff] [blame] | 16058 | if (crtc->active && crtc->config->shared_dpll == pll) |
Ander Conselvan de Oliveira | 3e369b7 | 2014-10-29 11:32:32 +0200 | [diff] [blame] | 16059 | pll->config.crtc_mask |= 1 << crtc->pipe; |
Daniel Vetter | 5358901 | 2013-06-05 13:34:16 +0200 | [diff] [blame] | 16060 | } |
Maarten Lankhorst | 2dd66ebd | 2016-03-14 09:27:52 +0100 | [diff] [blame] | 16061 | pll->active_mask = pll->config.crtc_mask; |
Daniel Vetter | 5358901 | 2013-06-05 13:34:16 +0200 | [diff] [blame] | 16062 | |
Ander Conselvan de Oliveira | 1e6f2dd | 2014-10-29 11:32:31 +0200 | [diff] [blame] | 16063 | DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n", |
Ander Conselvan de Oliveira | 3e369b7 | 2014-10-29 11:32:32 +0200 | [diff] [blame] | 16064 | pll->name, pll->config.crtc_mask, pll->on); |
Daniel Vetter | 5358901 | 2013-06-05 13:34:16 +0200 | [diff] [blame] | 16065 | } |
| 16066 | |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 16067 | for_each_intel_encoder(dev, encoder) { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16068 | pipe = 0; |
| 16069 | |
| 16070 | if (encoder->get_hw_state(encoder, &pipe)) { |
Jesse Barnes | 045ac3b | 2013-05-14 17:08:26 -0700 | [diff] [blame] | 16071 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
| 16072 | encoder->base.crtc = &crtc->base; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 16073 | encoder->get_config(encoder, crtc->config); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16074 | } else { |
| 16075 | encoder->base.crtc = NULL; |
| 16076 | } |
| 16077 | |
Damien Lespiau | 6f2bcce | 2013-10-16 12:29:54 +0100 | [diff] [blame] | 16078 | DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n", |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16079 | encoder->base.base.id, |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 16080 | encoder->base.name, |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16081 | encoder->base.crtc ? "enabled" : "disabled", |
Damien Lespiau | 6f2bcce | 2013-10-16 12:29:54 +0100 | [diff] [blame] | 16082 | pipe_name(pipe)); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16083 | } |
| 16084 | |
Ander Conselvan de Oliveira | 3a3371f | 2015-03-03 15:21:56 +0200 | [diff] [blame] | 16085 | for_each_intel_connector(dev, connector) { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16086 | if (connector->get_hw_state(connector)) { |
| 16087 | connector->base.dpms = DRM_MODE_DPMS_ON; |
Maarten Lankhorst | 2aa974c | 2016-01-06 14:53:25 +0100 | [diff] [blame] | 16088 | |
| 16089 | encoder = connector->encoder; |
| 16090 | connector->base.encoder = &encoder->base; |
| 16091 | |
| 16092 | if (encoder->base.crtc && |
| 16093 | encoder->base.crtc->state->active) { |
| 16094 | /* |
| 16095 | * This has to be done during hardware readout |
| 16096 | * because anything calling .crtc_disable may |
| 16097 | * rely on the connector_mask being accurate. |
| 16098 | */ |
| 16099 | encoder->base.crtc->state->connector_mask |= |
| 16100 | 1 << drm_connector_index(&connector->base); |
Maarten Lankhorst | e87a52b | 2016-01-28 15:04:58 +0100 | [diff] [blame] | 16101 | encoder->base.crtc->state->encoder_mask |= |
| 16102 | 1 << drm_encoder_index(&encoder->base); |
Maarten Lankhorst | 2aa974c | 2016-01-06 14:53:25 +0100 | [diff] [blame] | 16103 | } |
| 16104 | |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16105 | } else { |
| 16106 | connector->base.dpms = DRM_MODE_DPMS_OFF; |
| 16107 | connector->base.encoder = NULL; |
| 16108 | } |
| 16109 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n", |
| 16110 | connector->base.base.id, |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 16111 | connector->base.name, |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16112 | connector->base.encoder ? "enabled" : "disabled"); |
| 16113 | } |
Ville Syrjälä | 7f4c628 | 2015-09-10 18:59:07 +0300 | [diff] [blame] | 16114 | |
| 16115 | for_each_intel_crtc(dev, crtc) { |
| 16116 | crtc->base.hwmode = crtc->config->base.adjusted_mode; |
| 16117 | |
| 16118 | memset(&crtc->base.mode, 0, sizeof(crtc->base.mode)); |
| 16119 | if (crtc->base.state->active) { |
| 16120 | intel_mode_from_pipe_config(&crtc->base.mode, crtc->config); |
| 16121 | intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config); |
| 16122 | WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode)); |
| 16123 | |
| 16124 | /* |
| 16125 | * The initial mode needs to be set in order to keep |
| 16126 | * the atomic core happy. It wants a valid mode if the |
| 16127 | * crtc's enabled, so we do the above call. |
| 16128 | * |
| 16129 | * At this point some state updated by the connectors |
| 16130 | * in their ->detect() callback has not run yet, so |
| 16131 | * no recalculation can be done yet. |
| 16132 | * |
| 16133 | * Even if we could do a recalculation and modeset |
| 16134 | * right now it would cause a double modeset if |
| 16135 | * fbdev or userspace chooses a different initial mode. |
| 16136 | * |
| 16137 | * If that happens, someone indicated they wanted a |
| 16138 | * mode change, which means it's safe to do a full |
| 16139 | * recalculation. |
| 16140 | */ |
| 16141 | crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED; |
Ville Syrjälä | 9eca6832 | 2015-09-10 18:59:10 +0300 | [diff] [blame] | 16142 | |
| 16143 | drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode); |
| 16144 | update_scanline_offset(crtc); |
Ville Syrjälä | 7f4c628 | 2015-09-10 18:59:07 +0300 | [diff] [blame] | 16145 | } |
Ville Syrjälä | e3b247d | 2016-02-17 21:41:09 +0200 | [diff] [blame] | 16146 | |
| 16147 | intel_pipe_config_sanity_check(dev_priv, crtc->config); |
Ville Syrjälä | 7f4c628 | 2015-09-10 18:59:07 +0300 | [diff] [blame] | 16148 | } |
Daniel Vetter | 30e984d | 2013-06-05 13:34:17 +0200 | [diff] [blame] | 16149 | } |
| 16150 | |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16151 | /* Scan out the current hw modeset state, |
| 16152 | * and sanitizes it to the current state |
| 16153 | */ |
| 16154 | static void |
| 16155 | intel_modeset_setup_hw_state(struct drm_device *dev) |
Daniel Vetter | 30e984d | 2013-06-05 13:34:17 +0200 | [diff] [blame] | 16156 | { |
| 16157 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 16158 | enum pipe pipe; |
Daniel Vetter | 30e984d | 2013-06-05 13:34:17 +0200 | [diff] [blame] | 16159 | struct intel_crtc *crtc; |
| 16160 | struct intel_encoder *encoder; |
Daniel Vetter | 35c9537 | 2013-07-17 06:55:04 +0200 | [diff] [blame] | 16161 | int i; |
Daniel Vetter | 30e984d | 2013-06-05 13:34:17 +0200 | [diff] [blame] | 16162 | |
| 16163 | intel_modeset_readout_hw_state(dev); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16164 | |
| 16165 | /* HW state is read out, now we need to sanitize this mess. */ |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 16166 | for_each_intel_encoder(dev, encoder) { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16167 | intel_sanitize_encoder(encoder); |
| 16168 | } |
| 16169 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 16170 | for_each_pipe(dev_priv, pipe) { |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16171 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
| 16172 | intel_sanitize_crtc(crtc); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 16173 | intel_dump_pipe_config(crtc, crtc->config, |
| 16174 | "[setup_hw_state]"); |
Daniel Vetter | 2492935 | 2012-07-02 20:28:59 +0200 | [diff] [blame] | 16175 | } |
Daniel Vetter | 9a93585 | 2012-07-05 22:34:27 +0200 | [diff] [blame] | 16176 | |
Ander Conselvan de Oliveira | d29b2f9 | 2015-03-20 16:18:05 +0200 | [diff] [blame] | 16177 | intel_modeset_update_connector_atomic_state(dev); |
| 16178 | |
Daniel Vetter | 35c9537 | 2013-07-17 06:55:04 +0200 | [diff] [blame] | 16179 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { |
| 16180 | struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i]; |
| 16181 | |
Maarten Lankhorst | 2dd66ebd | 2016-03-14 09:27:52 +0100 | [diff] [blame] | 16182 | if (!pll->on || pll->active_mask) |
Daniel Vetter | 35c9537 | 2013-07-17 06:55:04 +0200 | [diff] [blame] | 16183 | continue; |
| 16184 | |
| 16185 | DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name); |
| 16186 | |
Ander Conselvan de Oliveira | 2edd644 | 2016-03-08 17:46:21 +0200 | [diff] [blame] | 16187 | pll->funcs.disable(dev_priv, pll); |
Daniel Vetter | 35c9537 | 2013-07-17 06:55:04 +0200 | [diff] [blame] | 16188 | pll->on = false; |
| 16189 | } |
| 16190 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 16191 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 16192 | vlv_wm_get_hw_state(dev); |
| 16193 | else if (IS_GEN9(dev)) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 16194 | skl_wm_get_hw_state(dev); |
| 16195 | else if (HAS_PCH_SPLIT(dev)) |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 16196 | ilk_wm_get_hw_state(dev); |
Maarten Lankhorst | 292b990 | 2015-07-13 16:30:27 +0200 | [diff] [blame] | 16197 | |
| 16198 | for_each_intel_crtc(dev, crtc) { |
| 16199 | unsigned long put_domains; |
| 16200 | |
Maarten Lankhorst | 74bff5f | 2016-02-10 13:49:36 +0100 | [diff] [blame] | 16201 | put_domains = modeset_get_crtc_power_domains(&crtc->base, crtc->config); |
Maarten Lankhorst | 292b990 | 2015-07-13 16:30:27 +0200 | [diff] [blame] | 16202 | if (WARN_ON(put_domains)) |
| 16203 | modeset_put_power_domains(dev_priv, put_domains); |
| 16204 | } |
| 16205 | intel_display_set_init_power(dev_priv, false); |
Paulo Zanoni | 010cf73 | 2016-01-19 11:35:48 -0200 | [diff] [blame] | 16206 | |
| 16207 | intel_fbc_init_pipe_state(dev_priv); |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16208 | } |
Ville Syrjälä | 7d0bc1e | 2013-09-16 17:38:33 +0300 | [diff] [blame] | 16209 | |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16210 | void intel_display_resume(struct drm_device *dev) |
| 16211 | { |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16212 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 16213 | struct drm_atomic_state *state = dev_priv->modeset_restore_state; |
| 16214 | struct drm_modeset_acquire_ctx ctx; |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16215 | int ret; |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16216 | bool setup = false; |
Daniel Vetter | f30da18 | 2013-04-11 20:22:50 +0200 | [diff] [blame] | 16217 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16218 | dev_priv->modeset_restore_state = NULL; |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16219 | |
Maarten Lankhorst | ea49c9a | 2016-02-16 15:27:42 +0100 | [diff] [blame] | 16220 | /* |
| 16221 | * This is a cludge because with real atomic modeset mode_config.mutex |
| 16222 | * won't be taken. Unfortunately some probed state like |
| 16223 | * audio_codec_enable is still protected by mode_config.mutex, so lock |
| 16224 | * it here for now. |
| 16225 | */ |
| 16226 | mutex_lock(&dev->mode_config.mutex); |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16227 | drm_modeset_acquire_init(&ctx, 0); |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16228 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16229 | retry: |
| 16230 | ret = drm_modeset_lock_all_ctx(dev, &ctx); |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16231 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16232 | if (ret == 0 && !setup) { |
| 16233 | setup = true; |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16234 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16235 | intel_modeset_setup_hw_state(dev); |
| 16236 | i915_redisable_vga(dev); |
Daniel Vetter | 45e2b5f | 2012-11-23 18:16:34 +0100 | [diff] [blame] | 16237 | } |
Daniel Vetter | 8af6cf8 | 2012-07-10 09:50:11 +0200 | [diff] [blame] | 16238 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16239 | if (ret == 0 && state) { |
| 16240 | struct drm_crtc_state *crtc_state; |
| 16241 | struct drm_crtc *crtc; |
| 16242 | int i; |
| 16243 | |
| 16244 | state->acquire_ctx = &ctx; |
| 16245 | |
Ville Syrjälä | e3d5457 | 2016-05-13 10:10:42 -0700 | [diff] [blame] | 16246 | /* ignore any reset values/BIOS leftovers in the WM registers */ |
| 16247 | to_intel_atomic_state(state)->skip_intermediate_wm = true; |
| 16248 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16249 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
| 16250 | /* |
| 16251 | * Force recalculation even if we restore |
| 16252 | * current state. With fast modeset this may not result |
| 16253 | * in a modeset when the state is compatible. |
| 16254 | */ |
| 16255 | crtc_state->mode_changed = true; |
| 16256 | } |
| 16257 | |
| 16258 | ret = drm_atomic_commit(state); |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16259 | } |
| 16260 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16261 | if (ret == -EDEADLK) { |
| 16262 | drm_modeset_backoff(&ctx); |
| 16263 | goto retry; |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16264 | } |
| 16265 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16266 | drm_modeset_drop_locks(&ctx); |
| 16267 | drm_modeset_acquire_fini(&ctx); |
Maarten Lankhorst | ea49c9a | 2016-02-16 15:27:42 +0100 | [diff] [blame] | 16268 | mutex_unlock(&dev->mode_config.mutex); |
Maarten Lankhorst | 043e9bd | 2015-07-13 16:30:25 +0200 | [diff] [blame] | 16269 | |
Maarten Lankhorst | e2c8b87 | 2016-02-16 10:06:14 +0100 | [diff] [blame] | 16270 | if (ret) { |
| 16271 | DRM_ERROR("Restoring old state failed with %i\n", ret); |
| 16272 | drm_atomic_state_free(state); |
| 16273 | } |
Chris Wilson | 2c7111d | 2011-03-29 10:40:27 +0100 | [diff] [blame] | 16274 | } |
| 16275 | |
| 16276 | void intel_modeset_gem_init(struct drm_device *dev) |
| 16277 | { |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 16278 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 16279 | struct drm_crtc *c; |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 16280 | struct drm_i915_gem_object *obj; |
Tvrtko Ursulin | e0d6149 | 2015-04-13 16:03:03 +0100 | [diff] [blame] | 16281 | int ret; |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 16282 | |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 16283 | intel_init_gt_powersave(dev_priv); |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 16284 | |
Chris Wilson | 1833b13 | 2012-05-09 11:56:28 +0100 | [diff] [blame] | 16285 | intel_modeset_init_hw(dev); |
Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 16286 | |
Chris Wilson | 1ee8da6 | 2016-05-12 12:43:23 +0100 | [diff] [blame] | 16287 | intel_setup_overlay(dev_priv); |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 16288 | |
| 16289 | /* |
| 16290 | * Make sure any fbs we allocated at startup are properly |
| 16291 | * pinned & fenced. When we do the allocation it's too early |
| 16292 | * for this. |
| 16293 | */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 16294 | for_each_crtc(dev, c) { |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 16295 | obj = intel_fb_obj(c->primary->fb); |
| 16296 | if (obj == NULL) |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 16297 | continue; |
| 16298 | |
Tvrtko Ursulin | e0d6149 | 2015-04-13 16:03:03 +0100 | [diff] [blame] | 16299 | mutex_lock(&dev->struct_mutex); |
Ville Syrjälä | 3465c58 | 2016-02-15 22:54:43 +0200 | [diff] [blame] | 16300 | ret = intel_pin_and_fence_fb_obj(c->primary->fb, |
| 16301 | c->primary->state->rotation); |
Tvrtko Ursulin | e0d6149 | 2015-04-13 16:03:03 +0100 | [diff] [blame] | 16302 | mutex_unlock(&dev->struct_mutex); |
| 16303 | if (ret) { |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 16304 | DRM_ERROR("failed to pin boot fb on pipe %d\n", |
| 16305 | to_intel_crtc(c)->pipe); |
Dave Airlie | 66e514c | 2014-04-03 07:51:54 +1000 | [diff] [blame] | 16306 | drm_framebuffer_unreference(c->primary->fb); |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 16307 | c->primary->fb = NULL; |
Maarten Lankhorst | 36750f2 | 2015-06-01 12:49:54 +0200 | [diff] [blame] | 16308 | c->primary->crtc = c->primary->state->crtc = NULL; |
Daniel Vetter | 5a21b66 | 2016-05-24 17:13:53 +0200 | [diff] [blame] | 16309 | update_state_fb(c->primary); |
Maarten Lankhorst | 36750f2 | 2015-06-01 12:49:54 +0200 | [diff] [blame] | 16310 | c->state->plane_mask &= ~(1 << drm_plane_index(c->primary)); |
Jesse Barnes | 484b41d | 2014-03-07 08:57:55 -0800 | [diff] [blame] | 16311 | } |
| 16312 | } |
Chris Wilson | 1ebaa0b | 2016-06-24 14:00:15 +0100 | [diff] [blame] | 16313 | } |
Ville Syrjälä | 0962c3c | 2014-11-07 15:19:46 +0200 | [diff] [blame] | 16314 | |
Chris Wilson | 1ebaa0b | 2016-06-24 14:00:15 +0100 | [diff] [blame] | 16315 | int intel_connector_register(struct drm_connector *connector) |
| 16316 | { |
| 16317 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 16318 | int ret; |
| 16319 | |
| 16320 | ret = intel_backlight_device_register(intel_connector); |
| 16321 | if (ret) |
| 16322 | goto err; |
| 16323 | |
| 16324 | return 0; |
| 16325 | |
| 16326 | err: |
| 16327 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 16328 | } |
| 16329 | |
Chris Wilson | c191eca | 2016-06-17 11:40:33 +0100 | [diff] [blame] | 16330 | void intel_connector_unregister(struct drm_connector *connector) |
Imre Deak | 4932e2c | 2014-02-11 17:12:48 +0200 | [diff] [blame] | 16331 | { |
Chris Wilson | e63d87c | 2016-06-17 11:40:34 +0100 | [diff] [blame] | 16332 | struct intel_connector *intel_connector = to_intel_connector(connector); |
Imre Deak | 4932e2c | 2014-02-11 17:12:48 +0200 | [diff] [blame] | 16333 | |
Chris Wilson | e63d87c | 2016-06-17 11:40:34 +0100 | [diff] [blame] | 16334 | intel_backlight_device_unregister(intel_connector); |
Imre Deak | 4932e2c | 2014-02-11 17:12:48 +0200 | [diff] [blame] | 16335 | intel_panel_destroy_backlight(connector); |
Imre Deak | 4932e2c | 2014-02-11 17:12:48 +0200 | [diff] [blame] | 16336 | } |
| 16337 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 16338 | void intel_modeset_cleanup(struct drm_device *dev) |
| 16339 | { |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 16340 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 16341 | |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 16342 | intel_disable_gt_powersave(dev_priv); |
Imre Deak | 2eb5252 | 2014-11-19 15:30:05 +0200 | [diff] [blame] | 16343 | |
Daniel Vetter | fd0c064 | 2013-04-24 11:13:35 +0200 | [diff] [blame] | 16344 | /* |
| 16345 | * Interrupts and polling as the first thing to avoid creating havoc. |
Imre Deak | 2eb5252 | 2014-11-19 15:30:05 +0200 | [diff] [blame] | 16346 | * Too much stuff here (turning of connectors, ...) would |
Daniel Vetter | fd0c064 | 2013-04-24 11:13:35 +0200 | [diff] [blame] | 16347 | * experience fancy races otherwise. |
| 16348 | */ |
Daniel Vetter | 2aeb7d3 | 2014-09-30 10:56:43 +0200 | [diff] [blame] | 16349 | intel_irq_uninstall(dev_priv); |
Jesse Barnes | eb21b92 | 2014-06-20 11:57:33 -0700 | [diff] [blame] | 16350 | |
Daniel Vetter | fd0c064 | 2013-04-24 11:13:35 +0200 | [diff] [blame] | 16351 | /* |
| 16352 | * Due to the hpd irq storm handling the hotplug work can re-arm the |
| 16353 | * poll handlers. Hence disable polling after hpd handling is shut down. |
| 16354 | */ |
Keith Packard | f87ea76 | 2010-10-03 19:36:26 -0700 | [diff] [blame] | 16355 | drm_kms_helper_poll_fini(dev); |
Daniel Vetter | fd0c064 | 2013-04-24 11:13:35 +0200 | [diff] [blame] | 16356 | |
Jesse Barnes | 723bfd7 | 2010-10-07 16:01:13 -0700 | [diff] [blame] | 16357 | intel_unregister_dsm_handler(); |
| 16358 | |
Paulo Zanoni | c937ab3e5 | 2016-01-19 11:35:46 -0200 | [diff] [blame] | 16359 | intel_fbc_global_disable(dev_priv); |
Kristian Høgsberg | 69341a5 | 2009-11-11 12:19:17 -0500 | [diff] [blame] | 16360 | |
Chris Wilson | 1630fe7 | 2011-07-08 12:22:42 +0100 | [diff] [blame] | 16361 | /* flush any delayed tasks or pending work */ |
| 16362 | flush_scheduled_work(); |
| 16363 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 16364 | drm_mode_config_cleanup(dev); |
Daniel Vetter | 4d7bb01 | 2012-12-18 15:24:37 +0100 | [diff] [blame] | 16365 | |
Chris Wilson | 1ee8da6 | 2016-05-12 12:43:23 +0100 | [diff] [blame] | 16366 | intel_cleanup_overlay(dev_priv); |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 16367 | |
Chris Wilson | dc97997 | 2016-05-10 14:10:04 +0100 | [diff] [blame] | 16368 | intel_cleanup_gt_powersave(dev_priv); |
Daniel Vetter | f594914 | 2016-01-13 11:55:28 +0100 | [diff] [blame] | 16369 | |
| 16370 | intel_teardown_gmbus(dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 16371 | } |
| 16372 | |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 16373 | void intel_connector_attach_encoder(struct intel_connector *connector, |
| 16374 | struct intel_encoder *encoder) |
| 16375 | { |
| 16376 | connector->encoder = encoder; |
| 16377 | drm_mode_connector_attach_encoder(&connector->base, |
| 16378 | &encoder->base); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 16379 | } |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 16380 | |
| 16381 | /* |
| 16382 | * set vga decode state - true == enable VGA decode |
| 16383 | */ |
| 16384 | int intel_modeset_vga_set_state(struct drm_device *dev, bool state) |
| 16385 | { |
| 16386 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a885b3c | 2013-12-17 14:34:50 +0000 | [diff] [blame] | 16387 | unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL; |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 16388 | u16 gmch_ctrl; |
| 16389 | |
Chris Wilson | 75fa041 | 2014-02-07 18:37:02 -0200 | [diff] [blame] | 16390 | if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) { |
| 16391 | DRM_ERROR("failed to read control word\n"); |
| 16392 | return -EIO; |
| 16393 | } |
| 16394 | |
Chris Wilson | c0cc8a5 | 2014-02-07 18:37:03 -0200 | [diff] [blame] | 16395 | if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state) |
| 16396 | return 0; |
| 16397 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 16398 | if (state) |
| 16399 | gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; |
| 16400 | else |
| 16401 | gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; |
Chris Wilson | 75fa041 | 2014-02-07 18:37:02 -0200 | [diff] [blame] | 16402 | |
| 16403 | if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) { |
| 16404 | DRM_ERROR("failed to write control word\n"); |
| 16405 | return -EIO; |
| 16406 | } |
| 16407 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 16408 | return 0; |
| 16409 | } |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16410 | |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16411 | struct intel_display_error_state { |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 16412 | |
| 16413 | u32 power_well_driver; |
| 16414 | |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16415 | int num_transcoders; |
| 16416 | |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16417 | struct intel_cursor_error_state { |
| 16418 | u32 control; |
| 16419 | u32 position; |
| 16420 | u32 base; |
| 16421 | u32 size; |
Damien Lespiau | 5233130 | 2012-08-15 19:23:25 +0100 | [diff] [blame] | 16422 | } cursor[I915_MAX_PIPES]; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16423 | |
| 16424 | struct intel_pipe_error_state { |
Imre Deak | ddf9c53 | 2013-11-27 22:02:02 +0200 | [diff] [blame] | 16425 | bool power_domain_on; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16426 | u32 source; |
Imre Deak | f301b1e1 | 2014-04-18 15:55:04 +0300 | [diff] [blame] | 16427 | u32 stat; |
Damien Lespiau | 5233130 | 2012-08-15 19:23:25 +0100 | [diff] [blame] | 16428 | } pipe[I915_MAX_PIPES]; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16429 | |
| 16430 | struct intel_plane_error_state { |
| 16431 | u32 control; |
| 16432 | u32 stride; |
| 16433 | u32 size; |
| 16434 | u32 pos; |
| 16435 | u32 addr; |
| 16436 | u32 surface; |
| 16437 | u32 tile_offset; |
Damien Lespiau | 5233130 | 2012-08-15 19:23:25 +0100 | [diff] [blame] | 16438 | } plane[I915_MAX_PIPES]; |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16439 | |
| 16440 | struct intel_transcoder_error_state { |
Imre Deak | ddf9c53 | 2013-11-27 22:02:02 +0200 | [diff] [blame] | 16441 | bool power_domain_on; |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16442 | enum transcoder cpu_transcoder; |
| 16443 | |
| 16444 | u32 conf; |
| 16445 | |
| 16446 | u32 htotal; |
| 16447 | u32 hblank; |
| 16448 | u32 hsync; |
| 16449 | u32 vtotal; |
| 16450 | u32 vblank; |
| 16451 | u32 vsync; |
| 16452 | } transcoder[4]; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16453 | }; |
| 16454 | |
| 16455 | struct intel_display_error_state * |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 16456 | intel_display_capture_error_state(struct drm_i915_private *dev_priv) |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16457 | { |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16458 | struct intel_display_error_state *error; |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16459 | int transcoders[] = { |
| 16460 | TRANSCODER_A, |
| 16461 | TRANSCODER_B, |
| 16462 | TRANSCODER_C, |
| 16463 | TRANSCODER_EDP, |
| 16464 | }; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16465 | int i; |
| 16466 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 16467 | if (INTEL_INFO(dev_priv)->num_pipes == 0) |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16468 | return NULL; |
| 16469 | |
Paulo Zanoni | 9d1cb91 | 2013-11-01 13:32:08 -0200 | [diff] [blame] | 16470 | error = kzalloc(sizeof(*error), GFP_ATOMIC); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16471 | if (error == NULL) |
| 16472 | return NULL; |
| 16473 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 16474 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 16475 | error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER); |
| 16476 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 16477 | for_each_pipe(dev_priv, i) { |
Imre Deak | ddf9c53 | 2013-11-27 22:02:02 +0200 | [diff] [blame] | 16478 | error->pipe[i].power_domain_on = |
Daniel Vetter | f458ebb | 2014-09-30 10:56:39 +0200 | [diff] [blame] | 16479 | __intel_display_power_is_enabled(dev_priv, |
| 16480 | POWER_DOMAIN_PIPE(i)); |
Imre Deak | ddf9c53 | 2013-11-27 22:02:02 +0200 | [diff] [blame] | 16481 | if (!error->pipe[i].power_domain_on) |
Paulo Zanoni | 9d1cb91 | 2013-11-01 13:32:08 -0200 | [diff] [blame] | 16482 | continue; |
| 16483 | |
Ville Syrjälä | 5efb3e2 | 2014-04-09 13:28:53 +0300 | [diff] [blame] | 16484 | error->cursor[i].control = I915_READ(CURCNTR(i)); |
| 16485 | error->cursor[i].position = I915_READ(CURPOS(i)); |
| 16486 | error->cursor[i].base = I915_READ(CURBASE(i)); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16487 | |
| 16488 | error->plane[i].control = I915_READ(DSPCNTR(i)); |
| 16489 | error->plane[i].stride = I915_READ(DSPSTRIDE(i)); |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 16490 | if (INTEL_GEN(dev_priv) <= 3) { |
Paulo Zanoni | 51889b3 | 2013-03-06 20:03:13 -0300 | [diff] [blame] | 16491 | error->plane[i].size = I915_READ(DSPSIZE(i)); |
Paulo Zanoni | 80ca378 | 2013-03-22 14:20:57 -0300 | [diff] [blame] | 16492 | error->plane[i].pos = I915_READ(DSPPOS(i)); |
| 16493 | } |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 16494 | if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv)) |
Paulo Zanoni | ca29136 | 2013-03-06 20:03:14 -0300 | [diff] [blame] | 16495 | error->plane[i].addr = I915_READ(DSPADDR(i)); |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 16496 | if (INTEL_GEN(dev_priv) >= 4) { |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16497 | error->plane[i].surface = I915_READ(DSPSURF(i)); |
| 16498 | error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i)); |
| 16499 | } |
| 16500 | |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16501 | error->pipe[i].source = I915_READ(PIPESRC(i)); |
Imre Deak | f301b1e1 | 2014-04-18 15:55:04 +0300 | [diff] [blame] | 16502 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 16503 | if (HAS_GMCH_DISPLAY(dev_priv)) |
Imre Deak | f301b1e1 | 2014-04-18 15:55:04 +0300 | [diff] [blame] | 16504 | error->pipe[i].stat = I915_READ(PIPESTAT(i)); |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16505 | } |
| 16506 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 16507 | /* Note: this does not include DSI transcoders. */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 16508 | error->num_transcoders = INTEL_INFO(dev_priv)->num_pipes; |
Joonas Lahtinen | 2d1fe07 | 2016-04-07 11:08:05 +0300 | [diff] [blame] | 16509 | if (HAS_DDI(dev_priv)) |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16510 | error->num_transcoders++; /* Account for eDP. */ |
| 16511 | |
| 16512 | for (i = 0; i < error->num_transcoders; i++) { |
| 16513 | enum transcoder cpu_transcoder = transcoders[i]; |
| 16514 | |
Imre Deak | ddf9c53 | 2013-11-27 22:02:02 +0200 | [diff] [blame] | 16515 | error->transcoder[i].power_domain_on = |
Daniel Vetter | f458ebb | 2014-09-30 10:56:39 +0200 | [diff] [blame] | 16516 | __intel_display_power_is_enabled(dev_priv, |
Paulo Zanoni | 38cc1da | 2013-12-20 15:09:41 -0200 | [diff] [blame] | 16517 | POWER_DOMAIN_TRANSCODER(cpu_transcoder)); |
Imre Deak | ddf9c53 | 2013-11-27 22:02:02 +0200 | [diff] [blame] | 16518 | if (!error->transcoder[i].power_domain_on) |
Paulo Zanoni | 9d1cb91 | 2013-11-01 13:32:08 -0200 | [diff] [blame] | 16519 | continue; |
| 16520 | |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16521 | error->transcoder[i].cpu_transcoder = cpu_transcoder; |
| 16522 | |
| 16523 | error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder)); |
| 16524 | error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder)); |
| 16525 | error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder)); |
| 16526 | error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder)); |
| 16527 | error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder)); |
| 16528 | error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder)); |
| 16529 | error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder)); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16530 | } |
| 16531 | |
| 16532 | return error; |
| 16533 | } |
| 16534 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16535 | #define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__) |
| 16536 | |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16537 | void |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16538 | intel_display_print_error_state(struct drm_i915_error_state_buf *m, |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16539 | struct drm_device *dev, |
| 16540 | struct intel_display_error_state *error) |
| 16541 | { |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 16542 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16543 | int i; |
| 16544 | |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16545 | if (!error) |
| 16546 | return; |
| 16547 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16548 | err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes); |
Imre Deak | 190be11 | 2013-11-25 17:15:31 +0200 | [diff] [blame] | 16549 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16550 | err_printf(m, "PWR_WELL_CTL2: %08x\n", |
Paulo Zanoni | ff57f1b | 2013-05-03 12:15:37 -0300 | [diff] [blame] | 16551 | error->power_well_driver); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 16552 | for_each_pipe(dev_priv, i) { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16553 | err_printf(m, "Pipe [%d]:\n", i); |
Imre Deak | ddf9c53 | 2013-11-27 22:02:02 +0200 | [diff] [blame] | 16554 | err_printf(m, " Power: %s\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 16555 | onoff(error->pipe[i].power_domain_on)); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16556 | err_printf(m, " SRC: %08x\n", error->pipe[i].source); |
Imre Deak | f301b1e1 | 2014-04-18 15:55:04 +0300 | [diff] [blame] | 16557 | err_printf(m, " STAT: %08x\n", error->pipe[i].stat); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16558 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16559 | err_printf(m, "Plane [%d]:\n", i); |
| 16560 | err_printf(m, " CNTR: %08x\n", error->plane[i].control); |
| 16561 | err_printf(m, " STRIDE: %08x\n", error->plane[i].stride); |
Paulo Zanoni | 80ca378 | 2013-03-22 14:20:57 -0300 | [diff] [blame] | 16562 | if (INTEL_INFO(dev)->gen <= 3) { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16563 | err_printf(m, " SIZE: %08x\n", error->plane[i].size); |
| 16564 | err_printf(m, " POS: %08x\n", error->plane[i].pos); |
Paulo Zanoni | 80ca378 | 2013-03-22 14:20:57 -0300 | [diff] [blame] | 16565 | } |
Paulo Zanoni | 4b71a57 | 2013-03-22 14:19:21 -0300 | [diff] [blame] | 16566 | if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16567 | err_printf(m, " ADDR: %08x\n", error->plane[i].addr); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16568 | if (INTEL_INFO(dev)->gen >= 4) { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16569 | err_printf(m, " SURF: %08x\n", error->plane[i].surface); |
| 16570 | err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16571 | } |
| 16572 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 16573 | err_printf(m, "Cursor [%d]:\n", i); |
| 16574 | err_printf(m, " CNTR: %08x\n", error->cursor[i].control); |
| 16575 | err_printf(m, " POS: %08x\n", error->cursor[i].position); |
| 16576 | err_printf(m, " BASE: %08x\n", error->cursor[i].base); |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16577 | } |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16578 | |
| 16579 | for (i = 0; i < error->num_transcoders; i++) { |
Jani Nikula | da20563 | 2016-03-15 21:51:10 +0200 | [diff] [blame] | 16580 | err_printf(m, "CPU transcoder: %s\n", |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16581 | transcoder_name(error->transcoder[i].cpu_transcoder)); |
Imre Deak | ddf9c53 | 2013-11-27 22:02:02 +0200 | [diff] [blame] | 16582 | err_printf(m, " Power: %s\n", |
Jani Nikula | 87ad321 | 2016-01-14 12:53:34 +0200 | [diff] [blame] | 16583 | onoff(error->transcoder[i].power_domain_on)); |
Chris Wilson | 63b66e5 | 2013-08-08 15:12:06 +0200 | [diff] [blame] | 16584 | err_printf(m, " CONF: %08x\n", error->transcoder[i].conf); |
| 16585 | err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal); |
| 16586 | err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank); |
| 16587 | err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync); |
| 16588 | err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal); |
| 16589 | err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank); |
| 16590 | err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync); |
| 16591 | } |
Chris Wilson | c4a1d9e | 2010-11-21 13:12:35 +0000 | [diff] [blame] | 16592 | } |