Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2013 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 | * Author: Jani Nikula <jani.nikula@intel.com> |
| 24 | */ |
| 25 | |
| 26 | #include <drm/drmP.h> |
Matt Roper | c6f95f2 | 2015-01-22 16:50:32 -0800 | [diff] [blame] | 27 | #include <drm/drm_atomic_helper.h> |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 28 | #include <drm/drm_crtc.h> |
| 29 | #include <drm/drm_edid.h> |
| 30 | #include <drm/i915_drm.h> |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 31 | #include <drm/drm_mipi_dsi.h> |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 32 | #include <linux/slab.h> |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 33 | #include <linux/gpio/consumer.h> |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 34 | #include "i915_drv.h" |
| 35 | #include "intel_drv.h" |
| 36 | #include "intel_dsi.h" |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 37 | |
Ramalingam C | 042ab0c | 2016-04-19 13:48:14 +0530 | [diff] [blame] | 38 | /* return pixels in terms of txbyteclkhs */ |
| 39 | static u16 txbyteclkhs(u16 pixels, int bpp, int lane_count, |
| 40 | u16 burst_mode_ratio) |
| 41 | { |
| 42 | return DIV_ROUND_UP(DIV_ROUND_UP(pixels * bpp * burst_mode_ratio, |
| 43 | 8 * 100), lane_count); |
| 44 | } |
| 45 | |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 46 | /* return pixels equvalent to txbyteclkhs */ |
| 47 | static u16 pixels_from_txbyteclkhs(u16 clk_hs, int bpp, int lane_count, |
| 48 | u16 burst_mode_ratio) |
| 49 | { |
| 50 | return DIV_ROUND_UP((clk_hs * lane_count * 8 * 100), |
| 51 | (bpp * burst_mode_ratio)); |
| 52 | } |
| 53 | |
Ramalingam C | 43367ec | 2016-04-07 14:36:06 +0530 | [diff] [blame] | 54 | enum mipi_dsi_pixel_format pixel_format_from_register_bits(u32 fmt) |
| 55 | { |
| 56 | /* It just so happens the VBT matches register contents. */ |
| 57 | switch (fmt) { |
| 58 | case VID_MODE_FORMAT_RGB888: |
| 59 | return MIPI_DSI_FMT_RGB888; |
| 60 | case VID_MODE_FORMAT_RGB666: |
| 61 | return MIPI_DSI_FMT_RGB666; |
| 62 | case VID_MODE_FORMAT_RGB666_PACKED: |
| 63 | return MIPI_DSI_FMT_RGB666_PACKED; |
| 64 | case VID_MODE_FORMAT_RGB565: |
| 65 | return MIPI_DSI_FMT_RGB565; |
| 66 | default: |
| 67 | MISSING_CASE(fmt); |
| 68 | return MIPI_DSI_FMT_RGB666; |
| 69 | } |
| 70 | } |
| 71 | |
Hans de Goede | 3870b89 | 2017-02-28 11:26:16 +0200 | [diff] [blame] | 72 | void wait_for_dsi_fifo_empty(struct intel_dsi *intel_dsi, enum port port) |
Jani Nikula | 3b1808b | 2015-01-16 14:27:18 +0200 | [diff] [blame] | 73 | { |
| 74 | struct drm_encoder *encoder = &intel_dsi->base.base; |
| 75 | struct drm_device *dev = encoder->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 76 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jani Nikula | 3b1808b | 2015-01-16 14:27:18 +0200 | [diff] [blame] | 77 | u32 mask; |
| 78 | |
| 79 | mask = LP_CTRL_FIFO_EMPTY | HS_CTRL_FIFO_EMPTY | |
| 80 | LP_DATA_FIFO_EMPTY | HS_DATA_FIFO_EMPTY; |
| 81 | |
Chris Wilson | 9b6a2d7 | 2016-06-30 15:33:13 +0100 | [diff] [blame] | 82 | if (intel_wait_for_register(dev_priv, |
| 83 | MIPI_GEN_FIFO_STAT(port), mask, mask, |
| 84 | 100)) |
Jani Nikula | 3b1808b | 2015-01-16 14:27:18 +0200 | [diff] [blame] | 85 | DRM_ERROR("DPI FIFOs are not empty\n"); |
| 86 | } |
| 87 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 88 | static void write_data(struct drm_i915_private *dev_priv, |
| 89 | i915_reg_t reg, |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 90 | const u8 *data, u32 len) |
| 91 | { |
| 92 | u32 i, j; |
| 93 | |
| 94 | for (i = 0; i < len; i += 4) { |
| 95 | u32 val = 0; |
| 96 | |
| 97 | for (j = 0; j < min_t(u32, len - i, 4); j++) |
| 98 | val |= *data++ << 8 * j; |
| 99 | |
| 100 | I915_WRITE(reg, val); |
| 101 | } |
| 102 | } |
| 103 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 104 | static void read_data(struct drm_i915_private *dev_priv, |
| 105 | i915_reg_t reg, |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 106 | u8 *data, u32 len) |
| 107 | { |
| 108 | u32 i, j; |
| 109 | |
| 110 | for (i = 0; i < len; i += 4) { |
| 111 | u32 val = I915_READ(reg); |
| 112 | |
| 113 | for (j = 0; j < min_t(u32, len - i, 4); j++) |
| 114 | *data++ = val >> 8 * j; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | static ssize_t intel_dsi_host_transfer(struct mipi_dsi_host *host, |
| 119 | const struct mipi_dsi_msg *msg) |
| 120 | { |
| 121 | struct intel_dsi_host *intel_dsi_host = to_intel_dsi_host(host); |
| 122 | struct drm_device *dev = intel_dsi_host->intel_dsi->base.base.dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 123 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 124 | enum port port = intel_dsi_host->port; |
| 125 | struct mipi_dsi_packet packet; |
| 126 | ssize_t ret; |
| 127 | const u8 *header, *data; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 128 | i915_reg_t data_reg, ctrl_reg; |
| 129 | u32 data_mask, ctrl_mask; |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 130 | |
| 131 | ret = mipi_dsi_create_packet(&packet, msg); |
| 132 | if (ret < 0) |
| 133 | return ret; |
| 134 | |
| 135 | header = packet.header; |
| 136 | data = packet.payload; |
| 137 | |
| 138 | if (msg->flags & MIPI_DSI_MSG_USE_LPM) { |
| 139 | data_reg = MIPI_LP_GEN_DATA(port); |
| 140 | data_mask = LP_DATA_FIFO_FULL; |
| 141 | ctrl_reg = MIPI_LP_GEN_CTRL(port); |
| 142 | ctrl_mask = LP_CTRL_FIFO_FULL; |
| 143 | } else { |
| 144 | data_reg = MIPI_HS_GEN_DATA(port); |
| 145 | data_mask = HS_DATA_FIFO_FULL; |
| 146 | ctrl_reg = MIPI_HS_GEN_CTRL(port); |
| 147 | ctrl_mask = HS_CTRL_FIFO_FULL; |
| 148 | } |
| 149 | |
| 150 | /* note: this is never true for reads */ |
| 151 | if (packet.payload_length) { |
Chris Wilson | 8c6cea0 | 2016-06-30 15:33:14 +0100 | [diff] [blame] | 152 | if (intel_wait_for_register(dev_priv, |
| 153 | MIPI_GEN_FIFO_STAT(port), |
| 154 | data_mask, 0, |
| 155 | 50)) |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 156 | DRM_ERROR("Timeout waiting for HS/LP DATA FIFO !full\n"); |
| 157 | |
| 158 | write_data(dev_priv, data_reg, packet.payload, |
| 159 | packet.payload_length); |
| 160 | } |
| 161 | |
| 162 | if (msg->rx_len) { |
| 163 | I915_WRITE(MIPI_INTR_STAT(port), GEN_READ_DATA_AVAIL); |
| 164 | } |
| 165 | |
Chris Wilson | 84c2aa9 | 2016-06-30 15:33:15 +0100 | [diff] [blame] | 166 | if (intel_wait_for_register(dev_priv, |
| 167 | MIPI_GEN_FIFO_STAT(port), |
| 168 | ctrl_mask, 0, |
| 169 | 50)) { |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 170 | DRM_ERROR("Timeout waiting for HS/LP CTRL FIFO !full\n"); |
| 171 | } |
| 172 | |
| 173 | I915_WRITE(ctrl_reg, header[2] << 16 | header[1] << 8 | header[0]); |
| 174 | |
| 175 | /* ->rx_len is set only for reads */ |
| 176 | if (msg->rx_len) { |
| 177 | data_mask = GEN_READ_DATA_AVAIL; |
Chris Wilson | e7615b3 | 2016-06-30 15:33:16 +0100 | [diff] [blame] | 178 | if (intel_wait_for_register(dev_priv, |
| 179 | MIPI_INTR_STAT(port), |
| 180 | data_mask, data_mask, |
| 181 | 50)) |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 182 | DRM_ERROR("Timeout waiting for read data.\n"); |
| 183 | |
| 184 | read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len); |
| 185 | } |
| 186 | |
| 187 | /* XXX: fix for reads and writes */ |
| 188 | return 4 + packet.payload_length; |
| 189 | } |
| 190 | |
| 191 | static int intel_dsi_host_attach(struct mipi_dsi_host *host, |
| 192 | struct mipi_dsi_device *dsi) |
| 193 | { |
| 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | static int intel_dsi_host_detach(struct mipi_dsi_host *host, |
| 198 | struct mipi_dsi_device *dsi) |
| 199 | { |
| 200 | return 0; |
| 201 | } |
| 202 | |
| 203 | static const struct mipi_dsi_host_ops intel_dsi_host_ops = { |
| 204 | .attach = intel_dsi_host_attach, |
| 205 | .detach = intel_dsi_host_detach, |
| 206 | .transfer = intel_dsi_host_transfer, |
| 207 | }; |
| 208 | |
| 209 | static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi, |
| 210 | enum port port) |
| 211 | { |
| 212 | struct intel_dsi_host *host; |
| 213 | struct mipi_dsi_device *device; |
| 214 | |
| 215 | host = kzalloc(sizeof(*host), GFP_KERNEL); |
| 216 | if (!host) |
| 217 | return NULL; |
| 218 | |
| 219 | host->base.ops = &intel_dsi_host_ops; |
| 220 | host->intel_dsi = intel_dsi; |
| 221 | host->port = port; |
| 222 | |
| 223 | /* |
| 224 | * We should call mipi_dsi_host_register(&host->base) here, but we don't |
| 225 | * have a host->dev, and we don't have OF stuff either. So just use the |
| 226 | * dsi framework as a library and hope for the best. Create the dsi |
| 227 | * devices by ourselves here too. Need to be careful though, because we |
| 228 | * don't initialize any of the driver model devices here. |
| 229 | */ |
| 230 | device = kzalloc(sizeof(*device), GFP_KERNEL); |
| 231 | if (!device) { |
| 232 | kfree(host); |
| 233 | return NULL; |
| 234 | } |
| 235 | |
| 236 | device->host = &host->base; |
| 237 | host->device = device; |
| 238 | |
| 239 | return host; |
| 240 | } |
| 241 | |
Jani Nikula | a2581a9 | 2015-01-16 14:27:26 +0200 | [diff] [blame] | 242 | /* |
| 243 | * send a video mode command |
| 244 | * |
| 245 | * XXX: commands with data in MIPI_DPI_DATA? |
| 246 | */ |
| 247 | static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs, |
| 248 | enum port port) |
| 249 | { |
| 250 | struct drm_encoder *encoder = &intel_dsi->base.base; |
| 251 | struct drm_device *dev = encoder->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 252 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jani Nikula | a2581a9 | 2015-01-16 14:27:26 +0200 | [diff] [blame] | 253 | u32 mask; |
| 254 | |
| 255 | /* XXX: pipe, hs */ |
| 256 | if (hs) |
| 257 | cmd &= ~DPI_LP_MODE; |
| 258 | else |
| 259 | cmd |= DPI_LP_MODE; |
| 260 | |
| 261 | /* clear bit */ |
| 262 | I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT); |
| 263 | |
| 264 | /* XXX: old code skips write if control unchanged */ |
| 265 | if (cmd == I915_READ(MIPI_DPI_CONTROL(port))) |
Mika Kahola | 5b60fc0 | 2017-09-01 10:51:01 +0300 | [diff] [blame] | 266 | DRM_DEBUG_KMS("Same special packet %02x twice in a row.\n", cmd); |
Jani Nikula | a2581a9 | 2015-01-16 14:27:26 +0200 | [diff] [blame] | 267 | |
| 268 | I915_WRITE(MIPI_DPI_CONTROL(port), cmd); |
| 269 | |
| 270 | mask = SPL_PKT_SENT_INTERRUPT; |
Chris Wilson | 2af0507 | 2016-06-30 15:33:17 +0100 | [diff] [blame] | 271 | if (intel_wait_for_register(dev_priv, |
| 272 | MIPI_INTR_STAT(port), mask, mask, |
| 273 | 100)) |
Jani Nikula | a2581a9 | 2015-01-16 14:27:26 +0200 | [diff] [blame] | 274 | DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd); |
| 275 | |
| 276 | return 0; |
| 277 | } |
| 278 | |
Shobhit Kumar | e9fe51c | 2013-12-10 12:14:55 +0530 | [diff] [blame] | 279 | static void band_gap_reset(struct drm_i915_private *dev_priv) |
Shobhit Kumar | 4ce8c9a | 2013-08-27 15:12:24 +0300 | [diff] [blame] | 280 | { |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 281 | mutex_lock(&dev_priv->sb_lock); |
Shobhit Kumar | 4ce8c9a | 2013-08-27 15:12:24 +0300 | [diff] [blame] | 282 | |
Shobhit Kumar | e9fe51c | 2013-12-10 12:14:55 +0530 | [diff] [blame] | 283 | vlv_flisdsi_write(dev_priv, 0x08, 0x0001); |
| 284 | vlv_flisdsi_write(dev_priv, 0x0F, 0x0005); |
| 285 | vlv_flisdsi_write(dev_priv, 0x0F, 0x0025); |
| 286 | udelay(150); |
| 287 | vlv_flisdsi_write(dev_priv, 0x0F, 0x0000); |
| 288 | vlv_flisdsi_write(dev_priv, 0x08, 0x0000); |
Shobhit Kumar | 4ce8c9a | 2013-08-27 15:12:24 +0300 | [diff] [blame] | 289 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 290 | mutex_unlock(&dev_priv->sb_lock); |
Shobhit Kumar | 4ce8c9a | 2013-08-27 15:12:24 +0300 | [diff] [blame] | 291 | } |
| 292 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 293 | static inline bool is_vid_mode(struct intel_dsi *intel_dsi) |
| 294 | { |
Shobhit Kumar | dfba2e2 | 2014-04-14 11:18:24 +0530 | [diff] [blame] | 295 | return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | static inline bool is_cmd_mode(struct intel_dsi *intel_dsi) |
| 299 | { |
Shobhit Kumar | dfba2e2 | 2014-04-14 11:18:24 +0530 | [diff] [blame] | 300 | return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 301 | } |
| 302 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 303 | static bool intel_dsi_compute_config(struct intel_encoder *encoder, |
Maarten Lankhorst | 0a478c2 | 2016-08-09 17:04:05 +0200 | [diff] [blame] | 304 | struct intel_crtc_state *pipe_config, |
| 305 | struct drm_connector_state *conn_state) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 306 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 307 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 308 | struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi, |
| 309 | base); |
| 310 | struct intel_connector *intel_connector = intel_dsi->attached_connector; |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 311 | struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc); |
| 312 | const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode; |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 313 | struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode; |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 314 | int ret; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 315 | |
| 316 | DRM_DEBUG_KMS("\n"); |
| 317 | |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 318 | if (fixed_mode) { |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 319 | intel_fixed_panel_mode(fixed_mode, adjusted_mode); |
| 320 | |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 321 | if (HAS_GMCH_DISPLAY(dev_priv)) |
| 322 | intel_gmch_panel_fitting(crtc, pipe_config, |
Maarten Lankhorst | eead06d | 2017-05-01 15:37:55 +0200 | [diff] [blame] | 323 | conn_state->scaling_mode); |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 324 | else |
| 325 | intel_pch_panel_fitting(crtc, pipe_config, |
Maarten Lankhorst | eead06d | 2017-05-01 15:37:55 +0200 | [diff] [blame] | 326 | conn_state->scaling_mode); |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 327 | } |
| 328 | |
Shobhit Kumar | f573de5 | 2014-07-30 20:32:37 +0530 | [diff] [blame] | 329 | /* DSI uses short packets for sync events, so clear mode flags for DSI */ |
| 330 | adjusted_mode->flags = 0; |
| 331 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 332 | if (IS_GEN9_LP(dev_priv)) { |
Uma Shankar | aec0246 | 2017-09-25 19:26:01 +0530 | [diff] [blame] | 333 | /* Enable Frame time stamp based scanline reporting */ |
| 334 | adjusted_mode->private_flags |= |
| 335 | I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP; |
| 336 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 337 | /* Dual link goes to DSI transcoder A. */ |
| 338 | if (intel_dsi->ports == BIT(PORT_C)) |
| 339 | pipe_config->cpu_transcoder = TRANSCODER_DSI_C; |
| 340 | else |
| 341 | pipe_config->cpu_transcoder = TRANSCODER_DSI_A; |
| 342 | } |
| 343 | |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 344 | ret = intel_compute_dsi_pll(encoder, pipe_config); |
| 345 | if (ret) |
| 346 | return false; |
| 347 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 348 | pipe_config->clock_set = true; |
| 349 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 350 | return true; |
| 351 | } |
| 352 | |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 353 | static bool glk_dsi_enable_io(struct intel_encoder *encoder) |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 354 | { |
| 355 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
| 356 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 357 | enum port port; |
Madhav Chauhan | 74e4ce6 | 2017-06-13 13:18:14 +0530 | [diff] [blame] | 358 | u32 tmp; |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 359 | bool cold_boot = false; |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 360 | |
| 361 | /* Set the MIPI mode |
| 362 | * If MIPI_Mode is off, then writing to LP_Wake bit is not reflecting. |
| 363 | * Power ON MIPI IO first and then write into IO reset and LP wake bits |
| 364 | */ |
| 365 | for_each_dsi_port(port, intel_dsi->ports) { |
| 366 | tmp = I915_READ(MIPI_CTRL(port)); |
| 367 | I915_WRITE(MIPI_CTRL(port), tmp | GLK_MIPIIO_ENABLE); |
| 368 | } |
| 369 | |
| 370 | /* Put the IO into reset */ |
| 371 | tmp = I915_READ(MIPI_CTRL(PORT_A)); |
| 372 | tmp &= ~GLK_MIPIIO_RESET_RELEASED; |
| 373 | I915_WRITE(MIPI_CTRL(PORT_A), tmp); |
| 374 | |
| 375 | /* Program LP Wake */ |
| 376 | for_each_dsi_port(port, intel_dsi->ports) { |
| 377 | tmp = I915_READ(MIPI_CTRL(port)); |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 378 | if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY)) |
| 379 | tmp &= ~GLK_LP_WAKE; |
| 380 | else |
| 381 | tmp |= GLK_LP_WAKE; |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 382 | I915_WRITE(MIPI_CTRL(port), tmp); |
| 383 | } |
| 384 | |
| 385 | /* Wait for Pwr ACK */ |
| 386 | for_each_dsi_port(port, intel_dsi->ports) { |
| 387 | if (intel_wait_for_register(dev_priv, |
| 388 | MIPI_CTRL(port), GLK_MIPIIO_PORT_POWERED, |
| 389 | GLK_MIPIIO_PORT_POWERED, 20)) |
| 390 | DRM_ERROR("MIPIO port is powergated\n"); |
| 391 | } |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 392 | |
| 393 | /* Check for cold boot scenario */ |
| 394 | for_each_dsi_port(port, intel_dsi->ports) { |
| 395 | cold_boot |= !(I915_READ(MIPI_DEVICE_READY(port)) & |
| 396 | DEVICE_READY); |
| 397 | } |
| 398 | |
| 399 | return cold_boot; |
Madhav Chauhan | 74e4ce6 | 2017-06-13 13:18:14 +0530 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | static void glk_dsi_device_ready(struct intel_encoder *encoder) |
| 403 | { |
| 404 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
| 405 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 406 | enum port port; |
| 407 | u32 val; |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 408 | |
| 409 | /* Wait for MIPI PHY status bit to set */ |
| 410 | for_each_dsi_port(port, intel_dsi->ports) { |
| 411 | if (intel_wait_for_register(dev_priv, |
| 412 | MIPI_CTRL(port), GLK_PHY_STATUS_PORT_READY, |
| 413 | GLK_PHY_STATUS_PORT_READY, 20)) |
| 414 | DRM_ERROR("PHY is not ON\n"); |
| 415 | } |
| 416 | |
| 417 | /* Get IO out of reset */ |
Madhav Chauhan | 74e4ce6 | 2017-06-13 13:18:14 +0530 | [diff] [blame] | 418 | val = I915_READ(MIPI_CTRL(PORT_A)); |
| 419 | I915_WRITE(MIPI_CTRL(PORT_A), val | GLK_MIPIIO_RESET_RELEASED); |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 420 | |
| 421 | /* Get IO out of Low power state*/ |
| 422 | for_each_dsi_port(port, intel_dsi->ports) { |
| 423 | if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY)) { |
| 424 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 425 | val &= ~ULPS_STATE_MASK; |
| 426 | val |= DEVICE_READY; |
| 427 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
| 428 | usleep_range(10, 15); |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 429 | } else { |
| 430 | /* Enter ULPS */ |
| 431 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 432 | val &= ~ULPS_STATE_MASK; |
| 433 | val |= (ULPS_STATE_ENTER | DEVICE_READY); |
| 434 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 435 | |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 436 | /* Wait for ULPS active */ |
| 437 | if (intel_wait_for_register(dev_priv, |
Ander Conselvan de Oliveira | 3acbec0 | 2017-04-28 11:02:22 +0300 | [diff] [blame] | 438 | MIPI_CTRL(port), GLK_ULPS_NOT_ACTIVE, 0, 20)) |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 439 | DRM_ERROR("ULPS not active\n"); |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 440 | |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 441 | /* Exit ULPS */ |
| 442 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 443 | val &= ~ULPS_STATE_MASK; |
| 444 | val |= (ULPS_STATE_EXIT | DEVICE_READY); |
| 445 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 446 | |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 447 | /* Enter Normal Mode */ |
| 448 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 449 | val &= ~ULPS_STATE_MASK; |
| 450 | val |= (ULPS_STATE_NORMAL_OPERATION | DEVICE_READY); |
| 451 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 452 | |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 453 | val = I915_READ(MIPI_CTRL(port)); |
| 454 | val &= ~GLK_LP_WAKE; |
| 455 | I915_WRITE(MIPI_CTRL(port), val); |
| 456 | } |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | /* Wait for Stop state */ |
| 460 | for_each_dsi_port(port, intel_dsi->ports) { |
| 461 | if (intel_wait_for_register(dev_priv, |
| 462 | MIPI_CTRL(port), GLK_DATA_LANE_STOP_STATE, |
| 463 | GLK_DATA_LANE_STOP_STATE, 20)) |
| 464 | DRM_ERROR("Date lane not in STOP state\n"); |
| 465 | } |
| 466 | |
| 467 | /* Wait for AFE LATCH */ |
| 468 | for_each_dsi_port(port, intel_dsi->ports) { |
| 469 | if (intel_wait_for_register(dev_priv, |
| 470 | BXT_MIPI_PORT_CTRL(port), AFE_LATCHOUT, |
| 471 | AFE_LATCHOUT, 20)) |
| 472 | DRM_ERROR("D-PHY not entering LP-11 state\n"); |
| 473 | } |
| 474 | } |
| 475 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 476 | static void bxt_dsi_device_ready(struct intel_encoder *encoder) |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 477 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 478 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 479 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Gaurav K Singh | 369602d | 2014-12-05 14:09:28 +0530 | [diff] [blame] | 480 | enum port port; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 481 | u32 val; |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 482 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 483 | DRM_DEBUG_KMS("\n"); |
Gaurav K Singh | a9da9bc | 2014-12-05 14:13:41 +0530 | [diff] [blame] | 484 | |
Uma Shankar | eba4daf | 2017-02-08 16:20:54 +0530 | [diff] [blame] | 485 | /* Enable MIPI PHY transparent latch */ |
Gaurav K Singh | 369602d | 2014-12-05 14:09:28 +0530 | [diff] [blame] | 486 | for_each_dsi_port(port, intel_dsi->ports) { |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 487 | val = I915_READ(BXT_MIPI_PORT_CTRL(port)); |
| 488 | I915_WRITE(BXT_MIPI_PORT_CTRL(port), val | LP_OUTPUT_HOLD); |
| 489 | usleep_range(2000, 2500); |
Uma Shankar | eba4daf | 2017-02-08 16:20:54 +0530 | [diff] [blame] | 490 | } |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 491 | |
Uma Shankar | eba4daf | 2017-02-08 16:20:54 +0530 | [diff] [blame] | 492 | /* Clear ULPS and set device ready */ |
| 493 | for_each_dsi_port(port, intel_dsi->ports) { |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 494 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 495 | val &= ~ULPS_STATE_MASK; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 496 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
Uma Shankar | eba4daf | 2017-02-08 16:20:54 +0530 | [diff] [blame] | 497 | usleep_range(2000, 2500); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 498 | val |= DEVICE_READY; |
| 499 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
Gaurav K Singh | 369602d | 2014-12-05 14:09:28 +0530 | [diff] [blame] | 500 | } |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 501 | } |
| 502 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 503 | static void vlv_dsi_device_ready(struct intel_encoder *encoder) |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 504 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 505 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 506 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 507 | enum port port; |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 508 | u32 val; |
| 509 | |
| 510 | DRM_DEBUG_KMS("\n"); |
| 511 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 512 | mutex_lock(&dev_priv->sb_lock); |
Shobhit Kumar | 2095f9f | 2014-04-09 13:59:30 +0530 | [diff] [blame] | 513 | /* program rcomp for compliance, reduce from 50 ohms to 45 ohms |
| 514 | * needed everytime after power gate */ |
| 515 | vlv_flisdsi_write(dev_priv, 0x04, 0x0004); |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 516 | mutex_unlock(&dev_priv->sb_lock); |
Shobhit Kumar | 2095f9f | 2014-04-09 13:59:30 +0530 | [diff] [blame] | 517 | |
| 518 | /* bandgap reset is needed after everytime we do power gate */ |
| 519 | band_gap_reset(dev_priv); |
| 520 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 521 | for_each_dsi_port(port, intel_dsi->ports) { |
Shobhit Kumar | aceb365 | 2014-07-03 16:35:41 +0530 | [diff] [blame] | 522 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 523 | I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER); |
| 524 | usleep_range(2500, 3000); |
Shobhit Kumar | aceb365 | 2014-07-03 16:35:41 +0530 | [diff] [blame] | 525 | |
Gaurav K Singh | bf344e8 | 2014-12-07 16:13:54 +0530 | [diff] [blame] | 526 | /* Enable MIPI PHY transparent latch |
| 527 | * Common bit for both MIPI Port A & MIPI Port C |
| 528 | * No similar bit in MIPI Port C reg |
| 529 | */ |
Shobhit Kumar | 4ba7d93 | 2015-02-05 17:08:45 +0530 | [diff] [blame] | 530 | val = I915_READ(MIPI_PORT_CTRL(PORT_A)); |
Gaurav K Singh | bf344e8 | 2014-12-07 16:13:54 +0530 | [diff] [blame] | 531 | I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 532 | usleep_range(1000, 1500); |
Shobhit Kumar | aceb365 | 2014-07-03 16:35:41 +0530 | [diff] [blame] | 533 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 534 | I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT); |
| 535 | usleep_range(2500, 3000); |
| 536 | |
| 537 | I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY); |
| 538 | usleep_range(2500, 3000); |
| 539 | } |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 540 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 541 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 542 | static void intel_dsi_device_ready(struct intel_encoder *encoder) |
| 543 | { |
Tvrtko Ursulin | e2d214a | 2016-10-13 11:03:04 +0100 | [diff] [blame] | 544 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 545 | |
Tvrtko Ursulin | e2d214a | 2016-10-13 11:03:04 +0100 | [diff] [blame] | 546 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 547 | vlv_dsi_device_ready(encoder); |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 548 | else if (IS_BROXTON(dev_priv)) |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 549 | bxt_dsi_device_ready(encoder); |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 550 | else if (IS_GEMINILAKE(dev_priv)) |
| 551 | glk_dsi_device_ready(encoder); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 552 | } |
| 553 | |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 554 | static void glk_dsi_enter_low_power_mode(struct intel_encoder *encoder) |
| 555 | { |
| 556 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
| 557 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 558 | enum port port; |
| 559 | u32 val; |
| 560 | |
| 561 | /* Enter ULPS */ |
| 562 | for_each_dsi_port(port, intel_dsi->ports) { |
| 563 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 564 | val &= ~ULPS_STATE_MASK; |
| 565 | val |= (ULPS_STATE_ENTER | DEVICE_READY); |
| 566 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
| 567 | } |
| 568 | |
| 569 | /* Wait for MIPI PHY status bit to unset */ |
| 570 | for_each_dsi_port(port, intel_dsi->ports) { |
| 571 | if (intel_wait_for_register(dev_priv, |
| 572 | MIPI_CTRL(port), |
| 573 | GLK_PHY_STATUS_PORT_READY, 0, 20)) |
| 574 | DRM_ERROR("PHY is not turning OFF\n"); |
| 575 | } |
| 576 | |
| 577 | /* Wait for Pwr ACK bit to unset */ |
| 578 | for_each_dsi_port(port, intel_dsi->ports) { |
| 579 | if (intel_wait_for_register(dev_priv, |
| 580 | MIPI_CTRL(port), |
| 581 | GLK_MIPIIO_PORT_POWERED, 0, 20)) |
| 582 | DRM_ERROR("MIPI IO Port is not powergated\n"); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | static void glk_dsi_disable_mipi_io(struct intel_encoder *encoder) |
| 587 | { |
| 588 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
| 589 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 590 | enum port port; |
| 591 | u32 tmp; |
| 592 | |
| 593 | /* Put the IO into reset */ |
| 594 | tmp = I915_READ(MIPI_CTRL(PORT_A)); |
| 595 | tmp &= ~GLK_MIPIIO_RESET_RELEASED; |
| 596 | I915_WRITE(MIPI_CTRL(PORT_A), tmp); |
| 597 | |
| 598 | /* Wait for MIPI PHY status bit to unset */ |
| 599 | for_each_dsi_port(port, intel_dsi->ports) { |
| 600 | if (intel_wait_for_register(dev_priv, |
| 601 | MIPI_CTRL(port), |
| 602 | GLK_PHY_STATUS_PORT_READY, 0, 20)) |
| 603 | DRM_ERROR("PHY is not turning OFF\n"); |
| 604 | } |
| 605 | |
| 606 | /* Clear MIPI mode */ |
| 607 | for_each_dsi_port(port, intel_dsi->ports) { |
| 608 | tmp = I915_READ(MIPI_CTRL(port)); |
| 609 | tmp &= ~GLK_MIPIIO_ENABLE; |
| 610 | I915_WRITE(MIPI_CTRL(port), tmp); |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | static void glk_dsi_clear_device_ready(struct intel_encoder *encoder) |
| 615 | { |
| 616 | glk_dsi_enter_low_power_mode(encoder); |
| 617 | glk_dsi_disable_mipi_io(encoder); |
| 618 | } |
| 619 | |
| 620 | static void vlv_dsi_clear_device_ready(struct intel_encoder *encoder) |
Hans de Goede | 14be7a5 | 2017-02-28 11:26:19 +0200 | [diff] [blame] | 621 | { |
| 622 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
| 623 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 624 | enum port port; |
| 625 | |
| 626 | DRM_DEBUG_KMS("\n"); |
| 627 | for_each_dsi_port(port, intel_dsi->ports) { |
| 628 | /* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */ |
| 629 | i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ? |
| 630 | BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(PORT_A); |
| 631 | u32 val; |
| 632 | |
| 633 | I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY | |
| 634 | ULPS_STATE_ENTER); |
| 635 | usleep_range(2000, 2500); |
| 636 | |
| 637 | I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY | |
| 638 | ULPS_STATE_EXIT); |
| 639 | usleep_range(2000, 2500); |
| 640 | |
| 641 | I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY | |
| 642 | ULPS_STATE_ENTER); |
| 643 | usleep_range(2000, 2500); |
| 644 | |
Hans de Goede | 1e08a26 | 2017-02-28 11:26:21 +0200 | [diff] [blame] | 645 | /* |
| 646 | * On VLV/CHV, wait till Clock lanes are in LP-00 state for MIPI |
| 647 | * Port A only. MIPI Port C has no similar bit for checking. |
Hans de Goede | 14be7a5 | 2017-02-28 11:26:19 +0200 | [diff] [blame] | 648 | */ |
Hans de Goede | 1e08a26 | 2017-02-28 11:26:21 +0200 | [diff] [blame] | 649 | if ((IS_GEN9_LP(dev_priv) || port == PORT_A) && |
| 650 | intel_wait_for_register(dev_priv, |
Hans de Goede | 14be7a5 | 2017-02-28 11:26:19 +0200 | [diff] [blame] | 651 | port_ctrl, AFE_LATCHOUT, 0, |
| 652 | 30)) |
| 653 | DRM_ERROR("DSI LP not going Low\n"); |
| 654 | |
| 655 | /* Disable MIPI PHY transparent latch */ |
| 656 | val = I915_READ(port_ctrl); |
| 657 | I915_WRITE(port_ctrl, val & ~LP_OUTPUT_HOLD); |
| 658 | usleep_range(1000, 1500); |
| 659 | |
| 660 | I915_WRITE(MIPI_DEVICE_READY(port), 0x00); |
| 661 | usleep_range(2000, 2500); |
| 662 | } |
| 663 | } |
| 664 | |
Ville Syrjälä | 3c0628f | 2017-10-31 22:51:15 +0200 | [diff] [blame] | 665 | static void intel_dsi_port_enable(struct intel_encoder *encoder, |
| 666 | const struct intel_crtc_state *crtc_state) |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 667 | { |
Ville Syrjälä | 3c0628f | 2017-10-31 22:51:15 +0200 | [diff] [blame] | 668 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
| 669 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 670 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 671 | enum port port; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 672 | |
| 673 | if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 674 | u32 temp; |
Deepak M | 6043801 | 2017-02-14 18:46:16 +0530 | [diff] [blame] | 675 | if (IS_GEN9_LP(dev_priv)) { |
| 676 | for_each_dsi_port(port, intel_dsi->ports) { |
| 677 | temp = I915_READ(MIPI_CTRL(port)); |
| 678 | temp &= ~BXT_PIXEL_OVERLAP_CNT_MASK | |
| 679 | intel_dsi->pixel_overlap << |
| 680 | BXT_PIXEL_OVERLAP_CNT_SHIFT; |
| 681 | I915_WRITE(MIPI_CTRL(port), temp); |
| 682 | } |
| 683 | } else { |
| 684 | temp = I915_READ(VLV_CHICKEN_3); |
| 685 | temp &= ~PIXEL_OVERLAP_CNT_MASK | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 686 | intel_dsi->pixel_overlap << |
| 687 | PIXEL_OVERLAP_CNT_SHIFT; |
Deepak M | 6043801 | 2017-02-14 18:46:16 +0530 | [diff] [blame] | 688 | I915_WRITE(VLV_CHICKEN_3, temp); |
| 689 | } |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 690 | } |
| 691 | |
| 692 | for_each_dsi_port(port, intel_dsi->ports) { |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 693 | i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ? |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 694 | BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port); |
| 695 | u32 temp; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 696 | |
| 697 | temp = I915_READ(port_ctrl); |
| 698 | |
| 699 | temp &= ~LANE_CONFIGURATION_MASK; |
| 700 | temp &= ~DUAL_LINK_MODE_MASK; |
| 701 | |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 702 | if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) { |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 703 | temp |= (intel_dsi->dual_link - 1) |
| 704 | << DUAL_LINK_MODE_SHIFT; |
Bob Paauwe | 812b1d2 | 2016-11-21 14:24:06 -0800 | [diff] [blame] | 705 | if (IS_BROXTON(dev_priv)) |
| 706 | temp |= LANE_CONFIGURATION_DUAL_LINK_A; |
| 707 | else |
Ville Syrjälä | 3c0628f | 2017-10-31 22:51:15 +0200 | [diff] [blame] | 708 | temp |= crtc->pipe ? |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 709 | LANE_CONFIGURATION_DUAL_LINK_B : |
| 710 | LANE_CONFIGURATION_DUAL_LINK_A; |
| 711 | } |
| 712 | /* assert ip_tg_enable signal */ |
| 713 | I915_WRITE(port_ctrl, temp | DPI_ENABLE); |
| 714 | POSTING_READ(port_ctrl); |
| 715 | } |
| 716 | } |
| 717 | |
| 718 | static void intel_dsi_port_disable(struct intel_encoder *encoder) |
| 719 | { |
| 720 | struct drm_device *dev = encoder->base.dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 721 | struct drm_i915_private *dev_priv = to_i915(dev); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 722 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 723 | enum port port; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 724 | |
| 725 | for_each_dsi_port(port, intel_dsi->ports) { |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 726 | i915_reg_t port_ctrl = IS_GEN9_LP(dev_priv) ? |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 727 | BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port); |
| 728 | u32 temp; |
| 729 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 730 | /* de-assert ip_tg_enable signal */ |
Shashank Sharma | b389a45 | 2015-09-01 19:41:44 +0530 | [diff] [blame] | 731 | temp = I915_READ(port_ctrl); |
| 732 | I915_WRITE(port_ctrl, temp & ~DPI_ENABLE); |
| 733 | POSTING_READ(port_ctrl); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 734 | } |
| 735 | } |
| 736 | |
Maarten Lankhorst | 5eff0ed | 2016-08-09 17:04:09 +0200 | [diff] [blame] | 737 | static void intel_dsi_prepare(struct intel_encoder *intel_encoder, |
Ville Syrjälä | 5f88a9c | 2017-08-18 16:49:58 +0300 | [diff] [blame] | 738 | const struct intel_crtc_state *pipe_config); |
Hans de Goede | c7991ec | 2017-02-28 11:26:18 +0200 | [diff] [blame] | 739 | static void intel_dsi_unprepare(struct intel_encoder *encoder); |
Jani Nikula | e3488e7 | 2015-11-27 12:21:44 +0200 | [diff] [blame] | 740 | |
Hans de Goede | 25b4620 | 2017-03-01 15:15:06 +0200 | [diff] [blame] | 741 | static void intel_dsi_msleep(struct intel_dsi *intel_dsi, int msec) |
| 742 | { |
| 743 | struct drm_i915_private *dev_priv = to_i915(intel_dsi->base.base.dev); |
| 744 | |
| 745 | /* For v3 VBTs in vid-mode the delays are part of the VBT sequences */ |
| 746 | if (is_vid_mode(intel_dsi) && dev_priv->vbt.dsi.seq_version >= 3) |
| 747 | return; |
| 748 | |
| 749 | msleep(msec); |
| 750 | } |
| 751 | |
Hans de Goede | 249f696 | 2017-03-01 15:14:57 +0200 | [diff] [blame] | 752 | /* |
| 753 | * Panel enable/disable sequences from the VBT spec. |
| 754 | * |
| 755 | * Note the spec has AssertReset / DeassertReset swapped from their |
| 756 | * usual naming. We use the normal names to avoid confusion (so below |
| 757 | * they are swapped compared to the spec). |
| 758 | * |
| 759 | * Steps starting with MIPI refer to VBT sequences, note that for v2 |
| 760 | * VBTs several steps which have a VBT in v2 are expected to be handled |
| 761 | * directly by the driver, by directly driving gpios for example. |
| 762 | * |
| 763 | * v2 video mode seq v3 video mode seq command mode seq |
| 764 | * - power on - MIPIPanelPowerOn - power on |
| 765 | * - wait t1+t2 - wait t1+t2 |
| 766 | * - MIPIDeassertResetPin - MIPIDeassertResetPin - MIPIDeassertResetPin |
| 767 | * - io lines to lp-11 - io lines to lp-11 - io lines to lp-11 |
| 768 | * - MIPISendInitialDcsCmds - MIPISendInitialDcsCmds - MIPISendInitialDcsCmds |
| 769 | * - MIPITearOn |
| 770 | * - MIPIDisplayOn |
| 771 | * - turn on DPI - turn on DPI - set pipe to dsr mode |
| 772 | * - MIPIDisplayOn - MIPIDisplayOn |
| 773 | * - wait t5 - wait t5 |
| 774 | * - backlight on - MIPIBacklightOn - backlight on |
| 775 | * ... ... ... issue mem cmds ... |
| 776 | * - backlight off - MIPIBacklightOff - backlight off |
| 777 | * - wait t6 - wait t6 |
| 778 | * - MIPIDisplayOff |
| 779 | * - turn off DPI - turn off DPI - disable pipe dsr mode |
| 780 | * - MIPITearOff |
| 781 | * - MIPIDisplayOff - MIPIDisplayOff |
| 782 | * - io lines to lp-00 - io lines to lp-00 - io lines to lp-00 |
| 783 | * - MIPIAssertResetPin - MIPIAssertResetPin - MIPIAssertResetPin |
| 784 | * - wait t3 - wait t3 |
| 785 | * - power off - MIPIPanelPowerOff - power off |
| 786 | * - wait t4 - wait t4 |
| 787 | */ |
| 788 | |
Maarten Lankhorst | fd6bbda | 2016-08-09 17:04:04 +0200 | [diff] [blame] | 789 | static void intel_dsi_pre_enable(struct intel_encoder *encoder, |
Ville Syrjälä | 5f88a9c | 2017-08-18 16:49:58 +0300 | [diff] [blame] | 790 | const struct intel_crtc_state *pipe_config, |
| 791 | const struct drm_connector_state *conn_state) |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 792 | { |
| 793 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Jani Nikula | 364a3fe | 2017-10-05 13:52:12 +0300 | [diff] [blame] | 794 | struct drm_crtc *crtc = pipe_config->base.crtc; |
| 795 | struct drm_i915_private *dev_priv = to_i915(crtc->dev); |
| 796 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 797 | int pipe = intel_crtc->pipe; |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 798 | enum port port; |
Uma Shankar | 1881a42 | 2017-01-25 19:43:23 +0530 | [diff] [blame] | 799 | u32 val; |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 800 | bool glk_cold_boot = false; |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 801 | |
| 802 | DRM_DEBUG_KMS("\n"); |
| 803 | |
Jani Nikula | 364a3fe | 2017-10-05 13:52:12 +0300 | [diff] [blame] | 804 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
| 805 | |
Ville Syrjälä | f00b568 | 2016-03-15 16:40:03 +0200 | [diff] [blame] | 806 | /* |
| 807 | * The BIOS may leave the PLL in a wonky state where it doesn't |
| 808 | * lock. It needs to be fully powered down to fix it. |
| 809 | */ |
| 810 | intel_disable_dsi_pll(encoder); |
Maarten Lankhorst | 5eff0ed | 2016-08-09 17:04:09 +0200 | [diff] [blame] | 811 | intel_enable_dsi_pll(encoder, pipe_config); |
Ville Syrjälä | f00b568 | 2016-03-15 16:40:03 +0200 | [diff] [blame] | 812 | |
Uma Shankar | 1881a42 | 2017-01-25 19:43:23 +0530 | [diff] [blame] | 813 | if (IS_BROXTON(dev_priv)) { |
| 814 | /* Add MIPI IO reset programming for modeset */ |
| 815 | val = I915_READ(BXT_P_CR_GT_DISP_PWRON); |
| 816 | I915_WRITE(BXT_P_CR_GT_DISP_PWRON, |
| 817 | val | MIPIO_RST_CTRL); |
| 818 | |
| 819 | /* Power up DSI regulator */ |
| 820 | I915_WRITE(BXT_P_DSI_REGULATOR_CFG, STAP_SELECT); |
| 821 | I915_WRITE(BXT_P_DSI_REGULATOR_TX_CTRL, 0); |
| 822 | } |
| 823 | |
Ville Syrjälä | d1877c0 | 2016-04-18 19:18:25 +0300 | [diff] [blame] | 824 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
| 825 | u32 val; |
| 826 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 827 | /* Disable DPOunit clock gating, can stall pipe */ |
Ville Syrjälä | d1877c0 | 2016-04-18 19:18:25 +0300 | [diff] [blame] | 828 | val = I915_READ(DSPCLK_GATE_D); |
| 829 | val |= DPOUNIT_CLOCK_GATE_DISABLE; |
| 830 | I915_WRITE(DSPCLK_GATE_D, val); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 831 | } |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 832 | |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 833 | if (!IS_GEMINILAKE(dev_priv)) |
| 834 | intel_dsi_prepare(encoder, pipe_config); |
Hans de Goede | deae200 | 2017-03-01 15:15:00 +0200 | [diff] [blame] | 835 | |
| 836 | /* Power on, try both CRC pmic gpio and VBT */ |
| 837 | if (intel_dsi->gpio_panel) |
| 838 | gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1); |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 839 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON); |
Hans de Goede | 25b4620 | 2017-03-01 15:15:06 +0200 | [diff] [blame] | 840 | intel_dsi_msleep(intel_dsi, intel_dsi->panel_on_delay); |
Hans de Goede | deae200 | 2017-03-01 15:15:00 +0200 | [diff] [blame] | 841 | |
Hans de Goede | 3e40fa8 | 2017-03-01 15:15:01 +0200 | [diff] [blame] | 842 | /* Deassert reset */ |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 843 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); |
Hans de Goede | 3e40fa8 | 2017-03-01 15:15:01 +0200 | [diff] [blame] | 844 | |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 845 | if (IS_GEMINILAKE(dev_priv)) { |
| 846 | glk_cold_boot = glk_dsi_enable_io(encoder); |
| 847 | |
| 848 | /* Prepare port in cold boot(s3/s4) scenario */ |
| 849 | if (glk_cold_boot) |
| 850 | intel_dsi_prepare(encoder, pipe_config); |
| 851 | } |
Madhav Chauhan | 74e4ce6 | 2017-06-13 13:18:14 +0530 | [diff] [blame] | 852 | |
Hans de Goede | 3e40fa8 | 2017-03-01 15:15:01 +0200 | [diff] [blame] | 853 | /* Put device in ready state (LP-11) */ |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 854 | intel_dsi_device_ready(encoder); |
| 855 | |
Madhav Chauhan | 8a1deb3 | 2017-06-13 13:18:15 +0530 | [diff] [blame] | 856 | /* Prepare port in normal boot scenario */ |
| 857 | if (IS_GEMINILAKE(dev_priv) && !glk_cold_boot) |
| 858 | intel_dsi_prepare(encoder, pipe_config); |
| 859 | |
Hans de Goede | 3e40fa8 | 2017-03-01 15:15:01 +0200 | [diff] [blame] | 860 | /* Send initialization commands in LP mode */ |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 861 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_INIT_OTP); |
Shobhit Kumar | 20e5bf6 | 2014-04-09 13:59:32 +0530 | [diff] [blame] | 862 | |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 863 | /* Enable port in pre-enable phase itself because as per hw team |
| 864 | * recommendation, port should be enabled befor plane & pipe */ |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 865 | if (is_cmd_mode(intel_dsi)) { |
| 866 | for_each_dsi_port(port, intel_dsi->ports) |
| 867 | I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4); |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 868 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_TEAR_ON); |
| 869 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_ON); |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 870 | } else { |
| 871 | msleep(20); /* XXX */ |
| 872 | for_each_dsi_port(port, intel_dsi->ports) |
| 873 | dpi_send_cmd(intel_dsi, TURN_ON, false, port); |
Hans de Goede | 25b4620 | 2017-03-01 15:15:06 +0200 | [diff] [blame] | 874 | intel_dsi_msleep(intel_dsi, 100); |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 875 | |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 876 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_ON); |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 877 | |
Ville Syrjälä | 3c0628f | 2017-10-31 22:51:15 +0200 | [diff] [blame] | 878 | intel_dsi_port_enable(encoder, pipe_config); |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 879 | } |
| 880 | |
Maarten Lankhorst | b037d58 | 2017-06-12 12:21:13 +0200 | [diff] [blame] | 881 | intel_panel_enable_backlight(pipe_config, conn_state); |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 882 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_BACKLIGHT_ON); |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 883 | } |
| 884 | |
Jani Nikula | fefc51e | 2017-03-07 11:24:19 +0200 | [diff] [blame] | 885 | /* |
| 886 | * DSI port enable has to be done before pipe and plane enable, so we do it in |
| 887 | * the pre_enable hook. |
| 888 | */ |
Maarten Lankhorst | fd6bbda | 2016-08-09 17:04:04 +0200 | [diff] [blame] | 889 | static void intel_dsi_enable_nop(struct intel_encoder *encoder, |
Ville Syrjälä | 5f88a9c | 2017-08-18 16:49:58 +0300 | [diff] [blame] | 890 | const struct intel_crtc_state *pipe_config, |
| 891 | const struct drm_connector_state *conn_state) |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 892 | { |
| 893 | DRM_DEBUG_KMS("\n"); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 894 | } |
| 895 | |
Jani Nikula | fefc51e | 2017-03-07 11:24:19 +0200 | [diff] [blame] | 896 | /* |
| 897 | * DSI port disable has to be done after pipe and plane disable, so we do it in |
| 898 | * the post_disable hook. |
| 899 | */ |
| 900 | static void intel_dsi_disable(struct intel_encoder *encoder, |
Ville Syrjälä | 5f88a9c | 2017-08-18 16:49:58 +0300 | [diff] [blame] | 901 | const struct intel_crtc_state *old_crtc_state, |
| 902 | const struct drm_connector_state *old_conn_state) |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 903 | { |
| 904 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Jani Nikula | f03e417 | 2015-01-16 14:27:16 +0200 | [diff] [blame] | 905 | enum port port; |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 906 | |
| 907 | DRM_DEBUG_KMS("\n"); |
| 908 | |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 909 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_BACKLIGHT_OFF); |
Maarten Lankhorst | b037d58 | 2017-06-12 12:21:13 +0200 | [diff] [blame] | 910 | intel_panel_disable_backlight(old_conn_state); |
Shobhit Kumar | b029e66 | 2015-06-26 14:32:10 +0530 | [diff] [blame] | 911 | |
Uma Shankar | bbdf0b2 | 2017-02-08 16:20:56 +0530 | [diff] [blame] | 912 | /* |
Hans de Goede | 3983145 | 2017-03-01 15:15:03 +0200 | [diff] [blame] | 913 | * According to the spec we should send SHUTDOWN before |
| 914 | * MIPI_SEQ_DISPLAY_OFF only for v3+ VBTs, but field testing |
| 915 | * has shown that the v3 sequence works for v2 VBTs too |
| 916 | */ |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 917 | if (is_vid_mode(intel_dsi)) { |
| 918 | /* Send Shutdown command to the panel in LP mode */ |
Jani Nikula | f03e417 | 2015-01-16 14:27:16 +0200 | [diff] [blame] | 919 | for_each_dsi_port(port, intel_dsi->ports) |
Jani Nikula | a2581a9 | 2015-01-16 14:27:26 +0200 | [diff] [blame] | 920 | dpi_send_cmd(intel_dsi, SHUTDOWN, false, port); |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 921 | msleep(10); |
| 922 | } |
| 923 | } |
| 924 | |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 925 | static void intel_dsi_clear_device_ready(struct intel_encoder *encoder) |
| 926 | { |
| 927 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
| 928 | |
| 929 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv) || |
| 930 | IS_BROXTON(dev_priv)) |
| 931 | vlv_dsi_clear_device_ready(encoder); |
| 932 | else if (IS_GEMINILAKE(dev_priv)) |
| 933 | glk_dsi_clear_device_ready(encoder); |
| 934 | } |
| 935 | |
Maarten Lankhorst | fd6bbda | 2016-08-09 17:04:04 +0200 | [diff] [blame] | 936 | static void intel_dsi_post_disable(struct intel_encoder *encoder, |
Ville Syrjälä | 5f88a9c | 2017-08-18 16:49:58 +0300 | [diff] [blame] | 937 | const struct intel_crtc_state *pipe_config, |
| 938 | const struct drm_connector_state *conn_state) |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 939 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 940 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 941 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 942 | enum port port; |
Uma Shankar | 1881a42 | 2017-01-25 19:43:23 +0530 | [diff] [blame] | 943 | u32 val; |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 944 | |
| 945 | DRM_DEBUG_KMS("\n"); |
| 946 | |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 947 | if (is_vid_mode(intel_dsi)) { |
| 948 | for_each_dsi_port(port, intel_dsi->ports) |
| 949 | wait_for_dsi_fifo_empty(intel_dsi, port); |
| 950 | |
| 951 | intel_dsi_port_disable(encoder); |
| 952 | usleep_range(2000, 5000); |
| 953 | } |
| 954 | |
Hans de Goede | c7991ec | 2017-02-28 11:26:18 +0200 | [diff] [blame] | 955 | intel_dsi_unprepare(encoder); |
Hans de Goede | 5a2e65e7 | 2017-02-28 11:26:17 +0200 | [diff] [blame] | 956 | |
| 957 | /* |
| 958 | * if disable packets are sent before sending shutdown packet then in |
| 959 | * some next enable sequence send turn on packet error is observed |
| 960 | */ |
Hans de Goede | 7108b43 | 2017-03-01 15:15:04 +0200 | [diff] [blame] | 961 | if (is_cmd_mode(intel_dsi)) |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 962 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_TEAR_OFF); |
| 963 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_OFF); |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 964 | |
Hans de Goede | 3e40fa8 | 2017-03-01 15:15:01 +0200 | [diff] [blame] | 965 | /* Transition to LP-00 */ |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 966 | intel_dsi_clear_device_ready(encoder); |
| 967 | |
Uma Shankar | 1881a42 | 2017-01-25 19:43:23 +0530 | [diff] [blame] | 968 | if (IS_BROXTON(dev_priv)) { |
| 969 | /* Power down DSI regulator to save power */ |
| 970 | I915_WRITE(BXT_P_DSI_REGULATOR_CFG, STAP_SELECT); |
| 971 | I915_WRITE(BXT_P_DSI_REGULATOR_TX_CTRL, HS_IO_CTRL_SELECT); |
| 972 | |
| 973 | /* Add MIPI IO reset programming for modeset */ |
| 974 | val = I915_READ(BXT_P_CR_GT_DISP_PWRON); |
| 975 | I915_WRITE(BXT_P_CR_GT_DISP_PWRON, |
| 976 | val & ~MIPIO_RST_CTRL); |
| 977 | } |
| 978 | |
Hans de Goede | e840fd3 | 2016-12-01 21:29:13 +0100 | [diff] [blame] | 979 | intel_disable_dsi_pll(encoder); |
| 980 | |
Ville Syrjälä | d1877c0 | 2016-04-18 19:18:25 +0300 | [diff] [blame] | 981 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Uma Shankar | d6e3af5 | 2016-02-18 13:49:26 +0200 | [diff] [blame] | 982 | u32 val; |
| 983 | |
| 984 | val = I915_READ(DSPCLK_GATE_D); |
| 985 | val &= ~DPOUNIT_CLOCK_GATE_DISABLE; |
| 986 | I915_WRITE(DSPCLK_GATE_D, val); |
| 987 | } |
Shobhit Kumar | 20e5bf6 | 2014-04-09 13:59:32 +0530 | [diff] [blame] | 988 | |
Hans de Goede | 3e40fa8 | 2017-03-01 15:15:01 +0200 | [diff] [blame] | 989 | /* Assert reset */ |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 990 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_ASSERT_RESET); |
Shobhit Kumar | df38e65 | 2014-04-14 11:18:26 +0530 | [diff] [blame] | 991 | |
Hans de Goede | c7dc527 | 2017-03-01 15:14:59 +0200 | [diff] [blame] | 992 | /* Power off, try both CRC pmic gpio and VBT */ |
Hans de Goede | 25b4620 | 2017-03-01 15:15:06 +0200 | [diff] [blame] | 993 | intel_dsi_msleep(intel_dsi, intel_dsi->panel_off_delay); |
Jani Nikula | b0dd688 | 2017-03-06 16:31:27 +0200 | [diff] [blame] | 994 | intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_OFF); |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 995 | if (intel_dsi->gpio_panel) |
| 996 | gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0); |
Ville Syrjälä | 1d5c65e | 2016-04-18 19:17:51 +0300 | [diff] [blame] | 997 | |
| 998 | /* |
| 999 | * FIXME As we do with eDP, just make a note of the time here |
| 1000 | * and perform the wait before the next panel power on. |
| 1001 | */ |
Hans de Goede | 25b4620 | 2017-03-01 15:15:06 +0200 | [diff] [blame] | 1002 | intel_dsi_msleep(intel_dsi, intel_dsi->panel_pwr_cycle_delay); |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 1003 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1004 | |
| 1005 | static bool intel_dsi_get_hw_state(struct intel_encoder *encoder, |
| 1006 | enum pipe *pipe) |
| 1007 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 1008 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
Gaurav K Singh | c0beefd | 2014-12-09 10:59:20 +0530 | [diff] [blame] | 1009 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Jani Nikula | e7d7cad | 2014-11-14 16:54:21 +0200 | [diff] [blame] | 1010 | enum port port; |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 1011 | bool active = false; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1012 | |
| 1013 | DRM_DEBUG_KMS("\n"); |
| 1014 | |
Ander Conselvan de Oliveira | 79f255a | 2017-02-22 08:34:27 +0200 | [diff] [blame] | 1015 | if (!intel_display_power_get_if_enabled(dev_priv, |
| 1016 | encoder->power_domain)) |
Imre Deak | 6d129be | 2014-03-05 16:20:54 +0200 | [diff] [blame] | 1017 | return false; |
| 1018 | |
Imre Deak | db18b6a | 2016-03-24 12:41:40 +0200 | [diff] [blame] | 1019 | /* |
| 1020 | * On Broxton the PLL needs to be enabled with a valid divider |
| 1021 | * configuration, otherwise accessing DSI registers will hang the |
| 1022 | * machine. See BSpec North Display Engine registers/MIPI[BXT]. |
| 1023 | */ |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1024 | if (IS_GEN9_LP(dev_priv) && !intel_dsi_pll_is_enabled(dev_priv)) |
Imre Deak | db18b6a | 2016-03-24 12:41:40 +0200 | [diff] [blame] | 1025 | goto out_put_power; |
| 1026 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1027 | /* XXX: this only works for one DSI output */ |
Gaurav K Singh | c0beefd | 2014-12-09 10:59:20 +0530 | [diff] [blame] | 1028 | for_each_dsi_port(port, intel_dsi->ports) { |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1029 | i915_reg_t ctrl_reg = IS_GEN9_LP(dev_priv) ? |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 1030 | BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port); |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 1031 | bool enabled = I915_READ(ctrl_reg) & DPI_ENABLE; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1032 | |
Jani Nikula | e6f5778 | 2016-04-15 15:47:31 +0300 | [diff] [blame] | 1033 | /* |
| 1034 | * Due to some hardware limitations on VLV/CHV, the DPI enable |
| 1035 | * bit in port C control register does not get set. As a |
| 1036 | * workaround, check pipe B conf instead. |
Gaurav K Singh | c0beefd | 2014-12-09 10:59:20 +0530 | [diff] [blame] | 1037 | */ |
Tvrtko Ursulin | 920a14b | 2016-10-14 10:13:44 +0100 | [diff] [blame] | 1038 | if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) && |
| 1039 | port == PORT_C) |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 1040 | enabled = I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE; |
Gaurav K Singh | c0beefd | 2014-12-09 10:59:20 +0530 | [diff] [blame] | 1041 | |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 1042 | /* Try command mode if video mode not enabled */ |
| 1043 | if (!enabled) { |
| 1044 | u32 tmp = I915_READ(MIPI_DSI_FUNC_PRG(port)); |
| 1045 | enabled = tmp & CMD_MODE_DATA_WIDTH_MASK; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1046 | } |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 1047 | |
| 1048 | if (!enabled) |
| 1049 | continue; |
| 1050 | |
| 1051 | if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY)) |
| 1052 | continue; |
| 1053 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1054 | if (IS_GEN9_LP(dev_priv)) { |
Jani Nikula | 6b93e9c | 2016-03-15 21:51:12 +0200 | [diff] [blame] | 1055 | u32 tmp = I915_READ(MIPI_CTRL(port)); |
| 1056 | tmp &= BXT_PIPE_SELECT_MASK; |
| 1057 | tmp >>= BXT_PIPE_SELECT_SHIFT; |
| 1058 | |
| 1059 | if (WARN_ON(tmp > PIPE_C)) |
| 1060 | continue; |
| 1061 | |
| 1062 | *pipe = tmp; |
| 1063 | } else { |
| 1064 | *pipe = port == PORT_A ? PIPE_A : PIPE_B; |
| 1065 | } |
| 1066 | |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 1067 | active = true; |
| 1068 | break; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1069 | } |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 1070 | |
Imre Deak | db18b6a | 2016-03-24 12:41:40 +0200 | [diff] [blame] | 1071 | out_put_power: |
Ander Conselvan de Oliveira | 79f255a | 2017-02-22 08:34:27 +0200 | [diff] [blame] | 1072 | intel_display_power_put(dev_priv, encoder->power_domain); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1073 | |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 1074 | return active; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1075 | } |
| 1076 | |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1077 | static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder, |
Ville Syrjälä | 5f88a9c | 2017-08-18 16:49:58 +0300 | [diff] [blame] | 1078 | struct intel_crtc_state *pipe_config) |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1079 | { |
| 1080 | struct drm_device *dev = encoder->base.dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 1081 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1082 | struct drm_display_mode *adjusted_mode = |
| 1083 | &pipe_config->base.adjusted_mode; |
Ramalingam C | 042ab0c | 2016-04-19 13:48:14 +0530 | [diff] [blame] | 1084 | struct drm_display_mode *adjusted_mode_sw; |
Ville Syrjälä | 3c0628f | 2017-10-31 22:51:15 +0200 | [diff] [blame] | 1085 | struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc); |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1086 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 1087 | unsigned int lane_count = intel_dsi->lane_count; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1088 | unsigned int bpp, fmt; |
| 1089 | enum port port; |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 1090 | u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp; |
Ramalingam C | 042ab0c | 2016-04-19 13:48:14 +0530 | [diff] [blame] | 1091 | u16 hfp_sw, hsync_sw, hbp_sw; |
| 1092 | u16 crtc_htotal_sw, crtc_hsync_start_sw, crtc_hsync_end_sw, |
| 1093 | crtc_hblank_start_sw, crtc_hblank_end_sw; |
| 1094 | |
Maarten Lankhorst | 5eff0ed | 2016-08-09 17:04:09 +0200 | [diff] [blame] | 1095 | /* FIXME: hw readout should not depend on SW state */ |
Ville Syrjälä | 3c0628f | 2017-10-31 22:51:15 +0200 | [diff] [blame] | 1096 | adjusted_mode_sw = &crtc->config->base.adjusted_mode; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1097 | |
| 1098 | /* |
| 1099 | * Atleast one port is active as encoder->get_config called only if |
| 1100 | * encoder->get_hw_state() returns true. |
| 1101 | */ |
| 1102 | for_each_dsi_port(port, intel_dsi->ports) { |
| 1103 | if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE) |
| 1104 | break; |
| 1105 | } |
| 1106 | |
| 1107 | fmt = I915_READ(MIPI_DSI_FUNC_PRG(port)) & VID_MODE_FORMAT_MASK; |
| 1108 | pipe_config->pipe_bpp = |
| 1109 | mipi_dsi_pixel_format_to_bpp( |
| 1110 | pixel_format_from_register_bits(fmt)); |
| 1111 | bpp = pipe_config->pipe_bpp; |
| 1112 | |
Uma Shankar | aec0246 | 2017-09-25 19:26:01 +0530 | [diff] [blame] | 1113 | /* Enable Frame time stamo based scanline reporting */ |
| 1114 | adjusted_mode->private_flags |= |
| 1115 | I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP; |
| 1116 | |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1117 | /* In terms of pixels */ |
| 1118 | adjusted_mode->crtc_hdisplay = |
| 1119 | I915_READ(BXT_MIPI_TRANS_HACTIVE(port)); |
| 1120 | adjusted_mode->crtc_vdisplay = |
| 1121 | I915_READ(BXT_MIPI_TRANS_VACTIVE(port)); |
| 1122 | adjusted_mode->crtc_vtotal = |
| 1123 | I915_READ(BXT_MIPI_TRANS_VTOTAL(port)); |
| 1124 | |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 1125 | hactive = adjusted_mode->crtc_hdisplay; |
| 1126 | hfp = I915_READ(MIPI_HFP_COUNT(port)); |
| 1127 | |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1128 | /* |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 1129 | * Meaningful for video mode non-burst sync pulse mode only, |
| 1130 | * can be zero for non-burst sync events and burst modes |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1131 | */ |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 1132 | hsync = I915_READ(MIPI_HSYNC_PADDING_COUNT(port)); |
| 1133 | hbp = I915_READ(MIPI_HBP_COUNT(port)); |
| 1134 | |
| 1135 | /* harizontal values are in terms of high speed byte clock */ |
| 1136 | hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count, |
| 1137 | intel_dsi->burst_mode_ratio); |
| 1138 | hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count, |
| 1139 | intel_dsi->burst_mode_ratio); |
| 1140 | hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count, |
| 1141 | intel_dsi->burst_mode_ratio); |
| 1142 | |
| 1143 | if (intel_dsi->dual_link) { |
| 1144 | hfp *= 2; |
| 1145 | hsync *= 2; |
| 1146 | hbp *= 2; |
| 1147 | } |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1148 | |
| 1149 | /* vertical values are in terms of lines */ |
| 1150 | vfp = I915_READ(MIPI_VFP_COUNT(port)); |
| 1151 | vsync = I915_READ(MIPI_VSYNC_PADDING_COUNT(port)); |
| 1152 | vbp = I915_READ(MIPI_VBP_COUNT(port)); |
| 1153 | |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 1154 | adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp; |
| 1155 | adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay; |
| 1156 | adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1157 | adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay; |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 1158 | adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1159 | |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 1160 | adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay; |
| 1161 | adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1162 | adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay; |
| 1163 | adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1164 | |
Ramalingam C | 042ab0c | 2016-04-19 13:48:14 +0530 | [diff] [blame] | 1165 | /* |
| 1166 | * In BXT DSI there is no regs programmed with few horizontal timings |
| 1167 | * in Pixels but txbyteclkhs.. So retrieval process adds some |
| 1168 | * ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs. |
| 1169 | * Actually here for the given adjusted_mode, we are calculating the |
| 1170 | * value programmed to the port and then back to the horizontal timing |
| 1171 | * param in pixels. This is the expected value, including roundup errors |
| 1172 | * And if that is same as retrieved value from port, then |
| 1173 | * (HW state) adjusted_mode's horizontal timings are corrected to |
| 1174 | * match with SW state to nullify the errors. |
| 1175 | */ |
| 1176 | /* Calculating the value programmed to the Port register */ |
| 1177 | hfp_sw = adjusted_mode_sw->crtc_hsync_start - |
| 1178 | adjusted_mode_sw->crtc_hdisplay; |
| 1179 | hsync_sw = adjusted_mode_sw->crtc_hsync_end - |
| 1180 | adjusted_mode_sw->crtc_hsync_start; |
| 1181 | hbp_sw = adjusted_mode_sw->crtc_htotal - |
| 1182 | adjusted_mode_sw->crtc_hsync_end; |
| 1183 | |
| 1184 | if (intel_dsi->dual_link) { |
| 1185 | hfp_sw /= 2; |
| 1186 | hsync_sw /= 2; |
| 1187 | hbp_sw /= 2; |
| 1188 | } |
| 1189 | |
| 1190 | hfp_sw = txbyteclkhs(hfp_sw, bpp, lane_count, |
| 1191 | intel_dsi->burst_mode_ratio); |
| 1192 | hsync_sw = txbyteclkhs(hsync_sw, bpp, lane_count, |
| 1193 | intel_dsi->burst_mode_ratio); |
| 1194 | hbp_sw = txbyteclkhs(hbp_sw, bpp, lane_count, |
| 1195 | intel_dsi->burst_mode_ratio); |
| 1196 | |
| 1197 | /* Reverse calculating the adjusted mode parameters from port reg vals*/ |
| 1198 | hfp_sw = pixels_from_txbyteclkhs(hfp_sw, bpp, lane_count, |
| 1199 | intel_dsi->burst_mode_ratio); |
| 1200 | hsync_sw = pixels_from_txbyteclkhs(hsync_sw, bpp, lane_count, |
| 1201 | intel_dsi->burst_mode_ratio); |
| 1202 | hbp_sw = pixels_from_txbyteclkhs(hbp_sw, bpp, lane_count, |
| 1203 | intel_dsi->burst_mode_ratio); |
| 1204 | |
| 1205 | if (intel_dsi->dual_link) { |
| 1206 | hfp_sw *= 2; |
| 1207 | hsync_sw *= 2; |
| 1208 | hbp_sw *= 2; |
| 1209 | } |
| 1210 | |
| 1211 | crtc_htotal_sw = adjusted_mode_sw->crtc_hdisplay + hfp_sw + |
| 1212 | hsync_sw + hbp_sw; |
| 1213 | crtc_hsync_start_sw = hfp_sw + adjusted_mode_sw->crtc_hdisplay; |
| 1214 | crtc_hsync_end_sw = hsync_sw + crtc_hsync_start_sw; |
| 1215 | crtc_hblank_start_sw = adjusted_mode_sw->crtc_hdisplay; |
| 1216 | crtc_hblank_end_sw = crtc_htotal_sw; |
| 1217 | |
| 1218 | if (adjusted_mode->crtc_htotal == crtc_htotal_sw) |
| 1219 | adjusted_mode->crtc_htotal = adjusted_mode_sw->crtc_htotal; |
| 1220 | |
| 1221 | if (adjusted_mode->crtc_hsync_start == crtc_hsync_start_sw) |
| 1222 | adjusted_mode->crtc_hsync_start = |
| 1223 | adjusted_mode_sw->crtc_hsync_start; |
| 1224 | |
| 1225 | if (adjusted_mode->crtc_hsync_end == crtc_hsync_end_sw) |
| 1226 | adjusted_mode->crtc_hsync_end = |
| 1227 | adjusted_mode_sw->crtc_hsync_end; |
| 1228 | |
| 1229 | if (adjusted_mode->crtc_hblank_start == crtc_hblank_start_sw) |
| 1230 | adjusted_mode->crtc_hblank_start = |
| 1231 | adjusted_mode_sw->crtc_hblank_start; |
| 1232 | |
| 1233 | if (adjusted_mode->crtc_hblank_end == crtc_hblank_end_sw) |
| 1234 | adjusted_mode->crtc_hblank_end = |
| 1235 | adjusted_mode_sw->crtc_hblank_end; |
| 1236 | } |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1237 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1238 | static void intel_dsi_get_config(struct intel_encoder *encoder, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 1239 | struct intel_crtc_state *pipe_config) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1240 | { |
Tvrtko Ursulin | e2d214a | 2016-10-13 11:03:04 +0100 | [diff] [blame] | 1241 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
Jani Nikula | d7d85d8 | 2016-01-08 12:45:39 +0200 | [diff] [blame] | 1242 | u32 pclk; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1243 | DRM_DEBUG_KMS("\n"); |
| 1244 | |
Ville Syrjälä | e1214b9 | 2017-10-27 22:31:23 +0300 | [diff] [blame] | 1245 | pipe_config->output_types |= BIT(INTEL_OUTPUT_DSI); |
| 1246 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1247 | if (IS_GEN9_LP(dev_priv)) |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 1248 | bxt_dsi_get_pipe_config(encoder, pipe_config); |
| 1249 | |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 1250 | pclk = intel_dsi_get_pclk(encoder, pipe_config->pipe_bpp, |
| 1251 | pipe_config); |
Shobhit Kumar | f573de5 | 2014-07-30 20:32:37 +0530 | [diff] [blame] | 1252 | if (!pclk) |
| 1253 | return; |
| 1254 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 1255 | pipe_config->base.adjusted_mode.crtc_clock = pclk; |
Shobhit Kumar | f573de5 | 2014-07-30 20:32:37 +0530 | [diff] [blame] | 1256 | pipe_config->port_clock = pclk; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1257 | } |
| 1258 | |
Damien Lespiau | c19de8e | 2013-11-28 15:29:18 +0000 | [diff] [blame] | 1259 | static enum drm_mode_status |
| 1260 | intel_dsi_mode_valid(struct drm_connector *connector, |
| 1261 | struct drm_display_mode *mode) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1262 | { |
| 1263 | struct intel_connector *intel_connector = to_intel_connector(connector); |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1264 | const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode; |
Mika Kahola | 759a1e9 | 2015-08-18 14:37:01 +0300 | [diff] [blame] | 1265 | int max_dotclk = to_i915(connector->dev)->max_dotclk_freq; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1266 | |
| 1267 | DRM_DEBUG_KMS("\n"); |
| 1268 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1269 | if (fixed_mode) { |
| 1270 | if (mode->hdisplay > fixed_mode->hdisplay) |
| 1271 | return MODE_PANEL; |
| 1272 | if (mode->vdisplay > fixed_mode->vdisplay) |
| 1273 | return MODE_PANEL; |
Mika Kahola | 759a1e9 | 2015-08-18 14:37:01 +0300 | [diff] [blame] | 1274 | if (fixed_mode->clock > max_dotclk) |
| 1275 | return MODE_CLOCK_HIGH; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1276 | } |
| 1277 | |
Jani Nikula | 36d21f4 | 2015-01-16 14:27:20 +0200 | [diff] [blame] | 1278 | return MODE_OK; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1279 | } |
| 1280 | |
| 1281 | /* return txclkesc cycles in terms of divider and duration in us */ |
| 1282 | static u16 txclkesc(u32 divider, unsigned int us) |
| 1283 | { |
| 1284 | switch (divider) { |
| 1285 | case ESCAPE_CLOCK_DIVIDER_1: |
| 1286 | default: |
| 1287 | return 20 * us; |
| 1288 | case ESCAPE_CLOCK_DIVIDER_2: |
| 1289 | return 10 * us; |
| 1290 | case ESCAPE_CLOCK_DIVIDER_4: |
| 1291 | return 5 * us; |
| 1292 | } |
| 1293 | } |
| 1294 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1295 | static void set_dsi_timings(struct drm_encoder *encoder, |
Ville Syrjälä | 5e7234c | 2015-09-25 16:37:43 +0300 | [diff] [blame] | 1296 | const struct drm_display_mode *adjusted_mode) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1297 | { |
| 1298 | struct drm_device *dev = encoder->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 1299 | struct drm_i915_private *dev_priv = to_i915(dev); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1300 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1301 | enum port port; |
Jani Nikula | 1e78aa0 | 2016-03-16 12:21:40 +0200 | [diff] [blame] | 1302 | unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1303 | unsigned int lane_count = intel_dsi->lane_count; |
| 1304 | |
| 1305 | u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp; |
| 1306 | |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1307 | hactive = adjusted_mode->crtc_hdisplay; |
| 1308 | hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay; |
| 1309 | hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start; |
| 1310 | hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1311 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1312 | if (intel_dsi->dual_link) { |
| 1313 | hactive /= 2; |
| 1314 | if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) |
| 1315 | hactive += intel_dsi->pixel_overlap; |
| 1316 | hfp /= 2; |
| 1317 | hsync /= 2; |
| 1318 | hbp /= 2; |
| 1319 | } |
| 1320 | |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1321 | vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay; |
| 1322 | vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start; |
| 1323 | vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1324 | |
| 1325 | /* horizontal values are in terms of high speed byte clock */ |
Shobhit Kumar | 7f0c860 | 2014-07-30 20:34:57 +0530 | [diff] [blame] | 1326 | hactive = txbyteclkhs(hactive, bpp, lane_count, |
Daniel Vetter | 7f3de83 | 2014-07-30 22:34:27 +0200 | [diff] [blame] | 1327 | intel_dsi->burst_mode_ratio); |
Shobhit Kumar | 7f0c860 | 2014-07-30 20:34:57 +0530 | [diff] [blame] | 1328 | hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio); |
| 1329 | hsync = txbyteclkhs(hsync, bpp, lane_count, |
Daniel Vetter | 7f3de83 | 2014-07-30 22:34:27 +0200 | [diff] [blame] | 1330 | intel_dsi->burst_mode_ratio); |
Shobhit Kumar | 7f0c860 | 2014-07-30 20:34:57 +0530 | [diff] [blame] | 1331 | hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1332 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1333 | for_each_dsi_port(port, intel_dsi->ports) { |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1334 | if (IS_GEN9_LP(dev_priv)) { |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1335 | /* |
| 1336 | * Program hdisplay and vdisplay on MIPI transcoder. |
| 1337 | * This is different from calculated hactive and |
| 1338 | * vactive, as they are calculated per channel basis, |
| 1339 | * whereas these values should be based on resolution. |
| 1340 | */ |
| 1341 | I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1342 | adjusted_mode->crtc_hdisplay); |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1343 | I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1344 | adjusted_mode->crtc_vdisplay); |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1345 | I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1346 | adjusted_mode->crtc_vtotal); |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1347 | } |
| 1348 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1349 | I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive); |
| 1350 | I915_WRITE(MIPI_HFP_COUNT(port), hfp); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1351 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1352 | /* meaningful for video mode non-burst sync pulse mode only, |
| 1353 | * can be zero for non-burst sync events and burst modes */ |
| 1354 | I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync); |
| 1355 | I915_WRITE(MIPI_HBP_COUNT(port), hbp); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1356 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1357 | /* vertical values are in terms of lines */ |
| 1358 | I915_WRITE(MIPI_VFP_COUNT(port), vfp); |
| 1359 | I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync); |
| 1360 | I915_WRITE(MIPI_VBP_COUNT(port), vbp); |
| 1361 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1362 | } |
| 1363 | |
Jani Nikula | 1e78aa0 | 2016-03-16 12:21:40 +0200 | [diff] [blame] | 1364 | static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt) |
| 1365 | { |
| 1366 | switch (fmt) { |
| 1367 | case MIPI_DSI_FMT_RGB888: |
| 1368 | return VID_MODE_FORMAT_RGB888; |
| 1369 | case MIPI_DSI_FMT_RGB666: |
| 1370 | return VID_MODE_FORMAT_RGB666; |
| 1371 | case MIPI_DSI_FMT_RGB666_PACKED: |
| 1372 | return VID_MODE_FORMAT_RGB666_PACKED; |
| 1373 | case MIPI_DSI_FMT_RGB565: |
| 1374 | return VID_MODE_FORMAT_RGB565; |
| 1375 | default: |
| 1376 | MISSING_CASE(fmt); |
| 1377 | return VID_MODE_FORMAT_RGB666; |
| 1378 | } |
| 1379 | } |
| 1380 | |
Maarten Lankhorst | 5eff0ed | 2016-08-09 17:04:09 +0200 | [diff] [blame] | 1381 | static void intel_dsi_prepare(struct intel_encoder *intel_encoder, |
Ville Syrjälä | 5f88a9c | 2017-08-18 16:49:58 +0300 | [diff] [blame] | 1382 | const struct intel_crtc_state *pipe_config) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1383 | { |
| 1384 | struct drm_encoder *encoder = &intel_encoder->base; |
| 1385 | struct drm_device *dev = encoder->dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 1386 | struct drm_i915_private *dev_priv = to_i915(dev); |
Maarten Lankhorst | 5eff0ed | 2016-08-09 17:04:09 +0200 | [diff] [blame] | 1387 | struct intel_crtc *intel_crtc = to_intel_crtc(pipe_config->base.crtc); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1388 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); |
Maarten Lankhorst | 5eff0ed | 2016-08-09 17:04:09 +0200 | [diff] [blame] | 1389 | const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode; |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1390 | enum port port; |
Jani Nikula | 1e78aa0 | 2016-03-16 12:21:40 +0200 | [diff] [blame] | 1391 | unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1392 | u32 val, tmp; |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1393 | u16 mode_hdisplay; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1394 | |
Jani Nikula | e7d7cad | 2014-11-14 16:54:21 +0200 | [diff] [blame] | 1395 | DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe)); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1396 | |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1397 | mode_hdisplay = adjusted_mode->crtc_hdisplay; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1398 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1399 | if (intel_dsi->dual_link) { |
| 1400 | mode_hdisplay /= 2; |
| 1401 | if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) |
| 1402 | mode_hdisplay += intel_dsi->pixel_overlap; |
| 1403 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1404 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1405 | for_each_dsi_port(port, intel_dsi->ports) { |
Tvrtko Ursulin | 920a14b | 2016-10-14 10:13:44 +0100 | [diff] [blame] | 1406 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1407 | /* |
| 1408 | * escape clock divider, 20MHz, shared for A and C. |
| 1409 | * device ready must be off when doing this! txclkesc? |
| 1410 | */ |
| 1411 | tmp = I915_READ(MIPI_CTRL(PORT_A)); |
| 1412 | tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK; |
| 1413 | I915_WRITE(MIPI_CTRL(PORT_A), tmp | |
| 1414 | ESCAPE_CLOCK_DIVIDER_1); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1415 | |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1416 | /* read request priority is per pipe */ |
| 1417 | tmp = I915_READ(MIPI_CTRL(port)); |
| 1418 | tmp &= ~READ_REQUEST_PRIORITY_MASK; |
| 1419 | I915_WRITE(MIPI_CTRL(port), tmp | |
| 1420 | READ_REQUEST_PRIORITY_HIGH); |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1421 | } else if (IS_GEN9_LP(dev_priv)) { |
Deepak M | 56c4897 | 2015-12-09 20:14:04 +0530 | [diff] [blame] | 1422 | enum pipe pipe = intel_crtc->pipe; |
| 1423 | |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1424 | tmp = I915_READ(MIPI_CTRL(port)); |
| 1425 | tmp &= ~BXT_PIPE_SELECT_MASK; |
| 1426 | |
Deepak M | 56c4897 | 2015-12-09 20:14:04 +0530 | [diff] [blame] | 1427 | tmp |= BXT_PIPE_SELECT(pipe); |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1428 | I915_WRITE(MIPI_CTRL(port), tmp); |
| 1429 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1430 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1431 | /* XXX: why here, why like this? handling in irq handler?! */ |
| 1432 | I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff); |
| 1433 | I915_WRITE(MIPI_INTR_EN(port), 0xffffffff); |
| 1434 | |
| 1435 | I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg); |
| 1436 | |
| 1437 | I915_WRITE(MIPI_DPI_RESOLUTION(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1438 | adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1439 | mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT); |
| 1440 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1441 | |
| 1442 | set_dsi_timings(encoder, adjusted_mode); |
| 1443 | |
| 1444 | val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT; |
| 1445 | if (is_cmd_mode(intel_dsi)) { |
| 1446 | val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT; |
| 1447 | val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */ |
| 1448 | } else { |
| 1449 | val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT; |
Jani Nikula | 1e78aa0 | 2016-03-16 12:21:40 +0200 | [diff] [blame] | 1450 | val |= pixel_format_to_reg(intel_dsi->pixel_format); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1451 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1452 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1453 | tmp = 0; |
Shobhit Kumar | f1c79f1 | 2014-04-09 13:59:33 +0530 | [diff] [blame] | 1454 | if (intel_dsi->eotp_pkt == 0) |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1455 | tmp |= EOT_DISABLE; |
Shobhit Kumar | f1c79f1 | 2014-04-09 13:59:33 +0530 | [diff] [blame] | 1456 | if (intel_dsi->clock_stop) |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1457 | tmp |= CLOCKSTOP; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1458 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1459 | if (IS_GEN9_LP(dev_priv)) { |
Jani Nikula | f90e8c3 | 2016-06-03 17:57:05 +0300 | [diff] [blame] | 1460 | tmp |= BXT_DPHY_DEFEATURE_EN; |
| 1461 | if (!is_cmd_mode(intel_dsi)) |
| 1462 | tmp |= BXT_DEFEATURE_DPI_FIFO_CTR; |
| 1463 | } |
| 1464 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1465 | for_each_dsi_port(port, intel_dsi->ports) { |
| 1466 | I915_WRITE(MIPI_DSI_FUNC_PRG(port), val); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1467 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1468 | /* timeouts for recovery. one frame IIUC. if counter expires, |
| 1469 | * EOT and stop state. */ |
Shobhit Kumar | cf4dbd2 | 2014-04-14 11:18:25 +0530 | [diff] [blame] | 1470 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1471 | /* |
| 1472 | * In burst mode, value greater than one DPI line Time in byte |
| 1473 | * clock (txbyteclkhs) To timeout this timer 1+ of the above |
| 1474 | * said value is recommended. |
| 1475 | * |
| 1476 | * In non-burst mode, Value greater than one DPI frame time in |
| 1477 | * byte clock(txbyteclkhs) To timeout this timer 1+ of the above |
| 1478 | * said value is recommended. |
| 1479 | * |
| 1480 | * In DBI only mode, value greater than one DBI frame time in |
| 1481 | * byte clock(txbyteclkhs) To timeout this timer 1+ of the above |
| 1482 | * said value is recommended. |
| 1483 | */ |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1484 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1485 | if (is_vid_mode(intel_dsi) && |
| 1486 | intel_dsi->video_mode_format == VIDEO_MODE_BURST) { |
| 1487 | I915_WRITE(MIPI_HS_TX_TIMEOUT(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1488 | txbyteclkhs(adjusted_mode->crtc_htotal, bpp, |
Ville Syrjälä | 124abe0 | 2015-09-08 13:40:45 +0300 | [diff] [blame] | 1489 | intel_dsi->lane_count, |
| 1490 | intel_dsi->burst_mode_ratio) + 1); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1491 | } else { |
| 1492 | I915_WRITE(MIPI_HS_TX_TIMEOUT(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1493 | txbyteclkhs(adjusted_mode->crtc_vtotal * |
| 1494 | adjusted_mode->crtc_htotal, |
Ville Syrjälä | 124abe0 | 2015-09-08 13:40:45 +0300 | [diff] [blame] | 1495 | bpp, intel_dsi->lane_count, |
| 1496 | intel_dsi->burst_mode_ratio) + 1); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1497 | } |
| 1498 | I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout); |
| 1499 | I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port), |
| 1500 | intel_dsi->turn_arnd_val); |
| 1501 | I915_WRITE(MIPI_DEVICE_RESET_TIMER(port), |
| 1502 | intel_dsi->rst_timer_val); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1503 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1504 | /* dphy stuff */ |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1505 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1506 | /* in terms of low power clock */ |
| 1507 | I915_WRITE(MIPI_INIT_COUNT(port), |
| 1508 | txclkesc(intel_dsi->escape_clk_div, 100)); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1509 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1510 | if (IS_GEN9_LP(dev_priv) && (!intel_dsi->dual_link)) { |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1511 | /* |
| 1512 | * BXT spec says write MIPI_INIT_COUNT for |
| 1513 | * both the ports, even if only one is |
| 1514 | * getting used. So write the other port |
| 1515 | * if not in dual link mode. |
| 1516 | */ |
| 1517 | I915_WRITE(MIPI_INIT_COUNT(port == |
| 1518 | PORT_A ? PORT_C : PORT_A), |
| 1519 | intel_dsi->init_count); |
| 1520 | } |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1521 | |
| 1522 | /* recovery disables */ |
Shobhit Kumar | 87c54d0 | 2015-02-03 12:17:35 +0530 | [diff] [blame] | 1523 | I915_WRITE(MIPI_EOT_DISABLE(port), tmp); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1524 | |
| 1525 | /* in terms of low power clock */ |
| 1526 | I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count); |
| 1527 | |
| 1528 | /* in terms of txbyteclkhs. actual high to low switch + |
| 1529 | * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK. |
| 1530 | * |
| 1531 | * XXX: write MIPI_STOP_STATE_STALL? |
| 1532 | */ |
| 1533 | I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port), |
| 1534 | intel_dsi->hs_to_lp_count); |
| 1535 | |
| 1536 | /* XXX: low power clock equivalence in terms of byte clock. |
| 1537 | * the number of byte clocks occupied in one low power clock. |
| 1538 | * based on txbyteclkhs and txclkesc. |
| 1539 | * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL |
| 1540 | * ) / 105.??? |
| 1541 | */ |
| 1542 | I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk); |
| 1543 | |
Deepak M | b426f98 | 2017-02-17 18:13:30 +0530 | [diff] [blame] | 1544 | if (IS_GEMINILAKE(dev_priv)) { |
| 1545 | I915_WRITE(MIPI_TLPX_TIME_COUNT(port), |
| 1546 | intel_dsi->lp_byte_clk); |
| 1547 | /* Shadow of DPHY reg */ |
| 1548 | I915_WRITE(MIPI_CLK_LANE_TIMING(port), |
| 1549 | intel_dsi->dphy_reg); |
| 1550 | } |
| 1551 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1552 | /* the bw essential for transmitting 16 long packets containing |
| 1553 | * 252 bytes meant for dcs write memory command is programmed in |
| 1554 | * this register in terms of byte clocks. based on dsi transfer |
| 1555 | * rate and the number of lanes configured the time taken to |
| 1556 | * transmit 16 long packets in a dsi stream varies. */ |
| 1557 | I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer); |
| 1558 | |
| 1559 | I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port), |
| 1560 | intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT | |
| 1561 | intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT); |
| 1562 | |
| 1563 | if (is_vid_mode(intel_dsi)) |
| 1564 | /* Some panels might have resolution which is not a |
| 1565 | * multiple of 64 like 1366 x 768. Enable RANDOM |
| 1566 | * resolution support for such panels by default */ |
| 1567 | I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port), |
| 1568 | intel_dsi->video_frmt_cfg_bits | |
| 1569 | intel_dsi->video_mode_format | |
| 1570 | IP_TG_CONFIG | |
| 1571 | RANDOM_DPI_DISPLAY_RESOLUTION); |
| 1572 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1573 | } |
| 1574 | |
Hans de Goede | c7991ec | 2017-02-28 11:26:18 +0200 | [diff] [blame] | 1575 | static void intel_dsi_unprepare(struct intel_encoder *encoder) |
| 1576 | { |
| 1577 | struct drm_i915_private *dev_priv = to_i915(encoder->base.dev); |
| 1578 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 1579 | enum port port; |
| 1580 | u32 val; |
| 1581 | |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 1582 | if (!IS_GEMINILAKE(dev_priv)) { |
| 1583 | for_each_dsi_port(port, intel_dsi->ports) { |
| 1584 | /* Panel commands can be sent when clock is in LP11 */ |
| 1585 | I915_WRITE(MIPI_DEVICE_READY(port), 0x0); |
Hans de Goede | c7991ec | 2017-02-28 11:26:18 +0200 | [diff] [blame] | 1586 | |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 1587 | intel_dsi_reset_clocks(encoder, port); |
| 1588 | I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP); |
Hans de Goede | c7991ec | 2017-02-28 11:26:18 +0200 | [diff] [blame] | 1589 | |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 1590 | val = I915_READ(MIPI_DSI_FUNC_PRG(port)); |
| 1591 | val &= ~VID_MODE_FORMAT_MASK; |
| 1592 | I915_WRITE(MIPI_DSI_FUNC_PRG(port), val); |
Hans de Goede | c7991ec | 2017-02-28 11:26:18 +0200 | [diff] [blame] | 1593 | |
Deepak M | 4644848 | 2017-03-01 12:51:33 +0530 | [diff] [blame] | 1594 | I915_WRITE(MIPI_DEVICE_READY(port), 0x1); |
| 1595 | } |
Hans de Goede | c7991ec | 2017-02-28 11:26:18 +0200 | [diff] [blame] | 1596 | } |
| 1597 | } |
| 1598 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1599 | static int intel_dsi_get_modes(struct drm_connector *connector) |
| 1600 | { |
| 1601 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 1602 | struct drm_display_mode *mode; |
| 1603 | |
| 1604 | DRM_DEBUG_KMS("\n"); |
| 1605 | |
| 1606 | if (!intel_connector->panel.fixed_mode) { |
| 1607 | DRM_DEBUG_KMS("no fixed mode\n"); |
| 1608 | return 0; |
| 1609 | } |
| 1610 | |
| 1611 | mode = drm_mode_duplicate(connector->dev, |
| 1612 | intel_connector->panel.fixed_mode); |
| 1613 | if (!mode) { |
| 1614 | DRM_DEBUG_KMS("drm_mode_duplicate failed\n"); |
| 1615 | return 0; |
| 1616 | } |
| 1617 | |
| 1618 | drm_mode_probed_add(connector, mode); |
| 1619 | return 1; |
| 1620 | } |
| 1621 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1622 | static void intel_dsi_connector_destroy(struct drm_connector *connector) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1623 | { |
| 1624 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 1625 | |
| 1626 | DRM_DEBUG_KMS("\n"); |
| 1627 | intel_panel_fini(&intel_connector->panel); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1628 | drm_connector_cleanup(connector); |
| 1629 | kfree(connector); |
| 1630 | } |
| 1631 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1632 | static void intel_dsi_encoder_destroy(struct drm_encoder *encoder) |
| 1633 | { |
| 1634 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); |
| 1635 | |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 1636 | /* dispose of the gpios */ |
| 1637 | if (intel_dsi->gpio_panel) |
| 1638 | gpiod_put(intel_dsi->gpio_panel); |
| 1639 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1640 | intel_encoder_destroy(encoder); |
| 1641 | } |
| 1642 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1643 | static const struct drm_encoder_funcs intel_dsi_funcs = { |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1644 | .destroy = intel_dsi_encoder_destroy, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1645 | }; |
| 1646 | |
| 1647 | static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = { |
| 1648 | .get_modes = intel_dsi_get_modes, |
| 1649 | .mode_valid = intel_dsi_mode_valid, |
Maarten Lankhorst | ba14a1a | 2017-05-01 15:37:58 +0200 | [diff] [blame] | 1650 | .atomic_check = intel_digital_connector_atomic_check, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1651 | }; |
| 1652 | |
| 1653 | static const struct drm_connector_funcs intel_dsi_connector_funcs = { |
Chris Wilson | 1ebaa0b | 2016-06-24 14:00:15 +0100 | [diff] [blame] | 1654 | .late_register = intel_connector_register, |
Chris Wilson | c191eca | 2016-06-17 11:40:33 +0100 | [diff] [blame] | 1655 | .early_unregister = intel_connector_unregister, |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1656 | .destroy = intel_dsi_connector_destroy, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1657 | .fill_modes = drm_helper_probe_single_connector_modes, |
Maarten Lankhorst | ba14a1a | 2017-05-01 15:37:58 +0200 | [diff] [blame] | 1658 | .atomic_get_property = intel_digital_connector_atomic_get_property, |
| 1659 | .atomic_set_property = intel_digital_connector_atomic_set_property, |
Matt Roper | c6f95f2 | 2015-01-22 16:50:32 -0800 | [diff] [blame] | 1660 | .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, |
Maarten Lankhorst | ba14a1a | 2017-05-01 15:37:58 +0200 | [diff] [blame] | 1661 | .atomic_duplicate_state = intel_digital_connector_duplicate_state, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1662 | }; |
| 1663 | |
Hans de Goede | 82daca2 | 2017-11-25 20:35:51 +0100 | [diff] [blame] | 1664 | static int intel_dsi_get_panel_orientation(struct intel_connector *connector) |
| 1665 | { |
| 1666 | struct drm_i915_private *dev_priv = to_i915(connector->base.dev); |
| 1667 | int orientation = DRM_MODE_PANEL_ORIENTATION_NORMAL; |
Dave Airlie | 3f1f0b1 | 2017-12-08 08:39:14 +1000 | [diff] [blame] | 1668 | enum i9xx_plane_id plane; |
Hans de Goede | 82daca2 | 2017-11-25 20:35:51 +0100 | [diff] [blame] | 1669 | u32 val; |
| 1670 | |
| 1671 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
| 1672 | if (connector->encoder->crtc_mask == BIT(PIPE_B)) |
| 1673 | plane = PLANE_B; |
| 1674 | else |
| 1675 | plane = PLANE_A; |
| 1676 | |
| 1677 | val = I915_READ(DSPCNTR(plane)); |
| 1678 | if (val & DISPPLANE_ROTATE_180) |
| 1679 | orientation = DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP; |
| 1680 | } |
| 1681 | |
| 1682 | return orientation; |
| 1683 | } |
| 1684 | |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1685 | static void intel_dsi_add_properties(struct intel_connector *connector) |
| 1686 | { |
Maarten Lankhorst | 8b45330 | 2017-05-01 15:37:56 +0200 | [diff] [blame] | 1687 | struct drm_i915_private *dev_priv = to_i915(connector->base.dev); |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1688 | |
| 1689 | if (connector->panel.fixed_mode) { |
Maarten Lankhorst | 8b45330 | 2017-05-01 15:37:56 +0200 | [diff] [blame] | 1690 | u32 allowed_scalers; |
| 1691 | |
| 1692 | allowed_scalers = BIT(DRM_MODE_SCALE_ASPECT) | BIT(DRM_MODE_SCALE_FULLSCREEN); |
| 1693 | if (!HAS_GMCH_DISPLAY(dev_priv)) |
| 1694 | allowed_scalers |= BIT(DRM_MODE_SCALE_CENTER); |
| 1695 | |
| 1696 | drm_connector_attach_scaling_mode_property(&connector->base, |
| 1697 | allowed_scalers); |
| 1698 | |
Maarten Lankhorst | eead06d | 2017-05-01 15:37:55 +0200 | [diff] [blame] | 1699 | connector->base.state->scaling_mode = DRM_MODE_SCALE_ASPECT; |
Hans de Goede | 82daca2 | 2017-11-25 20:35:51 +0100 | [diff] [blame] | 1700 | |
| 1701 | connector->base.display_info.panel_orientation = |
| 1702 | intel_dsi_get_panel_orientation(connector); |
| 1703 | drm_connector_init_panel_orientation_property( |
| 1704 | &connector->base, |
| 1705 | connector->panel.fixed_mode->hdisplay, |
| 1706 | connector->panel.fixed_mode->vdisplay); |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1707 | } |
| 1708 | } |
| 1709 | |
Ander Conselvan de Oliveira | c39055b | 2016-11-23 16:21:44 +0200 | [diff] [blame] | 1710 | void intel_dsi_init(struct drm_i915_private *dev_priv) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1711 | { |
Ander Conselvan de Oliveira | c39055b | 2016-11-23 16:21:44 +0200 | [diff] [blame] | 1712 | struct drm_device *dev = &dev_priv->drm; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1713 | struct intel_dsi *intel_dsi; |
| 1714 | struct intel_encoder *intel_encoder; |
| 1715 | struct drm_encoder *encoder; |
| 1716 | struct intel_connector *intel_connector; |
| 1717 | struct drm_connector *connector; |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1718 | struct drm_display_mode *scan, *fixed_mode = NULL; |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 1719 | enum port port; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1720 | |
| 1721 | DRM_DEBUG_KMS("\n"); |
| 1722 | |
Shobhit Kumar | 3e6bd01 | 2014-05-27 19:33:59 +0530 | [diff] [blame] | 1723 | /* There is no detection method for MIPI so rely on VBT */ |
Jani Nikula | 7137aec | 2016-03-16 12:43:32 +0200 | [diff] [blame] | 1724 | if (!intel_bios_is_dsi_present(dev_priv, &port)) |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1725 | return; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1726 | |
Tvrtko Ursulin | 920a14b | 2016-10-14 10:13:44 +0100 | [diff] [blame] | 1727 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Shashank Sharma | b6fdd0f | 2014-05-19 20:54:03 +0530 | [diff] [blame] | 1728 | dev_priv->mipi_mmio_base = VLV_MIPI_BASE; |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1729 | } else if (IS_GEN9_LP(dev_priv)) { |
Shashank Sharma | c6c794a | 2016-03-22 12:01:50 +0200 | [diff] [blame] | 1730 | dev_priv->mipi_mmio_base = BXT_MIPI_BASE; |
Shashank Sharma | b6fdd0f | 2014-05-19 20:54:03 +0530 | [diff] [blame] | 1731 | } else { |
| 1732 | DRM_ERROR("Unsupported Mipi device to reg base"); |
Christoph Jaeger | 868d665 | 2014-06-13 21:51:22 +0200 | [diff] [blame] | 1733 | return; |
Shashank Sharma | b6fdd0f | 2014-05-19 20:54:03 +0530 | [diff] [blame] | 1734 | } |
| 1735 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1736 | intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL); |
| 1737 | if (!intel_dsi) |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1738 | return; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1739 | |
Ander Conselvan de Oliveira | 08d9bc9 | 2015-04-10 10:59:10 +0300 | [diff] [blame] | 1740 | intel_connector = intel_connector_alloc(); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1741 | if (!intel_connector) { |
| 1742 | kfree(intel_dsi); |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1743 | return; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1744 | } |
| 1745 | |
| 1746 | intel_encoder = &intel_dsi->base; |
| 1747 | encoder = &intel_encoder->base; |
| 1748 | intel_dsi->attached_connector = intel_connector; |
| 1749 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1750 | connector = &intel_connector->base; |
| 1751 | |
Ville Syrjälä | 13a3d91 | 2015-12-09 16:20:18 +0200 | [diff] [blame] | 1752 | drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI, |
Ville Syrjälä | 580d8ed | 2016-05-27 20:59:24 +0300 | [diff] [blame] | 1753 | "DSI %c", port_name(port)); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1754 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1755 | intel_encoder->compute_config = intel_dsi_compute_config; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1756 | intel_encoder->pre_enable = intel_dsi_pre_enable; |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 1757 | intel_encoder->enable = intel_dsi_enable_nop; |
Jani Nikula | fefc51e | 2017-03-07 11:24:19 +0200 | [diff] [blame] | 1758 | intel_encoder->disable = intel_dsi_disable; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1759 | intel_encoder->post_disable = intel_dsi_post_disable; |
| 1760 | intel_encoder->get_hw_state = intel_dsi_get_hw_state; |
| 1761 | intel_encoder->get_config = intel_dsi_get_config; |
| 1762 | |
| 1763 | intel_connector->get_hw_state = intel_connector_get_hw_state; |
| 1764 | |
Pandiyan, Dhinakaran | 03cdc1d | 2016-09-19 18:24:38 -0700 | [diff] [blame] | 1765 | intel_encoder->port = port; |
Ander Conselvan de Oliveira | 79f255a | 2017-02-22 08:34:27 +0200 | [diff] [blame] | 1766 | |
Jani Nikula | 2e85ab4 | 2016-03-18 17:05:44 +0200 | [diff] [blame] | 1767 | /* |
| 1768 | * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI |
| 1769 | * port C. BXT isn't limited like this. |
| 1770 | */ |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1771 | if (IS_GEN9_LP(dev_priv)) |
Jani Nikula | 2e85ab4 | 2016-03-18 17:05:44 +0200 | [diff] [blame] | 1772 | intel_encoder->crtc_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C); |
| 1773 | else if (port == PORT_A) |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 1774 | intel_encoder->crtc_mask = BIT(PIPE_A); |
Jani Nikula | 7137aec | 2016-03-16 12:43:32 +0200 | [diff] [blame] | 1775 | else |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 1776 | intel_encoder->crtc_mask = BIT(PIPE_B); |
Jani Nikula | e7d7cad | 2014-11-14 16:54:21 +0200 | [diff] [blame] | 1777 | |
Madhav Chauhan | 6a2f064 | 2017-10-13 18:15:00 +0530 | [diff] [blame] | 1778 | if (dev_priv->vbt.dsi.config->dual_link) |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 1779 | intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C); |
Madhav Chauhan | 6a2f064 | 2017-10-13 18:15:00 +0530 | [diff] [blame] | 1780 | else |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 1781 | intel_dsi->ports = BIT(port); |
Gaurav K Singh | 8242578 | 2015-08-03 15:45:32 +0530 | [diff] [blame] | 1782 | |
Madhav Chauhan | 6a2f064 | 2017-10-13 18:15:00 +0530 | [diff] [blame] | 1783 | intel_dsi->dcs_backlight_ports = dev_priv->vbt.dsi.bl_ports; |
| 1784 | intel_dsi->dcs_cabc_ports = dev_priv->vbt.dsi.cabc_ports; |
Deepak M | 1ecc1c6 | 2016-04-26 16:14:26 +0300 | [diff] [blame] | 1785 | |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 1786 | /* Create a DSI host (and a device) for each port. */ |
| 1787 | for_each_dsi_port(port, intel_dsi->ports) { |
| 1788 | struct intel_dsi_host *host; |
| 1789 | |
| 1790 | host = intel_dsi_host_init(intel_dsi, port); |
| 1791 | if (!host) |
| 1792 | goto err; |
| 1793 | |
| 1794 | intel_dsi->dsi_hosts[port] = host; |
| 1795 | } |
| 1796 | |
Jani Nikula | 3f751d6 | 2017-03-06 16:31:26 +0200 | [diff] [blame] | 1797 | if (!intel_dsi_vbt_init(intel_dsi, MIPI_DSI_GENERIC_PANEL_ID)) { |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1798 | DRM_DEBUG_KMS("no device found\n"); |
| 1799 | goto err; |
| 1800 | } |
| 1801 | |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 1802 | /* |
| 1803 | * In case of BYT with CRC PMIC, we need to use GPIO for |
| 1804 | * Panel control. |
| 1805 | */ |
Uma Shankar | 645a2f6 | 2017-02-08 16:20:50 +0530 | [diff] [blame] | 1806 | if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) && |
| 1807 | (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC)) { |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 1808 | intel_dsi->gpio_panel = |
| 1809 | gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH); |
| 1810 | |
| 1811 | if (IS_ERR(intel_dsi->gpio_panel)) { |
| 1812 | DRM_ERROR("Failed to own gpio for panel control\n"); |
| 1813 | intel_dsi->gpio_panel = NULL; |
| 1814 | } |
| 1815 | } |
| 1816 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1817 | intel_encoder->type = INTEL_OUTPUT_DSI; |
Ander Conselvan de Oliveira | 79f255a | 2017-02-22 08:34:27 +0200 | [diff] [blame] | 1818 | intel_encoder->power_domain = POWER_DOMAIN_PORT_DSI; |
Ville Syrjälä | bc079e8 | 2014-03-03 16:15:28 +0200 | [diff] [blame] | 1819 | intel_encoder->cloneable = 0; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1820 | drm_connector_init(dev, connector, &intel_dsi_connector_funcs, |
| 1821 | DRM_MODE_CONNECTOR_DSI); |
| 1822 | |
| 1823 | drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs); |
| 1824 | |
| 1825 | connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/ |
| 1826 | connector->interlace_allowed = false; |
| 1827 | connector->doublescan_allowed = false; |
| 1828 | |
| 1829 | intel_connector_attach_encoder(intel_connector, intel_encoder); |
| 1830 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1831 | mutex_lock(&dev->mode_config.mutex); |
Jani Nikula | 3f751d6 | 2017-03-06 16:31:26 +0200 | [diff] [blame] | 1832 | intel_dsi_vbt_get_modes(intel_dsi); |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1833 | list_for_each_entry(scan, &connector->probed_modes, head) { |
| 1834 | if ((scan->type & DRM_MODE_TYPE_PREFERRED)) { |
| 1835 | fixed_mode = drm_mode_duplicate(dev, scan); |
| 1836 | break; |
| 1837 | } |
| 1838 | } |
| 1839 | mutex_unlock(&dev->mode_config.mutex); |
| 1840 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1841 | if (!fixed_mode) { |
| 1842 | DRM_DEBUG_KMS("no fixed mode\n"); |
| 1843 | goto err; |
| 1844 | } |
| 1845 | |
Ville Syrjälä | df45724 | 2016-05-31 12:08:34 +0300 | [diff] [blame] | 1846 | connector->display_info.width_mm = fixed_mode->width_mm; |
| 1847 | connector->display_info.height_mm = fixed_mode->height_mm; |
| 1848 | |
Jim Bride | dc911f5 | 2017-08-09 12:48:53 -0700 | [diff] [blame] | 1849 | intel_panel_init(&intel_connector->panel, fixed_mode, NULL, NULL); |
Chris Wilson | fda9ee9 | 2016-06-24 14:00:13 +0100 | [diff] [blame] | 1850 | intel_panel_setup_backlight(connector, INVALID_PIPE); |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1851 | |
| 1852 | intel_dsi_add_properties(intel_connector); |
| 1853 | |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1854 | return; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1855 | |
| 1856 | err: |
| 1857 | drm_encoder_cleanup(&intel_encoder->base); |
| 1858 | kfree(intel_dsi); |
| 1859 | kfree(intel_connector); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1860 | } |