blob: 7b9b350d29aebbe4ef21d2135977c41ed834830d [file] [log] [blame]
Jani Nikula4e646492013-08-27 15:12:20 +03001/*
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>
27#include <drm/drm_crtc.h>
28#include <drm/drm_edid.h>
29#include <drm/i915_drm.h>
30#include <linux/slab.h>
31#include "i915_drv.h"
32#include "intel_drv.h"
33#include "intel_dsi.h"
34#include "intel_dsi_cmd.h"
35
36/* the sub-encoders aka panel drivers */
37static const struct intel_dsi_device intel_dsi_devices[] = {
38};
39
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +030040
41static void vlv_cck_modify(struct drm_i915_private *dev_priv, u32 reg, u32 val,
42 u32 mask)
43{
44 u32 tmp = vlv_cck_read(dev_priv, reg);
45 tmp &= ~mask;
46 tmp |= val;
47 vlv_cck_write(dev_priv, reg, tmp);
48}
49
50static void band_gap_wa(struct drm_i915_private *dev_priv)
51{
52 mutex_lock(&dev_priv->dpio_lock);
53
54 /* Enable bandgap fix in GOP driver */
55 vlv_cck_modify(dev_priv, 0x6D, 0x00010000, 0x00030000);
56 msleep(20);
57 vlv_cck_modify(dev_priv, 0x6E, 0x00010000, 0x00030000);
58 msleep(20);
59 vlv_cck_modify(dev_priv, 0x6F, 0x00010000, 0x00030000);
60 msleep(20);
61 vlv_cck_modify(dev_priv, 0x00, 0x00008000, 0x00008000);
62 msleep(20);
63 vlv_cck_modify(dev_priv, 0x00, 0x00000000, 0x00008000);
64 msleep(20);
65
66 /* Turn Display Trunk on */
67 vlv_cck_modify(dev_priv, 0x6B, 0x00020000, 0x00030000);
68 msleep(20);
69
70 vlv_cck_modify(dev_priv, 0x6C, 0x00020000, 0x00030000);
71 msleep(20);
72
73 vlv_cck_modify(dev_priv, 0x6D, 0x00020000, 0x00030000);
74 msleep(20);
75 vlv_cck_modify(dev_priv, 0x6E, 0x00020000, 0x00030000);
76 msleep(20);
77 vlv_cck_modify(dev_priv, 0x6F, 0x00020000, 0x00030000);
78
79 mutex_unlock(&dev_priv->dpio_lock);
80
81 /* Need huge delay, otherwise clock is not stable */
82 msleep(100);
83}
84
Jani Nikula4e646492013-08-27 15:12:20 +030085static struct intel_dsi *intel_attached_dsi(struct drm_connector *connector)
86{
87 return container_of(intel_attached_encoder(connector),
88 struct intel_dsi, base);
89}
90
91static inline bool is_vid_mode(struct intel_dsi *intel_dsi)
92{
93 return intel_dsi->dev.type == INTEL_DSI_VIDEO_MODE;
94}
95
96static inline bool is_cmd_mode(struct intel_dsi *intel_dsi)
97{
98 return intel_dsi->dev.type == INTEL_DSI_COMMAND_MODE;
99}
100
101static void intel_dsi_hot_plug(struct intel_encoder *encoder)
102{
103 DRM_DEBUG_KMS("\n");
104}
105
106static bool intel_dsi_compute_config(struct intel_encoder *encoder,
107 struct intel_crtc_config *config)
108{
109 struct intel_dsi *intel_dsi = container_of(encoder, struct intel_dsi,
110 base);
111 struct intel_connector *intel_connector = intel_dsi->attached_connector;
112 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
113 struct drm_display_mode *adjusted_mode = &config->adjusted_mode;
114 struct drm_display_mode *mode = &config->requested_mode;
115
116 DRM_DEBUG_KMS("\n");
117
118 if (fixed_mode)
119 intel_fixed_panel_mode(fixed_mode, adjusted_mode);
120
121 if (intel_dsi->dev.dev_ops->mode_fixup)
122 return intel_dsi->dev.dev_ops->mode_fixup(&intel_dsi->dev,
123 mode, adjusted_mode);
124
125 return true;
126}
127
128static void intel_dsi_pre_pll_enable(struct intel_encoder *encoder)
129{
130 DRM_DEBUG_KMS("\n");
ymohanmabe4fc042013-08-27 23:40:56 +0300131
132 vlv_enable_dsi_pll(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300133}
134
135static void intel_dsi_pre_enable(struct intel_encoder *encoder)
136{
137 DRM_DEBUG_KMS("\n");
138}
139
140static void intel_dsi_enable(struct intel_encoder *encoder)
141{
142 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
143 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
144 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
145 int pipe = intel_crtc->pipe;
146 u32 temp;
147
148 DRM_DEBUG_KMS("\n");
149
150 temp = I915_READ(MIPI_DEVICE_READY(pipe));
151 if ((temp & DEVICE_READY) == 0) {
152 temp &= ~ULPS_STATE_MASK;
153 I915_WRITE(MIPI_DEVICE_READY(pipe), temp | DEVICE_READY);
154 } else if (temp & ULPS_STATE_MASK) {
155 temp &= ~ULPS_STATE_MASK;
156 I915_WRITE(MIPI_DEVICE_READY(pipe), temp | ULPS_STATE_EXIT);
157 /*
158 * We need to ensure that there is a minimum of 1 ms time
159 * available before clearing the UPLS exit state.
160 */
161 msleep(2);
162 I915_WRITE(MIPI_DEVICE_READY(pipe), temp);
163 }
164
165 if (is_cmd_mode(intel_dsi))
166 I915_WRITE(MIPI_MAX_RETURN_PKT_SIZE(pipe), 8 * 4);
167
168 if (is_vid_mode(intel_dsi)) {
169 msleep(20); /* XXX */
170 dpi_send_cmd(intel_dsi, TURN_ON);
171 msleep(100);
172
173 /* assert ip_tg_enable signal */
174 temp = I915_READ(MIPI_PORT_CTRL(pipe));
175 I915_WRITE(MIPI_PORT_CTRL(pipe), temp | DPI_ENABLE);
176 POSTING_READ(MIPI_PORT_CTRL(pipe));
177 }
178
179 intel_dsi->dev.dev_ops->enable(&intel_dsi->dev);
180}
181
182static void intel_dsi_disable(struct intel_encoder *encoder)
183{
184 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
185 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
186 struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
187 int pipe = intel_crtc->pipe;
188 u32 temp;
189
190 DRM_DEBUG_KMS("\n");
191
192 intel_dsi->dev.dev_ops->disable(&intel_dsi->dev);
193
194 if (is_vid_mode(intel_dsi)) {
195 dpi_send_cmd(intel_dsi, SHUTDOWN);
196 msleep(10);
197
198 /* de-assert ip_tg_enable signal */
199 temp = I915_READ(MIPI_PORT_CTRL(pipe));
200 I915_WRITE(MIPI_PORT_CTRL(pipe), temp & ~DPI_ENABLE);
201 POSTING_READ(MIPI_PORT_CTRL(pipe));
202
203 msleep(2);
204 }
205
206 temp = I915_READ(MIPI_DEVICE_READY(pipe));
207 if (temp & DEVICE_READY) {
208 temp &= ~DEVICE_READY;
209 temp &= ~ULPS_STATE_MASK;
210 I915_WRITE(MIPI_DEVICE_READY(pipe), temp);
211 }
212}
213
214static void intel_dsi_post_disable(struct intel_encoder *encoder)
215{
216 DRM_DEBUG_KMS("\n");
ymohanmabe4fc042013-08-27 23:40:56 +0300217
218 vlv_disable_dsi_pll(encoder);
Jani Nikula4e646492013-08-27 15:12:20 +0300219}
220
221static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
222 enum pipe *pipe)
223{
224 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
225 u32 port, func;
226 enum pipe p;
227
228 DRM_DEBUG_KMS("\n");
229
230 /* XXX: this only works for one DSI output */
231 for (p = PIPE_A; p <= PIPE_B; p++) {
232 port = I915_READ(MIPI_PORT_CTRL(p));
233 func = I915_READ(MIPI_DSI_FUNC_PRG(p));
234
235 if ((port & DPI_ENABLE) || (func & CMD_MODE_DATA_WIDTH_MASK)) {
236 if (I915_READ(MIPI_DEVICE_READY(p)) & DEVICE_READY) {
237 *pipe = p;
238 return true;
239 }
240 }
241 }
242
243 return false;
244}
245
246static void intel_dsi_get_config(struct intel_encoder *encoder,
247 struct intel_crtc_config *pipe_config)
248{
249 DRM_DEBUG_KMS("\n");
250
251 /* XXX: read flags, set to adjusted_mode */
252}
253
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000254static enum drm_mode_status
255intel_dsi_mode_valid(struct drm_connector *connector,
256 struct drm_display_mode *mode)
Jani Nikula4e646492013-08-27 15:12:20 +0300257{
258 struct intel_connector *intel_connector = to_intel_connector(connector);
259 struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
260 struct intel_dsi *intel_dsi = intel_attached_dsi(connector);
261
262 DRM_DEBUG_KMS("\n");
263
264 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
265 DRM_DEBUG_KMS("MODE_NO_DBLESCAN\n");
266 return MODE_NO_DBLESCAN;
267 }
268
269 if (fixed_mode) {
270 if (mode->hdisplay > fixed_mode->hdisplay)
271 return MODE_PANEL;
272 if (mode->vdisplay > fixed_mode->vdisplay)
273 return MODE_PANEL;
274 }
275
276 return intel_dsi->dev.dev_ops->mode_valid(&intel_dsi->dev, mode);
277}
278
279/* return txclkesc cycles in terms of divider and duration in us */
280static u16 txclkesc(u32 divider, unsigned int us)
281{
282 switch (divider) {
283 case ESCAPE_CLOCK_DIVIDER_1:
284 default:
285 return 20 * us;
286 case ESCAPE_CLOCK_DIVIDER_2:
287 return 10 * us;
288 case ESCAPE_CLOCK_DIVIDER_4:
289 return 5 * us;
290 }
291}
292
293/* return pixels in terms of txbyteclkhs */
294static u16 txbyteclkhs(u16 pixels, int bpp, int lane_count)
295{
296 return DIV_ROUND_UP(DIV_ROUND_UP(pixels * bpp, 8), lane_count);
297}
298
299static void set_dsi_timings(struct drm_encoder *encoder,
300 const struct drm_display_mode *mode)
301{
302 struct drm_device *dev = encoder->dev;
303 struct drm_i915_private *dev_priv = dev->dev_private;
304 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
305 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
306 int pipe = intel_crtc->pipe;
307 unsigned int bpp = intel_crtc->config.pipe_bpp;
308 unsigned int lane_count = intel_dsi->lane_count;
309
310 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
311
312 hactive = mode->hdisplay;
313 hfp = mode->hsync_start - mode->hdisplay;
314 hsync = mode->hsync_end - mode->hsync_start;
315 hbp = mode->htotal - mode->hsync_end;
316
317 vfp = mode->vsync_start - mode->vdisplay;
318 vsync = mode->vsync_end - mode->vsync_start;
319 vbp = mode->vtotal - mode->vsync_end;
320
321 /* horizontal values are in terms of high speed byte clock */
322 hactive = txbyteclkhs(hactive, bpp, lane_count);
323 hfp = txbyteclkhs(hfp, bpp, lane_count);
324 hsync = txbyteclkhs(hsync, bpp, lane_count);
325 hbp = txbyteclkhs(hbp, bpp, lane_count);
326
327 I915_WRITE(MIPI_HACTIVE_AREA_COUNT(pipe), hactive);
328 I915_WRITE(MIPI_HFP_COUNT(pipe), hfp);
329
330 /* meaningful for video mode non-burst sync pulse mode only, can be zero
331 * for non-burst sync events and burst modes */
332 I915_WRITE(MIPI_HSYNC_PADDING_COUNT(pipe), hsync);
333 I915_WRITE(MIPI_HBP_COUNT(pipe), hbp);
334
335 /* vertical values are in terms of lines */
336 I915_WRITE(MIPI_VFP_COUNT(pipe), vfp);
337 I915_WRITE(MIPI_VSYNC_PADDING_COUNT(pipe), vsync);
338 I915_WRITE(MIPI_VBP_COUNT(pipe), vbp);
339}
340
341static void intel_dsi_mode_set(struct intel_encoder *intel_encoder)
342{
343 struct drm_encoder *encoder = &intel_encoder->base;
344 struct drm_device *dev = encoder->dev;
345 struct drm_i915_private *dev_priv = dev->dev_private;
346 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
347 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
348 struct drm_display_mode *adjusted_mode =
349 &intel_crtc->config.adjusted_mode;
350 int pipe = intel_crtc->pipe;
351 unsigned int bpp = intel_crtc->config.pipe_bpp;
352 u32 val, tmp;
353
Damien Lespiau6f2bcce2013-10-16 12:29:54 +0100354 DRM_DEBUG_KMS("pipe %c\n", pipe_name(pipe));
Jani Nikula4e646492013-08-27 15:12:20 +0300355
ymohanmabe4fc042013-08-27 23:40:56 +0300356 /* Update the DSI PLL */
357 vlv_enable_dsi_pll(intel_encoder);
358
Shobhit Kumar4ce8c9a2013-08-27 15:12:24 +0300359 /* XXX: Location of the call */
360 band_gap_wa(dev_priv);
361
Jani Nikula4e646492013-08-27 15:12:20 +0300362 /* escape clock divider, 20MHz, shared for A and C. device ready must be
363 * off when doing this! txclkesc? */
364 tmp = I915_READ(MIPI_CTRL(0));
365 tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
366 I915_WRITE(MIPI_CTRL(0), tmp | ESCAPE_CLOCK_DIVIDER_1);
367
368 /* read request priority is per pipe */
369 tmp = I915_READ(MIPI_CTRL(pipe));
370 tmp &= ~READ_REQUEST_PRIORITY_MASK;
371 I915_WRITE(MIPI_CTRL(pipe), tmp | READ_REQUEST_PRIORITY_HIGH);
372
373 /* XXX: why here, why like this? handling in irq handler?! */
374 I915_WRITE(MIPI_INTR_STAT(pipe), 0xffffffff);
375 I915_WRITE(MIPI_INTR_EN(pipe), 0xffffffff);
376
377 I915_WRITE(MIPI_DPHY_PARAM(pipe),
378 0x3c << EXIT_ZERO_COUNT_SHIFT |
379 0x1f << TRAIL_COUNT_SHIFT |
380 0xc5 << CLK_ZERO_COUNT_SHIFT |
381 0x1f << PREPARE_COUNT_SHIFT);
382
383 I915_WRITE(MIPI_DPI_RESOLUTION(pipe),
384 adjusted_mode->vdisplay << VERTICAL_ADDRESS_SHIFT |
385 adjusted_mode->hdisplay << HORIZONTAL_ADDRESS_SHIFT);
386
387 set_dsi_timings(encoder, adjusted_mode);
388
389 val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
390 if (is_cmd_mode(intel_dsi)) {
391 val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
392 val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
393 } else {
394 val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
395
396 /* XXX: cross-check bpp vs. pixel format? */
397 val |= intel_dsi->pixel_format;
398 }
399 I915_WRITE(MIPI_DSI_FUNC_PRG(pipe), val);
400
401 /* timeouts for recovery. one frame IIUC. if counter expires, EOT and
402 * stop state. */
403
404 /*
405 * In burst mode, value greater than one DPI line Time in byte clock
406 * (txbyteclkhs) To timeout this timer 1+ of the above said value is
407 * recommended.
408 *
409 * In non-burst mode, Value greater than one DPI frame time in byte
410 * clock(txbyteclkhs) To timeout this timer 1+ of the above said value
411 * is recommended.
412 *
413 * In DBI only mode, value greater than one DBI frame time in byte
414 * clock(txbyteclkhs) To timeout this timer 1+ of the above said value
415 * is recommended.
416 */
417
418 if (is_vid_mode(intel_dsi) &&
419 intel_dsi->video_mode_format == VIDEO_MODE_BURST) {
420 I915_WRITE(MIPI_HS_TX_TIMEOUT(pipe),
421 txbyteclkhs(adjusted_mode->htotal, bpp,
422 intel_dsi->lane_count) + 1);
423 } else {
424 I915_WRITE(MIPI_HS_TX_TIMEOUT(pipe),
425 txbyteclkhs(adjusted_mode->vtotal *
426 adjusted_mode->htotal,
427 bpp, intel_dsi->lane_count) + 1);
428 }
429 I915_WRITE(MIPI_LP_RX_TIMEOUT(pipe), 8309); /* max */
430 I915_WRITE(MIPI_TURN_AROUND_TIMEOUT(pipe), 0x14); /* max */
431 I915_WRITE(MIPI_DEVICE_RESET_TIMER(pipe), 0xffff); /* max */
432
433 /* dphy stuff */
434
435 /* in terms of low power clock */
436 I915_WRITE(MIPI_INIT_COUNT(pipe), txclkesc(ESCAPE_CLOCK_DIVIDER_1, 100));
437
438 /* recovery disables */
439 I915_WRITE(MIPI_EOT_DISABLE(pipe), intel_dsi->eot_disable);
440
441 /* in terms of txbyteclkhs. actual high to low switch +
442 * MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
443 *
444 * XXX: write MIPI_STOP_STATE_STALL?
445 */
446 I915_WRITE(MIPI_HIGH_LOW_SWITCH_COUNT(pipe), 0x46);
447
448 /* XXX: low power clock equivalence in terms of byte clock. the number
449 * of byte clocks occupied in one low power clock. based on txbyteclkhs
450 * and txclkesc. txclkesc time / txbyteclk time * (105 +
451 * MIPI_STOP_STATE_STALL) / 105.???
452 */
453 I915_WRITE(MIPI_LP_BYTECLK(pipe), 4);
454
455 /* the bw essential for transmitting 16 long packets containing 252
456 * bytes meant for dcs write memory command is programmed in this
457 * register in terms of byte clocks. based on dsi transfer rate and the
458 * number of lanes configured the time taken to transmit 16 long packets
459 * in a dsi stream varies. */
460 I915_WRITE(MIPI_DBI_BW_CTRL(pipe), 0x820);
461
462 I915_WRITE(MIPI_CLK_LANE_SWITCH_TIME_CNT(pipe),
463 0xa << LP_HS_SSW_CNT_SHIFT |
464 0x14 << HS_LP_PWR_SW_CNT_SHIFT);
465
466 if (is_vid_mode(intel_dsi))
467 I915_WRITE(MIPI_VIDEO_MODE_FORMAT(pipe),
468 intel_dsi->video_mode_format);
469}
470
471static enum drm_connector_status
472intel_dsi_detect(struct drm_connector *connector, bool force)
473{
474 struct intel_dsi *intel_dsi = intel_attached_dsi(connector);
475 DRM_DEBUG_KMS("\n");
476 return intel_dsi->dev.dev_ops->detect(&intel_dsi->dev);
477}
478
479static int intel_dsi_get_modes(struct drm_connector *connector)
480{
481 struct intel_connector *intel_connector = to_intel_connector(connector);
482 struct drm_display_mode *mode;
483
484 DRM_DEBUG_KMS("\n");
485
486 if (!intel_connector->panel.fixed_mode) {
487 DRM_DEBUG_KMS("no fixed mode\n");
488 return 0;
489 }
490
491 mode = drm_mode_duplicate(connector->dev,
492 intel_connector->panel.fixed_mode);
493 if (!mode) {
494 DRM_DEBUG_KMS("drm_mode_duplicate failed\n");
495 return 0;
496 }
497
498 drm_mode_probed_add(connector, mode);
499 return 1;
500}
501
502static void intel_dsi_destroy(struct drm_connector *connector)
503{
504 struct intel_connector *intel_connector = to_intel_connector(connector);
505
506 DRM_DEBUG_KMS("\n");
507 intel_panel_fini(&intel_connector->panel);
Jani Nikula4e646492013-08-27 15:12:20 +0300508 drm_connector_cleanup(connector);
509 kfree(connector);
510}
511
512static const struct drm_encoder_funcs intel_dsi_funcs = {
513 .destroy = intel_encoder_destroy,
514};
515
516static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
517 .get_modes = intel_dsi_get_modes,
518 .mode_valid = intel_dsi_mode_valid,
519 .best_encoder = intel_best_encoder,
520};
521
522static const struct drm_connector_funcs intel_dsi_connector_funcs = {
523 .dpms = intel_connector_dpms,
524 .detect = intel_dsi_detect,
525 .destroy = intel_dsi_destroy,
526 .fill_modes = drm_helper_probe_single_connector_modes,
527};
528
529bool intel_dsi_init(struct drm_device *dev)
530{
531 struct intel_dsi *intel_dsi;
532 struct intel_encoder *intel_encoder;
533 struct drm_encoder *encoder;
534 struct intel_connector *intel_connector;
535 struct drm_connector *connector;
536 struct drm_display_mode *fixed_mode = NULL;
537 const struct intel_dsi_device *dsi;
538 unsigned int i;
539
540 DRM_DEBUG_KMS("\n");
541
542 intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
543 if (!intel_dsi)
544 return false;
545
546 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
547 if (!intel_connector) {
548 kfree(intel_dsi);
549 return false;
550 }
551
552 intel_encoder = &intel_dsi->base;
553 encoder = &intel_encoder->base;
554 intel_dsi->attached_connector = intel_connector;
555
556 connector = &intel_connector->base;
557
558 drm_encoder_init(dev, encoder, &intel_dsi_funcs, DRM_MODE_ENCODER_DSI);
559
560 /* XXX: very likely not all of these are needed */
561 intel_encoder->hot_plug = intel_dsi_hot_plug;
562 intel_encoder->compute_config = intel_dsi_compute_config;
563 intel_encoder->pre_pll_enable = intel_dsi_pre_pll_enable;
564 intel_encoder->pre_enable = intel_dsi_pre_enable;
565 intel_encoder->enable = intel_dsi_enable;
566 intel_encoder->mode_set = intel_dsi_mode_set;
567 intel_encoder->disable = intel_dsi_disable;
568 intel_encoder->post_disable = intel_dsi_post_disable;
569 intel_encoder->get_hw_state = intel_dsi_get_hw_state;
570 intel_encoder->get_config = intel_dsi_get_config;
571
572 intel_connector->get_hw_state = intel_connector_get_hw_state;
573
574 for (i = 0; i < ARRAY_SIZE(intel_dsi_devices); i++) {
575 dsi = &intel_dsi_devices[i];
576 intel_dsi->dev = *dsi;
577
578 if (dsi->dev_ops->init(&intel_dsi->dev))
579 break;
580 }
581
582 if (i == ARRAY_SIZE(intel_dsi_devices)) {
583 DRM_DEBUG_KMS("no device found\n");
584 goto err;
585 }
586
587 intel_encoder->type = INTEL_OUTPUT_DSI;
588 intel_encoder->crtc_mask = (1 << 0); /* XXX */
589
590 intel_encoder->cloneable = false;
591 drm_connector_init(dev, connector, &intel_dsi_connector_funcs,
592 DRM_MODE_CONNECTOR_DSI);
593
594 drm_connector_helper_add(connector, &intel_dsi_connector_helper_funcs);
595
596 connector->display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
597 connector->interlace_allowed = false;
598 connector->doublescan_allowed = false;
599
600 intel_connector_attach_encoder(intel_connector, intel_encoder);
601
602 drm_sysfs_connector_add(connector);
603
604 fixed_mode = dsi->dev_ops->get_modes(&intel_dsi->dev);
605 if (!fixed_mode) {
606 DRM_DEBUG_KMS("no fixed mode\n");
607 goto err;
608 }
609
610 fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
611 intel_panel_init(&intel_connector->panel, fixed_mode);
612
613 return true;
614
615err:
616 drm_encoder_cleanup(&intel_encoder->base);
617 kfree(intel_dsi);
618 kfree(intel_connector);
619
620 return false;
621}