blob: db6b6d4b8fae7a94843a26b9853ea746df7a10fc [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/delay.h>
31#include "drmP.h"
32#include "drm.h"
33#include "drm_crtc.h"
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +080034#include "drm_edid.h"
Chris Wilsonea5b2132010-08-04 13:50:23 +010035#include "intel_drv.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "i915_drm.h"
37#include "i915_drv.h"
38#include "intel_sdvo_regs.h"
39
Zhenyu Wang14571b42010-03-30 14:06:33 +080040#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)
49#define IS_LVDS(c) (c->output_flag & SDVO_LVDS_MASK)
Chris Wilson32aad862010-08-04 13:50:25 +010050#define IS_TV_OR_LVDS(c) (c->output_flag & (SDVO_TV_MASK | SDVO_LVDS_MASK))
Zhenyu Wang14571b42010-03-30 14:06:33 +080051
Jesse Barnes79e53942008-11-07 14:24:08 -080052
Chris Wilson2e88e402010-08-07 11:01:27 +010053static const char *tv_format_names[] = {
Zhao Yakuice6feab2009-08-24 13:50:26 +080054 "NTSC_M" , "NTSC_J" , "NTSC_443",
55 "PAL_B" , "PAL_D" , "PAL_G" ,
56 "PAL_H" , "PAL_I" , "PAL_M" ,
57 "PAL_N" , "PAL_NC" , "PAL_60" ,
58 "SECAM_B" , "SECAM_D" , "SECAM_G" ,
59 "SECAM_K" , "SECAM_K1", "SECAM_L" ,
60 "SECAM_60"
61};
62
63#define TV_FORMAT_NUM (sizeof(tv_format_names) / sizeof(*tv_format_names))
64
Chris Wilsonea5b2132010-08-04 13:50:23 +010065struct intel_sdvo {
66 struct intel_encoder base;
67
Keith Packardf9c10a92009-05-30 12:16:25 -070068 u8 slave_addr;
Jesse Barnese2f0ba92009-02-02 15:11:52 -080069
70 /* Register for the SDVO device: SDVOB or SDVOC */
Eric Anholtc751ce42010-03-25 11:48:48 -070071 int sdvo_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -080072
Jesse Barnese2f0ba92009-02-02 15:11:52 -080073 /* Active outputs controlled by this SDVO output */
74 uint16_t controlled_output;
Jesse Barnes79e53942008-11-07 14:24:08 -080075
Jesse Barnese2f0ba92009-02-02 15:11:52 -080076 /*
77 * Capabilities of the SDVO device returned by
78 * i830_sdvo_get_capabilities()
79 */
Jesse Barnes79e53942008-11-07 14:24:08 -080080 struct intel_sdvo_caps caps;
Jesse Barnese2f0ba92009-02-02 15:11:52 -080081
82 /* Pixel clock limitations reported by the SDVO device, in kHz */
Jesse Barnes79e53942008-11-07 14:24:08 -080083 int pixel_clock_min, pixel_clock_max;
84
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +080085 /*
86 * For multiple function SDVO device,
87 * this is for current attached outputs.
88 */
89 uint16_t attached_output;
90
Jesse Barnese2f0ba92009-02-02 15:11:52 -080091 /**
92 * This is set if we're going to treat the device as TV-out.
93 *
94 * While we have these nice friendly flags for output types that ought
95 * to decide this for us, the S-Video output on our HDMI+S-Video card
96 * shows up as RGB1 (VGA).
97 */
98 bool is_tv;
99
Zhao Yakuice6feab2009-08-24 13:50:26 +0800100 /* This is for current tv format name */
Chris Wilson40039752010-08-04 13:50:26 +0100101 int tv_format_index;
Zhao Yakuice6feab2009-08-24 13:50:26 +0800102
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800103 /**
104 * This is set if we treat the device as HDMI, instead of DVI.
105 */
106 bool is_hdmi;
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800107
Ma Ling7086c872009-05-13 11:20:06 +0800108 /**
109 * This is set if we detect output of sdvo device as LVDS.
110 */
111 bool is_lvds;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800112
113 /**
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800114 * This is sdvo flags for input timing.
115 */
116 uint8_t sdvo_flags;
117
118 /**
119 * This is sdvo fixed pannel mode pointer
120 */
121 struct drm_display_mode *sdvo_lvds_fixed_mode;
122
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800123 /*
124 * supported encoding mode, used to determine whether HDMI is
125 * supported
126 */
127 struct intel_sdvo_encode encode;
128
Eric Anholtc751ce42010-03-25 11:48:48 -0700129 /* DDC bus used by this SDVO encoder */
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800130 uint8_t ddc_bus;
131
Keith Packard57cdaf92009-09-04 13:07:54 +0800132 /* Mac mini hack -- use the same DDC as the analog connector */
133 struct i2c_adapter *analog_ddc_bus;
134
Zhenyu Wang14571b42010-03-30 14:06:33 +0800135};
136
137struct intel_sdvo_connector {
Chris Wilson615fb932010-08-04 13:50:24 +0100138 struct intel_connector base;
139
Zhenyu Wang14571b42010-03-30 14:06:33 +0800140 /* Mark the type of connector */
141 uint16_t output_flag;
142
143 /* This contains all current supported TV format */
Chris Wilson40039752010-08-04 13:50:26 +0100144 u8 tv_format_supported[TV_FORMAT_NUM];
Zhenyu Wang14571b42010-03-30 14:06:33 +0800145 int format_supported_num;
Chris Wilsonc5521702010-08-04 13:50:28 +0100146 struct drm_property *tv_format;
Zhenyu Wang14571b42010-03-30 14:06:33 +0800147
Zhao Yakuib9219c52009-09-10 15:45:46 +0800148 /* add the property for the SDVO-TV */
Chris Wilsonc5521702010-08-04 13:50:28 +0100149 struct drm_property *left;
150 struct drm_property *right;
151 struct drm_property *top;
152 struct drm_property *bottom;
153 struct drm_property *hpos;
154 struct drm_property *vpos;
155 struct drm_property *contrast;
156 struct drm_property *saturation;
157 struct drm_property *hue;
158 struct drm_property *sharpness;
159 struct drm_property *flicker_filter;
160 struct drm_property *flicker_filter_adaptive;
161 struct drm_property *flicker_filter_2d;
162 struct drm_property *tv_chroma_filter;
163 struct drm_property *tv_luma_filter;
Chris Wilsone0442182010-08-04 13:50:29 +0100164 struct drm_property *dot_crawl;
Zhao Yakuib9219c52009-09-10 15:45:46 +0800165
166 /* add the property for the SDVO-TV/LVDS */
Chris Wilsonc5521702010-08-04 13:50:28 +0100167 struct drm_property *brightness;
Zhao Yakuib9219c52009-09-10 15:45:46 +0800168
169 /* Add variable to record current setting for the above property */
170 u32 left_margin, right_margin, top_margin, bottom_margin;
Chris Wilsonc5521702010-08-04 13:50:28 +0100171
Zhao Yakuib9219c52009-09-10 15:45:46 +0800172 /* this is to get the range of margin.*/
173 u32 max_hscan, max_vscan;
174 u32 max_hpos, cur_hpos;
175 u32 max_vpos, cur_vpos;
176 u32 cur_brightness, max_brightness;
177 u32 cur_contrast, max_contrast;
178 u32 cur_saturation, max_saturation;
179 u32 cur_hue, max_hue;
Chris Wilsonc5521702010-08-04 13:50:28 +0100180 u32 cur_sharpness, max_sharpness;
181 u32 cur_flicker_filter, max_flicker_filter;
182 u32 cur_flicker_filter_adaptive, max_flicker_filter_adaptive;
183 u32 cur_flicker_filter_2d, max_flicker_filter_2d;
184 u32 cur_tv_chroma_filter, max_tv_chroma_filter;
185 u32 cur_tv_luma_filter, max_tv_luma_filter;
Chris Wilsone0442182010-08-04 13:50:29 +0100186 u32 cur_dot_crawl, max_dot_crawl;
Jesse Barnes79e53942008-11-07 14:24:08 -0800187};
188
Chris Wilsonea5b2132010-08-04 13:50:23 +0100189static struct intel_sdvo *enc_to_intel_sdvo(struct drm_encoder *encoder)
190{
191 return container_of(enc_to_intel_encoder(encoder), struct intel_sdvo, base);
192}
193
Chris Wilson615fb932010-08-04 13:50:24 +0100194static struct intel_sdvo_connector *to_intel_sdvo_connector(struct drm_connector *connector)
195{
196 return container_of(to_intel_connector(connector), struct intel_sdvo_connector, base);
197}
198
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +0800199static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +0100200intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, uint16_t flags);
Chris Wilson32aad862010-08-04 13:50:25 +0100201static bool
202intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
203 struct intel_sdvo_connector *intel_sdvo_connector,
204 int type);
205static bool
206intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
207 struct intel_sdvo_connector *intel_sdvo_connector);
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +0800208
Jesse Barnes79e53942008-11-07 14:24:08 -0800209/**
210 * Writes the SDVOB or SDVOC with the given value, but always writes both
211 * SDVOB and SDVOC to work around apparent hardware issues (according to
212 * comments in the BIOS).
213 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100214static void intel_sdvo_write_sdvox(struct intel_sdvo *intel_sdvo, u32 val)
Jesse Barnes79e53942008-11-07 14:24:08 -0800215{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100216 struct drm_device *dev = intel_sdvo->base.enc.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800217 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800218 u32 bval = val, cval = val;
219 int i;
220
Chris Wilsonea5b2132010-08-04 13:50:23 +0100221 if (intel_sdvo->sdvo_reg == PCH_SDVOB) {
222 I915_WRITE(intel_sdvo->sdvo_reg, val);
223 I915_READ(intel_sdvo->sdvo_reg);
Zhao Yakui461ed3c2010-03-30 15:11:33 +0800224 return;
225 }
226
Chris Wilsonea5b2132010-08-04 13:50:23 +0100227 if (intel_sdvo->sdvo_reg == SDVOB) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800228 cval = I915_READ(SDVOC);
229 } else {
230 bval = I915_READ(SDVOB);
231 }
232 /*
233 * Write the registers twice for luck. Sometimes,
234 * writing them only once doesn't appear to 'stick'.
235 * The BIOS does this too. Yay, magic
236 */
237 for (i = 0; i < 2; i++)
238 {
239 I915_WRITE(SDVOB, bval);
240 I915_READ(SDVOB);
241 I915_WRITE(SDVOC, cval);
242 I915_READ(SDVOC);
243 }
244}
245
Chris Wilson32aad862010-08-04 13:50:25 +0100246static bool intel_sdvo_read_byte(struct intel_sdvo *intel_sdvo, u8 addr, u8 *ch)
Jesse Barnes79e53942008-11-07 14:24:08 -0800247{
Chris Wilson32aad862010-08-04 13:50:25 +0100248 u8 out_buf[2] = { addr, 0 };
Jesse Barnes79e53942008-11-07 14:24:08 -0800249 u8 buf[2];
Jesse Barnes79e53942008-11-07 14:24:08 -0800250 struct i2c_msg msgs[] = {
251 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100252 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800253 .flags = 0,
254 .len = 1,
255 .buf = out_buf,
256 },
257 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100258 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800259 .flags = I2C_M_RD,
260 .len = 1,
261 .buf = buf,
262 }
263 };
Chris Wilson32aad862010-08-04 13:50:25 +0100264 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800265
Chris Wilsonea5b2132010-08-04 13:50:23 +0100266 if ((ret = i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 2)) == 2)
Jesse Barnes79e53942008-11-07 14:24:08 -0800267 {
268 *ch = buf[0];
269 return true;
270 }
271
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800272 DRM_DEBUG_KMS("i2c transfer returned %d\n", ret);
Jesse Barnes79e53942008-11-07 14:24:08 -0800273 return false;
274}
275
Chris Wilson32aad862010-08-04 13:50:25 +0100276static bool intel_sdvo_write_byte(struct intel_sdvo *intel_sdvo, int addr, u8 ch)
Jesse Barnes79e53942008-11-07 14:24:08 -0800277{
Chris Wilson32aad862010-08-04 13:50:25 +0100278 u8 out_buf[2] = { addr, ch };
Jesse Barnes79e53942008-11-07 14:24:08 -0800279 struct i2c_msg msgs[] = {
280 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100281 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800282 .flags = 0,
283 .len = 2,
284 .buf = out_buf,
285 }
286 };
287
Chris Wilson32aad862010-08-04 13:50:25 +0100288 return i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 1) == 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800289}
290
291#define SDVO_CMD_NAME_ENTRY(cmd) {cmd, #cmd}
292/** Mapping of command numbers to names, for debug output */
Tobias Klauser005568b2009-02-09 22:02:42 +0100293static const struct _sdvo_cmd_name {
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800294 u8 cmd;
Chris Wilson2e88e402010-08-07 11:01:27 +0100295 const char *name;
Jesse Barnes79e53942008-11-07 14:24:08 -0800296} sdvo_cmd_names[] = {
297 SDVO_CMD_NAME_ENTRY(SDVO_CMD_RESET),
298 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_DEVICE_CAPS),
299 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FIRMWARE_REV),
300 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TRAINED_INPUTS),
301 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ACTIVE_OUTPUTS),
302 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ACTIVE_OUTPUTS),
303 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_IN_OUT_MAP),
304 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_IN_OUT_MAP),
305 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ATTACHED_DISPLAYS),
306 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HOT_PLUG_SUPPORT),
307 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ACTIVE_HOT_PLUG),
308 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ACTIVE_HOT_PLUG),
309 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INTERRUPT_EVENT_SOURCE),
310 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TARGET_INPUT),
311 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TARGET_OUTPUT),
312 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_TIMINGS_PART1),
313 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_TIMINGS_PART2),
314 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART1),
315 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART2),
316 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART1),
317 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OUTPUT_TIMINGS_PART1),
318 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OUTPUT_TIMINGS_PART2),
319 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_TIMINGS_PART1),
320 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_TIMINGS_PART2),
321 SDVO_CMD_NAME_ENTRY(SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING),
322 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1),
323 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2),
324 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE),
325 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_PIXEL_CLOCK_RANGE),
326 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_CLOCK_RATE_MULTS),
327 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_CLOCK_RATE_MULT),
328 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CLOCK_RATE_MULT),
329 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_TV_FORMATS),
330 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_FORMAT),
331 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_FORMAT),
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800332 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_POWER_STATES),
333 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_POWER_STATE),
334 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ENCODER_POWER_STATE),
335 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_DISPLAY_POWER_STATE),
Jesse Barnes79e53942008-11-07 14:24:08 -0800336 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CONTROL_BUS_SWITCH),
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800337 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT),
338 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SCALED_HDTV_RESOLUTION_SUPPORT),
339 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS),
Chris Wilsonc5521702010-08-04 13:50:28 +0100340
Zhao Yakuib9219c52009-09-10 15:45:46 +0800341 /* Add the op code for SDVO enhancements */
Chris Wilsonc5521702010-08-04 13:50:28 +0100342 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_HPOS),
343 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HPOS),
344 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HPOS),
345 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_VPOS),
346 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_VPOS),
347 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_VPOS),
Zhao Yakuib9219c52009-09-10 15:45:46 +0800348 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_SATURATION),
349 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SATURATION),
350 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_SATURATION),
351 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_HUE),
352 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HUE),
353 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HUE),
354 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_CONTRAST),
355 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_CONTRAST),
356 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CONTRAST),
357 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_BRIGHTNESS),
358 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_BRIGHTNESS),
359 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_BRIGHTNESS),
360 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_OVERSCAN_H),
361 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OVERSCAN_H),
362 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OVERSCAN_H),
363 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_OVERSCAN_V),
364 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OVERSCAN_V),
365 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OVERSCAN_V),
Chris Wilsonc5521702010-08-04 13:50:28 +0100366 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER),
367 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER),
368 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER),
369 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER_ADAPTIVE),
370 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER_ADAPTIVE),
371 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER_ADAPTIVE),
372 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER_2D),
373 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER_2D),
374 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER_2D),
375 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_SHARPNESS),
376 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SHARPNESS),
377 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_SHARPNESS),
378 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_DOT_CRAWL),
379 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_DOT_CRAWL),
380 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_TV_CHROMA_FILTER),
381 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_CHROMA_FILTER),
382 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_CHROMA_FILTER),
383 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_TV_LUMA_FILTER),
384 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_LUMA_FILTER),
385 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_LUMA_FILTER),
386
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800387 /* HDMI op code */
388 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPP_ENCODE),
389 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ENCODE),
390 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ENCODE),
391 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_PIXEL_REPLI),
392 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PIXEL_REPLI),
393 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_COLORIMETRY_CAP),
394 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_COLORIMETRY),
395 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_COLORIMETRY),
396 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_AUDIO_ENCRYPT_PREFER),
397 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_AUDIO_STAT),
398 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_AUDIO_STAT),
399 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_INDEX),
400 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_INDEX),
401 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_INFO),
402 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_AV_SPLIT),
403 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_AV_SPLIT),
404 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_TXRATE),
405 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_TXRATE),
406 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_DATA),
407 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_DATA),
Jesse Barnes79e53942008-11-07 14:24:08 -0800408};
409
Zhao Yakui461ed3c2010-03-30 15:11:33 +0800410#define IS_SDVOB(reg) (reg == SDVOB || reg == PCH_SDVOB)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100411#define SDVO_NAME(svdo) (IS_SDVOB((svdo)->sdvo_reg) ? "SDVOB" : "SDVOC")
Jesse Barnes79e53942008-11-07 14:24:08 -0800412
Chris Wilsonea5b2132010-08-04 13:50:23 +0100413static void intel_sdvo_debug_write(struct intel_sdvo *intel_sdvo, u8 cmd,
Chris Wilson32aad862010-08-04 13:50:25 +0100414 const void *args, int args_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800415{
Jesse Barnes79e53942008-11-07 14:24:08 -0800416 int i;
417
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800418 DRM_DEBUG_KMS("%s: W: %02X ",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100419 SDVO_NAME(intel_sdvo), cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -0800420 for (i = 0; i < args_len; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800421 DRM_LOG_KMS("%02X ", ((u8 *)args)[i]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800422 for (; i < 8; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800423 DRM_LOG_KMS(" ");
Kulikov Vasiliy04ad3272010-06-28 15:54:56 +0400424 for (i = 0; i < ARRAY_SIZE(sdvo_cmd_names); i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800425 if (cmd == sdvo_cmd_names[i].cmd) {
yakui_zhao342dc382009-06-02 14:12:00 +0800426 DRM_LOG_KMS("(%s)", sdvo_cmd_names[i].name);
Jesse Barnes79e53942008-11-07 14:24:08 -0800427 break;
428 }
429 }
Kulikov Vasiliy04ad3272010-06-28 15:54:56 +0400430 if (i == ARRAY_SIZE(sdvo_cmd_names))
yakui_zhao342dc382009-06-02 14:12:00 +0800431 DRM_LOG_KMS("(%02X)", cmd);
432 DRM_LOG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800433}
Jesse Barnes79e53942008-11-07 14:24:08 -0800434
Chris Wilson32aad862010-08-04 13:50:25 +0100435static bool intel_sdvo_write_cmd(struct intel_sdvo *intel_sdvo, u8 cmd,
436 const void *args, int args_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800437{
438 int i;
439
Chris Wilsonea5b2132010-08-04 13:50:23 +0100440 intel_sdvo_debug_write(intel_sdvo, cmd, args, args_len);
Jesse Barnes79e53942008-11-07 14:24:08 -0800441
442 for (i = 0; i < args_len; i++) {
Chris Wilson32aad862010-08-04 13:50:25 +0100443 if (!intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_ARG_0 - i,
444 ((u8*)args)[i]))
445 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800446 }
447
Chris Wilson32aad862010-08-04 13:50:25 +0100448 return intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_OPCODE, cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -0800449}
450
Jesse Barnes79e53942008-11-07 14:24:08 -0800451static const char *cmd_status_names[] = {
452 "Power on",
453 "Success",
454 "Not supported",
455 "Invalid arg",
456 "Pending",
457 "Target not specified",
458 "Scaling not supported"
459};
460
Chris Wilsonea5b2132010-08-04 13:50:23 +0100461static void intel_sdvo_debug_response(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800462 void *response, int response_len,
463 u8 status)
464{
Zhenyu Wang33b52962009-03-24 14:02:40 +0800465 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -0800466
Chris Wilsonea5b2132010-08-04 13:50:23 +0100467 DRM_DEBUG_KMS("%s: R: ", SDVO_NAME(intel_sdvo));
Jesse Barnes79e53942008-11-07 14:24:08 -0800468 for (i = 0; i < response_len; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800469 DRM_LOG_KMS("%02X ", ((u8 *)response)[i]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800470 for (; i < 8; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800471 DRM_LOG_KMS(" ");
Jesse Barnes79e53942008-11-07 14:24:08 -0800472 if (status <= SDVO_CMD_STATUS_SCALING_NOT_SUPP)
yakui_zhao342dc382009-06-02 14:12:00 +0800473 DRM_LOG_KMS("(%s)", cmd_status_names[status]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800474 else
yakui_zhao342dc382009-06-02 14:12:00 +0800475 DRM_LOG_KMS("(??? %d)", status);
476 DRM_LOG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800477}
Jesse Barnes79e53942008-11-07 14:24:08 -0800478
Chris Wilson32aad862010-08-04 13:50:25 +0100479static bool intel_sdvo_read_response(struct intel_sdvo *intel_sdvo,
480 void *response, int response_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800481{
482 int i;
483 u8 status;
484 u8 retry = 50;
485
486 while (retry--) {
487 /* Read the command response */
488 for (i = 0; i < response_len; i++) {
Chris Wilson32aad862010-08-04 13:50:25 +0100489 if (!intel_sdvo_read_byte(intel_sdvo,
490 SDVO_I2C_RETURN_0 + i,
491 &((u8 *)response)[i]))
492 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800493 }
494
495 /* read the return status */
Chris Wilson32aad862010-08-04 13:50:25 +0100496 if (!intel_sdvo_read_byte(intel_sdvo, SDVO_I2C_CMD_STATUS,
497 &status))
498 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800499
Chris Wilsonea5b2132010-08-04 13:50:23 +0100500 intel_sdvo_debug_response(intel_sdvo, response, response_len,
Jesse Barnes79e53942008-11-07 14:24:08 -0800501 status);
502 if (status != SDVO_CMD_STATUS_PENDING)
Chris Wilson32aad862010-08-04 13:50:25 +0100503 break;
Jesse Barnes79e53942008-11-07 14:24:08 -0800504
505 mdelay(50);
506 }
507
Chris Wilson32aad862010-08-04 13:50:25 +0100508 return status == SDVO_CMD_STATUS_SUCCESS;
Jesse Barnes79e53942008-11-07 14:24:08 -0800509}
510
Hannes Ederb358d0a2008-12-18 21:18:47 +0100511static int intel_sdvo_get_pixel_multiplier(struct drm_display_mode *mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800512{
513 if (mode->clock >= 100000)
514 return 1;
515 else if (mode->clock >= 50000)
516 return 2;
517 else
518 return 4;
519}
520
521/**
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800522 * Try to read the response after issuie the DDC switch command. But it
523 * is noted that we must do the action of reading response and issuing DDC
524 * switch command in one I2C transaction. Otherwise when we try to start
525 * another I2C transaction after issuing the DDC bus switch, it will be
526 * switched to the internal SDVO register.
Jesse Barnes79e53942008-11-07 14:24:08 -0800527 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100528static void intel_sdvo_set_control_bus_switch(struct intel_sdvo *intel_sdvo,
Hannes Ederb358d0a2008-12-18 21:18:47 +0100529 u8 target)
Jesse Barnes79e53942008-11-07 14:24:08 -0800530{
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800531 u8 out_buf[2], cmd_buf[2], ret_value[2], ret;
532 struct i2c_msg msgs[] = {
533 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100534 .addr = intel_sdvo->slave_addr >> 1,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800535 .flags = 0,
536 .len = 2,
537 .buf = out_buf,
538 },
539 /* the following two are to read the response */
540 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100541 .addr = intel_sdvo->slave_addr >> 1,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800542 .flags = 0,
543 .len = 1,
544 .buf = cmd_buf,
545 },
546 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100547 .addr = intel_sdvo->slave_addr >> 1,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800548 .flags = I2C_M_RD,
549 .len = 1,
550 .buf = ret_value,
551 },
552 };
553
Chris Wilsonea5b2132010-08-04 13:50:23 +0100554 intel_sdvo_debug_write(intel_sdvo, SDVO_CMD_SET_CONTROL_BUS_SWITCH,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800555 &target, 1);
556 /* write the DDC switch command argument */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100557 intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_ARG_0, target);
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800558
559 out_buf[0] = SDVO_I2C_OPCODE;
560 out_buf[1] = SDVO_CMD_SET_CONTROL_BUS_SWITCH;
561 cmd_buf[0] = SDVO_I2C_CMD_STATUS;
562 cmd_buf[1] = 0;
563 ret_value[0] = 0;
564 ret_value[1] = 0;
565
Chris Wilsonea5b2132010-08-04 13:50:23 +0100566 ret = i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 3);
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800567 if (ret != 3) {
568 /* failure in I2C transfer */
569 DRM_DEBUG_KMS("I2c transfer returned %d\n", ret);
570 return;
571 }
572 if (ret_value[0] != SDVO_CMD_STATUS_SUCCESS) {
573 DRM_DEBUG_KMS("DDC switch command returns response %d\n",
574 ret_value[0]);
575 return;
576 }
577 return;
Jesse Barnes79e53942008-11-07 14:24:08 -0800578}
579
Chris Wilson32aad862010-08-04 13:50:25 +0100580static bool intel_sdvo_set_value(struct intel_sdvo *intel_sdvo, u8 cmd, const void *data, int len)
581{
582 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, data, len))
583 return false;
584
585 return intel_sdvo_read_response(intel_sdvo, NULL, 0);
586}
587
588static bool
589intel_sdvo_get_value(struct intel_sdvo *intel_sdvo, u8 cmd, void *value, int len)
590{
591 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, NULL, 0))
592 return false;
593
594 return intel_sdvo_read_response(intel_sdvo, value, len);
595}
596
597static bool intel_sdvo_set_target_input(struct intel_sdvo *intel_sdvo)
Jesse Barnes79e53942008-11-07 14:24:08 -0800598{
599 struct intel_sdvo_set_target_input_args targets = {0};
Chris Wilson32aad862010-08-04 13:50:25 +0100600 return intel_sdvo_set_value(intel_sdvo,
601 SDVO_CMD_SET_TARGET_INPUT,
602 &targets, sizeof(targets));
Jesse Barnes79e53942008-11-07 14:24:08 -0800603}
604
605/**
606 * Return whether each input is trained.
607 *
608 * This function is making an assumption about the layout of the response,
609 * which should be checked against the docs.
610 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100611static bool intel_sdvo_get_trained_inputs(struct intel_sdvo *intel_sdvo, bool *input_1, bool *input_2)
Jesse Barnes79e53942008-11-07 14:24:08 -0800612{
613 struct intel_sdvo_get_trained_inputs_response response;
Jesse Barnes79e53942008-11-07 14:24:08 -0800614
Chris Wilson32aad862010-08-04 13:50:25 +0100615 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_TRAINED_INPUTS,
616 &response, sizeof(response)))
Jesse Barnes79e53942008-11-07 14:24:08 -0800617 return false;
618
619 *input_1 = response.input0_trained;
620 *input_2 = response.input1_trained;
621 return true;
622}
623
Chris Wilsonea5b2132010-08-04 13:50:23 +0100624static bool intel_sdvo_set_active_outputs(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800625 u16 outputs)
626{
Chris Wilson32aad862010-08-04 13:50:25 +0100627 return intel_sdvo_set_value(intel_sdvo,
628 SDVO_CMD_SET_ACTIVE_OUTPUTS,
629 &outputs, sizeof(outputs));
Jesse Barnes79e53942008-11-07 14:24:08 -0800630}
631
Chris Wilsonea5b2132010-08-04 13:50:23 +0100632static bool intel_sdvo_set_encoder_power_state(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800633 int mode)
634{
Chris Wilson32aad862010-08-04 13:50:25 +0100635 u8 state = SDVO_ENCODER_STATE_ON;
Jesse Barnes79e53942008-11-07 14:24:08 -0800636
637 switch (mode) {
638 case DRM_MODE_DPMS_ON:
639 state = SDVO_ENCODER_STATE_ON;
640 break;
641 case DRM_MODE_DPMS_STANDBY:
642 state = SDVO_ENCODER_STATE_STANDBY;
643 break;
644 case DRM_MODE_DPMS_SUSPEND:
645 state = SDVO_ENCODER_STATE_SUSPEND;
646 break;
647 case DRM_MODE_DPMS_OFF:
648 state = SDVO_ENCODER_STATE_OFF;
649 break;
650 }
651
Chris Wilson32aad862010-08-04 13:50:25 +0100652 return intel_sdvo_set_value(intel_sdvo,
653 SDVO_CMD_SET_ENCODER_POWER_STATE, &state, sizeof(state));
Jesse Barnes79e53942008-11-07 14:24:08 -0800654}
655
Chris Wilsonea5b2132010-08-04 13:50:23 +0100656static bool intel_sdvo_get_input_pixel_clock_range(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800657 int *clock_min,
658 int *clock_max)
659{
660 struct intel_sdvo_pixel_clock_range clocks;
Jesse Barnes79e53942008-11-07 14:24:08 -0800661
Chris Wilson32aad862010-08-04 13:50:25 +0100662 if (!intel_sdvo_get_value(intel_sdvo,
663 SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE,
664 &clocks, sizeof(clocks)))
Jesse Barnes79e53942008-11-07 14:24:08 -0800665 return false;
666
667 /* Convert the values from units of 10 kHz to kHz. */
668 *clock_min = clocks.min * 10;
669 *clock_max = clocks.max * 10;
Jesse Barnes79e53942008-11-07 14:24:08 -0800670 return true;
671}
672
Chris Wilsonea5b2132010-08-04 13:50:23 +0100673static bool intel_sdvo_set_target_output(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800674 u16 outputs)
675{
Chris Wilson32aad862010-08-04 13:50:25 +0100676 return intel_sdvo_set_value(intel_sdvo,
677 SDVO_CMD_SET_TARGET_OUTPUT,
678 &outputs, sizeof(outputs));
Jesse Barnes79e53942008-11-07 14:24:08 -0800679}
680
Chris Wilsonea5b2132010-08-04 13:50:23 +0100681static bool intel_sdvo_set_timing(struct intel_sdvo *intel_sdvo, u8 cmd,
Jesse Barnes79e53942008-11-07 14:24:08 -0800682 struct intel_sdvo_dtd *dtd)
683{
Chris Wilson32aad862010-08-04 13:50:25 +0100684 return intel_sdvo_set_value(intel_sdvo, cmd, &dtd->part1, sizeof(dtd->part1)) &&
685 intel_sdvo_set_value(intel_sdvo, cmd + 1, &dtd->part2, sizeof(dtd->part2));
Jesse Barnes79e53942008-11-07 14:24:08 -0800686}
687
Chris Wilsonea5b2132010-08-04 13:50:23 +0100688static bool intel_sdvo_set_input_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800689 struct intel_sdvo_dtd *dtd)
690{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100691 return intel_sdvo_set_timing(intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800692 SDVO_CMD_SET_INPUT_TIMINGS_PART1, dtd);
693}
694
Chris Wilsonea5b2132010-08-04 13:50:23 +0100695static bool intel_sdvo_set_output_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800696 struct intel_sdvo_dtd *dtd)
697{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100698 return intel_sdvo_set_timing(intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800699 SDVO_CMD_SET_OUTPUT_TIMINGS_PART1, dtd);
700}
701
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800702static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +0100703intel_sdvo_create_preferred_input_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800704 uint16_t clock,
705 uint16_t width,
706 uint16_t height)
707{
708 struct intel_sdvo_preferred_input_timing_args args;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800709
Zhenyu Wange642c6f2009-03-24 14:02:42 +0800710 memset(&args, 0, sizeof(args));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800711 args.clock = clock;
712 args.width = width;
713 args.height = height;
Zhenyu Wange642c6f2009-03-24 14:02:42 +0800714 args.interlace = 0;
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800715
Chris Wilsonea5b2132010-08-04 13:50:23 +0100716 if (intel_sdvo->is_lvds &&
717 (intel_sdvo->sdvo_lvds_fixed_mode->hdisplay != width ||
718 intel_sdvo->sdvo_lvds_fixed_mode->vdisplay != height))
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800719 args.scaled = 1;
720
Chris Wilson32aad862010-08-04 13:50:25 +0100721 return intel_sdvo_set_value(intel_sdvo,
722 SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING,
723 &args, sizeof(args));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800724}
725
Chris Wilsonea5b2132010-08-04 13:50:23 +0100726static bool intel_sdvo_get_preferred_input_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800727 struct intel_sdvo_dtd *dtd)
728{
Chris Wilson32aad862010-08-04 13:50:25 +0100729 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1,
730 &dtd->part1, sizeof(dtd->part1)) &&
731 intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2,
732 &dtd->part2, sizeof(dtd->part2));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800733}
Jesse Barnes79e53942008-11-07 14:24:08 -0800734
Chris Wilsonea5b2132010-08-04 13:50:23 +0100735static bool intel_sdvo_set_clock_rate_mult(struct intel_sdvo *intel_sdvo, u8 val)
Jesse Barnes79e53942008-11-07 14:24:08 -0800736{
Chris Wilson32aad862010-08-04 13:50:25 +0100737 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_CLOCK_RATE_MULT, &val, 1);
Jesse Barnes79e53942008-11-07 14:24:08 -0800738}
739
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800740static void intel_sdvo_get_dtd_from_mode(struct intel_sdvo_dtd *dtd,
Chris Wilson32aad862010-08-04 13:50:25 +0100741 const struct drm_display_mode *mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800742{
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800743 uint16_t width, height;
744 uint16_t h_blank_len, h_sync_len, v_blank_len, v_sync_len;
745 uint16_t h_sync_offset, v_sync_offset;
Jesse Barnes79e53942008-11-07 14:24:08 -0800746
747 width = mode->crtc_hdisplay;
748 height = mode->crtc_vdisplay;
749
750 /* do some mode translations */
751 h_blank_len = mode->crtc_hblank_end - mode->crtc_hblank_start;
752 h_sync_len = mode->crtc_hsync_end - mode->crtc_hsync_start;
753
754 v_blank_len = mode->crtc_vblank_end - mode->crtc_vblank_start;
755 v_sync_len = mode->crtc_vsync_end - mode->crtc_vsync_start;
756
757 h_sync_offset = mode->crtc_hsync_start - mode->crtc_hblank_start;
758 v_sync_offset = mode->crtc_vsync_start - mode->crtc_vblank_start;
759
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800760 dtd->part1.clock = mode->clock / 10;
761 dtd->part1.h_active = width & 0xff;
762 dtd->part1.h_blank = h_blank_len & 0xff;
763 dtd->part1.h_high = (((width >> 8) & 0xf) << 4) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800764 ((h_blank_len >> 8) & 0xf);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800765 dtd->part1.v_active = height & 0xff;
766 dtd->part1.v_blank = v_blank_len & 0xff;
767 dtd->part1.v_high = (((height >> 8) & 0xf) << 4) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800768 ((v_blank_len >> 8) & 0xf);
769
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800770 dtd->part2.h_sync_off = h_sync_offset & 0xff;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800771 dtd->part2.h_sync_width = h_sync_len & 0xff;
772 dtd->part2.v_sync_off_width = (v_sync_offset & 0xf) << 4 |
Jesse Barnes79e53942008-11-07 14:24:08 -0800773 (v_sync_len & 0xf);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800774 dtd->part2.sync_off_width_high = ((h_sync_offset & 0x300) >> 2) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800775 ((h_sync_len & 0x300) >> 4) | ((v_sync_offset & 0x30) >> 2) |
776 ((v_sync_len & 0x30) >> 4);
777
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800778 dtd->part2.dtd_flags = 0x18;
Jesse Barnes79e53942008-11-07 14:24:08 -0800779 if (mode->flags & DRM_MODE_FLAG_PHSYNC)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800780 dtd->part2.dtd_flags |= 0x2;
Jesse Barnes79e53942008-11-07 14:24:08 -0800781 if (mode->flags & DRM_MODE_FLAG_PVSYNC)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800782 dtd->part2.dtd_flags |= 0x4;
Jesse Barnes79e53942008-11-07 14:24:08 -0800783
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800784 dtd->part2.sdvo_flags = 0;
785 dtd->part2.v_sync_off_high = v_sync_offset & 0xc0;
786 dtd->part2.reserved = 0;
787}
Jesse Barnes79e53942008-11-07 14:24:08 -0800788
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800789static void intel_sdvo_get_mode_from_dtd(struct drm_display_mode * mode,
Chris Wilson32aad862010-08-04 13:50:25 +0100790 const struct intel_sdvo_dtd *dtd)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800791{
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800792 mode->hdisplay = dtd->part1.h_active;
793 mode->hdisplay += ((dtd->part1.h_high >> 4) & 0x0f) << 8;
794 mode->hsync_start = mode->hdisplay + dtd->part2.h_sync_off;
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800795 mode->hsync_start += (dtd->part2.sync_off_width_high & 0xc0) << 2;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800796 mode->hsync_end = mode->hsync_start + dtd->part2.h_sync_width;
797 mode->hsync_end += (dtd->part2.sync_off_width_high & 0x30) << 4;
798 mode->htotal = mode->hdisplay + dtd->part1.h_blank;
799 mode->htotal += (dtd->part1.h_high & 0xf) << 8;
800
801 mode->vdisplay = dtd->part1.v_active;
802 mode->vdisplay += ((dtd->part1.v_high >> 4) & 0x0f) << 8;
803 mode->vsync_start = mode->vdisplay;
804 mode->vsync_start += (dtd->part2.v_sync_off_width >> 4) & 0xf;
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800805 mode->vsync_start += (dtd->part2.sync_off_width_high & 0x0c) << 2;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800806 mode->vsync_start += dtd->part2.v_sync_off_high & 0xc0;
807 mode->vsync_end = mode->vsync_start +
808 (dtd->part2.v_sync_off_width & 0xf);
809 mode->vsync_end += (dtd->part2.sync_off_width_high & 0x3) << 4;
810 mode->vtotal = mode->vdisplay + dtd->part1.v_blank;
811 mode->vtotal += (dtd->part1.v_high & 0xf) << 8;
812
813 mode->clock = dtd->part1.clock * 10;
814
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800815 mode->flags &= ~(DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800816 if (dtd->part2.dtd_flags & 0x2)
817 mode->flags |= DRM_MODE_FLAG_PHSYNC;
818 if (dtd->part2.dtd_flags & 0x4)
819 mode->flags |= DRM_MODE_FLAG_PVSYNC;
820}
821
Chris Wilsonea5b2132010-08-04 13:50:23 +0100822static bool intel_sdvo_get_supp_encode(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800823 struct intel_sdvo_encode *encode)
824{
Chris Wilson32aad862010-08-04 13:50:25 +0100825 if (intel_sdvo_get_value(intel_sdvo,
826 SDVO_CMD_GET_SUPP_ENCODE,
827 encode, sizeof(*encode)))
828 return true;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800829
Chris Wilson32aad862010-08-04 13:50:25 +0100830 /* non-support means DVI */
831 memset(encode, 0, sizeof(*encode));
832 return false;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800833}
834
Chris Wilsonea5b2132010-08-04 13:50:23 +0100835static bool intel_sdvo_set_encode(struct intel_sdvo *intel_sdvo,
Eric Anholtc751ce42010-03-25 11:48:48 -0700836 uint8_t mode)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800837{
Chris Wilson32aad862010-08-04 13:50:25 +0100838 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_ENCODE, &mode, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800839}
840
Chris Wilsonea5b2132010-08-04 13:50:23 +0100841static bool intel_sdvo_set_colorimetry(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800842 uint8_t mode)
843{
Chris Wilson32aad862010-08-04 13:50:25 +0100844 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_COLORIMETRY, &mode, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800845}
846
847#if 0
Chris Wilsonea5b2132010-08-04 13:50:23 +0100848static void intel_sdvo_dump_hdmi_buf(struct intel_sdvo *intel_sdvo)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800849{
850 int i, j;
851 uint8_t set_buf_index[2];
852 uint8_t av_split;
853 uint8_t buf_size;
854 uint8_t buf[48];
855 uint8_t *pos;
856
Chris Wilson32aad862010-08-04 13:50:25 +0100857 intel_sdvo_get_value(encoder, SDVO_CMD_GET_HBUF_AV_SPLIT, &av_split, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800858
859 for (i = 0; i <= av_split; i++) {
860 set_buf_index[0] = i; set_buf_index[1] = 0;
Eric Anholtc751ce42010-03-25 11:48:48 -0700861 intel_sdvo_write_cmd(encoder, SDVO_CMD_SET_HBUF_INDEX,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800862 set_buf_index, 2);
Eric Anholtc751ce42010-03-25 11:48:48 -0700863 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_INFO, NULL, 0);
864 intel_sdvo_read_response(encoder, &buf_size, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800865
866 pos = buf;
867 for (j = 0; j <= buf_size; j += 8) {
Eric Anholtc751ce42010-03-25 11:48:48 -0700868 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_DATA,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800869 NULL, 0);
Eric Anholtc751ce42010-03-25 11:48:48 -0700870 intel_sdvo_read_response(encoder, pos, 8);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800871 pos += 8;
872 }
873 }
874}
875#endif
876
Chris Wilson32aad862010-08-04 13:50:25 +0100877static bool intel_sdvo_set_hdmi_buf(struct intel_sdvo *intel_sdvo,
Eric Anholtc751ce42010-03-25 11:48:48 -0700878 int index,
879 uint8_t *data, int8_t size, uint8_t tx_rate)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800880{
881 uint8_t set_buf_index[2];
882
883 set_buf_index[0] = index;
884 set_buf_index[1] = 0;
885
Chris Wilson32aad862010-08-04 13:50:25 +0100886 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_INDEX,
887 set_buf_index, 2))
888 return false;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800889
890 for (; size > 0; size -= 8) {
Chris Wilson32aad862010-08-04 13:50:25 +0100891 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_DATA, data, 8))
892 return false;
893
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800894 data += 8;
895 }
896
Chris Wilson32aad862010-08-04 13:50:25 +0100897 return intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_TXRATE, &tx_rate, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800898}
899
900static uint8_t intel_sdvo_calc_hbuf_csum(uint8_t *data, uint8_t size)
901{
902 uint8_t csum = 0;
903 int i;
904
905 for (i = 0; i < size; i++)
906 csum += data[i];
907
908 return 0x100 - csum;
909}
910
911#define DIP_TYPE_AVI 0x82
912#define DIP_VERSION_AVI 0x2
913#define DIP_LEN_AVI 13
914
915struct dip_infoframe {
916 uint8_t type;
917 uint8_t version;
918 uint8_t len;
919 uint8_t checksum;
920 union {
921 struct {
922 /* Packet Byte #1 */
923 uint8_t S:2;
924 uint8_t B:2;
925 uint8_t A:1;
926 uint8_t Y:2;
927 uint8_t rsvd1:1;
928 /* Packet Byte #2 */
929 uint8_t R:4;
930 uint8_t M:2;
931 uint8_t C:2;
932 /* Packet Byte #3 */
933 uint8_t SC:2;
934 uint8_t Q:2;
935 uint8_t EC:3;
936 uint8_t ITC:1;
937 /* Packet Byte #4 */
938 uint8_t VIC:7;
939 uint8_t rsvd2:1;
940 /* Packet Byte #5 */
941 uint8_t PR:4;
942 uint8_t rsvd3:4;
943 /* Packet Byte #6~13 */
944 uint16_t top_bar_end;
945 uint16_t bottom_bar_start;
946 uint16_t left_bar_end;
947 uint16_t right_bar_start;
948 } avi;
949 struct {
950 /* Packet Byte #1 */
951 uint8_t channel_count:3;
952 uint8_t rsvd1:1;
953 uint8_t coding_type:4;
954 /* Packet Byte #2 */
955 uint8_t sample_size:2; /* SS0, SS1 */
956 uint8_t sample_frequency:3;
957 uint8_t rsvd2:3;
958 /* Packet Byte #3 */
959 uint8_t coding_type_private:5;
960 uint8_t rsvd3:3;
961 /* Packet Byte #4 */
962 uint8_t channel_allocation;
963 /* Packet Byte #5 */
964 uint8_t rsvd4:3;
965 uint8_t level_shift:4;
966 uint8_t downmix_inhibit:1;
967 } audio;
968 uint8_t payload[28];
969 } __attribute__ ((packed)) u;
970} __attribute__((packed));
971
Chris Wilson32aad862010-08-04 13:50:25 +0100972static bool intel_sdvo_set_avi_infoframe(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800973 struct drm_display_mode * mode)
974{
975 struct dip_infoframe avi_if = {
976 .type = DIP_TYPE_AVI,
977 .version = DIP_VERSION_AVI,
978 .len = DIP_LEN_AVI,
979 };
980
981 avi_if.checksum = intel_sdvo_calc_hbuf_csum((uint8_t *)&avi_if,
982 4 + avi_if.len);
Chris Wilson32aad862010-08-04 13:50:25 +0100983 return intel_sdvo_set_hdmi_buf(intel_sdvo, 1, (uint8_t *)&avi_if,
984 4 + avi_if.len,
985 SDVO_HBUF_TX_VSYNC);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800986}
987
Chris Wilson32aad862010-08-04 13:50:25 +0100988static bool intel_sdvo_set_tv_format(struct intel_sdvo *intel_sdvo)
Zhenyu Wang7026d4a2009-03-24 14:02:43 +0800989{
Zhao Yakuice6feab2009-08-24 13:50:26 +0800990 struct intel_sdvo_tv_format format;
Chris Wilson40039752010-08-04 13:50:26 +0100991 uint32_t format_map;
Zhao Yakuice6feab2009-08-24 13:50:26 +0800992
Chris Wilson40039752010-08-04 13:50:26 +0100993 format_map = 1 << intel_sdvo->tv_format_index;
Zhao Yakuice6feab2009-08-24 13:50:26 +0800994 memset(&format, 0, sizeof(format));
Chris Wilson32aad862010-08-04 13:50:25 +0100995 memcpy(&format, &format_map, min(sizeof(format), sizeof(format_map)));
Zhao Yakuice6feab2009-08-24 13:50:26 +0800996
Chris Wilson32aad862010-08-04 13:50:25 +0100997 BUILD_BUG_ON(sizeof(format) != 6);
998 return intel_sdvo_set_value(intel_sdvo,
999 SDVO_CMD_SET_TV_FORMAT,
1000 &format, sizeof(format));
1001}
Zhao Yakuice6feab2009-08-24 13:50:26 +08001002
Chris Wilson32aad862010-08-04 13:50:25 +01001003static bool
1004intel_sdvo_set_output_timings_from_mode(struct intel_sdvo *intel_sdvo,
1005 struct drm_display_mode *mode)
1006{
1007 struct intel_sdvo_dtd output_dtd;
1008
1009 if (!intel_sdvo_set_target_output(intel_sdvo,
1010 intel_sdvo->attached_output))
1011 return false;
1012
1013 intel_sdvo_get_dtd_from_mode(&output_dtd, mode);
1014 if (!intel_sdvo_set_output_timing(intel_sdvo, &output_dtd))
1015 return false;
1016
1017 return true;
1018}
1019
1020static bool
1021intel_sdvo_set_input_timings_for_mode(struct intel_sdvo *intel_sdvo,
1022 struct drm_display_mode *mode,
1023 struct drm_display_mode *adjusted_mode)
1024{
1025 struct intel_sdvo_dtd input_dtd;
1026
1027 /* Reset the input timing to the screen. Assume always input 0. */
1028 if (!intel_sdvo_set_target_input(intel_sdvo))
1029 return false;
1030
1031 if (!intel_sdvo_create_preferred_input_timing(intel_sdvo,
1032 mode->clock / 10,
1033 mode->hdisplay,
1034 mode->vdisplay))
1035 return false;
1036
1037 if (!intel_sdvo_get_preferred_input_timing(intel_sdvo,
1038 &input_dtd))
1039 return false;
1040
1041 intel_sdvo_get_mode_from_dtd(adjusted_mode, &input_dtd);
1042 intel_sdvo->sdvo_flags = input_dtd.part2.sdvo_flags;
1043
1044 drm_mode_set_crtcinfo(adjusted_mode, 0);
1045 mode->clock = adjusted_mode->clock;
1046 return true;
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001047}
1048
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001049static bool intel_sdvo_mode_fixup(struct drm_encoder *encoder,
1050 struct drm_display_mode *mode,
1051 struct drm_display_mode *adjusted_mode)
1052{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001053 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001054
Chris Wilson32aad862010-08-04 13:50:25 +01001055 /* We need to construct preferred input timings based on our
1056 * output timings. To do that, we have to set the output
1057 * timings, even though this isn't really the right place in
1058 * the sequence to do it. Oh well.
1059 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001060 if (intel_sdvo->is_tv) {
Chris Wilson32aad862010-08-04 13:50:25 +01001061 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo, mode))
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001062 return false;
Chris Wilson32aad862010-08-04 13:50:25 +01001063
Pavel Roskinc74696b2010-09-02 14:46:34 -04001064 (void) intel_sdvo_set_input_timings_for_mode(intel_sdvo,
1065 mode,
1066 adjusted_mode);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001067 } else if (intel_sdvo->is_lvds) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001068 drm_mode_set_crtcinfo(intel_sdvo->sdvo_lvds_fixed_mode, 0);
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001069
Chris Wilson32aad862010-08-04 13:50:25 +01001070 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo,
1071 intel_sdvo->sdvo_lvds_fixed_mode))
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001072 return false;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001073
Pavel Roskinc74696b2010-09-02 14:46:34 -04001074 (void) intel_sdvo_set_input_timings_for_mode(intel_sdvo,
1075 mode,
1076 adjusted_mode);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001077 }
Chris Wilson32aad862010-08-04 13:50:25 +01001078
1079 /* Make the CRTC code factor in the SDVO pixel multiplier. The
1080 * SDVO device will be told of the multiplier during mode_set.
1081 */
1082 adjusted_mode->clock *= intel_sdvo_get_pixel_multiplier(mode);
1083
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001084 return true;
1085}
1086
1087static void intel_sdvo_mode_set(struct drm_encoder *encoder,
1088 struct drm_display_mode *mode,
1089 struct drm_display_mode *adjusted_mode)
1090{
1091 struct drm_device *dev = encoder->dev;
1092 struct drm_i915_private *dev_priv = dev->dev_private;
1093 struct drm_crtc *crtc = encoder->crtc;
1094 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001095 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001096 u32 sdvox = 0;
Chris Wilson32aad862010-08-04 13:50:25 +01001097 int sdvo_pixel_multiply, rate;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001098 struct intel_sdvo_in_out_map in_out;
1099 struct intel_sdvo_dtd input_dtd;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001100
1101 if (!mode)
1102 return;
1103
1104 /* First, set the input mapping for the first input to our controlled
1105 * output. This is only correct if we're a single-input device, in
1106 * which case the first input is the output from the appropriate SDVO
1107 * channel on the motherboard. In a two-input device, the first input
1108 * will be SDVOB and the second SDVOC.
1109 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001110 in_out.in0 = intel_sdvo->attached_output;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001111 in_out.in1 = 0;
1112
Pavel Roskinc74696b2010-09-02 14:46:34 -04001113 intel_sdvo_set_value(intel_sdvo,
1114 SDVO_CMD_SET_IN_OUT_MAP,
1115 &in_out, sizeof(in_out));
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001116
Chris Wilsonea5b2132010-08-04 13:50:23 +01001117 if (intel_sdvo->is_hdmi) {
Chris Wilson32aad862010-08-04 13:50:25 +01001118 if (!intel_sdvo_set_avi_infoframe(intel_sdvo, mode))
1119 return;
1120
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001121 sdvox |= SDVO_AUDIO_ENABLE;
1122 }
1123
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001124 /* We have tried to get input timing in mode_fixup, and filled into
1125 adjusted_mode */
Pavel Roskinc74696b2010-09-02 14:46:34 -04001126 intel_sdvo_get_dtd_from_mode(&input_dtd, adjusted_mode);
1127 if (intel_sdvo->is_tv || intel_sdvo->is_lvds)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001128 input_dtd.part2.sdvo_flags = intel_sdvo->sdvo_flags;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001129
1130 /* If it's a TV, we already set the output timing in mode_fixup.
1131 * Otherwise, the output timing is equal to the input timing.
1132 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001133 if (!intel_sdvo->is_tv && !intel_sdvo->is_lvds) {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001134 /* Set the output timing to the screen */
Chris Wilson32aad862010-08-04 13:50:25 +01001135 if (!intel_sdvo_set_target_output(intel_sdvo,
1136 intel_sdvo->attached_output))
1137 return;
1138
Pavel Roskinc74696b2010-09-02 14:46:34 -04001139 (void) intel_sdvo_set_output_timing(intel_sdvo, &input_dtd);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001140 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001141
1142 /* Set the input timing to the screen. Assume always input 0. */
Chris Wilson32aad862010-08-04 13:50:25 +01001143 if (!intel_sdvo_set_target_input(intel_sdvo))
1144 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001145
Chris Wilson32aad862010-08-04 13:50:25 +01001146 if (intel_sdvo->is_tv) {
1147 if (!intel_sdvo_set_tv_format(intel_sdvo))
1148 return;
1149 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001150
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001151 /* We would like to use intel_sdvo_create_preferred_input_timing() to
Jesse Barnes79e53942008-11-07 14:24:08 -08001152 * provide the device with a timing it can support, if it supports that
1153 * feature. However, presumably we would need to adjust the CRTC to
1154 * output the preferred timing, and we don't support that currently.
1155 */
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001156#if 0
Eric Anholtc751ce42010-03-25 11:48:48 -07001157 success = intel_sdvo_create_preferred_input_timing(encoder, clock,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001158 width, height);
1159 if (success) {
1160 struct intel_sdvo_dtd *input_dtd;
1161
Eric Anholtc751ce42010-03-25 11:48:48 -07001162 intel_sdvo_get_preferred_input_timing(encoder, &input_dtd);
1163 intel_sdvo_set_input_timing(encoder, &input_dtd);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001164 }
1165#else
Pavel Roskinc74696b2010-09-02 14:46:34 -04001166 (void) intel_sdvo_set_input_timing(intel_sdvo, &input_dtd);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001167#endif
Jesse Barnes79e53942008-11-07 14:24:08 -08001168
Chris Wilson32aad862010-08-04 13:50:25 +01001169 sdvo_pixel_multiply = intel_sdvo_get_pixel_multiplier(mode);
1170 switch (sdvo_pixel_multiply) {
1171 case 1: rate = SDVO_CLOCK_RATE_MULT_1X; break;
1172 case 2: rate = SDVO_CLOCK_RATE_MULT_2X; break;
1173 case 4: rate = SDVO_CLOCK_RATE_MULT_4X; break;
Jesse Barnes79e53942008-11-07 14:24:08 -08001174 }
Chris Wilson32aad862010-08-04 13:50:25 +01001175 if (!intel_sdvo_set_clock_rate_mult(intel_sdvo, rate))
1176 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001177
1178 /* Set the SDVO control regs. */
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001179 if (IS_I965G(dev)) {
Adam Jackson81a14b42010-07-16 14:46:32 -04001180 sdvox |= SDVO_BORDER_ENABLE;
1181 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1182 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
1183 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1184 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001185 } else {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001186 sdvox |= I915_READ(intel_sdvo->sdvo_reg);
1187 switch (intel_sdvo->sdvo_reg) {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001188 case SDVOB:
1189 sdvox &= SDVOB_PRESERVE_MASK;
1190 break;
1191 case SDVOC:
1192 sdvox &= SDVOC_PRESERVE_MASK;
1193 break;
1194 }
1195 sdvox |= (9 << 19) | SDVO_BORDER_ENABLE;
1196 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001197 if (intel_crtc->pipe == 1)
1198 sdvox |= SDVO_PIPE_B_SELECT;
1199
Jesse Barnes79e53942008-11-07 14:24:08 -08001200 if (IS_I965G(dev)) {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001201 /* done in crtc_mode_set as the dpll_md reg must be written early */
1202 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
1203 /* done in crtc_mode_set as it lives inside the dpll register */
Jesse Barnes79e53942008-11-07 14:24:08 -08001204 } else {
1205 sdvox |= (sdvo_pixel_multiply - 1) << SDVO_PORT_MULTIPLY_SHIFT;
1206 }
1207
Chris Wilsonea5b2132010-08-04 13:50:23 +01001208 if (intel_sdvo->sdvo_flags & SDVO_NEED_TO_STALL)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001209 sdvox |= SDVO_STALL_SELECT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001210 intel_sdvo_write_sdvox(intel_sdvo, sdvox);
Jesse Barnes79e53942008-11-07 14:24:08 -08001211}
1212
1213static void intel_sdvo_dpms(struct drm_encoder *encoder, int mode)
1214{
1215 struct drm_device *dev = encoder->dev;
1216 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001217 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001218 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08001219 u32 temp;
1220
1221 if (mode != DRM_MODE_DPMS_ON) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001222 intel_sdvo_set_active_outputs(intel_sdvo, 0);
Jesse Barnes79e53942008-11-07 14:24:08 -08001223 if (0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001224 intel_sdvo_set_encoder_power_state(intel_sdvo, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08001225
1226 if (mode == DRM_MODE_DPMS_OFF) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001227 temp = I915_READ(intel_sdvo->sdvo_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08001228 if ((temp & SDVO_ENABLE) != 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001229 intel_sdvo_write_sdvox(intel_sdvo, temp & ~SDVO_ENABLE);
Jesse Barnes79e53942008-11-07 14:24:08 -08001230 }
1231 }
1232 } else {
1233 bool input1, input2;
1234 int i;
1235 u8 status;
1236
Chris Wilsonea5b2132010-08-04 13:50:23 +01001237 temp = I915_READ(intel_sdvo->sdvo_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08001238 if ((temp & SDVO_ENABLE) == 0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001239 intel_sdvo_write_sdvox(intel_sdvo, temp | SDVO_ENABLE);
Jesse Barnes79e53942008-11-07 14:24:08 -08001240 for (i = 0; i < 2; i++)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001241 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08001242
Chris Wilson32aad862010-08-04 13:50:25 +01001243 status = intel_sdvo_get_trained_inputs(intel_sdvo, &input1, &input2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001244 /* Warn if the device reported failure to sync.
1245 * A lot of SDVO devices fail to notify of sync, but it's
1246 * a given it the status is a success, we succeeded.
1247 */
1248 if (status == SDVO_CMD_STATUS_SUCCESS && !input1) {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001249 DRM_DEBUG_KMS("First %s output reported failure to "
Chris Wilsonea5b2132010-08-04 13:50:23 +01001250 "sync\n", SDVO_NAME(intel_sdvo));
Jesse Barnes79e53942008-11-07 14:24:08 -08001251 }
1252
1253 if (0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001254 intel_sdvo_set_encoder_power_state(intel_sdvo, mode);
1255 intel_sdvo_set_active_outputs(intel_sdvo, intel_sdvo->attached_output);
Jesse Barnes79e53942008-11-07 14:24:08 -08001256 }
1257 return;
1258}
1259
Jesse Barnes79e53942008-11-07 14:24:08 -08001260static int intel_sdvo_mode_valid(struct drm_connector *connector,
1261 struct drm_display_mode *mode)
1262{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001263 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001264 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08001265
1266 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1267 return MODE_NO_DBLESCAN;
1268
Chris Wilsonea5b2132010-08-04 13:50:23 +01001269 if (intel_sdvo->pixel_clock_min > mode->clock)
Jesse Barnes79e53942008-11-07 14:24:08 -08001270 return MODE_CLOCK_LOW;
1271
Chris Wilsonea5b2132010-08-04 13:50:23 +01001272 if (intel_sdvo->pixel_clock_max < mode->clock)
Jesse Barnes79e53942008-11-07 14:24:08 -08001273 return MODE_CLOCK_HIGH;
1274
Chris Wilson85454232010-08-08 14:28:23 +01001275 if (intel_sdvo->is_lvds) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001276 if (mode->hdisplay > intel_sdvo->sdvo_lvds_fixed_mode->hdisplay)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001277 return MODE_PANEL;
1278
Chris Wilsonea5b2132010-08-04 13:50:23 +01001279 if (mode->vdisplay > intel_sdvo->sdvo_lvds_fixed_mode->vdisplay)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001280 return MODE_PANEL;
1281 }
1282
Jesse Barnes79e53942008-11-07 14:24:08 -08001283 return MODE_OK;
1284}
1285
Chris Wilsonea5b2132010-08-04 13:50:23 +01001286static bool intel_sdvo_get_capabilities(struct intel_sdvo *intel_sdvo, struct intel_sdvo_caps *caps)
Jesse Barnes79e53942008-11-07 14:24:08 -08001287{
Chris Wilson32aad862010-08-04 13:50:25 +01001288 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_DEVICE_CAPS, caps, sizeof(*caps));
Jesse Barnes79e53942008-11-07 14:24:08 -08001289}
1290
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001291/* No use! */
1292#if 0
Jesse Barnes79e53942008-11-07 14:24:08 -08001293struct drm_connector* intel_sdvo_find(struct drm_device *dev, int sdvoB)
1294{
1295 struct drm_connector *connector = NULL;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001296 struct intel_sdvo *iout = NULL;
1297 struct intel_sdvo *sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001298
1299 /* find the sdvo connector */
1300 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001301 iout = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001302
1303 if (iout->type != INTEL_OUTPUT_SDVO)
1304 continue;
1305
1306 sdvo = iout->dev_priv;
1307
Eric Anholtc751ce42010-03-25 11:48:48 -07001308 if (sdvo->sdvo_reg == SDVOB && sdvoB)
Jesse Barnes79e53942008-11-07 14:24:08 -08001309 return connector;
1310
Eric Anholtc751ce42010-03-25 11:48:48 -07001311 if (sdvo->sdvo_reg == SDVOC && !sdvoB)
Jesse Barnes79e53942008-11-07 14:24:08 -08001312 return connector;
1313
1314 }
1315
1316 return NULL;
1317}
1318
1319int intel_sdvo_supports_hotplug(struct drm_connector *connector)
1320{
1321 u8 response[2];
1322 u8 status;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001323 struct intel_sdvo *intel_sdvo;
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001324 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08001325
1326 if (!connector)
1327 return 0;
1328
Chris Wilsonea5b2132010-08-04 13:50:23 +01001329 intel_sdvo = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001330
Chris Wilson32aad862010-08-04 13:50:25 +01001331 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT,
1332 &response, 2) && response[0];
Jesse Barnes79e53942008-11-07 14:24:08 -08001333}
1334
1335void intel_sdvo_set_hotplug(struct drm_connector *connector, int on)
1336{
1337 u8 response[2];
1338 u8 status;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001339 struct intel_sdvo *intel_sdvo = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001340
Chris Wilsonea5b2132010-08-04 13:50:23 +01001341 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_ACTIVE_HOT_PLUG, NULL, 0);
1342 intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001343
1344 if (on) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001345 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT, NULL, 0);
1346 status = intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001347
Chris Wilsonea5b2132010-08-04 13:50:23 +01001348 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001349 } else {
1350 response[0] = 0;
1351 response[1] = 0;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001352 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001353 }
1354
Chris Wilsonea5b2132010-08-04 13:50:23 +01001355 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_ACTIVE_HOT_PLUG, NULL, 0);
1356 intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001357}
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001358#endif
Jesse Barnes79e53942008-11-07 14:24:08 -08001359
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001360static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001361intel_sdvo_multifunc_encoder(struct intel_sdvo *intel_sdvo)
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001362{
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001363 int caps = 0;
1364
Chris Wilsonea5b2132010-08-04 13:50:23 +01001365 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001366 (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_TMDS1))
1367 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001368 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001369 (SDVO_OUTPUT_RGB0 | SDVO_OUTPUT_RGB1))
1370 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001371 if (intel_sdvo->caps.output_flags &
Roel Kluin19e1f882009-08-09 13:50:53 +02001372 (SDVO_OUTPUT_SVID0 | SDVO_OUTPUT_SVID1))
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001373 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001374 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001375 (SDVO_OUTPUT_CVBS0 | SDVO_OUTPUT_CVBS1))
1376 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001377 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001378 (SDVO_OUTPUT_YPRPB0 | SDVO_OUTPUT_YPRPB1))
1379 caps++;
1380
Chris Wilsonea5b2132010-08-04 13:50:23 +01001381 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001382 (SDVO_OUTPUT_SCART0 | SDVO_OUTPUT_SCART1))
1383 caps++;
1384
Chris Wilsonea5b2132010-08-04 13:50:23 +01001385 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001386 (SDVO_OUTPUT_LVDS0 | SDVO_OUTPUT_LVDS1))
1387 caps++;
1388
1389 return (caps > 1);
1390}
1391
Keith Packard57cdaf92009-09-04 13:07:54 +08001392static struct drm_connector *
1393intel_find_analog_connector(struct drm_device *dev)
1394{
1395 struct drm_connector *connector;
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001396 struct drm_encoder *encoder;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001397 struct intel_sdvo *intel_sdvo;
Keith Packard57cdaf92009-09-04 13:07:54 +08001398
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001399 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001400 intel_sdvo = enc_to_intel_sdvo(encoder);
1401 if (intel_sdvo->base.type == INTEL_OUTPUT_ANALOG) {
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001402 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Dan Carpenter90a78e82010-05-07 10:40:09 +02001403 if (encoder == intel_attached_encoder(connector))
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001404 return connector;
1405 }
1406 }
Keith Packard57cdaf92009-09-04 13:07:54 +08001407 }
1408 return NULL;
1409}
1410
1411static int
1412intel_analog_is_connected(struct drm_device *dev)
1413{
1414 struct drm_connector *analog_connector;
Keith Packard57cdaf92009-09-04 13:07:54 +08001415
Chris Wilson32aad862010-08-04 13:50:25 +01001416 analog_connector = intel_find_analog_connector(dev);
Keith Packard57cdaf92009-09-04 13:07:54 +08001417 if (!analog_connector)
1418 return false;
1419
Chris Wilson7b334fc2010-09-09 23:51:02 +01001420 if (analog_connector->funcs->detect(analog_connector, true) ==
Keith Packard57cdaf92009-09-04 13:07:54 +08001421 connector_status_disconnected)
1422 return false;
1423
1424 return true;
1425}
1426
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001427enum drm_connector_status
Adam Jackson149c36a2010-04-29 14:05:18 -04001428intel_sdvo_hdmi_sink_detect(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001429{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001430 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001431 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Chris Wilson615fb932010-08-04 13:50:24 +01001432 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001433 enum drm_connector_status status = connector_status_connected;
Ma Ling9dff6af2009-04-02 13:13:26 +08001434 struct edid *edid = NULL;
1435
Chris Wilsonea5b2132010-08-04 13:50:23 +01001436 edid = drm_get_edid(connector, intel_sdvo->base.ddc_bus);
Keith Packard57cdaf92009-09-04 13:07:54 +08001437
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001438 /* This is only applied to SDVO cards with multiple outputs */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001439 if (edid == NULL && intel_sdvo_multifunc_encoder(intel_sdvo)) {
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001440 uint8_t saved_ddc, temp_ddc;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001441 saved_ddc = intel_sdvo->ddc_bus;
1442 temp_ddc = intel_sdvo->ddc_bus >> 1;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001443 /*
1444 * Don't use the 1 as the argument of DDC bus switch to get
1445 * the EDID. It is used for SDVO SPD ROM.
1446 */
1447 while(temp_ddc > 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001448 intel_sdvo->ddc_bus = temp_ddc;
1449 edid = drm_get_edid(connector, intel_sdvo->base.ddc_bus);
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001450 if (edid) {
1451 /*
1452 * When we can get the EDID, maybe it is the
1453 * correct DDC bus. Update it.
1454 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001455 intel_sdvo->ddc_bus = temp_ddc;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001456 break;
1457 }
1458 temp_ddc >>= 1;
1459 }
1460 if (edid == NULL)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001461 intel_sdvo->ddc_bus = saved_ddc;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001462 }
Keith Packard57cdaf92009-09-04 13:07:54 +08001463 /* when there is no edid and no monitor is connected with VGA
1464 * port, try to use the CRT ddc to read the EDID for DVI-connector
1465 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001466 if (edid == NULL && intel_sdvo->analog_ddc_bus &&
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001467 !intel_analog_is_connected(connector->dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01001468 edid = drm_get_edid(connector, intel_sdvo->analog_ddc_bus);
Adam Jackson149c36a2010-04-29 14:05:18 -04001469
Ma Ling9dff6af2009-04-02 13:13:26 +08001470 if (edid != NULL) {
Adam Jackson149c36a2010-04-29 14:05:18 -04001471 bool is_digital = !!(edid->input & DRM_EDID_INPUT_DIGITAL);
Chris Wilson615fb932010-08-04 13:50:24 +01001472 bool need_digital = !!(intel_sdvo_connector->output_flag & SDVO_TMDS_MASK);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001473
Adam Jackson149c36a2010-04-29 14:05:18 -04001474 /* DDC bus is shared, match EDID to connector type */
1475 if (is_digital && need_digital)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001476 intel_sdvo->is_hdmi = drm_detect_hdmi_monitor(edid);
Adam Jackson149c36a2010-04-29 14:05:18 -04001477 else if (is_digital != need_digital)
1478 status = connector_status_disconnected;
1479
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001480 connector->display_info.raw_edid = NULL;
Adam Jackson149c36a2010-04-29 14:05:18 -04001481 } else
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001482 status = connector_status_disconnected;
Adam Jackson149c36a2010-04-29 14:05:18 -04001483
1484 kfree(edid);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001485
1486 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +08001487}
1488
Chris Wilson7b334fc2010-09-09 23:51:02 +01001489static enum drm_connector_status
1490intel_sdvo_detect(struct drm_connector *connector,
1491 bool nondestructive)
Jesse Barnes79e53942008-11-07 14:24:08 -08001492{
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001493 uint16_t response;
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001494 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001495 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Chris Wilson615fb932010-08-04 13:50:24 +01001496 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08001497 enum drm_connector_status ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001498
Chris Wilson32aad862010-08-04 13:50:25 +01001499 if (!intel_sdvo_write_cmd(intel_sdvo,
1500 SDVO_CMD_GET_ATTACHED_DISPLAYS, NULL, 0))
1501 return connector_status_unknown;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001502 if (intel_sdvo->is_tv) {
Zhao Yakuid09c23d2009-11-06 15:39:56 +08001503 /* add 30ms delay when the output type is SDVO-TV */
1504 mdelay(30);
1505 }
Chris Wilson32aad862010-08-04 13:50:25 +01001506 if (!intel_sdvo_read_response(intel_sdvo, &response, 2))
1507 return connector_status_unknown;
Jesse Barnes79e53942008-11-07 14:24:08 -08001508
Dave Airlie51c8b402009-08-20 13:38:04 +10001509 DRM_DEBUG_KMS("SDVO response %d %d\n", response & 0xff, response >> 8);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001510
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001511 if (response == 0)
Jesse Barnes79e53942008-11-07 14:24:08 -08001512 return connector_status_disconnected;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001513
Chris Wilsonea5b2132010-08-04 13:50:23 +01001514 intel_sdvo->attached_output = response;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001515
Chris Wilson615fb932010-08-04 13:50:24 +01001516 if ((intel_sdvo_connector->output_flag & response) == 0)
Zhenyu Wang14571b42010-03-30 14:06:33 +08001517 ret = connector_status_disconnected;
Adam Jackson149c36a2010-04-29 14:05:18 -04001518 else if (response & SDVO_TMDS_MASK)
1519 ret = intel_sdvo_hdmi_sink_detect(connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08001520 else
1521 ret = connector_status_connected;
1522
1523 /* May update encoder flag for like clock for SDVO TV, etc.*/
1524 if (ret == connector_status_connected) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001525 intel_sdvo->is_tv = false;
1526 intel_sdvo->is_lvds = false;
1527 intel_sdvo->base.needs_tv_clock = false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001528
1529 if (response & SDVO_TV_MASK) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001530 intel_sdvo->is_tv = true;
1531 intel_sdvo->base.needs_tv_clock = true;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001532 }
1533 if (response & SDVO_LVDS_MASK)
Chris Wilson85454232010-08-08 14:28:23 +01001534 intel_sdvo->is_lvds = intel_sdvo->sdvo_lvds_fixed_mode != NULL;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001535 }
Zhenyu Wang14571b42010-03-30 14:06:33 +08001536
1537 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001538}
1539
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001540static void intel_sdvo_get_ddc_modes(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08001541{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001542 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001543 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Keith Packard57cdaf92009-09-04 13:07:54 +08001544 int num_modes;
Jesse Barnes79e53942008-11-07 14:24:08 -08001545
1546 /* set the bus switch and get the modes */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001547 num_modes = intel_ddc_get_modes(connector, intel_sdvo->base.ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -08001548
Keith Packard57cdaf92009-09-04 13:07:54 +08001549 /*
1550 * Mac mini hack. On this device, the DVI-I connector shares one DDC
1551 * link between analog and digital outputs. So, if the regular SDVO
1552 * DDC fails, check to see if the analog output is disconnected, in
1553 * which case we'll look there for the digital DDC data.
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001554 */
Keith Packard57cdaf92009-09-04 13:07:54 +08001555 if (num_modes == 0 &&
Chris Wilsonea5b2132010-08-04 13:50:23 +01001556 intel_sdvo->analog_ddc_bus &&
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001557 !intel_analog_is_connected(connector->dev)) {
Keith Packard57cdaf92009-09-04 13:07:54 +08001558 /* Switch to the analog ddc bus and try that
1559 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001560 (void) intel_ddc_get_modes(connector, intel_sdvo->analog_ddc_bus);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001561 }
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001562}
1563
1564/*
1565 * Set of SDVO TV modes.
1566 * Note! This is in reply order (see loop in get_tv_modes).
1567 * XXX: all 60Hz refresh?
1568 */
1569struct drm_display_mode sdvo_tv_modes[] = {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001570 { DRM_MODE("320x200", DRM_MODE_TYPE_DRIVER, 5815, 320, 321, 384,
1571 416, 0, 200, 201, 232, 233, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001572 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001573 { DRM_MODE("320x240", DRM_MODE_TYPE_DRIVER, 6814, 320, 321, 384,
1574 416, 0, 240, 241, 272, 273, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001575 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001576 { DRM_MODE("400x300", DRM_MODE_TYPE_DRIVER, 9910, 400, 401, 464,
1577 496, 0, 300, 301, 332, 333, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001578 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001579 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 16913, 640, 641, 704,
1580 736, 0, 350, 351, 382, 383, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001581 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001582 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 19121, 640, 641, 704,
1583 736, 0, 400, 401, 432, 433, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001584 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001585 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 22654, 640, 641, 704,
1586 736, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001587 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001588 { DRM_MODE("704x480", DRM_MODE_TYPE_DRIVER, 24624, 704, 705, 768,
1589 800, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001590 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001591 { DRM_MODE("704x576", DRM_MODE_TYPE_DRIVER, 29232, 704, 705, 768,
1592 800, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001593 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001594 { DRM_MODE("720x350", DRM_MODE_TYPE_DRIVER, 18751, 720, 721, 784,
1595 816, 0, 350, 351, 382, 383, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001596 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001597 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 21199, 720, 721, 784,
1598 816, 0, 400, 401, 432, 433, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001599 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001600 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 25116, 720, 721, 784,
1601 816, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001602 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001603 { DRM_MODE("720x540", DRM_MODE_TYPE_DRIVER, 28054, 720, 721, 784,
1604 816, 0, 540, 541, 572, 573, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001605 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001606 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 29816, 720, 721, 784,
1607 816, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001608 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001609 { DRM_MODE("768x576", DRM_MODE_TYPE_DRIVER, 31570, 768, 769, 832,
1610 864, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001611 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001612 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 34030, 800, 801, 864,
1613 896, 0, 600, 601, 632, 633, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001614 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001615 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 36581, 832, 833, 896,
1616 928, 0, 624, 625, 656, 657, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001617 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001618 { DRM_MODE("920x766", DRM_MODE_TYPE_DRIVER, 48707, 920, 921, 984,
1619 1016, 0, 766, 767, 798, 799, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001620 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001621 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 53827, 1024, 1025, 1088,
1622 1120, 0, 768, 769, 800, 801, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001623 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001624 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 87265, 1280, 1281, 1344,
1625 1376, 0, 1024, 1025, 1056, 1057, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001626 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1627};
1628
1629static void intel_sdvo_get_tv_modes(struct drm_connector *connector)
1630{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001631 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001632 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001633 struct intel_sdvo_sdtv_resolution_request tv_res;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001634 uint32_t reply = 0, format_map = 0;
1635 int i;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001636
1637 /* Read the list of supported input resolutions for the selected TV
1638 * format.
1639 */
Chris Wilson40039752010-08-04 13:50:26 +01001640 format_map = 1 << intel_sdvo->tv_format_index;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001641 memcpy(&tv_res, &format_map,
Chris Wilson32aad862010-08-04 13:50:25 +01001642 min(sizeof(format_map), sizeof(struct intel_sdvo_sdtv_resolution_request)));
Zhao Yakuice6feab2009-08-24 13:50:26 +08001643
Chris Wilson32aad862010-08-04 13:50:25 +01001644 if (!intel_sdvo_set_target_output(intel_sdvo, intel_sdvo->attached_output))
1645 return;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001646
Chris Wilson32aad862010-08-04 13:50:25 +01001647 BUILD_BUG_ON(sizeof(tv_res) != 3);
1648 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT,
1649 &tv_res, sizeof(tv_res)))
1650 return;
1651 if (!intel_sdvo_read_response(intel_sdvo, &reply, 3))
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001652 return;
1653
1654 for (i = 0; i < ARRAY_SIZE(sdvo_tv_modes); i++)
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001655 if (reply & (1 << i)) {
1656 struct drm_display_mode *nmode;
1657 nmode = drm_mode_duplicate(connector->dev,
Chris Wilson32aad862010-08-04 13:50:25 +01001658 &sdvo_tv_modes[i]);
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001659 if (nmode)
1660 drm_mode_probed_add(connector, nmode);
1661 }
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001662}
1663
Ma Ling7086c872009-05-13 11:20:06 +08001664static void intel_sdvo_get_lvds_modes(struct drm_connector *connector)
1665{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001666 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001667 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Ma Ling7086c872009-05-13 11:20:06 +08001668 struct drm_i915_private *dev_priv = connector->dev->dev_private;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001669 struct drm_display_mode *newmode;
Ma Ling7086c872009-05-13 11:20:06 +08001670
1671 /*
1672 * Attempt to get the mode list from DDC.
1673 * Assume that the preferred modes are
1674 * arranged in priority order.
1675 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001676 intel_ddc_get_modes(connector, intel_sdvo->base.ddc_bus);
Ma Ling7086c872009-05-13 11:20:06 +08001677 if (list_empty(&connector->probed_modes) == false)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001678 goto end;
Ma Ling7086c872009-05-13 11:20:06 +08001679
1680 /* Fetch modes from VBT */
1681 if (dev_priv->sdvo_lvds_vbt_mode != NULL) {
Ma Ling7086c872009-05-13 11:20:06 +08001682 newmode = drm_mode_duplicate(connector->dev,
1683 dev_priv->sdvo_lvds_vbt_mode);
1684 if (newmode != NULL) {
1685 /* Guarantee the mode is preferred */
1686 newmode->type = (DRM_MODE_TYPE_PREFERRED |
1687 DRM_MODE_TYPE_DRIVER);
1688 drm_mode_probed_add(connector, newmode);
1689 }
1690 }
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001691
1692end:
1693 list_for_each_entry(newmode, &connector->probed_modes, head) {
1694 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001695 intel_sdvo->sdvo_lvds_fixed_mode =
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001696 drm_mode_duplicate(connector->dev, newmode);
Chris Wilson85454232010-08-08 14:28:23 +01001697 intel_sdvo->is_lvds = true;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001698 break;
1699 }
1700 }
1701
Ma Ling7086c872009-05-13 11:20:06 +08001702}
1703
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001704static int intel_sdvo_get_modes(struct drm_connector *connector)
1705{
Chris Wilson615fb932010-08-04 13:50:24 +01001706 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001707
Chris Wilson615fb932010-08-04 13:50:24 +01001708 if (IS_TV(intel_sdvo_connector))
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001709 intel_sdvo_get_tv_modes(connector);
Chris Wilson615fb932010-08-04 13:50:24 +01001710 else if (IS_LVDS(intel_sdvo_connector))
Ma Ling7086c872009-05-13 11:20:06 +08001711 intel_sdvo_get_lvds_modes(connector);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001712 else
1713 intel_sdvo_get_ddc_modes(connector);
1714
Chris Wilson32aad862010-08-04 13:50:25 +01001715 return !list_empty(&connector->probed_modes);
Jesse Barnes79e53942008-11-07 14:24:08 -08001716}
1717
Chris Wilsonfcc8d672010-08-04 13:50:27 +01001718static void
1719intel_sdvo_destroy_enhance_property(struct drm_connector *connector)
Zhao Yakuib9219c52009-09-10 15:45:46 +08001720{
Chris Wilson615fb932010-08-04 13:50:24 +01001721 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Zhao Yakuib9219c52009-09-10 15:45:46 +08001722 struct drm_device *dev = connector->dev;
1723
Chris Wilsonc5521702010-08-04 13:50:28 +01001724 if (intel_sdvo_connector->left)
1725 drm_property_destroy(dev, intel_sdvo_connector->left);
1726 if (intel_sdvo_connector->right)
1727 drm_property_destroy(dev, intel_sdvo_connector->right);
1728 if (intel_sdvo_connector->top)
1729 drm_property_destroy(dev, intel_sdvo_connector->top);
1730 if (intel_sdvo_connector->bottom)
1731 drm_property_destroy(dev, intel_sdvo_connector->bottom);
1732 if (intel_sdvo_connector->hpos)
1733 drm_property_destroy(dev, intel_sdvo_connector->hpos);
1734 if (intel_sdvo_connector->vpos)
1735 drm_property_destroy(dev, intel_sdvo_connector->vpos);
1736 if (intel_sdvo_connector->saturation)
1737 drm_property_destroy(dev, intel_sdvo_connector->saturation);
1738 if (intel_sdvo_connector->contrast)
1739 drm_property_destroy(dev, intel_sdvo_connector->contrast);
1740 if (intel_sdvo_connector->hue)
1741 drm_property_destroy(dev, intel_sdvo_connector->hue);
1742 if (intel_sdvo_connector->sharpness)
1743 drm_property_destroy(dev, intel_sdvo_connector->sharpness);
1744 if (intel_sdvo_connector->flicker_filter)
1745 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter);
1746 if (intel_sdvo_connector->flicker_filter_2d)
1747 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter_2d);
1748 if (intel_sdvo_connector->flicker_filter_adaptive)
1749 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter_adaptive);
1750 if (intel_sdvo_connector->tv_luma_filter)
1751 drm_property_destroy(dev, intel_sdvo_connector->tv_luma_filter);
1752 if (intel_sdvo_connector->tv_chroma_filter)
1753 drm_property_destroy(dev, intel_sdvo_connector->tv_chroma_filter);
Chris Wilsone0442182010-08-04 13:50:29 +01001754 if (intel_sdvo_connector->dot_crawl)
1755 drm_property_destroy(dev, intel_sdvo_connector->dot_crawl);
Chris Wilsonc5521702010-08-04 13:50:28 +01001756 if (intel_sdvo_connector->brightness)
1757 drm_property_destroy(dev, intel_sdvo_connector->brightness);
Zhao Yakuib9219c52009-09-10 15:45:46 +08001758}
1759
Jesse Barnes79e53942008-11-07 14:24:08 -08001760static void intel_sdvo_destroy(struct drm_connector *connector)
1761{
Chris Wilson615fb932010-08-04 13:50:24 +01001762 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001763
Chris Wilsonc5521702010-08-04 13:50:28 +01001764 if (intel_sdvo_connector->tv_format)
Zhao Yakuice6feab2009-08-24 13:50:26 +08001765 drm_property_destroy(connector->dev,
Chris Wilsonc5521702010-08-04 13:50:28 +01001766 intel_sdvo_connector->tv_format);
Zhao Yakuice6feab2009-08-24 13:50:26 +08001767
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001768 intel_sdvo_destroy_enhance_property(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001769 drm_sysfs_connector_remove(connector);
1770 drm_connector_cleanup(connector);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001771 kfree(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001772}
1773
Zhao Yakuice6feab2009-08-24 13:50:26 +08001774static int
1775intel_sdvo_set_property(struct drm_connector *connector,
1776 struct drm_property *property,
1777 uint64_t val)
1778{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001779 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001780 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Chris Wilson615fb932010-08-04 13:50:24 +01001781 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Zhao Yakuib9219c52009-09-10 15:45:46 +08001782 uint16_t temp_value;
Chris Wilson32aad862010-08-04 13:50:25 +01001783 uint8_t cmd;
1784 int ret;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001785
1786 ret = drm_connector_property_set_value(connector, property, val);
Chris Wilson32aad862010-08-04 13:50:25 +01001787 if (ret)
1788 return ret;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001789
Chris Wilsonc5521702010-08-04 13:50:28 +01001790#define CHECK_PROPERTY(name, NAME) \
1791 if (intel_sdvo_connector->name == property) { \
1792 if (intel_sdvo_connector->cur_##name == temp_value) return 0; \
1793 if (intel_sdvo_connector->max_##name < temp_value) return -EINVAL; \
1794 cmd = SDVO_CMD_SET_##NAME; \
1795 intel_sdvo_connector->cur_##name = temp_value; \
1796 goto set_value; \
1797 }
1798
1799 if (property == intel_sdvo_connector->tv_format) {
Chris Wilson32aad862010-08-04 13:50:25 +01001800 if (val >= TV_FORMAT_NUM)
1801 return -EINVAL;
1802
Chris Wilson40039752010-08-04 13:50:26 +01001803 if (intel_sdvo->tv_format_index ==
Chris Wilson615fb932010-08-04 13:50:24 +01001804 intel_sdvo_connector->tv_format_supported[val])
Chris Wilson32aad862010-08-04 13:50:25 +01001805 return 0;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001806
Chris Wilson40039752010-08-04 13:50:26 +01001807 intel_sdvo->tv_format_index = intel_sdvo_connector->tv_format_supported[val];
Chris Wilsonc5521702010-08-04 13:50:28 +01001808 goto done;
Chris Wilson32aad862010-08-04 13:50:25 +01001809 } else if (IS_TV_OR_LVDS(intel_sdvo_connector)) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001810 temp_value = val;
Chris Wilsonc5521702010-08-04 13:50:28 +01001811 if (intel_sdvo_connector->left == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001812 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001813 intel_sdvo_connector->right, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001814 if (intel_sdvo_connector->left_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001815 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001816
Chris Wilson615fb932010-08-04 13:50:24 +01001817 intel_sdvo_connector->left_margin = temp_value;
1818 intel_sdvo_connector->right_margin = temp_value;
1819 temp_value = intel_sdvo_connector->max_hscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001820 intel_sdvo_connector->left_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001821 cmd = SDVO_CMD_SET_OVERSCAN_H;
Chris Wilsonc5521702010-08-04 13:50:28 +01001822 goto set_value;
1823 } else if (intel_sdvo_connector->right == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001824 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001825 intel_sdvo_connector->left, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001826 if (intel_sdvo_connector->right_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001827 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001828
Chris Wilson615fb932010-08-04 13:50:24 +01001829 intel_sdvo_connector->left_margin = temp_value;
1830 intel_sdvo_connector->right_margin = temp_value;
1831 temp_value = intel_sdvo_connector->max_hscan -
1832 intel_sdvo_connector->left_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001833 cmd = SDVO_CMD_SET_OVERSCAN_H;
Chris Wilsonc5521702010-08-04 13:50:28 +01001834 goto set_value;
1835 } else if (intel_sdvo_connector->top == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001836 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001837 intel_sdvo_connector->bottom, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001838 if (intel_sdvo_connector->top_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001839 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001840
Chris Wilson615fb932010-08-04 13:50:24 +01001841 intel_sdvo_connector->top_margin = temp_value;
1842 intel_sdvo_connector->bottom_margin = temp_value;
1843 temp_value = intel_sdvo_connector->max_vscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001844 intel_sdvo_connector->top_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001845 cmd = SDVO_CMD_SET_OVERSCAN_V;
Chris Wilsonc5521702010-08-04 13:50:28 +01001846 goto set_value;
1847 } else if (intel_sdvo_connector->bottom == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001848 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001849 intel_sdvo_connector->top, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001850 if (intel_sdvo_connector->bottom_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001851 return 0;
1852
Chris Wilson615fb932010-08-04 13:50:24 +01001853 intel_sdvo_connector->top_margin = temp_value;
1854 intel_sdvo_connector->bottom_margin = temp_value;
1855 temp_value = intel_sdvo_connector->max_vscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001856 intel_sdvo_connector->top_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001857 cmd = SDVO_CMD_SET_OVERSCAN_V;
Chris Wilsonc5521702010-08-04 13:50:28 +01001858 goto set_value;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001859 }
Chris Wilsonc5521702010-08-04 13:50:28 +01001860 CHECK_PROPERTY(hpos, HPOS)
1861 CHECK_PROPERTY(vpos, VPOS)
1862 CHECK_PROPERTY(saturation, SATURATION)
1863 CHECK_PROPERTY(contrast, CONTRAST)
1864 CHECK_PROPERTY(hue, HUE)
1865 CHECK_PROPERTY(brightness, BRIGHTNESS)
1866 CHECK_PROPERTY(sharpness, SHARPNESS)
1867 CHECK_PROPERTY(flicker_filter, FLICKER_FILTER)
1868 CHECK_PROPERTY(flicker_filter_2d, FLICKER_FILTER_2D)
1869 CHECK_PROPERTY(flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE)
1870 CHECK_PROPERTY(tv_chroma_filter, TV_CHROMA_FILTER)
1871 CHECK_PROPERTY(tv_luma_filter, TV_LUMA_FILTER)
Chris Wilsone0442182010-08-04 13:50:29 +01001872 CHECK_PROPERTY(dot_crawl, DOT_CRAWL)
Zhao Yakuib9219c52009-09-10 15:45:46 +08001873 }
Chris Wilsonc5521702010-08-04 13:50:28 +01001874
1875 return -EINVAL; /* unknown property */
1876
1877set_value:
1878 if (!intel_sdvo_set_value(intel_sdvo, cmd, &temp_value, 2))
1879 return -EIO;
1880
1881
1882done:
1883 if (encoder->crtc) {
1884 struct drm_crtc *crtc = encoder->crtc;
1885
Zhao Yakuice6feab2009-08-24 13:50:26 +08001886 drm_crtc_helper_set_mode(crtc, &crtc->mode, crtc->x,
Chris Wilsonc5521702010-08-04 13:50:28 +01001887 crtc->y, crtc->fb);
1888 }
1889
Chris Wilson32aad862010-08-04 13:50:25 +01001890 return 0;
Chris Wilsonc5521702010-08-04 13:50:28 +01001891#undef CHECK_PROPERTY
Zhao Yakuice6feab2009-08-24 13:50:26 +08001892}
1893
Jesse Barnes79e53942008-11-07 14:24:08 -08001894static const struct drm_encoder_helper_funcs intel_sdvo_helper_funcs = {
1895 .dpms = intel_sdvo_dpms,
1896 .mode_fixup = intel_sdvo_mode_fixup,
1897 .prepare = intel_encoder_prepare,
1898 .mode_set = intel_sdvo_mode_set,
1899 .commit = intel_encoder_commit,
1900};
1901
1902static const struct drm_connector_funcs intel_sdvo_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -07001903 .dpms = drm_helper_connector_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -08001904 .detect = intel_sdvo_detect,
1905 .fill_modes = drm_helper_probe_single_connector_modes,
Zhao Yakuice6feab2009-08-24 13:50:26 +08001906 .set_property = intel_sdvo_set_property,
Jesse Barnes79e53942008-11-07 14:24:08 -08001907 .destroy = intel_sdvo_destroy,
1908};
1909
1910static const struct drm_connector_helper_funcs intel_sdvo_connector_helper_funcs = {
1911 .get_modes = intel_sdvo_get_modes,
1912 .mode_valid = intel_sdvo_mode_valid,
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001913 .best_encoder = intel_attached_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -08001914};
1915
Hannes Ederb358d0a2008-12-18 21:18:47 +01001916static void intel_sdvo_enc_destroy(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08001917{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001918 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001919
Chris Wilsonea5b2132010-08-04 13:50:23 +01001920 if (intel_sdvo->analog_ddc_bus)
1921 intel_i2c_destroy(intel_sdvo->analog_ddc_bus);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001922
Chris Wilsonea5b2132010-08-04 13:50:23 +01001923 if (intel_sdvo->sdvo_lvds_fixed_mode != NULL)
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001924 drm_mode_destroy(encoder->dev,
Chris Wilsonea5b2132010-08-04 13:50:23 +01001925 intel_sdvo->sdvo_lvds_fixed_mode);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001926
Chris Wilsonea5b2132010-08-04 13:50:23 +01001927 intel_encoder_destroy(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08001928}
1929
1930static const struct drm_encoder_funcs intel_sdvo_enc_funcs = {
1931 .destroy = intel_sdvo_enc_destroy,
1932};
1933
Chris Wilsonb66d8422010-08-12 15:26:41 +01001934static void
1935intel_sdvo_guess_ddc_bus(struct intel_sdvo *sdvo)
1936{
1937 uint16_t mask = 0;
1938 unsigned int num_bits;
1939
1940 /* Make a mask of outputs less than or equal to our own priority in the
1941 * list.
1942 */
1943 switch (sdvo->controlled_output) {
1944 case SDVO_OUTPUT_LVDS1:
1945 mask |= SDVO_OUTPUT_LVDS1;
1946 case SDVO_OUTPUT_LVDS0:
1947 mask |= SDVO_OUTPUT_LVDS0;
1948 case SDVO_OUTPUT_TMDS1:
1949 mask |= SDVO_OUTPUT_TMDS1;
1950 case SDVO_OUTPUT_TMDS0:
1951 mask |= SDVO_OUTPUT_TMDS0;
1952 case SDVO_OUTPUT_RGB1:
1953 mask |= SDVO_OUTPUT_RGB1;
1954 case SDVO_OUTPUT_RGB0:
1955 mask |= SDVO_OUTPUT_RGB0;
1956 break;
1957 }
1958
1959 /* Count bits to find what number we are in the priority list. */
1960 mask &= sdvo->caps.output_flags;
1961 num_bits = hweight16(mask);
1962 /* If more than 3 outputs, default to DDC bus 3 for now. */
1963 if (num_bits > 3)
1964 num_bits = 3;
1965
1966 /* Corresponds to SDVO_CONTROL_BUS_DDCx */
1967 sdvo->ddc_bus = 1 << num_bits;
1968}
Jesse Barnes79e53942008-11-07 14:24:08 -08001969
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001970/**
1971 * Choose the appropriate DDC bus for control bus switch command for this
1972 * SDVO output based on the controlled output.
1973 *
1974 * DDC bus number assignment is in a priority order of RGB outputs, then TMDS
1975 * outputs, then LVDS outputs.
1976 */
1977static void
Adam Jacksonb1083332010-04-23 16:07:40 -04001978intel_sdvo_select_ddc_bus(struct drm_i915_private *dev_priv,
Chris Wilsonea5b2132010-08-04 13:50:23 +01001979 struct intel_sdvo *sdvo, u32 reg)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001980{
Adam Jacksonb1083332010-04-23 16:07:40 -04001981 struct sdvo_device_mapping *mapping;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001982
Adam Jacksonb1083332010-04-23 16:07:40 -04001983 if (IS_SDVOB(reg))
1984 mapping = &(dev_priv->sdvo_mappings[0]);
1985 else
1986 mapping = &(dev_priv->sdvo_mappings[1]);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001987
Chris Wilsonb66d8422010-08-12 15:26:41 +01001988 if (mapping->initialized)
1989 sdvo->ddc_bus = 1 << ((mapping->ddc_pin & 0xf0) >> 4);
1990 else
1991 intel_sdvo_guess_ddc_bus(sdvo);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001992}
1993
1994static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001995intel_sdvo_get_digital_encoding_mode(struct intel_sdvo *intel_sdvo, int device)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001996{
Chris Wilson32aad862010-08-04 13:50:25 +01001997 return intel_sdvo_set_target_output(intel_sdvo,
1998 device == 0 ? SDVO_OUTPUT_TMDS0 : SDVO_OUTPUT_TMDS1) &&
1999 intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_ENCODE,
2000 &intel_sdvo->is_hdmi, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08002001}
2002
Chris Wilsonea5b2132010-08-04 13:50:23 +01002003static struct intel_sdvo *
2004intel_sdvo_chan_to_intel_sdvo(struct intel_i2c_chan *chan)
Ma Ling619ac3b2009-05-18 16:12:46 +08002005{
2006 struct drm_device *dev = chan->drm_dev;
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08002007 struct drm_encoder *encoder;
Ma Ling619ac3b2009-05-18 16:12:46 +08002008
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08002009 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002010 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
2011 if (intel_sdvo->base.ddc_bus == &chan->adapter)
2012 return intel_sdvo;
Ma Ling619ac3b2009-05-18 16:12:46 +08002013 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002014
Chris Wilson32aad862010-08-04 13:50:25 +01002015 return NULL;
Ma Ling619ac3b2009-05-18 16:12:46 +08002016}
2017
2018static int intel_sdvo_master_xfer(struct i2c_adapter *i2c_adap,
2019 struct i2c_msg msgs[], int num)
2020{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002021 struct intel_sdvo *intel_sdvo;
Ma Ling619ac3b2009-05-18 16:12:46 +08002022 struct i2c_algo_bit_data *algo_data;
Keith Packardf9c10a92009-05-30 12:16:25 -07002023 const struct i2c_algorithm *algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08002024
2025 algo_data = (struct i2c_algo_bit_data *)i2c_adap->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002026 intel_sdvo =
2027 intel_sdvo_chan_to_intel_sdvo((struct intel_i2c_chan *)
2028 (algo_data->data));
2029 if (intel_sdvo == NULL)
Ma Ling619ac3b2009-05-18 16:12:46 +08002030 return -EINVAL;
2031
Chris Wilsonea5b2132010-08-04 13:50:23 +01002032 algo = intel_sdvo->base.i2c_bus->algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08002033
Chris Wilsonea5b2132010-08-04 13:50:23 +01002034 intel_sdvo_set_control_bus_switch(intel_sdvo, intel_sdvo->ddc_bus);
Ma Ling619ac3b2009-05-18 16:12:46 +08002035 return algo->master_xfer(i2c_adap, msgs, num);
2036}
2037
2038static struct i2c_algorithm intel_sdvo_i2c_bit_algo = {
2039 .master_xfer = intel_sdvo_master_xfer,
2040};
2041
yakui_zhao714605e2009-05-31 17:18:07 +08002042static u8
Eric Anholtc751ce42010-03-25 11:48:48 -07002043intel_sdvo_get_slave_addr(struct drm_device *dev, int sdvo_reg)
yakui_zhao714605e2009-05-31 17:18:07 +08002044{
2045 struct drm_i915_private *dev_priv = dev->dev_private;
2046 struct sdvo_device_mapping *my_mapping, *other_mapping;
2047
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002048 if (IS_SDVOB(sdvo_reg)) {
yakui_zhao714605e2009-05-31 17:18:07 +08002049 my_mapping = &dev_priv->sdvo_mappings[0];
2050 other_mapping = &dev_priv->sdvo_mappings[1];
2051 } else {
2052 my_mapping = &dev_priv->sdvo_mappings[1];
2053 other_mapping = &dev_priv->sdvo_mappings[0];
2054 }
2055
2056 /* If the BIOS described our SDVO device, take advantage of it. */
2057 if (my_mapping->slave_addr)
2058 return my_mapping->slave_addr;
2059
2060 /* If the BIOS only described a different SDVO device, use the
2061 * address that it isn't using.
2062 */
2063 if (other_mapping->slave_addr) {
2064 if (other_mapping->slave_addr == 0x70)
2065 return 0x72;
2066 else
2067 return 0x70;
2068 }
2069
2070 /* No SDVO device info is found for another DVO port,
2071 * so use mapping assumption we had before BIOS parsing.
2072 */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002073 if (IS_SDVOB(sdvo_reg))
yakui_zhao714605e2009-05-31 17:18:07 +08002074 return 0x70;
2075 else
2076 return 0x72;
2077}
2078
Zhenyu Wang14571b42010-03-30 14:06:33 +08002079static void
Chris Wilson32aad862010-08-04 13:50:25 +01002080intel_sdvo_connector_init(struct drm_encoder *encoder,
2081 struct drm_connector *connector)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002082{
2083 drm_connector_init(encoder->dev, connector, &intel_sdvo_connector_funcs,
2084 connector->connector_type);
Zhao Yakui6070a4a2010-02-08 21:35:12 +08002085
Zhenyu Wang14571b42010-03-30 14:06:33 +08002086 drm_connector_helper_add(connector, &intel_sdvo_connector_helper_funcs);
2087
2088 connector->interlace_allowed = 0;
2089 connector->doublescan_allowed = 0;
2090 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
2091
2092 drm_mode_connector_attach_encoder(connector, encoder);
2093 drm_sysfs_connector_add(connector);
2094}
2095
2096static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002097intel_sdvo_dvi_init(struct intel_sdvo *intel_sdvo, int device)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002098{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002099 struct drm_encoder *encoder = &intel_sdvo->base.enc;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002100 struct drm_connector *connector;
2101 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002102 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002103
Chris Wilson615fb932010-08-04 13:50:24 +01002104 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2105 if (!intel_sdvo_connector)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002106 return false;
2107
Zhenyu Wang14571b42010-03-30 14:06:33 +08002108 if (device == 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002109 intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS0;
Chris Wilson615fb932010-08-04 13:50:24 +01002110 intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS0;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002111 } else if (device == 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002112 intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS1;
Chris Wilson615fb932010-08-04 13:50:24 +01002113 intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS1;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002114 }
2115
Chris Wilson615fb932010-08-04 13:50:24 +01002116 intel_connector = &intel_sdvo_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002117 connector = &intel_connector->base;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002118 connector->polled = DRM_CONNECTOR_POLL_CONNECT | DRM_CONNECTOR_POLL_DISCONNECT;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002119 encoder->encoder_type = DRM_MODE_ENCODER_TMDS;
2120 connector->connector_type = DRM_MODE_CONNECTOR_DVID;
2121
Chris Wilsonea5b2132010-08-04 13:50:23 +01002122 if (intel_sdvo_get_supp_encode(intel_sdvo, &intel_sdvo->encode)
2123 && intel_sdvo_get_digital_encoding_mode(intel_sdvo, device)
2124 && intel_sdvo->is_hdmi) {
Zhenyu Wang14571b42010-03-30 14:06:33 +08002125 /* enable hdmi encoding mode if supported */
Chris Wilsonea5b2132010-08-04 13:50:23 +01002126 intel_sdvo_set_encode(intel_sdvo, SDVO_ENCODE_HDMI);
2127 intel_sdvo_set_colorimetry(intel_sdvo,
Zhenyu Wang14571b42010-03-30 14:06:33 +08002128 SDVO_COLORIMETRY_RGB256);
2129 connector->connector_type = DRM_MODE_CONNECTOR_HDMIA;
2130 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002131 intel_sdvo->base.clone_mask = ((1 << INTEL_SDVO_NON_TV_CLONE_BIT) |
2132 (1 << INTEL_ANALOG_CLONE_BIT));
Zhenyu Wang14571b42010-03-30 14:06:33 +08002133
Chris Wilson32aad862010-08-04 13:50:25 +01002134 intel_sdvo_connector_init(encoder, connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002135
2136 return true;
2137}
2138
2139static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002140intel_sdvo_tv_init(struct intel_sdvo *intel_sdvo, int type)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002141{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002142 struct drm_encoder *encoder = &intel_sdvo->base.enc;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002143 struct drm_connector *connector;
2144 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002145 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002146
Chris Wilson615fb932010-08-04 13:50:24 +01002147 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2148 if (!intel_sdvo_connector)
2149 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002150
Chris Wilson615fb932010-08-04 13:50:24 +01002151 intel_connector = &intel_sdvo_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002152 connector = &intel_connector->base;
2153 encoder->encoder_type = DRM_MODE_ENCODER_TVDAC;
2154 connector->connector_type = DRM_MODE_CONNECTOR_SVIDEO;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002155
Chris Wilsonea5b2132010-08-04 13:50:23 +01002156 intel_sdvo->controlled_output |= type;
Chris Wilson615fb932010-08-04 13:50:24 +01002157 intel_sdvo_connector->output_flag = type;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002158
Chris Wilsonea5b2132010-08-04 13:50:23 +01002159 intel_sdvo->is_tv = true;
2160 intel_sdvo->base.needs_tv_clock = true;
2161 intel_sdvo->base.clone_mask = 1 << INTEL_SDVO_TV_CLONE_BIT;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002162
Chris Wilson32aad862010-08-04 13:50:25 +01002163 intel_sdvo_connector_init(encoder, connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002164
Chris Wilson32aad862010-08-04 13:50:25 +01002165 if (!intel_sdvo_tv_create_property(intel_sdvo, intel_sdvo_connector, type))
2166 goto err;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002167
Chris Wilson32aad862010-08-04 13:50:25 +01002168 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
2169 goto err;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002170
2171 return true;
Chris Wilson32aad862010-08-04 13:50:25 +01002172
2173err:
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002174 intel_sdvo_destroy_enhance_property(connector);
Chris Wilson32aad862010-08-04 13:50:25 +01002175 kfree(intel_sdvo_connector);
2176 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002177}
2178
2179static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002180intel_sdvo_analog_init(struct intel_sdvo *intel_sdvo, int device)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002181{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002182 struct drm_encoder *encoder = &intel_sdvo->base.enc;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002183 struct drm_connector *connector;
2184 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002185 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002186
Chris Wilson615fb932010-08-04 13:50:24 +01002187 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2188 if (!intel_sdvo_connector)
2189 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002190
Chris Wilson615fb932010-08-04 13:50:24 +01002191 intel_connector = &intel_sdvo_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002192 connector = &intel_connector->base;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002193 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002194 encoder->encoder_type = DRM_MODE_ENCODER_DAC;
2195 connector->connector_type = DRM_MODE_CONNECTOR_VGA;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002196
2197 if (device == 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002198 intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB0;
Chris Wilson615fb932010-08-04 13:50:24 +01002199 intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB0;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002200 } else if (device == 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002201 intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB1;
Chris Wilson615fb932010-08-04 13:50:24 +01002202 intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB1;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002203 }
2204
Chris Wilsonea5b2132010-08-04 13:50:23 +01002205 intel_sdvo->base.clone_mask = ((1 << INTEL_SDVO_NON_TV_CLONE_BIT) |
2206 (1 << INTEL_ANALOG_CLONE_BIT));
Zhenyu Wang14571b42010-03-30 14:06:33 +08002207
Chris Wilson32aad862010-08-04 13:50:25 +01002208 intel_sdvo_connector_init(encoder, connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002209 return true;
2210}
2211
2212static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002213intel_sdvo_lvds_init(struct intel_sdvo *intel_sdvo, int device)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002214{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002215 struct drm_encoder *encoder = &intel_sdvo->base.enc;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002216 struct drm_connector *connector;
2217 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002218 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002219
Chris Wilson615fb932010-08-04 13:50:24 +01002220 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2221 if (!intel_sdvo_connector)
2222 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002223
Chris Wilson615fb932010-08-04 13:50:24 +01002224 intel_connector = &intel_sdvo_connector->base;
2225 connector = &intel_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002226 encoder->encoder_type = DRM_MODE_ENCODER_LVDS;
2227 connector->connector_type = DRM_MODE_CONNECTOR_LVDS;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002228
Zhenyu Wang14571b42010-03-30 14:06:33 +08002229 if (device == 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002230 intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS0;
Chris Wilson615fb932010-08-04 13:50:24 +01002231 intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS0;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002232 } else if (device == 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002233 intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS1;
Chris Wilson615fb932010-08-04 13:50:24 +01002234 intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS1;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002235 }
2236
Chris Wilsonea5b2132010-08-04 13:50:23 +01002237 intel_sdvo->base.clone_mask = ((1 << INTEL_ANALOG_CLONE_BIT) |
2238 (1 << INTEL_SDVO_LVDS_CLONE_BIT));
Zhenyu Wang14571b42010-03-30 14:06:33 +08002239
Chris Wilson32aad862010-08-04 13:50:25 +01002240 intel_sdvo_connector_init(encoder, connector);
2241 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
2242 goto err;
2243
2244 return true;
2245
2246err:
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002247 intel_sdvo_destroy_enhance_property(connector);
Chris Wilson32aad862010-08-04 13:50:25 +01002248 kfree(intel_sdvo_connector);
2249 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002250}
Zhao Yakui6070a4a2010-02-08 21:35:12 +08002251
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002252static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002253intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, uint16_t flags)
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002254{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002255 intel_sdvo->is_tv = false;
2256 intel_sdvo->base.needs_tv_clock = false;
2257 intel_sdvo->is_lvds = false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002258
Zhenyu Wang14571b42010-03-30 14:06:33 +08002259 /* SDVO requires XXX1 function may not exist unless it has XXX0 function.*/
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002260
Zhenyu Wang14571b42010-03-30 14:06:33 +08002261 if (flags & SDVO_OUTPUT_TMDS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002262 if (!intel_sdvo_dvi_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002263 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002264
Zhenyu Wang14571b42010-03-30 14:06:33 +08002265 if ((flags & SDVO_TMDS_MASK) == SDVO_TMDS_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002266 if (!intel_sdvo_dvi_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002267 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002268
Zhenyu Wang14571b42010-03-30 14:06:33 +08002269 /* TV has no XXX1 function block */
Zhenyu Wanga1f4b7ff2010-03-29 23:16:13 +08002270 if (flags & SDVO_OUTPUT_SVID0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002271 if (!intel_sdvo_tv_init(intel_sdvo, SDVO_OUTPUT_SVID0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002272 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002273
Zhenyu Wang14571b42010-03-30 14:06:33 +08002274 if (flags & SDVO_OUTPUT_CVBS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002275 if (!intel_sdvo_tv_init(intel_sdvo, SDVO_OUTPUT_CVBS0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002276 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002277
Zhenyu Wang14571b42010-03-30 14:06:33 +08002278 if (flags & SDVO_OUTPUT_RGB0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002279 if (!intel_sdvo_analog_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002280 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002281
Zhenyu Wang14571b42010-03-30 14:06:33 +08002282 if ((flags & SDVO_RGB_MASK) == SDVO_RGB_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002283 if (!intel_sdvo_analog_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002284 return false;
Zhao Yakui2dd87382010-01-27 16:32:46 +08002285
Zhenyu Wang14571b42010-03-30 14:06:33 +08002286 if (flags & SDVO_OUTPUT_LVDS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002287 if (!intel_sdvo_lvds_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002288 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002289
Zhenyu Wang14571b42010-03-30 14:06:33 +08002290 if ((flags & SDVO_LVDS_MASK) == SDVO_LVDS_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002291 if (!intel_sdvo_lvds_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002292 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002293
Zhenyu Wang14571b42010-03-30 14:06:33 +08002294 if ((flags & SDVO_OUTPUT_MASK) == 0) {
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002295 unsigned char bytes[2];
2296
Chris Wilsonea5b2132010-08-04 13:50:23 +01002297 intel_sdvo->controlled_output = 0;
2298 memcpy(bytes, &intel_sdvo->caps.output_flags, 2);
Dave Airlie51c8b402009-08-20 13:38:04 +10002299 DRM_DEBUG_KMS("%s: Unknown SDVO output type (0x%02x%02x)\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +01002300 SDVO_NAME(intel_sdvo),
Dave Airlie51c8b402009-08-20 13:38:04 +10002301 bytes[0], bytes[1]);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002302 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002303 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002304 intel_sdvo->base.crtc_mask = (1 << 0) | (1 << 1);
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002305
Zhenyu Wang14571b42010-03-30 14:06:33 +08002306 return true;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002307}
2308
Chris Wilson32aad862010-08-04 13:50:25 +01002309static bool intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
2310 struct intel_sdvo_connector *intel_sdvo_connector,
2311 int type)
Zhao Yakuice6feab2009-08-24 13:50:26 +08002312{
Chris Wilson32aad862010-08-04 13:50:25 +01002313 struct drm_device *dev = intel_sdvo->base.enc.dev;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002314 struct intel_sdvo_tv_format format;
2315 uint32_t format_map, i;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002316
Chris Wilson32aad862010-08-04 13:50:25 +01002317 if (!intel_sdvo_set_target_output(intel_sdvo, type))
2318 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002319
Chris Wilson32aad862010-08-04 13:50:25 +01002320 if (!intel_sdvo_get_value(intel_sdvo,
2321 SDVO_CMD_GET_SUPPORTED_TV_FORMATS,
2322 &format, sizeof(format)))
2323 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002324
Chris Wilson32aad862010-08-04 13:50:25 +01002325 memcpy(&format_map, &format, min(sizeof(format_map), sizeof(format)));
Zhao Yakuice6feab2009-08-24 13:50:26 +08002326
2327 if (format_map == 0)
Chris Wilson32aad862010-08-04 13:50:25 +01002328 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002329
Chris Wilson615fb932010-08-04 13:50:24 +01002330 intel_sdvo_connector->format_supported_num = 0;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002331 for (i = 0 ; i < TV_FORMAT_NUM; i++)
Chris Wilson40039752010-08-04 13:50:26 +01002332 if (format_map & (1 << i))
2333 intel_sdvo_connector->tv_format_supported[intel_sdvo_connector->format_supported_num++] = i;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002334
2335
Chris Wilsonc5521702010-08-04 13:50:28 +01002336 intel_sdvo_connector->tv_format =
Chris Wilson32aad862010-08-04 13:50:25 +01002337 drm_property_create(dev, DRM_MODE_PROP_ENUM,
2338 "mode", intel_sdvo_connector->format_supported_num);
Chris Wilsonc5521702010-08-04 13:50:28 +01002339 if (!intel_sdvo_connector->tv_format)
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002340 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002341
Chris Wilson615fb932010-08-04 13:50:24 +01002342 for (i = 0; i < intel_sdvo_connector->format_supported_num; i++)
Zhao Yakuice6feab2009-08-24 13:50:26 +08002343 drm_property_add_enum(
Chris Wilsonc5521702010-08-04 13:50:28 +01002344 intel_sdvo_connector->tv_format, i,
Chris Wilson40039752010-08-04 13:50:26 +01002345 i, tv_format_names[intel_sdvo_connector->tv_format_supported[i]]);
Zhao Yakuice6feab2009-08-24 13:50:26 +08002346
Chris Wilson40039752010-08-04 13:50:26 +01002347 intel_sdvo->tv_format_index = intel_sdvo_connector->tv_format_supported[0];
Chris Wilson32aad862010-08-04 13:50:25 +01002348 drm_connector_attach_property(&intel_sdvo_connector->base.base,
Chris Wilsonc5521702010-08-04 13:50:28 +01002349 intel_sdvo_connector->tv_format, 0);
Chris Wilson32aad862010-08-04 13:50:25 +01002350 return true;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002351
2352}
2353
Chris Wilsonc5521702010-08-04 13:50:28 +01002354#define ENHANCEMENT(name, NAME) do { \
2355 if (enhancements.name) { \
2356 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_MAX_##NAME, &data_value, 4) || \
2357 !intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_##NAME, &response, 2)) \
2358 return false; \
2359 intel_sdvo_connector->max_##name = data_value[0]; \
2360 intel_sdvo_connector->cur_##name = response; \
2361 intel_sdvo_connector->name = \
2362 drm_property_create(dev, DRM_MODE_PROP_RANGE, #name, 2); \
2363 if (!intel_sdvo_connector->name) return false; \
2364 intel_sdvo_connector->name->values[0] = 0; \
2365 intel_sdvo_connector->name->values[1] = data_value[0]; \
2366 drm_connector_attach_property(connector, \
2367 intel_sdvo_connector->name, \
2368 intel_sdvo_connector->cur_##name); \
2369 DRM_DEBUG_KMS(#name ": max %d, default %d, current %d\n", \
2370 data_value[0], data_value[1], response); \
2371 } \
2372} while(0)
2373
2374static bool
2375intel_sdvo_create_enhance_property_tv(struct intel_sdvo *intel_sdvo,
2376 struct intel_sdvo_connector *intel_sdvo_connector,
2377 struct intel_sdvo_enhancements_reply enhancements)
Zhao Yakuib9219c52009-09-10 15:45:46 +08002378{
Chris Wilson32aad862010-08-04 13:50:25 +01002379 struct drm_device *dev = intel_sdvo->base.enc.dev;
2380 struct drm_connector *connector = &intel_sdvo_connector->base.base;
Zhao Yakuib9219c52009-09-10 15:45:46 +08002381 uint16_t response, data_value[2];
2382
Chris Wilsonc5521702010-08-04 13:50:28 +01002383 /* when horizontal overscan is supported, Add the left/right property */
2384 if (enhancements.overscan_h) {
2385 if (!intel_sdvo_get_value(intel_sdvo,
2386 SDVO_CMD_GET_MAX_OVERSCAN_H,
2387 &data_value, 4))
2388 return false;
2389
2390 if (!intel_sdvo_get_value(intel_sdvo,
2391 SDVO_CMD_GET_OVERSCAN_H,
2392 &response, 2))
2393 return false;
2394
2395 intel_sdvo_connector->max_hscan = data_value[0];
2396 intel_sdvo_connector->left_margin = data_value[0] - response;
2397 intel_sdvo_connector->right_margin = intel_sdvo_connector->left_margin;
2398 intel_sdvo_connector->left =
2399 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2400 "left_margin", 2);
2401 if (!intel_sdvo_connector->left)
2402 return false;
2403
2404 intel_sdvo_connector->left->values[0] = 0;
2405 intel_sdvo_connector->left->values[1] = data_value[0];
2406 drm_connector_attach_property(connector,
2407 intel_sdvo_connector->left,
2408 intel_sdvo_connector->left_margin);
2409
2410 intel_sdvo_connector->right =
2411 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2412 "right_margin", 2);
2413 if (!intel_sdvo_connector->right)
2414 return false;
2415
2416 intel_sdvo_connector->right->values[0] = 0;
2417 intel_sdvo_connector->right->values[1] = data_value[0];
2418 drm_connector_attach_property(connector,
2419 intel_sdvo_connector->right,
2420 intel_sdvo_connector->right_margin);
2421 DRM_DEBUG_KMS("h_overscan: max %d, "
2422 "default %d, current %d\n",
2423 data_value[0], data_value[1], response);
2424 }
2425
2426 if (enhancements.overscan_v) {
2427 if (!intel_sdvo_get_value(intel_sdvo,
2428 SDVO_CMD_GET_MAX_OVERSCAN_V,
2429 &data_value, 4))
2430 return false;
2431
2432 if (!intel_sdvo_get_value(intel_sdvo,
2433 SDVO_CMD_GET_OVERSCAN_V,
2434 &response, 2))
2435 return false;
2436
2437 intel_sdvo_connector->max_vscan = data_value[0];
2438 intel_sdvo_connector->top_margin = data_value[0] - response;
2439 intel_sdvo_connector->bottom_margin = intel_sdvo_connector->top_margin;
2440 intel_sdvo_connector->top =
2441 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2442 "top_margin", 2);
2443 if (!intel_sdvo_connector->top)
2444 return false;
2445
2446 intel_sdvo_connector->top->values[0] = 0;
2447 intel_sdvo_connector->top->values[1] = data_value[0];
2448 drm_connector_attach_property(connector,
2449 intel_sdvo_connector->top,
2450 intel_sdvo_connector->top_margin);
2451
2452 intel_sdvo_connector->bottom =
2453 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2454 "bottom_margin", 2);
2455 if (!intel_sdvo_connector->bottom)
2456 return false;
2457
2458 intel_sdvo_connector->bottom->values[0] = 0;
2459 intel_sdvo_connector->bottom->values[1] = data_value[0];
2460 drm_connector_attach_property(connector,
2461 intel_sdvo_connector->bottom,
2462 intel_sdvo_connector->bottom_margin);
2463 DRM_DEBUG_KMS("v_overscan: max %d, "
2464 "default %d, current %d\n",
2465 data_value[0], data_value[1], response);
2466 }
2467
2468 ENHANCEMENT(hpos, HPOS);
2469 ENHANCEMENT(vpos, VPOS);
2470 ENHANCEMENT(saturation, SATURATION);
2471 ENHANCEMENT(contrast, CONTRAST);
2472 ENHANCEMENT(hue, HUE);
2473 ENHANCEMENT(sharpness, SHARPNESS);
2474 ENHANCEMENT(brightness, BRIGHTNESS);
2475 ENHANCEMENT(flicker_filter, FLICKER_FILTER);
2476 ENHANCEMENT(flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE);
2477 ENHANCEMENT(flicker_filter_2d, FLICKER_FILTER_2D);
2478 ENHANCEMENT(tv_chroma_filter, TV_CHROMA_FILTER);
2479 ENHANCEMENT(tv_luma_filter, TV_LUMA_FILTER);
2480
Chris Wilsone0442182010-08-04 13:50:29 +01002481 if (enhancements.dot_crawl) {
2482 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_DOT_CRAWL, &response, 2))
2483 return false;
2484
2485 intel_sdvo_connector->max_dot_crawl = 1;
2486 intel_sdvo_connector->cur_dot_crawl = response & 0x1;
2487 intel_sdvo_connector->dot_crawl =
2488 drm_property_create(dev, DRM_MODE_PROP_RANGE, "dot_crawl", 2);
2489 if (!intel_sdvo_connector->dot_crawl)
2490 return false;
2491
2492 intel_sdvo_connector->dot_crawl->values[0] = 0;
2493 intel_sdvo_connector->dot_crawl->values[1] = 1;
2494 drm_connector_attach_property(connector,
2495 intel_sdvo_connector->dot_crawl,
2496 intel_sdvo_connector->cur_dot_crawl);
2497 DRM_DEBUG_KMS("dot crawl: current %d\n", response);
2498 }
2499
Chris Wilsonc5521702010-08-04 13:50:28 +01002500 return true;
2501}
2502
2503static bool
2504intel_sdvo_create_enhance_property_lvds(struct intel_sdvo *intel_sdvo,
2505 struct intel_sdvo_connector *intel_sdvo_connector,
2506 struct intel_sdvo_enhancements_reply enhancements)
2507{
2508 struct drm_device *dev = intel_sdvo->base.enc.dev;
2509 struct drm_connector *connector = &intel_sdvo_connector->base.base;
2510 uint16_t response, data_value[2];
2511
2512 ENHANCEMENT(brightness, BRIGHTNESS);
2513
2514 return true;
2515}
2516#undef ENHANCEMENT
2517
2518static bool intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
2519 struct intel_sdvo_connector *intel_sdvo_connector)
2520{
2521 union {
2522 struct intel_sdvo_enhancements_reply reply;
2523 uint16_t response;
2524 } enhancements;
2525
Chris Wilson32aad862010-08-04 13:50:25 +01002526 if (!intel_sdvo_get_value(intel_sdvo,
2527 SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS,
Chris Wilsonc5521702010-08-04 13:50:28 +01002528 &enhancements, sizeof(enhancements)))
Chris Wilson32aad862010-08-04 13:50:25 +01002529 return false;
2530
Chris Wilsonc5521702010-08-04 13:50:28 +01002531 if (enhancements.response == 0) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08002532 DRM_DEBUG_KMS("No enhancement is supported\n");
Chris Wilson32aad862010-08-04 13:50:25 +01002533 return true;
Zhao Yakuib9219c52009-09-10 15:45:46 +08002534 }
Chris Wilson32aad862010-08-04 13:50:25 +01002535
Chris Wilsonc5521702010-08-04 13:50:28 +01002536 if (IS_TV(intel_sdvo_connector))
2537 return intel_sdvo_create_enhance_property_tv(intel_sdvo, intel_sdvo_connector, enhancements.reply);
2538 else if(IS_LVDS(intel_sdvo_connector))
2539 return intel_sdvo_create_enhance_property_lvds(intel_sdvo, intel_sdvo_connector, enhancements.reply);
2540 else
2541 return true;
Chris Wilson32aad862010-08-04 13:50:25 +01002542
Zhao Yakuib9219c52009-09-10 15:45:46 +08002543}
2544
Eric Anholtc751ce42010-03-25 11:48:48 -07002545bool intel_sdvo_init(struct drm_device *dev, int sdvo_reg)
Jesse Barnes79e53942008-11-07 14:24:08 -08002546{
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002547 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -07002548 struct intel_encoder *intel_encoder;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002549 struct intel_sdvo *intel_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -08002550 u8 ch[0x40];
2551 int i;
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002552 u32 i2c_reg, ddc_reg, analog_ddc_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -08002553
Chris Wilsonea5b2132010-08-04 13:50:23 +01002554 intel_sdvo = kzalloc(sizeof(struct intel_sdvo), GFP_KERNEL);
2555 if (!intel_sdvo)
Eric Anholt7d573822009-01-02 13:33:00 -08002556 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08002557
Chris Wilsonea5b2132010-08-04 13:50:23 +01002558 intel_sdvo->sdvo_reg = sdvo_reg;
Keith Packard308cd3a2009-06-14 11:56:18 -07002559
Chris Wilsonea5b2132010-08-04 13:50:23 +01002560 intel_encoder = &intel_sdvo->base;
Eric Anholt21d40d32010-03-25 11:11:14 -07002561 intel_encoder->type = INTEL_OUTPUT_SDVO;
Jesse Barnes79e53942008-11-07 14:24:08 -08002562
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002563 if (HAS_PCH_SPLIT(dev)) {
2564 i2c_reg = PCH_GPIOE;
2565 ddc_reg = PCH_GPIOE;
2566 analog_ddc_reg = PCH_GPIOA;
2567 } else {
2568 i2c_reg = GPIOE;
2569 ddc_reg = GPIOE;
2570 analog_ddc_reg = GPIOA;
2571 }
2572
Jesse Barnes79e53942008-11-07 14:24:08 -08002573 /* setup the DDC bus. */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002574 if (IS_SDVOB(sdvo_reg))
2575 intel_encoder->i2c_bus = intel_i2c_create(dev, i2c_reg, "SDVOCTRL_E for SDVOB");
Keith Packard308cd3a2009-06-14 11:56:18 -07002576 else
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002577 intel_encoder->i2c_bus = intel_i2c_create(dev, i2c_reg, "SDVOCTRL_E for SDVOC");
Keith Packard308cd3a2009-06-14 11:56:18 -07002578
Eric Anholt21d40d32010-03-25 11:11:14 -07002579 if (!intel_encoder->i2c_bus)
Jonas Bonnad5b2a62009-05-15 09:10:41 +02002580 goto err_inteloutput;
Jesse Barnes79e53942008-11-07 14:24:08 -08002581
Chris Wilsonea5b2132010-08-04 13:50:23 +01002582 intel_sdvo->slave_addr = intel_sdvo_get_slave_addr(dev, sdvo_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08002583
Keith Packard308cd3a2009-06-14 11:56:18 -07002584 /* Save the bit-banging i2c functionality for use by the DDC wrapper */
Eric Anholt21d40d32010-03-25 11:11:14 -07002585 intel_sdvo_i2c_bit_algo.functionality = intel_encoder->i2c_bus->algo->functionality;
Jesse Barnes79e53942008-11-07 14:24:08 -08002586
Jesse Barnes79e53942008-11-07 14:24:08 -08002587 /* Read the regs to test if we can talk to the device */
2588 for (i = 0; i < 0x40; i++) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002589 if (!intel_sdvo_read_byte(intel_sdvo, i, &ch[i])) {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002590 DRM_DEBUG_KMS("No SDVO device found on SDVO%c\n",
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002591 IS_SDVOB(sdvo_reg) ? 'B' : 'C');
Jesse Barnes79e53942008-11-07 14:24:08 -08002592 goto err_i2c;
2593 }
2594 }
2595
Ma Ling619ac3b2009-05-18 16:12:46 +08002596 /* setup the DDC bus. */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002597 if (IS_SDVOB(sdvo_reg)) {
2598 intel_encoder->ddc_bus = intel_i2c_create(dev, ddc_reg, "SDVOB DDC BUS");
Chris Wilsonea5b2132010-08-04 13:50:23 +01002599 intel_sdvo->analog_ddc_bus = intel_i2c_create(dev, analog_ddc_reg,
Keith Packard57cdaf92009-09-04 13:07:54 +08002600 "SDVOB/VGA DDC BUS");
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002601 dev_priv->hotplug_supported_mask |= SDVOB_HOTPLUG_INT_STATUS;
Keith Packard57cdaf92009-09-04 13:07:54 +08002602 } else {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002603 intel_encoder->ddc_bus = intel_i2c_create(dev, ddc_reg, "SDVOC DDC BUS");
Chris Wilsonea5b2132010-08-04 13:50:23 +01002604 intel_sdvo->analog_ddc_bus = intel_i2c_create(dev, analog_ddc_reg,
Keith Packard57cdaf92009-09-04 13:07:54 +08002605 "SDVOC/VGA DDC BUS");
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002606 dev_priv->hotplug_supported_mask |= SDVOC_HOTPLUG_INT_STATUS;
Keith Packard57cdaf92009-09-04 13:07:54 +08002607 }
Chris Wilson32aad862010-08-04 13:50:25 +01002608 if (intel_encoder->ddc_bus == NULL || intel_sdvo->analog_ddc_bus == NULL)
Ma Ling619ac3b2009-05-18 16:12:46 +08002609 goto err_i2c;
2610
Keith Packard308cd3a2009-06-14 11:56:18 -07002611 /* Wrap with our custom algo which switches to DDC mode */
Eric Anholt21d40d32010-03-25 11:11:14 -07002612 intel_encoder->ddc_bus->algo = &intel_sdvo_i2c_bit_algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08002613
Zhenyu Wang14571b42010-03-30 14:06:33 +08002614 /* encoder type will be decided later */
2615 drm_encoder_init(dev, &intel_encoder->enc, &intel_sdvo_enc_funcs, 0);
2616 drm_encoder_helper_add(&intel_encoder->enc, &intel_sdvo_helper_funcs);
2617
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002618 /* In default case sdvo lvds is false */
Chris Wilson32aad862010-08-04 13:50:25 +01002619 if (!intel_sdvo_get_capabilities(intel_sdvo, &intel_sdvo->caps))
2620 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002621
Chris Wilsonea5b2132010-08-04 13:50:23 +01002622 if (intel_sdvo_output_setup(intel_sdvo,
2623 intel_sdvo->caps.output_flags) != true) {
Dave Airlie51c8b402009-08-20 13:38:04 +10002624 DRM_DEBUG_KMS("SDVO output failed to setup on SDVO%c\n",
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002625 IS_SDVOB(sdvo_reg) ? 'B' : 'C');
Chris Wilson32aad862010-08-04 13:50:25 +01002626 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002627 }
2628
Chris Wilsonea5b2132010-08-04 13:50:23 +01002629 intel_sdvo_select_ddc_bus(dev_priv, intel_sdvo, sdvo_reg);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08002630
Jesse Barnes79e53942008-11-07 14:24:08 -08002631 /* Set the input timing to the screen. Assume always input 0. */
Chris Wilson32aad862010-08-04 13:50:25 +01002632 if (!intel_sdvo_set_target_input(intel_sdvo))
2633 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002634
Chris Wilson32aad862010-08-04 13:50:25 +01002635 if (!intel_sdvo_get_input_pixel_clock_range(intel_sdvo,
2636 &intel_sdvo->pixel_clock_min,
2637 &intel_sdvo->pixel_clock_max))
2638 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002639
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002640 DRM_DEBUG_KMS("%s device VID/DID: %02X:%02X.%02X, "
yakui_zhao342dc382009-06-02 14:12:00 +08002641 "clock range %dMHz - %dMHz, "
2642 "input 1: %c, input 2: %c, "
2643 "output 1: %c, output 2: %c\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +01002644 SDVO_NAME(intel_sdvo),
2645 intel_sdvo->caps.vendor_id, intel_sdvo->caps.device_id,
2646 intel_sdvo->caps.device_rev_id,
2647 intel_sdvo->pixel_clock_min / 1000,
2648 intel_sdvo->pixel_clock_max / 1000,
2649 (intel_sdvo->caps.sdvo_inputs_mask & 0x1) ? 'Y' : 'N',
2650 (intel_sdvo->caps.sdvo_inputs_mask & 0x2) ? 'Y' : 'N',
yakui_zhao342dc382009-06-02 14:12:00 +08002651 /* check currently supported outputs */
Chris Wilsonea5b2132010-08-04 13:50:23 +01002652 intel_sdvo->caps.output_flags &
Jesse Barnes79e53942008-11-07 14:24:08 -08002653 (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_RGB0) ? 'Y' : 'N',
Chris Wilsonea5b2132010-08-04 13:50:23 +01002654 intel_sdvo->caps.output_flags &
Jesse Barnes79e53942008-11-07 14:24:08 -08002655 (SDVO_OUTPUT_TMDS1 | SDVO_OUTPUT_RGB1) ? 'Y' : 'N');
Eric Anholt7d573822009-01-02 13:33:00 -08002656 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08002657
Chris Wilson32aad862010-08-04 13:50:25 +01002658err_enc:
2659 drm_encoder_cleanup(&intel_encoder->enc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002660err_i2c:
Chris Wilsonea5b2132010-08-04 13:50:23 +01002661 if (intel_sdvo->analog_ddc_bus != NULL)
2662 intel_i2c_destroy(intel_sdvo->analog_ddc_bus);
Eric Anholt21d40d32010-03-25 11:11:14 -07002663 if (intel_encoder->ddc_bus != NULL)
2664 intel_i2c_destroy(intel_encoder->ddc_bus);
2665 if (intel_encoder->i2c_bus != NULL)
2666 intel_i2c_destroy(intel_encoder->i2c_bus);
Jonas Bonnad5b2a62009-05-15 09:10:41 +02002667err_inteloutput:
Chris Wilsonea5b2132010-08-04 13:50:23 +01002668 kfree(intel_sdvo);
Jesse Barnes79e53942008-11-07 14:24:08 -08002669
Eric Anholt7d573822009-01-02 13:33:00 -08002670 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08002671}