drm/i915/userptr: Fix error handling of mutex_lock_killable()
[linux-2.6-block.git] / drivers / gpu / drm / i915 / intel_dvo.c
CommitLineData
79e53945
JB
1/*
2 * Copyright 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright © 2006-2007 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Eric Anholt <eric@anholt.net>
26 */
27#include <linux/i2c.h>
5a0e3ad6 28#include <linux/slab.h>
c6f95f27 29#include <drm/drm_atomic_helper.h>
760285e7 30#include <drm/drm_crtc.h>
79e53945 31#include "intel_drv.h"
760285e7 32#include <drm/i915_drm.h>
79e53945
JB
33#include "i915_drv.h"
34#include "dvo.h"
35
36#define SIL164_ADDR 0x38
37#define CH7xxx_ADDR 0x76
38#define TFP410_ADDR 0x38
7434a255 39#define NS2501_ADDR 0x38
79e53945 40
ea5b213a 41static const struct intel_dvo_device intel_dvo_devices[] = {
79e53945
JB
42 {
43 .type = INTEL_DVO_CHIP_TMDS,
44 .name = "sil164",
45 .dvo_reg = DVOC,
78e0d2e3 46 .dvo_srcdim_reg = DVOC_SRCDIM,
79e53945
JB
47 .slave_addr = SIL164_ADDR,
48 .dev_ops = &sil164_ops,
49 },
50 {
51 .type = INTEL_DVO_CHIP_TMDS,
52 .name = "ch7xxx",
53 .dvo_reg = DVOC,
78e0d2e3 54 .dvo_srcdim_reg = DVOC_SRCDIM,
79e53945
JB
55 .slave_addr = CH7xxx_ADDR,
56 .dev_ops = &ch7xxx_ops,
57 },
98304ad1 58 {
59 .type = INTEL_DVO_CHIP_TMDS,
60 .name = "ch7xxx",
61 .dvo_reg = DVOC,
78e0d2e3 62 .dvo_srcdim_reg = DVOC_SRCDIM,
98304ad1 63 .slave_addr = 0x75, /* For some ch7010 */
64 .dev_ops = &ch7xxx_ops,
65 },
79e53945
JB
66 {
67 .type = INTEL_DVO_CHIP_LVDS,
68 .name = "ivch",
69 .dvo_reg = DVOA,
78e0d2e3 70 .dvo_srcdim_reg = DVOA_SRCDIM,
79e53945
JB
71 .slave_addr = 0x02, /* Might also be 0x44, 0x84, 0xc4 */
72 .dev_ops = &ivch_ops,
73 },
74 {
75 .type = INTEL_DVO_CHIP_TMDS,
76 .name = "tfp410",
77 .dvo_reg = DVOC,
78e0d2e3 78 .dvo_srcdim_reg = DVOC_SRCDIM,
79e53945
JB
79 .slave_addr = TFP410_ADDR,
80 .dev_ops = &tfp410_ops,
81 },
82 {
83 .type = INTEL_DVO_CHIP_LVDS,
84 .name = "ch7017",
85 .dvo_reg = DVOC,
78e0d2e3 86 .dvo_srcdim_reg = DVOC_SRCDIM,
79e53945 87 .slave_addr = 0x75,
988c7015 88 .gpio = GMBUS_PIN_DPB,
79e53945 89 .dev_ops = &ch7017_ops,
7434a255
TR
90 },
91 {
92 .type = INTEL_DVO_CHIP_TMDS,
93 .name = "ns2501",
316e0157 94 .dvo_reg = DVOB,
78e0d2e3 95 .dvo_srcdim_reg = DVOB_SRCDIM,
7434a255
TR
96 .slave_addr = NS2501_ADDR,
97 .dev_ops = &ns2501_ops,
98 }
79e53945
JB
99};
100
ea5b213a
CW
101struct intel_dvo {
102 struct intel_encoder base;
103
104 struct intel_dvo_device dev;
105
28694070
VS
106 struct intel_connector *attached_connector;
107
ea5b213a
CW
108 bool panel_wants_dither;
109};
110
69438e64 111static struct intel_dvo *enc_to_dvo(struct intel_encoder *encoder)
ea5b213a 112{
69438e64 113 return container_of(encoder, struct intel_dvo, base);
ea5b213a
CW
114}
115
df0e9248
CW
116static struct intel_dvo *intel_attached_dvo(struct drm_connector *connector)
117{
79fde301 118 return enc_to_dvo(intel_attached_encoder(connector));
df0e9248
CW
119}
120
732ce74f 121static bool intel_dvo_connector_get_hw_state(struct intel_connector *connector)
79e53945 122{
f417c11b 123 struct drm_device *dev = connector->base.dev;
fac5e23e 124 struct drm_i915_private *dev_priv = to_i915(dev);
732ce74f 125 struct intel_dvo *intel_dvo = intel_attached_dvo(&connector->base);
f417c11b
VS
126 u32 tmp;
127
128 tmp = I915_READ(intel_dvo->dev.dvo_reg);
129
130 if (!(tmp & DVO_ENABLE))
131 return false;
732ce74f
DV
132
133 return intel_dvo->dev.dev_ops->get_hw_state(&intel_dvo->dev);
134}
135
136static bool intel_dvo_get_hw_state(struct intel_encoder *encoder,
137 enum pipe *pipe)
138{
b45a2588 139 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
69438e64 140 struct intel_dvo *intel_dvo = enc_to_dvo(encoder);
732ce74f
DV
141 u32 tmp;
142
143 tmp = I915_READ(intel_dvo->dev.dvo_reg);
144
b45a2588 145 *pipe = (tmp & DVO_PIPE_SEL_MASK) >> DVO_PIPE_SEL_SHIFT;
732ce74f 146
b45a2588 147 return tmp & DVO_ENABLE;
732ce74f
DV
148}
149
045ac3b5 150static void intel_dvo_get_config(struct intel_encoder *encoder,
5cec258b 151 struct intel_crtc_state *pipe_config)
045ac3b5 152{
fac5e23e 153 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
69438e64 154 struct intel_dvo *intel_dvo = enc_to_dvo(encoder);
045ac3b5
JB
155 u32 tmp, flags = 0;
156
e1214b95
VS
157 pipe_config->output_types |= BIT(INTEL_OUTPUT_DVO);
158
045ac3b5
JB
159 tmp = I915_READ(intel_dvo->dev.dvo_reg);
160 if (tmp & DVO_HSYNC_ACTIVE_HIGH)
161 flags |= DRM_MODE_FLAG_PHSYNC;
162 else
163 flags |= DRM_MODE_FLAG_NHSYNC;
164 if (tmp & DVO_VSYNC_ACTIVE_HIGH)
165 flags |= DRM_MODE_FLAG_PVSYNC;
166 else
167 flags |= DRM_MODE_FLAG_NVSYNC;
168
2d112de7 169 pipe_config->base.adjusted_mode.flags |= flags;
18442d08 170
2d112de7 171 pipe_config->base.adjusted_mode.crtc_clock = pipe_config->port_clock;
045ac3b5
JB
172}
173
fd6bbda9 174static void intel_disable_dvo(struct intel_encoder *encoder,
5f88a9c6
VS
175 const struct intel_crtc_state *old_crtc_state,
176 const struct drm_connector_state *old_conn_state)
19c63fa8 177{
fac5e23e 178 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
69438e64 179 struct intel_dvo *intel_dvo = enc_to_dvo(encoder);
f0f59a00 180 i915_reg_t dvo_reg = intel_dvo->dev.dvo_reg;
19c63fa8
DV
181 u32 temp = I915_READ(dvo_reg);
182
183 intel_dvo->dev.dev_ops->dpms(&intel_dvo->dev, false);
184 I915_WRITE(dvo_reg, temp & ~DVO_ENABLE);
185 I915_READ(dvo_reg);
186}
187
fd6bbda9 188static void intel_enable_dvo(struct intel_encoder *encoder,
5f88a9c6
VS
189 const struct intel_crtc_state *pipe_config,
190 const struct drm_connector_state *conn_state)
19c63fa8 191{
fac5e23e 192 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
69438e64 193 struct intel_dvo *intel_dvo = enc_to_dvo(encoder);
f0f59a00 194 i915_reg_t dvo_reg = intel_dvo->dev.dvo_reg;
79e53945
JB
195 u32 temp = I915_READ(dvo_reg);
196
48f34e10 197 intel_dvo->dev.dev_ops->mode_set(&intel_dvo->dev,
ae9a911b
ML
198 &pipe_config->base.mode,
199 &pipe_config->base.adjusted_mode);
48f34e10 200
c9c054c2
VS
201 I915_WRITE(dvo_reg, temp | DVO_ENABLE);
202 I915_READ(dvo_reg);
203
19c63fa8
DV
204 intel_dvo->dev.dev_ops->dpms(&intel_dvo->dev, true);
205}
206
c19de8eb
DL
207static enum drm_mode_status
208intel_dvo_mode_valid(struct drm_connector *connector,
209 struct drm_display_mode *mode)
79e53945 210{
df0e9248 211 struct intel_dvo *intel_dvo = intel_attached_dvo(connector);
28694070
VS
212 const struct drm_display_mode *fixed_mode =
213 to_intel_connector(connector)->panel.fixed_mode;
26a91555
MK
214 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
215 int target_clock = mode->clock;
79e53945 216
e4dd27aa
VS
217 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
218 return MODE_NO_DBLESCAN;
219
79e53945
JB
220 /* XXX: Validate clock range */
221
28694070
VS
222 if (fixed_mode) {
223 if (mode->hdisplay > fixed_mode->hdisplay)
79e53945 224 return MODE_PANEL;
28694070 225 if (mode->vdisplay > fixed_mode->vdisplay)
79e53945 226 return MODE_PANEL;
26a91555 227
28694070 228 target_clock = fixed_mode->clock;
79e53945
JB
229 }
230
26a91555
MK
231 if (target_clock > max_dotclk)
232 return MODE_CLOCK_HIGH;
233
ea5b213a 234 return intel_dvo->dev.dev_ops->mode_valid(&intel_dvo->dev, mode);
79e53945
JB
235}
236
a3470375 237static bool intel_dvo_compute_config(struct intel_encoder *encoder,
0a478c27
ML
238 struct intel_crtc_state *pipe_config,
239 struct drm_connector_state *conn_state)
79e53945 240{
a3470375 241 struct intel_dvo *intel_dvo = enc_to_dvo(encoder);
28694070
VS
242 const struct drm_display_mode *fixed_mode =
243 intel_dvo->attached_connector->panel.fixed_mode;
2d112de7 244 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
79e53945 245
d5fdd43f
CW
246 /*
247 * If we have timings from the BIOS for the panel, put them in
79e53945
JB
248 * to the adjusted mode. The CRTC will be set up for this mode,
249 * with the panel scaling set up to source from the H/VDisplay
250 * of the original mode.
251 */
28694070
VS
252 if (fixed_mode)
253 intel_fixed_panel_mode(fixed_mode, adjusted_mode);
79e53945 254
e4dd27aa
VS
255 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)
256 return false;
257
d9facae6 258 pipe_config->output_format = INTEL_OUTPUT_FORMAT_RGB;
79e53945
JB
259 return true;
260}
261
fd6bbda9 262static void intel_dvo_pre_enable(struct intel_encoder *encoder,
5f88a9c6
VS
263 const struct intel_crtc_state *pipe_config,
264 const struct drm_connector_state *conn_state)
79e53945 265{
ae9a911b
ML
266 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
267 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
268 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
79fde301
DV
269 struct intel_dvo *intel_dvo = enc_to_dvo(encoder);
270 int pipe = crtc->pipe;
79e53945 271 u32 dvo_val;
f0f59a00
VS
272 i915_reg_t dvo_reg = intel_dvo->dev.dvo_reg;
273 i915_reg_t dvo_srcdim_reg = intel_dvo->dev.dvo_srcdim_reg;
79e53945 274
79e53945
JB
275 /* Save the data order, since I don't know what it should be set to. */
276 dvo_val = I915_READ(dvo_reg) &
277 (DVO_PRESERVE_MASK | DVO_DATA_ORDER_GBRG);
278 dvo_val |= DVO_DATA_ORDER_FP | DVO_BORDER_ENABLE |
279 DVO_BLANK_ACTIVE_HIGH;
280
b45a2588 281 dvo_val |= DVO_PIPE_SEL(pipe);
79e53945
JB
282 dvo_val |= DVO_PIPE_STALL;
283 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
284 dvo_val |= DVO_HSYNC_ACTIVE_HIGH;
285 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
286 dvo_val |= DVO_VSYNC_ACTIVE_HIGH;
287
79e53945 288 /*I915_WRITE(DVOB_SRCDIM,
aad941d5
VS
289 (adjusted_mode->crtc_hdisplay << DVO_SRCDIM_HORIZONTAL_SHIFT) |
290 (adjusted_mode->crtc_vdisplay << DVO_SRCDIM_VERTICAL_SHIFT));*/
79e53945 291 I915_WRITE(dvo_srcdim_reg,
aad941d5
VS
292 (adjusted_mode->crtc_hdisplay << DVO_SRCDIM_HORIZONTAL_SHIFT) |
293 (adjusted_mode->crtc_vdisplay << DVO_SRCDIM_VERTICAL_SHIFT));
79e53945
JB
294 /*I915_WRITE(DVOB, dvo_val);*/
295 I915_WRITE(dvo_reg, dvo_val);
296}
297
7b334fcb 298static enum drm_connector_status
930a9e28 299intel_dvo_detect(struct drm_connector *connector, bool force)
79e53945 300{
df0e9248 301 struct intel_dvo *intel_dvo = intel_attached_dvo(connector);
164c8598 302 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
c23cc417 303 connector->base.id, connector->name);
ea5b213a 304 return intel_dvo->dev.dev_ops->detect(&intel_dvo->dev);
79e53945
JB
305}
306
307static int intel_dvo_get_modes(struct drm_connector *connector)
308{
fac5e23e 309 struct drm_i915_private *dev_priv = to_i915(connector->dev);
28694070
VS
310 const struct drm_display_mode *fixed_mode =
311 to_intel_connector(connector)->panel.fixed_mode;
79e53945 312
d5fdd43f
CW
313 /*
314 * We should probably have an i2c driver get_modes function for those
79e53945
JB
315 * devices which will have a fixed set of modes determined by the chip
316 * (TV-out, for example), but for now with just TMDS and LVDS,
317 * that's not the case.
318 */
f899fc64 319 intel_ddc_get_modes(connector,
988c7015 320 intel_gmbus_get_adapter(dev_priv, GMBUS_PIN_DPC));
79e53945
JB
321 if (!list_empty(&connector->probed_modes))
322 return 1;
323
28694070 324 if (fixed_mode) {
79e53945 325 struct drm_display_mode *mode;
28694070 326 mode = drm_mode_duplicate(connector->dev, fixed_mode);
79e53945
JB
327 if (mode) {
328 drm_mode_probed_add(connector, mode);
329 return 1;
330 }
331 }
ea5b213a 332
79e53945
JB
333 return 0;
334}
335
79e53945 336static const struct drm_connector_funcs intel_dvo_connector_funcs = {
79e53945 337 .detect = intel_dvo_detect,
1ebaa0b9 338 .late_register = intel_connector_register,
c191eca1 339 .early_unregister = intel_connector_unregister,
d4b26e4f 340 .destroy = intel_connector_destroy,
79e53945 341 .fill_modes = drm_helper_probe_single_connector_modes,
c6f95f27 342 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
98969725 343 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
79e53945
JB
344};
345
346static const struct drm_connector_helper_funcs intel_dvo_connector_helper_funcs = {
347 .mode_valid = intel_dvo_mode_valid,
348 .get_modes = intel_dvo_get_modes,
79e53945
JB
349};
350
b358d0a6 351static void intel_dvo_enc_destroy(struct drm_encoder *encoder)
79e53945 352{
69438e64 353 struct intel_dvo *intel_dvo = enc_to_dvo(to_intel_encoder(encoder));
ea5b213a
CW
354
355 if (intel_dvo->dev.dev_ops->destroy)
356 intel_dvo->dev.dev_ops->destroy(&intel_dvo->dev);
357
ea5b213a 358 intel_encoder_destroy(encoder);
79e53945
JB
359}
360
361static const struct drm_encoder_funcs intel_dvo_enc_funcs = {
362 .destroy = intel_dvo_enc_destroy,
363};
364
d5fdd43f 365/*
79e53945
JB
366 * Attempts to get a fixed panel timing for LVDS (currently only the i830).
367 *
368 * Other chips with DVO LVDS will need to extend this to deal with the LVDS
369 * chip being on DVOB/C and having multiple pipes.
370 */
371static struct drm_display_mode *
de330815 372intel_dvo_get_current_mode(struct intel_encoder *encoder)
79e53945 373{
de330815 374 struct drm_display_mode *mode;
79e53945 375
de330815
VS
376 mode = intel_encoder_current_mode(encoder);
377 if (mode) {
378 DRM_DEBUG_KMS("using current (BIOS) mode: ");
379 drm_mode_debug_printmodeline(mode);
380 mode->type |= DRM_MODE_TYPE_PREFERRED;
79e53945 381 }
ea5b213a 382
79e53945
JB
383 return mode;
384}
385
5748be60 386static enum port intel_dvo_port(i915_reg_t dvo_reg)
580d8ed5
VS
387{
388 if (i915_mmio_reg_equal(dvo_reg, DVOA))
5748be60 389 return PORT_A;
580d8ed5 390 else if (i915_mmio_reg_equal(dvo_reg, DVOB))
5748be60 391 return PORT_B;
580d8ed5 392 else
5748be60 393 return PORT_C;
580d8ed5
VS
394}
395
c39055b0 396void intel_dvo_init(struct drm_i915_private *dev_priv)
79e53945 397{
21d40d37 398 struct intel_encoder *intel_encoder;
ea5b213a 399 struct intel_dvo *intel_dvo;
599be16c 400 struct intel_connector *intel_connector;
79e53945 401 int i;
79e53945 402 int encoder_type = DRM_MODE_ENCODER_NONE;
ea5b213a 403
b14c5679 404 intel_dvo = kzalloc(sizeof(*intel_dvo), GFP_KERNEL);
ea5b213a 405 if (!intel_dvo)
79e53945
JB
406 return;
407
9bdbd0b9 408 intel_connector = intel_connector_alloc();
599be16c 409 if (!intel_connector) {
ea5b213a 410 kfree(intel_dvo);
599be16c
ZW
411 return;
412 }
413
28694070
VS
414 intel_dvo->attached_connector = intel_connector;
415
ea5b213a
CW
416 intel_encoder = &intel_dvo->base;
417
19c63fa8
DV
418 intel_encoder->disable = intel_disable_dvo;
419 intel_encoder->enable = intel_enable_dvo;
732ce74f 420 intel_encoder->get_hw_state = intel_dvo_get_hw_state;
045ac3b5 421 intel_encoder->get_config = intel_dvo_get_config;
a3470375 422 intel_encoder->compute_config = intel_dvo_compute_config;
912b0e2d 423 intel_encoder->pre_enable = intel_dvo_pre_enable;
732ce74f 424 intel_connector->get_hw_state = intel_dvo_connector_get_hw_state;
19c63fa8 425
79e53945
JB
426 /* Now, try to find a controller */
427 for (i = 0; i < ARRAY_SIZE(intel_dvo_devices); i++) {
599be16c 428 struct drm_connector *connector = &intel_connector->base;
ea5b213a 429 const struct intel_dvo_device *dvo = &intel_dvo_devices[i];
f899fc64 430 struct i2c_adapter *i2c;
79e53945 431 int gpio;
e4bfff54 432 bool dvoinit;
46509475 433 enum pipe pipe;
accb1eb5 434 u32 dpll[I915_MAX_PIPES];
5748be60 435 enum port port;
79e53945 436
d5fdd43f
CW
437 /*
438 * Allow the I2C driver info to specify the GPIO to be used in
79e53945
JB
439 * special cases, but otherwise default to what's defined
440 * in the spec.
441 */
88ac7939 442 if (intel_gmbus_is_valid_pin(dev_priv, dvo->gpio))
79e53945
JB
443 gpio = dvo->gpio;
444 else if (dvo->type == INTEL_DVO_CHIP_LVDS)
988c7015 445 gpio = GMBUS_PIN_SSC;
79e53945 446 else
988c7015 447 gpio = GMBUS_PIN_DPB;
79e53945 448
d5fdd43f
CW
449 /*
450 * Set up the I2C bus necessary for the chip we're probing.
79e53945
JB
451 * It appears that everything is on GPIOE except for panels
452 * on i830 laptops, which are on GPIOB (DVOA).
453 */
3bd7d909 454 i2c = intel_gmbus_get_adapter(dev_priv, gpio);
79e53945 455
ea5b213a 456 intel_dvo->dev = *dvo;
e4bfff54 457
d5fdd43f
CW
458 /*
459 * GMBUS NAK handling seems to be unstable, hence let the
e4bfff54
DMEA
460 * transmitter detection run in bit banging mode for now.
461 */
462 intel_gmbus_force_bit(i2c, true);
463
d5fdd43f
CW
464 /*
465 * ns2501 requires the DVO 2x clock before it will
46509475
VS
466 * respond to i2c accesses, so make sure we have
467 * have the clock enabled before we attempt to
468 * initialize the device.
469 */
470 for_each_pipe(dev_priv, pipe) {
471 dpll[pipe] = I915_READ(DPLL(pipe));
472 I915_WRITE(DPLL(pipe), dpll[pipe] | DPLL_DVO_2X_MODE);
473 }
474
e4bfff54
DMEA
475 dvoinit = dvo->dev_ops->init(&intel_dvo->dev, i2c);
476
46509475
VS
477 /* restore the DVO 2x clock state to original */
478 for_each_pipe(dev_priv, pipe) {
479 I915_WRITE(DPLL(pipe), dpll[pipe]);
480 }
481
e4bfff54
DMEA
482 intel_gmbus_force_bit(i2c, false);
483
484 if (!dvoinit)
79e53945
JB
485 continue;
486
5748be60 487 port = intel_dvo_port(dvo->dvo_reg);
c39055b0 488 drm_encoder_init(&dev_priv->drm, &intel_encoder->base,
580d8ed5 489 &intel_dvo_enc_funcs, encoder_type,
5748be60 490 "DVO %c", port_name(port));
580d8ed5 491
21d40d37 492 intel_encoder->type = INTEL_OUTPUT_DVO;
79f255a0 493 intel_encoder->power_domain = POWER_DOMAIN_PORT_OTHER;
03cdc1d4 494 intel_encoder->port = port;
21d40d37 495 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
03cdc1d4 496
79e53945
JB
497 switch (dvo->type) {
498 case INTEL_DVO_CHIP_TMDS:
bc079e8b
VS
499 intel_encoder->cloneable = (1 << INTEL_OUTPUT_ANALOG) |
500 (1 << INTEL_OUTPUT_DVO);
c39055b0 501 drm_connector_init(&dev_priv->drm, connector,
79e53945
JB
502 &intel_dvo_connector_funcs,
503 DRM_MODE_CONNECTOR_DVII);
504 encoder_type = DRM_MODE_ENCODER_TMDS;
505 break;
506 case INTEL_DVO_CHIP_LVDS:
bc079e8b 507 intel_encoder->cloneable = 0;
c39055b0 508 drm_connector_init(&dev_priv->drm, connector,
79e53945
JB
509 &intel_dvo_connector_funcs,
510 DRM_MODE_CONNECTOR_LVDS);
511 encoder_type = DRM_MODE_ENCODER_LVDS;
512 break;
513 }
514
515 drm_connector_helper_add(connector,
516 &intel_dvo_connector_helper_funcs);
517 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
518 connector->interlace_allowed = false;
519 connector->doublescan_allowed = false;
520
df0e9248 521 intel_connector_attach_encoder(intel_connector, intel_encoder);
79e53945 522 if (dvo->type == INTEL_DVO_CHIP_LVDS) {
d5fdd43f
CW
523 /*
524 * For our LVDS chipsets, we should hopefully be able
79e53945
JB
525 * to dig the fixed panel mode out of the BIOS data.
526 * However, it's in a different format from the BIOS
527 * data on chipsets with integrated LVDS (stored in AIM
528 * headers, likely), so for now, just get the current
529 * mode being output through DVO.
530 */
28694070 531 intel_panel_init(&intel_connector->panel,
de330815 532 intel_dvo_get_current_mode(intel_encoder),
d93fa1b4 533 NULL);
ea5b213a 534 intel_dvo->panel_wants_dither = true;
79e53945
JB
535 }
536
79e53945
JB
537 return;
538 }
539
ea5b213a 540 kfree(intel_dvo);
599be16c 541 kfree(intel_connector);
79e53945 542}