Merge 2.6.38-rc5 into staging-next
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_sdvo.c
CommitLineData
79e53945
JB
1/*
2 * Copyright 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright © 2006-2007 Intel Corporation
4 * Jesse Barnes <jesse.barnes@intel.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Authors:
26 * Eric Anholt <eric@anholt.net>
27 */
28#include <linux/i2c.h>
5a0e3ad6 29#include <linux/slab.h>
79e53945
JB
30#include <linux/delay.h>
31#include "drmP.h"
32#include "drm.h"
33#include "drm_crtc.h"
2b8d33f7 34#include "drm_edid.h"
ea5b213a 35#include "intel_drv.h"
79e53945
JB
36#include "i915_drm.h"
37#include "i915_drv.h"
38#include "intel_sdvo_regs.h"
39
14571b4c
ZW
40#define SDVO_TMDS_MASK (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_TMDS1)
41#define SDVO_RGB_MASK (SDVO_OUTPUT_RGB0 | SDVO_OUTPUT_RGB1)
42#define SDVO_LVDS_MASK (SDVO_OUTPUT_LVDS0 | SDVO_OUTPUT_LVDS1)
43#define SDVO_TV_MASK (SDVO_OUTPUT_CVBS0 | SDVO_OUTPUT_SVID0)
44
45#define SDVO_OUTPUT_MASK (SDVO_TMDS_MASK | SDVO_RGB_MASK | SDVO_LVDS_MASK |\
46 SDVO_TV_MASK)
47
48#define IS_TV(c) (c->output_flag & SDVO_TV_MASK)
13946743 49#define IS_TMDS(c) (c->output_flag & SDVO_TMDS_MASK)
14571b4c 50#define IS_LVDS(c) (c->output_flag & SDVO_LVDS_MASK)
32aad86f 51#define IS_TV_OR_LVDS(c) (c->output_flag & (SDVO_TV_MASK | SDVO_LVDS_MASK))
14571b4c 52
79e53945 53
2e88e40b 54static const char *tv_format_names[] = {
ce6feabd
ZY
55 "NTSC_M" , "NTSC_J" , "NTSC_443",
56 "PAL_B" , "PAL_D" , "PAL_G" ,
57 "PAL_H" , "PAL_I" , "PAL_M" ,
58 "PAL_N" , "PAL_NC" , "PAL_60" ,
59 "SECAM_B" , "SECAM_D" , "SECAM_G" ,
60 "SECAM_K" , "SECAM_K1", "SECAM_L" ,
61 "SECAM_60"
62};
63
64#define TV_FORMAT_NUM (sizeof(tv_format_names) / sizeof(*tv_format_names))
65
ea5b213a
CW
66struct intel_sdvo {
67 struct intel_encoder base;
68
f899fc64 69 struct i2c_adapter *i2c;
f9c10a9b 70 u8 slave_addr;
e2f0ba97 71
e957d772
CW
72 struct i2c_adapter ddc;
73
e2f0ba97 74 /* Register for the SDVO device: SDVOB or SDVOC */
c751ce4f 75 int sdvo_reg;
79e53945 76
e2f0ba97
JB
77 /* Active outputs controlled by this SDVO output */
78 uint16_t controlled_output;
79e53945 79
e2f0ba97
JB
80 /*
81 * Capabilities of the SDVO device returned by
82 * i830_sdvo_get_capabilities()
83 */
79e53945 84 struct intel_sdvo_caps caps;
e2f0ba97
JB
85
86 /* Pixel clock limitations reported by the SDVO device, in kHz */
79e53945
JB
87 int pixel_clock_min, pixel_clock_max;
88
fb7a46f3 89 /*
90 * For multiple function SDVO device,
91 * this is for current attached outputs.
92 */
93 uint16_t attached_output;
94
e2f0ba97
JB
95 /**
96 * This is set if we're going to treat the device as TV-out.
97 *
98 * While we have these nice friendly flags for output types that ought
99 * to decide this for us, the S-Video output on our HDMI+S-Video card
100 * shows up as RGB1 (VGA).
101 */
102 bool is_tv;
103
ce6feabd 104 /* This is for current tv format name */
40039750 105 int tv_format_index;
ce6feabd 106
e2f0ba97
JB
107 /**
108 * This is set if we treat the device as HDMI, instead of DVI.
109 */
110 bool is_hdmi;
da79de97
CW
111 bool has_hdmi_monitor;
112 bool has_hdmi_audio;
12682a97 113
7086c87f 114 /**
6c9547ff
CW
115 * This is set if we detect output of sdvo device as LVDS and
116 * have a valid fixed mode to use with the panel.
7086c87f
ML
117 */
118 bool is_lvds;
e2f0ba97 119
12682a97 120 /**
121 * This is sdvo fixed pannel mode pointer
122 */
123 struct drm_display_mode *sdvo_lvds_fixed_mode;
124
c751ce4f 125 /* DDC bus used by this SDVO encoder */
e2f0ba97
JB
126 uint8_t ddc_bus;
127
6c9547ff
CW
128 /* Input timings for adjusted_mode */
129 struct intel_sdvo_dtd input_dtd;
14571b4c
ZW
130};
131
132struct intel_sdvo_connector {
615fb93f
CW
133 struct intel_connector base;
134
14571b4c
ZW
135 /* Mark the type of connector */
136 uint16_t output_flag;
137
7f36e7ed
CW
138 int force_audio;
139
14571b4c 140 /* This contains all current supported TV format */
40039750 141 u8 tv_format_supported[TV_FORMAT_NUM];
14571b4c 142 int format_supported_num;
c5521706 143 struct drm_property *tv_format;
14571b4c 144
7f36e7ed
CW
145 struct drm_property *force_audio_property;
146
b9219c5e 147 /* add the property for the SDVO-TV */
c5521706
CW
148 struct drm_property *left;
149 struct drm_property *right;
150 struct drm_property *top;
151 struct drm_property *bottom;
152 struct drm_property *hpos;
153 struct drm_property *vpos;
154 struct drm_property *contrast;
155 struct drm_property *saturation;
156 struct drm_property *hue;
157 struct drm_property *sharpness;
158 struct drm_property *flicker_filter;
159 struct drm_property *flicker_filter_adaptive;
160 struct drm_property *flicker_filter_2d;
161 struct drm_property *tv_chroma_filter;
162 struct drm_property *tv_luma_filter;
e044218a 163 struct drm_property *dot_crawl;
b9219c5e
ZY
164
165 /* add the property for the SDVO-TV/LVDS */
c5521706 166 struct drm_property *brightness;
b9219c5e
ZY
167
168 /* Add variable to record current setting for the above property */
169 u32 left_margin, right_margin, top_margin, bottom_margin;
c5521706 170
b9219c5e
ZY
171 /* this is to get the range of margin.*/
172 u32 max_hscan, max_vscan;
173 u32 max_hpos, cur_hpos;
174 u32 max_vpos, cur_vpos;
175 u32 cur_brightness, max_brightness;
176 u32 cur_contrast, max_contrast;
177 u32 cur_saturation, max_saturation;
178 u32 cur_hue, max_hue;
c5521706
CW
179 u32 cur_sharpness, max_sharpness;
180 u32 cur_flicker_filter, max_flicker_filter;
181 u32 cur_flicker_filter_adaptive, max_flicker_filter_adaptive;
182 u32 cur_flicker_filter_2d, max_flicker_filter_2d;
183 u32 cur_tv_chroma_filter, max_tv_chroma_filter;
184 u32 cur_tv_luma_filter, max_tv_luma_filter;
e044218a 185 u32 cur_dot_crawl, max_dot_crawl;
79e53945
JB
186};
187
890f3359 188static struct intel_sdvo *to_intel_sdvo(struct drm_encoder *encoder)
ea5b213a 189{
4ef69c7a 190 return container_of(encoder, struct intel_sdvo, base.base);
ea5b213a
CW
191}
192
df0e9248
CW
193static struct intel_sdvo *intel_attached_sdvo(struct drm_connector *connector)
194{
195 return container_of(intel_attached_encoder(connector),
196 struct intel_sdvo, base);
197}
198
615fb93f
CW
199static struct intel_sdvo_connector *to_intel_sdvo_connector(struct drm_connector *connector)
200{
201 return container_of(to_intel_connector(connector), struct intel_sdvo_connector, base);
202}
203
fb7a46f3 204static bool
ea5b213a 205intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, uint16_t flags);
32aad86f
CW
206static bool
207intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
208 struct intel_sdvo_connector *intel_sdvo_connector,
209 int type);
210static bool
211intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
212 struct intel_sdvo_connector *intel_sdvo_connector);
fb7a46f3 213
79e53945
JB
214/**
215 * Writes the SDVOB or SDVOC with the given value, but always writes both
216 * SDVOB and SDVOC to work around apparent hardware issues (according to
217 * comments in the BIOS).
218 */
ea5b213a 219static void intel_sdvo_write_sdvox(struct intel_sdvo *intel_sdvo, u32 val)
79e53945 220{
4ef69c7a 221 struct drm_device *dev = intel_sdvo->base.base.dev;
79e53945 222 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945
JB
223 u32 bval = val, cval = val;
224 int i;
225
ea5b213a
CW
226 if (intel_sdvo->sdvo_reg == PCH_SDVOB) {
227 I915_WRITE(intel_sdvo->sdvo_reg, val);
228 I915_READ(intel_sdvo->sdvo_reg);
461ed3ca
ZY
229 return;
230 }
231
ea5b213a 232 if (intel_sdvo->sdvo_reg == SDVOB) {
79e53945
JB
233 cval = I915_READ(SDVOC);
234 } else {
235 bval = I915_READ(SDVOB);
236 }
237 /*
238 * Write the registers twice for luck. Sometimes,
239 * writing them only once doesn't appear to 'stick'.
240 * The BIOS does this too. Yay, magic
241 */
242 for (i = 0; i < 2; i++)
243 {
244 I915_WRITE(SDVOB, bval);
245 I915_READ(SDVOB);
246 I915_WRITE(SDVOC, cval);
247 I915_READ(SDVOC);
248 }
249}
250
32aad86f 251static bool intel_sdvo_read_byte(struct intel_sdvo *intel_sdvo, u8 addr, u8 *ch)
79e53945 252{
79e53945
JB
253 struct i2c_msg msgs[] = {
254 {
e957d772 255 .addr = intel_sdvo->slave_addr,
79e53945
JB
256 .flags = 0,
257 .len = 1,
e957d772 258 .buf = &addr,
79e53945
JB
259 },
260 {
e957d772 261 .addr = intel_sdvo->slave_addr,
79e53945
JB
262 .flags = I2C_M_RD,
263 .len = 1,
e957d772 264 .buf = ch,
79e53945
JB
265 }
266 };
32aad86f 267 int ret;
79e53945 268
f899fc64 269 if ((ret = i2c_transfer(intel_sdvo->i2c, msgs, 2)) == 2)
79e53945 270 return true;
79e53945 271
8a4c47f3 272 DRM_DEBUG_KMS("i2c transfer returned %d\n", ret);
79e53945
JB
273 return false;
274}
275
79e53945
JB
276#define SDVO_CMD_NAME_ENTRY(cmd) {cmd, #cmd}
277/** Mapping of command numbers to names, for debug output */
005568be 278static const struct _sdvo_cmd_name {
e2f0ba97 279 u8 cmd;
2e88e40b 280 const char *name;
79e53945
JB
281} sdvo_cmd_names[] = {
282 SDVO_CMD_NAME_ENTRY(SDVO_CMD_RESET),
283 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_DEVICE_CAPS),
284 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FIRMWARE_REV),
285 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TRAINED_INPUTS),
286 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ACTIVE_OUTPUTS),
287 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ACTIVE_OUTPUTS),
288 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_IN_OUT_MAP),
289 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_IN_OUT_MAP),
290 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ATTACHED_DISPLAYS),
291 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HOT_PLUG_SUPPORT),
292 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ACTIVE_HOT_PLUG),
293 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ACTIVE_HOT_PLUG),
294 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INTERRUPT_EVENT_SOURCE),
295 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TARGET_INPUT),
296 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TARGET_OUTPUT),
297 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_TIMINGS_PART1),
298 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_TIMINGS_PART2),
299 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART1),
300 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART2),
301 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART1),
302 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OUTPUT_TIMINGS_PART1),
303 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OUTPUT_TIMINGS_PART2),
304 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_TIMINGS_PART1),
305 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_TIMINGS_PART2),
306 SDVO_CMD_NAME_ENTRY(SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING),
307 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1),
308 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2),
309 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE),
310 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_PIXEL_CLOCK_RANGE),
311 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_CLOCK_RATE_MULTS),
312 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_CLOCK_RATE_MULT),
313 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CLOCK_RATE_MULT),
314 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_TV_FORMATS),
315 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_FORMAT),
316 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_FORMAT),
e2f0ba97
JB
317 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_POWER_STATES),
318 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_POWER_STATE),
319 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ENCODER_POWER_STATE),
320 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_DISPLAY_POWER_STATE),
79e53945 321 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CONTROL_BUS_SWITCH),
e2f0ba97
JB
322 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT),
323 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SCALED_HDTV_RESOLUTION_SUPPORT),
324 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS),
c5521706 325
b9219c5e 326 /* Add the op code for SDVO enhancements */
c5521706
CW
327 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_HPOS),
328 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HPOS),
329 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HPOS),
330 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_VPOS),
331 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_VPOS),
332 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_VPOS),
b9219c5e
ZY
333 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_SATURATION),
334 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SATURATION),
335 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_SATURATION),
336 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_HUE),
337 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HUE),
338 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HUE),
339 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_CONTRAST),
340 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_CONTRAST),
341 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CONTRAST),
342 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_BRIGHTNESS),
343 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_BRIGHTNESS),
344 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_BRIGHTNESS),
345 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_OVERSCAN_H),
346 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OVERSCAN_H),
347 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OVERSCAN_H),
348 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_OVERSCAN_V),
349 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OVERSCAN_V),
350 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OVERSCAN_V),
c5521706
CW
351 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER),
352 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER),
353 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER),
354 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER_ADAPTIVE),
355 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER_ADAPTIVE),
356 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER_ADAPTIVE),
357 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER_2D),
358 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER_2D),
359 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER_2D),
360 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_SHARPNESS),
361 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SHARPNESS),
362 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_SHARPNESS),
363 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_DOT_CRAWL),
364 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_DOT_CRAWL),
365 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_TV_CHROMA_FILTER),
366 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_CHROMA_FILTER),
367 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_CHROMA_FILTER),
368 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_TV_LUMA_FILTER),
369 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_LUMA_FILTER),
370 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_LUMA_FILTER),
371
e2f0ba97
JB
372 /* HDMI op code */
373 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPP_ENCODE),
374 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ENCODE),
375 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ENCODE),
376 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_PIXEL_REPLI),
377 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PIXEL_REPLI),
378 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_COLORIMETRY_CAP),
379 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_COLORIMETRY),
380 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_COLORIMETRY),
381 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_AUDIO_ENCRYPT_PREFER),
382 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_AUDIO_STAT),
383 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_AUDIO_STAT),
384 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_INDEX),
385 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_INDEX),
386 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_INFO),
387 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_AV_SPLIT),
388 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_AV_SPLIT),
389 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_TXRATE),
390 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_TXRATE),
391 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_DATA),
392 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_DATA),
79e53945
JB
393};
394
461ed3ca 395#define IS_SDVOB(reg) (reg == SDVOB || reg == PCH_SDVOB)
ea5b213a 396#define SDVO_NAME(svdo) (IS_SDVOB((svdo)->sdvo_reg) ? "SDVOB" : "SDVOC")
79e53945 397
ea5b213a 398static void intel_sdvo_debug_write(struct intel_sdvo *intel_sdvo, u8 cmd,
32aad86f 399 const void *args, int args_len)
79e53945 400{
79e53945
JB
401 int i;
402
8a4c47f3 403 DRM_DEBUG_KMS("%s: W: %02X ",
ea5b213a 404 SDVO_NAME(intel_sdvo), cmd);
79e53945 405 for (i = 0; i < args_len; i++)
342dc382 406 DRM_LOG_KMS("%02X ", ((u8 *)args)[i]);
79e53945 407 for (; i < 8; i++)
342dc382 408 DRM_LOG_KMS(" ");
04ad327f 409 for (i = 0; i < ARRAY_SIZE(sdvo_cmd_names); i++) {
79e53945 410 if (cmd == sdvo_cmd_names[i].cmd) {
342dc382 411 DRM_LOG_KMS("(%s)", sdvo_cmd_names[i].name);
79e53945
JB
412 break;
413 }
414 }
04ad327f 415 if (i == ARRAY_SIZE(sdvo_cmd_names))
342dc382 416 DRM_LOG_KMS("(%02X)", cmd);
417 DRM_LOG_KMS("\n");
79e53945 418}
79e53945 419
e957d772
CW
420static const char *cmd_status_names[] = {
421 "Power on",
422 "Success",
423 "Not supported",
424 "Invalid arg",
425 "Pending",
426 "Target not specified",
427 "Scaling not supported"
428};
429
32aad86f
CW
430static bool intel_sdvo_write_cmd(struct intel_sdvo *intel_sdvo, u8 cmd,
431 const void *args, int args_len)
79e53945 432{
e957d772
CW
433 u8 buf[args_len*2 + 2], status;
434 struct i2c_msg msgs[args_len + 3];
435 int i, ret;
79e53945 436
ea5b213a 437 intel_sdvo_debug_write(intel_sdvo, cmd, args, args_len);
79e53945
JB
438
439 for (i = 0; i < args_len; i++) {
e957d772
CW
440 msgs[i].addr = intel_sdvo->slave_addr;
441 msgs[i].flags = 0;
442 msgs[i].len = 2;
443 msgs[i].buf = buf + 2 *i;
444 buf[2*i + 0] = SDVO_I2C_ARG_0 - i;
445 buf[2*i + 1] = ((u8*)args)[i];
446 }
447 msgs[i].addr = intel_sdvo->slave_addr;
448 msgs[i].flags = 0;
449 msgs[i].len = 2;
450 msgs[i].buf = buf + 2*i;
451 buf[2*i + 0] = SDVO_I2C_OPCODE;
452 buf[2*i + 1] = cmd;
453
454 /* the following two are to read the response */
455 status = SDVO_I2C_CMD_STATUS;
456 msgs[i+1].addr = intel_sdvo->slave_addr;
457 msgs[i+1].flags = 0;
458 msgs[i+1].len = 1;
459 msgs[i+1].buf = &status;
460
461 msgs[i+2].addr = intel_sdvo->slave_addr;
462 msgs[i+2].flags = I2C_M_RD;
463 msgs[i+2].len = 1;
464 msgs[i+2].buf = &status;
465
466 ret = i2c_transfer(intel_sdvo->i2c, msgs, i+3);
467 if (ret < 0) {
468 DRM_DEBUG_KMS("I2c transfer returned %d\n", ret);
469 return false;
470 }
471 if (ret != i+3) {
472 /* failure in I2C transfer */
473 DRM_DEBUG_KMS("I2c transfer returned %d/%d\n", ret, i+3);
474 return false;
475 }
476
e957d772 477 return true;
79e53945
JB
478}
479
b5c616a7
CW
480static bool intel_sdvo_read_response(struct intel_sdvo *intel_sdvo,
481 void *response, int response_len)
79e53945 482{
b5c616a7
CW
483 u8 retry = 5;
484 u8 status;
33b52961 485 int i;
79e53945 486
d121a5d2
CW
487 DRM_DEBUG_KMS("%s: R: ", SDVO_NAME(intel_sdvo));
488
b5c616a7
CW
489 /*
490 * The documentation states that all commands will be
491 * processed within 15µs, and that we need only poll
492 * the status byte a maximum of 3 times in order for the
493 * command to be complete.
494 *
495 * Check 5 times in case the hardware failed to read the docs.
496 */
d121a5d2
CW
497 if (!intel_sdvo_read_byte(intel_sdvo,
498 SDVO_I2C_CMD_STATUS,
499 &status))
500 goto log_fail;
501
502 while (status == SDVO_CMD_STATUS_PENDING && retry--) {
503 udelay(15);
b5c616a7
CW
504 if (!intel_sdvo_read_byte(intel_sdvo,
505 SDVO_I2C_CMD_STATUS,
506 &status))
d121a5d2
CW
507 goto log_fail;
508 }
b5c616a7 509
79e53945 510 if (status <= SDVO_CMD_STATUS_SCALING_NOT_SUPP)
342dc382 511 DRM_LOG_KMS("(%s)", cmd_status_names[status]);
79e53945 512 else
342dc382 513 DRM_LOG_KMS("(??? %d)", status);
79e53945 514
b5c616a7
CW
515 if (status != SDVO_CMD_STATUS_SUCCESS)
516 goto log_fail;
79e53945 517
b5c616a7
CW
518 /* Read the command response */
519 for (i = 0; i < response_len; i++) {
520 if (!intel_sdvo_read_byte(intel_sdvo,
521 SDVO_I2C_RETURN_0 + i,
522 &((u8 *)response)[i]))
523 goto log_fail;
e957d772 524 DRM_LOG_KMS(" %02X", ((u8 *)response)[i]);
b5c616a7 525 }
b5c616a7 526 DRM_LOG_KMS("\n");
b5c616a7 527 return true;
79e53945 528
b5c616a7 529log_fail:
d121a5d2 530 DRM_LOG_KMS("... failed\n");
b5c616a7 531 return false;
79e53945
JB
532}
533
b358d0a6 534static int intel_sdvo_get_pixel_multiplier(struct drm_display_mode *mode)
79e53945
JB
535{
536 if (mode->clock >= 100000)
537 return 1;
538 else if (mode->clock >= 50000)
539 return 2;
540 else
541 return 4;
542}
543
e957d772
CW
544static bool intel_sdvo_set_control_bus_switch(struct intel_sdvo *intel_sdvo,
545 u8 ddc_bus)
79e53945 546{
d121a5d2 547 /* This must be the immediately preceding write before the i2c xfer */
e957d772
CW
548 return intel_sdvo_write_cmd(intel_sdvo,
549 SDVO_CMD_SET_CONTROL_BUS_SWITCH,
550 &ddc_bus, 1);
79e53945
JB
551}
552
32aad86f 553static bool intel_sdvo_set_value(struct intel_sdvo *intel_sdvo, u8 cmd, const void *data, int len)
79e53945 554{
d121a5d2
CW
555 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, data, len))
556 return false;
557
558 return intel_sdvo_read_response(intel_sdvo, NULL, 0);
32aad86f 559}
79e53945 560
32aad86f
CW
561static bool
562intel_sdvo_get_value(struct intel_sdvo *intel_sdvo, u8 cmd, void *value, int len)
563{
564 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, NULL, 0))
565 return false;
79e53945 566
32aad86f
CW
567 return intel_sdvo_read_response(intel_sdvo, value, len);
568}
79e53945 569
32aad86f
CW
570static bool intel_sdvo_set_target_input(struct intel_sdvo *intel_sdvo)
571{
572 struct intel_sdvo_set_target_input_args targets = {0};
573 return intel_sdvo_set_value(intel_sdvo,
574 SDVO_CMD_SET_TARGET_INPUT,
575 &targets, sizeof(targets));
79e53945
JB
576}
577
578/**
579 * Return whether each input is trained.
580 *
581 * This function is making an assumption about the layout of the response,
582 * which should be checked against the docs.
583 */
ea5b213a 584static bool intel_sdvo_get_trained_inputs(struct intel_sdvo *intel_sdvo, bool *input_1, bool *input_2)
79e53945
JB
585{
586 struct intel_sdvo_get_trained_inputs_response response;
79e53945 587
32aad86f
CW
588 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_TRAINED_INPUTS,
589 &response, sizeof(response)))
79e53945
JB
590 return false;
591
592 *input_1 = response.input0_trained;
593 *input_2 = response.input1_trained;
594 return true;
595}
596
ea5b213a 597static bool intel_sdvo_set_active_outputs(struct intel_sdvo *intel_sdvo,
79e53945
JB
598 u16 outputs)
599{
32aad86f
CW
600 return intel_sdvo_set_value(intel_sdvo,
601 SDVO_CMD_SET_ACTIVE_OUTPUTS,
602 &outputs, sizeof(outputs));
79e53945
JB
603}
604
ea5b213a 605static bool intel_sdvo_set_encoder_power_state(struct intel_sdvo *intel_sdvo,
79e53945
JB
606 int mode)
607{
32aad86f 608 u8 state = SDVO_ENCODER_STATE_ON;
79e53945
JB
609
610 switch (mode) {
611 case DRM_MODE_DPMS_ON:
612 state = SDVO_ENCODER_STATE_ON;
613 break;
614 case DRM_MODE_DPMS_STANDBY:
615 state = SDVO_ENCODER_STATE_STANDBY;
616 break;
617 case DRM_MODE_DPMS_SUSPEND:
618 state = SDVO_ENCODER_STATE_SUSPEND;
619 break;
620 case DRM_MODE_DPMS_OFF:
621 state = SDVO_ENCODER_STATE_OFF;
622 break;
623 }
624
32aad86f
CW
625 return intel_sdvo_set_value(intel_sdvo,
626 SDVO_CMD_SET_ENCODER_POWER_STATE, &state, sizeof(state));
79e53945
JB
627}
628
ea5b213a 629static bool intel_sdvo_get_input_pixel_clock_range(struct intel_sdvo *intel_sdvo,
79e53945
JB
630 int *clock_min,
631 int *clock_max)
632{
633 struct intel_sdvo_pixel_clock_range clocks;
79e53945 634
32aad86f
CW
635 if (!intel_sdvo_get_value(intel_sdvo,
636 SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE,
637 &clocks, sizeof(clocks)))
79e53945
JB
638 return false;
639
640 /* Convert the values from units of 10 kHz to kHz. */
641 *clock_min = clocks.min * 10;
642 *clock_max = clocks.max * 10;
79e53945
JB
643 return true;
644}
645
ea5b213a 646static bool intel_sdvo_set_target_output(struct intel_sdvo *intel_sdvo,
79e53945
JB
647 u16 outputs)
648{
32aad86f
CW
649 return intel_sdvo_set_value(intel_sdvo,
650 SDVO_CMD_SET_TARGET_OUTPUT,
651 &outputs, sizeof(outputs));
79e53945
JB
652}
653
ea5b213a 654static bool intel_sdvo_set_timing(struct intel_sdvo *intel_sdvo, u8 cmd,
79e53945
JB
655 struct intel_sdvo_dtd *dtd)
656{
32aad86f
CW
657 return intel_sdvo_set_value(intel_sdvo, cmd, &dtd->part1, sizeof(dtd->part1)) &&
658 intel_sdvo_set_value(intel_sdvo, cmd + 1, &dtd->part2, sizeof(dtd->part2));
79e53945
JB
659}
660
ea5b213a 661static bool intel_sdvo_set_input_timing(struct intel_sdvo *intel_sdvo,
79e53945
JB
662 struct intel_sdvo_dtd *dtd)
663{
ea5b213a 664 return intel_sdvo_set_timing(intel_sdvo,
79e53945
JB
665 SDVO_CMD_SET_INPUT_TIMINGS_PART1, dtd);
666}
667
ea5b213a 668static bool intel_sdvo_set_output_timing(struct intel_sdvo *intel_sdvo,
79e53945
JB
669 struct intel_sdvo_dtd *dtd)
670{
ea5b213a 671 return intel_sdvo_set_timing(intel_sdvo,
79e53945
JB
672 SDVO_CMD_SET_OUTPUT_TIMINGS_PART1, dtd);
673}
674
e2f0ba97 675static bool
ea5b213a 676intel_sdvo_create_preferred_input_timing(struct intel_sdvo *intel_sdvo,
e2f0ba97
JB
677 uint16_t clock,
678 uint16_t width,
679 uint16_t height)
680{
681 struct intel_sdvo_preferred_input_timing_args args;
e2f0ba97 682
e642c6f1 683 memset(&args, 0, sizeof(args));
e2f0ba97
JB
684 args.clock = clock;
685 args.width = width;
686 args.height = height;
e642c6f1 687 args.interlace = 0;
12682a97 688
ea5b213a
CW
689 if (intel_sdvo->is_lvds &&
690 (intel_sdvo->sdvo_lvds_fixed_mode->hdisplay != width ||
691 intel_sdvo->sdvo_lvds_fixed_mode->vdisplay != height))
12682a97 692 args.scaled = 1;
693
32aad86f
CW
694 return intel_sdvo_set_value(intel_sdvo,
695 SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING,
696 &args, sizeof(args));
e2f0ba97
JB
697}
698
ea5b213a 699static bool intel_sdvo_get_preferred_input_timing(struct intel_sdvo *intel_sdvo,
e2f0ba97
JB
700 struct intel_sdvo_dtd *dtd)
701{
32aad86f
CW
702 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1,
703 &dtd->part1, sizeof(dtd->part1)) &&
704 intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2,
705 &dtd->part2, sizeof(dtd->part2));
e2f0ba97 706}
79e53945 707
ea5b213a 708static bool intel_sdvo_set_clock_rate_mult(struct intel_sdvo *intel_sdvo, u8 val)
79e53945 709{
32aad86f 710 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_CLOCK_RATE_MULT, &val, 1);
79e53945
JB
711}
712
e2f0ba97 713static void intel_sdvo_get_dtd_from_mode(struct intel_sdvo_dtd *dtd,
32aad86f 714 const struct drm_display_mode *mode)
79e53945 715{
e2f0ba97
JB
716 uint16_t width, height;
717 uint16_t h_blank_len, h_sync_len, v_blank_len, v_sync_len;
718 uint16_t h_sync_offset, v_sync_offset;
79e53945
JB
719
720 width = mode->crtc_hdisplay;
721 height = mode->crtc_vdisplay;
722
723 /* do some mode translations */
724 h_blank_len = mode->crtc_hblank_end - mode->crtc_hblank_start;
725 h_sync_len = mode->crtc_hsync_end - mode->crtc_hsync_start;
726
727 v_blank_len = mode->crtc_vblank_end - mode->crtc_vblank_start;
728 v_sync_len = mode->crtc_vsync_end - mode->crtc_vsync_start;
729
730 h_sync_offset = mode->crtc_hsync_start - mode->crtc_hblank_start;
731 v_sync_offset = mode->crtc_vsync_start - mode->crtc_vblank_start;
732
e2f0ba97
JB
733 dtd->part1.clock = mode->clock / 10;
734 dtd->part1.h_active = width & 0xff;
735 dtd->part1.h_blank = h_blank_len & 0xff;
736 dtd->part1.h_high = (((width >> 8) & 0xf) << 4) |
79e53945 737 ((h_blank_len >> 8) & 0xf);
e2f0ba97
JB
738 dtd->part1.v_active = height & 0xff;
739 dtd->part1.v_blank = v_blank_len & 0xff;
740 dtd->part1.v_high = (((height >> 8) & 0xf) << 4) |
79e53945
JB
741 ((v_blank_len >> 8) & 0xf);
742
171a9e96 743 dtd->part2.h_sync_off = h_sync_offset & 0xff;
e2f0ba97
JB
744 dtd->part2.h_sync_width = h_sync_len & 0xff;
745 dtd->part2.v_sync_off_width = (v_sync_offset & 0xf) << 4 |
79e53945 746 (v_sync_len & 0xf);
e2f0ba97 747 dtd->part2.sync_off_width_high = ((h_sync_offset & 0x300) >> 2) |
79e53945
JB
748 ((h_sync_len & 0x300) >> 4) | ((v_sync_offset & 0x30) >> 2) |
749 ((v_sync_len & 0x30) >> 4);
750
e2f0ba97 751 dtd->part2.dtd_flags = 0x18;
79e53945 752 if (mode->flags & DRM_MODE_FLAG_PHSYNC)
e2f0ba97 753 dtd->part2.dtd_flags |= 0x2;
79e53945 754 if (mode->flags & DRM_MODE_FLAG_PVSYNC)
e2f0ba97
JB
755 dtd->part2.dtd_flags |= 0x4;
756
757 dtd->part2.sdvo_flags = 0;
758 dtd->part2.v_sync_off_high = v_sync_offset & 0xc0;
759 dtd->part2.reserved = 0;
760}
761
762static void intel_sdvo_get_mode_from_dtd(struct drm_display_mode * mode,
32aad86f 763 const struct intel_sdvo_dtd *dtd)
e2f0ba97 764{
e2f0ba97
JB
765 mode->hdisplay = dtd->part1.h_active;
766 mode->hdisplay += ((dtd->part1.h_high >> 4) & 0x0f) << 8;
767 mode->hsync_start = mode->hdisplay + dtd->part2.h_sync_off;
171a9e96 768 mode->hsync_start += (dtd->part2.sync_off_width_high & 0xc0) << 2;
e2f0ba97
JB
769 mode->hsync_end = mode->hsync_start + dtd->part2.h_sync_width;
770 mode->hsync_end += (dtd->part2.sync_off_width_high & 0x30) << 4;
771 mode->htotal = mode->hdisplay + dtd->part1.h_blank;
772 mode->htotal += (dtd->part1.h_high & 0xf) << 8;
773
774 mode->vdisplay = dtd->part1.v_active;
775 mode->vdisplay += ((dtd->part1.v_high >> 4) & 0x0f) << 8;
776 mode->vsync_start = mode->vdisplay;
777 mode->vsync_start += (dtd->part2.v_sync_off_width >> 4) & 0xf;
171a9e96 778 mode->vsync_start += (dtd->part2.sync_off_width_high & 0x0c) << 2;
e2f0ba97
JB
779 mode->vsync_start += dtd->part2.v_sync_off_high & 0xc0;
780 mode->vsync_end = mode->vsync_start +
781 (dtd->part2.v_sync_off_width & 0xf);
782 mode->vsync_end += (dtd->part2.sync_off_width_high & 0x3) << 4;
783 mode->vtotal = mode->vdisplay + dtd->part1.v_blank;
784 mode->vtotal += (dtd->part1.v_high & 0xf) << 8;
785
786 mode->clock = dtd->part1.clock * 10;
787
171a9e96 788 mode->flags &= ~(DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC);
e2f0ba97
JB
789 if (dtd->part2.dtd_flags & 0x2)
790 mode->flags |= DRM_MODE_FLAG_PHSYNC;
791 if (dtd->part2.dtd_flags & 0x4)
792 mode->flags |= DRM_MODE_FLAG_PVSYNC;
793}
794
e27d8538 795static bool intel_sdvo_check_supp_encode(struct intel_sdvo *intel_sdvo)
e2f0ba97 796{
e27d8538 797 struct intel_sdvo_encode encode;
e2f0ba97 798
e27d8538
CW
799 return intel_sdvo_get_value(intel_sdvo,
800 SDVO_CMD_GET_SUPP_ENCODE,
801 &encode, sizeof(encode));
e2f0ba97
JB
802}
803
ea5b213a 804static bool intel_sdvo_set_encode(struct intel_sdvo *intel_sdvo,
c751ce4f 805 uint8_t mode)
e2f0ba97 806{
32aad86f 807 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_ENCODE, &mode, 1);
e2f0ba97
JB
808}
809
ea5b213a 810static bool intel_sdvo_set_colorimetry(struct intel_sdvo *intel_sdvo,
e2f0ba97
JB
811 uint8_t mode)
812{
32aad86f 813 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_COLORIMETRY, &mode, 1);
e2f0ba97
JB
814}
815
816#if 0
ea5b213a 817static void intel_sdvo_dump_hdmi_buf(struct intel_sdvo *intel_sdvo)
e2f0ba97
JB
818{
819 int i, j;
820 uint8_t set_buf_index[2];
821 uint8_t av_split;
822 uint8_t buf_size;
823 uint8_t buf[48];
824 uint8_t *pos;
825
32aad86f 826 intel_sdvo_get_value(encoder, SDVO_CMD_GET_HBUF_AV_SPLIT, &av_split, 1);
e2f0ba97
JB
827
828 for (i = 0; i <= av_split; i++) {
829 set_buf_index[0] = i; set_buf_index[1] = 0;
c751ce4f 830 intel_sdvo_write_cmd(encoder, SDVO_CMD_SET_HBUF_INDEX,
e2f0ba97 831 set_buf_index, 2);
c751ce4f
EA
832 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_INFO, NULL, 0);
833 intel_sdvo_read_response(encoder, &buf_size, 1);
e2f0ba97
JB
834
835 pos = buf;
836 for (j = 0; j <= buf_size; j += 8) {
c751ce4f 837 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_DATA,
e2f0ba97 838 NULL, 0);
c751ce4f 839 intel_sdvo_read_response(encoder, pos, 8);
e2f0ba97
JB
840 pos += 8;
841 }
842 }
843}
844#endif
845
3c17fe4b 846static bool intel_sdvo_set_avi_infoframe(struct intel_sdvo *intel_sdvo)
e2f0ba97
JB
847{
848 struct dip_infoframe avi_if = {
849 .type = DIP_TYPE_AVI,
3c17fe4b 850 .ver = DIP_VERSION_AVI,
e2f0ba97
JB
851 .len = DIP_LEN_AVI,
852 };
3c17fe4b
DH
853 uint8_t tx_rate = SDVO_HBUF_TX_VSYNC;
854 uint8_t set_buf_index[2] = { 1, 0 };
855 uint64_t *data = (uint64_t *)&avi_if;
856 unsigned i;
857
858 intel_dip_infoframe_csum(&avi_if);
859
d121a5d2
CW
860 if (!intel_sdvo_set_value(intel_sdvo,
861 SDVO_CMD_SET_HBUF_INDEX,
3c17fe4b
DH
862 set_buf_index, 2))
863 return false;
864
865 for (i = 0; i < sizeof(avi_if); i += 8) {
d121a5d2
CW
866 if (!intel_sdvo_set_value(intel_sdvo,
867 SDVO_CMD_SET_HBUF_DATA,
3c17fe4b
DH
868 data, 8))
869 return false;
870 data++;
871 }
e2f0ba97 872
d121a5d2
CW
873 return intel_sdvo_set_value(intel_sdvo,
874 SDVO_CMD_SET_HBUF_TXRATE,
3c17fe4b 875 &tx_rate, 1);
e2f0ba97
JB
876}
877
32aad86f 878static bool intel_sdvo_set_tv_format(struct intel_sdvo *intel_sdvo)
7026d4ac 879{
ce6feabd 880 struct intel_sdvo_tv_format format;
40039750 881 uint32_t format_map;
ce6feabd 882
40039750 883 format_map = 1 << intel_sdvo->tv_format_index;
ce6feabd 884 memset(&format, 0, sizeof(format));
32aad86f 885 memcpy(&format, &format_map, min(sizeof(format), sizeof(format_map)));
ce6feabd 886
32aad86f
CW
887 BUILD_BUG_ON(sizeof(format) != 6);
888 return intel_sdvo_set_value(intel_sdvo,
889 SDVO_CMD_SET_TV_FORMAT,
890 &format, sizeof(format));
7026d4ac
ZW
891}
892
32aad86f
CW
893static bool
894intel_sdvo_set_output_timings_from_mode(struct intel_sdvo *intel_sdvo,
895 struct drm_display_mode *mode)
e2f0ba97 896{
32aad86f 897 struct intel_sdvo_dtd output_dtd;
79e53945 898
32aad86f
CW
899 if (!intel_sdvo_set_target_output(intel_sdvo,
900 intel_sdvo->attached_output))
901 return false;
e2f0ba97 902
32aad86f
CW
903 intel_sdvo_get_dtd_from_mode(&output_dtd, mode);
904 if (!intel_sdvo_set_output_timing(intel_sdvo, &output_dtd))
905 return false;
e2f0ba97 906
32aad86f
CW
907 return true;
908}
909
910static bool
911intel_sdvo_set_input_timings_for_mode(struct intel_sdvo *intel_sdvo,
912 struct drm_display_mode *mode,
913 struct drm_display_mode *adjusted_mode)
914{
32aad86f
CW
915 /* Reset the input timing to the screen. Assume always input 0. */
916 if (!intel_sdvo_set_target_input(intel_sdvo))
917 return false;
e2f0ba97 918
32aad86f
CW
919 if (!intel_sdvo_create_preferred_input_timing(intel_sdvo,
920 mode->clock / 10,
921 mode->hdisplay,
922 mode->vdisplay))
923 return false;
e2f0ba97 924
32aad86f 925 if (!intel_sdvo_get_preferred_input_timing(intel_sdvo,
6c9547ff 926 &intel_sdvo->input_dtd))
32aad86f 927 return false;
e2f0ba97 928
6c9547ff 929 intel_sdvo_get_mode_from_dtd(adjusted_mode, &intel_sdvo->input_dtd);
79e53945 930
32aad86f 931 drm_mode_set_crtcinfo(adjusted_mode, 0);
32aad86f
CW
932 return true;
933}
12682a97 934
32aad86f
CW
935static bool intel_sdvo_mode_fixup(struct drm_encoder *encoder,
936 struct drm_display_mode *mode,
937 struct drm_display_mode *adjusted_mode)
938{
890f3359 939 struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder);
6c9547ff 940 int multiplier;
12682a97 941
32aad86f
CW
942 /* We need to construct preferred input timings based on our
943 * output timings. To do that, we have to set the output
944 * timings, even though this isn't really the right place in
945 * the sequence to do it. Oh well.
946 */
947 if (intel_sdvo->is_tv) {
948 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo, mode))
949 return false;
12682a97 950
c74696b9
PR
951 (void) intel_sdvo_set_input_timings_for_mode(intel_sdvo,
952 mode,
953 adjusted_mode);
ea5b213a 954 } else if (intel_sdvo->is_lvds) {
32aad86f 955 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo,
6c9547ff 956 intel_sdvo->sdvo_lvds_fixed_mode))
e2f0ba97 957 return false;
12682a97 958
c74696b9
PR
959 (void) intel_sdvo_set_input_timings_for_mode(intel_sdvo,
960 mode,
961 adjusted_mode);
e2f0ba97 962 }
32aad86f
CW
963
964 /* Make the CRTC code factor in the SDVO pixel multiplier. The
6c9547ff 965 * SDVO device will factor out the multiplier during mode_set.
32aad86f 966 */
6c9547ff
CW
967 multiplier = intel_sdvo_get_pixel_multiplier(adjusted_mode);
968 intel_mode_set_pixel_multiplier(adjusted_mode, multiplier);
32aad86f 969
e2f0ba97
JB
970 return true;
971}
972
973static void intel_sdvo_mode_set(struct drm_encoder *encoder,
974 struct drm_display_mode *mode,
975 struct drm_display_mode *adjusted_mode)
976{
977 struct drm_device *dev = encoder->dev;
978 struct drm_i915_private *dev_priv = dev->dev_private;
979 struct drm_crtc *crtc = encoder->crtc;
980 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
890f3359 981 struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder);
6c9547ff 982 u32 sdvox;
e2f0ba97
JB
983 struct intel_sdvo_in_out_map in_out;
984 struct intel_sdvo_dtd input_dtd;
6c9547ff
CW
985 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
986 int rate;
e2f0ba97
JB
987
988 if (!mode)
989 return;
990
991 /* First, set the input mapping for the first input to our controlled
992 * output. This is only correct if we're a single-input device, in
993 * which case the first input is the output from the appropriate SDVO
994 * channel on the motherboard. In a two-input device, the first input
995 * will be SDVOB and the second SDVOC.
996 */
ea5b213a 997 in_out.in0 = intel_sdvo->attached_output;
e2f0ba97
JB
998 in_out.in1 = 0;
999
c74696b9
PR
1000 intel_sdvo_set_value(intel_sdvo,
1001 SDVO_CMD_SET_IN_OUT_MAP,
1002 &in_out, sizeof(in_out));
e2f0ba97 1003
6c9547ff
CW
1004 /* Set the output timings to the screen */
1005 if (!intel_sdvo_set_target_output(intel_sdvo,
1006 intel_sdvo->attached_output))
1007 return;
e2f0ba97 1008
7026d4ac 1009 /* We have tried to get input timing in mode_fixup, and filled into
6c9547ff 1010 * adjusted_mode.
e2f0ba97 1011 */
6c9547ff
CW
1012 if (intel_sdvo->is_tv || intel_sdvo->is_lvds) {
1013 input_dtd = intel_sdvo->input_dtd;
1014 } else {
e2f0ba97 1015 /* Set the output timing to the screen */
32aad86f
CW
1016 if (!intel_sdvo_set_target_output(intel_sdvo,
1017 intel_sdvo->attached_output))
1018 return;
1019
6c9547ff 1020 intel_sdvo_get_dtd_from_mode(&input_dtd, adjusted_mode);
c74696b9 1021 (void) intel_sdvo_set_output_timing(intel_sdvo, &input_dtd);
e2f0ba97 1022 }
79e53945
JB
1023
1024 /* Set the input timing to the screen. Assume always input 0. */
32aad86f
CW
1025 if (!intel_sdvo_set_target_input(intel_sdvo))
1026 return;
79e53945 1027
97aaf910
CW
1028 if (intel_sdvo->has_hdmi_monitor) {
1029 intel_sdvo_set_encode(intel_sdvo, SDVO_ENCODE_HDMI);
1030 intel_sdvo_set_colorimetry(intel_sdvo,
1031 SDVO_COLORIMETRY_RGB256);
1032 intel_sdvo_set_avi_infoframe(intel_sdvo);
1033 } else
1034 intel_sdvo_set_encode(intel_sdvo, SDVO_ENCODE_DVI);
7026d4ac 1035
6c9547ff
CW
1036 if (intel_sdvo->is_tv &&
1037 !intel_sdvo_set_tv_format(intel_sdvo))
1038 return;
e2f0ba97 1039
c74696b9 1040 (void) intel_sdvo_set_input_timing(intel_sdvo, &input_dtd);
79e53945 1041
6c9547ff
CW
1042 switch (pixel_multiplier) {
1043 default:
32aad86f
CW
1044 case 1: rate = SDVO_CLOCK_RATE_MULT_1X; break;
1045 case 2: rate = SDVO_CLOCK_RATE_MULT_2X; break;
1046 case 4: rate = SDVO_CLOCK_RATE_MULT_4X; break;
79e53945 1047 }
32aad86f
CW
1048 if (!intel_sdvo_set_clock_rate_mult(intel_sdvo, rate))
1049 return;
79e53945
JB
1050
1051 /* Set the SDVO control regs. */
a6c45cf0 1052 if (INTEL_INFO(dev)->gen >= 4) {
6714afb1
CW
1053 sdvox = 0;
1054 if (INTEL_INFO(dev)->gen < 5)
1055 sdvox |= SDVO_BORDER_ENABLE;
81a14b46
AJ
1056 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1057 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
1058 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1059 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
e2f0ba97 1060 } else {
6c9547ff 1061 sdvox = I915_READ(intel_sdvo->sdvo_reg);
ea5b213a 1062 switch (intel_sdvo->sdvo_reg) {
e2f0ba97
JB
1063 case SDVOB:
1064 sdvox &= SDVOB_PRESERVE_MASK;
1065 break;
1066 case SDVOC:
1067 sdvox &= SDVOC_PRESERVE_MASK;
1068 break;
1069 }
1070 sdvox |= (9 << 19) | SDVO_BORDER_ENABLE;
1071 }
79e53945
JB
1072 if (intel_crtc->pipe == 1)
1073 sdvox |= SDVO_PIPE_B_SELECT;
da79de97 1074 if (intel_sdvo->has_hdmi_audio)
6c9547ff 1075 sdvox |= SDVO_AUDIO_ENABLE;
79e53945 1076
a6c45cf0 1077 if (INTEL_INFO(dev)->gen >= 4) {
e2f0ba97
JB
1078 /* done in crtc_mode_set as the dpll_md reg must be written early */
1079 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
1080 /* done in crtc_mode_set as it lives inside the dpll register */
79e53945 1081 } else {
6c9547ff 1082 sdvox |= (pixel_multiplier - 1) << SDVO_PORT_MULTIPLY_SHIFT;
79e53945
JB
1083 }
1084
6714afb1
CW
1085 if (input_dtd.part2.sdvo_flags & SDVO_NEED_TO_STALL &&
1086 INTEL_INFO(dev)->gen < 5)
12682a97 1087 sdvox |= SDVO_STALL_SELECT;
ea5b213a 1088 intel_sdvo_write_sdvox(intel_sdvo, sdvox);
79e53945
JB
1089}
1090
1091static void intel_sdvo_dpms(struct drm_encoder *encoder, int mode)
1092{
1093 struct drm_device *dev = encoder->dev;
1094 struct drm_i915_private *dev_priv = dev->dev_private;
890f3359 1095 struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder);
9d0498a2 1096 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
79e53945
JB
1097 u32 temp;
1098
1099 if (mode != DRM_MODE_DPMS_ON) {
ea5b213a 1100 intel_sdvo_set_active_outputs(intel_sdvo, 0);
79e53945 1101 if (0)
ea5b213a 1102 intel_sdvo_set_encoder_power_state(intel_sdvo, mode);
79e53945
JB
1103
1104 if (mode == DRM_MODE_DPMS_OFF) {
ea5b213a 1105 temp = I915_READ(intel_sdvo->sdvo_reg);
79e53945 1106 if ((temp & SDVO_ENABLE) != 0) {
ea5b213a 1107 intel_sdvo_write_sdvox(intel_sdvo, temp & ~SDVO_ENABLE);
79e53945
JB
1108 }
1109 }
1110 } else {
1111 bool input1, input2;
1112 int i;
1113 u8 status;
1114
ea5b213a 1115 temp = I915_READ(intel_sdvo->sdvo_reg);
79e53945 1116 if ((temp & SDVO_ENABLE) == 0)
ea5b213a 1117 intel_sdvo_write_sdvox(intel_sdvo, temp | SDVO_ENABLE);
79e53945 1118 for (i = 0; i < 2; i++)
9d0498a2 1119 intel_wait_for_vblank(dev, intel_crtc->pipe);
79e53945 1120
32aad86f 1121 status = intel_sdvo_get_trained_inputs(intel_sdvo, &input1, &input2);
79e53945
JB
1122 /* Warn if the device reported failure to sync.
1123 * A lot of SDVO devices fail to notify of sync, but it's
1124 * a given it the status is a success, we succeeded.
1125 */
1126 if (status == SDVO_CMD_STATUS_SUCCESS && !input1) {
8a4c47f3 1127 DRM_DEBUG_KMS("First %s output reported failure to "
ea5b213a 1128 "sync\n", SDVO_NAME(intel_sdvo));
79e53945
JB
1129 }
1130
1131 if (0)
ea5b213a
CW
1132 intel_sdvo_set_encoder_power_state(intel_sdvo, mode);
1133 intel_sdvo_set_active_outputs(intel_sdvo, intel_sdvo->attached_output);
79e53945
JB
1134 }
1135 return;
1136}
1137
79e53945
JB
1138static int intel_sdvo_mode_valid(struct drm_connector *connector,
1139 struct drm_display_mode *mode)
1140{
df0e9248 1141 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
79e53945
JB
1142
1143 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1144 return MODE_NO_DBLESCAN;
1145
ea5b213a 1146 if (intel_sdvo->pixel_clock_min > mode->clock)
79e53945
JB
1147 return MODE_CLOCK_LOW;
1148
ea5b213a 1149 if (intel_sdvo->pixel_clock_max < mode->clock)
79e53945
JB
1150 return MODE_CLOCK_HIGH;
1151
8545423a 1152 if (intel_sdvo->is_lvds) {
ea5b213a 1153 if (mode->hdisplay > intel_sdvo->sdvo_lvds_fixed_mode->hdisplay)
12682a97 1154 return MODE_PANEL;
1155
ea5b213a 1156 if (mode->vdisplay > intel_sdvo->sdvo_lvds_fixed_mode->vdisplay)
12682a97 1157 return MODE_PANEL;
1158 }
1159
79e53945
JB
1160 return MODE_OK;
1161}
1162
ea5b213a 1163static bool intel_sdvo_get_capabilities(struct intel_sdvo *intel_sdvo, struct intel_sdvo_caps *caps)
79e53945 1164{
e957d772
CW
1165 if (!intel_sdvo_get_value(intel_sdvo,
1166 SDVO_CMD_GET_DEVICE_CAPS,
1167 caps, sizeof(*caps)))
1168 return false;
1169
1170 DRM_DEBUG_KMS("SDVO capabilities:\n"
1171 " vendor_id: %d\n"
1172 " device_id: %d\n"
1173 " device_rev_id: %d\n"
1174 " sdvo_version_major: %d\n"
1175 " sdvo_version_minor: %d\n"
1176 " sdvo_inputs_mask: %d\n"
1177 " smooth_scaling: %d\n"
1178 " sharp_scaling: %d\n"
1179 " up_scaling: %d\n"
1180 " down_scaling: %d\n"
1181 " stall_support: %d\n"
1182 " output_flags: %d\n",
1183 caps->vendor_id,
1184 caps->device_id,
1185 caps->device_rev_id,
1186 caps->sdvo_version_major,
1187 caps->sdvo_version_minor,
1188 caps->sdvo_inputs_mask,
1189 caps->smooth_scaling,
1190 caps->sharp_scaling,
1191 caps->up_scaling,
1192 caps->down_scaling,
1193 caps->stall_support,
1194 caps->output_flags);
1195
1196 return true;
79e53945
JB
1197}
1198
d2a82a6f
ZW
1199/* No use! */
1200#if 0
79e53945
JB
1201struct drm_connector* intel_sdvo_find(struct drm_device *dev, int sdvoB)
1202{
1203 struct drm_connector *connector = NULL;
ea5b213a
CW
1204 struct intel_sdvo *iout = NULL;
1205 struct intel_sdvo *sdvo;
79e53945
JB
1206
1207 /* find the sdvo connector */
1208 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
ea5b213a 1209 iout = to_intel_sdvo(connector);
79e53945
JB
1210
1211 if (iout->type != INTEL_OUTPUT_SDVO)
1212 continue;
1213
1214 sdvo = iout->dev_priv;
1215
c751ce4f 1216 if (sdvo->sdvo_reg == SDVOB && sdvoB)
79e53945
JB
1217 return connector;
1218
c751ce4f 1219 if (sdvo->sdvo_reg == SDVOC && !sdvoB)
79e53945
JB
1220 return connector;
1221
1222 }
1223
1224 return NULL;
1225}
1226
1227int intel_sdvo_supports_hotplug(struct drm_connector *connector)
1228{
1229 u8 response[2];
1230 u8 status;
ea5b213a 1231 struct intel_sdvo *intel_sdvo;
8a4c47f3 1232 DRM_DEBUG_KMS("\n");
79e53945
JB
1233
1234 if (!connector)
1235 return 0;
1236
ea5b213a 1237 intel_sdvo = to_intel_sdvo(connector);
79e53945 1238
32aad86f
CW
1239 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT,
1240 &response, 2) && response[0];
79e53945
JB
1241}
1242
1243void intel_sdvo_set_hotplug(struct drm_connector *connector, int on)
1244{
1245 u8 response[2];
1246 u8 status;
ea5b213a 1247 struct intel_sdvo *intel_sdvo = to_intel_sdvo(connector);
79e53945 1248
ea5b213a
CW
1249 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_ACTIVE_HOT_PLUG, NULL, 0);
1250 intel_sdvo_read_response(intel_sdvo, &response, 2);
79e53945
JB
1251
1252 if (on) {
ea5b213a
CW
1253 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT, NULL, 0);
1254 status = intel_sdvo_read_response(intel_sdvo, &response, 2);
79e53945 1255
ea5b213a 1256 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
79e53945
JB
1257 } else {
1258 response[0] = 0;
1259 response[1] = 0;
ea5b213a 1260 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
79e53945
JB
1261 }
1262
ea5b213a
CW
1263 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_ACTIVE_HOT_PLUG, NULL, 0);
1264 intel_sdvo_read_response(intel_sdvo, &response, 2);
79e53945 1265}
d2a82a6f 1266#endif
79e53945 1267
fb7a46f3 1268static bool
ea5b213a 1269intel_sdvo_multifunc_encoder(struct intel_sdvo *intel_sdvo)
fb7a46f3 1270{
fb7a46f3 1271 int caps = 0;
1272
ea5b213a 1273 if (intel_sdvo->caps.output_flags &
fb7a46f3 1274 (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_TMDS1))
1275 caps++;
ea5b213a 1276 if (intel_sdvo->caps.output_flags &
fb7a46f3 1277 (SDVO_OUTPUT_RGB0 | SDVO_OUTPUT_RGB1))
1278 caps++;
ea5b213a 1279 if (intel_sdvo->caps.output_flags &
19e1f888 1280 (SDVO_OUTPUT_SVID0 | SDVO_OUTPUT_SVID1))
fb7a46f3 1281 caps++;
ea5b213a 1282 if (intel_sdvo->caps.output_flags &
fb7a46f3 1283 (SDVO_OUTPUT_CVBS0 | SDVO_OUTPUT_CVBS1))
1284 caps++;
ea5b213a 1285 if (intel_sdvo->caps.output_flags &
fb7a46f3 1286 (SDVO_OUTPUT_YPRPB0 | SDVO_OUTPUT_YPRPB1))
1287 caps++;
1288
ea5b213a 1289 if (intel_sdvo->caps.output_flags &
fb7a46f3 1290 (SDVO_OUTPUT_SCART0 | SDVO_OUTPUT_SCART1))
1291 caps++;
1292
ea5b213a 1293 if (intel_sdvo->caps.output_flags &
fb7a46f3 1294 (SDVO_OUTPUT_LVDS0 | SDVO_OUTPUT_LVDS1))
1295 caps++;
1296
1297 return (caps > 1);
1298}
1299
f899fc64 1300static struct edid *
e957d772 1301intel_sdvo_get_edid(struct drm_connector *connector)
f899fc64 1302{
e957d772
CW
1303 struct intel_sdvo *sdvo = intel_attached_sdvo(connector);
1304 return drm_get_edid(connector, &sdvo->ddc);
f899fc64
CW
1305}
1306
ff482d83
CW
1307/* Mac mini hack -- use the same DDC as the analog connector */
1308static struct edid *
1309intel_sdvo_get_analog_edid(struct drm_connector *connector)
1310{
f899fc64 1311 struct drm_i915_private *dev_priv = connector->dev->dev_private;
ff482d83 1312
0c1dab89
CW
1313 return drm_get_edid(connector,
1314 &dev_priv->gmbus[dev_priv->crt_ddc_pin].adapter);
ff482d83
CW
1315}
1316
2b8d33f7 1317enum drm_connector_status
149c36a3 1318intel_sdvo_hdmi_sink_detect(struct drm_connector *connector)
9dff6af8 1319{
df0e9248 1320 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
9d1a903d
CW
1321 enum drm_connector_status status;
1322 struct edid *edid;
9dff6af8 1323
e957d772 1324 edid = intel_sdvo_get_edid(connector);
57cdaf90 1325
ea5b213a 1326 if (edid == NULL && intel_sdvo_multifunc_encoder(intel_sdvo)) {
e957d772 1327 u8 ddc, saved_ddc = intel_sdvo->ddc_bus;
9d1a903d 1328
7c3f0a27
ZY
1329 /*
1330 * Don't use the 1 as the argument of DDC bus switch to get
1331 * the EDID. It is used for SDVO SPD ROM.
1332 */
9d1a903d 1333 for (ddc = intel_sdvo->ddc_bus >> 1; ddc > 1; ddc >>= 1) {
e957d772
CW
1334 intel_sdvo->ddc_bus = ddc;
1335 edid = intel_sdvo_get_edid(connector);
1336 if (edid)
7c3f0a27 1337 break;
7c3f0a27 1338 }
e957d772
CW
1339 /*
1340 * If we found the EDID on the other bus,
1341 * assume that is the correct DDC bus.
1342 */
1343 if (edid == NULL)
1344 intel_sdvo->ddc_bus = saved_ddc;
7c3f0a27 1345 }
9d1a903d
CW
1346
1347 /*
1348 * When there is no edid and no monitor is connected with VGA
1349 * port, try to use the CRT ddc to read the EDID for DVI-connector.
57cdaf90 1350 */
ff482d83
CW
1351 if (edid == NULL)
1352 edid = intel_sdvo_get_analog_edid(connector);
149c36a3 1353
2f551c84 1354 status = connector_status_unknown;
9dff6af8 1355 if (edid != NULL) {
149c36a3 1356 /* DDC bus is shared, match EDID to connector type */
9d1a903d
CW
1357 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
1358 status = connector_status_connected;
da79de97
CW
1359 if (intel_sdvo->is_hdmi) {
1360 intel_sdvo->has_hdmi_monitor = drm_detect_hdmi_monitor(edid);
1361 intel_sdvo->has_hdmi_audio = drm_detect_monitor_audio(edid);
1362 }
13946743
CW
1363 } else
1364 status = connector_status_disconnected;
149c36a3 1365 connector->display_info.raw_edid = NULL;
9d1a903d
CW
1366 kfree(edid);
1367 }
7f36e7ed
CW
1368
1369 if (status == connector_status_connected) {
1370 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
1371 if (intel_sdvo_connector->force_audio)
da79de97 1372 intel_sdvo->has_hdmi_audio = intel_sdvo_connector->force_audio > 0;
7f36e7ed
CW
1373 }
1374
2b8d33f7 1375 return status;
9dff6af8
ML
1376}
1377
7b334fcb 1378static enum drm_connector_status
930a9e28 1379intel_sdvo_detect(struct drm_connector *connector, bool force)
79e53945 1380{
fb7a46f3 1381 uint16_t response;
df0e9248 1382 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
615fb93f 1383 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
14571b4c 1384 enum drm_connector_status ret;
79e53945 1385
32aad86f 1386 if (!intel_sdvo_write_cmd(intel_sdvo,
e957d772 1387 SDVO_CMD_GET_ATTACHED_DISPLAYS, NULL, 0))
32aad86f 1388 return connector_status_unknown;
ba84cd1f
CW
1389
1390 /* add 30ms delay when the output type might be TV */
1391 if (intel_sdvo->caps.output_flags &
1392 (SDVO_OUTPUT_SVID0 | SDVO_OUTPUT_CVBS0))
d09c23de 1393 mdelay(30);
ba84cd1f 1394
32aad86f
CW
1395 if (!intel_sdvo_read_response(intel_sdvo, &response, 2))
1396 return connector_status_unknown;
79e53945 1397
e957d772
CW
1398 DRM_DEBUG_KMS("SDVO response %d %d [%x]\n",
1399 response & 0xff, response >> 8,
1400 intel_sdvo_connector->output_flag);
e2f0ba97 1401
fb7a46f3 1402 if (response == 0)
79e53945 1403 return connector_status_disconnected;
fb7a46f3 1404
ea5b213a 1405 intel_sdvo->attached_output = response;
14571b4c 1406
97aaf910
CW
1407 intel_sdvo->has_hdmi_monitor = false;
1408 intel_sdvo->has_hdmi_audio = false;
1409
615fb93f 1410 if ((intel_sdvo_connector->output_flag & response) == 0)
14571b4c 1411 ret = connector_status_disconnected;
13946743 1412 else if (IS_TMDS(intel_sdvo_connector))
149c36a3 1413 ret = intel_sdvo_hdmi_sink_detect(connector);
13946743
CW
1414 else {
1415 struct edid *edid;
1416
1417 /* if we have an edid check it matches the connection */
1418 edid = intel_sdvo_get_edid(connector);
1419 if (edid == NULL)
1420 edid = intel_sdvo_get_analog_edid(connector);
1421 if (edid != NULL) {
1422 if (edid->input & DRM_EDID_INPUT_DIGITAL)
1423 ret = connector_status_disconnected;
1424 else
1425 ret = connector_status_connected;
1426 connector->display_info.raw_edid = NULL;
1427 kfree(edid);
1428 } else
1429 ret = connector_status_connected;
1430 }
14571b4c
ZW
1431
1432 /* May update encoder flag for like clock for SDVO TV, etc.*/
1433 if (ret == connector_status_connected) {
ea5b213a
CW
1434 intel_sdvo->is_tv = false;
1435 intel_sdvo->is_lvds = false;
1436 intel_sdvo->base.needs_tv_clock = false;
14571b4c
ZW
1437
1438 if (response & SDVO_TV_MASK) {
ea5b213a
CW
1439 intel_sdvo->is_tv = true;
1440 intel_sdvo->base.needs_tv_clock = true;
14571b4c
ZW
1441 }
1442 if (response & SDVO_LVDS_MASK)
8545423a 1443 intel_sdvo->is_lvds = intel_sdvo->sdvo_lvds_fixed_mode != NULL;
fb7a46f3 1444 }
14571b4c
ZW
1445
1446 return ret;
79e53945
JB
1447}
1448
e2f0ba97 1449static void intel_sdvo_get_ddc_modes(struct drm_connector *connector)
79e53945 1450{
ff482d83 1451 struct edid *edid;
79e53945
JB
1452
1453 /* set the bus switch and get the modes */
e957d772 1454 edid = intel_sdvo_get_edid(connector);
79e53945 1455
57cdaf90
KP
1456 /*
1457 * Mac mini hack. On this device, the DVI-I connector shares one DDC
1458 * link between analog and digital outputs. So, if the regular SDVO
1459 * DDC fails, check to see if the analog output is disconnected, in
1460 * which case we'll look there for the digital DDC data.
e2f0ba97 1461 */
f899fc64
CW
1462 if (edid == NULL)
1463 edid = intel_sdvo_get_analog_edid(connector);
1464
ff482d83 1465 if (edid != NULL) {
13946743
CW
1466 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
1467 bool monitor_is_digital = !!(edid->input & DRM_EDID_INPUT_DIGITAL);
1468 bool connector_is_digital = !!IS_TMDS(intel_sdvo_connector);
1469
1470 if (connector_is_digital == monitor_is_digital) {
0c1dab89
CW
1471 drm_mode_connector_update_edid_property(connector, edid);
1472 drm_add_edid_modes(connector, edid);
1473 }
13946743 1474
ff482d83
CW
1475 connector->display_info.raw_edid = NULL;
1476 kfree(edid);
e2f0ba97 1477 }
e2f0ba97
JB
1478}
1479
1480/*
1481 * Set of SDVO TV modes.
1482 * Note! This is in reply order (see loop in get_tv_modes).
1483 * XXX: all 60Hz refresh?
1484 */
1485struct drm_display_mode sdvo_tv_modes[] = {
7026d4ac
ZW
1486 { DRM_MODE("320x200", DRM_MODE_TYPE_DRIVER, 5815, 320, 321, 384,
1487 416, 0, 200, 201, 232, 233, 0,
e2f0ba97 1488 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1489 { DRM_MODE("320x240", DRM_MODE_TYPE_DRIVER, 6814, 320, 321, 384,
1490 416, 0, 240, 241, 272, 273, 0,
e2f0ba97 1491 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1492 { DRM_MODE("400x300", DRM_MODE_TYPE_DRIVER, 9910, 400, 401, 464,
1493 496, 0, 300, 301, 332, 333, 0,
e2f0ba97 1494 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1495 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 16913, 640, 641, 704,
1496 736, 0, 350, 351, 382, 383, 0,
e2f0ba97 1497 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1498 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 19121, 640, 641, 704,
1499 736, 0, 400, 401, 432, 433, 0,
e2f0ba97 1500 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1501 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 22654, 640, 641, 704,
1502 736, 0, 480, 481, 512, 513, 0,
e2f0ba97 1503 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1504 { DRM_MODE("704x480", DRM_MODE_TYPE_DRIVER, 24624, 704, 705, 768,
1505 800, 0, 480, 481, 512, 513, 0,
e2f0ba97 1506 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1507 { DRM_MODE("704x576", DRM_MODE_TYPE_DRIVER, 29232, 704, 705, 768,
1508 800, 0, 576, 577, 608, 609, 0,
e2f0ba97 1509 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1510 { DRM_MODE("720x350", DRM_MODE_TYPE_DRIVER, 18751, 720, 721, 784,
1511 816, 0, 350, 351, 382, 383, 0,
e2f0ba97 1512 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1513 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 21199, 720, 721, 784,
1514 816, 0, 400, 401, 432, 433, 0,
e2f0ba97 1515 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1516 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 25116, 720, 721, 784,
1517 816, 0, 480, 481, 512, 513, 0,
e2f0ba97 1518 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1519 { DRM_MODE("720x540", DRM_MODE_TYPE_DRIVER, 28054, 720, 721, 784,
1520 816, 0, 540, 541, 572, 573, 0,
e2f0ba97 1521 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1522 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 29816, 720, 721, 784,
1523 816, 0, 576, 577, 608, 609, 0,
e2f0ba97 1524 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1525 { DRM_MODE("768x576", DRM_MODE_TYPE_DRIVER, 31570, 768, 769, 832,
1526 864, 0, 576, 577, 608, 609, 0,
e2f0ba97 1527 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1528 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 34030, 800, 801, 864,
1529 896, 0, 600, 601, 632, 633, 0,
e2f0ba97 1530 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1531 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 36581, 832, 833, 896,
1532 928, 0, 624, 625, 656, 657, 0,
e2f0ba97 1533 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1534 { DRM_MODE("920x766", DRM_MODE_TYPE_DRIVER, 48707, 920, 921, 984,
1535 1016, 0, 766, 767, 798, 799, 0,
e2f0ba97 1536 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1537 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 53827, 1024, 1025, 1088,
1538 1120, 0, 768, 769, 800, 801, 0,
e2f0ba97 1539 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
7026d4ac
ZW
1540 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 87265, 1280, 1281, 1344,
1541 1376, 0, 1024, 1025, 1056, 1057, 0,
e2f0ba97
JB
1542 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1543};
1544
1545static void intel_sdvo_get_tv_modes(struct drm_connector *connector)
1546{
df0e9248 1547 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
7026d4ac 1548 struct intel_sdvo_sdtv_resolution_request tv_res;
ce6feabd
ZY
1549 uint32_t reply = 0, format_map = 0;
1550 int i;
e2f0ba97
JB
1551
1552 /* Read the list of supported input resolutions for the selected TV
1553 * format.
1554 */
40039750 1555 format_map = 1 << intel_sdvo->tv_format_index;
ce6feabd 1556 memcpy(&tv_res, &format_map,
32aad86f 1557 min(sizeof(format_map), sizeof(struct intel_sdvo_sdtv_resolution_request)));
ce6feabd 1558
32aad86f
CW
1559 if (!intel_sdvo_set_target_output(intel_sdvo, intel_sdvo->attached_output))
1560 return;
ce6feabd 1561
32aad86f 1562 BUILD_BUG_ON(sizeof(tv_res) != 3);
e957d772
CW
1563 if (!intel_sdvo_write_cmd(intel_sdvo,
1564 SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT,
32aad86f
CW
1565 &tv_res, sizeof(tv_res)))
1566 return;
1567 if (!intel_sdvo_read_response(intel_sdvo, &reply, 3))
e2f0ba97
JB
1568 return;
1569
1570 for (i = 0; i < ARRAY_SIZE(sdvo_tv_modes); i++)
7026d4ac
ZW
1571 if (reply & (1 << i)) {
1572 struct drm_display_mode *nmode;
1573 nmode = drm_mode_duplicate(connector->dev,
32aad86f 1574 &sdvo_tv_modes[i]);
7026d4ac
ZW
1575 if (nmode)
1576 drm_mode_probed_add(connector, nmode);
1577 }
e2f0ba97
JB
1578}
1579
7086c87f
ML
1580static void intel_sdvo_get_lvds_modes(struct drm_connector *connector)
1581{
df0e9248 1582 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
7086c87f 1583 struct drm_i915_private *dev_priv = connector->dev->dev_private;
12682a97 1584 struct drm_display_mode *newmode;
7086c87f
ML
1585
1586 /*
1587 * Attempt to get the mode list from DDC.
1588 * Assume that the preferred modes are
1589 * arranged in priority order.
1590 */
f899fc64 1591 intel_ddc_get_modes(connector, intel_sdvo->i2c);
7086c87f 1592 if (list_empty(&connector->probed_modes) == false)
12682a97 1593 goto end;
7086c87f
ML
1594
1595 /* Fetch modes from VBT */
1596 if (dev_priv->sdvo_lvds_vbt_mode != NULL) {
7086c87f
ML
1597 newmode = drm_mode_duplicate(connector->dev,
1598 dev_priv->sdvo_lvds_vbt_mode);
1599 if (newmode != NULL) {
1600 /* Guarantee the mode is preferred */
1601 newmode->type = (DRM_MODE_TYPE_PREFERRED |
1602 DRM_MODE_TYPE_DRIVER);
1603 drm_mode_probed_add(connector, newmode);
1604 }
1605 }
12682a97 1606
1607end:
1608 list_for_each_entry(newmode, &connector->probed_modes, head) {
1609 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
ea5b213a 1610 intel_sdvo->sdvo_lvds_fixed_mode =
12682a97 1611 drm_mode_duplicate(connector->dev, newmode);
6c9547ff
CW
1612
1613 drm_mode_set_crtcinfo(intel_sdvo->sdvo_lvds_fixed_mode,
1614 0);
1615
8545423a 1616 intel_sdvo->is_lvds = true;
12682a97 1617 break;
1618 }
1619 }
1620
7086c87f
ML
1621}
1622
e2f0ba97
JB
1623static int intel_sdvo_get_modes(struct drm_connector *connector)
1624{
615fb93f 1625 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
e2f0ba97 1626
615fb93f 1627 if (IS_TV(intel_sdvo_connector))
e2f0ba97 1628 intel_sdvo_get_tv_modes(connector);
615fb93f 1629 else if (IS_LVDS(intel_sdvo_connector))
7086c87f 1630 intel_sdvo_get_lvds_modes(connector);
e2f0ba97
JB
1631 else
1632 intel_sdvo_get_ddc_modes(connector);
1633
32aad86f 1634 return !list_empty(&connector->probed_modes);
79e53945
JB
1635}
1636
fcc8d672
CW
1637static void
1638intel_sdvo_destroy_enhance_property(struct drm_connector *connector)
b9219c5e 1639{
615fb93f 1640 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
b9219c5e
ZY
1641 struct drm_device *dev = connector->dev;
1642
c5521706
CW
1643 if (intel_sdvo_connector->left)
1644 drm_property_destroy(dev, intel_sdvo_connector->left);
1645 if (intel_sdvo_connector->right)
1646 drm_property_destroy(dev, intel_sdvo_connector->right);
1647 if (intel_sdvo_connector->top)
1648 drm_property_destroy(dev, intel_sdvo_connector->top);
1649 if (intel_sdvo_connector->bottom)
1650 drm_property_destroy(dev, intel_sdvo_connector->bottom);
1651 if (intel_sdvo_connector->hpos)
1652 drm_property_destroy(dev, intel_sdvo_connector->hpos);
1653 if (intel_sdvo_connector->vpos)
1654 drm_property_destroy(dev, intel_sdvo_connector->vpos);
1655 if (intel_sdvo_connector->saturation)
1656 drm_property_destroy(dev, intel_sdvo_connector->saturation);
1657 if (intel_sdvo_connector->contrast)
1658 drm_property_destroy(dev, intel_sdvo_connector->contrast);
1659 if (intel_sdvo_connector->hue)
1660 drm_property_destroy(dev, intel_sdvo_connector->hue);
1661 if (intel_sdvo_connector->sharpness)
1662 drm_property_destroy(dev, intel_sdvo_connector->sharpness);
1663 if (intel_sdvo_connector->flicker_filter)
1664 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter);
1665 if (intel_sdvo_connector->flicker_filter_2d)
1666 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter_2d);
1667 if (intel_sdvo_connector->flicker_filter_adaptive)
1668 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter_adaptive);
1669 if (intel_sdvo_connector->tv_luma_filter)
1670 drm_property_destroy(dev, intel_sdvo_connector->tv_luma_filter);
1671 if (intel_sdvo_connector->tv_chroma_filter)
1672 drm_property_destroy(dev, intel_sdvo_connector->tv_chroma_filter);
e044218a
CW
1673 if (intel_sdvo_connector->dot_crawl)
1674 drm_property_destroy(dev, intel_sdvo_connector->dot_crawl);
c5521706
CW
1675 if (intel_sdvo_connector->brightness)
1676 drm_property_destroy(dev, intel_sdvo_connector->brightness);
b9219c5e
ZY
1677}
1678
79e53945
JB
1679static void intel_sdvo_destroy(struct drm_connector *connector)
1680{
615fb93f 1681 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
79e53945 1682
c5521706 1683 if (intel_sdvo_connector->tv_format)
ce6feabd 1684 drm_property_destroy(connector->dev,
c5521706 1685 intel_sdvo_connector->tv_format);
b9219c5e 1686
d2a82a6f 1687 intel_sdvo_destroy_enhance_property(connector);
79e53945
JB
1688 drm_sysfs_connector_remove(connector);
1689 drm_connector_cleanup(connector);
d2a82a6f 1690 kfree(connector);
79e53945
JB
1691}
1692
1aad7ac0
CW
1693static bool intel_sdvo_detect_hdmi_audio(struct drm_connector *connector)
1694{
1695 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
1696 struct edid *edid;
1697 bool has_audio = false;
1698
1699 if (!intel_sdvo->is_hdmi)
1700 return false;
1701
1702 edid = intel_sdvo_get_edid(connector);
1703 if (edid != NULL && edid->input & DRM_EDID_INPUT_DIGITAL)
1704 has_audio = drm_detect_monitor_audio(edid);
1705
1706 return has_audio;
1707}
1708
ce6feabd
ZY
1709static int
1710intel_sdvo_set_property(struct drm_connector *connector,
1711 struct drm_property *property,
1712 uint64_t val)
1713{
df0e9248 1714 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
615fb93f 1715 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
b9219c5e 1716 uint16_t temp_value;
32aad86f
CW
1717 uint8_t cmd;
1718 int ret;
ce6feabd
ZY
1719
1720 ret = drm_connector_property_set_value(connector, property, val);
32aad86f
CW
1721 if (ret)
1722 return ret;
ce6feabd 1723
7f36e7ed 1724 if (property == intel_sdvo_connector->force_audio_property) {
1aad7ac0
CW
1725 int i = val;
1726 bool has_audio;
1727
1728 if (i == intel_sdvo_connector->force_audio)
7f36e7ed
CW
1729 return 0;
1730
1aad7ac0 1731 intel_sdvo_connector->force_audio = i;
7f36e7ed 1732
1aad7ac0
CW
1733 if (i == 0)
1734 has_audio = intel_sdvo_detect_hdmi_audio(connector);
1735 else
1736 has_audio = i > 0;
1737
1738 if (has_audio == intel_sdvo->has_hdmi_audio)
7f36e7ed
CW
1739 return 0;
1740
1aad7ac0 1741 intel_sdvo->has_hdmi_audio = has_audio;
7f36e7ed
CW
1742 goto done;
1743 }
1744
c5521706
CW
1745#define CHECK_PROPERTY(name, NAME) \
1746 if (intel_sdvo_connector->name == property) { \
1747 if (intel_sdvo_connector->cur_##name == temp_value) return 0; \
1748 if (intel_sdvo_connector->max_##name < temp_value) return -EINVAL; \
1749 cmd = SDVO_CMD_SET_##NAME; \
1750 intel_sdvo_connector->cur_##name = temp_value; \
1751 goto set_value; \
1752 }
1753
1754 if (property == intel_sdvo_connector->tv_format) {
32aad86f
CW
1755 if (val >= TV_FORMAT_NUM)
1756 return -EINVAL;
1757
40039750 1758 if (intel_sdvo->tv_format_index ==
615fb93f 1759 intel_sdvo_connector->tv_format_supported[val])
32aad86f 1760 return 0;
ce6feabd 1761
40039750 1762 intel_sdvo->tv_format_index = intel_sdvo_connector->tv_format_supported[val];
c5521706 1763 goto done;
32aad86f 1764 } else if (IS_TV_OR_LVDS(intel_sdvo_connector)) {
b9219c5e 1765 temp_value = val;
c5521706 1766 if (intel_sdvo_connector->left == property) {
b9219c5e 1767 drm_connector_property_set_value(connector,
c5521706 1768 intel_sdvo_connector->right, val);
615fb93f 1769 if (intel_sdvo_connector->left_margin == temp_value)
32aad86f 1770 return 0;
b9219c5e 1771
615fb93f
CW
1772 intel_sdvo_connector->left_margin = temp_value;
1773 intel_sdvo_connector->right_margin = temp_value;
1774 temp_value = intel_sdvo_connector->max_hscan -
c5521706 1775 intel_sdvo_connector->left_margin;
b9219c5e 1776 cmd = SDVO_CMD_SET_OVERSCAN_H;
c5521706
CW
1777 goto set_value;
1778 } else if (intel_sdvo_connector->right == property) {
b9219c5e 1779 drm_connector_property_set_value(connector,
c5521706 1780 intel_sdvo_connector->left, val);
615fb93f 1781 if (intel_sdvo_connector->right_margin == temp_value)
32aad86f 1782 return 0;
b9219c5e 1783
615fb93f
CW
1784 intel_sdvo_connector->left_margin = temp_value;
1785 intel_sdvo_connector->right_margin = temp_value;
1786 temp_value = intel_sdvo_connector->max_hscan -
1787 intel_sdvo_connector->left_margin;
b9219c5e 1788 cmd = SDVO_CMD_SET_OVERSCAN_H;
c5521706
CW
1789 goto set_value;
1790 } else if (intel_sdvo_connector->top == property) {
b9219c5e 1791 drm_connector_property_set_value(connector,
c5521706 1792 intel_sdvo_connector->bottom, val);
615fb93f 1793 if (intel_sdvo_connector->top_margin == temp_value)
32aad86f 1794 return 0;
b9219c5e 1795
615fb93f
CW
1796 intel_sdvo_connector->top_margin = temp_value;
1797 intel_sdvo_connector->bottom_margin = temp_value;
1798 temp_value = intel_sdvo_connector->max_vscan -
c5521706 1799 intel_sdvo_connector->top_margin;
b9219c5e 1800 cmd = SDVO_CMD_SET_OVERSCAN_V;
c5521706
CW
1801 goto set_value;
1802 } else if (intel_sdvo_connector->bottom == property) {
b9219c5e 1803 drm_connector_property_set_value(connector,
c5521706 1804 intel_sdvo_connector->top, val);
615fb93f 1805 if (intel_sdvo_connector->bottom_margin == temp_value)
32aad86f
CW
1806 return 0;
1807
615fb93f
CW
1808 intel_sdvo_connector->top_margin = temp_value;
1809 intel_sdvo_connector->bottom_margin = temp_value;
1810 temp_value = intel_sdvo_connector->max_vscan -
c5521706 1811 intel_sdvo_connector->top_margin;
b9219c5e 1812 cmd = SDVO_CMD_SET_OVERSCAN_V;
c5521706
CW
1813 goto set_value;
1814 }
1815 CHECK_PROPERTY(hpos, HPOS)
1816 CHECK_PROPERTY(vpos, VPOS)
1817 CHECK_PROPERTY(saturation, SATURATION)
1818 CHECK_PROPERTY(contrast, CONTRAST)
1819 CHECK_PROPERTY(hue, HUE)
1820 CHECK_PROPERTY(brightness, BRIGHTNESS)
1821 CHECK_PROPERTY(sharpness, SHARPNESS)
1822 CHECK_PROPERTY(flicker_filter, FLICKER_FILTER)
1823 CHECK_PROPERTY(flicker_filter_2d, FLICKER_FILTER_2D)
1824 CHECK_PROPERTY(flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE)
1825 CHECK_PROPERTY(tv_chroma_filter, TV_CHROMA_FILTER)
1826 CHECK_PROPERTY(tv_luma_filter, TV_LUMA_FILTER)
e044218a 1827 CHECK_PROPERTY(dot_crawl, DOT_CRAWL)
c5521706 1828 }
b9219c5e 1829
c5521706 1830 return -EINVAL; /* unknown property */
b9219c5e 1831
c5521706
CW
1832set_value:
1833 if (!intel_sdvo_set_value(intel_sdvo, cmd, &temp_value, 2))
1834 return -EIO;
b9219c5e 1835
b9219c5e 1836
c5521706 1837done:
df0e9248
CW
1838 if (intel_sdvo->base.base.crtc) {
1839 struct drm_crtc *crtc = intel_sdvo->base.base.crtc;
ce6feabd 1840 drm_crtc_helper_set_mode(crtc, &crtc->mode, crtc->x,
c5521706
CW
1841 crtc->y, crtc->fb);
1842 }
1843
32aad86f 1844 return 0;
c5521706 1845#undef CHECK_PROPERTY
ce6feabd
ZY
1846}
1847
79e53945
JB
1848static const struct drm_encoder_helper_funcs intel_sdvo_helper_funcs = {
1849 .dpms = intel_sdvo_dpms,
1850 .mode_fixup = intel_sdvo_mode_fixup,
1851 .prepare = intel_encoder_prepare,
1852 .mode_set = intel_sdvo_mode_set,
1853 .commit = intel_encoder_commit,
1854};
1855
1856static const struct drm_connector_funcs intel_sdvo_connector_funcs = {
c9fb15f6 1857 .dpms = drm_helper_connector_dpms,
79e53945
JB
1858 .detect = intel_sdvo_detect,
1859 .fill_modes = drm_helper_probe_single_connector_modes,
ce6feabd 1860 .set_property = intel_sdvo_set_property,
79e53945
JB
1861 .destroy = intel_sdvo_destroy,
1862};
1863
1864static const struct drm_connector_helper_funcs intel_sdvo_connector_helper_funcs = {
1865 .get_modes = intel_sdvo_get_modes,
1866 .mode_valid = intel_sdvo_mode_valid,
df0e9248 1867 .best_encoder = intel_best_encoder,
79e53945
JB
1868};
1869
b358d0a6 1870static void intel_sdvo_enc_destroy(struct drm_encoder *encoder)
79e53945 1871{
890f3359 1872 struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder);
d2a82a6f 1873
ea5b213a 1874 if (intel_sdvo->sdvo_lvds_fixed_mode != NULL)
d2a82a6f 1875 drm_mode_destroy(encoder->dev,
ea5b213a 1876 intel_sdvo->sdvo_lvds_fixed_mode);
d2a82a6f 1877
e957d772 1878 i2c_del_adapter(&intel_sdvo->ddc);
ea5b213a 1879 intel_encoder_destroy(encoder);
79e53945
JB
1880}
1881
1882static const struct drm_encoder_funcs intel_sdvo_enc_funcs = {
1883 .destroy = intel_sdvo_enc_destroy,
1884};
1885
b66d8424
CW
1886static void
1887intel_sdvo_guess_ddc_bus(struct intel_sdvo *sdvo)
1888{
1889 uint16_t mask = 0;
1890 unsigned int num_bits;
1891
1892 /* Make a mask of outputs less than or equal to our own priority in the
1893 * list.
1894 */
1895 switch (sdvo->controlled_output) {
1896 case SDVO_OUTPUT_LVDS1:
1897 mask |= SDVO_OUTPUT_LVDS1;
1898 case SDVO_OUTPUT_LVDS0:
1899 mask |= SDVO_OUTPUT_LVDS0;
1900 case SDVO_OUTPUT_TMDS1:
1901 mask |= SDVO_OUTPUT_TMDS1;
1902 case SDVO_OUTPUT_TMDS0:
1903 mask |= SDVO_OUTPUT_TMDS0;
1904 case SDVO_OUTPUT_RGB1:
1905 mask |= SDVO_OUTPUT_RGB1;
1906 case SDVO_OUTPUT_RGB0:
1907 mask |= SDVO_OUTPUT_RGB0;
1908 break;
1909 }
1910
1911 /* Count bits to find what number we are in the priority list. */
1912 mask &= sdvo->caps.output_flags;
1913 num_bits = hweight16(mask);
1914 /* If more than 3 outputs, default to DDC bus 3 for now. */
1915 if (num_bits > 3)
1916 num_bits = 3;
1917
1918 /* Corresponds to SDVO_CONTROL_BUS_DDCx */
1919 sdvo->ddc_bus = 1 << num_bits;
1920}
79e53945 1921
e2f0ba97
JB
1922/**
1923 * Choose the appropriate DDC bus for control bus switch command for this
1924 * SDVO output based on the controlled output.
1925 *
1926 * DDC bus number assignment is in a priority order of RGB outputs, then TMDS
1927 * outputs, then LVDS outputs.
1928 */
1929static void
b1083333 1930intel_sdvo_select_ddc_bus(struct drm_i915_private *dev_priv,
ea5b213a 1931 struct intel_sdvo *sdvo, u32 reg)
e2f0ba97 1932{
b1083333 1933 struct sdvo_device_mapping *mapping;
e2f0ba97 1934
b1083333
AJ
1935 if (IS_SDVOB(reg))
1936 mapping = &(dev_priv->sdvo_mappings[0]);
1937 else
1938 mapping = &(dev_priv->sdvo_mappings[1]);
e2f0ba97 1939
b66d8424
CW
1940 if (mapping->initialized)
1941 sdvo->ddc_bus = 1 << ((mapping->ddc_pin & 0xf0) >> 4);
1942 else
1943 intel_sdvo_guess_ddc_bus(sdvo);
e2f0ba97
JB
1944}
1945
e957d772
CW
1946static void
1947intel_sdvo_select_i2c_bus(struct drm_i915_private *dev_priv,
1948 struct intel_sdvo *sdvo, u32 reg)
1949{
1950 struct sdvo_device_mapping *mapping;
1951 u8 pin, speed;
1952
1953 if (IS_SDVOB(reg))
1954 mapping = &dev_priv->sdvo_mappings[0];
1955 else
1956 mapping = &dev_priv->sdvo_mappings[1];
1957
1958 pin = GMBUS_PORT_DPB;
1959 speed = GMBUS_RATE_1MHZ >> 8;
1960 if (mapping->initialized) {
1961 pin = mapping->i2c_pin;
1962 speed = mapping->i2c_speed;
1963 }
1964
63abf3ed
CW
1965 if (pin < GMBUS_NUM_PORTS) {
1966 sdvo->i2c = &dev_priv->gmbus[pin].adapter;
1967 intel_gmbus_set_speed(sdvo->i2c, speed);
1968 intel_gmbus_force_bit(sdvo->i2c, true);
1969 } else
1970 sdvo->i2c = &dev_priv->gmbus[GMBUS_PORT_DPB].adapter;
e957d772
CW
1971}
1972
e2f0ba97 1973static bool
e27d8538 1974intel_sdvo_is_hdmi_connector(struct intel_sdvo *intel_sdvo, int device)
e2f0ba97 1975{
97aaf910 1976 return intel_sdvo_check_supp_encode(intel_sdvo);
e2f0ba97
JB
1977}
1978
714605e4 1979static u8
c751ce4f 1980intel_sdvo_get_slave_addr(struct drm_device *dev, int sdvo_reg)
714605e4 1981{
1982 struct drm_i915_private *dev_priv = dev->dev_private;
1983 struct sdvo_device_mapping *my_mapping, *other_mapping;
1984
461ed3ca 1985 if (IS_SDVOB(sdvo_reg)) {
714605e4 1986 my_mapping = &dev_priv->sdvo_mappings[0];
1987 other_mapping = &dev_priv->sdvo_mappings[1];
1988 } else {
1989 my_mapping = &dev_priv->sdvo_mappings[1];
1990 other_mapping = &dev_priv->sdvo_mappings[0];
1991 }
1992
1993 /* If the BIOS described our SDVO device, take advantage of it. */
1994 if (my_mapping->slave_addr)
1995 return my_mapping->slave_addr;
1996
1997 /* If the BIOS only described a different SDVO device, use the
1998 * address that it isn't using.
1999 */
2000 if (other_mapping->slave_addr) {
2001 if (other_mapping->slave_addr == 0x70)
2002 return 0x72;
2003 else
2004 return 0x70;
2005 }
2006
2007 /* No SDVO device info is found for another DVO port,
2008 * so use mapping assumption we had before BIOS parsing.
2009 */
461ed3ca 2010 if (IS_SDVOB(sdvo_reg))
714605e4 2011 return 0x70;
2012 else
2013 return 0x72;
2014}
2015
14571b4c 2016static void
df0e9248
CW
2017intel_sdvo_connector_init(struct intel_sdvo_connector *connector,
2018 struct intel_sdvo *encoder)
14571b4c 2019{
df0e9248
CW
2020 drm_connector_init(encoder->base.base.dev,
2021 &connector->base.base,
2022 &intel_sdvo_connector_funcs,
2023 connector->base.base.connector_type);
6070a4a9 2024
df0e9248
CW
2025 drm_connector_helper_add(&connector->base.base,
2026 &intel_sdvo_connector_helper_funcs);
14571b4c 2027
df0e9248
CW
2028 connector->base.base.interlace_allowed = 0;
2029 connector->base.base.doublescan_allowed = 0;
2030 connector->base.base.display_info.subpixel_order = SubPixelHorizontalRGB;
14571b4c 2031
df0e9248
CW
2032 intel_connector_attach_encoder(&connector->base, &encoder->base);
2033 drm_sysfs_connector_add(&connector->base.base);
14571b4c 2034}
6070a4a9 2035
7f36e7ed
CW
2036static void
2037intel_sdvo_add_hdmi_properties(struct intel_sdvo_connector *connector)
2038{
2039 struct drm_device *dev = connector->base.base.dev;
2040
2041 connector->force_audio_property =
2042 drm_property_create(dev, DRM_MODE_PROP_RANGE, "force_audio", 2);
2043 if (connector->force_audio_property) {
2044 connector->force_audio_property->values[0] = -1;
2045 connector->force_audio_property->values[1] = 1;
2046 drm_connector_attach_property(&connector->base.base,
2047 connector->force_audio_property, 0);
2048 }
2049}
2050
fb7a46f3 2051static bool
ea5b213a 2052intel_sdvo_dvi_init(struct intel_sdvo *intel_sdvo, int device)
fb7a46f3 2053{
4ef69c7a 2054 struct drm_encoder *encoder = &intel_sdvo->base.base;
14571b4c
ZW
2055 struct drm_connector *connector;
2056 struct intel_connector *intel_connector;
615fb93f 2057 struct intel_sdvo_connector *intel_sdvo_connector;
14571b4c 2058
615fb93f
CW
2059 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2060 if (!intel_sdvo_connector)
14571b4c
ZW
2061 return false;
2062
14571b4c 2063 if (device == 0) {
ea5b213a 2064 intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS0;
615fb93f 2065 intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS0;
14571b4c 2066 } else if (device == 1) {
ea5b213a 2067 intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS1;
615fb93f 2068 intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS1;
14571b4c
ZW
2069 }
2070
615fb93f 2071 intel_connector = &intel_sdvo_connector->base;
14571b4c 2072 connector = &intel_connector->base;
eb1f8e4f 2073 connector->polled = DRM_CONNECTOR_POLL_CONNECT | DRM_CONNECTOR_POLL_DISCONNECT;
14571b4c
ZW
2074 encoder->encoder_type = DRM_MODE_ENCODER_TMDS;
2075 connector->connector_type = DRM_MODE_CONNECTOR_DVID;
2076
e27d8538 2077 if (intel_sdvo_is_hdmi_connector(intel_sdvo, device)) {
14571b4c 2078 connector->connector_type = DRM_MODE_CONNECTOR_HDMIA;
e27d8538 2079 intel_sdvo->is_hdmi = true;
14571b4c 2080 }
ea5b213a
CW
2081 intel_sdvo->base.clone_mask = ((1 << INTEL_SDVO_NON_TV_CLONE_BIT) |
2082 (1 << INTEL_ANALOG_CLONE_BIT));
14571b4c 2083
df0e9248 2084 intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo);
f797d221
CW
2085 if (intel_sdvo->is_hdmi)
2086 intel_sdvo_add_hdmi_properties(intel_sdvo_connector);
14571b4c
ZW
2087
2088 return true;
2089}
2090
2091static bool
ea5b213a 2092intel_sdvo_tv_init(struct intel_sdvo *intel_sdvo, int type)
14571b4c 2093{
4ef69c7a
CW
2094 struct drm_encoder *encoder = &intel_sdvo->base.base;
2095 struct drm_connector *connector;
2096 struct intel_connector *intel_connector;
2097 struct intel_sdvo_connector *intel_sdvo_connector;
14571b4c 2098
615fb93f
CW
2099 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2100 if (!intel_sdvo_connector)
2101 return false;
14571b4c 2102
615fb93f 2103 intel_connector = &intel_sdvo_connector->base;
4ef69c7a
CW
2104 connector = &intel_connector->base;
2105 encoder->encoder_type = DRM_MODE_ENCODER_TVDAC;
2106 connector->connector_type = DRM_MODE_CONNECTOR_SVIDEO;
14571b4c 2107
4ef69c7a
CW
2108 intel_sdvo->controlled_output |= type;
2109 intel_sdvo_connector->output_flag = type;
14571b4c 2110
4ef69c7a
CW
2111 intel_sdvo->is_tv = true;
2112 intel_sdvo->base.needs_tv_clock = true;
2113 intel_sdvo->base.clone_mask = 1 << INTEL_SDVO_TV_CLONE_BIT;
14571b4c 2114
df0e9248 2115 intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo);
14571b4c 2116
4ef69c7a 2117 if (!intel_sdvo_tv_create_property(intel_sdvo, intel_sdvo_connector, type))
32aad86f 2118 goto err;
14571b4c 2119
4ef69c7a 2120 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
32aad86f 2121 goto err;
14571b4c 2122
4ef69c7a 2123 return true;
32aad86f
CW
2124
2125err:
123d5c01 2126 intel_sdvo_destroy(connector);
32aad86f 2127 return false;
14571b4c
ZW
2128}
2129
2130static bool
ea5b213a 2131intel_sdvo_analog_init(struct intel_sdvo *intel_sdvo, int device)
14571b4c 2132{
4ef69c7a
CW
2133 struct drm_encoder *encoder = &intel_sdvo->base.base;
2134 struct drm_connector *connector;
2135 struct intel_connector *intel_connector;
2136 struct intel_sdvo_connector *intel_sdvo_connector;
14571b4c 2137
615fb93f
CW
2138 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2139 if (!intel_sdvo_connector)
2140 return false;
14571b4c 2141
615fb93f 2142 intel_connector = &intel_sdvo_connector->base;
4ef69c7a 2143 connector = &intel_connector->base;
eb1f8e4f 2144 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
4ef69c7a
CW
2145 encoder->encoder_type = DRM_MODE_ENCODER_DAC;
2146 connector->connector_type = DRM_MODE_CONNECTOR_VGA;
2147
2148 if (device == 0) {
2149 intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB0;
2150 intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB0;
2151 } else if (device == 1) {
2152 intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB1;
2153 intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB1;
2154 }
2155
2156 intel_sdvo->base.clone_mask = ((1 << INTEL_SDVO_NON_TV_CLONE_BIT) |
ea5b213a 2157 (1 << INTEL_ANALOG_CLONE_BIT));
14571b4c 2158
df0e9248
CW
2159 intel_sdvo_connector_init(intel_sdvo_connector,
2160 intel_sdvo);
4ef69c7a 2161 return true;
14571b4c
ZW
2162}
2163
2164static bool
ea5b213a 2165intel_sdvo_lvds_init(struct intel_sdvo *intel_sdvo, int device)
14571b4c 2166{
4ef69c7a
CW
2167 struct drm_encoder *encoder = &intel_sdvo->base.base;
2168 struct drm_connector *connector;
2169 struct intel_connector *intel_connector;
2170 struct intel_sdvo_connector *intel_sdvo_connector;
14571b4c 2171
615fb93f
CW
2172 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2173 if (!intel_sdvo_connector)
2174 return false;
14571b4c 2175
615fb93f
CW
2176 intel_connector = &intel_sdvo_connector->base;
2177 connector = &intel_connector->base;
4ef69c7a
CW
2178 encoder->encoder_type = DRM_MODE_ENCODER_LVDS;
2179 connector->connector_type = DRM_MODE_CONNECTOR_LVDS;
2180
2181 if (device == 0) {
2182 intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS0;
2183 intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS0;
2184 } else if (device == 1) {
2185 intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS1;
2186 intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS1;
2187 }
2188
2189 intel_sdvo->base.clone_mask = ((1 << INTEL_ANALOG_CLONE_BIT) |
ea5b213a 2190 (1 << INTEL_SDVO_LVDS_CLONE_BIT));
14571b4c 2191
df0e9248 2192 intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo);
4ef69c7a 2193 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
32aad86f
CW
2194 goto err;
2195
2196 return true;
2197
2198err:
123d5c01 2199 intel_sdvo_destroy(connector);
32aad86f 2200 return false;
14571b4c
ZW
2201}
2202
2203static bool
ea5b213a 2204intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, uint16_t flags)
14571b4c 2205{
ea5b213a
CW
2206 intel_sdvo->is_tv = false;
2207 intel_sdvo->base.needs_tv_clock = false;
2208 intel_sdvo->is_lvds = false;
fb7a46f3 2209
14571b4c 2210 /* SDVO requires XXX1 function may not exist unless it has XXX0 function.*/
fb7a46f3 2211
14571b4c 2212 if (flags & SDVO_OUTPUT_TMDS0)
ea5b213a 2213 if (!intel_sdvo_dvi_init(intel_sdvo, 0))
14571b4c
ZW
2214 return false;
2215
2216 if ((flags & SDVO_TMDS_MASK) == SDVO_TMDS_MASK)
ea5b213a 2217 if (!intel_sdvo_dvi_init(intel_sdvo, 1))
14571b4c
ZW
2218 return false;
2219
2220 /* TV has no XXX1 function block */
a1f4b7ff 2221 if (flags & SDVO_OUTPUT_SVID0)
ea5b213a 2222 if (!intel_sdvo_tv_init(intel_sdvo, SDVO_OUTPUT_SVID0))
14571b4c
ZW
2223 return false;
2224
2225 if (flags & SDVO_OUTPUT_CVBS0)
ea5b213a 2226 if (!intel_sdvo_tv_init(intel_sdvo, SDVO_OUTPUT_CVBS0))
14571b4c 2227 return false;
fb7a46f3 2228
14571b4c 2229 if (flags & SDVO_OUTPUT_RGB0)
ea5b213a 2230 if (!intel_sdvo_analog_init(intel_sdvo, 0))
14571b4c
ZW
2231 return false;
2232
2233 if ((flags & SDVO_RGB_MASK) == SDVO_RGB_MASK)
ea5b213a 2234 if (!intel_sdvo_analog_init(intel_sdvo, 1))
14571b4c
ZW
2235 return false;
2236
2237 if (flags & SDVO_OUTPUT_LVDS0)
ea5b213a 2238 if (!intel_sdvo_lvds_init(intel_sdvo, 0))
14571b4c
ZW
2239 return false;
2240
2241 if ((flags & SDVO_LVDS_MASK) == SDVO_LVDS_MASK)
ea5b213a 2242 if (!intel_sdvo_lvds_init(intel_sdvo, 1))
14571b4c 2243 return false;
fb7a46f3 2244
14571b4c 2245 if ((flags & SDVO_OUTPUT_MASK) == 0) {
fb7a46f3 2246 unsigned char bytes[2];
2247
ea5b213a
CW
2248 intel_sdvo->controlled_output = 0;
2249 memcpy(bytes, &intel_sdvo->caps.output_flags, 2);
51c8b407 2250 DRM_DEBUG_KMS("%s: Unknown SDVO output type (0x%02x%02x)\n",
ea5b213a 2251 SDVO_NAME(intel_sdvo),
51c8b407 2252 bytes[0], bytes[1]);
14571b4c 2253 return false;
fb7a46f3 2254 }
ea5b213a 2255 intel_sdvo->base.crtc_mask = (1 << 0) | (1 << 1);
fb7a46f3 2256
14571b4c 2257 return true;
fb7a46f3 2258}
2259
32aad86f
CW
2260static bool intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
2261 struct intel_sdvo_connector *intel_sdvo_connector,
2262 int type)
ce6feabd 2263{
4ef69c7a 2264 struct drm_device *dev = intel_sdvo->base.base.dev;
ce6feabd
ZY
2265 struct intel_sdvo_tv_format format;
2266 uint32_t format_map, i;
ce6feabd 2267
32aad86f
CW
2268 if (!intel_sdvo_set_target_output(intel_sdvo, type))
2269 return false;
ce6feabd 2270
32aad86f
CW
2271 if (!intel_sdvo_get_value(intel_sdvo,
2272 SDVO_CMD_GET_SUPPORTED_TV_FORMATS,
2273 &format, sizeof(format)))
2274 return false;
ce6feabd 2275
32aad86f 2276 memcpy(&format_map, &format, min(sizeof(format_map), sizeof(format)));
ce6feabd
ZY
2277
2278 if (format_map == 0)
32aad86f 2279 return false;
ce6feabd 2280
615fb93f 2281 intel_sdvo_connector->format_supported_num = 0;
ce6feabd 2282 for (i = 0 ; i < TV_FORMAT_NUM; i++)
40039750
CW
2283 if (format_map & (1 << i))
2284 intel_sdvo_connector->tv_format_supported[intel_sdvo_connector->format_supported_num++] = i;
ce6feabd
ZY
2285
2286
c5521706 2287 intel_sdvo_connector->tv_format =
32aad86f
CW
2288 drm_property_create(dev, DRM_MODE_PROP_ENUM,
2289 "mode", intel_sdvo_connector->format_supported_num);
c5521706 2290 if (!intel_sdvo_connector->tv_format)
fcc8d672 2291 return false;
ce6feabd 2292
615fb93f 2293 for (i = 0; i < intel_sdvo_connector->format_supported_num; i++)
ce6feabd 2294 drm_property_add_enum(
c5521706 2295 intel_sdvo_connector->tv_format, i,
40039750 2296 i, tv_format_names[intel_sdvo_connector->tv_format_supported[i]]);
ce6feabd 2297
40039750 2298 intel_sdvo->tv_format_index = intel_sdvo_connector->tv_format_supported[0];
32aad86f 2299 drm_connector_attach_property(&intel_sdvo_connector->base.base,
c5521706 2300 intel_sdvo_connector->tv_format, 0);
32aad86f 2301 return true;
ce6feabd
ZY
2302
2303}
2304
c5521706
CW
2305#define ENHANCEMENT(name, NAME) do { \
2306 if (enhancements.name) { \
2307 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_MAX_##NAME, &data_value, 4) || \
2308 !intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_##NAME, &response, 2)) \
2309 return false; \
2310 intel_sdvo_connector->max_##name = data_value[0]; \
2311 intel_sdvo_connector->cur_##name = response; \
2312 intel_sdvo_connector->name = \
2313 drm_property_create(dev, DRM_MODE_PROP_RANGE, #name, 2); \
2314 if (!intel_sdvo_connector->name) return false; \
2315 intel_sdvo_connector->name->values[0] = 0; \
2316 intel_sdvo_connector->name->values[1] = data_value[0]; \
2317 drm_connector_attach_property(connector, \
2318 intel_sdvo_connector->name, \
2319 intel_sdvo_connector->cur_##name); \
2320 DRM_DEBUG_KMS(#name ": max %d, default %d, current %d\n", \
2321 data_value[0], data_value[1], response); \
2322 } \
2323} while(0)
2324
2325static bool
2326intel_sdvo_create_enhance_property_tv(struct intel_sdvo *intel_sdvo,
2327 struct intel_sdvo_connector *intel_sdvo_connector,
2328 struct intel_sdvo_enhancements_reply enhancements)
b9219c5e 2329{
4ef69c7a 2330 struct drm_device *dev = intel_sdvo->base.base.dev;
32aad86f 2331 struct drm_connector *connector = &intel_sdvo_connector->base.base;
b9219c5e
ZY
2332 uint16_t response, data_value[2];
2333
c5521706
CW
2334 /* when horizontal overscan is supported, Add the left/right property */
2335 if (enhancements.overscan_h) {
2336 if (!intel_sdvo_get_value(intel_sdvo,
2337 SDVO_CMD_GET_MAX_OVERSCAN_H,
2338 &data_value, 4))
2339 return false;
32aad86f 2340
c5521706
CW
2341 if (!intel_sdvo_get_value(intel_sdvo,
2342 SDVO_CMD_GET_OVERSCAN_H,
2343 &response, 2))
2344 return false;
fcc8d672 2345
c5521706
CW
2346 intel_sdvo_connector->max_hscan = data_value[0];
2347 intel_sdvo_connector->left_margin = data_value[0] - response;
2348 intel_sdvo_connector->right_margin = intel_sdvo_connector->left_margin;
2349 intel_sdvo_connector->left =
2350 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2351 "left_margin", 2);
2352 if (!intel_sdvo_connector->left)
2353 return false;
fcc8d672 2354
c5521706
CW
2355 intel_sdvo_connector->left->values[0] = 0;
2356 intel_sdvo_connector->left->values[1] = data_value[0];
2357 drm_connector_attach_property(connector,
2358 intel_sdvo_connector->left,
2359 intel_sdvo_connector->left_margin);
fcc8d672 2360
c5521706
CW
2361 intel_sdvo_connector->right =
2362 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2363 "right_margin", 2);
2364 if (!intel_sdvo_connector->right)
2365 return false;
32aad86f 2366
c5521706
CW
2367 intel_sdvo_connector->right->values[0] = 0;
2368 intel_sdvo_connector->right->values[1] = data_value[0];
2369 drm_connector_attach_property(connector,
2370 intel_sdvo_connector->right,
2371 intel_sdvo_connector->right_margin);
2372 DRM_DEBUG_KMS("h_overscan: max %d, "
2373 "default %d, current %d\n",
2374 data_value[0], data_value[1], response);
2375 }
32aad86f 2376
c5521706
CW
2377 if (enhancements.overscan_v) {
2378 if (!intel_sdvo_get_value(intel_sdvo,
2379 SDVO_CMD_GET_MAX_OVERSCAN_V,
2380 &data_value, 4))
2381 return false;
fcc8d672 2382
c5521706
CW
2383 if (!intel_sdvo_get_value(intel_sdvo,
2384 SDVO_CMD_GET_OVERSCAN_V,
2385 &response, 2))
2386 return false;
32aad86f 2387
c5521706
CW
2388 intel_sdvo_connector->max_vscan = data_value[0];
2389 intel_sdvo_connector->top_margin = data_value[0] - response;
2390 intel_sdvo_connector->bottom_margin = intel_sdvo_connector->top_margin;
2391 intel_sdvo_connector->top =
2392 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2393 "top_margin", 2);
2394 if (!intel_sdvo_connector->top)
2395 return false;
32aad86f 2396
c5521706
CW
2397 intel_sdvo_connector->top->values[0] = 0;
2398 intel_sdvo_connector->top->values[1] = data_value[0];
2399 drm_connector_attach_property(connector,
2400 intel_sdvo_connector->top,
2401 intel_sdvo_connector->top_margin);
fcc8d672 2402
c5521706
CW
2403 intel_sdvo_connector->bottom =
2404 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2405 "bottom_margin", 2);
2406 if (!intel_sdvo_connector->bottom)
2407 return false;
32aad86f 2408
c5521706
CW
2409 intel_sdvo_connector->bottom->values[0] = 0;
2410 intel_sdvo_connector->bottom->values[1] = data_value[0];
2411 drm_connector_attach_property(connector,
2412 intel_sdvo_connector->bottom,
2413 intel_sdvo_connector->bottom_margin);
2414 DRM_DEBUG_KMS("v_overscan: max %d, "
2415 "default %d, current %d\n",
2416 data_value[0], data_value[1], response);
2417 }
32aad86f 2418
c5521706
CW
2419 ENHANCEMENT(hpos, HPOS);
2420 ENHANCEMENT(vpos, VPOS);
2421 ENHANCEMENT(saturation, SATURATION);
2422 ENHANCEMENT(contrast, CONTRAST);
2423 ENHANCEMENT(hue, HUE);
2424 ENHANCEMENT(sharpness, SHARPNESS);
2425 ENHANCEMENT(brightness, BRIGHTNESS);
2426 ENHANCEMENT(flicker_filter, FLICKER_FILTER);
2427 ENHANCEMENT(flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE);
2428 ENHANCEMENT(flicker_filter_2d, FLICKER_FILTER_2D);
2429 ENHANCEMENT(tv_chroma_filter, TV_CHROMA_FILTER);
2430 ENHANCEMENT(tv_luma_filter, TV_LUMA_FILTER);
fcc8d672 2431
e044218a
CW
2432 if (enhancements.dot_crawl) {
2433 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_DOT_CRAWL, &response, 2))
2434 return false;
2435
2436 intel_sdvo_connector->max_dot_crawl = 1;
2437 intel_sdvo_connector->cur_dot_crawl = response & 0x1;
2438 intel_sdvo_connector->dot_crawl =
2439 drm_property_create(dev, DRM_MODE_PROP_RANGE, "dot_crawl", 2);
2440 if (!intel_sdvo_connector->dot_crawl)
2441 return false;
2442
2443 intel_sdvo_connector->dot_crawl->values[0] = 0;
2444 intel_sdvo_connector->dot_crawl->values[1] = 1;
2445 drm_connector_attach_property(connector,
2446 intel_sdvo_connector->dot_crawl,
2447 intel_sdvo_connector->cur_dot_crawl);
2448 DRM_DEBUG_KMS("dot crawl: current %d\n", response);
2449 }
2450
c5521706
CW
2451 return true;
2452}
32aad86f 2453
c5521706
CW
2454static bool
2455intel_sdvo_create_enhance_property_lvds(struct intel_sdvo *intel_sdvo,
2456 struct intel_sdvo_connector *intel_sdvo_connector,
2457 struct intel_sdvo_enhancements_reply enhancements)
2458{
4ef69c7a 2459 struct drm_device *dev = intel_sdvo->base.base.dev;
c5521706
CW
2460 struct drm_connector *connector = &intel_sdvo_connector->base.base;
2461 uint16_t response, data_value[2];
32aad86f 2462
c5521706 2463 ENHANCEMENT(brightness, BRIGHTNESS);
fcc8d672 2464
c5521706
CW
2465 return true;
2466}
2467#undef ENHANCEMENT
32aad86f 2468
c5521706
CW
2469static bool intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
2470 struct intel_sdvo_connector *intel_sdvo_connector)
2471{
2472 union {
2473 struct intel_sdvo_enhancements_reply reply;
2474 uint16_t response;
2475 } enhancements;
32aad86f 2476
cf9a2f3a
CW
2477 enhancements.response = 0;
2478 intel_sdvo_get_value(intel_sdvo,
2479 SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS,
2480 &enhancements, sizeof(enhancements));
c5521706
CW
2481 if (enhancements.response == 0) {
2482 DRM_DEBUG_KMS("No enhancement is supported\n");
2483 return true;
b9219c5e 2484 }
32aad86f 2485
c5521706
CW
2486 if (IS_TV(intel_sdvo_connector))
2487 return intel_sdvo_create_enhance_property_tv(intel_sdvo, intel_sdvo_connector, enhancements.reply);
2488 else if(IS_LVDS(intel_sdvo_connector))
2489 return intel_sdvo_create_enhance_property_lvds(intel_sdvo, intel_sdvo_connector, enhancements.reply);
2490 else
2491 return true;
e957d772
CW
2492}
2493
2494static int intel_sdvo_ddc_proxy_xfer(struct i2c_adapter *adapter,
2495 struct i2c_msg *msgs,
2496 int num)
2497{
2498 struct intel_sdvo *sdvo = adapter->algo_data;
fcc8d672 2499
e957d772
CW
2500 if (!intel_sdvo_set_control_bus_switch(sdvo, sdvo->ddc_bus))
2501 return -EIO;
2502
2503 return sdvo->i2c->algo->master_xfer(sdvo->i2c, msgs, num);
2504}
2505
2506static u32 intel_sdvo_ddc_proxy_func(struct i2c_adapter *adapter)
2507{
2508 struct intel_sdvo *sdvo = adapter->algo_data;
2509 return sdvo->i2c->algo->functionality(sdvo->i2c);
2510}
2511
2512static const struct i2c_algorithm intel_sdvo_ddc_proxy = {
2513 .master_xfer = intel_sdvo_ddc_proxy_xfer,
2514 .functionality = intel_sdvo_ddc_proxy_func
2515};
2516
2517static bool
2518intel_sdvo_init_ddc_proxy(struct intel_sdvo *sdvo,
2519 struct drm_device *dev)
2520{
2521 sdvo->ddc.owner = THIS_MODULE;
2522 sdvo->ddc.class = I2C_CLASS_DDC;
2523 snprintf(sdvo->ddc.name, I2C_NAME_SIZE, "SDVO DDC proxy");
2524 sdvo->ddc.dev.parent = &dev->pdev->dev;
2525 sdvo->ddc.algo_data = sdvo;
2526 sdvo->ddc.algo = &intel_sdvo_ddc_proxy;
2527
2528 return i2c_add_adapter(&sdvo->ddc) == 0;
b9219c5e
ZY
2529}
2530
c751ce4f 2531bool intel_sdvo_init(struct drm_device *dev, int sdvo_reg)
79e53945 2532{
b01f2c3a 2533 struct drm_i915_private *dev_priv = dev->dev_private;
21d40d37 2534 struct intel_encoder *intel_encoder;
ea5b213a 2535 struct intel_sdvo *intel_sdvo;
79e53945 2536 int i;
79e53945 2537
ea5b213a
CW
2538 intel_sdvo = kzalloc(sizeof(struct intel_sdvo), GFP_KERNEL);
2539 if (!intel_sdvo)
7d57382e 2540 return false;
79e53945 2541
e957d772
CW
2542 if (!intel_sdvo_init_ddc_proxy(intel_sdvo, dev)) {
2543 kfree(intel_sdvo);
2544 return false;
2545 }
2546
ea5b213a 2547 intel_sdvo->sdvo_reg = sdvo_reg;
308cd3a2 2548
ea5b213a 2549 intel_encoder = &intel_sdvo->base;
21d40d37 2550 intel_encoder->type = INTEL_OUTPUT_SDVO;
373a3cf7
CW
2551 /* encoder type will be decided later */
2552 drm_encoder_init(dev, &intel_encoder->base, &intel_sdvo_enc_funcs, 0);
79e53945 2553
e957d772
CW
2554 intel_sdvo->slave_addr = intel_sdvo_get_slave_addr(dev, sdvo_reg) >> 1;
2555 intel_sdvo_select_i2c_bus(dev_priv, intel_sdvo, sdvo_reg);
79e53945 2556
79e53945
JB
2557 /* Read the regs to test if we can talk to the device */
2558 for (i = 0; i < 0x40; i++) {
f899fc64
CW
2559 u8 byte;
2560
2561 if (!intel_sdvo_read_byte(intel_sdvo, i, &byte)) {
8a4c47f3 2562 DRM_DEBUG_KMS("No SDVO device found on SDVO%c\n",
461ed3ca 2563 IS_SDVOB(sdvo_reg) ? 'B' : 'C');
f899fc64 2564 goto err;
79e53945
JB
2565 }
2566 }
2567
f899fc64 2568 if (IS_SDVOB(sdvo_reg))
b01f2c3a 2569 dev_priv->hotplug_supported_mask |= SDVOB_HOTPLUG_INT_STATUS;
f899fc64 2570 else
b01f2c3a 2571 dev_priv->hotplug_supported_mask |= SDVOC_HOTPLUG_INT_STATUS;
619ac3b7 2572
4ef69c7a 2573 drm_encoder_helper_add(&intel_encoder->base, &intel_sdvo_helper_funcs);
14571b4c 2574
af901ca1 2575 /* In default case sdvo lvds is false */
32aad86f 2576 if (!intel_sdvo_get_capabilities(intel_sdvo, &intel_sdvo->caps))
f899fc64 2577 goto err;
79e53945 2578
ea5b213a
CW
2579 if (intel_sdvo_output_setup(intel_sdvo,
2580 intel_sdvo->caps.output_flags) != true) {
51c8b407 2581 DRM_DEBUG_KMS("SDVO output failed to setup on SDVO%c\n",
461ed3ca 2582 IS_SDVOB(sdvo_reg) ? 'B' : 'C');
f899fc64 2583 goto err;
79e53945
JB
2584 }
2585
ea5b213a 2586 intel_sdvo_select_ddc_bus(dev_priv, intel_sdvo, sdvo_reg);
e2f0ba97 2587
79e53945 2588 /* Set the input timing to the screen. Assume always input 0. */
32aad86f 2589 if (!intel_sdvo_set_target_input(intel_sdvo))
f899fc64 2590 goto err;
79e53945 2591
32aad86f
CW
2592 if (!intel_sdvo_get_input_pixel_clock_range(intel_sdvo,
2593 &intel_sdvo->pixel_clock_min,
2594 &intel_sdvo->pixel_clock_max))
f899fc64 2595 goto err;
79e53945 2596
8a4c47f3 2597 DRM_DEBUG_KMS("%s device VID/DID: %02X:%02X.%02X, "
342dc382 2598 "clock range %dMHz - %dMHz, "
2599 "input 1: %c, input 2: %c, "
2600 "output 1: %c, output 2: %c\n",
ea5b213a
CW
2601 SDVO_NAME(intel_sdvo),
2602 intel_sdvo->caps.vendor_id, intel_sdvo->caps.device_id,
2603 intel_sdvo->caps.device_rev_id,
2604 intel_sdvo->pixel_clock_min / 1000,
2605 intel_sdvo->pixel_clock_max / 1000,
2606 (intel_sdvo->caps.sdvo_inputs_mask & 0x1) ? 'Y' : 'N',
2607 (intel_sdvo->caps.sdvo_inputs_mask & 0x2) ? 'Y' : 'N',
342dc382 2608 /* check currently supported outputs */
ea5b213a 2609 intel_sdvo->caps.output_flags &
79e53945 2610 (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_RGB0) ? 'Y' : 'N',
ea5b213a 2611 intel_sdvo->caps.output_flags &
79e53945 2612 (SDVO_OUTPUT_TMDS1 | SDVO_OUTPUT_RGB1) ? 'Y' : 'N');
7d57382e 2613 return true;
79e53945 2614
f899fc64 2615err:
373a3cf7 2616 drm_encoder_cleanup(&intel_encoder->base);
e957d772 2617 i2c_del_adapter(&intel_sdvo->ddc);
ea5b213a 2618 kfree(intel_sdvo);
79e53945 2619
7d57382e 2620 return false;
79e53945 2621}
This page took 0.40892 seconds and 5 git commands to generate.