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 | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 31 | #include <drm/drm_panel.h> |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 32 | #include <drm/drm_mipi_dsi.h> |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 33 | #include <linux/slab.h> |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 34 | #include <linux/gpio/consumer.h> |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 35 | #include "i915_drv.h" |
| 36 | #include "intel_drv.h" |
| 37 | #include "intel_dsi.h" |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 38 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 39 | static const struct { |
| 40 | u16 panel_id; |
| 41 | struct drm_panel * (*init)(struct intel_dsi *intel_dsi, u16 panel_id); |
| 42 | } intel_dsi_drivers[] = { |
Shobhit Kumar | 2ab8b45 | 2014-05-23 21:35:27 +0530 | [diff] [blame] | 43 | { |
| 44 | .panel_id = MIPI_DSI_GENERIC_PANEL_ID, |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 45 | .init = vbt_panel_init, |
Shobhit Kumar | 2ab8b45 | 2014-05-23 21:35:27 +0530 | [diff] [blame] | 46 | }, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 47 | }; |
| 48 | |
Ramalingam C | 042ab0c | 2016-04-19 13:48:14 +0530 | [diff] [blame] | 49 | /* return pixels in terms of txbyteclkhs */ |
| 50 | static u16 txbyteclkhs(u16 pixels, int bpp, int lane_count, |
| 51 | u16 burst_mode_ratio) |
| 52 | { |
| 53 | return DIV_ROUND_UP(DIV_ROUND_UP(pixels * bpp * burst_mode_ratio, |
| 54 | 8 * 100), lane_count); |
| 55 | } |
| 56 | |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 57 | /* return pixels equvalent to txbyteclkhs */ |
| 58 | static u16 pixels_from_txbyteclkhs(u16 clk_hs, int bpp, int lane_count, |
| 59 | u16 burst_mode_ratio) |
| 60 | { |
| 61 | return DIV_ROUND_UP((clk_hs * lane_count * 8 * 100), |
| 62 | (bpp * burst_mode_ratio)); |
| 63 | } |
| 64 | |
Ramalingam C | 43367ec | 2016-04-07 14:36:06 +0530 | [diff] [blame] | 65 | enum mipi_dsi_pixel_format pixel_format_from_register_bits(u32 fmt) |
| 66 | { |
| 67 | /* It just so happens the VBT matches register contents. */ |
| 68 | switch (fmt) { |
| 69 | case VID_MODE_FORMAT_RGB888: |
| 70 | return MIPI_DSI_FMT_RGB888; |
| 71 | case VID_MODE_FORMAT_RGB666: |
| 72 | return MIPI_DSI_FMT_RGB666; |
| 73 | case VID_MODE_FORMAT_RGB666_PACKED: |
| 74 | return MIPI_DSI_FMT_RGB666_PACKED; |
| 75 | case VID_MODE_FORMAT_RGB565: |
| 76 | return MIPI_DSI_FMT_RGB565; |
| 77 | default: |
| 78 | MISSING_CASE(fmt); |
| 79 | return MIPI_DSI_FMT_RGB666; |
| 80 | } |
| 81 | } |
| 82 | |
Jani Nikula | 7f6a6a4 | 2015-01-16 14:27:19 +0200 | [diff] [blame] | 83 | static 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] | 84 | { |
| 85 | struct drm_encoder *encoder = &intel_dsi->base.base; |
| 86 | struct drm_device *dev = encoder->dev; |
| 87 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 3b1808b | 2015-01-16 14:27:18 +0200 | [diff] [blame] | 88 | u32 mask; |
| 89 | |
| 90 | mask = LP_CTRL_FIFO_EMPTY | HS_CTRL_FIFO_EMPTY | |
| 91 | LP_DATA_FIFO_EMPTY | HS_DATA_FIFO_EMPTY; |
| 92 | |
| 93 | if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & mask) == mask, 100)) |
| 94 | DRM_ERROR("DPI FIFOs are not empty\n"); |
| 95 | } |
| 96 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 97 | static void write_data(struct drm_i915_private *dev_priv, |
| 98 | i915_reg_t reg, |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 99 | const u8 *data, u32 len) |
| 100 | { |
| 101 | u32 i, j; |
| 102 | |
| 103 | for (i = 0; i < len; i += 4) { |
| 104 | u32 val = 0; |
| 105 | |
| 106 | for (j = 0; j < min_t(u32, len - i, 4); j++) |
| 107 | val |= *data++ << 8 * j; |
| 108 | |
| 109 | I915_WRITE(reg, val); |
| 110 | } |
| 111 | } |
| 112 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 113 | static void read_data(struct drm_i915_private *dev_priv, |
| 114 | i915_reg_t reg, |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 115 | u8 *data, u32 len) |
| 116 | { |
| 117 | u32 i, j; |
| 118 | |
| 119 | for (i = 0; i < len; i += 4) { |
| 120 | u32 val = I915_READ(reg); |
| 121 | |
| 122 | for (j = 0; j < min_t(u32, len - i, 4); j++) |
| 123 | *data++ = val >> 8 * j; |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | static ssize_t intel_dsi_host_transfer(struct mipi_dsi_host *host, |
| 128 | const struct mipi_dsi_msg *msg) |
| 129 | { |
| 130 | struct intel_dsi_host *intel_dsi_host = to_intel_dsi_host(host); |
| 131 | struct drm_device *dev = intel_dsi_host->intel_dsi->base.base.dev; |
| 132 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 133 | enum port port = intel_dsi_host->port; |
| 134 | struct mipi_dsi_packet packet; |
| 135 | ssize_t ret; |
| 136 | const u8 *header, *data; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 137 | i915_reg_t data_reg, ctrl_reg; |
| 138 | u32 data_mask, ctrl_mask; |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 139 | |
| 140 | ret = mipi_dsi_create_packet(&packet, msg); |
| 141 | if (ret < 0) |
| 142 | return ret; |
| 143 | |
| 144 | header = packet.header; |
| 145 | data = packet.payload; |
| 146 | |
| 147 | if (msg->flags & MIPI_DSI_MSG_USE_LPM) { |
| 148 | data_reg = MIPI_LP_GEN_DATA(port); |
| 149 | data_mask = LP_DATA_FIFO_FULL; |
| 150 | ctrl_reg = MIPI_LP_GEN_CTRL(port); |
| 151 | ctrl_mask = LP_CTRL_FIFO_FULL; |
| 152 | } else { |
| 153 | data_reg = MIPI_HS_GEN_DATA(port); |
| 154 | data_mask = HS_DATA_FIFO_FULL; |
| 155 | ctrl_reg = MIPI_HS_GEN_CTRL(port); |
| 156 | ctrl_mask = HS_CTRL_FIFO_FULL; |
| 157 | } |
| 158 | |
| 159 | /* note: this is never true for reads */ |
| 160 | if (packet.payload_length) { |
| 161 | |
| 162 | if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & data_mask) == 0, 50)) |
| 163 | DRM_ERROR("Timeout waiting for HS/LP DATA FIFO !full\n"); |
| 164 | |
| 165 | write_data(dev_priv, data_reg, packet.payload, |
| 166 | packet.payload_length); |
| 167 | } |
| 168 | |
| 169 | if (msg->rx_len) { |
| 170 | I915_WRITE(MIPI_INTR_STAT(port), GEN_READ_DATA_AVAIL); |
| 171 | } |
| 172 | |
| 173 | if (wait_for((I915_READ(MIPI_GEN_FIFO_STAT(port)) & ctrl_mask) == 0, 50)) { |
| 174 | DRM_ERROR("Timeout waiting for HS/LP CTRL FIFO !full\n"); |
| 175 | } |
| 176 | |
| 177 | I915_WRITE(ctrl_reg, header[2] << 16 | header[1] << 8 | header[0]); |
| 178 | |
| 179 | /* ->rx_len is set only for reads */ |
| 180 | if (msg->rx_len) { |
| 181 | data_mask = GEN_READ_DATA_AVAIL; |
| 182 | if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & data_mask) == data_mask, 50)) |
| 183 | DRM_ERROR("Timeout waiting for read data.\n"); |
| 184 | |
| 185 | read_data(dev_priv, data_reg, msg->rx_buf, msg->rx_len); |
| 186 | } |
| 187 | |
| 188 | /* XXX: fix for reads and writes */ |
| 189 | return 4 + packet.payload_length; |
| 190 | } |
| 191 | |
| 192 | static int intel_dsi_host_attach(struct mipi_dsi_host *host, |
| 193 | struct mipi_dsi_device *dsi) |
| 194 | { |
| 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | static int intel_dsi_host_detach(struct mipi_dsi_host *host, |
| 199 | struct mipi_dsi_device *dsi) |
| 200 | { |
| 201 | return 0; |
| 202 | } |
| 203 | |
| 204 | static const struct mipi_dsi_host_ops intel_dsi_host_ops = { |
| 205 | .attach = intel_dsi_host_attach, |
| 206 | .detach = intel_dsi_host_detach, |
| 207 | .transfer = intel_dsi_host_transfer, |
| 208 | }; |
| 209 | |
| 210 | static struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi, |
| 211 | enum port port) |
| 212 | { |
| 213 | struct intel_dsi_host *host; |
| 214 | struct mipi_dsi_device *device; |
| 215 | |
| 216 | host = kzalloc(sizeof(*host), GFP_KERNEL); |
| 217 | if (!host) |
| 218 | return NULL; |
| 219 | |
| 220 | host->base.ops = &intel_dsi_host_ops; |
| 221 | host->intel_dsi = intel_dsi; |
| 222 | host->port = port; |
| 223 | |
| 224 | /* |
| 225 | * We should call mipi_dsi_host_register(&host->base) here, but we don't |
| 226 | * have a host->dev, and we don't have OF stuff either. So just use the |
| 227 | * dsi framework as a library and hope for the best. Create the dsi |
| 228 | * devices by ourselves here too. Need to be careful though, because we |
| 229 | * don't initialize any of the driver model devices here. |
| 230 | */ |
| 231 | device = kzalloc(sizeof(*device), GFP_KERNEL); |
| 232 | if (!device) { |
| 233 | kfree(host); |
| 234 | return NULL; |
| 235 | } |
| 236 | |
| 237 | device->host = &host->base; |
| 238 | host->device = device; |
| 239 | |
| 240 | return host; |
| 241 | } |
| 242 | |
Jani Nikula | a2581a9 | 2015-01-16 14:27:26 +0200 | [diff] [blame] | 243 | /* |
| 244 | * send a video mode command |
| 245 | * |
| 246 | * XXX: commands with data in MIPI_DPI_DATA? |
| 247 | */ |
| 248 | static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs, |
| 249 | enum port port) |
| 250 | { |
| 251 | struct drm_encoder *encoder = &intel_dsi->base.base; |
| 252 | struct drm_device *dev = encoder->dev; |
| 253 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 254 | u32 mask; |
| 255 | |
| 256 | /* XXX: pipe, hs */ |
| 257 | if (hs) |
| 258 | cmd &= ~DPI_LP_MODE; |
| 259 | else |
| 260 | cmd |= DPI_LP_MODE; |
| 261 | |
| 262 | /* clear bit */ |
| 263 | I915_WRITE(MIPI_INTR_STAT(port), SPL_PKT_SENT_INTERRUPT); |
| 264 | |
| 265 | /* XXX: old code skips write if control unchanged */ |
| 266 | if (cmd == I915_READ(MIPI_DPI_CONTROL(port))) |
| 267 | DRM_ERROR("Same special packet %02x twice in a row.\n", cmd); |
| 268 | |
| 269 | I915_WRITE(MIPI_DPI_CONTROL(port), cmd); |
| 270 | |
| 271 | mask = SPL_PKT_SENT_INTERRUPT; |
| 272 | if (wait_for((I915_READ(MIPI_INTR_STAT(port)) & mask) == mask, 100)) |
| 273 | DRM_ERROR("Video mode command 0x%08x send failed.\n", cmd); |
| 274 | |
| 275 | return 0; |
| 276 | } |
| 277 | |
Shobhit Kumar | e9fe51c | 2013-12-10 12:14:55 +0530 | [diff] [blame] | 278 | static void band_gap_reset(struct drm_i915_private *dev_priv) |
Shobhit Kumar | 4ce8c9a | 2013-08-27 15:12:24 +0300 | [diff] [blame] | 279 | { |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 280 | mutex_lock(&dev_priv->sb_lock); |
Shobhit Kumar | 4ce8c9a | 2013-08-27 15:12:24 +0300 | [diff] [blame] | 281 | |
Shobhit Kumar | e9fe51c | 2013-12-10 12:14:55 +0530 | [diff] [blame] | 282 | vlv_flisdsi_write(dev_priv, 0x08, 0x0001); |
| 283 | vlv_flisdsi_write(dev_priv, 0x0F, 0x0005); |
| 284 | vlv_flisdsi_write(dev_priv, 0x0F, 0x0025); |
| 285 | udelay(150); |
| 286 | vlv_flisdsi_write(dev_priv, 0x0F, 0x0000); |
| 287 | vlv_flisdsi_write(dev_priv, 0x08, 0x0000); |
Shobhit Kumar | 4ce8c9a | 2013-08-27 15:12:24 +0300 | [diff] [blame] | 288 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 289 | mutex_unlock(&dev_priv->sb_lock); |
Shobhit Kumar | 4ce8c9a | 2013-08-27 15:12:24 +0300 | [diff] [blame] | 290 | } |
| 291 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 292 | static inline bool is_vid_mode(struct intel_dsi *intel_dsi) |
| 293 | { |
Shobhit Kumar | dfba2e2 | 2014-04-14 11:18:24 +0530 | [diff] [blame] | 294 | return intel_dsi->operation_mode == INTEL_DSI_VIDEO_MODE; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | static inline bool is_cmd_mode(struct intel_dsi *intel_dsi) |
| 298 | { |
Shobhit Kumar | dfba2e2 | 2014-04-14 11:18:24 +0530 | [diff] [blame] | 299 | return intel_dsi->operation_mode == INTEL_DSI_COMMAND_MODE; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 300 | } |
| 301 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 302 | static bool intel_dsi_compute_config(struct intel_encoder *encoder, |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 303 | struct intel_crtc_state *pipe_config) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 304 | { |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 305 | struct drm_i915_private *dev_priv = encoder->base.dev->dev_private; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 306 | struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi, |
| 307 | base); |
| 308 | struct intel_connector *intel_connector = intel_dsi->attached_connector; |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 309 | struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc); |
| 310 | const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode; |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 311 | struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode; |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 312 | int ret; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 313 | |
| 314 | DRM_DEBUG_KMS("\n"); |
| 315 | |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 316 | pipe_config->has_dsi_encoder = true; |
| 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, |
| 323 | intel_connector->panel.fitting_mode); |
| 324 | else |
| 325 | intel_pch_panel_fitting(crtc, pipe_config, |
| 326 | intel_connector->panel.fitting_mode); |
| 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 | |
Jani Nikula | 4d1de97 | 2016-03-18 17:05:42 +0200 | [diff] [blame] | 332 | if (IS_BROXTON(dev_priv)) { |
| 333 | /* Dual link goes to DSI transcoder A. */ |
| 334 | if (intel_dsi->ports == BIT(PORT_C)) |
| 335 | pipe_config->cpu_transcoder = TRANSCODER_DSI_C; |
| 336 | else |
| 337 | pipe_config->cpu_transcoder = TRANSCODER_DSI_A; |
| 338 | } |
| 339 | |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 340 | ret = intel_compute_dsi_pll(encoder, pipe_config); |
| 341 | if (ret) |
| 342 | return false; |
| 343 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 344 | pipe_config->clock_set = true; |
| 345 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 346 | return true; |
| 347 | } |
| 348 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 349 | static void bxt_dsi_device_ready(struct intel_encoder *encoder) |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 350 | { |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 351 | struct drm_i915_private *dev_priv = encoder->base.dev->dev_private; |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 352 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Gaurav K Singh | 369602d | 2014-12-05 14:09:28 +0530 | [diff] [blame] | 353 | enum port port; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 354 | u32 val; |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 355 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 356 | DRM_DEBUG_KMS("\n"); |
Gaurav K Singh | a9da9bc | 2014-12-05 14:13:41 +0530 | [diff] [blame] | 357 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 358 | /* Exit Low power state in 4 steps*/ |
Gaurav K Singh | 369602d | 2014-12-05 14:09:28 +0530 | [diff] [blame] | 359 | for_each_dsi_port(port, intel_dsi->ports) { |
Gaurav K Singh | 369602d | 2014-12-05 14:09:28 +0530 | [diff] [blame] | 360 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 361 | /* 1. Enable MIPI PHY transparent latch */ |
| 362 | val = I915_READ(BXT_MIPI_PORT_CTRL(port)); |
| 363 | I915_WRITE(BXT_MIPI_PORT_CTRL(port), val | LP_OUTPUT_HOLD); |
| 364 | usleep_range(2000, 2500); |
| 365 | |
| 366 | /* 2. Enter ULPS */ |
| 367 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 368 | val &= ~ULPS_STATE_MASK; |
| 369 | val |= (ULPS_STATE_ENTER | DEVICE_READY); |
| 370 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
| 371 | usleep_range(2, 3); |
| 372 | |
| 373 | /* 3. Exit ULPS */ |
| 374 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 375 | val &= ~ULPS_STATE_MASK; |
| 376 | val |= (ULPS_STATE_EXIT | DEVICE_READY); |
| 377 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
| 378 | usleep_range(1000, 1500); |
| 379 | |
| 380 | /* Clear ULPS and set device ready */ |
| 381 | val = I915_READ(MIPI_DEVICE_READY(port)); |
| 382 | val &= ~ULPS_STATE_MASK; |
| 383 | val |= DEVICE_READY; |
| 384 | I915_WRITE(MIPI_DEVICE_READY(port), val); |
Gaurav K Singh | 369602d | 2014-12-05 14:09:28 +0530 | [diff] [blame] | 385 | } |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 386 | } |
| 387 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 388 | static void vlv_dsi_device_ready(struct intel_encoder *encoder) |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 389 | { |
| 390 | struct drm_i915_private *dev_priv = encoder->base.dev->dev_private; |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 391 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 392 | enum port port; |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 393 | u32 val; |
| 394 | |
| 395 | DRM_DEBUG_KMS("\n"); |
| 396 | |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 397 | mutex_lock(&dev_priv->sb_lock); |
Shobhit Kumar | 2095f9f | 2014-04-09 13:59:30 +0530 | [diff] [blame] | 398 | /* program rcomp for compliance, reduce from 50 ohms to 45 ohms |
| 399 | * needed everytime after power gate */ |
| 400 | vlv_flisdsi_write(dev_priv, 0x04, 0x0004); |
Ville Syrjälä | a580516 | 2015-05-26 20:42:30 +0300 | [diff] [blame] | 401 | mutex_unlock(&dev_priv->sb_lock); |
Shobhit Kumar | 2095f9f | 2014-04-09 13:59:30 +0530 | [diff] [blame] | 402 | |
| 403 | /* bandgap reset is needed after everytime we do power gate */ |
| 404 | band_gap_reset(dev_priv); |
| 405 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 406 | for_each_dsi_port(port, intel_dsi->ports) { |
Shobhit Kumar | aceb365 | 2014-07-03 16:35:41 +0530 | [diff] [blame] | 407 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 408 | I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_ENTER); |
| 409 | usleep_range(2500, 3000); |
Shobhit Kumar | aceb365 | 2014-07-03 16:35:41 +0530 | [diff] [blame] | 410 | |
Gaurav K Singh | bf344e8 | 2014-12-07 16:13:54 +0530 | [diff] [blame] | 411 | /* Enable MIPI PHY transparent latch |
| 412 | * Common bit for both MIPI Port A & MIPI Port C |
| 413 | * No similar bit in MIPI Port C reg |
| 414 | */ |
Shobhit Kumar | 4ba7d93 | 2015-02-05 17:08:45 +0530 | [diff] [blame] | 415 | val = I915_READ(MIPI_PORT_CTRL(PORT_A)); |
Gaurav K Singh | bf344e8 | 2014-12-07 16:13:54 +0530 | [diff] [blame] | 416 | I915_WRITE(MIPI_PORT_CTRL(PORT_A), val | LP_OUTPUT_HOLD); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 417 | usleep_range(1000, 1500); |
Shobhit Kumar | aceb365 | 2014-07-03 16:35:41 +0530 | [diff] [blame] | 418 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 419 | I915_WRITE(MIPI_DEVICE_READY(port), ULPS_STATE_EXIT); |
| 420 | usleep_range(2500, 3000); |
| 421 | |
| 422 | I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY); |
| 423 | usleep_range(2500, 3000); |
| 424 | } |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 425 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 426 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 427 | static void intel_dsi_device_ready(struct intel_encoder *encoder) |
| 428 | { |
| 429 | struct drm_device *dev = encoder->base.dev; |
| 430 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 431 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 432 | vlv_dsi_device_ready(encoder); |
| 433 | else if (IS_BROXTON(dev)) |
| 434 | bxt_dsi_device_ready(encoder); |
| 435 | } |
| 436 | |
| 437 | static void intel_dsi_port_enable(struct intel_encoder *encoder) |
| 438 | { |
| 439 | struct drm_device *dev = encoder->base.dev; |
| 440 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 441 | struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc); |
| 442 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 443 | enum port port; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 444 | |
| 445 | if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 446 | u32 temp; |
| 447 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 448 | temp = I915_READ(VLV_CHICKEN_3); |
| 449 | temp &= ~PIXEL_OVERLAP_CNT_MASK | |
| 450 | intel_dsi->pixel_overlap << |
| 451 | PIXEL_OVERLAP_CNT_SHIFT; |
| 452 | I915_WRITE(VLV_CHICKEN_3, temp); |
| 453 | } |
| 454 | |
| 455 | for_each_dsi_port(port, intel_dsi->ports) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 456 | i915_reg_t port_ctrl = IS_BROXTON(dev) ? |
| 457 | BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port); |
| 458 | u32 temp; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 459 | |
| 460 | temp = I915_READ(port_ctrl); |
| 461 | |
| 462 | temp &= ~LANE_CONFIGURATION_MASK; |
| 463 | temp &= ~DUAL_LINK_MODE_MASK; |
| 464 | |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 465 | if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) { |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 466 | temp |= (intel_dsi->dual_link - 1) |
| 467 | << DUAL_LINK_MODE_SHIFT; |
| 468 | temp |= intel_crtc->pipe ? |
| 469 | LANE_CONFIGURATION_DUAL_LINK_B : |
| 470 | LANE_CONFIGURATION_DUAL_LINK_A; |
| 471 | } |
| 472 | /* assert ip_tg_enable signal */ |
| 473 | I915_WRITE(port_ctrl, temp | DPI_ENABLE); |
| 474 | POSTING_READ(port_ctrl); |
| 475 | } |
| 476 | } |
| 477 | |
| 478 | static void intel_dsi_port_disable(struct intel_encoder *encoder) |
| 479 | { |
| 480 | struct drm_device *dev = encoder->base.dev; |
| 481 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 482 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 483 | enum port port; |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 484 | |
| 485 | for_each_dsi_port(port, intel_dsi->ports) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 486 | i915_reg_t port_ctrl = IS_BROXTON(dev) ? |
| 487 | BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port); |
| 488 | u32 temp; |
| 489 | |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 490 | /* de-assert ip_tg_enable signal */ |
Shashank Sharma | b389a45 | 2015-09-01 19:41:44 +0530 | [diff] [blame] | 491 | temp = I915_READ(port_ctrl); |
| 492 | I915_WRITE(port_ctrl, temp & ~DPI_ENABLE); |
| 493 | POSTING_READ(port_ctrl); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 494 | } |
| 495 | } |
| 496 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 497 | static void intel_dsi_enable(struct intel_encoder *encoder) |
| 498 | { |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 499 | struct drm_device *dev = encoder->base.dev; |
| 500 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 501 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Jani Nikula | 4934b65 | 2015-01-22 15:01:35 +0200 | [diff] [blame] | 502 | enum port port; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 503 | |
| 504 | DRM_DEBUG_KMS("\n"); |
| 505 | |
Jani Nikula | 4934b65 | 2015-01-22 15:01:35 +0200 | [diff] [blame] | 506 | if (is_cmd_mode(intel_dsi)) { |
| 507 | for_each_dsi_port(port, intel_dsi->ports) |
| 508 | I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(port), 8 * 4); |
| 509 | } else { |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 510 | msleep(20); /* XXX */ |
Jani Nikula | f03e417 | 2015-01-16 14:27:16 +0200 | [diff] [blame] | 511 | for_each_dsi_port(port, intel_dsi->ports) |
Jani Nikula | a2581a9 | 2015-01-16 14:27:26 +0200 | [diff] [blame] | 512 | dpi_send_cmd(intel_dsi, TURN_ON, false, port); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 513 | msleep(100); |
| 514 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 515 | drm_panel_enable(intel_dsi->panel); |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 516 | |
Jani Nikula | 7f6a6a4 | 2015-01-16 14:27:19 +0200 | [diff] [blame] | 517 | for_each_dsi_port(port, intel_dsi->ports) |
| 518 | wait_for_dsi_fifo_empty(intel_dsi, port); |
Shobhit Kumar | 1381308 | 2014-07-12 17:17:22 +0530 | [diff] [blame] | 519 | |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 520 | intel_dsi_port_enable(encoder); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 521 | } |
Shobhit Kumar | b029e66 | 2015-06-26 14:32:10 +0530 | [diff] [blame] | 522 | |
| 523 | intel_panel_enable_backlight(intel_dsi->attached_connector); |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 524 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 525 | |
Jani Nikula | e3488e7 | 2015-11-27 12:21:44 +0200 | [diff] [blame] | 526 | static void intel_dsi_prepare(struct intel_encoder *intel_encoder); |
| 527 | |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 528 | static void intel_dsi_pre_enable(struct intel_encoder *encoder) |
| 529 | { |
Shobhit Kumar | 20e5bf6 | 2014-04-09 13:59:32 +0530 | [diff] [blame] | 530 | struct drm_device *dev = encoder->base.dev; |
| 531 | struct drm_i915_private *dev_priv = dev->dev_private; |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 532 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 533 | struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc); |
Jani Nikula | 7f6a6a4 | 2015-01-16 14:27:19 +0200 | [diff] [blame] | 534 | enum port port; |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 535 | |
| 536 | DRM_DEBUG_KMS("\n"); |
| 537 | |
Ville Syrjälä | f00b568 | 2016-03-15 16:40:03 +0200 | [diff] [blame] | 538 | /* |
| 539 | * The BIOS may leave the PLL in a wonky state where it doesn't |
| 540 | * lock. It needs to be fully powered down to fix it. |
| 541 | */ |
| 542 | intel_disable_dsi_pll(encoder); |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 543 | intel_enable_dsi_pll(encoder, crtc->config); |
Ville Syrjälä | f00b568 | 2016-03-15 16:40:03 +0200 | [diff] [blame] | 544 | |
Ramalingam C | 58d4d32 | 2016-02-03 18:20:46 +0530 | [diff] [blame] | 545 | intel_dsi_prepare(encoder); |
Jani Nikula | e3488e7 | 2015-11-27 12:21:44 +0200 | [diff] [blame] | 546 | |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 547 | /* Panel Enable over CRC PMIC */ |
| 548 | if (intel_dsi->gpio_panel) |
| 549 | gpiod_set_value_cansleep(intel_dsi->gpio_panel, 1); |
| 550 | |
| 551 | msleep(intel_dsi->panel_on_delay); |
| 552 | |
Ville Syrjälä | d1877c0 | 2016-04-18 19:18:25 +0300 | [diff] [blame] | 553 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
| 554 | u32 val; |
| 555 | |
Ville Syrjälä | cd2d34d | 2016-04-12 22:14:34 +0300 | [diff] [blame] | 556 | /* Disable DPOunit clock gating, can stall pipe */ |
Ville Syrjälä | d1877c0 | 2016-04-18 19:18:25 +0300 | [diff] [blame] | 557 | val = I915_READ(DSPCLK_GATE_D); |
| 558 | val |= DPOUNIT_CLOCK_GATE_DISABLE; |
| 559 | I915_WRITE(DSPCLK_GATE_D, val); |
Shashank Sharma | 37ab081 | 2015-09-01 19:41:42 +0530 | [diff] [blame] | 560 | } |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 561 | |
| 562 | /* put device in ready state */ |
| 563 | intel_dsi_device_ready(encoder); |
| 564 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 565 | drm_panel_prepare(intel_dsi->panel); |
Shobhit Kumar | 20e5bf6 | 2014-04-09 13:59:32 +0530 | [diff] [blame] | 566 | |
Jani Nikula | 7f6a6a4 | 2015-01-16 14:27:19 +0200 | [diff] [blame] | 567 | for_each_dsi_port(port, intel_dsi->ports) |
| 568 | wait_for_dsi_fifo_empty(intel_dsi, port); |
Shobhit Kumar | 1381308 | 2014-07-12 17:17:22 +0530 | [diff] [blame] | 569 | |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 570 | /* Enable port in pre-enable phase itself because as per hw team |
| 571 | * recommendation, port should be enabled befor plane & pipe */ |
| 572 | intel_dsi_enable(encoder); |
| 573 | } |
| 574 | |
| 575 | static void intel_dsi_enable_nop(struct intel_encoder *encoder) |
| 576 | { |
| 577 | DRM_DEBUG_KMS("\n"); |
| 578 | |
| 579 | /* for DSI port enable has to be done before pipe |
| 580 | * and plane enable, so port enable is done in |
| 581 | * pre_enable phase itself unlike other encoders |
| 582 | */ |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 583 | } |
| 584 | |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 585 | static void intel_dsi_pre_disable(struct intel_encoder *encoder) |
| 586 | { |
| 587 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Jani Nikula | f03e417 | 2015-01-16 14:27:16 +0200 | [diff] [blame] | 588 | enum port port; |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 589 | |
| 590 | DRM_DEBUG_KMS("\n"); |
| 591 | |
Shobhit Kumar | b029e66 | 2015-06-26 14:32:10 +0530 | [diff] [blame] | 592 | intel_panel_disable_backlight(intel_dsi->attached_connector); |
| 593 | |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 594 | if (is_vid_mode(intel_dsi)) { |
| 595 | /* Send Shutdown command to the panel in LP mode */ |
Jani Nikula | f03e417 | 2015-01-16 14:27:16 +0200 | [diff] [blame] | 596 | for_each_dsi_port(port, intel_dsi->ports) |
Jani Nikula | a2581a9 | 2015-01-16 14:27:26 +0200 | [diff] [blame] | 597 | dpi_send_cmd(intel_dsi, SHUTDOWN, false, port); |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 598 | msleep(10); |
| 599 | } |
| 600 | } |
| 601 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 602 | static void intel_dsi_disable(struct intel_encoder *encoder) |
| 603 | { |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 604 | struct drm_device *dev = encoder->base.dev; |
| 605 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 606 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 607 | enum port port; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 608 | u32 temp; |
| 609 | |
| 610 | DRM_DEBUG_KMS("\n"); |
| 611 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 612 | if (is_vid_mode(intel_dsi)) { |
Jani Nikula | 7f6a6a4 | 2015-01-16 14:27:19 +0200 | [diff] [blame] | 613 | for_each_dsi_port(port, intel_dsi->ports) |
| 614 | wait_for_dsi_fifo_empty(intel_dsi, port); |
Shobhit Kumar | 1381308 | 2014-07-12 17:17:22 +0530 | [diff] [blame] | 615 | |
Gaurav K Singh | 5505a24 | 2014-12-04 10:58:47 +0530 | [diff] [blame] | 616 | intel_dsi_port_disable(encoder); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 617 | msleep(2); |
| 618 | } |
| 619 | |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 620 | for_each_dsi_port(port, intel_dsi->ports) { |
| 621 | /* Panel commands can be sent when clock is in LP11 */ |
| 622 | I915_WRITE(MIPI_DEVICE_READY(port), 0x0); |
Shobhit Kumar | 339023e | 2014-04-09 13:59:34 +0530 | [diff] [blame] | 623 | |
Shashank Sharma | b389a45 | 2015-09-01 19:41:44 +0530 | [diff] [blame] | 624 | intel_dsi_reset_clocks(encoder, port); |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 625 | I915_WRITE(MIPI_EOT_DISABLE(port), CLOCKSTOP); |
Shobhit Kumar | 339023e | 2014-04-09 13:59:34 +0530 | [diff] [blame] | 626 | |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 627 | temp = I915_READ(MIPI_DSI_FUNC_PRG(port)); |
| 628 | temp &= ~VID_MODE_FORMAT_MASK; |
| 629 | I915_WRITE(MIPI_DSI_FUNC_PRG(port), temp); |
Shobhit Kumar | 339023e | 2014-04-09 13:59:34 +0530 | [diff] [blame] | 630 | |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 631 | I915_WRITE(MIPI_DEVICE_READY(port), 0x1); |
| 632 | } |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 633 | /* if disable packets are sent before sending shutdown packet then in |
| 634 | * some next enable sequence send turn on packet error is observed */ |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 635 | drm_panel_disable(intel_dsi->panel); |
Shobhit Kumar | 1381308 | 2014-07-12 17:17:22 +0530 | [diff] [blame] | 636 | |
Jani Nikula | 7f6a6a4 | 2015-01-16 14:27:19 +0200 | [diff] [blame] | 637 | for_each_dsi_port(port, intel_dsi->ports) |
| 638 | wait_for_dsi_fifo_empty(intel_dsi, port); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 639 | } |
| 640 | |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 641 | static void intel_dsi_clear_device_ready(struct intel_encoder *encoder) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 642 | { |
Shashank Sharma | b389a45 | 2015-09-01 19:41:44 +0530 | [diff] [blame] | 643 | struct drm_device *dev = encoder->base.dev; |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 644 | struct drm_i915_private *dev_priv = encoder->base.dev->dev_private; |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 645 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 646 | enum port port; |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 647 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 648 | DRM_DEBUG_KMS("\n"); |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 649 | for_each_dsi_port(port, intel_dsi->ports) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 650 | /* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */ |
| 651 | i915_reg_t port_ctrl = IS_BROXTON(dev) ? |
| 652 | BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(PORT_A); |
| 653 | u32 val; |
ymohanma | be4fc04 | 2013-08-27 23:40:56 +0300 | [diff] [blame] | 654 | |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 655 | I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY | |
| 656 | ULPS_STATE_ENTER); |
| 657 | usleep_range(2000, 2500); |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 658 | |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 659 | I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY | |
| 660 | ULPS_STATE_EXIT); |
| 661 | usleep_range(2000, 2500); |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 662 | |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 663 | I915_WRITE(MIPI_DEVICE_READY(port), DEVICE_READY | |
| 664 | ULPS_STATE_ENTER); |
| 665 | usleep_range(2000, 2500); |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 666 | |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 667 | /* Wait till Clock lanes are in LP-00 state for MIPI Port A |
| 668 | * only. MIPI Port C has no similar bit for checking |
| 669 | */ |
Shashank Sharma | b389a45 | 2015-09-01 19:41:44 +0530 | [diff] [blame] | 670 | if (wait_for(((I915_READ(port_ctrl) & AFE_LATCHOUT) |
| 671 | == 0x00000), 30)) |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 672 | DRM_ERROR("DSI LP not going Low\n"); |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 673 | |
Shashank Sharma | b389a45 | 2015-09-01 19:41:44 +0530 | [diff] [blame] | 674 | /* Disable MIPI PHY transparent latch */ |
| 675 | val = I915_READ(port_ctrl); |
| 676 | I915_WRITE(port_ctrl, val & ~LP_OUTPUT_HOLD); |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 677 | usleep_range(1000, 1500); |
Shobhit Kumar | aceb365 | 2014-07-03 16:35:41 +0530 | [diff] [blame] | 678 | |
Gaurav K Singh | 384f02a | 2014-12-05 14:22:44 +0530 | [diff] [blame] | 679 | I915_WRITE(MIPI_DEVICE_READY(port), 0x00); |
| 680 | usleep_range(2000, 2500); |
| 681 | } |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 682 | |
Shashank Sharma | fe88fc6 | 2015-09-01 19:41:39 +0530 | [diff] [blame] | 683 | intel_disable_dsi_pll(encoder); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 684 | } |
Shobhit Kumar | 20e5bf6 | 2014-04-09 13:59:32 +0530 | [diff] [blame] | 685 | |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 686 | static void intel_dsi_post_disable(struct intel_encoder *encoder) |
| 687 | { |
Shobhit Kumar | 20e5bf6 | 2014-04-09 13:59:32 +0530 | [diff] [blame] | 688 | struct drm_i915_private *dev_priv = encoder->base.dev->dev_private; |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 689 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 690 | |
| 691 | DRM_DEBUG_KMS("\n"); |
| 692 | |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 693 | intel_dsi_disable(encoder); |
| 694 | |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 695 | intel_dsi_clear_device_ready(encoder); |
| 696 | |
Ville Syrjälä | d1877c0 | 2016-04-18 19:18:25 +0300 | [diff] [blame] | 697 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Uma Shankar | d6e3af5 | 2016-02-18 13:49:26 +0200 | [diff] [blame] | 698 | u32 val; |
| 699 | |
| 700 | val = I915_READ(DSPCLK_GATE_D); |
| 701 | val &= ~DPOUNIT_CLOCK_GATE_DISABLE; |
| 702 | I915_WRITE(DSPCLK_GATE_D, val); |
| 703 | } |
Shobhit Kumar | 20e5bf6 | 2014-04-09 13:59:32 +0530 | [diff] [blame] | 704 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 705 | drm_panel_unprepare(intel_dsi->panel); |
Shobhit Kumar | df38e65 | 2014-04-14 11:18:26 +0530 | [diff] [blame] | 706 | |
| 707 | msleep(intel_dsi->panel_off_delay); |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 708 | |
| 709 | /* Panel Disable over CRC PMIC */ |
| 710 | if (intel_dsi->gpio_panel) |
| 711 | gpiod_set_value_cansleep(intel_dsi->gpio_panel, 0); |
Ville Syrjälä | 1d5c65e | 2016-04-18 19:17:51 +0300 | [diff] [blame] | 712 | |
| 713 | /* |
| 714 | * FIXME As we do with eDP, just make a note of the time here |
| 715 | * and perform the wait before the next panel power on. |
| 716 | */ |
| 717 | msleep(intel_dsi->panel_pwr_cycle_delay); |
Shobhit Kumar | 1dbd7cb | 2013-12-11 17:52:05 +0530 | [diff] [blame] | 718 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 719 | |
| 720 | static bool intel_dsi_get_hw_state(struct intel_encoder *encoder, |
| 721 | enum pipe *pipe) |
| 722 | { |
| 723 | struct drm_i915_private *dev_priv = encoder->base.dev->dev_private; |
Gaurav K Singh | c0beefd | 2014-12-09 10:59:20 +0530 | [diff] [blame] | 724 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
| 725 | struct drm_device *dev = encoder->base.dev; |
Imre Deak | 6d129be | 2014-03-05 16:20:54 +0200 | [diff] [blame] | 726 | enum intel_display_power_domain power_domain; |
Jani Nikula | e7d7cad | 2014-11-14 16:54:21 +0200 | [diff] [blame] | 727 | enum port port; |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 728 | bool active = false; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 729 | |
| 730 | DRM_DEBUG_KMS("\n"); |
| 731 | |
Imre Deak | 6d129be | 2014-03-05 16:20:54 +0200 | [diff] [blame] | 732 | power_domain = intel_display_port_power_domain(encoder); |
Imre Deak | 3f3f42b | 2016-02-12 18:55:19 +0200 | [diff] [blame] | 733 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) |
Imre Deak | 6d129be | 2014-03-05 16:20:54 +0200 | [diff] [blame] | 734 | return false; |
| 735 | |
Imre Deak | db18b6a | 2016-03-24 12:41:40 +0200 | [diff] [blame] | 736 | /* |
| 737 | * On Broxton the PLL needs to be enabled with a valid divider |
| 738 | * configuration, otherwise accessing DSI registers will hang the |
| 739 | * machine. See BSpec North Display Engine registers/MIPI[BXT]. |
| 740 | */ |
| 741 | if (IS_BROXTON(dev_priv) && !intel_dsi_pll_is_enabled(dev_priv)) |
| 742 | goto out_put_power; |
| 743 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 744 | /* XXX: this only works for one DSI output */ |
Gaurav K Singh | c0beefd | 2014-12-09 10:59:20 +0530 | [diff] [blame] | 745 | for_each_dsi_port(port, intel_dsi->ports) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 746 | i915_reg_t ctrl_reg = IS_BROXTON(dev) ? |
| 747 | BXT_MIPI_PORT_CTRL(port) : MIPI_PORT_CTRL(port); |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 748 | bool enabled = I915_READ(ctrl_reg) & DPI_ENABLE; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 749 | |
Jani Nikula | e6f5778 | 2016-04-15 15:47:31 +0300 | [diff] [blame] | 750 | /* |
| 751 | * Due to some hardware limitations on VLV/CHV, the DPI enable |
| 752 | * bit in port C control register does not get set. As a |
| 753 | * workaround, check pipe B conf instead. |
Gaurav K Singh | c0beefd | 2014-12-09 10:59:20 +0530 | [diff] [blame] | 754 | */ |
Jani Nikula | e6f5778 | 2016-04-15 15:47:31 +0300 | [diff] [blame] | 755 | if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && port == PORT_C) |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 756 | enabled = I915_READ(PIPECONF(PIPE_B)) & PIPECONF_ENABLE; |
Gaurav K Singh | c0beefd | 2014-12-09 10:59:20 +0530 | [diff] [blame] | 757 | |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 758 | /* Try command mode if video mode not enabled */ |
| 759 | if (!enabled) { |
| 760 | u32 tmp = I915_READ(MIPI_DSI_FUNC_PRG(port)); |
| 761 | enabled = tmp & CMD_MODE_DATA_WIDTH_MASK; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 762 | } |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 763 | |
| 764 | if (!enabled) |
| 765 | continue; |
| 766 | |
| 767 | if (!(I915_READ(MIPI_DEVICE_READY(port)) & DEVICE_READY)) |
| 768 | continue; |
| 769 | |
Jani Nikula | 6b93e9c | 2016-03-15 21:51:12 +0200 | [diff] [blame] | 770 | if (IS_BROXTON(dev_priv)) { |
| 771 | u32 tmp = I915_READ(MIPI_CTRL(port)); |
| 772 | tmp &= BXT_PIPE_SELECT_MASK; |
| 773 | tmp >>= BXT_PIPE_SELECT_SHIFT; |
| 774 | |
| 775 | if (WARN_ON(tmp > PIPE_C)) |
| 776 | continue; |
| 777 | |
| 778 | *pipe = tmp; |
| 779 | } else { |
| 780 | *pipe = port == PORT_A ? PIPE_A : PIPE_B; |
| 781 | } |
| 782 | |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 783 | active = true; |
| 784 | break; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 785 | } |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 786 | |
Imre Deak | db18b6a | 2016-03-24 12:41:40 +0200 | [diff] [blame] | 787 | out_put_power: |
Imre Deak | 3f3f42b | 2016-02-12 18:55:19 +0200 | [diff] [blame] | 788 | intel_display_power_put(dev_priv, power_domain); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 789 | |
Jani Nikula | 1dcec2f | 2016-03-15 21:51:11 +0200 | [diff] [blame] | 790 | return active; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 791 | } |
| 792 | |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 793 | static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder, |
| 794 | struct intel_crtc_state *pipe_config) |
| 795 | { |
| 796 | struct drm_device *dev = encoder->base.dev; |
| 797 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 798 | struct drm_display_mode *adjusted_mode = |
| 799 | &pipe_config->base.adjusted_mode; |
Ramalingam C | 042ab0c | 2016-04-19 13:48:14 +0530 | [diff] [blame] | 800 | struct drm_display_mode *adjusted_mode_sw; |
| 801 | struct intel_crtc *intel_crtc; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 802 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base); |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 803 | unsigned int lane_count = intel_dsi->lane_count; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 804 | unsigned int bpp, fmt; |
| 805 | enum port port; |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 806 | u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp; |
Ramalingam C | 042ab0c | 2016-04-19 13:48:14 +0530 | [diff] [blame] | 807 | u16 hfp_sw, hsync_sw, hbp_sw; |
| 808 | u16 crtc_htotal_sw, crtc_hsync_start_sw, crtc_hsync_end_sw, |
| 809 | crtc_hblank_start_sw, crtc_hblank_end_sw; |
| 810 | |
| 811 | intel_crtc = to_intel_crtc(encoder->base.crtc); |
| 812 | adjusted_mode_sw = &intel_crtc->config->base.adjusted_mode; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 813 | |
| 814 | /* |
| 815 | * Atleast one port is active as encoder->get_config called only if |
| 816 | * encoder->get_hw_state() returns true. |
| 817 | */ |
| 818 | for_each_dsi_port(port, intel_dsi->ports) { |
| 819 | if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE) |
| 820 | break; |
| 821 | } |
| 822 | |
| 823 | fmt = I915_READ(MIPI_DSI_FUNC_PRG(port)) & VID_MODE_FORMAT_MASK; |
| 824 | pipe_config->pipe_bpp = |
| 825 | mipi_dsi_pixel_format_to_bpp( |
| 826 | pixel_format_from_register_bits(fmt)); |
| 827 | bpp = pipe_config->pipe_bpp; |
| 828 | |
| 829 | /* In terms of pixels */ |
| 830 | adjusted_mode->crtc_hdisplay = |
| 831 | I915_READ(BXT_MIPI_TRANS_HACTIVE(port)); |
| 832 | adjusted_mode->crtc_vdisplay = |
| 833 | I915_READ(BXT_MIPI_TRANS_VACTIVE(port)); |
| 834 | adjusted_mode->crtc_vtotal = |
| 835 | I915_READ(BXT_MIPI_TRANS_VTOTAL(port)); |
| 836 | |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 837 | hactive = adjusted_mode->crtc_hdisplay; |
| 838 | hfp = I915_READ(MIPI_HFP_COUNT(port)); |
| 839 | |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 840 | /* |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 841 | * Meaningful for video mode non-burst sync pulse mode only, |
| 842 | * can be zero for non-burst sync events and burst modes |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 843 | */ |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 844 | hsync = I915_READ(MIPI_HSYNC_PADDING_COUNT(port)); |
| 845 | hbp = I915_READ(MIPI_HBP_COUNT(port)); |
| 846 | |
| 847 | /* harizontal values are in terms of high speed byte clock */ |
| 848 | hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count, |
| 849 | intel_dsi->burst_mode_ratio); |
| 850 | hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count, |
| 851 | intel_dsi->burst_mode_ratio); |
| 852 | hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count, |
| 853 | intel_dsi->burst_mode_ratio); |
| 854 | |
| 855 | if (intel_dsi->dual_link) { |
| 856 | hfp *= 2; |
| 857 | hsync *= 2; |
| 858 | hbp *= 2; |
| 859 | } |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 860 | |
| 861 | /* vertical values are in terms of lines */ |
| 862 | vfp = I915_READ(MIPI_VFP_COUNT(port)); |
| 863 | vsync = I915_READ(MIPI_VSYNC_PADDING_COUNT(port)); |
| 864 | vbp = I915_READ(MIPI_VBP_COUNT(port)); |
| 865 | |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 866 | adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp; |
| 867 | adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay; |
| 868 | adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 869 | adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay; |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 870 | adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 871 | |
Ramalingam C | cefc4e1 | 2016-04-19 13:48:13 +0530 | [diff] [blame] | 872 | adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay; |
| 873 | adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 874 | adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay; |
| 875 | adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal; |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 876 | |
Ramalingam C | 042ab0c | 2016-04-19 13:48:14 +0530 | [diff] [blame] | 877 | /* |
| 878 | * In BXT DSI there is no regs programmed with few horizontal timings |
| 879 | * in Pixels but txbyteclkhs.. So retrieval process adds some |
| 880 | * ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs. |
| 881 | * Actually here for the given adjusted_mode, we are calculating the |
| 882 | * value programmed to the port and then back to the horizontal timing |
| 883 | * param in pixels. This is the expected value, including roundup errors |
| 884 | * And if that is same as retrieved value from port, then |
| 885 | * (HW state) adjusted_mode's horizontal timings are corrected to |
| 886 | * match with SW state to nullify the errors. |
| 887 | */ |
| 888 | /* Calculating the value programmed to the Port register */ |
| 889 | hfp_sw = adjusted_mode_sw->crtc_hsync_start - |
| 890 | adjusted_mode_sw->crtc_hdisplay; |
| 891 | hsync_sw = adjusted_mode_sw->crtc_hsync_end - |
| 892 | adjusted_mode_sw->crtc_hsync_start; |
| 893 | hbp_sw = adjusted_mode_sw->crtc_htotal - |
| 894 | adjusted_mode_sw->crtc_hsync_end; |
| 895 | |
| 896 | if (intel_dsi->dual_link) { |
| 897 | hfp_sw /= 2; |
| 898 | hsync_sw /= 2; |
| 899 | hbp_sw /= 2; |
| 900 | } |
| 901 | |
| 902 | hfp_sw = txbyteclkhs(hfp_sw, bpp, lane_count, |
| 903 | intel_dsi->burst_mode_ratio); |
| 904 | hsync_sw = txbyteclkhs(hsync_sw, bpp, lane_count, |
| 905 | intel_dsi->burst_mode_ratio); |
| 906 | hbp_sw = txbyteclkhs(hbp_sw, bpp, lane_count, |
| 907 | intel_dsi->burst_mode_ratio); |
| 908 | |
| 909 | /* Reverse calculating the adjusted mode parameters from port reg vals*/ |
| 910 | hfp_sw = pixels_from_txbyteclkhs(hfp_sw, bpp, lane_count, |
| 911 | intel_dsi->burst_mode_ratio); |
| 912 | hsync_sw = pixels_from_txbyteclkhs(hsync_sw, bpp, lane_count, |
| 913 | intel_dsi->burst_mode_ratio); |
| 914 | hbp_sw = pixels_from_txbyteclkhs(hbp_sw, bpp, lane_count, |
| 915 | intel_dsi->burst_mode_ratio); |
| 916 | |
| 917 | if (intel_dsi->dual_link) { |
| 918 | hfp_sw *= 2; |
| 919 | hsync_sw *= 2; |
| 920 | hbp_sw *= 2; |
| 921 | } |
| 922 | |
| 923 | crtc_htotal_sw = adjusted_mode_sw->crtc_hdisplay + hfp_sw + |
| 924 | hsync_sw + hbp_sw; |
| 925 | crtc_hsync_start_sw = hfp_sw + adjusted_mode_sw->crtc_hdisplay; |
| 926 | crtc_hsync_end_sw = hsync_sw + crtc_hsync_start_sw; |
| 927 | crtc_hblank_start_sw = adjusted_mode_sw->crtc_hdisplay; |
| 928 | crtc_hblank_end_sw = crtc_htotal_sw; |
| 929 | |
| 930 | if (adjusted_mode->crtc_htotal == crtc_htotal_sw) |
| 931 | adjusted_mode->crtc_htotal = adjusted_mode_sw->crtc_htotal; |
| 932 | |
| 933 | if (adjusted_mode->crtc_hsync_start == crtc_hsync_start_sw) |
| 934 | adjusted_mode->crtc_hsync_start = |
| 935 | adjusted_mode_sw->crtc_hsync_start; |
| 936 | |
| 937 | if (adjusted_mode->crtc_hsync_end == crtc_hsync_end_sw) |
| 938 | adjusted_mode->crtc_hsync_end = |
| 939 | adjusted_mode_sw->crtc_hsync_end; |
| 940 | |
| 941 | if (adjusted_mode->crtc_hblank_start == crtc_hblank_start_sw) |
| 942 | adjusted_mode->crtc_hblank_start = |
| 943 | adjusted_mode_sw->crtc_hblank_start; |
| 944 | |
| 945 | if (adjusted_mode->crtc_hblank_end == crtc_hblank_end_sw) |
| 946 | adjusted_mode->crtc_hblank_end = |
| 947 | adjusted_mode_sw->crtc_hblank_end; |
| 948 | } |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 949 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 950 | static void intel_dsi_get_config(struct intel_encoder *encoder, |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 951 | struct intel_crtc_state *pipe_config) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 952 | { |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 953 | struct drm_device *dev = encoder->base.dev; |
Jani Nikula | d7d85d8 | 2016-01-08 12:45:39 +0200 | [diff] [blame] | 954 | u32 pclk; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 955 | DRM_DEBUG_KMS("\n"); |
| 956 | |
Jani Nikula | a65347b | 2015-11-27 12:21:46 +0200 | [diff] [blame] | 957 | pipe_config->has_dsi_encoder = true; |
| 958 | |
Ramalingam C | 6f0e753 | 2016-04-07 14:36:07 +0530 | [diff] [blame] | 959 | if (IS_BROXTON(dev)) |
| 960 | bxt_dsi_get_pipe_config(encoder, pipe_config); |
| 961 | |
Ville Syrjälä | 47eacba | 2016-04-12 22:14:35 +0300 | [diff] [blame] | 962 | pclk = intel_dsi_get_pclk(encoder, pipe_config->pipe_bpp, |
| 963 | pipe_config); |
Shobhit Kumar | f573de5 | 2014-07-30 20:32:37 +0530 | [diff] [blame] | 964 | if (!pclk) |
| 965 | return; |
| 966 | |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 967 | pipe_config->base.adjusted_mode.crtc_clock = pclk; |
Shobhit Kumar | f573de5 | 2014-07-30 20:32:37 +0530 | [diff] [blame] | 968 | pipe_config->port_clock = pclk; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 969 | } |
| 970 | |
Damien Lespiau | c19de8e | 2013-11-28 15:29:18 +0000 | [diff] [blame] | 971 | static enum drm_mode_status |
| 972 | intel_dsi_mode_valid(struct drm_connector *connector, |
| 973 | struct drm_display_mode *mode) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 974 | { |
| 975 | struct intel_connector *intel_connector = to_intel_connector(connector); |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 976 | const struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode; |
Mika Kahola | 759a1e9 | 2015-08-18 14:37:01 +0300 | [diff] [blame] | 977 | int max_dotclk = to_i915(connector->dev)->max_dotclk_freq; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 978 | |
| 979 | DRM_DEBUG_KMS("\n"); |
| 980 | |
| 981 | if (mode->flags & DRM_MODE_FLAG_DBLSCAN) { |
| 982 | DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n"); |
| 983 | return MODE_NO_DBLESCAN; |
| 984 | } |
| 985 | |
| 986 | if (fixed_mode) { |
| 987 | if (mode->hdisplay > fixed_mode->hdisplay) |
| 988 | return MODE_PANEL; |
| 989 | if (mode->vdisplay > fixed_mode->vdisplay) |
| 990 | return MODE_PANEL; |
Mika Kahola | 759a1e9 | 2015-08-18 14:37:01 +0300 | [diff] [blame] | 991 | if (fixed_mode->clock > max_dotclk) |
| 992 | return MODE_CLOCK_HIGH; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 993 | } |
| 994 | |
Jani Nikula | 36d21f4 | 2015-01-16 14:27:20 +0200 | [diff] [blame] | 995 | return MODE_OK; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 996 | } |
| 997 | |
| 998 | /* return txclkesc cycles in terms of divider and duration in us */ |
| 999 | static u16 txclkesc(u32 divider, unsigned int us) |
| 1000 | { |
| 1001 | switch (divider) { |
| 1002 | case ESCAPE_CLOCK_DIVIDER_1: |
| 1003 | default: |
| 1004 | return 20 * us; |
| 1005 | case ESCAPE_CLOCK_DIVIDER_2: |
| 1006 | return 10 * us; |
| 1007 | case ESCAPE_CLOCK_DIVIDER_4: |
| 1008 | return 5 * us; |
| 1009 | } |
| 1010 | } |
| 1011 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1012 | static void set_dsi_timings(struct drm_encoder *encoder, |
Ville Syrjälä | 5e7234c | 2015-09-25 16:37:43 +0300 | [diff] [blame] | 1013 | const struct drm_display_mode *adjusted_mode) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1014 | { |
| 1015 | struct drm_device *dev = encoder->dev; |
| 1016 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1017 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1018 | enum port port; |
Jani Nikula | 1e78aa0 | 2016-03-16 12:21:40 +0200 | [diff] [blame] | 1019 | 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] | 1020 | unsigned int lane_count = intel_dsi->lane_count; |
| 1021 | |
| 1022 | u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp; |
| 1023 | |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1024 | hactive = adjusted_mode->crtc_hdisplay; |
| 1025 | hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay; |
| 1026 | hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start; |
| 1027 | hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1028 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1029 | if (intel_dsi->dual_link) { |
| 1030 | hactive /= 2; |
| 1031 | if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) |
| 1032 | hactive += intel_dsi->pixel_overlap; |
| 1033 | hfp /= 2; |
| 1034 | hsync /= 2; |
| 1035 | hbp /= 2; |
| 1036 | } |
| 1037 | |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1038 | vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay; |
| 1039 | vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start; |
| 1040 | vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1041 | |
| 1042 | /* horizontal values are in terms of high speed byte clock */ |
Shobhit Kumar | 7f0c860 | 2014-07-30 20:34:57 +0530 | [diff] [blame] | 1043 | hactive = txbyteclkhs(hactive, bpp, lane_count, |
Daniel Vetter | 7f3de83 | 2014-07-30 22:34:27 +0200 | [diff] [blame] | 1044 | intel_dsi->burst_mode_ratio); |
Shobhit Kumar | 7f0c860 | 2014-07-30 20:34:57 +0530 | [diff] [blame] | 1045 | hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio); |
| 1046 | hsync = txbyteclkhs(hsync, bpp, lane_count, |
Daniel Vetter | 7f3de83 | 2014-07-30 22:34:27 +0200 | [diff] [blame] | 1047 | intel_dsi->burst_mode_ratio); |
Shobhit Kumar | 7f0c860 | 2014-07-30 20:34:57 +0530 | [diff] [blame] | 1048 | hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1049 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1050 | for_each_dsi_port(port, intel_dsi->ports) { |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1051 | if (IS_BROXTON(dev)) { |
| 1052 | /* |
| 1053 | * Program hdisplay and vdisplay on MIPI transcoder. |
| 1054 | * This is different from calculated hactive and |
| 1055 | * vactive, as they are calculated per channel basis, |
| 1056 | * whereas these values should be based on resolution. |
| 1057 | */ |
| 1058 | I915_WRITE(BXT_MIPI_TRANS_HACTIVE(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1059 | adjusted_mode->crtc_hdisplay); |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1060 | I915_WRITE(BXT_MIPI_TRANS_VACTIVE(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1061 | adjusted_mode->crtc_vdisplay); |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1062 | I915_WRITE(BXT_MIPI_TRANS_VTOTAL(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1063 | adjusted_mode->crtc_vtotal); |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1064 | } |
| 1065 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1066 | I915_WRITE(MIPI_HACTIVE_AREA_COUNT(port), hactive); |
| 1067 | I915_WRITE(MIPI_HFP_COUNT(port), hfp); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1068 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1069 | /* meaningful for video mode non-burst sync pulse mode only, |
| 1070 | * can be zero for non-burst sync events and burst modes */ |
| 1071 | I915_WRITE(MIPI_HSYNC_PADDING_COUNT(port), hsync); |
| 1072 | I915_WRITE(MIPI_HBP_COUNT(port), hbp); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1073 | |
Gaurav K Singh | aa102d2 | 2014-12-04 10:58:54 +0530 | [diff] [blame] | 1074 | /* vertical values are in terms of lines */ |
| 1075 | I915_WRITE(MIPI_VFP_COUNT(port), vfp); |
| 1076 | I915_WRITE(MIPI_VSYNC_PADDING_COUNT(port), vsync); |
| 1077 | I915_WRITE(MIPI_VBP_COUNT(port), vbp); |
| 1078 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1079 | } |
| 1080 | |
Jani Nikula | 1e78aa0 | 2016-03-16 12:21:40 +0200 | [diff] [blame] | 1081 | static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt) |
| 1082 | { |
| 1083 | switch (fmt) { |
| 1084 | case MIPI_DSI_FMT_RGB888: |
| 1085 | return VID_MODE_FORMAT_RGB888; |
| 1086 | case MIPI_DSI_FMT_RGB666: |
| 1087 | return VID_MODE_FORMAT_RGB666; |
| 1088 | case MIPI_DSI_FMT_RGB666_PACKED: |
| 1089 | return VID_MODE_FORMAT_RGB666_PACKED; |
| 1090 | case MIPI_DSI_FMT_RGB565: |
| 1091 | return VID_MODE_FORMAT_RGB565; |
| 1092 | default: |
| 1093 | MISSING_CASE(fmt); |
| 1094 | return VID_MODE_FORMAT_RGB666; |
| 1095 | } |
| 1096 | } |
| 1097 | |
Daniel Vetter | 07e4fb9 | 2014-04-24 23:54:59 +0200 | [diff] [blame] | 1098 | static void intel_dsi_prepare(struct intel_encoder *intel_encoder) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1099 | { |
| 1100 | struct drm_encoder *encoder = &intel_encoder->base; |
| 1101 | struct drm_device *dev = encoder->dev; |
| 1102 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1103 | struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc); |
| 1104 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); |
Ville Syrjälä | 7c5f93b | 2015-09-08 13:40:49 +0300 | [diff] [blame] | 1105 | const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode; |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1106 | enum port port; |
Jani Nikula | 1e78aa0 | 2016-03-16 12:21:40 +0200 | [diff] [blame] | 1107 | 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] | 1108 | u32 val, tmp; |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1109 | u16 mode_hdisplay; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1110 | |
Jani Nikula | e7d7cad | 2014-11-14 16:54:21 +0200 | [diff] [blame] | 1111 | DRM_DEBUG_KMS("pipe %c\n", pipe_name(intel_crtc->pipe)); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1112 | |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1113 | mode_hdisplay = adjusted_mode->crtc_hdisplay; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1114 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1115 | if (intel_dsi->dual_link) { |
| 1116 | mode_hdisplay /= 2; |
| 1117 | if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) |
| 1118 | mode_hdisplay += intel_dsi->pixel_overlap; |
| 1119 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1120 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1121 | for_each_dsi_port(port, intel_dsi->ports) { |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1122 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1123 | /* |
| 1124 | * escape clock divider, 20MHz, shared for A and C. |
| 1125 | * device ready must be off when doing this! txclkesc? |
| 1126 | */ |
| 1127 | tmp = I915_READ(MIPI_CTRL(PORT_A)); |
| 1128 | tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK; |
| 1129 | I915_WRITE(MIPI_CTRL(PORT_A), tmp | |
| 1130 | ESCAPE_CLOCK_DIVIDER_1); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1131 | |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1132 | /* read request priority is per pipe */ |
| 1133 | tmp = I915_READ(MIPI_CTRL(port)); |
| 1134 | tmp &= ~READ_REQUEST_PRIORITY_MASK; |
| 1135 | I915_WRITE(MIPI_CTRL(port), tmp | |
| 1136 | READ_REQUEST_PRIORITY_HIGH); |
| 1137 | } else if (IS_BROXTON(dev)) { |
Deepak M | 56c4897 | 2015-12-09 20:14:04 +0530 | [diff] [blame] | 1138 | enum pipe pipe = intel_crtc->pipe; |
| 1139 | |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1140 | tmp = I915_READ(MIPI_CTRL(port)); |
| 1141 | tmp &= ~BXT_PIPE_SELECT_MASK; |
| 1142 | |
Deepak M | 56c4897 | 2015-12-09 20:14:04 +0530 | [diff] [blame] | 1143 | tmp |= BXT_PIPE_SELECT(pipe); |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1144 | I915_WRITE(MIPI_CTRL(port), tmp); |
| 1145 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1146 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1147 | /* XXX: why here, why like this? handling in irq handler?! */ |
| 1148 | I915_WRITE(MIPI_INTR_STAT(port), 0xffffffff); |
| 1149 | I915_WRITE(MIPI_INTR_EN(port), 0xffffffff); |
| 1150 | |
| 1151 | I915_WRITE(MIPI_DPHY_PARAM(port), intel_dsi->dphy_reg); |
| 1152 | |
| 1153 | I915_WRITE(MIPI_DPI_RESOLUTION(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1154 | adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1155 | mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT); |
| 1156 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1157 | |
| 1158 | set_dsi_timings(encoder, adjusted_mode); |
| 1159 | |
| 1160 | val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT; |
| 1161 | if (is_cmd_mode(intel_dsi)) { |
| 1162 | val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT; |
| 1163 | val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */ |
| 1164 | } else { |
| 1165 | val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT; |
Jani Nikula | 1e78aa0 | 2016-03-16 12:21:40 +0200 | [diff] [blame] | 1166 | val |= pixel_format_to_reg(intel_dsi->pixel_format); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1167 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1168 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1169 | tmp = 0; |
Shobhit Kumar | f1c79f1 | 2014-04-09 13:59:33 +0530 | [diff] [blame] | 1170 | if (intel_dsi->eotp_pkt == 0) |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1171 | tmp |= EOT_DISABLE; |
Shobhit Kumar | f1c79f1 | 2014-04-09 13:59:33 +0530 | [diff] [blame] | 1172 | if (intel_dsi->clock_stop) |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1173 | tmp |= CLOCKSTOP; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1174 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1175 | for_each_dsi_port(port, intel_dsi->ports) { |
| 1176 | I915_WRITE(MIPI_DSI_FUNC_PRG(port), val); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1177 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1178 | /* timeouts for recovery. one frame IIUC. if counter expires, |
| 1179 | * EOT and stop state. */ |
Shobhit Kumar | cf4dbd2 | 2014-04-14 11:18:25 +0530 | [diff] [blame] | 1180 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1181 | /* |
| 1182 | * In burst mode, value greater than one DPI line Time in byte |
| 1183 | * clock (txbyteclkhs) To timeout this timer 1+ of the above |
| 1184 | * said value is recommended. |
| 1185 | * |
| 1186 | * In non-burst mode, Value greater than one DPI frame time in |
| 1187 | * byte clock(txbyteclkhs) To timeout this timer 1+ of the above |
| 1188 | * said value is recommended. |
| 1189 | * |
| 1190 | * In DBI only mode, value greater than one DBI frame time in |
| 1191 | * byte clock(txbyteclkhs) To timeout this timer 1+ of the above |
| 1192 | * said value is recommended. |
| 1193 | */ |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1194 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1195 | if (is_vid_mode(intel_dsi) && |
| 1196 | intel_dsi->video_mode_format == VIDEO_MODE_BURST) { |
| 1197 | I915_WRITE(MIPI_HS_TX_TIMEOUT(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1198 | txbyteclkhs(adjusted_mode->crtc_htotal, bpp, |
Ville Syrjälä | 124abe0 | 2015-09-08 13:40:45 +0300 | [diff] [blame] | 1199 | intel_dsi->lane_count, |
| 1200 | intel_dsi->burst_mode_ratio) + 1); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1201 | } else { |
| 1202 | I915_WRITE(MIPI_HS_TX_TIMEOUT(port), |
Ville Syrjälä | aad941d | 2015-09-25 16:38:56 +0300 | [diff] [blame] | 1203 | txbyteclkhs(adjusted_mode->crtc_vtotal * |
| 1204 | adjusted_mode->crtc_htotal, |
Ville Syrjälä | 124abe0 | 2015-09-08 13:40:45 +0300 | [diff] [blame] | 1205 | bpp, intel_dsi->lane_count, |
| 1206 | intel_dsi->burst_mode_ratio) + 1); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1207 | } |
| 1208 | I915_WRITE(MIPI_LP_RX_TIMEOUT(port), intel_dsi->lp_rx_timeout); |
| 1209 | I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(port), |
| 1210 | intel_dsi->turn_arnd_val); |
| 1211 | I915_WRITE(MIPI_DEVICE_RESET_TIMER(port), |
| 1212 | intel_dsi->rst_timer_val); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1213 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1214 | /* dphy stuff */ |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1215 | |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1216 | /* in terms of low power clock */ |
| 1217 | I915_WRITE(MIPI_INIT_COUNT(port), |
| 1218 | txclkesc(intel_dsi->escape_clk_div, 100)); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1219 | |
Shashank Sharma | d2e08c0 | 2015-09-01 19:41:40 +0530 | [diff] [blame] | 1220 | if (IS_BROXTON(dev) && (!intel_dsi->dual_link)) { |
| 1221 | /* |
| 1222 | * BXT spec says write MIPI_INIT_COUNT for |
| 1223 | * both the ports, even if only one is |
| 1224 | * getting used. So write the other port |
| 1225 | * if not in dual link mode. |
| 1226 | */ |
| 1227 | I915_WRITE(MIPI_INIT_COUNT(port == |
| 1228 | PORT_A ? PORT_C : PORT_A), |
| 1229 | intel_dsi->init_count); |
| 1230 | } |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1231 | |
| 1232 | /* recovery disables */ |
Shobhit Kumar | 87c54d0 | 2015-02-03 12:17:35 +0530 | [diff] [blame] | 1233 | I915_WRITE(MIPI_EOT_DISABLE(port), tmp); |
Gaurav K Singh | 24ee0e6 | 2014-12-05 14:24:21 +0530 | [diff] [blame] | 1234 | |
| 1235 | /* in terms of low power clock */ |
| 1236 | I915_WRITE(MIPI_INIT_COUNT(port), intel_dsi->init_count); |
| 1237 | |
| 1238 | /* in terms of txbyteclkhs. actual high to low switch + |
| 1239 | * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK. |
| 1240 | * |
| 1241 | * XXX: write MIPI_STOP_STATE_STALL? |
| 1242 | */ |
| 1243 | I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(port), |
| 1244 | intel_dsi->hs_to_lp_count); |
| 1245 | |
| 1246 | /* XXX: low power clock equivalence in terms of byte clock. |
| 1247 | * the number of byte clocks occupied in one low power clock. |
| 1248 | * based on txbyteclkhs and txclkesc. |
| 1249 | * txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL |
| 1250 | * ) / 105.??? |
| 1251 | */ |
| 1252 | I915_WRITE(MIPI_LP_BYTECLK(port), intel_dsi->lp_byte_clk); |
| 1253 | |
| 1254 | /* the bw essential for transmitting 16 long packets containing |
| 1255 | * 252 bytes meant for dcs write memory command is programmed in |
| 1256 | * this register in terms of byte clocks. based on dsi transfer |
| 1257 | * rate and the number of lanes configured the time taken to |
| 1258 | * transmit 16 long packets in a dsi stream varies. */ |
| 1259 | I915_WRITE(MIPI_DBI_BW_CTRL(port), intel_dsi->bw_timer); |
| 1260 | |
| 1261 | I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(port), |
| 1262 | intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT | |
| 1263 | intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT); |
| 1264 | |
| 1265 | if (is_vid_mode(intel_dsi)) |
| 1266 | /* Some panels might have resolution which is not a |
| 1267 | * multiple of 64 like 1366 x 768. Enable RANDOM |
| 1268 | * resolution support for such panels by default */ |
| 1269 | I915_WRITE(MIPI_VIDEO_MODE_FORMAT(port), |
| 1270 | intel_dsi->video_frmt_cfg_bits | |
| 1271 | intel_dsi->video_mode_format | |
| 1272 | IP_TG_CONFIG | |
| 1273 | RANDOM_DPI_DISPLAY_RESOLUTION); |
| 1274 | } |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1275 | } |
| 1276 | |
| 1277 | static enum drm_connector_status |
| 1278 | intel_dsi_detect(struct drm_connector *connector, bool force) |
| 1279 | { |
Jani Nikula | 36d21f4 | 2015-01-16 14:27:20 +0200 | [diff] [blame] | 1280 | return connector_status_connected; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | static int intel_dsi_get_modes(struct drm_connector *connector) |
| 1284 | { |
| 1285 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 1286 | struct drm_display_mode *mode; |
| 1287 | |
| 1288 | DRM_DEBUG_KMS("\n"); |
| 1289 | |
| 1290 | if (!intel_connector->panel.fixed_mode) { |
| 1291 | DRM_DEBUG_KMS("no fixed mode\n"); |
| 1292 | return 0; |
| 1293 | } |
| 1294 | |
| 1295 | mode = drm_mode_duplicate(connector->dev, |
| 1296 | intel_connector->panel.fixed_mode); |
| 1297 | if (!mode) { |
| 1298 | DRM_DEBUG_KMS("drm_mode_duplicate failed\n"); |
| 1299 | return 0; |
| 1300 | } |
| 1301 | |
| 1302 | drm_mode_probed_add(connector, mode); |
| 1303 | return 1; |
| 1304 | } |
| 1305 | |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1306 | static int intel_dsi_set_property(struct drm_connector *connector, |
| 1307 | struct drm_property *property, |
| 1308 | uint64_t val) |
| 1309 | { |
| 1310 | struct drm_device *dev = connector->dev; |
| 1311 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 1312 | struct drm_crtc *crtc; |
| 1313 | int ret; |
| 1314 | |
| 1315 | ret = drm_object_property_set_value(&connector->base, property, val); |
| 1316 | if (ret) |
| 1317 | return ret; |
| 1318 | |
| 1319 | if (property == dev->mode_config.scaling_mode_property) { |
| 1320 | if (val == DRM_MODE_SCALE_NONE) { |
| 1321 | DRM_DEBUG_KMS("no scaling not supported\n"); |
| 1322 | return -EINVAL; |
| 1323 | } |
Ville Syrjälä | 234126c | 2016-04-12 22:14:38 +0300 | [diff] [blame] | 1324 | if (HAS_GMCH_DISPLAY(dev) && |
| 1325 | val == DRM_MODE_SCALE_CENTER) { |
| 1326 | DRM_DEBUG_KMS("centering not supported\n"); |
| 1327 | return -EINVAL; |
| 1328 | } |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1329 | |
| 1330 | if (intel_connector->panel.fitting_mode == val) |
| 1331 | return 0; |
| 1332 | |
| 1333 | intel_connector->panel.fitting_mode = val; |
| 1334 | } |
| 1335 | |
| 1336 | crtc = intel_attached_encoder(connector)->base.crtc; |
| 1337 | if (crtc && crtc->state->enable) { |
| 1338 | /* |
| 1339 | * If the CRTC is enabled, the display will be changed |
| 1340 | * according to the new panel fitting mode. |
| 1341 | */ |
| 1342 | intel_crtc_restore_mode(crtc); |
| 1343 | } |
| 1344 | |
| 1345 | return 0; |
| 1346 | } |
| 1347 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1348 | static void intel_dsi_connector_destroy(struct drm_connector *connector) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1349 | { |
| 1350 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 1351 | |
| 1352 | DRM_DEBUG_KMS("\n"); |
| 1353 | intel_panel_fini(&intel_connector->panel); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1354 | drm_connector_cleanup(connector); |
| 1355 | kfree(connector); |
| 1356 | } |
| 1357 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1358 | static void intel_dsi_encoder_destroy(struct drm_encoder *encoder) |
| 1359 | { |
| 1360 | struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); |
| 1361 | |
| 1362 | if (intel_dsi->panel) { |
| 1363 | drm_panel_detach(intel_dsi->panel); |
| 1364 | /* XXX: Logically this call belongs in the panel driver. */ |
| 1365 | drm_panel_remove(intel_dsi->panel); |
| 1366 | } |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 1367 | |
| 1368 | /* dispose of the gpios */ |
| 1369 | if (intel_dsi->gpio_panel) |
| 1370 | gpiod_put(intel_dsi->gpio_panel); |
| 1371 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1372 | intel_encoder_destroy(encoder); |
| 1373 | } |
| 1374 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1375 | static const struct drm_encoder_funcs intel_dsi_funcs = { |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1376 | .destroy = intel_dsi_encoder_destroy, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1377 | }; |
| 1378 | |
| 1379 | static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = { |
| 1380 | .get_modes = intel_dsi_get_modes, |
| 1381 | .mode_valid = intel_dsi_mode_valid, |
| 1382 | .best_encoder = intel_best_encoder, |
| 1383 | }; |
| 1384 | |
| 1385 | static const struct drm_connector_funcs intel_dsi_connector_funcs = { |
Maarten Lankhorst | 4d688a2 | 2015-08-05 12:37:06 +0200 | [diff] [blame] | 1386 | .dpms = drm_atomic_helper_connector_dpms, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1387 | .detect = intel_dsi_detect, |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1388 | .destroy = intel_dsi_connector_destroy, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1389 | .fill_modes = drm_helper_probe_single_connector_modes, |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1390 | .set_property = intel_dsi_set_property, |
Matt Roper | 2545e4a | 2015-01-22 16:51:27 -0800 | [diff] [blame] | 1391 | .atomic_get_property = intel_connector_atomic_get_property, |
Matt Roper | c6f95f2 | 2015-01-22 16:50:32 -0800 | [diff] [blame] | 1392 | .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, |
Ander Conselvan de Oliveira | 9896972 | 2015-03-20 16:18:06 +0200 | [diff] [blame] | 1393 | .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1394 | }; |
| 1395 | |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1396 | static void intel_dsi_add_properties(struct intel_connector *connector) |
| 1397 | { |
| 1398 | struct drm_device *dev = connector->base.dev; |
| 1399 | |
| 1400 | if (connector->panel.fixed_mode) { |
| 1401 | drm_mode_create_scaling_mode_property(dev); |
| 1402 | drm_object_attach_property(&connector->base.base, |
| 1403 | dev->mode_config.scaling_mode_property, |
| 1404 | DRM_MODE_SCALE_ASPECT); |
| 1405 | connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT; |
| 1406 | } |
| 1407 | } |
| 1408 | |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1409 | void intel_dsi_init(struct drm_device *dev) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1410 | { |
| 1411 | struct intel_dsi *intel_dsi; |
| 1412 | struct intel_encoder *intel_encoder; |
| 1413 | struct drm_encoder *encoder; |
| 1414 | struct intel_connector *intel_connector; |
| 1415 | struct drm_connector *connector; |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1416 | struct drm_display_mode *scan, *fixed_mode = NULL; |
Shashank Sharma | b6fdd0f | 2014-05-19 20:54:03 +0530 | [diff] [blame] | 1417 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 1418 | enum port port; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1419 | unsigned int i; |
| 1420 | |
| 1421 | DRM_DEBUG_KMS("\n"); |
| 1422 | |
Shobhit Kumar | 3e6bd01 | 2014-05-27 19:33:59 +0530 | [diff] [blame] | 1423 | /* There is no detection method for MIPI so rely on VBT */ |
Jani Nikula | 7137aec | 2016-03-16 12:43:32 +0200 | [diff] [blame] | 1424 | if (!intel_bios_is_dsi_present(dev_priv, &port)) |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1425 | return; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1426 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1427 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
Shashank Sharma | b6fdd0f | 2014-05-19 20:54:03 +0530 | [diff] [blame] | 1428 | dev_priv->mipi_mmio_base = VLV_MIPI_BASE; |
Shashank Sharma | c6c794a | 2016-03-22 12:01:50 +0200 | [diff] [blame] | 1429 | } else if (IS_BROXTON(dev)) { |
| 1430 | dev_priv->mipi_mmio_base = BXT_MIPI_BASE; |
Shashank Sharma | b6fdd0f | 2014-05-19 20:54:03 +0530 | [diff] [blame] | 1431 | } else { |
| 1432 | DRM_ERROR("Unsupported Mipi device to reg base"); |
Christoph Jaeger | 868d665 | 2014-06-13 21:51:22 +0200 | [diff] [blame] | 1433 | return; |
Shashank Sharma | b6fdd0f | 2014-05-19 20:54:03 +0530 | [diff] [blame] | 1434 | } |
| 1435 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1436 | intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL); |
| 1437 | if (!intel_dsi) |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1438 | return; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1439 | |
Ander Conselvan de Oliveira | 08d9bc9 | 2015-04-10 10:59:10 +0300 | [diff] [blame] | 1440 | intel_connector = intel_connector_alloc(); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1441 | if (!intel_connector) { |
| 1442 | kfree(intel_dsi); |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1443 | return; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1444 | } |
| 1445 | |
| 1446 | intel_encoder = &intel_dsi->base; |
| 1447 | encoder = &intel_encoder->base; |
| 1448 | intel_dsi->attached_connector = intel_connector; |
| 1449 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1450 | connector = &intel_connector->base; |
| 1451 | |
Ville Syrjälä | 13a3d91 | 2015-12-09 16:20:18 +0200 | [diff] [blame] | 1452 | drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI, |
| 1453 | NULL); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1454 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1455 | intel_encoder->compute_config = intel_dsi_compute_config; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1456 | intel_encoder->pre_enable = intel_dsi_pre_enable; |
Shobhit Kumar | 2634fd7 | 2014-04-09 13:59:31 +0530 | [diff] [blame] | 1457 | intel_encoder->enable = intel_dsi_enable_nop; |
Imre Deak | c315faf | 2014-05-27 19:00:09 +0300 | [diff] [blame] | 1458 | intel_encoder->disable = intel_dsi_pre_disable; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1459 | intel_encoder->post_disable = intel_dsi_post_disable; |
| 1460 | intel_encoder->get_hw_state = intel_dsi_get_hw_state; |
| 1461 | intel_encoder->get_config = intel_dsi_get_config; |
| 1462 | |
| 1463 | intel_connector->get_hw_state = intel_connector_get_hw_state; |
Imre Deak | 4932e2c | 2014-02-11 17:12:48 +0200 | [diff] [blame] | 1464 | intel_connector->unregister = intel_connector_unregister; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1465 | |
Jani Nikula | 2e85ab4 | 2016-03-18 17:05:44 +0200 | [diff] [blame] | 1466 | /* |
| 1467 | * On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI |
| 1468 | * port C. BXT isn't limited like this. |
| 1469 | */ |
| 1470 | if (IS_BROXTON(dev_priv)) |
| 1471 | intel_encoder->crtc_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C); |
| 1472 | else if (port == PORT_A) |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 1473 | intel_encoder->crtc_mask = BIT(PIPE_A); |
Jani Nikula | 7137aec | 2016-03-16 12:43:32 +0200 | [diff] [blame] | 1474 | else |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 1475 | intel_encoder->crtc_mask = BIT(PIPE_B); |
Jani Nikula | e7d7cad | 2014-11-14 16:54:21 +0200 | [diff] [blame] | 1476 | |
Jani Nikula | 9019835 | 2016-04-26 16:14:25 +0300 | [diff] [blame] | 1477 | if (dev_priv->vbt.dsi.config->dual_link) { |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 1478 | intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C); |
Jani Nikula | 9019835 | 2016-04-26 16:14:25 +0300 | [diff] [blame] | 1479 | |
| 1480 | switch (dev_priv->vbt.dsi.config->dl_dcs_backlight_ports) { |
| 1481 | case DL_DCS_PORT_A: |
| 1482 | intel_dsi->dcs_backlight_ports = BIT(PORT_A); |
| 1483 | break; |
| 1484 | case DL_DCS_PORT_C: |
| 1485 | intel_dsi->dcs_backlight_ports = BIT(PORT_C); |
| 1486 | break; |
| 1487 | default: |
| 1488 | case DL_DCS_PORT_A_AND_C: |
| 1489 | intel_dsi->dcs_backlight_ports = BIT(PORT_A) | BIT(PORT_C); |
| 1490 | break; |
| 1491 | } |
Deepak M | 1ecc1c6 | 2016-04-26 16:14:26 +0300 | [diff] [blame^] | 1492 | |
| 1493 | switch (dev_priv->vbt.dsi.config->dl_dcs_cabc_ports) { |
| 1494 | case DL_DCS_PORT_A: |
| 1495 | intel_dsi->dcs_cabc_ports = BIT(PORT_A); |
| 1496 | break; |
| 1497 | case DL_DCS_PORT_C: |
| 1498 | intel_dsi->dcs_cabc_ports = BIT(PORT_C); |
| 1499 | break; |
| 1500 | default: |
| 1501 | case DL_DCS_PORT_A_AND_C: |
| 1502 | intel_dsi->dcs_cabc_ports = BIT(PORT_A) | BIT(PORT_C); |
| 1503 | break; |
| 1504 | } |
Jani Nikula | 9019835 | 2016-04-26 16:14:25 +0300 | [diff] [blame] | 1505 | } else { |
Jani Nikula | 701d25b | 2016-03-18 17:05:43 +0200 | [diff] [blame] | 1506 | intel_dsi->ports = BIT(port); |
Jani Nikula | 9019835 | 2016-04-26 16:14:25 +0300 | [diff] [blame] | 1507 | intel_dsi->dcs_backlight_ports = BIT(port); |
Deepak M | 1ecc1c6 | 2016-04-26 16:14:26 +0300 | [diff] [blame^] | 1508 | intel_dsi->dcs_cabc_ports = BIT(port); |
Jani Nikula | 9019835 | 2016-04-26 16:14:25 +0300 | [diff] [blame] | 1509 | } |
Gaurav K Singh | 8242578 | 2015-08-03 15:45:32 +0530 | [diff] [blame] | 1510 | |
Deepak M | 1ecc1c6 | 2016-04-26 16:14:26 +0300 | [diff] [blame^] | 1511 | if (!dev_priv->vbt.dsi.config->cabc_supported) |
| 1512 | intel_dsi->dcs_cabc_ports = 0; |
| 1513 | |
Jani Nikula | 7e9804f | 2015-01-16 14:27:23 +0200 | [diff] [blame] | 1514 | /* Create a DSI host (and a device) for each port. */ |
| 1515 | for_each_dsi_port(port, intel_dsi->ports) { |
| 1516 | struct intel_dsi_host *host; |
| 1517 | |
| 1518 | host = intel_dsi_host_init(intel_dsi, port); |
| 1519 | if (!host) |
| 1520 | goto err; |
| 1521 | |
| 1522 | intel_dsi->dsi_hosts[port] = host; |
| 1523 | } |
| 1524 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1525 | for (i = 0; i < ARRAY_SIZE(intel_dsi_drivers); i++) { |
| 1526 | intel_dsi->panel = intel_dsi_drivers[i].init(intel_dsi, |
| 1527 | intel_dsi_drivers[i].panel_id); |
| 1528 | if (intel_dsi->panel) |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1529 | break; |
| 1530 | } |
| 1531 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1532 | if (!intel_dsi->panel) { |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1533 | DRM_DEBUG_KMS("no device found\n"); |
| 1534 | goto err; |
| 1535 | } |
| 1536 | |
Shobhit Kumar | fc45e82 | 2015-06-26 14:32:09 +0530 | [diff] [blame] | 1537 | /* |
| 1538 | * In case of BYT with CRC PMIC, we need to use GPIO for |
| 1539 | * Panel control. |
| 1540 | */ |
| 1541 | if (dev_priv->vbt.dsi.config->pwm_blc == PPS_BLC_PMIC) { |
| 1542 | intel_dsi->gpio_panel = |
| 1543 | gpiod_get(dev->dev, "panel", GPIOD_OUT_HIGH); |
| 1544 | |
| 1545 | if (IS_ERR(intel_dsi->gpio_panel)) { |
| 1546 | DRM_ERROR("Failed to own gpio for panel control\n"); |
| 1547 | intel_dsi->gpio_panel = NULL; |
| 1548 | } |
| 1549 | } |
| 1550 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1551 | intel_encoder->type = INTEL_OUTPUT_DSI; |
Ville Syrjälä | bc079e8 | 2014-03-03 16:15:28 +0200 | [diff] [blame] | 1552 | intel_encoder->cloneable = 0; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1553 | drm_connector_init(dev, connector, &intel_dsi_connector_funcs, |
| 1554 | DRM_MODE_CONNECTOR_DSI); |
| 1555 | |
| 1556 | drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs); |
| 1557 | |
| 1558 | connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/ |
| 1559 | connector->interlace_allowed = false; |
| 1560 | connector->doublescan_allowed = false; |
| 1561 | |
| 1562 | intel_connector_attach_encoder(intel_connector, intel_encoder); |
| 1563 | |
Jani Nikula | 593e062 | 2015-01-23 15:30:56 +0200 | [diff] [blame] | 1564 | drm_panel_attach(intel_dsi->panel, connector); |
| 1565 | |
| 1566 | mutex_lock(&dev->mode_config.mutex); |
| 1567 | drm_panel_get_modes(intel_dsi->panel); |
| 1568 | list_for_each_entry(scan, &connector->probed_modes, head) { |
| 1569 | if ((scan->type & DRM_MODE_TYPE_PREFERRED)) { |
| 1570 | fixed_mode = drm_mode_duplicate(dev, scan); |
| 1571 | break; |
| 1572 | } |
| 1573 | } |
| 1574 | mutex_unlock(&dev->mode_config.mutex); |
| 1575 | |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1576 | if (!fixed_mode) { |
| 1577 | DRM_DEBUG_KMS("no fixed mode\n"); |
| 1578 | goto err; |
| 1579 | } |
| 1580 | |
Vandana Kannan | 4b6ed68 | 2014-02-11 14:26:36 +0530 | [diff] [blame] | 1581 | intel_panel_init(&intel_connector->panel, fixed_mode, NULL); |
Ville Syrjälä | f4ee265 | 2016-04-12 22:14:37 +0300 | [diff] [blame] | 1582 | |
| 1583 | intel_dsi_add_properties(intel_connector); |
| 1584 | |
| 1585 | drm_connector_register(connector); |
| 1586 | |
Shobhit Kumar | b029e66 | 2015-06-26 14:32:10 +0530 | [diff] [blame] | 1587 | intel_panel_setup_backlight(connector, INVALID_PIPE); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1588 | |
Damien Lespiau | 4328633d | 2014-05-28 12:30:56 +0100 | [diff] [blame] | 1589 | return; |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1590 | |
| 1591 | err: |
| 1592 | drm_encoder_cleanup(&intel_encoder->base); |
| 1593 | kfree(intel_dsi); |
| 1594 | kfree(intel_connector); |
Jani Nikula | 4e64649 | 2013-08-27 15:12:20 +0300 | [diff] [blame] | 1595 | } |