blob: 2344fb05679356d1b09865bd273c74496cb59ad6 [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
Zhao Yakuice6feab2009-08-24 13:50:26 +080053static char *tv_format_names[] = {
54 "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;
Zhao Yakuib9219c52009-09-10 15:45:46 +0800164
165 /* add the property for the SDVO-TV/LVDS */
Chris Wilsonc5521702010-08-04 13:50:28 +0100166 struct drm_property *brightness;
Zhao Yakuib9219c52009-09-10 15:45:46 +0800167
168 /* Add variable to record current setting for the above property */
169 u32 left_margin, right_margin, top_margin, bottom_margin;
Chris Wilsonc5521702010-08-04 13:50:28 +0100170
Zhao Yakuib9219c52009-09-10 15:45:46 +0800171 /* this is to get the range of margin.*/
172 u32 max_hscan, max_vscan;
173 u32 max_hpos, cur_hpos;
174 u32 max_vpos, cur_vpos;
175 u32 cur_brightness, max_brightness;
176 u32 cur_contrast, max_contrast;
177 u32 cur_saturation, max_saturation;
178 u32 cur_hue, max_hue;
Chris Wilsonc5521702010-08-04 13:50:28 +0100179 u32 cur_sharpness, max_sharpness;
180 u32 cur_flicker_filter, max_flicker_filter;
181 u32 cur_flicker_filter_adaptive, max_flicker_filter_adaptive;
182 u32 cur_flicker_filter_2d, max_flicker_filter_2d;
183 u32 cur_tv_chroma_filter, max_tv_chroma_filter;
184 u32 cur_tv_luma_filter, max_tv_luma_filter;
Jesse Barnes79e53942008-11-07 14:24:08 -0800185};
186
Chris Wilsonea5b2132010-08-04 13:50:23 +0100187static struct intel_sdvo *enc_to_intel_sdvo(struct drm_encoder *encoder)
188{
189 return container_of(enc_to_intel_encoder(encoder), struct intel_sdvo, base);
190}
191
Chris Wilson615fb932010-08-04 13:50:24 +0100192static struct intel_sdvo_connector *to_intel_sdvo_connector(struct drm_connector *connector)
193{
194 return container_of(to_intel_connector(connector), struct intel_sdvo_connector, base);
195}
196
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +0800197static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +0100198intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, uint16_t flags);
Chris Wilson32aad862010-08-04 13:50:25 +0100199static bool
200intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
201 struct intel_sdvo_connector *intel_sdvo_connector,
202 int type);
203static bool
204intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
205 struct intel_sdvo_connector *intel_sdvo_connector);
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +0800206
Jesse Barnes79e53942008-11-07 14:24:08 -0800207/**
208 * Writes the SDVOB or SDVOC with the given value, but always writes both
209 * SDVOB and SDVOC to work around apparent hardware issues (according to
210 * comments in the BIOS).
211 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100212static void intel_sdvo_write_sdvox(struct intel_sdvo *intel_sdvo, u32 val)
Jesse Barnes79e53942008-11-07 14:24:08 -0800213{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100214 struct drm_device *dev = intel_sdvo->base.enc.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800215 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800216 u32 bval = val, cval = val;
217 int i;
218
Chris Wilsonea5b2132010-08-04 13:50:23 +0100219 if (intel_sdvo->sdvo_reg == PCH_SDVOB) {
220 I915_WRITE(intel_sdvo->sdvo_reg, val);
221 I915_READ(intel_sdvo->sdvo_reg);
Zhao Yakui461ed3c2010-03-30 15:11:33 +0800222 return;
223 }
224
Chris Wilsonea5b2132010-08-04 13:50:23 +0100225 if (intel_sdvo->sdvo_reg == SDVOB) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800226 cval = I915_READ(SDVOC);
227 } else {
228 bval = I915_READ(SDVOB);
229 }
230 /*
231 * Write the registers twice for luck. Sometimes,
232 * writing them only once doesn't appear to 'stick'.
233 * The BIOS does this too. Yay, magic
234 */
235 for (i = 0; i < 2; i++)
236 {
237 I915_WRITE(SDVOB, bval);
238 I915_READ(SDVOB);
239 I915_WRITE(SDVOC, cval);
240 I915_READ(SDVOC);
241 }
242}
243
Chris Wilson32aad862010-08-04 13:50:25 +0100244static bool intel_sdvo_read_byte(struct intel_sdvo *intel_sdvo, u8 addr, u8 *ch)
Jesse Barnes79e53942008-11-07 14:24:08 -0800245{
Chris Wilson32aad862010-08-04 13:50:25 +0100246 u8 out_buf[2] = { addr, 0 };
Jesse Barnes79e53942008-11-07 14:24:08 -0800247 u8 buf[2];
Jesse Barnes79e53942008-11-07 14:24:08 -0800248 struct i2c_msg msgs[] = {
249 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100250 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800251 .flags = 0,
252 .len = 1,
253 .buf = out_buf,
254 },
255 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100256 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800257 .flags = I2C_M_RD,
258 .len = 1,
259 .buf = buf,
260 }
261 };
Chris Wilson32aad862010-08-04 13:50:25 +0100262 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800263
Chris Wilsonea5b2132010-08-04 13:50:23 +0100264 if ((ret = i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 2)) == 2)
Jesse Barnes79e53942008-11-07 14:24:08 -0800265 {
266 *ch = buf[0];
267 return true;
268 }
269
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800270 DRM_DEBUG_KMS("i2c transfer returned %d\n", ret);
Jesse Barnes79e53942008-11-07 14:24:08 -0800271 return false;
272}
273
Chris Wilson32aad862010-08-04 13:50:25 +0100274static bool intel_sdvo_write_byte(struct intel_sdvo *intel_sdvo, int addr, u8 ch)
Jesse Barnes79e53942008-11-07 14:24:08 -0800275{
Chris Wilson32aad862010-08-04 13:50:25 +0100276 u8 out_buf[2] = { addr, ch };
Jesse Barnes79e53942008-11-07 14:24:08 -0800277 struct i2c_msg msgs[] = {
278 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100279 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800280 .flags = 0,
281 .len = 2,
282 .buf = out_buf,
283 }
284 };
285
Chris Wilson32aad862010-08-04 13:50:25 +0100286 return i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 1) == 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800287}
288
289#define SDVO_CMD_NAME_ENTRY(cmd) {cmd, #cmd}
290/** Mapping of command numbers to names, for debug output */
Tobias Klauser005568b2009-02-09 22:02:42 +0100291static const struct _sdvo_cmd_name {
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800292 u8 cmd;
293 char *name;
Jesse Barnes79e53942008-11-07 14:24:08 -0800294} sdvo_cmd_names[] = {
295 SDVO_CMD_NAME_ENTRY(SDVO_CMD_RESET),
296 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_DEVICE_CAPS),
297 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FIRMWARE_REV),
298 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TRAINED_INPUTS),
299 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ACTIVE_OUTPUTS),
300 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ACTIVE_OUTPUTS),
301 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_IN_OUT_MAP),
302 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_IN_OUT_MAP),
303 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ATTACHED_DISPLAYS),
304 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HOT_PLUG_SUPPORT),
305 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ACTIVE_HOT_PLUG),
306 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ACTIVE_HOT_PLUG),
307 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INTERRUPT_EVENT_SOURCE),
308 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TARGET_INPUT),
309 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TARGET_OUTPUT),
310 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_TIMINGS_PART1),
311 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_TIMINGS_PART2),
312 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART1),
313 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART2),
314 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART1),
315 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OUTPUT_TIMINGS_PART1),
316 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OUTPUT_TIMINGS_PART2),
317 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_TIMINGS_PART1),
318 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_TIMINGS_PART2),
319 SDVO_CMD_NAME_ENTRY(SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING),
320 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1),
321 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2),
322 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE),
323 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_PIXEL_CLOCK_RANGE),
324 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_CLOCK_RATE_MULTS),
325 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_CLOCK_RATE_MULT),
326 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CLOCK_RATE_MULT),
327 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_TV_FORMATS),
328 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_FORMAT),
329 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_FORMAT),
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800330 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_POWER_STATES),
331 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_POWER_STATE),
332 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ENCODER_POWER_STATE),
333 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_DISPLAY_POWER_STATE),
Jesse Barnes79e53942008-11-07 14:24:08 -0800334 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CONTROL_BUS_SWITCH),
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800335 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT),
336 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SCALED_HDTV_RESOLUTION_SUPPORT),
337 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS),
Chris Wilsonc5521702010-08-04 13:50:28 +0100338
Zhao Yakuib9219c52009-09-10 15:45:46 +0800339 /* Add the op code for SDVO enhancements */
Chris Wilsonc5521702010-08-04 13:50:28 +0100340 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_HPOS),
341 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HPOS),
342 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HPOS),
343 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_VPOS),
344 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_VPOS),
345 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_VPOS),
Zhao Yakuib9219c52009-09-10 15:45:46 +0800346 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_SATURATION),
347 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SATURATION),
348 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_SATURATION),
349 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_HUE),
350 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HUE),
351 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HUE),
352 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_CONTRAST),
353 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_CONTRAST),
354 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CONTRAST),
355 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_BRIGHTNESS),
356 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_BRIGHTNESS),
357 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_BRIGHTNESS),
358 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_OVERSCAN_H),
359 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OVERSCAN_H),
360 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OVERSCAN_H),
361 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_OVERSCAN_V),
362 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OVERSCAN_V),
363 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OVERSCAN_V),
Chris Wilsonc5521702010-08-04 13:50:28 +0100364 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER),
365 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER),
366 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER),
367 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER_ADAPTIVE),
368 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER_ADAPTIVE),
369 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER_ADAPTIVE),
370 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER_2D),
371 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER_2D),
372 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER_2D),
373 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_SHARPNESS),
374 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SHARPNESS),
375 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_SHARPNESS),
376 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_DOT_CRAWL),
377 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_DOT_CRAWL),
378 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_TV_CHROMA_FILTER),
379 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_CHROMA_FILTER),
380 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_CHROMA_FILTER),
381 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_TV_LUMA_FILTER),
382 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_LUMA_FILTER),
383 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_LUMA_FILTER),
384
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800385 /* HDMI op code */
386 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPP_ENCODE),
387 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ENCODE),
388 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ENCODE),
389 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_PIXEL_REPLI),
390 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PIXEL_REPLI),
391 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_COLORIMETRY_CAP),
392 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_COLORIMETRY),
393 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_COLORIMETRY),
394 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_AUDIO_ENCRYPT_PREFER),
395 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_AUDIO_STAT),
396 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_AUDIO_STAT),
397 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_INDEX),
398 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_INDEX),
399 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_INFO),
400 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_AV_SPLIT),
401 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_AV_SPLIT),
402 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_TXRATE),
403 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_TXRATE),
404 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_DATA),
405 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_DATA),
Jesse Barnes79e53942008-11-07 14:24:08 -0800406};
407
Zhao Yakui461ed3c2010-03-30 15:11:33 +0800408#define IS_SDVOB(reg) (reg == SDVOB || reg == PCH_SDVOB)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100409#define SDVO_NAME(svdo) (IS_SDVOB((svdo)->sdvo_reg) ? "SDVOB" : "SDVOC")
Jesse Barnes79e53942008-11-07 14:24:08 -0800410
Chris Wilsonea5b2132010-08-04 13:50:23 +0100411static void intel_sdvo_debug_write(struct intel_sdvo *intel_sdvo, u8 cmd,
Chris Wilson32aad862010-08-04 13:50:25 +0100412 const void *args, int args_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800413{
Jesse Barnes79e53942008-11-07 14:24:08 -0800414 int i;
415
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800416 DRM_DEBUG_KMS("%s: W: %02X ",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100417 SDVO_NAME(intel_sdvo), cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -0800418 for (i = 0; i < args_len; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800419 DRM_LOG_KMS("%02X ", ((u8 *)args)[i]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800420 for (; i < 8; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800421 DRM_LOG_KMS(" ");
Kulikov Vasiliy04ad3272010-06-28 15:54:56 +0400422 for (i = 0; i < ARRAY_SIZE(sdvo_cmd_names); i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800423 if (cmd == sdvo_cmd_names[i].cmd) {
yakui_zhao342dc382009-06-02 14:12:00 +0800424 DRM_LOG_KMS("(%s)", sdvo_cmd_names[i].name);
Jesse Barnes79e53942008-11-07 14:24:08 -0800425 break;
426 }
427 }
Kulikov Vasiliy04ad3272010-06-28 15:54:56 +0400428 if (i == ARRAY_SIZE(sdvo_cmd_names))
yakui_zhao342dc382009-06-02 14:12:00 +0800429 DRM_LOG_KMS("(%02X)", cmd);
430 DRM_LOG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800431}
Jesse Barnes79e53942008-11-07 14:24:08 -0800432
Chris Wilson32aad862010-08-04 13:50:25 +0100433static bool intel_sdvo_write_cmd(struct intel_sdvo *intel_sdvo, u8 cmd,
434 const void *args, int args_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800435{
436 int i;
437
Chris Wilsonea5b2132010-08-04 13:50:23 +0100438 intel_sdvo_debug_write(intel_sdvo, cmd, args, args_len);
Jesse Barnes79e53942008-11-07 14:24:08 -0800439
440 for (i = 0; i < args_len; i++) {
Chris Wilson32aad862010-08-04 13:50:25 +0100441 if (!intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_ARG_0 - i,
442 ((u8*)args)[i]))
443 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800444 }
445
Chris Wilson32aad862010-08-04 13:50:25 +0100446 return intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_OPCODE, cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -0800447}
448
Jesse Barnes79e53942008-11-07 14:24:08 -0800449static const char *cmd_status_names[] = {
450 "Power on",
451 "Success",
452 "Not supported",
453 "Invalid arg",
454 "Pending",
455 "Target not specified",
456 "Scaling not supported"
457};
458
Chris Wilsonea5b2132010-08-04 13:50:23 +0100459static void intel_sdvo_debug_response(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800460 void *response, int response_len,
461 u8 status)
462{
Zhenyu Wang33b52962009-03-24 14:02:40 +0800463 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -0800464
Chris Wilsonea5b2132010-08-04 13:50:23 +0100465 DRM_DEBUG_KMS("%s: R: ", SDVO_NAME(intel_sdvo));
Jesse Barnes79e53942008-11-07 14:24:08 -0800466 for (i = 0; i < response_len; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800467 DRM_LOG_KMS("%02X ", ((u8 *)response)[i]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800468 for (; i < 8; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800469 DRM_LOG_KMS(" ");
Jesse Barnes79e53942008-11-07 14:24:08 -0800470 if (status <= SDVO_CMD_STATUS_SCALING_NOT_SUPP)
yakui_zhao342dc382009-06-02 14:12:00 +0800471 DRM_LOG_KMS("(%s)", cmd_status_names[status]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800472 else
yakui_zhao342dc382009-06-02 14:12:00 +0800473 DRM_LOG_KMS("(??? %d)", status);
474 DRM_LOG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800475}
Jesse Barnes79e53942008-11-07 14:24:08 -0800476
Chris Wilson32aad862010-08-04 13:50:25 +0100477static bool intel_sdvo_read_response(struct intel_sdvo *intel_sdvo,
478 void *response, int response_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800479{
480 int i;
481 u8 status;
482 u8 retry = 50;
483
484 while (retry--) {
485 /* Read the command response */
486 for (i = 0; i < response_len; i++) {
Chris Wilson32aad862010-08-04 13:50:25 +0100487 if (!intel_sdvo_read_byte(intel_sdvo,
488 SDVO_I2C_RETURN_0 + i,
489 &((u8 *)response)[i]))
490 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800491 }
492
493 /* read the return status */
Chris Wilson32aad862010-08-04 13:50:25 +0100494 if (!intel_sdvo_read_byte(intel_sdvo, SDVO_I2C_CMD_STATUS,
495 &status))
496 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800497
Chris Wilsonea5b2132010-08-04 13:50:23 +0100498 intel_sdvo_debug_response(intel_sdvo, response, response_len,
Jesse Barnes79e53942008-11-07 14:24:08 -0800499 status);
500 if (status != SDVO_CMD_STATUS_PENDING)
Chris Wilson32aad862010-08-04 13:50:25 +0100501 break;
Jesse Barnes79e53942008-11-07 14:24:08 -0800502
503 mdelay(50);
504 }
505
Chris Wilson32aad862010-08-04 13:50:25 +0100506 return status == SDVO_CMD_STATUS_SUCCESS;
Jesse Barnes79e53942008-11-07 14:24:08 -0800507}
508
Hannes Ederb358d0a2008-12-18 21:18:47 +0100509static int intel_sdvo_get_pixel_multiplier(struct drm_display_mode *mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800510{
511 if (mode->clock >= 100000)
512 return 1;
513 else if (mode->clock >= 50000)
514 return 2;
515 else
516 return 4;
517}
518
519/**
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800520 * Try to read the response after issuie the DDC switch command. But it
521 * is noted that we must do the action of reading response and issuing DDC
522 * switch command in one I2C transaction. Otherwise when we try to start
523 * another I2C transaction after issuing the DDC bus switch, it will be
524 * switched to the internal SDVO register.
Jesse Barnes79e53942008-11-07 14:24:08 -0800525 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100526static void intel_sdvo_set_control_bus_switch(struct intel_sdvo *intel_sdvo,
Hannes Ederb358d0a2008-12-18 21:18:47 +0100527 u8 target)
Jesse Barnes79e53942008-11-07 14:24:08 -0800528{
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800529 u8 out_buf[2], cmd_buf[2], ret_value[2], ret;
530 struct i2c_msg msgs[] = {
531 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100532 .addr = intel_sdvo->slave_addr >> 1,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800533 .flags = 0,
534 .len = 2,
535 .buf = out_buf,
536 },
537 /* the following two are to read the response */
538 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100539 .addr = intel_sdvo->slave_addr >> 1,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800540 .flags = 0,
541 .len = 1,
542 .buf = cmd_buf,
543 },
544 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100545 .addr = intel_sdvo->slave_addr >> 1,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800546 .flags = I2C_M_RD,
547 .len = 1,
548 .buf = ret_value,
549 },
550 };
551
Chris Wilsonea5b2132010-08-04 13:50:23 +0100552 intel_sdvo_debug_write(intel_sdvo, SDVO_CMD_SET_CONTROL_BUS_SWITCH,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800553 &target, 1);
554 /* write the DDC switch command argument */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100555 intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_ARG_0, target);
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800556
557 out_buf[0] = SDVO_I2C_OPCODE;
558 out_buf[1] = SDVO_CMD_SET_CONTROL_BUS_SWITCH;
559 cmd_buf[0] = SDVO_I2C_CMD_STATUS;
560 cmd_buf[1] = 0;
561 ret_value[0] = 0;
562 ret_value[1] = 0;
563
Chris Wilsonea5b2132010-08-04 13:50:23 +0100564 ret = i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 3);
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800565 if (ret != 3) {
566 /* failure in I2C transfer */
567 DRM_DEBUG_KMS("I2c transfer returned %d\n", ret);
568 return;
569 }
570 if (ret_value[0] != SDVO_CMD_STATUS_SUCCESS) {
571 DRM_DEBUG_KMS("DDC switch command returns response %d\n",
572 ret_value[0]);
573 return;
574 }
575 return;
Jesse Barnes79e53942008-11-07 14:24:08 -0800576}
577
Chris Wilson32aad862010-08-04 13:50:25 +0100578static bool intel_sdvo_set_value(struct intel_sdvo *intel_sdvo, u8 cmd, const void *data, int len)
579{
580 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, data, len))
581 return false;
582
583 return intel_sdvo_read_response(intel_sdvo, NULL, 0);
584}
585
586static bool
587intel_sdvo_get_value(struct intel_sdvo *intel_sdvo, u8 cmd, void *value, int len)
588{
589 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, NULL, 0))
590 return false;
591
592 return intel_sdvo_read_response(intel_sdvo, value, len);
593}
594
595static bool intel_sdvo_set_target_input(struct intel_sdvo *intel_sdvo)
Jesse Barnes79e53942008-11-07 14:24:08 -0800596{
597 struct intel_sdvo_set_target_input_args targets = {0};
Chris Wilson32aad862010-08-04 13:50:25 +0100598 return intel_sdvo_set_value(intel_sdvo,
599 SDVO_CMD_SET_TARGET_INPUT,
600 &targets, sizeof(targets));
Jesse Barnes79e53942008-11-07 14:24:08 -0800601}
602
603/**
604 * Return whether each input is trained.
605 *
606 * This function is making an assumption about the layout of the response,
607 * which should be checked against the docs.
608 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100609static bool intel_sdvo_get_trained_inputs(struct intel_sdvo *intel_sdvo, bool *input_1, bool *input_2)
Jesse Barnes79e53942008-11-07 14:24:08 -0800610{
611 struct intel_sdvo_get_trained_inputs_response response;
Jesse Barnes79e53942008-11-07 14:24:08 -0800612
Chris Wilson32aad862010-08-04 13:50:25 +0100613 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_TRAINED_INPUTS,
614 &response, sizeof(response)))
Jesse Barnes79e53942008-11-07 14:24:08 -0800615 return false;
616
617 *input_1 = response.input0_trained;
618 *input_2 = response.input1_trained;
619 return true;
620}
621
Chris Wilsonea5b2132010-08-04 13:50:23 +0100622static bool intel_sdvo_set_active_outputs(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800623 u16 outputs)
624{
Chris Wilson32aad862010-08-04 13:50:25 +0100625 return intel_sdvo_set_value(intel_sdvo,
626 SDVO_CMD_SET_ACTIVE_OUTPUTS,
627 &outputs, sizeof(outputs));
Jesse Barnes79e53942008-11-07 14:24:08 -0800628}
629
Chris Wilsonea5b2132010-08-04 13:50:23 +0100630static bool intel_sdvo_set_encoder_power_state(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800631 int mode)
632{
Chris Wilson32aad862010-08-04 13:50:25 +0100633 u8 state = SDVO_ENCODER_STATE_ON;
Jesse Barnes79e53942008-11-07 14:24:08 -0800634
635 switch (mode) {
636 case DRM_MODE_DPMS_ON:
637 state = SDVO_ENCODER_STATE_ON;
638 break;
639 case DRM_MODE_DPMS_STANDBY:
640 state = SDVO_ENCODER_STATE_STANDBY;
641 break;
642 case DRM_MODE_DPMS_SUSPEND:
643 state = SDVO_ENCODER_STATE_SUSPEND;
644 break;
645 case DRM_MODE_DPMS_OFF:
646 state = SDVO_ENCODER_STATE_OFF;
647 break;
648 }
649
Chris Wilson32aad862010-08-04 13:50:25 +0100650 return intel_sdvo_set_value(intel_sdvo,
651 SDVO_CMD_SET_ENCODER_POWER_STATE, &state, sizeof(state));
Jesse Barnes79e53942008-11-07 14:24:08 -0800652}
653
Chris Wilsonea5b2132010-08-04 13:50:23 +0100654static bool intel_sdvo_get_input_pixel_clock_range(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800655 int *clock_min,
656 int *clock_max)
657{
658 struct intel_sdvo_pixel_clock_range clocks;
Jesse Barnes79e53942008-11-07 14:24:08 -0800659
Chris Wilson32aad862010-08-04 13:50:25 +0100660 if (!intel_sdvo_get_value(intel_sdvo,
661 SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE,
662 &clocks, sizeof(clocks)))
Jesse Barnes79e53942008-11-07 14:24:08 -0800663 return false;
664
665 /* Convert the values from units of 10 kHz to kHz. */
666 *clock_min = clocks.min * 10;
667 *clock_max = clocks.max * 10;
Jesse Barnes79e53942008-11-07 14:24:08 -0800668 return true;
669}
670
Chris Wilsonea5b2132010-08-04 13:50:23 +0100671static bool intel_sdvo_set_target_output(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800672 u16 outputs)
673{
Chris Wilson32aad862010-08-04 13:50:25 +0100674 return intel_sdvo_set_value(intel_sdvo,
675 SDVO_CMD_SET_TARGET_OUTPUT,
676 &outputs, sizeof(outputs));
Jesse Barnes79e53942008-11-07 14:24:08 -0800677}
678
Chris Wilsonea5b2132010-08-04 13:50:23 +0100679static bool intel_sdvo_set_timing(struct intel_sdvo *intel_sdvo, u8 cmd,
Jesse Barnes79e53942008-11-07 14:24:08 -0800680 struct intel_sdvo_dtd *dtd)
681{
Chris Wilson32aad862010-08-04 13:50:25 +0100682 return intel_sdvo_set_value(intel_sdvo, cmd, &dtd->part1, sizeof(dtd->part1)) &&
683 intel_sdvo_set_value(intel_sdvo, cmd + 1, &dtd->part2, sizeof(dtd->part2));
Jesse Barnes79e53942008-11-07 14:24:08 -0800684}
685
Chris Wilsonea5b2132010-08-04 13:50:23 +0100686static bool intel_sdvo_set_input_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800687 struct intel_sdvo_dtd *dtd)
688{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100689 return intel_sdvo_set_timing(intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800690 SDVO_CMD_SET_INPUT_TIMINGS_PART1, dtd);
691}
692
Chris Wilsonea5b2132010-08-04 13:50:23 +0100693static bool intel_sdvo_set_output_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800694 struct intel_sdvo_dtd *dtd)
695{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100696 return intel_sdvo_set_timing(intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800697 SDVO_CMD_SET_OUTPUT_TIMINGS_PART1, dtd);
698}
699
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800700static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +0100701intel_sdvo_create_preferred_input_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800702 uint16_t clock,
703 uint16_t width,
704 uint16_t height)
705{
706 struct intel_sdvo_preferred_input_timing_args args;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800707
Zhenyu Wange642c6f2009-03-24 14:02:42 +0800708 memset(&args, 0, sizeof(args));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800709 args.clock = clock;
710 args.width = width;
711 args.height = height;
Zhenyu Wange642c6f2009-03-24 14:02:42 +0800712 args.interlace = 0;
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800713
Chris Wilsonea5b2132010-08-04 13:50:23 +0100714 if (intel_sdvo->is_lvds &&
715 (intel_sdvo->sdvo_lvds_fixed_mode->hdisplay != width ||
716 intel_sdvo->sdvo_lvds_fixed_mode->vdisplay != height))
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800717 args.scaled = 1;
718
Chris Wilson32aad862010-08-04 13:50:25 +0100719 return intel_sdvo_set_value(intel_sdvo,
720 SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING,
721 &args, sizeof(args));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800722}
723
Chris Wilsonea5b2132010-08-04 13:50:23 +0100724static bool intel_sdvo_get_preferred_input_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800725 struct intel_sdvo_dtd *dtd)
726{
Chris Wilson32aad862010-08-04 13:50:25 +0100727 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1,
728 &dtd->part1, sizeof(dtd->part1)) &&
729 intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2,
730 &dtd->part2, sizeof(dtd->part2));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800731}
Jesse Barnes79e53942008-11-07 14:24:08 -0800732
Chris Wilsonea5b2132010-08-04 13:50:23 +0100733static bool intel_sdvo_set_clock_rate_mult(struct intel_sdvo *intel_sdvo, u8 val)
Jesse Barnes79e53942008-11-07 14:24:08 -0800734{
Chris Wilson32aad862010-08-04 13:50:25 +0100735 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_CLOCK_RATE_MULT, &val, 1);
Jesse Barnes79e53942008-11-07 14:24:08 -0800736}
737
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800738static void intel_sdvo_get_dtd_from_mode(struct intel_sdvo_dtd *dtd,
Chris Wilson32aad862010-08-04 13:50:25 +0100739 const struct drm_display_mode *mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800740{
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800741 uint16_t width, height;
742 uint16_t h_blank_len, h_sync_len, v_blank_len, v_sync_len;
743 uint16_t h_sync_offset, v_sync_offset;
Jesse Barnes79e53942008-11-07 14:24:08 -0800744
745 width = mode->crtc_hdisplay;
746 height = mode->crtc_vdisplay;
747
748 /* do some mode translations */
749 h_blank_len = mode->crtc_hblank_end - mode->crtc_hblank_start;
750 h_sync_len = mode->crtc_hsync_end - mode->crtc_hsync_start;
751
752 v_blank_len = mode->crtc_vblank_end - mode->crtc_vblank_start;
753 v_sync_len = mode->crtc_vsync_end - mode->crtc_vsync_start;
754
755 h_sync_offset = mode->crtc_hsync_start - mode->crtc_hblank_start;
756 v_sync_offset = mode->crtc_vsync_start - mode->crtc_vblank_start;
757
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800758 dtd->part1.clock = mode->clock / 10;
759 dtd->part1.h_active = width & 0xff;
760 dtd->part1.h_blank = h_blank_len & 0xff;
761 dtd->part1.h_high = (((width >> 8) & 0xf) << 4) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800762 ((h_blank_len >> 8) & 0xf);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800763 dtd->part1.v_active = height & 0xff;
764 dtd->part1.v_blank = v_blank_len & 0xff;
765 dtd->part1.v_high = (((height >> 8) & 0xf) << 4) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800766 ((v_blank_len >> 8) & 0xf);
767
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800768 dtd->part2.h_sync_off = h_sync_offset & 0xff;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800769 dtd->part2.h_sync_width = h_sync_len & 0xff;
770 dtd->part2.v_sync_off_width = (v_sync_offset & 0xf) << 4 |
Jesse Barnes79e53942008-11-07 14:24:08 -0800771 (v_sync_len & 0xf);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800772 dtd->part2.sync_off_width_high = ((h_sync_offset & 0x300) >> 2) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800773 ((h_sync_len & 0x300) >> 4) | ((v_sync_offset & 0x30) >> 2) |
774 ((v_sync_len & 0x30) >> 4);
775
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800776 dtd->part2.dtd_flags = 0x18;
Jesse Barnes79e53942008-11-07 14:24:08 -0800777 if (mode->flags & DRM_MODE_FLAG_PHSYNC)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800778 dtd->part2.dtd_flags |= 0x2;
Jesse Barnes79e53942008-11-07 14:24:08 -0800779 if (mode->flags & DRM_MODE_FLAG_PVSYNC)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800780 dtd->part2.dtd_flags |= 0x4;
Jesse Barnes79e53942008-11-07 14:24:08 -0800781
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800782 dtd->part2.sdvo_flags = 0;
783 dtd->part2.v_sync_off_high = v_sync_offset & 0xc0;
784 dtd->part2.reserved = 0;
785}
Jesse Barnes79e53942008-11-07 14:24:08 -0800786
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800787static void intel_sdvo_get_mode_from_dtd(struct drm_display_mode * mode,
Chris Wilson32aad862010-08-04 13:50:25 +0100788 const struct intel_sdvo_dtd *dtd)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800789{
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800790 mode->hdisplay = dtd->part1.h_active;
791 mode->hdisplay += ((dtd->part1.h_high >> 4) & 0x0f) << 8;
792 mode->hsync_start = mode->hdisplay + dtd->part2.h_sync_off;
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800793 mode->hsync_start += (dtd->part2.sync_off_width_high & 0xc0) << 2;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800794 mode->hsync_end = mode->hsync_start + dtd->part2.h_sync_width;
795 mode->hsync_end += (dtd->part2.sync_off_width_high & 0x30) << 4;
796 mode->htotal = mode->hdisplay + dtd->part1.h_blank;
797 mode->htotal += (dtd->part1.h_high & 0xf) << 8;
798
799 mode->vdisplay = dtd->part1.v_active;
800 mode->vdisplay += ((dtd->part1.v_high >> 4) & 0x0f) << 8;
801 mode->vsync_start = mode->vdisplay;
802 mode->vsync_start += (dtd->part2.v_sync_off_width >> 4) & 0xf;
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800803 mode->vsync_start += (dtd->part2.sync_off_width_high & 0x0c) << 2;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800804 mode->vsync_start += dtd->part2.v_sync_off_high & 0xc0;
805 mode->vsync_end = mode->vsync_start +
806 (dtd->part2.v_sync_off_width & 0xf);
807 mode->vsync_end += (dtd->part2.sync_off_width_high & 0x3) << 4;
808 mode->vtotal = mode->vdisplay + dtd->part1.v_blank;
809 mode->vtotal += (dtd->part1.v_high & 0xf) << 8;
810
811 mode->clock = dtd->part1.clock * 10;
812
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800813 mode->flags &= ~(DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800814 if (dtd->part2.dtd_flags & 0x2)
815 mode->flags |= DRM_MODE_FLAG_PHSYNC;
816 if (dtd->part2.dtd_flags & 0x4)
817 mode->flags |= DRM_MODE_FLAG_PVSYNC;
818}
819
Chris Wilsonea5b2132010-08-04 13:50:23 +0100820static bool intel_sdvo_get_supp_encode(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800821 struct intel_sdvo_encode *encode)
822{
Chris Wilson32aad862010-08-04 13:50:25 +0100823 if (intel_sdvo_get_value(intel_sdvo,
824 SDVO_CMD_GET_SUPP_ENCODE,
825 encode, sizeof(*encode)))
826 return true;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800827
Chris Wilson32aad862010-08-04 13:50:25 +0100828 /* non-support means DVI */
829 memset(encode, 0, sizeof(*encode));
830 return false;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800831}
832
Chris Wilsonea5b2132010-08-04 13:50:23 +0100833static bool intel_sdvo_set_encode(struct intel_sdvo *intel_sdvo,
Eric Anholtc751ce42010-03-25 11:48:48 -0700834 uint8_t mode)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800835{
Chris Wilson32aad862010-08-04 13:50:25 +0100836 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_ENCODE, &mode, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800837}
838
Chris Wilsonea5b2132010-08-04 13:50:23 +0100839static bool intel_sdvo_set_colorimetry(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800840 uint8_t mode)
841{
Chris Wilson32aad862010-08-04 13:50:25 +0100842 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_COLORIMETRY, &mode, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800843}
844
845#if 0
Chris Wilsonea5b2132010-08-04 13:50:23 +0100846static void intel_sdvo_dump_hdmi_buf(struct intel_sdvo *intel_sdvo)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800847{
848 int i, j;
849 uint8_t set_buf_index[2];
850 uint8_t av_split;
851 uint8_t buf_size;
852 uint8_t buf[48];
853 uint8_t *pos;
854
Chris Wilson32aad862010-08-04 13:50:25 +0100855 intel_sdvo_get_value(encoder, SDVO_CMD_GET_HBUF_AV_SPLIT, &av_split, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800856
857 for (i = 0; i <= av_split; i++) {
858 set_buf_index[0] = i; set_buf_index[1] = 0;
Eric Anholtc751ce42010-03-25 11:48:48 -0700859 intel_sdvo_write_cmd(encoder, SDVO_CMD_SET_HBUF_INDEX,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800860 set_buf_index, 2);
Eric Anholtc751ce42010-03-25 11:48:48 -0700861 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_INFO, NULL, 0);
862 intel_sdvo_read_response(encoder, &buf_size, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800863
864 pos = buf;
865 for (j = 0; j <= buf_size; j += 8) {
Eric Anholtc751ce42010-03-25 11:48:48 -0700866 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_DATA,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800867 NULL, 0);
Eric Anholtc751ce42010-03-25 11:48:48 -0700868 intel_sdvo_read_response(encoder, pos, 8);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800869 pos += 8;
870 }
871 }
872}
873#endif
874
Chris Wilson32aad862010-08-04 13:50:25 +0100875static bool intel_sdvo_set_hdmi_buf(struct intel_sdvo *intel_sdvo,
Eric Anholtc751ce42010-03-25 11:48:48 -0700876 int index,
877 uint8_t *data, int8_t size, uint8_t tx_rate)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800878{
879 uint8_t set_buf_index[2];
880
881 set_buf_index[0] = index;
882 set_buf_index[1] = 0;
883
Chris Wilson32aad862010-08-04 13:50:25 +0100884 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_INDEX,
885 set_buf_index, 2))
886 return false;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800887
888 for (; size > 0; size -= 8) {
Chris Wilson32aad862010-08-04 13:50:25 +0100889 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_DATA, data, 8))
890 return false;
891
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800892 data += 8;
893 }
894
Chris Wilson32aad862010-08-04 13:50:25 +0100895 return intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_TXRATE, &tx_rate, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800896}
897
898static uint8_t intel_sdvo_calc_hbuf_csum(uint8_t *data, uint8_t size)
899{
900 uint8_t csum = 0;
901 int i;
902
903 for (i = 0; i < size; i++)
904 csum += data[i];
905
906 return 0x100 - csum;
907}
908
909#define DIP_TYPE_AVI 0x82
910#define DIP_VERSION_AVI 0x2
911#define DIP_LEN_AVI 13
912
913struct dip_infoframe {
914 uint8_t type;
915 uint8_t version;
916 uint8_t len;
917 uint8_t checksum;
918 union {
919 struct {
920 /* Packet Byte #1 */
921 uint8_t S:2;
922 uint8_t B:2;
923 uint8_t A:1;
924 uint8_t Y:2;
925 uint8_t rsvd1:1;
926 /* Packet Byte #2 */
927 uint8_t R:4;
928 uint8_t M:2;
929 uint8_t C:2;
930 /* Packet Byte #3 */
931 uint8_t SC:2;
932 uint8_t Q:2;
933 uint8_t EC:3;
934 uint8_t ITC:1;
935 /* Packet Byte #4 */
936 uint8_t VIC:7;
937 uint8_t rsvd2:1;
938 /* Packet Byte #5 */
939 uint8_t PR:4;
940 uint8_t rsvd3:4;
941 /* Packet Byte #6~13 */
942 uint16_t top_bar_end;
943 uint16_t bottom_bar_start;
944 uint16_t left_bar_end;
945 uint16_t right_bar_start;
946 } avi;
947 struct {
948 /* Packet Byte #1 */
949 uint8_t channel_count:3;
950 uint8_t rsvd1:1;
951 uint8_t coding_type:4;
952 /* Packet Byte #2 */
953 uint8_t sample_size:2; /* SS0, SS1 */
954 uint8_t sample_frequency:3;
955 uint8_t rsvd2:3;
956 /* Packet Byte #3 */
957 uint8_t coding_type_private:5;
958 uint8_t rsvd3:3;
959 /* Packet Byte #4 */
960 uint8_t channel_allocation;
961 /* Packet Byte #5 */
962 uint8_t rsvd4:3;
963 uint8_t level_shift:4;
964 uint8_t downmix_inhibit:1;
965 } audio;
966 uint8_t payload[28];
967 } __attribute__ ((packed)) u;
968} __attribute__((packed));
969
Chris Wilson32aad862010-08-04 13:50:25 +0100970static bool intel_sdvo_set_avi_infoframe(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800971 struct drm_display_mode * mode)
972{
973 struct dip_infoframe avi_if = {
974 .type = DIP_TYPE_AVI,
975 .version = DIP_VERSION_AVI,
976 .len = DIP_LEN_AVI,
977 };
978
979 avi_if.checksum = intel_sdvo_calc_hbuf_csum((uint8_t *)&avi_if,
980 4 + avi_if.len);
Chris Wilson32aad862010-08-04 13:50:25 +0100981 return intel_sdvo_set_hdmi_buf(intel_sdvo, 1, (uint8_t *)&avi_if,
982 4 + avi_if.len,
983 SDVO_HBUF_TX_VSYNC);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800984}
985
Chris Wilson32aad862010-08-04 13:50:25 +0100986static bool intel_sdvo_set_tv_format(struct intel_sdvo *intel_sdvo)
Zhenyu Wang7026d4a2009-03-24 14:02:43 +0800987{
Zhao Yakuice6feab2009-08-24 13:50:26 +0800988 struct intel_sdvo_tv_format format;
Chris Wilson40039752010-08-04 13:50:26 +0100989 uint32_t format_map;
Zhao Yakuice6feab2009-08-24 13:50:26 +0800990
Chris Wilson40039752010-08-04 13:50:26 +0100991 format_map = 1 << intel_sdvo->tv_format_index;
Zhao Yakuice6feab2009-08-24 13:50:26 +0800992 memset(&format, 0, sizeof(format));
Chris Wilson32aad862010-08-04 13:50:25 +0100993 memcpy(&format, &format_map, min(sizeof(format), sizeof(format_map)));
Zhao Yakuice6feab2009-08-24 13:50:26 +0800994
Chris Wilson32aad862010-08-04 13:50:25 +0100995 BUILD_BUG_ON(sizeof(format) != 6);
996 return intel_sdvo_set_value(intel_sdvo,
997 SDVO_CMD_SET_TV_FORMAT,
998 &format, sizeof(format));
999}
Zhao Yakuice6feab2009-08-24 13:50:26 +08001000
Chris Wilson32aad862010-08-04 13:50:25 +01001001static bool
1002intel_sdvo_set_output_timings_from_mode(struct intel_sdvo *intel_sdvo,
1003 struct drm_display_mode *mode)
1004{
1005 struct intel_sdvo_dtd output_dtd;
1006
1007 if (!intel_sdvo_set_target_output(intel_sdvo,
1008 intel_sdvo->attached_output))
1009 return false;
1010
1011 intel_sdvo_get_dtd_from_mode(&output_dtd, mode);
1012 if (!intel_sdvo_set_output_timing(intel_sdvo, &output_dtd))
1013 return false;
1014
1015 return true;
1016}
1017
1018static bool
1019intel_sdvo_set_input_timings_for_mode(struct intel_sdvo *intel_sdvo,
1020 struct drm_display_mode *mode,
1021 struct drm_display_mode *adjusted_mode)
1022{
1023 struct intel_sdvo_dtd input_dtd;
1024
1025 /* Reset the input timing to the screen. Assume always input 0. */
1026 if (!intel_sdvo_set_target_input(intel_sdvo))
1027 return false;
1028
1029 if (!intel_sdvo_create_preferred_input_timing(intel_sdvo,
1030 mode->clock / 10,
1031 mode->hdisplay,
1032 mode->vdisplay))
1033 return false;
1034
1035 if (!intel_sdvo_get_preferred_input_timing(intel_sdvo,
1036 &input_dtd))
1037 return false;
1038
1039 intel_sdvo_get_mode_from_dtd(adjusted_mode, &input_dtd);
1040 intel_sdvo->sdvo_flags = input_dtd.part2.sdvo_flags;
1041
1042 drm_mode_set_crtcinfo(adjusted_mode, 0);
1043 mode->clock = adjusted_mode->clock;
1044 return true;
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001045}
1046
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001047static bool intel_sdvo_mode_fixup(struct drm_encoder *encoder,
1048 struct drm_display_mode *mode,
1049 struct drm_display_mode *adjusted_mode)
1050{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001051 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001052
Chris Wilson32aad862010-08-04 13:50:25 +01001053 /* We need to construct preferred input timings based on our
1054 * output timings. To do that, we have to set the output
1055 * timings, even though this isn't really the right place in
1056 * the sequence to do it. Oh well.
1057 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001058 if (intel_sdvo->is_tv) {
Chris Wilson32aad862010-08-04 13:50:25 +01001059 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo, mode))
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001060 return false;
Chris Wilson32aad862010-08-04 13:50:25 +01001061
1062 if (!intel_sdvo_set_input_timings_for_mode(intel_sdvo, mode, adjusted_mode))
1063 return false;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001064 } else if (intel_sdvo->is_lvds) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001065 drm_mode_set_crtcinfo(intel_sdvo->sdvo_lvds_fixed_mode, 0);
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001066
Chris Wilson32aad862010-08-04 13:50:25 +01001067 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo,
1068 intel_sdvo->sdvo_lvds_fixed_mode))
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001069 return false;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001070
Chris Wilson32aad862010-08-04 13:50:25 +01001071 if (!intel_sdvo_set_input_timings_for_mode(intel_sdvo, mode, adjusted_mode))
1072 return false;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001073 }
Chris Wilson32aad862010-08-04 13:50:25 +01001074
1075 /* Make the CRTC code factor in the SDVO pixel multiplier. The
1076 * SDVO device will be told of the multiplier during mode_set.
1077 */
1078 adjusted_mode->clock *= intel_sdvo_get_pixel_multiplier(mode);
1079
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001080 return true;
1081}
1082
1083static void intel_sdvo_mode_set(struct drm_encoder *encoder,
1084 struct drm_display_mode *mode,
1085 struct drm_display_mode *adjusted_mode)
1086{
1087 struct drm_device *dev = encoder->dev;
1088 struct drm_i915_private *dev_priv = dev->dev_private;
1089 struct drm_crtc *crtc = encoder->crtc;
1090 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001091 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001092 u32 sdvox = 0;
Chris Wilson32aad862010-08-04 13:50:25 +01001093 int sdvo_pixel_multiply, rate;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001094 struct intel_sdvo_in_out_map in_out;
1095 struct intel_sdvo_dtd input_dtd;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001096
1097 if (!mode)
1098 return;
1099
1100 /* First, set the input mapping for the first input to our controlled
1101 * output. This is only correct if we're a single-input device, in
1102 * which case the first input is the output from the appropriate SDVO
1103 * channel on the motherboard. In a two-input device, the first input
1104 * will be SDVOB and the second SDVOC.
1105 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001106 in_out.in0 = intel_sdvo->attached_output;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001107 in_out.in1 = 0;
1108
Chris Wilson32aad862010-08-04 13:50:25 +01001109 if (!intel_sdvo_set_value(intel_sdvo,
1110 SDVO_CMD_SET_IN_OUT_MAP,
1111 &in_out, sizeof(in_out)))
1112 return;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001113
Chris Wilsonea5b2132010-08-04 13:50:23 +01001114 if (intel_sdvo->is_hdmi) {
Chris Wilson32aad862010-08-04 13:50:25 +01001115 if (!intel_sdvo_set_avi_infoframe(intel_sdvo, mode))
1116 return;
1117
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001118 sdvox |= SDVO_AUDIO_ENABLE;
1119 }
1120
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001121 /* We have tried to get input timing in mode_fixup, and filled into
1122 adjusted_mode */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001123 if (intel_sdvo->is_tv || intel_sdvo->is_lvds) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001124 intel_sdvo_get_dtd_from_mode(&input_dtd, adjusted_mode);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001125 input_dtd.part2.sdvo_flags = intel_sdvo->sdvo_flags;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001126 } else
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001127 intel_sdvo_get_dtd_from_mode(&input_dtd, mode);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001128
1129 /* If it's a TV, we already set the output timing in mode_fixup.
1130 * Otherwise, the output timing is equal to the input timing.
1131 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001132 if (!intel_sdvo->is_tv && !intel_sdvo->is_lvds) {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001133 /* Set the output timing to the screen */
Chris Wilson32aad862010-08-04 13:50:25 +01001134 if (!intel_sdvo_set_target_output(intel_sdvo,
1135 intel_sdvo->attached_output))
1136 return;
1137
1138 if (!intel_sdvo_set_output_timing(intel_sdvo, &input_dtd))
1139 return;
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
Chris Wilson32aad862010-08-04 13:50:25 +01001166 if (!intel_sdvo_set_input_timing(intel_sdvo, &input_dtd))
1167 return;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001168#endif
Jesse Barnes79e53942008-11-07 14:24:08 -08001169
Chris Wilson32aad862010-08-04 13:50:25 +01001170 sdvo_pixel_multiply = intel_sdvo_get_pixel_multiplier(mode);
1171 switch (sdvo_pixel_multiply) {
1172 case 1: rate = SDVO_CLOCK_RATE_MULT_1X; break;
1173 case 2: rate = SDVO_CLOCK_RATE_MULT_2X; break;
1174 case 4: rate = SDVO_CLOCK_RATE_MULT_4X; break;
Jesse Barnes79e53942008-11-07 14:24:08 -08001175 }
Chris Wilson32aad862010-08-04 13:50:25 +01001176 if (!intel_sdvo_set_clock_rate_mult(intel_sdvo, rate))
1177 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001178
1179 /* Set the SDVO control regs. */
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001180 if (IS_I965G(dev)) {
Adam Jackson81a14b42010-07-16 14:46:32 -04001181 sdvox |= SDVO_BORDER_ENABLE;
1182 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1183 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
1184 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1185 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001186 } else {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001187 sdvox |= I915_READ(intel_sdvo->sdvo_reg);
1188 switch (intel_sdvo->sdvo_reg) {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001189 case SDVOB:
1190 sdvox &= SDVOB_PRESERVE_MASK;
1191 break;
1192 case SDVOC:
1193 sdvox &= SDVOC_PRESERVE_MASK;
1194 break;
1195 }
1196 sdvox |= (9 << 19) | SDVO_BORDER_ENABLE;
1197 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001198 if (intel_crtc->pipe == 1)
1199 sdvox |= SDVO_PIPE_B_SELECT;
1200
Jesse Barnes79e53942008-11-07 14:24:08 -08001201 if (IS_I965G(dev)) {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001202 /* done in crtc_mode_set as the dpll_md reg must be written early */
1203 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
1204 /* done in crtc_mode_set as it lives inside the dpll register */
Jesse Barnes79e53942008-11-07 14:24:08 -08001205 } else {
1206 sdvox |= (sdvo_pixel_multiply - 1) << SDVO_PORT_MULTIPLY_SHIFT;
1207 }
1208
Chris Wilsonea5b2132010-08-04 13:50:23 +01001209 if (intel_sdvo->sdvo_flags & SDVO_NEED_TO_STALL)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001210 sdvox |= SDVO_STALL_SELECT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001211 intel_sdvo_write_sdvox(intel_sdvo, sdvox);
Jesse Barnes79e53942008-11-07 14:24:08 -08001212}
1213
1214static void intel_sdvo_dpms(struct drm_encoder *encoder, int mode)
1215{
1216 struct drm_device *dev = encoder->dev;
1217 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001218 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
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++)
1241 intel_wait_for_vblank(dev);
1242
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 Wilsonea5b2132010-08-04 13:50:23 +01001275 if (intel_sdvo->is_lvds == true) {
1276 if (intel_sdvo->sdvo_lvds_fixed_mode == NULL)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001277 return MODE_PANEL;
1278
Chris Wilsonea5b2132010-08-04 13:50:23 +01001279 if (mode->hdisplay > intel_sdvo->sdvo_lvds_fixed_mode->hdisplay)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001280 return MODE_PANEL;
1281
Chris Wilsonea5b2132010-08-04 13:50:23 +01001282 if (mode->vdisplay > intel_sdvo->sdvo_lvds_fixed_mode->vdisplay)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001283 return MODE_PANEL;
1284 }
1285
Jesse Barnes79e53942008-11-07 14:24:08 -08001286 return MODE_OK;
1287}
1288
Chris Wilsonea5b2132010-08-04 13:50:23 +01001289static bool intel_sdvo_get_capabilities(struct intel_sdvo *intel_sdvo, struct intel_sdvo_caps *caps)
Jesse Barnes79e53942008-11-07 14:24:08 -08001290{
Chris Wilson32aad862010-08-04 13:50:25 +01001291 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_DEVICE_CAPS, caps, sizeof(*caps));
Jesse Barnes79e53942008-11-07 14:24:08 -08001292}
1293
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001294/* No use! */
1295#if 0
Jesse Barnes79e53942008-11-07 14:24:08 -08001296struct drm_connector* intel_sdvo_find(struct drm_device *dev, int sdvoB)
1297{
1298 struct drm_connector *connector = NULL;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001299 struct intel_sdvo *iout = NULL;
1300 struct intel_sdvo *sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001301
1302 /* find the sdvo connector */
1303 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001304 iout = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001305
1306 if (iout->type != INTEL_OUTPUT_SDVO)
1307 continue;
1308
1309 sdvo = iout->dev_priv;
1310
Eric Anholtc751ce42010-03-25 11:48:48 -07001311 if (sdvo->sdvo_reg == SDVOB && sdvoB)
Jesse Barnes79e53942008-11-07 14:24:08 -08001312 return connector;
1313
Eric Anholtc751ce42010-03-25 11:48:48 -07001314 if (sdvo->sdvo_reg == SDVOC && !sdvoB)
Jesse Barnes79e53942008-11-07 14:24:08 -08001315 return connector;
1316
1317 }
1318
1319 return NULL;
1320}
1321
1322int intel_sdvo_supports_hotplug(struct drm_connector *connector)
1323{
1324 u8 response[2];
1325 u8 status;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001326 struct intel_sdvo *intel_sdvo;
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001327 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08001328
1329 if (!connector)
1330 return 0;
1331
Chris Wilsonea5b2132010-08-04 13:50:23 +01001332 intel_sdvo = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001333
Chris Wilson32aad862010-08-04 13:50:25 +01001334 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT,
1335 &response, 2) && response[0];
Jesse Barnes79e53942008-11-07 14:24:08 -08001336}
1337
1338void intel_sdvo_set_hotplug(struct drm_connector *connector, int on)
1339{
1340 u8 response[2];
1341 u8 status;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001342 struct intel_sdvo *intel_sdvo = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001343
Chris Wilsonea5b2132010-08-04 13:50:23 +01001344 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_ACTIVE_HOT_PLUG, NULL, 0);
1345 intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001346
1347 if (on) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001348 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT, NULL, 0);
1349 status = intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001350
Chris Wilsonea5b2132010-08-04 13:50:23 +01001351 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001352 } else {
1353 response[0] = 0;
1354 response[1] = 0;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001355 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001356 }
1357
Chris Wilsonea5b2132010-08-04 13:50:23 +01001358 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_ACTIVE_HOT_PLUG, NULL, 0);
1359 intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001360}
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001361#endif
Jesse Barnes79e53942008-11-07 14:24:08 -08001362
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001363static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001364intel_sdvo_multifunc_encoder(struct intel_sdvo *intel_sdvo)
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001365{
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001366 int caps = 0;
1367
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_TMDS0 | SDVO_OUTPUT_TMDS1))
1370 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001371 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001372 (SDVO_OUTPUT_RGB0 | SDVO_OUTPUT_RGB1))
1373 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001374 if (intel_sdvo->caps.output_flags &
Roel Kluin19e1f882009-08-09 13:50:53 +02001375 (SDVO_OUTPUT_SVID0 | SDVO_OUTPUT_SVID1))
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001376 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_CVBS0 | SDVO_OUTPUT_CVBS1))
1379 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001380 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001381 (SDVO_OUTPUT_YPRPB0 | SDVO_OUTPUT_YPRPB1))
1382 caps++;
1383
Chris Wilsonea5b2132010-08-04 13:50:23 +01001384 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001385 (SDVO_OUTPUT_SCART0 | SDVO_OUTPUT_SCART1))
1386 caps++;
1387
Chris Wilsonea5b2132010-08-04 13:50:23 +01001388 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001389 (SDVO_OUTPUT_LVDS0 | SDVO_OUTPUT_LVDS1))
1390 caps++;
1391
1392 return (caps > 1);
1393}
1394
Keith Packard57cdaf92009-09-04 13:07:54 +08001395static struct drm_connector *
1396intel_find_analog_connector(struct drm_device *dev)
1397{
1398 struct drm_connector *connector;
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001399 struct drm_encoder *encoder;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001400 struct intel_sdvo *intel_sdvo;
Keith Packard57cdaf92009-09-04 13:07:54 +08001401
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001402 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001403 intel_sdvo = enc_to_intel_sdvo(encoder);
1404 if (intel_sdvo->base.type == INTEL_OUTPUT_ANALOG) {
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001405 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Dan Carpenter90a78e82010-05-07 10:40:09 +02001406 if (encoder == intel_attached_encoder(connector))
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001407 return connector;
1408 }
1409 }
Keith Packard57cdaf92009-09-04 13:07:54 +08001410 }
1411 return NULL;
1412}
1413
1414static int
1415intel_analog_is_connected(struct drm_device *dev)
1416{
1417 struct drm_connector *analog_connector;
Keith Packard57cdaf92009-09-04 13:07:54 +08001418
Chris Wilson32aad862010-08-04 13:50:25 +01001419 analog_connector = intel_find_analog_connector(dev);
Keith Packard57cdaf92009-09-04 13:07:54 +08001420 if (!analog_connector)
1421 return false;
1422
1423 if (analog_connector->funcs->detect(analog_connector) ==
1424 connector_status_disconnected)
1425 return false;
1426
1427 return true;
1428}
1429
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001430enum drm_connector_status
Adam Jackson149c36a2010-04-29 14:05:18 -04001431intel_sdvo_hdmi_sink_detect(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001432{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001433 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001434 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Chris Wilson615fb932010-08-04 13:50:24 +01001435 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001436 enum drm_connector_status status = connector_status_connected;
Ma Ling9dff6af2009-04-02 13:13:26 +08001437 struct edid *edid = NULL;
1438
Chris Wilsonea5b2132010-08-04 13:50:23 +01001439 edid = drm_get_edid(connector, intel_sdvo->base.ddc_bus);
Keith Packard57cdaf92009-09-04 13:07:54 +08001440
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001441 /* This is only applied to SDVO cards with multiple outputs */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001442 if (edid == NULL && intel_sdvo_multifunc_encoder(intel_sdvo)) {
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001443 uint8_t saved_ddc, temp_ddc;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001444 saved_ddc = intel_sdvo->ddc_bus;
1445 temp_ddc = intel_sdvo->ddc_bus >> 1;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001446 /*
1447 * Don't use the 1 as the argument of DDC bus switch to get
1448 * the EDID. It is used for SDVO SPD ROM.
1449 */
1450 while(temp_ddc > 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001451 intel_sdvo->ddc_bus = temp_ddc;
1452 edid = drm_get_edid(connector, intel_sdvo->base.ddc_bus);
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001453 if (edid) {
1454 /*
1455 * When we can get the EDID, maybe it is the
1456 * correct DDC bus. Update it.
1457 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001458 intel_sdvo->ddc_bus = temp_ddc;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001459 break;
1460 }
1461 temp_ddc >>= 1;
1462 }
1463 if (edid == NULL)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001464 intel_sdvo->ddc_bus = saved_ddc;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001465 }
Keith Packard57cdaf92009-09-04 13:07:54 +08001466 /* when there is no edid and no monitor is connected with VGA
1467 * port, try to use the CRT ddc to read the EDID for DVI-connector
1468 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001469 if (edid == NULL && intel_sdvo->analog_ddc_bus &&
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001470 !intel_analog_is_connected(connector->dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01001471 edid = drm_get_edid(connector, intel_sdvo->analog_ddc_bus);
Adam Jackson149c36a2010-04-29 14:05:18 -04001472
Ma Ling9dff6af2009-04-02 13:13:26 +08001473 if (edid != NULL) {
Adam Jackson149c36a2010-04-29 14:05:18 -04001474 bool is_digital = !!(edid->input & DRM_EDID_INPUT_DIGITAL);
Chris Wilson615fb932010-08-04 13:50:24 +01001475 bool need_digital = !!(intel_sdvo_connector->output_flag & SDVO_TMDS_MASK);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001476
Adam Jackson149c36a2010-04-29 14:05:18 -04001477 /* DDC bus is shared, match EDID to connector type */
1478 if (is_digital && need_digital)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001479 intel_sdvo->is_hdmi = drm_detect_hdmi_monitor(edid);
Adam Jackson149c36a2010-04-29 14:05:18 -04001480 else if (is_digital != need_digital)
1481 status = connector_status_disconnected;
1482
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001483 connector->display_info.raw_edid = NULL;
Adam Jackson149c36a2010-04-29 14:05:18 -04001484 } else
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001485 status = connector_status_disconnected;
Adam Jackson149c36a2010-04-29 14:05:18 -04001486
1487 kfree(edid);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001488
1489 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +08001490}
1491
Jesse Barnes79e53942008-11-07 14:24:08 -08001492static enum drm_connector_status intel_sdvo_detect(struct drm_connector *connector)
1493{
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001494 uint16_t response;
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001495 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001496 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Chris Wilson615fb932010-08-04 13:50:24 +01001497 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08001498 enum drm_connector_status ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001499
Chris Wilson32aad862010-08-04 13:50:25 +01001500 if (!intel_sdvo_write_cmd(intel_sdvo,
1501 SDVO_CMD_GET_ATTACHED_DISPLAYS, NULL, 0))
1502 return connector_status_unknown;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001503 if (intel_sdvo->is_tv) {
Zhao Yakuid09c23d2009-11-06 15:39:56 +08001504 /* add 30ms delay when the output type is SDVO-TV */
1505 mdelay(30);
1506 }
Chris Wilson32aad862010-08-04 13:50:25 +01001507 if (!intel_sdvo_read_response(intel_sdvo, &response, 2))
1508 return connector_status_unknown;
Jesse Barnes79e53942008-11-07 14:24:08 -08001509
Dave Airlie51c8b402009-08-20 13:38:04 +10001510 DRM_DEBUG_KMS("SDVO response %d %d\n", response & 0xff, response >> 8);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001511
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001512 if (response == 0)
Jesse Barnes79e53942008-11-07 14:24:08 -08001513 return connector_status_disconnected;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001514
Chris Wilsonea5b2132010-08-04 13:50:23 +01001515 intel_sdvo->attached_output = response;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001516
Chris Wilson615fb932010-08-04 13:50:24 +01001517 if ((intel_sdvo_connector->output_flag & response) == 0)
Zhenyu Wang14571b42010-03-30 14:06:33 +08001518 ret = connector_status_disconnected;
Adam Jackson149c36a2010-04-29 14:05:18 -04001519 else if (response & SDVO_TMDS_MASK)
1520 ret = intel_sdvo_hdmi_sink_detect(connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08001521 else
1522 ret = connector_status_connected;
1523
1524 /* May update encoder flag for like clock for SDVO TV, etc.*/
1525 if (ret == connector_status_connected) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001526 intel_sdvo->is_tv = false;
1527 intel_sdvo->is_lvds = false;
1528 intel_sdvo->base.needs_tv_clock = false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001529
1530 if (response & SDVO_TV_MASK) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001531 intel_sdvo->is_tv = true;
1532 intel_sdvo->base.needs_tv_clock = true;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001533 }
1534 if (response & SDVO_LVDS_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001535 intel_sdvo->is_lvds = true;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001536 }
Zhenyu Wang14571b42010-03-30 14:06:33 +08001537
1538 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001539}
1540
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001541static void intel_sdvo_get_ddc_modes(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08001542{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001543 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001544 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Keith Packard57cdaf92009-09-04 13:07:54 +08001545 int num_modes;
Jesse Barnes79e53942008-11-07 14:24:08 -08001546
1547 /* set the bus switch and get the modes */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001548 num_modes = intel_ddc_get_modes(connector, intel_sdvo->base.ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -08001549
Keith Packard57cdaf92009-09-04 13:07:54 +08001550 /*
1551 * Mac mini hack. On this device, the DVI-I connector shares one DDC
1552 * link between analog and digital outputs. So, if the regular SDVO
1553 * DDC fails, check to see if the analog output is disconnected, in
1554 * which case we'll look there for the digital DDC data.
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001555 */
Keith Packard57cdaf92009-09-04 13:07:54 +08001556 if (num_modes == 0 &&
Chris Wilsonea5b2132010-08-04 13:50:23 +01001557 intel_sdvo->analog_ddc_bus &&
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001558 !intel_analog_is_connected(connector->dev)) {
Keith Packard57cdaf92009-09-04 13:07:54 +08001559 /* Switch to the analog ddc bus and try that
1560 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001561 (void) intel_ddc_get_modes(connector, intel_sdvo->analog_ddc_bus);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001562 }
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001563}
1564
1565/*
1566 * Set of SDVO TV modes.
1567 * Note! This is in reply order (see loop in get_tv_modes).
1568 * XXX: all 60Hz refresh?
1569 */
1570struct drm_display_mode sdvo_tv_modes[] = {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001571 { DRM_MODE("320x200", DRM_MODE_TYPE_DRIVER, 5815, 320, 321, 384,
1572 416, 0, 200, 201, 232, 233, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001573 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001574 { DRM_MODE("320x240", DRM_MODE_TYPE_DRIVER, 6814, 320, 321, 384,
1575 416, 0, 240, 241, 272, 273, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001576 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001577 { DRM_MODE("400x300", DRM_MODE_TYPE_DRIVER, 9910, 400, 401, 464,
1578 496, 0, 300, 301, 332, 333, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001579 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001580 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 16913, 640, 641, 704,
1581 736, 0, 350, 351, 382, 383, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001582 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001583 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 19121, 640, 641, 704,
1584 736, 0, 400, 401, 432, 433, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001585 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001586 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 22654, 640, 641, 704,
1587 736, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001588 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001589 { DRM_MODE("704x480", DRM_MODE_TYPE_DRIVER, 24624, 704, 705, 768,
1590 800, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001591 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001592 { DRM_MODE("704x576", DRM_MODE_TYPE_DRIVER, 29232, 704, 705, 768,
1593 800, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001594 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001595 { DRM_MODE("720x350", DRM_MODE_TYPE_DRIVER, 18751, 720, 721, 784,
1596 816, 0, 350, 351, 382, 383, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001597 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001598 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 21199, 720, 721, 784,
1599 816, 0, 400, 401, 432, 433, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001600 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001601 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 25116, 720, 721, 784,
1602 816, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001603 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001604 { DRM_MODE("720x540", DRM_MODE_TYPE_DRIVER, 28054, 720, 721, 784,
1605 816, 0, 540, 541, 572, 573, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001606 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001607 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 29816, 720, 721, 784,
1608 816, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001609 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001610 { DRM_MODE("768x576", DRM_MODE_TYPE_DRIVER, 31570, 768, 769, 832,
1611 864, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001612 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001613 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 34030, 800, 801, 864,
1614 896, 0, 600, 601, 632, 633, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001615 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001616 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 36581, 832, 833, 896,
1617 928, 0, 624, 625, 656, 657, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001618 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001619 { DRM_MODE("920x766", DRM_MODE_TYPE_DRIVER, 48707, 920, 921, 984,
1620 1016, 0, 766, 767, 798, 799, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001621 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001622 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 53827, 1024, 1025, 1088,
1623 1120, 0, 768, 769, 800, 801, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001624 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001625 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 87265, 1280, 1281, 1344,
1626 1376, 0, 1024, 1025, 1056, 1057, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001627 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1628};
1629
1630static void intel_sdvo_get_tv_modes(struct drm_connector *connector)
1631{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001632 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001633 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001634 struct intel_sdvo_sdtv_resolution_request tv_res;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001635 uint32_t reply = 0, format_map = 0;
1636 int i;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001637
1638 /* Read the list of supported input resolutions for the selected TV
1639 * format.
1640 */
Chris Wilson40039752010-08-04 13:50:26 +01001641 format_map = 1 << intel_sdvo->tv_format_index;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001642 memcpy(&tv_res, &format_map,
Chris Wilson32aad862010-08-04 13:50:25 +01001643 min(sizeof(format_map), sizeof(struct intel_sdvo_sdtv_resolution_request)));
Zhao Yakuice6feab2009-08-24 13:50:26 +08001644
Chris Wilson32aad862010-08-04 13:50:25 +01001645 if (!intel_sdvo_set_target_output(intel_sdvo, intel_sdvo->attached_output))
1646 return;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001647
Chris Wilson32aad862010-08-04 13:50:25 +01001648 BUILD_BUG_ON(sizeof(tv_res) != 3);
1649 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT,
1650 &tv_res, sizeof(tv_res)))
1651 return;
1652 if (!intel_sdvo_read_response(intel_sdvo, &reply, 3))
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001653 return;
1654
1655 for (i = 0; i < ARRAY_SIZE(sdvo_tv_modes); i++)
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001656 if (reply & (1 << i)) {
1657 struct drm_display_mode *nmode;
1658 nmode = drm_mode_duplicate(connector->dev,
Chris Wilson32aad862010-08-04 13:50:25 +01001659 &sdvo_tv_modes[i]);
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001660 if (nmode)
1661 drm_mode_probed_add(connector, nmode);
1662 }
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001663}
1664
Ma Ling7086c872009-05-13 11:20:06 +08001665static void intel_sdvo_get_lvds_modes(struct drm_connector *connector)
1666{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001667 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001668 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Ma Ling7086c872009-05-13 11:20:06 +08001669 struct drm_i915_private *dev_priv = connector->dev->dev_private;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001670 struct drm_display_mode *newmode;
Ma Ling7086c872009-05-13 11:20:06 +08001671
1672 /*
1673 * Attempt to get the mode list from DDC.
1674 * Assume that the preferred modes are
1675 * arranged in priority order.
1676 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001677 intel_ddc_get_modes(connector, intel_sdvo->base.ddc_bus);
Ma Ling7086c872009-05-13 11:20:06 +08001678 if (list_empty(&connector->probed_modes) == false)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001679 goto end;
Ma Ling7086c872009-05-13 11:20:06 +08001680
1681 /* Fetch modes from VBT */
1682 if (dev_priv->sdvo_lvds_vbt_mode != NULL) {
Ma Ling7086c872009-05-13 11:20:06 +08001683 newmode = drm_mode_duplicate(connector->dev,
1684 dev_priv->sdvo_lvds_vbt_mode);
1685 if (newmode != NULL) {
1686 /* Guarantee the mode is preferred */
1687 newmode->type = (DRM_MODE_TYPE_PREFERRED |
1688 DRM_MODE_TYPE_DRIVER);
1689 drm_mode_probed_add(connector, newmode);
1690 }
1691 }
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001692
1693end:
1694 list_for_each_entry(newmode, &connector->probed_modes, head) {
1695 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001696 intel_sdvo->sdvo_lvds_fixed_mode =
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001697 drm_mode_duplicate(connector->dev, newmode);
1698 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);
1754 if (intel_sdvo_connector->brightness)
1755 drm_property_destroy(dev, intel_sdvo_connector->brightness);
Zhao Yakuib9219c52009-09-10 15:45:46 +08001756}
1757
Jesse Barnes79e53942008-11-07 14:24:08 -08001758static void intel_sdvo_destroy(struct drm_connector *connector)
1759{
Chris Wilson615fb932010-08-04 13:50:24 +01001760 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001761
Chris Wilsonc5521702010-08-04 13:50:28 +01001762 if (intel_sdvo_connector->tv_format)
Zhao Yakuice6feab2009-08-24 13:50:26 +08001763 drm_property_destroy(connector->dev,
Chris Wilsonc5521702010-08-04 13:50:28 +01001764 intel_sdvo_connector->tv_format);
Zhao Yakuice6feab2009-08-24 13:50:26 +08001765
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001766 intel_sdvo_destroy_enhance_property(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001767 drm_sysfs_connector_remove(connector);
1768 drm_connector_cleanup(connector);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001769 kfree(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001770}
1771
Zhao Yakuice6feab2009-08-24 13:50:26 +08001772static int
1773intel_sdvo_set_property(struct drm_connector *connector,
1774 struct drm_property *property,
1775 uint64_t val)
1776{
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001777 struct drm_encoder *encoder = intel_attached_encoder(connector);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001778 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Chris Wilson615fb932010-08-04 13:50:24 +01001779 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Zhao Yakuib9219c52009-09-10 15:45:46 +08001780 uint16_t temp_value;
Chris Wilson32aad862010-08-04 13:50:25 +01001781 uint8_t cmd;
1782 int ret;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001783
1784 ret = drm_connector_property_set_value(connector, property, val);
Chris Wilson32aad862010-08-04 13:50:25 +01001785 if (ret)
1786 return ret;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001787
Chris Wilsonc5521702010-08-04 13:50:28 +01001788#define CHECK_PROPERTY(name, NAME) \
1789 if (intel_sdvo_connector->name == property) { \
1790 if (intel_sdvo_connector->cur_##name == temp_value) return 0; \
1791 if (intel_sdvo_connector->max_##name < temp_value) return -EINVAL; \
1792 cmd = SDVO_CMD_SET_##NAME; \
1793 intel_sdvo_connector->cur_##name = temp_value; \
1794 goto set_value; \
1795 }
1796
1797 if (property == intel_sdvo_connector->tv_format) {
Chris Wilson32aad862010-08-04 13:50:25 +01001798 if (val >= TV_FORMAT_NUM)
1799 return -EINVAL;
1800
Chris Wilson40039752010-08-04 13:50:26 +01001801 if (intel_sdvo->tv_format_index ==
Chris Wilson615fb932010-08-04 13:50:24 +01001802 intel_sdvo_connector->tv_format_supported[val])
Chris Wilson32aad862010-08-04 13:50:25 +01001803 return 0;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001804
Chris Wilson40039752010-08-04 13:50:26 +01001805 intel_sdvo->tv_format_index = intel_sdvo_connector->tv_format_supported[val];
Chris Wilsonc5521702010-08-04 13:50:28 +01001806 goto done;
Chris Wilson32aad862010-08-04 13:50:25 +01001807 } else if (IS_TV_OR_LVDS(intel_sdvo_connector)) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001808 temp_value = val;
Chris Wilsonc5521702010-08-04 13:50:28 +01001809 if (intel_sdvo_connector->left == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001810 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001811 intel_sdvo_connector->right, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001812 if (intel_sdvo_connector->left_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001813 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001814
Chris Wilson615fb932010-08-04 13:50:24 +01001815 intel_sdvo_connector->left_margin = temp_value;
1816 intel_sdvo_connector->right_margin = temp_value;
1817 temp_value = intel_sdvo_connector->max_hscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001818 intel_sdvo_connector->left_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001819 cmd = SDVO_CMD_SET_OVERSCAN_H;
Chris Wilsonc5521702010-08-04 13:50:28 +01001820 goto set_value;
1821 } else if (intel_sdvo_connector->right == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001822 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001823 intel_sdvo_connector->left, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001824 if (intel_sdvo_connector->right_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001825 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001826
Chris Wilson615fb932010-08-04 13:50:24 +01001827 intel_sdvo_connector->left_margin = temp_value;
1828 intel_sdvo_connector->right_margin = temp_value;
1829 temp_value = intel_sdvo_connector->max_hscan -
1830 intel_sdvo_connector->left_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001831 cmd = SDVO_CMD_SET_OVERSCAN_H;
Chris Wilsonc5521702010-08-04 13:50:28 +01001832 goto set_value;
1833 } else if (intel_sdvo_connector->top == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001834 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001835 intel_sdvo_connector->bottom, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001836 if (intel_sdvo_connector->top_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001837 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001838
Chris Wilson615fb932010-08-04 13:50:24 +01001839 intel_sdvo_connector->top_margin = temp_value;
1840 intel_sdvo_connector->bottom_margin = temp_value;
1841 temp_value = intel_sdvo_connector->max_vscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001842 intel_sdvo_connector->top_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001843 cmd = SDVO_CMD_SET_OVERSCAN_V;
Chris Wilsonc5521702010-08-04 13:50:28 +01001844 goto set_value;
1845 } else if (intel_sdvo_connector->bottom == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001846 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001847 intel_sdvo_connector->top, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001848 if (intel_sdvo_connector->bottom_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001849 return 0;
1850
Chris Wilson615fb932010-08-04 13:50:24 +01001851 intel_sdvo_connector->top_margin = temp_value;
1852 intel_sdvo_connector->bottom_margin = temp_value;
1853 temp_value = intel_sdvo_connector->max_vscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001854 intel_sdvo_connector->top_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001855 cmd = SDVO_CMD_SET_OVERSCAN_V;
Chris Wilsonc5521702010-08-04 13:50:28 +01001856 goto set_value;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001857 }
Chris Wilsonc5521702010-08-04 13:50:28 +01001858 CHECK_PROPERTY(hpos, HPOS)
1859 CHECK_PROPERTY(vpos, VPOS)
1860 CHECK_PROPERTY(saturation, SATURATION)
1861 CHECK_PROPERTY(contrast, CONTRAST)
1862 CHECK_PROPERTY(hue, HUE)
1863 CHECK_PROPERTY(brightness, BRIGHTNESS)
1864 CHECK_PROPERTY(sharpness, SHARPNESS)
1865 CHECK_PROPERTY(flicker_filter, FLICKER_FILTER)
1866 CHECK_PROPERTY(flicker_filter_2d, FLICKER_FILTER_2D)
1867 CHECK_PROPERTY(flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE)
1868 CHECK_PROPERTY(tv_chroma_filter, TV_CHROMA_FILTER)
1869 CHECK_PROPERTY(tv_luma_filter, TV_LUMA_FILTER)
Zhao Yakuib9219c52009-09-10 15:45:46 +08001870 }
Chris Wilsonc5521702010-08-04 13:50:28 +01001871
1872 return -EINVAL; /* unknown property */
1873
1874set_value:
1875 if (!intel_sdvo_set_value(intel_sdvo, cmd, &temp_value, 2))
1876 return -EIO;
1877
1878
1879done:
1880 if (encoder->crtc) {
1881 struct drm_crtc *crtc = encoder->crtc;
1882
Zhao Yakuice6feab2009-08-24 13:50:26 +08001883 drm_crtc_helper_set_mode(crtc, &crtc->mode, crtc->x,
Chris Wilsonc5521702010-08-04 13:50:28 +01001884 crtc->y, crtc->fb);
1885 }
1886
Chris Wilson32aad862010-08-04 13:50:25 +01001887 return 0;
Chris Wilsonc5521702010-08-04 13:50:28 +01001888#undef CHECK_PROPERTY
Zhao Yakuice6feab2009-08-24 13:50:26 +08001889}
1890
Jesse Barnes79e53942008-11-07 14:24:08 -08001891static const struct drm_encoder_helper_funcs intel_sdvo_helper_funcs = {
1892 .dpms = intel_sdvo_dpms,
1893 .mode_fixup = intel_sdvo_mode_fixup,
1894 .prepare = intel_encoder_prepare,
1895 .mode_set = intel_sdvo_mode_set,
1896 .commit = intel_encoder_commit,
1897};
1898
1899static const struct drm_connector_funcs intel_sdvo_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -07001900 .dpms = drm_helper_connector_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -08001901 .detect = intel_sdvo_detect,
1902 .fill_modes = drm_helper_probe_single_connector_modes,
Zhao Yakuice6feab2009-08-24 13:50:26 +08001903 .set_property = intel_sdvo_set_property,
Jesse Barnes79e53942008-11-07 14:24:08 -08001904 .destroy = intel_sdvo_destroy,
1905};
1906
1907static const struct drm_connector_helper_funcs intel_sdvo_connector_helper_funcs = {
1908 .get_modes = intel_sdvo_get_modes,
1909 .mode_valid = intel_sdvo_mode_valid,
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001910 .best_encoder = intel_attached_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -08001911};
1912
Hannes Ederb358d0a2008-12-18 21:18:47 +01001913static void intel_sdvo_enc_destroy(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08001914{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001915 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001916
Chris Wilsonea5b2132010-08-04 13:50:23 +01001917 if (intel_sdvo->analog_ddc_bus)
1918 intel_i2c_destroy(intel_sdvo->analog_ddc_bus);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001919
Chris Wilsonea5b2132010-08-04 13:50:23 +01001920 if (intel_sdvo->sdvo_lvds_fixed_mode != NULL)
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001921 drm_mode_destroy(encoder->dev,
Chris Wilsonea5b2132010-08-04 13:50:23 +01001922 intel_sdvo->sdvo_lvds_fixed_mode);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001923
Chris Wilsonea5b2132010-08-04 13:50:23 +01001924 intel_encoder_destroy(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08001925}
1926
1927static const struct drm_encoder_funcs intel_sdvo_enc_funcs = {
1928 .destroy = intel_sdvo_enc_destroy,
1929};
1930
1931
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001932/**
1933 * Choose the appropriate DDC bus for control bus switch command for this
1934 * SDVO output based on the controlled output.
1935 *
1936 * DDC bus number assignment is in a priority order of RGB outputs, then TMDS
1937 * outputs, then LVDS outputs.
1938 */
1939static void
Adam Jacksonb1083332010-04-23 16:07:40 -04001940intel_sdvo_select_ddc_bus(struct drm_i915_private *dev_priv,
Chris Wilsonea5b2132010-08-04 13:50:23 +01001941 struct intel_sdvo *sdvo, u32 reg)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001942{
Adam Jacksonb1083332010-04-23 16:07:40 -04001943 struct sdvo_device_mapping *mapping;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001944
Adam Jacksonb1083332010-04-23 16:07:40 -04001945 if (IS_SDVOB(reg))
1946 mapping = &(dev_priv->sdvo_mappings[0]);
1947 else
1948 mapping = &(dev_priv->sdvo_mappings[1]);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001949
Adam Jacksonb1083332010-04-23 16:07:40 -04001950 sdvo->ddc_bus = 1 << ((mapping->ddc_pin & 0xf0) >> 4);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001951}
1952
1953static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001954intel_sdvo_get_digital_encoding_mode(struct intel_sdvo *intel_sdvo, int device)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001955{
Chris Wilson32aad862010-08-04 13:50:25 +01001956 return intel_sdvo_set_target_output(intel_sdvo,
1957 device == 0 ? SDVO_OUTPUT_TMDS0 : SDVO_OUTPUT_TMDS1) &&
1958 intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_ENCODE,
1959 &intel_sdvo->is_hdmi, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001960}
1961
Chris Wilsonea5b2132010-08-04 13:50:23 +01001962static struct intel_sdvo *
1963intel_sdvo_chan_to_intel_sdvo(struct intel_i2c_chan *chan)
Ma Ling619ac3b2009-05-18 16:12:46 +08001964{
1965 struct drm_device *dev = chan->drm_dev;
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001966 struct drm_encoder *encoder;
Ma Ling619ac3b2009-05-18 16:12:46 +08001967
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001968 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001969 struct intel_sdvo *intel_sdvo = enc_to_intel_sdvo(encoder);
1970 if (intel_sdvo->base.ddc_bus == &chan->adapter)
1971 return intel_sdvo;
Ma Ling619ac3b2009-05-18 16:12:46 +08001972 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01001973
Chris Wilson32aad862010-08-04 13:50:25 +01001974 return NULL;
Ma Ling619ac3b2009-05-18 16:12:46 +08001975}
1976
1977static int intel_sdvo_master_xfer(struct i2c_adapter *i2c_adap,
1978 struct i2c_msg msgs[], int num)
1979{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001980 struct intel_sdvo *intel_sdvo;
Ma Ling619ac3b2009-05-18 16:12:46 +08001981 struct i2c_algo_bit_data *algo_data;
Keith Packardf9c10a92009-05-30 12:16:25 -07001982 const struct i2c_algorithm *algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08001983
1984 algo_data = (struct i2c_algo_bit_data *)i2c_adap->algo_data;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001985 intel_sdvo =
1986 intel_sdvo_chan_to_intel_sdvo((struct intel_i2c_chan *)
1987 (algo_data->data));
1988 if (intel_sdvo == NULL)
Ma Ling619ac3b2009-05-18 16:12:46 +08001989 return -EINVAL;
1990
Chris Wilsonea5b2132010-08-04 13:50:23 +01001991 algo = intel_sdvo->base.i2c_bus->algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08001992
Chris Wilsonea5b2132010-08-04 13:50:23 +01001993 intel_sdvo_set_control_bus_switch(intel_sdvo, intel_sdvo->ddc_bus);
Ma Ling619ac3b2009-05-18 16:12:46 +08001994 return algo->master_xfer(i2c_adap, msgs, num);
1995}
1996
1997static struct i2c_algorithm intel_sdvo_i2c_bit_algo = {
1998 .master_xfer = intel_sdvo_master_xfer,
1999};
2000
yakui_zhao714605e2009-05-31 17:18:07 +08002001static u8
Eric Anholtc751ce42010-03-25 11:48:48 -07002002intel_sdvo_get_slave_addr(struct drm_device *dev, int sdvo_reg)
yakui_zhao714605e2009-05-31 17:18:07 +08002003{
2004 struct drm_i915_private *dev_priv = dev->dev_private;
2005 struct sdvo_device_mapping *my_mapping, *other_mapping;
2006
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002007 if (IS_SDVOB(sdvo_reg)) {
yakui_zhao714605e2009-05-31 17:18:07 +08002008 my_mapping = &dev_priv->sdvo_mappings[0];
2009 other_mapping = &dev_priv->sdvo_mappings[1];
2010 } else {
2011 my_mapping = &dev_priv->sdvo_mappings[1];
2012 other_mapping = &dev_priv->sdvo_mappings[0];
2013 }
2014
2015 /* If the BIOS described our SDVO device, take advantage of it. */
2016 if (my_mapping->slave_addr)
2017 return my_mapping->slave_addr;
2018
2019 /* If the BIOS only described a different SDVO device, use the
2020 * address that it isn't using.
2021 */
2022 if (other_mapping->slave_addr) {
2023 if (other_mapping->slave_addr == 0x70)
2024 return 0x72;
2025 else
2026 return 0x70;
2027 }
2028
2029 /* No SDVO device info is found for another DVO port,
2030 * so use mapping assumption we had before BIOS parsing.
2031 */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002032 if (IS_SDVOB(sdvo_reg))
yakui_zhao714605e2009-05-31 17:18:07 +08002033 return 0x70;
2034 else
2035 return 0x72;
2036}
2037
Zhenyu Wang14571b42010-03-30 14:06:33 +08002038static void
Chris Wilson32aad862010-08-04 13:50:25 +01002039intel_sdvo_connector_init(struct drm_encoder *encoder,
2040 struct drm_connector *connector)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002041{
2042 drm_connector_init(encoder->dev, connector, &intel_sdvo_connector_funcs,
2043 connector->connector_type);
Zhao Yakui6070a4a2010-02-08 21:35:12 +08002044
Zhenyu Wang14571b42010-03-30 14:06:33 +08002045 drm_connector_helper_add(connector, &intel_sdvo_connector_helper_funcs);
2046
2047 connector->interlace_allowed = 0;
2048 connector->doublescan_allowed = 0;
2049 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
2050
2051 drm_mode_connector_attach_encoder(connector, encoder);
2052 drm_sysfs_connector_add(connector);
2053}
2054
2055static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002056intel_sdvo_dvi_init(struct intel_sdvo *intel_sdvo, int device)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002057{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002058 struct drm_encoder *encoder = &intel_sdvo->base.enc;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002059 struct drm_connector *connector;
2060 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002061 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002062
Chris Wilson615fb932010-08-04 13:50:24 +01002063 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2064 if (!intel_sdvo_connector)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002065 return false;
2066
Zhenyu Wang14571b42010-03-30 14:06:33 +08002067 if (device == 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002068 intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS0;
Chris Wilson615fb932010-08-04 13:50:24 +01002069 intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS0;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002070 } else if (device == 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002071 intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS1;
Chris Wilson615fb932010-08-04 13:50:24 +01002072 intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS1;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002073 }
2074
Chris Wilson615fb932010-08-04 13:50:24 +01002075 intel_connector = &intel_sdvo_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002076 connector = &intel_connector->base;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002077 connector->polled = DRM_CONNECTOR_POLL_CONNECT | DRM_CONNECTOR_POLL_DISCONNECT;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002078 encoder->encoder_type = DRM_MODE_ENCODER_TMDS;
2079 connector->connector_type = DRM_MODE_CONNECTOR_DVID;
2080
Chris Wilsonea5b2132010-08-04 13:50:23 +01002081 if (intel_sdvo_get_supp_encode(intel_sdvo, &intel_sdvo->encode)
2082 && intel_sdvo_get_digital_encoding_mode(intel_sdvo, device)
2083 && intel_sdvo->is_hdmi) {
Zhenyu Wang14571b42010-03-30 14:06:33 +08002084 /* enable hdmi encoding mode if supported */
Chris Wilsonea5b2132010-08-04 13:50:23 +01002085 intel_sdvo_set_encode(intel_sdvo, SDVO_ENCODE_HDMI);
2086 intel_sdvo_set_colorimetry(intel_sdvo,
Zhenyu Wang14571b42010-03-30 14:06:33 +08002087 SDVO_COLORIMETRY_RGB256);
2088 connector->connector_type = DRM_MODE_CONNECTOR_HDMIA;
2089 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002090 intel_sdvo->base.clone_mask = ((1 << INTEL_SDVO_NON_TV_CLONE_BIT) |
2091 (1 << INTEL_ANALOG_CLONE_BIT));
Zhenyu Wang14571b42010-03-30 14:06:33 +08002092
Chris Wilson32aad862010-08-04 13:50:25 +01002093 intel_sdvo_connector_init(encoder, connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002094
2095 return true;
2096}
2097
2098static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002099intel_sdvo_tv_init(struct intel_sdvo *intel_sdvo, int type)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002100{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002101 struct drm_encoder *encoder = &intel_sdvo->base.enc;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002102 struct drm_connector *connector;
2103 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002104 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002105
Chris Wilson615fb932010-08-04 13:50:24 +01002106 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2107 if (!intel_sdvo_connector)
2108 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002109
Chris Wilson615fb932010-08-04 13:50:24 +01002110 intel_connector = &intel_sdvo_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002111 connector = &intel_connector->base;
2112 encoder->encoder_type = DRM_MODE_ENCODER_TVDAC;
2113 connector->connector_type = DRM_MODE_CONNECTOR_SVIDEO;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002114
Chris Wilsonea5b2132010-08-04 13:50:23 +01002115 intel_sdvo->controlled_output |= type;
Chris Wilson615fb932010-08-04 13:50:24 +01002116 intel_sdvo_connector->output_flag = type;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002117
Chris Wilsonea5b2132010-08-04 13:50:23 +01002118 intel_sdvo->is_tv = true;
2119 intel_sdvo->base.needs_tv_clock = true;
2120 intel_sdvo->base.clone_mask = 1 << INTEL_SDVO_TV_CLONE_BIT;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002121
Chris Wilson32aad862010-08-04 13:50:25 +01002122 intel_sdvo_connector_init(encoder, connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002123
Chris Wilson32aad862010-08-04 13:50:25 +01002124 if (!intel_sdvo_tv_create_property(intel_sdvo, intel_sdvo_connector, type))
2125 goto err;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002126
Chris Wilson32aad862010-08-04 13:50:25 +01002127 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
2128 goto err;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002129
2130 return true;
Chris Wilson32aad862010-08-04 13:50:25 +01002131
2132err:
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002133 intel_sdvo_destroy_enhance_property(connector);
Chris Wilson32aad862010-08-04 13:50:25 +01002134 kfree(intel_sdvo_connector);
2135 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002136}
2137
2138static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002139intel_sdvo_analog_init(struct intel_sdvo *intel_sdvo, int device)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002140{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002141 struct drm_encoder *encoder = &intel_sdvo->base.enc;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002142 struct drm_connector *connector;
2143 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002144 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002145
Chris Wilson615fb932010-08-04 13:50:24 +01002146 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2147 if (!intel_sdvo_connector)
2148 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002149
Chris Wilson615fb932010-08-04 13:50:24 +01002150 intel_connector = &intel_sdvo_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002151 connector = &intel_connector->base;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002152 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002153 encoder->encoder_type = DRM_MODE_ENCODER_DAC;
2154 connector->connector_type = DRM_MODE_CONNECTOR_VGA;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002155
2156 if (device == 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002157 intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB0;
Chris Wilson615fb932010-08-04 13:50:24 +01002158 intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB0;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002159 } else if (device == 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002160 intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB1;
Chris Wilson615fb932010-08-04 13:50:24 +01002161 intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB1;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002162 }
2163
Chris Wilsonea5b2132010-08-04 13:50:23 +01002164 intel_sdvo->base.clone_mask = ((1 << INTEL_SDVO_NON_TV_CLONE_BIT) |
2165 (1 << INTEL_ANALOG_CLONE_BIT));
Zhenyu Wang14571b42010-03-30 14:06:33 +08002166
Chris Wilson32aad862010-08-04 13:50:25 +01002167 intel_sdvo_connector_init(encoder, connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002168 return true;
2169}
2170
2171static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002172intel_sdvo_lvds_init(struct intel_sdvo *intel_sdvo, int device)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002173{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002174 struct drm_encoder *encoder = &intel_sdvo->base.enc;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002175 struct drm_connector *connector;
2176 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002177 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002178
Chris Wilson615fb932010-08-04 13:50:24 +01002179 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2180 if (!intel_sdvo_connector)
2181 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002182
Chris Wilson615fb932010-08-04 13:50:24 +01002183 intel_connector = &intel_sdvo_connector->base;
2184 connector = &intel_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002185 encoder->encoder_type = DRM_MODE_ENCODER_LVDS;
2186 connector->connector_type = DRM_MODE_CONNECTOR_LVDS;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002187
Chris Wilsonea5b2132010-08-04 13:50:23 +01002188 intel_sdvo->is_lvds = true;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002189
2190 if (device == 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002191 intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS0;
Chris Wilson615fb932010-08-04 13:50:24 +01002192 intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS0;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002193 } else if (device == 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002194 intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS1;
Chris Wilson615fb932010-08-04 13:50:24 +01002195 intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS1;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002196 }
2197
Chris Wilsonea5b2132010-08-04 13:50:23 +01002198 intel_sdvo->base.clone_mask = ((1 << INTEL_ANALOG_CLONE_BIT) |
2199 (1 << INTEL_SDVO_LVDS_CLONE_BIT));
Zhenyu Wang14571b42010-03-30 14:06:33 +08002200
Chris Wilson32aad862010-08-04 13:50:25 +01002201 intel_sdvo_connector_init(encoder, connector);
2202 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
2203 goto err;
2204
2205 return true;
2206
2207err:
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002208 intel_sdvo_destroy_enhance_property(connector);
Chris Wilson32aad862010-08-04 13:50:25 +01002209 kfree(intel_sdvo_connector);
2210 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002211}
Zhao Yakui6070a4a2010-02-08 21:35:12 +08002212
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002213static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002214intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, uint16_t flags)
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002215{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002216 intel_sdvo->is_tv = false;
2217 intel_sdvo->base.needs_tv_clock = false;
2218 intel_sdvo->is_lvds = false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002219
Zhenyu Wang14571b42010-03-30 14:06:33 +08002220 /* SDVO requires XXX1 function may not exist unless it has XXX0 function.*/
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002221
Zhenyu Wang14571b42010-03-30 14:06:33 +08002222 if (flags & SDVO_OUTPUT_TMDS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002223 if (!intel_sdvo_dvi_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002224 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002225
Zhenyu Wang14571b42010-03-30 14:06:33 +08002226 if ((flags & SDVO_TMDS_MASK) == SDVO_TMDS_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002227 if (!intel_sdvo_dvi_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002228 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002229
Zhenyu Wang14571b42010-03-30 14:06:33 +08002230 /* TV has no XXX1 function block */
Zhenyu Wanga1f4b7ff2010-03-29 23:16:13 +08002231 if (flags & SDVO_OUTPUT_SVID0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002232 if (!intel_sdvo_tv_init(intel_sdvo, SDVO_OUTPUT_SVID0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002233 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002234
Zhenyu Wang14571b42010-03-30 14:06:33 +08002235 if (flags & SDVO_OUTPUT_CVBS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002236 if (!intel_sdvo_tv_init(intel_sdvo, SDVO_OUTPUT_CVBS0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002237 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002238
Zhenyu Wang14571b42010-03-30 14:06:33 +08002239 if (flags & SDVO_OUTPUT_RGB0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002240 if (!intel_sdvo_analog_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002241 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002242
Zhenyu Wang14571b42010-03-30 14:06:33 +08002243 if ((flags & SDVO_RGB_MASK) == SDVO_RGB_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002244 if (!intel_sdvo_analog_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002245 return false;
Zhao Yakui2dd87382010-01-27 16:32:46 +08002246
Zhenyu Wang14571b42010-03-30 14:06:33 +08002247 if (flags & SDVO_OUTPUT_LVDS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002248 if (!intel_sdvo_lvds_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002249 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002250
Zhenyu Wang14571b42010-03-30 14:06:33 +08002251 if ((flags & SDVO_LVDS_MASK) == SDVO_LVDS_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002252 if (!intel_sdvo_lvds_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002253 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002254
Zhenyu Wang14571b42010-03-30 14:06:33 +08002255 if ((flags & SDVO_OUTPUT_MASK) == 0) {
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002256 unsigned char bytes[2];
2257
Chris Wilsonea5b2132010-08-04 13:50:23 +01002258 intel_sdvo->controlled_output = 0;
2259 memcpy(bytes, &intel_sdvo->caps.output_flags, 2);
Dave Airlie51c8b402009-08-20 13:38:04 +10002260 DRM_DEBUG_KMS("%s: Unknown SDVO output type (0x%02x%02x)\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +01002261 SDVO_NAME(intel_sdvo),
Dave Airlie51c8b402009-08-20 13:38:04 +10002262 bytes[0], bytes[1]);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002263 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002264 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002265 intel_sdvo->base.crtc_mask = (1 << 0) | (1 << 1);
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002266
Zhenyu Wang14571b42010-03-30 14:06:33 +08002267 return true;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002268}
2269
Chris Wilson32aad862010-08-04 13:50:25 +01002270static bool intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
2271 struct intel_sdvo_connector *intel_sdvo_connector,
2272 int type)
Zhao Yakuice6feab2009-08-24 13:50:26 +08002273{
Chris Wilson32aad862010-08-04 13:50:25 +01002274 struct drm_device *dev = intel_sdvo->base.enc.dev;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002275 struct intel_sdvo_tv_format format;
2276 uint32_t format_map, i;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002277
Chris Wilson32aad862010-08-04 13:50:25 +01002278 if (!intel_sdvo_set_target_output(intel_sdvo, type))
2279 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002280
Chris Wilson32aad862010-08-04 13:50:25 +01002281 if (!intel_sdvo_get_value(intel_sdvo,
2282 SDVO_CMD_GET_SUPPORTED_TV_FORMATS,
2283 &format, sizeof(format)))
2284 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002285
Chris Wilson32aad862010-08-04 13:50:25 +01002286 memcpy(&format_map, &format, min(sizeof(format_map), sizeof(format)));
Zhao Yakuice6feab2009-08-24 13:50:26 +08002287
2288 if (format_map == 0)
Chris Wilson32aad862010-08-04 13:50:25 +01002289 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002290
Chris Wilson615fb932010-08-04 13:50:24 +01002291 intel_sdvo_connector->format_supported_num = 0;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002292 for (i = 0 ; i < TV_FORMAT_NUM; i++)
Chris Wilson40039752010-08-04 13:50:26 +01002293 if (format_map & (1 << i))
2294 intel_sdvo_connector->tv_format_supported[intel_sdvo_connector->format_supported_num++] = i;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002295
2296
Chris Wilsonc5521702010-08-04 13:50:28 +01002297 intel_sdvo_connector->tv_format =
Chris Wilson32aad862010-08-04 13:50:25 +01002298 drm_property_create(dev, DRM_MODE_PROP_ENUM,
2299 "mode", intel_sdvo_connector->format_supported_num);
Chris Wilsonc5521702010-08-04 13:50:28 +01002300 if (!intel_sdvo_connector->tv_format)
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002301 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002302
Chris Wilson615fb932010-08-04 13:50:24 +01002303 for (i = 0; i < intel_sdvo_connector->format_supported_num; i++)
Zhao Yakuice6feab2009-08-24 13:50:26 +08002304 drm_property_add_enum(
Chris Wilsonc5521702010-08-04 13:50:28 +01002305 intel_sdvo_connector->tv_format, i,
Chris Wilson40039752010-08-04 13:50:26 +01002306 i, tv_format_names[intel_sdvo_connector->tv_format_supported[i]]);
Zhao Yakuice6feab2009-08-24 13:50:26 +08002307
Chris Wilson40039752010-08-04 13:50:26 +01002308 intel_sdvo->tv_format_index = intel_sdvo_connector->tv_format_supported[0];
Chris Wilson32aad862010-08-04 13:50:25 +01002309 drm_connector_attach_property(&intel_sdvo_connector->base.base,
Chris Wilsonc5521702010-08-04 13:50:28 +01002310 intel_sdvo_connector->tv_format, 0);
Chris Wilson32aad862010-08-04 13:50:25 +01002311 return true;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002312
2313}
2314
Chris Wilsonc5521702010-08-04 13:50:28 +01002315#define ENHANCEMENT(name, NAME) do { \
2316 if (enhancements.name) { \
2317 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_MAX_##NAME, &data_value, 4) || \
2318 !intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_##NAME, &response, 2)) \
2319 return false; \
2320 intel_sdvo_connector->max_##name = data_value[0]; \
2321 intel_sdvo_connector->cur_##name = response; \
2322 intel_sdvo_connector->name = \
2323 drm_property_create(dev, DRM_MODE_PROP_RANGE, #name, 2); \
2324 if (!intel_sdvo_connector->name) return false; \
2325 intel_sdvo_connector->name->values[0] = 0; \
2326 intel_sdvo_connector->name->values[1] = data_value[0]; \
2327 drm_connector_attach_property(connector, \
2328 intel_sdvo_connector->name, \
2329 intel_sdvo_connector->cur_##name); \
2330 DRM_DEBUG_KMS(#name ": max %d, default %d, current %d\n", \
2331 data_value[0], data_value[1], response); \
2332 } \
2333} while(0)
2334
2335static bool
2336intel_sdvo_create_enhance_property_tv(struct intel_sdvo *intel_sdvo,
2337 struct intel_sdvo_connector *intel_sdvo_connector,
2338 struct intel_sdvo_enhancements_reply enhancements)
Zhao Yakuib9219c52009-09-10 15:45:46 +08002339{
Chris Wilson32aad862010-08-04 13:50:25 +01002340 struct drm_device *dev = intel_sdvo->base.enc.dev;
2341 struct drm_connector *connector = &intel_sdvo_connector->base.base;
Zhao Yakuib9219c52009-09-10 15:45:46 +08002342 uint16_t response, data_value[2];
2343
Chris Wilsonc5521702010-08-04 13:50:28 +01002344 /* when horizontal overscan is supported, Add the left/right property */
2345 if (enhancements.overscan_h) {
2346 if (!intel_sdvo_get_value(intel_sdvo,
2347 SDVO_CMD_GET_MAX_OVERSCAN_H,
2348 &data_value, 4))
2349 return false;
2350
2351 if (!intel_sdvo_get_value(intel_sdvo,
2352 SDVO_CMD_GET_OVERSCAN_H,
2353 &response, 2))
2354 return false;
2355
2356 intel_sdvo_connector->max_hscan = data_value[0];
2357 intel_sdvo_connector->left_margin = data_value[0] - response;
2358 intel_sdvo_connector->right_margin = intel_sdvo_connector->left_margin;
2359 intel_sdvo_connector->left =
2360 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2361 "left_margin", 2);
2362 if (!intel_sdvo_connector->left)
2363 return false;
2364
2365 intel_sdvo_connector->left->values[0] = 0;
2366 intel_sdvo_connector->left->values[1] = data_value[0];
2367 drm_connector_attach_property(connector,
2368 intel_sdvo_connector->left,
2369 intel_sdvo_connector->left_margin);
2370
2371 intel_sdvo_connector->right =
2372 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2373 "right_margin", 2);
2374 if (!intel_sdvo_connector->right)
2375 return false;
2376
2377 intel_sdvo_connector->right->values[0] = 0;
2378 intel_sdvo_connector->right->values[1] = data_value[0];
2379 drm_connector_attach_property(connector,
2380 intel_sdvo_connector->right,
2381 intel_sdvo_connector->right_margin);
2382 DRM_DEBUG_KMS("h_overscan: max %d, "
2383 "default %d, current %d\n",
2384 data_value[0], data_value[1], response);
2385 }
2386
2387 if (enhancements.overscan_v) {
2388 if (!intel_sdvo_get_value(intel_sdvo,
2389 SDVO_CMD_GET_MAX_OVERSCAN_V,
2390 &data_value, 4))
2391 return false;
2392
2393 if (!intel_sdvo_get_value(intel_sdvo,
2394 SDVO_CMD_GET_OVERSCAN_V,
2395 &response, 2))
2396 return false;
2397
2398 intel_sdvo_connector->max_vscan = data_value[0];
2399 intel_sdvo_connector->top_margin = data_value[0] - response;
2400 intel_sdvo_connector->bottom_margin = intel_sdvo_connector->top_margin;
2401 intel_sdvo_connector->top =
2402 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2403 "top_margin", 2);
2404 if (!intel_sdvo_connector->top)
2405 return false;
2406
2407 intel_sdvo_connector->top->values[0] = 0;
2408 intel_sdvo_connector->top->values[1] = data_value[0];
2409 drm_connector_attach_property(connector,
2410 intel_sdvo_connector->top,
2411 intel_sdvo_connector->top_margin);
2412
2413 intel_sdvo_connector->bottom =
2414 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2415 "bottom_margin", 2);
2416 if (!intel_sdvo_connector->bottom)
2417 return false;
2418
2419 intel_sdvo_connector->bottom->values[0] = 0;
2420 intel_sdvo_connector->bottom->values[1] = data_value[0];
2421 drm_connector_attach_property(connector,
2422 intel_sdvo_connector->bottom,
2423 intel_sdvo_connector->bottom_margin);
2424 DRM_DEBUG_KMS("v_overscan: max %d, "
2425 "default %d, current %d\n",
2426 data_value[0], data_value[1], response);
2427 }
2428
2429 ENHANCEMENT(hpos, HPOS);
2430 ENHANCEMENT(vpos, VPOS);
2431 ENHANCEMENT(saturation, SATURATION);
2432 ENHANCEMENT(contrast, CONTRAST);
2433 ENHANCEMENT(hue, HUE);
2434 ENHANCEMENT(sharpness, SHARPNESS);
2435 ENHANCEMENT(brightness, BRIGHTNESS);
2436 ENHANCEMENT(flicker_filter, FLICKER_FILTER);
2437 ENHANCEMENT(flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE);
2438 ENHANCEMENT(flicker_filter_2d, FLICKER_FILTER_2D);
2439 ENHANCEMENT(tv_chroma_filter, TV_CHROMA_FILTER);
2440 ENHANCEMENT(tv_luma_filter, TV_LUMA_FILTER);
2441
2442 return true;
2443}
2444
2445static bool
2446intel_sdvo_create_enhance_property_lvds(struct intel_sdvo *intel_sdvo,
2447 struct intel_sdvo_connector *intel_sdvo_connector,
2448 struct intel_sdvo_enhancements_reply enhancements)
2449{
2450 struct drm_device *dev = intel_sdvo->base.enc.dev;
2451 struct drm_connector *connector = &intel_sdvo_connector->base.base;
2452 uint16_t response, data_value[2];
2453
2454 ENHANCEMENT(brightness, BRIGHTNESS);
2455
2456 return true;
2457}
2458#undef ENHANCEMENT
2459
2460static bool intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
2461 struct intel_sdvo_connector *intel_sdvo_connector)
2462{
2463 union {
2464 struct intel_sdvo_enhancements_reply reply;
2465 uint16_t response;
2466 } enhancements;
2467
Chris Wilson32aad862010-08-04 13:50:25 +01002468 if (!intel_sdvo_get_value(intel_sdvo,
2469 SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS,
Chris Wilsonc5521702010-08-04 13:50:28 +01002470 &enhancements, sizeof(enhancements)))
Chris Wilson32aad862010-08-04 13:50:25 +01002471 return false;
2472
Chris Wilsonc5521702010-08-04 13:50:28 +01002473 if (enhancements.response == 0) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08002474 DRM_DEBUG_KMS("No enhancement is supported\n");
Chris Wilson32aad862010-08-04 13:50:25 +01002475 return true;
Zhao Yakuib9219c52009-09-10 15:45:46 +08002476 }
Chris Wilson32aad862010-08-04 13:50:25 +01002477
Chris Wilsonc5521702010-08-04 13:50:28 +01002478 if (IS_TV(intel_sdvo_connector))
2479 return intel_sdvo_create_enhance_property_tv(intel_sdvo, intel_sdvo_connector, enhancements.reply);
2480 else if(IS_LVDS(intel_sdvo_connector))
2481 return intel_sdvo_create_enhance_property_lvds(intel_sdvo, intel_sdvo_connector, enhancements.reply);
2482 else
2483 return true;
Chris Wilson32aad862010-08-04 13:50:25 +01002484
Zhao Yakuib9219c52009-09-10 15:45:46 +08002485}
2486
Eric Anholtc751ce42010-03-25 11:48:48 -07002487bool intel_sdvo_init(struct drm_device *dev, int sdvo_reg)
Jesse Barnes79e53942008-11-07 14:24:08 -08002488{
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002489 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -07002490 struct intel_encoder *intel_encoder;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002491 struct intel_sdvo *intel_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -08002492 u8 ch[0x40];
2493 int i;
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002494 u32 i2c_reg, ddc_reg, analog_ddc_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -08002495
Chris Wilsonea5b2132010-08-04 13:50:23 +01002496 intel_sdvo = kzalloc(sizeof(struct intel_sdvo), GFP_KERNEL);
2497 if (!intel_sdvo)
Eric Anholt7d573822009-01-02 13:33:00 -08002498 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08002499
Chris Wilsonea5b2132010-08-04 13:50:23 +01002500 intel_sdvo->sdvo_reg = sdvo_reg;
Keith Packard308cd3a2009-06-14 11:56:18 -07002501
Chris Wilsonea5b2132010-08-04 13:50:23 +01002502 intel_encoder = &intel_sdvo->base;
Eric Anholt21d40d32010-03-25 11:11:14 -07002503 intel_encoder->type = INTEL_OUTPUT_SDVO;
Jesse Barnes79e53942008-11-07 14:24:08 -08002504
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002505 if (HAS_PCH_SPLIT(dev)) {
2506 i2c_reg = PCH_GPIOE;
2507 ddc_reg = PCH_GPIOE;
2508 analog_ddc_reg = PCH_GPIOA;
2509 } else {
2510 i2c_reg = GPIOE;
2511 ddc_reg = GPIOE;
2512 analog_ddc_reg = GPIOA;
2513 }
2514
Jesse Barnes79e53942008-11-07 14:24:08 -08002515 /* setup the DDC bus. */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002516 if (IS_SDVOB(sdvo_reg))
2517 intel_encoder->i2c_bus = intel_i2c_create(dev, i2c_reg, "SDVOCTRL_E for SDVOB");
Keith Packard308cd3a2009-06-14 11:56:18 -07002518 else
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002519 intel_encoder->i2c_bus = intel_i2c_create(dev, i2c_reg, "SDVOCTRL_E for SDVOC");
Keith Packard308cd3a2009-06-14 11:56:18 -07002520
Eric Anholt21d40d32010-03-25 11:11:14 -07002521 if (!intel_encoder->i2c_bus)
Jonas Bonnad5b2a62009-05-15 09:10:41 +02002522 goto err_inteloutput;
Jesse Barnes79e53942008-11-07 14:24:08 -08002523
Chris Wilsonea5b2132010-08-04 13:50:23 +01002524 intel_sdvo->slave_addr = intel_sdvo_get_slave_addr(dev, sdvo_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08002525
Keith Packard308cd3a2009-06-14 11:56:18 -07002526 /* Save the bit-banging i2c functionality for use by the DDC wrapper */
Eric Anholt21d40d32010-03-25 11:11:14 -07002527 intel_sdvo_i2c_bit_algo.functionality = intel_encoder->i2c_bus->algo->functionality;
Jesse Barnes79e53942008-11-07 14:24:08 -08002528
Jesse Barnes79e53942008-11-07 14:24:08 -08002529 /* Read the regs to test if we can talk to the device */
2530 for (i = 0; i < 0x40; i++) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002531 if (!intel_sdvo_read_byte(intel_sdvo, i, &ch[i])) {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002532 DRM_DEBUG_KMS("No SDVO device found on SDVO%c\n",
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002533 IS_SDVOB(sdvo_reg) ? 'B' : 'C');
Jesse Barnes79e53942008-11-07 14:24:08 -08002534 goto err_i2c;
2535 }
2536 }
2537
Ma Ling619ac3b2009-05-18 16:12:46 +08002538 /* setup the DDC bus. */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002539 if (IS_SDVOB(sdvo_reg)) {
2540 intel_encoder->ddc_bus = intel_i2c_create(dev, ddc_reg, "SDVOB DDC BUS");
Chris Wilsonea5b2132010-08-04 13:50:23 +01002541 intel_sdvo->analog_ddc_bus = intel_i2c_create(dev, analog_ddc_reg,
Keith Packard57cdaf92009-09-04 13:07:54 +08002542 "SDVOB/VGA DDC BUS");
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002543 dev_priv->hotplug_supported_mask |= SDVOB_HOTPLUG_INT_STATUS;
Keith Packard57cdaf92009-09-04 13:07:54 +08002544 } else {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002545 intel_encoder->ddc_bus = intel_i2c_create(dev, ddc_reg, "SDVOC DDC BUS");
Chris Wilsonea5b2132010-08-04 13:50:23 +01002546 intel_sdvo->analog_ddc_bus = intel_i2c_create(dev, analog_ddc_reg,
Keith Packard57cdaf92009-09-04 13:07:54 +08002547 "SDVOC/VGA DDC BUS");
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002548 dev_priv->hotplug_supported_mask |= SDVOC_HOTPLUG_INT_STATUS;
Keith Packard57cdaf92009-09-04 13:07:54 +08002549 }
Chris Wilson32aad862010-08-04 13:50:25 +01002550 if (intel_encoder->ddc_bus == NULL || intel_sdvo->analog_ddc_bus == NULL)
Ma Ling619ac3b2009-05-18 16:12:46 +08002551 goto err_i2c;
2552
Keith Packard308cd3a2009-06-14 11:56:18 -07002553 /* Wrap with our custom algo which switches to DDC mode */
Eric Anholt21d40d32010-03-25 11:11:14 -07002554 intel_encoder->ddc_bus->algo = &intel_sdvo_i2c_bit_algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08002555
Zhenyu Wang14571b42010-03-30 14:06:33 +08002556 /* encoder type will be decided later */
2557 drm_encoder_init(dev, &intel_encoder->enc, &intel_sdvo_enc_funcs, 0);
2558 drm_encoder_helper_add(&intel_encoder->enc, &intel_sdvo_helper_funcs);
2559
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002560 /* In default case sdvo lvds is false */
Chris Wilson32aad862010-08-04 13:50:25 +01002561 if (!intel_sdvo_get_capabilities(intel_sdvo, &intel_sdvo->caps))
2562 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002563
Chris Wilsonea5b2132010-08-04 13:50:23 +01002564 if (intel_sdvo_output_setup(intel_sdvo,
2565 intel_sdvo->caps.output_flags) != true) {
Dave Airlie51c8b402009-08-20 13:38:04 +10002566 DRM_DEBUG_KMS("SDVO output failed to setup on SDVO%c\n",
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002567 IS_SDVOB(sdvo_reg) ? 'B' : 'C');
Chris Wilson32aad862010-08-04 13:50:25 +01002568 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002569 }
2570
Chris Wilsonea5b2132010-08-04 13:50:23 +01002571 intel_sdvo_select_ddc_bus(dev_priv, intel_sdvo, sdvo_reg);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08002572
Jesse Barnes79e53942008-11-07 14:24:08 -08002573 /* Set the input timing to the screen. Assume always input 0. */
Chris Wilson32aad862010-08-04 13:50:25 +01002574 if (!intel_sdvo_set_target_input(intel_sdvo))
2575 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002576
Chris Wilson32aad862010-08-04 13:50:25 +01002577 if (!intel_sdvo_get_input_pixel_clock_range(intel_sdvo,
2578 &intel_sdvo->pixel_clock_min,
2579 &intel_sdvo->pixel_clock_max))
2580 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002581
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002582 DRM_DEBUG_KMS("%s device VID/DID: %02X:%02X.%02X, "
yakui_zhao342dc382009-06-02 14:12:00 +08002583 "clock range %dMHz - %dMHz, "
2584 "input 1: %c, input 2: %c, "
2585 "output 1: %c, output 2: %c\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +01002586 SDVO_NAME(intel_sdvo),
2587 intel_sdvo->caps.vendor_id, intel_sdvo->caps.device_id,
2588 intel_sdvo->caps.device_rev_id,
2589 intel_sdvo->pixel_clock_min / 1000,
2590 intel_sdvo->pixel_clock_max / 1000,
2591 (intel_sdvo->caps.sdvo_inputs_mask & 0x1) ? 'Y' : 'N',
2592 (intel_sdvo->caps.sdvo_inputs_mask & 0x2) ? 'Y' : 'N',
yakui_zhao342dc382009-06-02 14:12:00 +08002593 /* check currently supported outputs */
Chris Wilsonea5b2132010-08-04 13:50:23 +01002594 intel_sdvo->caps.output_flags &
Jesse Barnes79e53942008-11-07 14:24:08 -08002595 (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_RGB0) ? 'Y' : 'N',
Chris Wilsonea5b2132010-08-04 13:50:23 +01002596 intel_sdvo->caps.output_flags &
Jesse Barnes79e53942008-11-07 14:24:08 -08002597 (SDVO_OUTPUT_TMDS1 | SDVO_OUTPUT_RGB1) ? 'Y' : 'N');
Eric Anholt7d573822009-01-02 13:33:00 -08002598 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08002599
Chris Wilson32aad862010-08-04 13:50:25 +01002600err_enc:
2601 drm_encoder_cleanup(&intel_encoder->enc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002602err_i2c:
Chris Wilsonea5b2132010-08-04 13:50:23 +01002603 if (intel_sdvo->analog_ddc_bus != NULL)
2604 intel_i2c_destroy(intel_sdvo->analog_ddc_bus);
Eric Anholt21d40d32010-03-25 11:11:14 -07002605 if (intel_encoder->ddc_bus != NULL)
2606 intel_i2c_destroy(intel_encoder->ddc_bus);
2607 if (intel_encoder->i2c_bus != NULL)
2608 intel_i2c_destroy(intel_encoder->i2c_bus);
Jonas Bonnad5b2a62009-05-15 09:10:41 +02002609err_inteloutput:
Chris Wilsonea5b2132010-08-04 13:50:23 +01002610 kfree(intel_sdvo);
Jesse Barnes79e53942008-11-07 14:24:08 -08002611
Eric Anholt7d573822009-01-02 13:33:00 -08002612 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08002613}