blob: 0e68f96225658726f32e22715a77fe55f7177295 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright © 2006-2007 Intel Corporation
4 * Jesse Barnes <jesse.barnes@intel.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Authors:
26 * Eric Anholt <eric@anholt.net>
27 */
28#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/delay.h>
31#include "drmP.h"
32#include "drm.h"
33#include "drm_crtc.h"
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +080034#include "drm_edid.h"
Chris Wilsonea5b2132010-08-04 13:50:23 +010035#include "intel_drv.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "i915_drm.h"
37#include "i915_drv.h"
38#include "intel_sdvo_regs.h"
39
Zhenyu Wang14571b42010-03-30 14:06:33 +080040#define SDVO_TMDS_MASK (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_TMDS1)
41#define SDVO_RGB_MASK (SDVO_OUTPUT_RGB0 | SDVO_OUTPUT_RGB1)
42#define SDVO_LVDS_MASK (SDVO_OUTPUT_LVDS0 | SDVO_OUTPUT_LVDS1)
43#define SDVO_TV_MASK (SDVO_OUTPUT_CVBS0 | SDVO_OUTPUT_SVID0)
44
45#define SDVO_OUTPUT_MASK (SDVO_TMDS_MASK | SDVO_RGB_MASK | SDVO_LVDS_MASK |\
46 SDVO_TV_MASK)
47
48#define IS_TV(c) (c->output_flag & SDVO_TV_MASK)
49#define IS_LVDS(c) (c->output_flag & SDVO_LVDS_MASK)
Chris Wilson32aad862010-08-04 13:50:25 +010050#define IS_TV_OR_LVDS(c) (c->output_flag & (SDVO_TV_MASK | SDVO_LVDS_MASK))
Zhenyu Wang14571b42010-03-30 14:06:33 +080051
Jesse Barnes79e53942008-11-07 14:24:08 -080052
Chris Wilson2e88e402010-08-07 11:01:27 +010053static const char *tv_format_names[] = {
Zhao Yakuice6feab2009-08-24 13:50:26 +080054 "NTSC_M" , "NTSC_J" , "NTSC_443",
55 "PAL_B" , "PAL_D" , "PAL_G" ,
56 "PAL_H" , "PAL_I" , "PAL_M" ,
57 "PAL_N" , "PAL_NC" , "PAL_60" ,
58 "SECAM_B" , "SECAM_D" , "SECAM_G" ,
59 "SECAM_K" , "SECAM_K1", "SECAM_L" ,
60 "SECAM_60"
61};
62
63#define TV_FORMAT_NUM (sizeof(tv_format_names) / sizeof(*tv_format_names))
64
Chris Wilsonea5b2132010-08-04 13:50:23 +010065struct intel_sdvo {
66 struct intel_encoder base;
67
Keith Packardf9c10a92009-05-30 12:16:25 -070068 u8 slave_addr;
Jesse Barnese2f0ba92009-02-02 15:11:52 -080069
70 /* Register for the SDVO device: SDVOB or SDVOC */
Eric Anholtc751ce42010-03-25 11:48:48 -070071 int sdvo_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -080072
Jesse Barnese2f0ba92009-02-02 15:11:52 -080073 /* Active outputs controlled by this SDVO output */
74 uint16_t controlled_output;
Jesse Barnes79e53942008-11-07 14:24:08 -080075
Jesse Barnese2f0ba92009-02-02 15:11:52 -080076 /*
77 * Capabilities of the SDVO device returned by
78 * i830_sdvo_get_capabilities()
79 */
Jesse Barnes79e53942008-11-07 14:24:08 -080080 struct intel_sdvo_caps caps;
Jesse Barnese2f0ba92009-02-02 15:11:52 -080081
82 /* Pixel clock limitations reported by the SDVO device, in kHz */
Jesse Barnes79e53942008-11-07 14:24:08 -080083 int pixel_clock_min, pixel_clock_max;
84
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +080085 /*
86 * For multiple function SDVO device,
87 * this is for current attached outputs.
88 */
89 uint16_t attached_output;
90
Jesse Barnese2f0ba92009-02-02 15:11:52 -080091 /**
92 * This is set if we're going to treat the device as TV-out.
93 *
94 * While we have these nice friendly flags for output types that ought
95 * to decide this for us, the S-Video output on our HDMI+S-Video card
96 * shows up as RGB1 (VGA).
97 */
98 bool is_tv;
99
Zhao Yakuice6feab2009-08-24 13:50:26 +0800100 /* This is for current tv format name */
Chris Wilson40039752010-08-04 13:50:26 +0100101 int tv_format_index;
Zhao Yakuice6feab2009-08-24 13:50:26 +0800102
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800103 /**
104 * This is set if we treat the device as HDMI, instead of DVI.
105 */
106 bool is_hdmi;
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800107
Ma Ling7086c872009-05-13 11:20:06 +0800108 /**
Chris Wilson6c9547f2010-08-25 10:05:17 +0100109 * This is set if we detect output of sdvo device as LVDS and
110 * have a valid fixed mode to use with the panel.
Ma Ling7086c872009-05-13 11:20:06 +0800111 */
112 bool is_lvds;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800113
114 /**
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800115 * This is sdvo fixed pannel mode pointer
116 */
117 struct drm_display_mode *sdvo_lvds_fixed_mode;
118
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800119 /*
120 * supported encoding mode, used to determine whether HDMI is
121 * supported
122 */
123 struct intel_sdvo_encode encode;
124
Eric Anholtc751ce42010-03-25 11:48:48 -0700125 /* DDC bus used by this SDVO encoder */
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800126 uint8_t ddc_bus;
127
Keith Packard57cdaf92009-09-04 13:07:54 +0800128 /* Mac mini hack -- use the same DDC as the analog connector */
129 struct i2c_adapter *analog_ddc_bus;
130
Chris Wilson6c9547f2010-08-25 10:05:17 +0100131 /* Input timings for adjusted_mode */
132 struct intel_sdvo_dtd input_dtd;
Zhenyu Wang14571b42010-03-30 14:06:33 +0800133};
134
135struct intel_sdvo_connector {
Chris Wilson615fb932010-08-04 13:50:24 +0100136 struct intel_connector base;
137
Zhenyu Wang14571b42010-03-30 14:06:33 +0800138 /* Mark the type of connector */
139 uint16_t output_flag;
140
141 /* This contains all current supported TV format */
Chris Wilson40039752010-08-04 13:50:26 +0100142 u8 tv_format_supported[TV_FORMAT_NUM];
Zhenyu Wang14571b42010-03-30 14:06:33 +0800143 int format_supported_num;
Chris Wilsonc5521702010-08-04 13:50:28 +0100144 struct drm_property *tv_format;
Zhenyu Wang14571b42010-03-30 14:06:33 +0800145
Zhao Yakuib9219c52009-09-10 15:45:46 +0800146 /* add the property for the SDVO-TV */
Chris Wilsonc5521702010-08-04 13:50:28 +0100147 struct drm_property *left;
148 struct drm_property *right;
149 struct drm_property *top;
150 struct drm_property *bottom;
151 struct drm_property *hpos;
152 struct drm_property *vpos;
153 struct drm_property *contrast;
154 struct drm_property *saturation;
155 struct drm_property *hue;
156 struct drm_property *sharpness;
157 struct drm_property *flicker_filter;
158 struct drm_property *flicker_filter_adaptive;
159 struct drm_property *flicker_filter_2d;
160 struct drm_property *tv_chroma_filter;
161 struct drm_property *tv_luma_filter;
Chris Wilsone0442182010-08-04 13:50:29 +0100162 struct drm_property *dot_crawl;
Zhao Yakuib9219c52009-09-10 15:45:46 +0800163
164 /* add the property for the SDVO-TV/LVDS */
Chris Wilsonc5521702010-08-04 13:50:28 +0100165 struct drm_property *brightness;
Zhao Yakuib9219c52009-09-10 15:45:46 +0800166
167 /* Add variable to record current setting for the above property */
168 u32 left_margin, right_margin, top_margin, bottom_margin;
Chris Wilsonc5521702010-08-04 13:50:28 +0100169
Zhao Yakuib9219c52009-09-10 15:45:46 +0800170 /* this is to get the range of margin.*/
171 u32 max_hscan, max_vscan;
172 u32 max_hpos, cur_hpos;
173 u32 max_vpos, cur_vpos;
174 u32 cur_brightness, max_brightness;
175 u32 cur_contrast, max_contrast;
176 u32 cur_saturation, max_saturation;
177 u32 cur_hue, max_hue;
Chris Wilsonc5521702010-08-04 13:50:28 +0100178 u32 cur_sharpness, max_sharpness;
179 u32 cur_flicker_filter, max_flicker_filter;
180 u32 cur_flicker_filter_adaptive, max_flicker_filter_adaptive;
181 u32 cur_flicker_filter_2d, max_flicker_filter_2d;
182 u32 cur_tv_chroma_filter, max_tv_chroma_filter;
183 u32 cur_tv_luma_filter, max_tv_luma_filter;
Chris Wilsone0442182010-08-04 13:50:29 +0100184 u32 cur_dot_crawl, max_dot_crawl;
Jesse Barnes79e53942008-11-07 14:24:08 -0800185};
186
Chris Wilson890f3352010-09-14 16:46:59 +0100187static struct intel_sdvo *to_intel_sdvo(struct drm_encoder *encoder)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100188{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100189 return container_of(encoder, struct intel_sdvo, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100190}
191
Chris Wilsondf0e9242010-09-09 16:20:55 +0100192static struct intel_sdvo *intel_attached_sdvo(struct drm_connector *connector)
193{
194 return container_of(intel_attached_encoder(connector),
195 struct intel_sdvo, base);
196}
197
Chris Wilson615fb932010-08-04 13:50:24 +0100198static struct intel_sdvo_connector *to_intel_sdvo_connector(struct drm_connector *connector)
199{
200 return container_of(to_intel_connector(connector), struct intel_sdvo_connector, base);
201}
202
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +0800203static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +0100204intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, uint16_t flags);
Chris Wilson32aad862010-08-04 13:50:25 +0100205static bool
206intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
207 struct intel_sdvo_connector *intel_sdvo_connector,
208 int type);
209static bool
210intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
211 struct intel_sdvo_connector *intel_sdvo_connector);
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +0800212
Jesse Barnes79e53942008-11-07 14:24:08 -0800213/**
214 * Writes the SDVOB or SDVOC with the given value, but always writes both
215 * SDVOB and SDVOC to work around apparent hardware issues (according to
216 * comments in the BIOS).
217 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100218static void intel_sdvo_write_sdvox(struct intel_sdvo *intel_sdvo, u32 val)
Jesse Barnes79e53942008-11-07 14:24:08 -0800219{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100220 struct drm_device *dev = intel_sdvo->base.base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800221 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800222 u32 bval = val, cval = val;
223 int i;
224
Chris Wilsonea5b2132010-08-04 13:50:23 +0100225 if (intel_sdvo->sdvo_reg == PCH_SDVOB) {
226 I915_WRITE(intel_sdvo->sdvo_reg, val);
227 I915_READ(intel_sdvo->sdvo_reg);
Zhao Yakui461ed3c2010-03-30 15:11:33 +0800228 return;
229 }
230
Chris Wilsonea5b2132010-08-04 13:50:23 +0100231 if (intel_sdvo->sdvo_reg == SDVOB) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800232 cval = I915_READ(SDVOC);
233 } else {
234 bval = I915_READ(SDVOB);
235 }
236 /*
237 * Write the registers twice for luck. Sometimes,
238 * writing them only once doesn't appear to 'stick'.
239 * The BIOS does this too. Yay, magic
240 */
241 for (i = 0; i < 2; i++)
242 {
243 I915_WRITE(SDVOB, bval);
244 I915_READ(SDVOB);
245 I915_WRITE(SDVOC, cval);
246 I915_READ(SDVOC);
247 }
248}
249
Chris Wilson32aad862010-08-04 13:50:25 +0100250static bool intel_sdvo_read_byte(struct intel_sdvo *intel_sdvo, u8 addr, u8 *ch)
Jesse Barnes79e53942008-11-07 14:24:08 -0800251{
Chris Wilson32aad862010-08-04 13:50:25 +0100252 u8 out_buf[2] = { addr, 0 };
Jesse Barnes79e53942008-11-07 14:24:08 -0800253 u8 buf[2];
Jesse Barnes79e53942008-11-07 14:24:08 -0800254 struct i2c_msg msgs[] = {
255 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100256 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800257 .flags = 0,
258 .len = 1,
259 .buf = out_buf,
260 },
261 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100262 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800263 .flags = I2C_M_RD,
264 .len = 1,
265 .buf = buf,
266 }
267 };
Chris Wilson32aad862010-08-04 13:50:25 +0100268 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800269
Chris Wilsonea5b2132010-08-04 13:50:23 +0100270 if ((ret = i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 2)) == 2)
Jesse Barnes79e53942008-11-07 14:24:08 -0800271 {
272 *ch = buf[0];
273 return true;
274 }
275
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800276 DRM_DEBUG_KMS("i2c transfer returned %d\n", ret);
Jesse Barnes79e53942008-11-07 14:24:08 -0800277 return false;
278}
279
Chris Wilson32aad862010-08-04 13:50:25 +0100280static bool intel_sdvo_write_byte(struct intel_sdvo *intel_sdvo, int addr, u8 ch)
Jesse Barnes79e53942008-11-07 14:24:08 -0800281{
Chris Wilson32aad862010-08-04 13:50:25 +0100282 u8 out_buf[2] = { addr, ch };
Jesse Barnes79e53942008-11-07 14:24:08 -0800283 struct i2c_msg msgs[] = {
284 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100285 .addr = intel_sdvo->slave_addr >> 1,
Jesse Barnes79e53942008-11-07 14:24:08 -0800286 .flags = 0,
287 .len = 2,
288 .buf = out_buf,
289 }
290 };
291
Chris Wilson32aad862010-08-04 13:50:25 +0100292 return i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 1) == 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800293}
294
295#define SDVO_CMD_NAME_ENTRY(cmd) {cmd, #cmd}
296/** Mapping of command numbers to names, for debug output */
Tobias Klauser005568b2009-02-09 22:02:42 +0100297static const struct _sdvo_cmd_name {
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800298 u8 cmd;
Chris Wilson2e88e402010-08-07 11:01:27 +0100299 const char *name;
Jesse Barnes79e53942008-11-07 14:24:08 -0800300} sdvo_cmd_names[] = {
301 SDVO_CMD_NAME_ENTRY(SDVO_CMD_RESET),
302 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_DEVICE_CAPS),
303 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FIRMWARE_REV),
304 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TRAINED_INPUTS),
305 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ACTIVE_OUTPUTS),
306 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ACTIVE_OUTPUTS),
307 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_IN_OUT_MAP),
308 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_IN_OUT_MAP),
309 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ATTACHED_DISPLAYS),
310 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HOT_PLUG_SUPPORT),
311 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ACTIVE_HOT_PLUG),
312 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ACTIVE_HOT_PLUG),
313 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INTERRUPT_EVENT_SOURCE),
314 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TARGET_INPUT),
315 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TARGET_OUTPUT),
316 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_TIMINGS_PART1),
317 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_TIMINGS_PART2),
318 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART1),
319 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART2),
320 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_INPUT_TIMINGS_PART1),
321 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OUTPUT_TIMINGS_PART1),
322 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OUTPUT_TIMINGS_PART2),
323 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_TIMINGS_PART1),
324 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_TIMINGS_PART2),
325 SDVO_CMD_NAME_ENTRY(SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING),
326 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1),
327 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2),
328 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE),
329 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OUTPUT_PIXEL_CLOCK_RANGE),
330 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_CLOCK_RATE_MULTS),
331 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_CLOCK_RATE_MULT),
332 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CLOCK_RATE_MULT),
333 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_TV_FORMATS),
334 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_FORMAT),
335 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_FORMAT),
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800336 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_POWER_STATES),
337 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_POWER_STATE),
338 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ENCODER_POWER_STATE),
339 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_DISPLAY_POWER_STATE),
Jesse Barnes79e53942008-11-07 14:24:08 -0800340 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CONTROL_BUS_SWITCH),
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800341 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT),
342 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SCALED_HDTV_RESOLUTION_SUPPORT),
343 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS),
Chris Wilsonc5521702010-08-04 13:50:28 +0100344
Zhao Yakuib9219c52009-09-10 15:45:46 +0800345 /* Add the op code for SDVO enhancements */
Chris Wilsonc5521702010-08-04 13:50:28 +0100346 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_HPOS),
347 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HPOS),
348 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HPOS),
349 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_VPOS),
350 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_VPOS),
351 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_VPOS),
Zhao Yakuib9219c52009-09-10 15:45:46 +0800352 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_SATURATION),
353 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SATURATION),
354 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_SATURATION),
355 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_HUE),
356 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HUE),
357 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HUE),
358 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_CONTRAST),
359 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_CONTRAST),
360 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_CONTRAST),
361 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_BRIGHTNESS),
362 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_BRIGHTNESS),
363 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_BRIGHTNESS),
364 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_OVERSCAN_H),
365 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OVERSCAN_H),
366 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OVERSCAN_H),
367 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_OVERSCAN_V),
368 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_OVERSCAN_V),
369 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_OVERSCAN_V),
Chris Wilsonc5521702010-08-04 13:50:28 +0100370 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER),
371 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER),
372 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER),
373 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER_ADAPTIVE),
374 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER_ADAPTIVE),
375 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER_ADAPTIVE),
376 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_FLICKER_FILTER_2D),
377 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_FLICKER_FILTER_2D),
378 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_FLICKER_FILTER_2D),
379 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_SHARPNESS),
380 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SHARPNESS),
381 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_SHARPNESS),
382 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_DOT_CRAWL),
383 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_DOT_CRAWL),
384 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_TV_CHROMA_FILTER),
385 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_CHROMA_FILTER),
386 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_CHROMA_FILTER),
387 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_MAX_TV_LUMA_FILTER),
388 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_TV_LUMA_FILTER),
389 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_TV_LUMA_FILTER),
390
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800391 /* HDMI op code */
392 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_SUPP_ENCODE),
393 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_ENCODE),
394 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_ENCODE),
395 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_PIXEL_REPLI),
396 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_PIXEL_REPLI),
397 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_COLORIMETRY_CAP),
398 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_COLORIMETRY),
399 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_COLORIMETRY),
400 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_AUDIO_ENCRYPT_PREFER),
401 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_AUDIO_STAT),
402 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_AUDIO_STAT),
403 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_INDEX),
404 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_INDEX),
405 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_INFO),
406 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_AV_SPLIT),
407 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_AV_SPLIT),
408 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_TXRATE),
409 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_TXRATE),
410 SDVO_CMD_NAME_ENTRY(SDVO_CMD_SET_HBUF_DATA),
411 SDVO_CMD_NAME_ENTRY(SDVO_CMD_GET_HBUF_DATA),
Jesse Barnes79e53942008-11-07 14:24:08 -0800412};
413
Zhao Yakui461ed3c2010-03-30 15:11:33 +0800414#define IS_SDVOB(reg) (reg == SDVOB || reg == PCH_SDVOB)
Chris Wilsonea5b2132010-08-04 13:50:23 +0100415#define SDVO_NAME(svdo) (IS_SDVOB((svdo)->sdvo_reg) ? "SDVOB" : "SDVOC")
Jesse Barnes79e53942008-11-07 14:24:08 -0800416
Chris Wilsonea5b2132010-08-04 13:50:23 +0100417static void intel_sdvo_debug_write(struct intel_sdvo *intel_sdvo, u8 cmd,
Chris Wilson32aad862010-08-04 13:50:25 +0100418 const void *args, int args_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800419{
Jesse Barnes79e53942008-11-07 14:24:08 -0800420 int i;
421
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800422 DRM_DEBUG_KMS("%s: W: %02X ",
Chris Wilsonea5b2132010-08-04 13:50:23 +0100423 SDVO_NAME(intel_sdvo), cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -0800424 for (i = 0; i < args_len; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800425 DRM_LOG_KMS("%02X ", ((u8 *)args)[i]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800426 for (; i < 8; i++)
yakui_zhao342dc382009-06-02 14:12:00 +0800427 DRM_LOG_KMS(" ");
Kulikov Vasiliy04ad3272010-06-28 15:54:56 +0400428 for (i = 0; i < ARRAY_SIZE(sdvo_cmd_names); i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800429 if (cmd == sdvo_cmd_names[i].cmd) {
yakui_zhao342dc382009-06-02 14:12:00 +0800430 DRM_LOG_KMS("(%s)", sdvo_cmd_names[i].name);
Jesse Barnes79e53942008-11-07 14:24:08 -0800431 break;
432 }
433 }
Kulikov Vasiliy04ad3272010-06-28 15:54:56 +0400434 if (i == ARRAY_SIZE(sdvo_cmd_names))
yakui_zhao342dc382009-06-02 14:12:00 +0800435 DRM_LOG_KMS("(%02X)", cmd);
436 DRM_LOG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800437}
Jesse Barnes79e53942008-11-07 14:24:08 -0800438
Chris Wilson32aad862010-08-04 13:50:25 +0100439static bool intel_sdvo_write_cmd(struct intel_sdvo *intel_sdvo, u8 cmd,
440 const void *args, int args_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800441{
442 int i;
443
Chris Wilsonea5b2132010-08-04 13:50:23 +0100444 intel_sdvo_debug_write(intel_sdvo, cmd, args, args_len);
Jesse Barnes79e53942008-11-07 14:24:08 -0800445
446 for (i = 0; i < args_len; i++) {
Chris Wilson32aad862010-08-04 13:50:25 +0100447 if (!intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_ARG_0 - i,
448 ((u8*)args)[i]))
449 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800450 }
451
Chris Wilson32aad862010-08-04 13:50:25 +0100452 return intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_OPCODE, cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -0800453}
454
Jesse Barnes79e53942008-11-07 14:24:08 -0800455static const char *cmd_status_names[] = {
456 "Power on",
457 "Success",
458 "Not supported",
459 "Invalid arg",
460 "Pending",
461 "Target not specified",
462 "Scaling not supported"
463};
464
Chris Wilsonb5c616a2010-09-09 19:06:13 +0100465static bool intel_sdvo_read_response(struct intel_sdvo *intel_sdvo,
466 void *response, int response_len)
Jesse Barnes79e53942008-11-07 14:24:08 -0800467{
Chris Wilsonb5c616a2010-09-09 19:06:13 +0100468 u8 retry = 5;
469 u8 status;
Zhenyu Wang33b52962009-03-24 14:02:40 +0800470 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -0800471
Chris Wilsonb5c616a2010-09-09 19:06:13 +0100472 /*
473 * The documentation states that all commands will be
474 * processed within 15µs, and that we need only poll
475 * the status byte a maximum of 3 times in order for the
476 * command to be complete.
477 *
478 * Check 5 times in case the hardware failed to read the docs.
479 */
480 do {
481 if (!intel_sdvo_read_byte(intel_sdvo,
482 SDVO_I2C_CMD_STATUS,
483 &status))
484 return false;
485 } while (status == SDVO_CMD_STATUS_PENDING && --retry);
486
Chris Wilsonea5b2132010-08-04 13:50:23 +0100487 DRM_DEBUG_KMS("%s: R: ", SDVO_NAME(intel_sdvo));
Jesse Barnes79e53942008-11-07 14:24:08 -0800488 if (status <= SDVO_CMD_STATUS_SCALING_NOT_SUPP)
yakui_zhao342dc382009-06-02 14:12:00 +0800489 DRM_LOG_KMS("(%s)", cmd_status_names[status]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800490 else
yakui_zhao342dc382009-06-02 14:12:00 +0800491 DRM_LOG_KMS("(??? %d)", status);
Jesse Barnes79e53942008-11-07 14:24:08 -0800492
Chris Wilsonb5c616a2010-09-09 19:06:13 +0100493 if (status != SDVO_CMD_STATUS_SUCCESS)
494 goto log_fail;
Jesse Barnes79e53942008-11-07 14:24:08 -0800495
Chris Wilsonb5c616a2010-09-09 19:06:13 +0100496 /* Read the command response */
497 for (i = 0; i < response_len; i++) {
498 if (!intel_sdvo_read_byte(intel_sdvo,
499 SDVO_I2C_RETURN_0 + i,
500 &((u8 *)response)[i]))
501 goto log_fail;
502 DRM_LOG_KMS("%02X ", ((u8 *)response)[i]);
Jesse Barnes79e53942008-11-07 14:24:08 -0800503 }
504
Chris Wilsonb5c616a2010-09-09 19:06:13 +0100505 for (; i < 8; i++)
506 DRM_LOG_KMS(" ");
507 DRM_LOG_KMS("\n");
508
509 return true;
510
511log_fail:
512 DRM_LOG_KMS("\n");
513 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800514}
515
Hannes Ederb358d0a2008-12-18 21:18:47 +0100516static int intel_sdvo_get_pixel_multiplier(struct drm_display_mode *mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800517{
518 if (mode->clock >= 100000)
519 return 1;
520 else if (mode->clock >= 50000)
521 return 2;
522 else
523 return 4;
524}
525
526/**
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800527 * Try to read the response after issuie the DDC switch command. But it
528 * is noted that we must do the action of reading response and issuing DDC
529 * switch command in one I2C transaction. Otherwise when we try to start
530 * another I2C transaction after issuing the DDC bus switch, it will be
531 * switched to the internal SDVO register.
Jesse Barnes79e53942008-11-07 14:24:08 -0800532 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100533static void intel_sdvo_set_control_bus_switch(struct intel_sdvo *intel_sdvo,
Hannes Ederb358d0a2008-12-18 21:18:47 +0100534 u8 target)
Jesse Barnes79e53942008-11-07 14:24:08 -0800535{
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800536 u8 out_buf[2], cmd_buf[2], ret_value[2], ret;
537 struct i2c_msg msgs[] = {
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 = 2,
542 .buf = out_buf,
543 },
544 /* the following two are to read the response */
545 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100546 .addr = intel_sdvo->slave_addr >> 1,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800547 .flags = 0,
548 .len = 1,
549 .buf = cmd_buf,
550 },
551 {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100552 .addr = intel_sdvo->slave_addr >> 1,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800553 .flags = I2C_M_RD,
554 .len = 1,
555 .buf = ret_value,
556 },
557 };
558
Chris Wilsonea5b2132010-08-04 13:50:23 +0100559 intel_sdvo_debug_write(intel_sdvo, SDVO_CMD_SET_CONTROL_BUS_SWITCH,
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800560 &target, 1);
561 /* write the DDC switch command argument */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100562 intel_sdvo_write_byte(intel_sdvo, SDVO_I2C_ARG_0, target);
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800563
564 out_buf[0] = SDVO_I2C_OPCODE;
565 out_buf[1] = SDVO_CMD_SET_CONTROL_BUS_SWITCH;
566 cmd_buf[0] = SDVO_I2C_CMD_STATUS;
567 cmd_buf[1] = 0;
568 ret_value[0] = 0;
569 ret_value[1] = 0;
570
Chris Wilsonea5b2132010-08-04 13:50:23 +0100571 ret = i2c_transfer(intel_sdvo->base.i2c_bus, msgs, 3);
Zhao Yakui6a304ca2010-01-08 10:58:19 +0800572 if (ret != 3) {
573 /* failure in I2C transfer */
574 DRM_DEBUG_KMS("I2c transfer returned %d\n", ret);
575 return;
576 }
577 if (ret_value[0] != SDVO_CMD_STATUS_SUCCESS) {
578 DRM_DEBUG_KMS("DDC switch command returns response %d\n",
579 ret_value[0]);
580 return;
581 }
582 return;
Jesse Barnes79e53942008-11-07 14:24:08 -0800583}
584
Chris Wilson32aad862010-08-04 13:50:25 +0100585static bool intel_sdvo_set_value(struct intel_sdvo *intel_sdvo, u8 cmd, const void *data, int len)
586{
587 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, data, len))
588 return false;
589
590 return intel_sdvo_read_response(intel_sdvo, NULL, 0);
591}
592
593static bool
594intel_sdvo_get_value(struct intel_sdvo *intel_sdvo, u8 cmd, void *value, int len)
595{
596 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, NULL, 0))
597 return false;
598
599 return intel_sdvo_read_response(intel_sdvo, value, len);
600}
601
602static bool intel_sdvo_set_target_input(struct intel_sdvo *intel_sdvo)
Jesse Barnes79e53942008-11-07 14:24:08 -0800603{
604 struct intel_sdvo_set_target_input_args targets = {0};
Chris Wilson32aad862010-08-04 13:50:25 +0100605 return intel_sdvo_set_value(intel_sdvo,
606 SDVO_CMD_SET_TARGET_INPUT,
607 &targets, sizeof(targets));
Jesse Barnes79e53942008-11-07 14:24:08 -0800608}
609
610/**
611 * Return whether each input is trained.
612 *
613 * This function is making an assumption about the layout of the response,
614 * which should be checked against the docs.
615 */
Chris Wilsonea5b2132010-08-04 13:50:23 +0100616static bool intel_sdvo_get_trained_inputs(struct intel_sdvo *intel_sdvo, bool *input_1, bool *input_2)
Jesse Barnes79e53942008-11-07 14:24:08 -0800617{
618 struct intel_sdvo_get_trained_inputs_response response;
Jesse Barnes79e53942008-11-07 14:24:08 -0800619
Chris Wilson32aad862010-08-04 13:50:25 +0100620 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_TRAINED_INPUTS,
621 &response, sizeof(response)))
Jesse Barnes79e53942008-11-07 14:24:08 -0800622 return false;
623
624 *input_1 = response.input0_trained;
625 *input_2 = response.input1_trained;
626 return true;
627}
628
Chris Wilsonea5b2132010-08-04 13:50:23 +0100629static bool intel_sdvo_set_active_outputs(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800630 u16 outputs)
631{
Chris Wilson32aad862010-08-04 13:50:25 +0100632 return intel_sdvo_set_value(intel_sdvo,
633 SDVO_CMD_SET_ACTIVE_OUTPUTS,
634 &outputs, sizeof(outputs));
Jesse Barnes79e53942008-11-07 14:24:08 -0800635}
636
Chris Wilsonea5b2132010-08-04 13:50:23 +0100637static bool intel_sdvo_set_encoder_power_state(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800638 int mode)
639{
Chris Wilson32aad862010-08-04 13:50:25 +0100640 u8 state = SDVO_ENCODER_STATE_ON;
Jesse Barnes79e53942008-11-07 14:24:08 -0800641
642 switch (mode) {
643 case DRM_MODE_DPMS_ON:
644 state = SDVO_ENCODER_STATE_ON;
645 break;
646 case DRM_MODE_DPMS_STANDBY:
647 state = SDVO_ENCODER_STATE_STANDBY;
648 break;
649 case DRM_MODE_DPMS_SUSPEND:
650 state = SDVO_ENCODER_STATE_SUSPEND;
651 break;
652 case DRM_MODE_DPMS_OFF:
653 state = SDVO_ENCODER_STATE_OFF;
654 break;
655 }
656
Chris Wilson32aad862010-08-04 13:50:25 +0100657 return intel_sdvo_set_value(intel_sdvo,
658 SDVO_CMD_SET_ENCODER_POWER_STATE, &state, sizeof(state));
Jesse Barnes79e53942008-11-07 14:24:08 -0800659}
660
Chris Wilsonea5b2132010-08-04 13:50:23 +0100661static bool intel_sdvo_get_input_pixel_clock_range(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800662 int *clock_min,
663 int *clock_max)
664{
665 struct intel_sdvo_pixel_clock_range clocks;
Jesse Barnes79e53942008-11-07 14:24:08 -0800666
Chris Wilson32aad862010-08-04 13:50:25 +0100667 if (!intel_sdvo_get_value(intel_sdvo,
668 SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE,
669 &clocks, sizeof(clocks)))
Jesse Barnes79e53942008-11-07 14:24:08 -0800670 return false;
671
672 /* Convert the values from units of 10 kHz to kHz. */
673 *clock_min = clocks.min * 10;
674 *clock_max = clocks.max * 10;
Jesse Barnes79e53942008-11-07 14:24:08 -0800675 return true;
676}
677
Chris Wilsonea5b2132010-08-04 13:50:23 +0100678static bool intel_sdvo_set_target_output(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800679 u16 outputs)
680{
Chris Wilson32aad862010-08-04 13:50:25 +0100681 return intel_sdvo_set_value(intel_sdvo,
682 SDVO_CMD_SET_TARGET_OUTPUT,
683 &outputs, sizeof(outputs));
Jesse Barnes79e53942008-11-07 14:24:08 -0800684}
685
Chris Wilsonea5b2132010-08-04 13:50:23 +0100686static bool intel_sdvo_set_timing(struct intel_sdvo *intel_sdvo, u8 cmd,
Jesse Barnes79e53942008-11-07 14:24:08 -0800687 struct intel_sdvo_dtd *dtd)
688{
Chris Wilson32aad862010-08-04 13:50:25 +0100689 return intel_sdvo_set_value(intel_sdvo, cmd, &dtd->part1, sizeof(dtd->part1)) &&
690 intel_sdvo_set_value(intel_sdvo, cmd + 1, &dtd->part2, sizeof(dtd->part2));
Jesse Barnes79e53942008-11-07 14:24:08 -0800691}
692
Chris Wilsonea5b2132010-08-04 13:50:23 +0100693static bool intel_sdvo_set_input_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_INPUT_TIMINGS_PART1, dtd);
698}
699
Chris Wilsonea5b2132010-08-04 13:50:23 +0100700static bool intel_sdvo_set_output_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800701 struct intel_sdvo_dtd *dtd)
702{
Chris Wilsonea5b2132010-08-04 13:50:23 +0100703 return intel_sdvo_set_timing(intel_sdvo,
Jesse Barnes79e53942008-11-07 14:24:08 -0800704 SDVO_CMD_SET_OUTPUT_TIMINGS_PART1, dtd);
705}
706
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800707static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +0100708intel_sdvo_create_preferred_input_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800709 uint16_t clock,
710 uint16_t width,
711 uint16_t height)
712{
713 struct intel_sdvo_preferred_input_timing_args args;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800714
Zhenyu Wange642c6f2009-03-24 14:02:42 +0800715 memset(&args, 0, sizeof(args));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800716 args.clock = clock;
717 args.width = width;
718 args.height = height;
Zhenyu Wange642c6f2009-03-24 14:02:42 +0800719 args.interlace = 0;
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800720
Chris Wilsonea5b2132010-08-04 13:50:23 +0100721 if (intel_sdvo->is_lvds &&
722 (intel_sdvo->sdvo_lvds_fixed_mode->hdisplay != width ||
723 intel_sdvo->sdvo_lvds_fixed_mode->vdisplay != height))
ling.ma@intel.com12682a92009-06-30 11:35:35 +0800724 args.scaled = 1;
725
Chris Wilson32aad862010-08-04 13:50:25 +0100726 return intel_sdvo_set_value(intel_sdvo,
727 SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING,
728 &args, sizeof(args));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800729}
730
Chris Wilsonea5b2132010-08-04 13:50:23 +0100731static bool intel_sdvo_get_preferred_input_timing(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800732 struct intel_sdvo_dtd *dtd)
733{
Chris Wilson32aad862010-08-04 13:50:25 +0100734 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1,
735 &dtd->part1, sizeof(dtd->part1)) &&
736 intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2,
737 &dtd->part2, sizeof(dtd->part2));
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800738}
Jesse Barnes79e53942008-11-07 14:24:08 -0800739
Chris Wilsonea5b2132010-08-04 13:50:23 +0100740static bool intel_sdvo_set_clock_rate_mult(struct intel_sdvo *intel_sdvo, u8 val)
Jesse Barnes79e53942008-11-07 14:24:08 -0800741{
Chris Wilson32aad862010-08-04 13:50:25 +0100742 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_CLOCK_RATE_MULT, &val, 1);
Jesse Barnes79e53942008-11-07 14:24:08 -0800743}
744
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800745static void intel_sdvo_get_dtd_from_mode(struct intel_sdvo_dtd *dtd,
Chris Wilson32aad862010-08-04 13:50:25 +0100746 const struct drm_display_mode *mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800747{
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800748 uint16_t width, height;
749 uint16_t h_blank_len, h_sync_len, v_blank_len, v_sync_len;
750 uint16_t h_sync_offset, v_sync_offset;
Jesse Barnes79e53942008-11-07 14:24:08 -0800751
752 width = mode->crtc_hdisplay;
753 height = mode->crtc_vdisplay;
754
755 /* do some mode translations */
756 h_blank_len = mode->crtc_hblank_end - mode->crtc_hblank_start;
757 h_sync_len = mode->crtc_hsync_end - mode->crtc_hsync_start;
758
759 v_blank_len = mode->crtc_vblank_end - mode->crtc_vblank_start;
760 v_sync_len = mode->crtc_vsync_end - mode->crtc_vsync_start;
761
762 h_sync_offset = mode->crtc_hsync_start - mode->crtc_hblank_start;
763 v_sync_offset = mode->crtc_vsync_start - mode->crtc_vblank_start;
764
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800765 dtd->part1.clock = mode->clock / 10;
766 dtd->part1.h_active = width & 0xff;
767 dtd->part1.h_blank = h_blank_len & 0xff;
768 dtd->part1.h_high = (((width >> 8) & 0xf) << 4) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800769 ((h_blank_len >> 8) & 0xf);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800770 dtd->part1.v_active = height & 0xff;
771 dtd->part1.v_blank = v_blank_len & 0xff;
772 dtd->part1.v_high = (((height >> 8) & 0xf) << 4) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800773 ((v_blank_len >> 8) & 0xf);
774
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800775 dtd->part2.h_sync_off = h_sync_offset & 0xff;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800776 dtd->part2.h_sync_width = h_sync_len & 0xff;
777 dtd->part2.v_sync_off_width = (v_sync_offset & 0xf) << 4 |
Jesse Barnes79e53942008-11-07 14:24:08 -0800778 (v_sync_len & 0xf);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800779 dtd->part2.sync_off_width_high = ((h_sync_offset & 0x300) >> 2) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800780 ((h_sync_len & 0x300) >> 4) | ((v_sync_offset & 0x30) >> 2) |
781 ((v_sync_len & 0x30) >> 4);
782
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800783 dtd->part2.dtd_flags = 0x18;
Jesse Barnes79e53942008-11-07 14:24:08 -0800784 if (mode->flags & DRM_MODE_FLAG_PHSYNC)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800785 dtd->part2.dtd_flags |= 0x2;
Jesse Barnes79e53942008-11-07 14:24:08 -0800786 if (mode->flags & DRM_MODE_FLAG_PVSYNC)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800787 dtd->part2.dtd_flags |= 0x4;
Jesse Barnes79e53942008-11-07 14:24:08 -0800788
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800789 dtd->part2.sdvo_flags = 0;
790 dtd->part2.v_sync_off_high = v_sync_offset & 0xc0;
791 dtd->part2.reserved = 0;
792}
Jesse Barnes79e53942008-11-07 14:24:08 -0800793
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800794static void intel_sdvo_get_mode_from_dtd(struct drm_display_mode * mode,
Chris Wilson32aad862010-08-04 13:50:25 +0100795 const struct intel_sdvo_dtd *dtd)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800796{
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800797 mode->hdisplay = dtd->part1.h_active;
798 mode->hdisplay += ((dtd->part1.h_high >> 4) & 0x0f) << 8;
799 mode->hsync_start = mode->hdisplay + dtd->part2.h_sync_off;
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800800 mode->hsync_start += (dtd->part2.sync_off_width_high & 0xc0) << 2;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800801 mode->hsync_end = mode->hsync_start + dtd->part2.h_sync_width;
802 mode->hsync_end += (dtd->part2.sync_off_width_high & 0x30) << 4;
803 mode->htotal = mode->hdisplay + dtd->part1.h_blank;
804 mode->htotal += (dtd->part1.h_high & 0xf) << 8;
805
806 mode->vdisplay = dtd->part1.v_active;
807 mode->vdisplay += ((dtd->part1.v_high >> 4) & 0x0f) << 8;
808 mode->vsync_start = mode->vdisplay;
809 mode->vsync_start += (dtd->part2.v_sync_off_width >> 4) & 0xf;
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800810 mode->vsync_start += (dtd->part2.sync_off_width_high & 0x0c) << 2;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800811 mode->vsync_start += dtd->part2.v_sync_off_high & 0xc0;
812 mode->vsync_end = mode->vsync_start +
813 (dtd->part2.v_sync_off_width & 0xf);
814 mode->vsync_end += (dtd->part2.sync_off_width_high & 0x3) << 4;
815 mode->vtotal = mode->vdisplay + dtd->part1.v_blank;
816 mode->vtotal += (dtd->part1.v_high & 0xf) << 8;
817
818 mode->clock = dtd->part1.clock * 10;
819
Zhenyu Wang171a9e92009-03-24 14:02:41 +0800820 mode->flags &= ~(DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800821 if (dtd->part2.dtd_flags & 0x2)
822 mode->flags |= DRM_MODE_FLAG_PHSYNC;
823 if (dtd->part2.dtd_flags & 0x4)
824 mode->flags |= DRM_MODE_FLAG_PVSYNC;
825}
826
Chris Wilsonea5b2132010-08-04 13:50:23 +0100827static bool intel_sdvo_get_supp_encode(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800828 struct intel_sdvo_encode *encode)
829{
Chris Wilson32aad862010-08-04 13:50:25 +0100830 if (intel_sdvo_get_value(intel_sdvo,
831 SDVO_CMD_GET_SUPP_ENCODE,
832 encode, sizeof(*encode)))
833 return true;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800834
Chris Wilson32aad862010-08-04 13:50:25 +0100835 /* non-support means DVI */
836 memset(encode, 0, sizeof(*encode));
837 return false;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800838}
839
Chris Wilsonea5b2132010-08-04 13:50:23 +0100840static bool intel_sdvo_set_encode(struct intel_sdvo *intel_sdvo,
Eric Anholtc751ce42010-03-25 11:48:48 -0700841 uint8_t mode)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800842{
Chris Wilson32aad862010-08-04 13:50:25 +0100843 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_ENCODE, &mode, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800844}
845
Chris Wilsonea5b2132010-08-04 13:50:23 +0100846static bool intel_sdvo_set_colorimetry(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800847 uint8_t mode)
848{
Chris Wilson32aad862010-08-04 13:50:25 +0100849 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_COLORIMETRY, &mode, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800850}
851
852#if 0
Chris Wilsonea5b2132010-08-04 13:50:23 +0100853static void intel_sdvo_dump_hdmi_buf(struct intel_sdvo *intel_sdvo)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800854{
855 int i, j;
856 uint8_t set_buf_index[2];
857 uint8_t av_split;
858 uint8_t buf_size;
859 uint8_t buf[48];
860 uint8_t *pos;
861
Chris Wilson32aad862010-08-04 13:50:25 +0100862 intel_sdvo_get_value(encoder, SDVO_CMD_GET_HBUF_AV_SPLIT, &av_split, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800863
864 for (i = 0; i <= av_split; i++) {
865 set_buf_index[0] = i; set_buf_index[1] = 0;
Eric Anholtc751ce42010-03-25 11:48:48 -0700866 intel_sdvo_write_cmd(encoder, SDVO_CMD_SET_HBUF_INDEX,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800867 set_buf_index, 2);
Eric Anholtc751ce42010-03-25 11:48:48 -0700868 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_INFO, NULL, 0);
869 intel_sdvo_read_response(encoder, &buf_size, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800870
871 pos = buf;
872 for (j = 0; j <= buf_size; j += 8) {
Eric Anholtc751ce42010-03-25 11:48:48 -0700873 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_DATA,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800874 NULL, 0);
Eric Anholtc751ce42010-03-25 11:48:48 -0700875 intel_sdvo_read_response(encoder, pos, 8);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800876 pos += 8;
877 }
878 }
879}
880#endif
881
Chris Wilson32aad862010-08-04 13:50:25 +0100882static bool intel_sdvo_set_hdmi_buf(struct intel_sdvo *intel_sdvo,
Eric Anholtc751ce42010-03-25 11:48:48 -0700883 int index,
884 uint8_t *data, int8_t size, uint8_t tx_rate)
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800885{
886 uint8_t set_buf_index[2];
887
888 set_buf_index[0] = index;
889 set_buf_index[1] = 0;
890
Chris Wilson32aad862010-08-04 13:50:25 +0100891 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_INDEX,
892 set_buf_index, 2))
893 return false;
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800894
895 for (; size > 0; size -= 8) {
Chris Wilson32aad862010-08-04 13:50:25 +0100896 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_DATA, data, 8))
897 return false;
898
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800899 data += 8;
900 }
901
Chris Wilson32aad862010-08-04 13:50:25 +0100902 return intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_HBUF_TXRATE, &tx_rate, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800903}
904
905static uint8_t intel_sdvo_calc_hbuf_csum(uint8_t *data, uint8_t size)
906{
907 uint8_t csum = 0;
908 int i;
909
910 for (i = 0; i < size; i++)
911 csum += data[i];
912
913 return 0x100 - csum;
914}
915
916#define DIP_TYPE_AVI 0x82
917#define DIP_VERSION_AVI 0x2
918#define DIP_LEN_AVI 13
919
920struct dip_infoframe {
921 uint8_t type;
922 uint8_t version;
923 uint8_t len;
924 uint8_t checksum;
925 union {
926 struct {
927 /* Packet Byte #1 */
928 uint8_t S:2;
929 uint8_t B:2;
930 uint8_t A:1;
931 uint8_t Y:2;
932 uint8_t rsvd1:1;
933 /* Packet Byte #2 */
934 uint8_t R:4;
935 uint8_t M:2;
936 uint8_t C:2;
937 /* Packet Byte #3 */
938 uint8_t SC:2;
939 uint8_t Q:2;
940 uint8_t EC:3;
941 uint8_t ITC:1;
942 /* Packet Byte #4 */
943 uint8_t VIC:7;
944 uint8_t rsvd2:1;
945 /* Packet Byte #5 */
946 uint8_t PR:4;
947 uint8_t rsvd3:4;
948 /* Packet Byte #6~13 */
949 uint16_t top_bar_end;
950 uint16_t bottom_bar_start;
951 uint16_t left_bar_end;
952 uint16_t right_bar_start;
953 } avi;
954 struct {
955 /* Packet Byte #1 */
956 uint8_t channel_count:3;
957 uint8_t rsvd1:1;
958 uint8_t coding_type:4;
959 /* Packet Byte #2 */
960 uint8_t sample_size:2; /* SS0, SS1 */
961 uint8_t sample_frequency:3;
962 uint8_t rsvd2:3;
963 /* Packet Byte #3 */
964 uint8_t coding_type_private:5;
965 uint8_t rsvd3:3;
966 /* Packet Byte #4 */
967 uint8_t channel_allocation;
968 /* Packet Byte #5 */
969 uint8_t rsvd4:3;
970 uint8_t level_shift:4;
971 uint8_t downmix_inhibit:1;
972 } audio;
973 uint8_t payload[28];
974 } __attribute__ ((packed)) u;
975} __attribute__((packed));
976
Chris Wilson32aad862010-08-04 13:50:25 +0100977static bool intel_sdvo_set_avi_infoframe(struct intel_sdvo *intel_sdvo,
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800978 struct drm_display_mode * mode)
979{
980 struct dip_infoframe avi_if = {
981 .type = DIP_TYPE_AVI,
982 .version = DIP_VERSION_AVI,
983 .len = DIP_LEN_AVI,
984 };
985
986 avi_if.checksum = intel_sdvo_calc_hbuf_csum((uint8_t *)&avi_if,
987 4 + avi_if.len);
Chris Wilson32aad862010-08-04 13:50:25 +0100988 return intel_sdvo_set_hdmi_buf(intel_sdvo, 1, (uint8_t *)&avi_if,
989 4 + avi_if.len,
990 SDVO_HBUF_TX_VSYNC);
Jesse Barnese2f0ba92009-02-02 15:11:52 -0800991}
992
Chris Wilson32aad862010-08-04 13:50:25 +0100993static bool intel_sdvo_set_tv_format(struct intel_sdvo *intel_sdvo)
Zhenyu Wang7026d4a2009-03-24 14:02:43 +0800994{
Zhao Yakuice6feab2009-08-24 13:50:26 +0800995 struct intel_sdvo_tv_format format;
Chris Wilson40039752010-08-04 13:50:26 +0100996 uint32_t format_map;
Zhao Yakuice6feab2009-08-24 13:50:26 +0800997
Chris Wilson40039752010-08-04 13:50:26 +0100998 format_map = 1 << intel_sdvo->tv_format_index;
Zhao Yakuice6feab2009-08-24 13:50:26 +0800999 memset(&format, 0, sizeof(format));
Chris Wilson32aad862010-08-04 13:50:25 +01001000 memcpy(&format, &format_map, min(sizeof(format), sizeof(format_map)));
Zhao Yakuice6feab2009-08-24 13:50:26 +08001001
Chris Wilson32aad862010-08-04 13:50:25 +01001002 BUILD_BUG_ON(sizeof(format) != 6);
1003 return intel_sdvo_set_value(intel_sdvo,
1004 SDVO_CMD_SET_TV_FORMAT,
1005 &format, sizeof(format));
1006}
Zhao Yakuice6feab2009-08-24 13:50:26 +08001007
Chris Wilson32aad862010-08-04 13:50:25 +01001008static bool
1009intel_sdvo_set_output_timings_from_mode(struct intel_sdvo *intel_sdvo,
1010 struct drm_display_mode *mode)
1011{
1012 struct intel_sdvo_dtd output_dtd;
1013
1014 if (!intel_sdvo_set_target_output(intel_sdvo,
1015 intel_sdvo->attached_output))
1016 return false;
1017
1018 intel_sdvo_get_dtd_from_mode(&output_dtd, mode);
1019 if (!intel_sdvo_set_output_timing(intel_sdvo, &output_dtd))
1020 return false;
1021
1022 return true;
1023}
1024
1025static bool
1026intel_sdvo_set_input_timings_for_mode(struct intel_sdvo *intel_sdvo,
1027 struct drm_display_mode *mode,
1028 struct drm_display_mode *adjusted_mode)
1029{
Chris Wilson32aad862010-08-04 13:50:25 +01001030 /* Reset the input timing to the screen. Assume always input 0. */
1031 if (!intel_sdvo_set_target_input(intel_sdvo))
1032 return false;
1033
1034 if (!intel_sdvo_create_preferred_input_timing(intel_sdvo,
1035 mode->clock / 10,
1036 mode->hdisplay,
1037 mode->vdisplay))
1038 return false;
1039
1040 if (!intel_sdvo_get_preferred_input_timing(intel_sdvo,
Chris Wilson6c9547f2010-08-25 10:05:17 +01001041 &intel_sdvo->input_dtd))
Chris Wilson32aad862010-08-04 13:50:25 +01001042 return false;
1043
Chris Wilson6c9547f2010-08-25 10:05:17 +01001044 intel_sdvo_get_mode_from_dtd(adjusted_mode, &intel_sdvo->input_dtd);
Chris Wilson32aad862010-08-04 13:50:25 +01001045
1046 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson32aad862010-08-04 13:50:25 +01001047 return true;
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001048}
1049
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001050static bool intel_sdvo_mode_fixup(struct drm_encoder *encoder,
1051 struct drm_display_mode *mode,
1052 struct drm_display_mode *adjusted_mode)
1053{
Chris Wilson890f3352010-09-14 16:46:59 +01001054 struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder);
Chris Wilson6c9547f2010-08-25 10:05:17 +01001055 int multiplier;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001056
Chris Wilson32aad862010-08-04 13:50:25 +01001057 /* We need to construct preferred input timings based on our
1058 * output timings. To do that, we have to set the output
1059 * timings, even though this isn't really the right place in
1060 * the sequence to do it. Oh well.
1061 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001062 if (intel_sdvo->is_tv) {
Chris Wilson32aad862010-08-04 13:50:25 +01001063 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo, mode))
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001064 return false;
Chris Wilson32aad862010-08-04 13:50:25 +01001065
Pavel Roskinc74696b2010-09-02 14:46:34 -04001066 (void) intel_sdvo_set_input_timings_for_mode(intel_sdvo,
1067 mode,
1068 adjusted_mode);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001069 } else if (intel_sdvo->is_lvds) {
Chris Wilson32aad862010-08-04 13:50:25 +01001070 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo,
Chris Wilson6c9547f2010-08-25 10:05:17 +01001071 intel_sdvo->sdvo_lvds_fixed_mode))
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001072 return false;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001073
Pavel Roskinc74696b2010-09-02 14:46:34 -04001074 (void) intel_sdvo_set_input_timings_for_mode(intel_sdvo,
1075 mode,
1076 adjusted_mode);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001077 }
Chris Wilson32aad862010-08-04 13:50:25 +01001078
1079 /* Make the CRTC code factor in the SDVO pixel multiplier. The
Chris Wilson6c9547f2010-08-25 10:05:17 +01001080 * SDVO device will factor out the multiplier during mode_set.
Chris Wilson32aad862010-08-04 13:50:25 +01001081 */
Chris Wilson6c9547f2010-08-25 10:05:17 +01001082 multiplier = intel_sdvo_get_pixel_multiplier(adjusted_mode);
1083 intel_mode_set_pixel_multiplier(adjusted_mode, multiplier);
Chris Wilson32aad862010-08-04 13:50:25 +01001084
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001085 return true;
1086}
1087
1088static void intel_sdvo_mode_set(struct drm_encoder *encoder,
1089 struct drm_display_mode *mode,
1090 struct drm_display_mode *adjusted_mode)
1091{
1092 struct drm_device *dev = encoder->dev;
1093 struct drm_i915_private *dev_priv = dev->dev_private;
1094 struct drm_crtc *crtc = encoder->crtc;
1095 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson890f3352010-09-14 16:46:59 +01001096 struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder);
Chris Wilson6c9547f2010-08-25 10:05:17 +01001097 u32 sdvox;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001098 struct intel_sdvo_in_out_map in_out;
1099 struct intel_sdvo_dtd input_dtd;
Chris Wilson6c9547f2010-08-25 10:05:17 +01001100 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
1101 int rate;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001102
1103 if (!mode)
1104 return;
1105
1106 /* First, set the input mapping for the first input to our controlled
1107 * output. This is only correct if we're a single-input device, in
1108 * which case the first input is the output from the appropriate SDVO
1109 * channel on the motherboard. In a two-input device, the first input
1110 * will be SDVOB and the second SDVOC.
1111 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001112 in_out.in0 = intel_sdvo->attached_output;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001113 in_out.in1 = 0;
1114
Pavel Roskinc74696b2010-09-02 14:46:34 -04001115 intel_sdvo_set_value(intel_sdvo,
1116 SDVO_CMD_SET_IN_OUT_MAP,
1117 &in_out, sizeof(in_out));
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001118
Chris Wilson6c9547f2010-08-25 10:05:17 +01001119 /* Set the output timings to the screen */
1120 if (!intel_sdvo_set_target_output(intel_sdvo,
1121 intel_sdvo->attached_output))
1122 return;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001123
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001124 /* We have tried to get input timing in mode_fixup, and filled into
Chris Wilson6c9547f2010-08-25 10:05:17 +01001125 * adjusted_mode.
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001126 */
Chris Wilson6c9547f2010-08-25 10:05:17 +01001127 if (intel_sdvo->is_tv || intel_sdvo->is_lvds) {
1128 input_dtd = intel_sdvo->input_dtd;
1129 } else {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001130 /* Set the output timing to the screen */
Chris Wilson32aad862010-08-04 13:50:25 +01001131 if (!intel_sdvo_set_target_output(intel_sdvo,
1132 intel_sdvo->attached_output))
1133 return;
1134
Chris Wilson6c9547f2010-08-25 10:05:17 +01001135 intel_sdvo_get_dtd_from_mode(&input_dtd, adjusted_mode);
Pavel Roskinc74696b2010-09-02 14:46:34 -04001136 (void) intel_sdvo_set_output_timing(intel_sdvo, &input_dtd);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001137 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001138
1139 /* Set the input timing to the screen. Assume always input 0. */
Chris Wilson32aad862010-08-04 13:50:25 +01001140 if (!intel_sdvo_set_target_input(intel_sdvo))
1141 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001142
Chris Wilson6c9547f2010-08-25 10:05:17 +01001143 if (intel_sdvo->is_hdmi &&
1144 !intel_sdvo_set_avi_infoframe(intel_sdvo, mode))
1145 return;
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001146
Chris Wilson6c9547f2010-08-25 10:05:17 +01001147 if (intel_sdvo->is_tv &&
1148 !intel_sdvo_set_tv_format(intel_sdvo))
1149 return;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001150
Pavel Roskinc74696b2010-09-02 14:46:34 -04001151 (void) intel_sdvo_set_input_timing(intel_sdvo, &input_dtd);
Jesse Barnes79e53942008-11-07 14:24:08 -08001152
Chris Wilson6c9547f2010-08-25 10:05:17 +01001153 switch (pixel_multiplier) {
1154 default:
Chris Wilson32aad862010-08-04 13:50:25 +01001155 case 1: rate = SDVO_CLOCK_RATE_MULT_1X; break;
1156 case 2: rate = SDVO_CLOCK_RATE_MULT_2X; break;
1157 case 4: rate = SDVO_CLOCK_RATE_MULT_4X; break;
Jesse Barnes79e53942008-11-07 14:24:08 -08001158 }
Chris Wilson32aad862010-08-04 13:50:25 +01001159 if (!intel_sdvo_set_clock_rate_mult(intel_sdvo, rate))
1160 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08001161
1162 /* Set the SDVO control regs. */
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001163 if (IS_I965G(dev)) {
Chris Wilson6c9547f2010-08-25 10:05:17 +01001164 sdvox = SDVO_BORDER_ENABLE;
Adam Jackson81a14b42010-07-16 14:46:32 -04001165 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
1166 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
1167 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
1168 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001169 } else {
Chris Wilson6c9547f2010-08-25 10:05:17 +01001170 sdvox = I915_READ(intel_sdvo->sdvo_reg);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001171 switch (intel_sdvo->sdvo_reg) {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001172 case SDVOB:
1173 sdvox &= SDVOB_PRESERVE_MASK;
1174 break;
1175 case SDVOC:
1176 sdvox &= SDVOC_PRESERVE_MASK;
1177 break;
1178 }
1179 sdvox |= (9 << 19) | SDVO_BORDER_ENABLE;
1180 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001181 if (intel_crtc->pipe == 1)
1182 sdvox |= SDVO_PIPE_B_SELECT;
Chris Wilson6c9547f2010-08-25 10:05:17 +01001183 if (intel_sdvo->is_hdmi)
1184 sdvox |= SDVO_AUDIO_ENABLE;
Jesse Barnes79e53942008-11-07 14:24:08 -08001185
Jesse Barnes79e53942008-11-07 14:24:08 -08001186 if (IS_I965G(dev)) {
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001187 /* done in crtc_mode_set as the dpll_md reg must be written early */
1188 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
1189 /* done in crtc_mode_set as it lives inside the dpll register */
Jesse Barnes79e53942008-11-07 14:24:08 -08001190 } else {
Chris Wilson6c9547f2010-08-25 10:05:17 +01001191 sdvox |= (pixel_multiplier - 1) << SDVO_PORT_MULTIPLY_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08001192 }
1193
Chris Wilson6c9547f2010-08-25 10:05:17 +01001194 if (input_dtd.part2.sdvo_flags & SDVO_NEED_TO_STALL)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001195 sdvox |= SDVO_STALL_SELECT;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001196 intel_sdvo_write_sdvox(intel_sdvo, sdvox);
Jesse Barnes79e53942008-11-07 14:24:08 -08001197}
1198
1199static void intel_sdvo_dpms(struct drm_encoder *encoder, int mode)
1200{
1201 struct drm_device *dev = encoder->dev;
1202 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson890f3352010-09-14 16:46:59 +01001203 struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001204 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08001205 u32 temp;
1206
1207 if (mode != DRM_MODE_DPMS_ON) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001208 intel_sdvo_set_active_outputs(intel_sdvo, 0);
Jesse Barnes79e53942008-11-07 14:24:08 -08001209 if (0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001210 intel_sdvo_set_encoder_power_state(intel_sdvo, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08001211
1212 if (mode == DRM_MODE_DPMS_OFF) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001213 temp = I915_READ(intel_sdvo->sdvo_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08001214 if ((temp & SDVO_ENABLE) != 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001215 intel_sdvo_write_sdvox(intel_sdvo, temp & ~SDVO_ENABLE);
Jesse Barnes79e53942008-11-07 14:24:08 -08001216 }
1217 }
1218 } else {
1219 bool input1, input2;
1220 int i;
1221 u8 status;
1222
Chris Wilsonea5b2132010-08-04 13:50:23 +01001223 temp = I915_READ(intel_sdvo->sdvo_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08001224 if ((temp & SDVO_ENABLE) == 0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001225 intel_sdvo_write_sdvox(intel_sdvo, temp | SDVO_ENABLE);
Jesse Barnes79e53942008-11-07 14:24:08 -08001226 for (i = 0; i < 2; i++)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001227 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08001228
Chris Wilson32aad862010-08-04 13:50:25 +01001229 status = intel_sdvo_get_trained_inputs(intel_sdvo, &input1, &input2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001230 /* Warn if the device reported failure to sync.
1231 * A lot of SDVO devices fail to notify of sync, but it's
1232 * a given it the status is a success, we succeeded.
1233 */
1234 if (status == SDVO_CMD_STATUS_SUCCESS && !input1) {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001235 DRM_DEBUG_KMS("First %s output reported failure to "
Chris Wilsonea5b2132010-08-04 13:50:23 +01001236 "sync\n", SDVO_NAME(intel_sdvo));
Jesse Barnes79e53942008-11-07 14:24:08 -08001237 }
1238
1239 if (0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001240 intel_sdvo_set_encoder_power_state(intel_sdvo, mode);
1241 intel_sdvo_set_active_outputs(intel_sdvo, intel_sdvo->attached_output);
Jesse Barnes79e53942008-11-07 14:24:08 -08001242 }
1243 return;
1244}
1245
Jesse Barnes79e53942008-11-07 14:24:08 -08001246static int intel_sdvo_mode_valid(struct drm_connector *connector,
1247 struct drm_display_mode *mode)
1248{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001249 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001250
1251 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1252 return MODE_NO_DBLESCAN;
1253
Chris Wilsonea5b2132010-08-04 13:50:23 +01001254 if (intel_sdvo->pixel_clock_min > mode->clock)
Jesse Barnes79e53942008-11-07 14:24:08 -08001255 return MODE_CLOCK_LOW;
1256
Chris Wilsonea5b2132010-08-04 13:50:23 +01001257 if (intel_sdvo->pixel_clock_max < mode->clock)
Jesse Barnes79e53942008-11-07 14:24:08 -08001258 return MODE_CLOCK_HIGH;
1259
Chris Wilson85454232010-08-08 14:28:23 +01001260 if (intel_sdvo->is_lvds) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001261 if (mode->hdisplay > intel_sdvo->sdvo_lvds_fixed_mode->hdisplay)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001262 return MODE_PANEL;
1263
Chris Wilsonea5b2132010-08-04 13:50:23 +01001264 if (mode->vdisplay > intel_sdvo->sdvo_lvds_fixed_mode->vdisplay)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001265 return MODE_PANEL;
1266 }
1267
Jesse Barnes79e53942008-11-07 14:24:08 -08001268 return MODE_OK;
1269}
1270
Chris Wilsonea5b2132010-08-04 13:50:23 +01001271static bool intel_sdvo_get_capabilities(struct intel_sdvo *intel_sdvo, struct intel_sdvo_caps *caps)
Jesse Barnes79e53942008-11-07 14:24:08 -08001272{
Chris Wilson32aad862010-08-04 13:50:25 +01001273 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_DEVICE_CAPS, caps, sizeof(*caps));
Jesse Barnes79e53942008-11-07 14:24:08 -08001274}
1275
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001276/* No use! */
1277#if 0
Jesse Barnes79e53942008-11-07 14:24:08 -08001278struct drm_connector* intel_sdvo_find(struct drm_device *dev, int sdvoB)
1279{
1280 struct drm_connector *connector = NULL;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001281 struct intel_sdvo *iout = NULL;
1282 struct intel_sdvo *sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -08001283
1284 /* find the sdvo connector */
1285 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001286 iout = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001287
1288 if (iout->type != INTEL_OUTPUT_SDVO)
1289 continue;
1290
1291 sdvo = iout->dev_priv;
1292
Eric Anholtc751ce42010-03-25 11:48:48 -07001293 if (sdvo->sdvo_reg == SDVOB && sdvoB)
Jesse Barnes79e53942008-11-07 14:24:08 -08001294 return connector;
1295
Eric Anholtc751ce42010-03-25 11:48:48 -07001296 if (sdvo->sdvo_reg == SDVOC && !sdvoB)
Jesse Barnes79e53942008-11-07 14:24:08 -08001297 return connector;
1298
1299 }
1300
1301 return NULL;
1302}
1303
1304int intel_sdvo_supports_hotplug(struct drm_connector *connector)
1305{
1306 u8 response[2];
1307 u8 status;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001308 struct intel_sdvo *intel_sdvo;
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001309 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08001310
1311 if (!connector)
1312 return 0;
1313
Chris Wilsonea5b2132010-08-04 13:50:23 +01001314 intel_sdvo = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001315
Chris Wilson32aad862010-08-04 13:50:25 +01001316 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT,
1317 &response, 2) && response[0];
Jesse Barnes79e53942008-11-07 14:24:08 -08001318}
1319
1320void intel_sdvo_set_hotplug(struct drm_connector *connector, int on)
1321{
1322 u8 response[2];
1323 u8 status;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001324 struct intel_sdvo *intel_sdvo = to_intel_sdvo(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001325
Chris Wilsonea5b2132010-08-04 13:50:23 +01001326 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_ACTIVE_HOT_PLUG, NULL, 0);
1327 intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001328
1329 if (on) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001330 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT, NULL, 0);
1331 status = intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001332
Chris Wilsonea5b2132010-08-04 13:50:23 +01001333 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001334 } else {
1335 response[0] = 0;
1336 response[1] = 0;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001337 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001338 }
1339
Chris Wilsonea5b2132010-08-04 13:50:23 +01001340 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_ACTIVE_HOT_PLUG, NULL, 0);
1341 intel_sdvo_read_response(intel_sdvo, &response, 2);
Jesse Barnes79e53942008-11-07 14:24:08 -08001342}
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001343#endif
Jesse Barnes79e53942008-11-07 14:24:08 -08001344
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001345static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001346intel_sdvo_multifunc_encoder(struct intel_sdvo *intel_sdvo)
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001347{
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001348 int caps = 0;
1349
Chris Wilsonea5b2132010-08-04 13:50:23 +01001350 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001351 (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_TMDS1))
1352 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001353 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001354 (SDVO_OUTPUT_RGB0 | SDVO_OUTPUT_RGB1))
1355 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001356 if (intel_sdvo->caps.output_flags &
Roel Kluin19e1f882009-08-09 13:50:53 +02001357 (SDVO_OUTPUT_SVID0 | SDVO_OUTPUT_SVID1))
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001358 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001359 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001360 (SDVO_OUTPUT_CVBS0 | SDVO_OUTPUT_CVBS1))
1361 caps++;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001362 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001363 (SDVO_OUTPUT_YPRPB0 | SDVO_OUTPUT_YPRPB1))
1364 caps++;
1365
Chris Wilsonea5b2132010-08-04 13:50:23 +01001366 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001367 (SDVO_OUTPUT_SCART0 | SDVO_OUTPUT_SCART1))
1368 caps++;
1369
Chris Wilsonea5b2132010-08-04 13:50:23 +01001370 if (intel_sdvo->caps.output_flags &
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001371 (SDVO_OUTPUT_LVDS0 | SDVO_OUTPUT_LVDS1))
1372 caps++;
1373
1374 return (caps > 1);
1375}
1376
Keith Packard57cdaf92009-09-04 13:07:54 +08001377static struct drm_connector *
1378intel_find_analog_connector(struct drm_device *dev)
1379{
1380 struct drm_connector *connector;
Chris Wilsondf0e9242010-09-09 16:20:55 +01001381 struct intel_sdvo *encoder;
Keith Packard57cdaf92009-09-04 13:07:54 +08001382
Chris Wilsondf0e9242010-09-09 16:20:55 +01001383 list_for_each_entry(encoder,
1384 &dev->mode_config.encoder_list,
1385 base.base.head) {
1386 if (encoder->base.type == INTEL_OUTPUT_ANALOG) {
1387 list_for_each_entry(connector,
1388 &dev->mode_config.connector_list,
1389 head) {
1390 if (&encoder->base ==
1391 intel_attached_encoder(connector))
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001392 return connector;
1393 }
1394 }
Keith Packard57cdaf92009-09-04 13:07:54 +08001395 }
Chris Wilsondf0e9242010-09-09 16:20:55 +01001396
Keith Packard57cdaf92009-09-04 13:07:54 +08001397 return NULL;
1398}
1399
1400static int
1401intel_analog_is_connected(struct drm_device *dev)
1402{
1403 struct drm_connector *analog_connector;
Keith Packard57cdaf92009-09-04 13:07:54 +08001404
Chris Wilson32aad862010-08-04 13:50:25 +01001405 analog_connector = intel_find_analog_connector(dev);
Keith Packard57cdaf92009-09-04 13:07:54 +08001406 if (!analog_connector)
1407 return false;
1408
1409 if (analog_connector->funcs->detect(analog_connector) ==
1410 connector_status_disconnected)
1411 return false;
1412
1413 return true;
1414}
1415
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001416enum drm_connector_status
Adam Jackson149c36a2010-04-29 14:05:18 -04001417intel_sdvo_hdmi_sink_detect(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001418{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001419 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
Chris Wilson615fb932010-08-04 13:50:24 +01001420 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001421 enum drm_connector_status status = connector_status_connected;
Ma Ling9dff6af2009-04-02 13:13:26 +08001422 struct edid *edid = NULL;
1423
Chris Wilsonea5b2132010-08-04 13:50:23 +01001424 edid = drm_get_edid(connector, intel_sdvo->base.ddc_bus);
Keith Packard57cdaf92009-09-04 13:07:54 +08001425
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001426 /* This is only applied to SDVO cards with multiple outputs */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001427 if (edid == NULL && intel_sdvo_multifunc_encoder(intel_sdvo)) {
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001428 uint8_t saved_ddc, temp_ddc;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001429 saved_ddc = intel_sdvo->ddc_bus;
1430 temp_ddc = intel_sdvo->ddc_bus >> 1;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001431 /*
1432 * Don't use the 1 as the argument of DDC bus switch to get
1433 * the EDID. It is used for SDVO SPD ROM.
1434 */
1435 while(temp_ddc > 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001436 intel_sdvo->ddc_bus = temp_ddc;
1437 edid = drm_get_edid(connector, intel_sdvo->base.ddc_bus);
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001438 if (edid) {
1439 /*
1440 * When we can get the EDID, maybe it is the
1441 * correct DDC bus. Update it.
1442 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001443 intel_sdvo->ddc_bus = temp_ddc;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001444 break;
1445 }
1446 temp_ddc >>= 1;
1447 }
1448 if (edid == NULL)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001449 intel_sdvo->ddc_bus = saved_ddc;
Zhao Yakui7c3f0a22010-01-08 10:58:20 +08001450 }
Keith Packard57cdaf92009-09-04 13:07:54 +08001451 /* when there is no edid and no monitor is connected with VGA
1452 * port, try to use the CRT ddc to read the EDID for DVI-connector
1453 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001454 if (edid == NULL && intel_sdvo->analog_ddc_bus &&
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001455 !intel_analog_is_connected(connector->dev))
Chris Wilsonea5b2132010-08-04 13:50:23 +01001456 edid = drm_get_edid(connector, intel_sdvo->analog_ddc_bus);
Adam Jackson149c36a2010-04-29 14:05:18 -04001457
Ma Ling9dff6af2009-04-02 13:13:26 +08001458 if (edid != NULL) {
Adam Jackson149c36a2010-04-29 14:05:18 -04001459 bool is_digital = !!(edid->input & DRM_EDID_INPUT_DIGITAL);
Chris Wilson615fb932010-08-04 13:50:24 +01001460 bool need_digital = !!(intel_sdvo_connector->output_flag & SDVO_TMDS_MASK);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001461
Adam Jackson149c36a2010-04-29 14:05:18 -04001462 /* DDC bus is shared, match EDID to connector type */
1463 if (is_digital && need_digital)
Chris Wilsonea5b2132010-08-04 13:50:23 +01001464 intel_sdvo->is_hdmi = drm_detect_hdmi_monitor(edid);
Adam Jackson149c36a2010-04-29 14:05:18 -04001465 else if (is_digital != need_digital)
1466 status = connector_status_disconnected;
1467
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001468 connector->display_info.raw_edid = NULL;
Adam Jackson149c36a2010-04-29 14:05:18 -04001469 } else
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001470 status = connector_status_disconnected;
Adam Jackson149c36a2010-04-29 14:05:18 -04001471
1472 kfree(edid);
ling.ma@intel.com2b8d33f72009-07-29 11:31:18 +08001473
1474 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +08001475}
1476
Jesse Barnes79e53942008-11-07 14:24:08 -08001477static enum drm_connector_status intel_sdvo_detect(struct drm_connector *connector)
1478{
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001479 uint16_t response;
Chris Wilsondf0e9242010-09-09 16:20:55 +01001480 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
Chris Wilson615fb932010-08-04 13:50:24 +01001481 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08001482 enum drm_connector_status ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001483
Chris Wilson32aad862010-08-04 13:50:25 +01001484 if (!intel_sdvo_write_cmd(intel_sdvo,
1485 SDVO_CMD_GET_ATTACHED_DISPLAYS, NULL, 0))
1486 return connector_status_unknown;
Chris Wilsonea5b2132010-08-04 13:50:23 +01001487 if (intel_sdvo->is_tv) {
Zhao Yakuid09c23d2009-11-06 15:39:56 +08001488 /* add 30ms delay when the output type is SDVO-TV */
1489 mdelay(30);
1490 }
Chris Wilson32aad862010-08-04 13:50:25 +01001491 if (!intel_sdvo_read_response(intel_sdvo, &response, 2))
1492 return connector_status_unknown;
Jesse Barnes79e53942008-11-07 14:24:08 -08001493
Dave Airlie51c8b402009-08-20 13:38:04 +10001494 DRM_DEBUG_KMS("SDVO response %d %d\n", response & 0xff, response >> 8);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001495
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001496 if (response == 0)
Jesse Barnes79e53942008-11-07 14:24:08 -08001497 return connector_status_disconnected;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001498
Chris Wilsonea5b2132010-08-04 13:50:23 +01001499 intel_sdvo->attached_output = response;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001500
Chris Wilson615fb932010-08-04 13:50:24 +01001501 if ((intel_sdvo_connector->output_flag & response) == 0)
Zhenyu Wang14571b42010-03-30 14:06:33 +08001502 ret = connector_status_disconnected;
Adam Jackson149c36a2010-04-29 14:05:18 -04001503 else if (response & SDVO_TMDS_MASK)
1504 ret = intel_sdvo_hdmi_sink_detect(connector);
Zhenyu Wang14571b42010-03-30 14:06:33 +08001505 else
1506 ret = connector_status_connected;
1507
1508 /* May update encoder flag for like clock for SDVO TV, etc.*/
1509 if (ret == connector_status_connected) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001510 intel_sdvo->is_tv = false;
1511 intel_sdvo->is_lvds = false;
1512 intel_sdvo->base.needs_tv_clock = false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001513
1514 if (response & SDVO_TV_MASK) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001515 intel_sdvo->is_tv = true;
1516 intel_sdvo->base.needs_tv_clock = true;
Zhenyu Wang14571b42010-03-30 14:06:33 +08001517 }
1518 if (response & SDVO_LVDS_MASK)
Chris Wilson85454232010-08-08 14:28:23 +01001519 intel_sdvo->is_lvds = intel_sdvo->sdvo_lvds_fixed_mode != NULL;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08001520 }
Zhenyu Wang14571b42010-03-30 14:06:33 +08001521
1522 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001523}
1524
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001525static void intel_sdvo_get_ddc_modes(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08001526{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001527 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
Keith Packard57cdaf92009-09-04 13:07:54 +08001528 int num_modes;
Jesse Barnes79e53942008-11-07 14:24:08 -08001529
1530 /* set the bus switch and get the modes */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001531 num_modes = intel_ddc_get_modes(connector, intel_sdvo->base.ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -08001532
Keith Packard57cdaf92009-09-04 13:07:54 +08001533 /*
1534 * Mac mini hack. On this device, the DVI-I connector shares one DDC
1535 * link between analog and digital outputs. So, if the regular SDVO
1536 * DDC fails, check to see if the analog output is disconnected, in
1537 * which case we'll look there for the digital DDC data.
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001538 */
Keith Packard57cdaf92009-09-04 13:07:54 +08001539 if (num_modes == 0 &&
Chris Wilsonea5b2132010-08-04 13:50:23 +01001540 intel_sdvo->analog_ddc_bus &&
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001541 !intel_analog_is_connected(connector->dev)) {
Keith Packard57cdaf92009-09-04 13:07:54 +08001542 /* Switch to the analog ddc bus and try that
1543 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001544 (void) intel_ddc_get_modes(connector, intel_sdvo->analog_ddc_bus);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001545 }
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001546}
1547
1548/*
1549 * Set of SDVO TV modes.
1550 * Note! This is in reply order (see loop in get_tv_modes).
1551 * XXX: all 60Hz refresh?
1552 */
1553struct drm_display_mode sdvo_tv_modes[] = {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001554 { DRM_MODE("320x200", DRM_MODE_TYPE_DRIVER, 5815, 320, 321, 384,
1555 416, 0, 200, 201, 232, 233, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001556 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001557 { DRM_MODE("320x240", DRM_MODE_TYPE_DRIVER, 6814, 320, 321, 384,
1558 416, 0, 240, 241, 272, 273, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001559 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001560 { DRM_MODE("400x300", DRM_MODE_TYPE_DRIVER, 9910, 400, 401, 464,
1561 496, 0, 300, 301, 332, 333, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001562 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001563 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 16913, 640, 641, 704,
1564 736, 0, 350, 351, 382, 383, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001565 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001566 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 19121, 640, 641, 704,
1567 736, 0, 400, 401, 432, 433, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001568 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001569 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 22654, 640, 641, 704,
1570 736, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001571 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001572 { DRM_MODE("704x480", DRM_MODE_TYPE_DRIVER, 24624, 704, 705, 768,
1573 800, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001574 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001575 { DRM_MODE("704x576", DRM_MODE_TYPE_DRIVER, 29232, 704, 705, 768,
1576 800, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001577 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001578 { DRM_MODE("720x350", DRM_MODE_TYPE_DRIVER, 18751, 720, 721, 784,
1579 816, 0, 350, 351, 382, 383, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001580 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001581 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 21199, 720, 721, 784,
1582 816, 0, 400, 401, 432, 433, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001583 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001584 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 25116, 720, 721, 784,
1585 816, 0, 480, 481, 512, 513, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001586 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001587 { DRM_MODE("720x540", DRM_MODE_TYPE_DRIVER, 28054, 720, 721, 784,
1588 816, 0, 540, 541, 572, 573, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001589 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001590 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 29816, 720, 721, 784,
1591 816, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001592 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001593 { DRM_MODE("768x576", DRM_MODE_TYPE_DRIVER, 31570, 768, 769, 832,
1594 864, 0, 576, 577, 608, 609, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001595 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001596 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 34030, 800, 801, 864,
1597 896, 0, 600, 601, 632, 633, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001598 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001599 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 36581, 832, 833, 896,
1600 928, 0, 624, 625, 656, 657, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001601 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001602 { DRM_MODE("920x766", DRM_MODE_TYPE_DRIVER, 48707, 920, 921, 984,
1603 1016, 0, 766, 767, 798, 799, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001604 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001605 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 53827, 1024, 1025, 1088,
1606 1120, 0, 768, 769, 800, 801, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001607 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001608 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 87265, 1280, 1281, 1344,
1609 1376, 0, 1024, 1025, 1056, 1057, 0,
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001610 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
1611};
1612
1613static void intel_sdvo_get_tv_modes(struct drm_connector *connector)
1614{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001615 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001616 struct intel_sdvo_sdtv_resolution_request tv_res;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001617 uint32_t reply = 0, format_map = 0;
1618 int i;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001619
1620 /* Read the list of supported input resolutions for the selected TV
1621 * format.
1622 */
Chris Wilson40039752010-08-04 13:50:26 +01001623 format_map = 1 << intel_sdvo->tv_format_index;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001624 memcpy(&tv_res, &format_map,
Chris Wilson32aad862010-08-04 13:50:25 +01001625 min(sizeof(format_map), sizeof(struct intel_sdvo_sdtv_resolution_request)));
Zhao Yakuice6feab2009-08-24 13:50:26 +08001626
Chris Wilson32aad862010-08-04 13:50:25 +01001627 if (!intel_sdvo_set_target_output(intel_sdvo, intel_sdvo->attached_output))
1628 return;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001629
Chris Wilson32aad862010-08-04 13:50:25 +01001630 BUILD_BUG_ON(sizeof(tv_res) != 3);
1631 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT,
1632 &tv_res, sizeof(tv_res)))
1633 return;
1634 if (!intel_sdvo_read_response(intel_sdvo, &reply, 3))
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001635 return;
1636
1637 for (i = 0; i < ARRAY_SIZE(sdvo_tv_modes); i++)
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001638 if (reply & (1 << i)) {
1639 struct drm_display_mode *nmode;
1640 nmode = drm_mode_duplicate(connector->dev,
Chris Wilson32aad862010-08-04 13:50:25 +01001641 &sdvo_tv_modes[i]);
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08001642 if (nmode)
1643 drm_mode_probed_add(connector, nmode);
1644 }
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001645}
1646
Ma Ling7086c872009-05-13 11:20:06 +08001647static void intel_sdvo_get_lvds_modes(struct drm_connector *connector)
1648{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001649 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
Ma Ling7086c872009-05-13 11:20:06 +08001650 struct drm_i915_private *dev_priv = connector->dev->dev_private;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001651 struct drm_display_mode *newmode;
Ma Ling7086c872009-05-13 11:20:06 +08001652
1653 /*
1654 * Attempt to get the mode list from DDC.
1655 * Assume that the preferred modes are
1656 * arranged in priority order.
1657 */
Chris Wilsonea5b2132010-08-04 13:50:23 +01001658 intel_ddc_get_modes(connector, intel_sdvo->base.ddc_bus);
Ma Ling7086c872009-05-13 11:20:06 +08001659 if (list_empty(&connector->probed_modes) == false)
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001660 goto end;
Ma Ling7086c872009-05-13 11:20:06 +08001661
1662 /* Fetch modes from VBT */
1663 if (dev_priv->sdvo_lvds_vbt_mode != NULL) {
Ma Ling7086c872009-05-13 11:20:06 +08001664 newmode = drm_mode_duplicate(connector->dev,
1665 dev_priv->sdvo_lvds_vbt_mode);
1666 if (newmode != NULL) {
1667 /* Guarantee the mode is preferred */
1668 newmode->type = (DRM_MODE_TYPE_PREFERRED |
1669 DRM_MODE_TYPE_DRIVER);
1670 drm_mode_probed_add(connector, newmode);
1671 }
1672 }
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001673
1674end:
1675 list_for_each_entry(newmode, &connector->probed_modes, head) {
1676 if (newmode->type & DRM_MODE_TYPE_PREFERRED) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001677 intel_sdvo->sdvo_lvds_fixed_mode =
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001678 drm_mode_duplicate(connector->dev, newmode);
Chris Wilson6c9547f2010-08-25 10:05:17 +01001679
1680 drm_mode_set_crtcinfo(intel_sdvo->sdvo_lvds_fixed_mode,
1681 0);
1682
Chris Wilson85454232010-08-08 14:28:23 +01001683 intel_sdvo->is_lvds = true;
ling.ma@intel.com12682a92009-06-30 11:35:35 +08001684 break;
1685 }
1686 }
1687
Ma Ling7086c872009-05-13 11:20:06 +08001688}
1689
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001690static int intel_sdvo_get_modes(struct drm_connector *connector)
1691{
Chris Wilson615fb932010-08-04 13:50:24 +01001692 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001693
Chris Wilson615fb932010-08-04 13:50:24 +01001694 if (IS_TV(intel_sdvo_connector))
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001695 intel_sdvo_get_tv_modes(connector);
Chris Wilson615fb932010-08-04 13:50:24 +01001696 else if (IS_LVDS(intel_sdvo_connector))
Ma Ling7086c872009-05-13 11:20:06 +08001697 intel_sdvo_get_lvds_modes(connector);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001698 else
1699 intel_sdvo_get_ddc_modes(connector);
1700
Chris Wilson32aad862010-08-04 13:50:25 +01001701 return !list_empty(&connector->probed_modes);
Jesse Barnes79e53942008-11-07 14:24:08 -08001702}
1703
Chris Wilsonfcc8d672010-08-04 13:50:27 +01001704static void
1705intel_sdvo_destroy_enhance_property(struct drm_connector *connector)
Zhao Yakuib9219c52009-09-10 15:45:46 +08001706{
Chris Wilson615fb932010-08-04 13:50:24 +01001707 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Zhao Yakuib9219c52009-09-10 15:45:46 +08001708 struct drm_device *dev = connector->dev;
1709
Chris Wilsonc5521702010-08-04 13:50:28 +01001710 if (intel_sdvo_connector->left)
1711 drm_property_destroy(dev, intel_sdvo_connector->left);
1712 if (intel_sdvo_connector->right)
1713 drm_property_destroy(dev, intel_sdvo_connector->right);
1714 if (intel_sdvo_connector->top)
1715 drm_property_destroy(dev, intel_sdvo_connector->top);
1716 if (intel_sdvo_connector->bottom)
1717 drm_property_destroy(dev, intel_sdvo_connector->bottom);
1718 if (intel_sdvo_connector->hpos)
1719 drm_property_destroy(dev, intel_sdvo_connector->hpos);
1720 if (intel_sdvo_connector->vpos)
1721 drm_property_destroy(dev, intel_sdvo_connector->vpos);
1722 if (intel_sdvo_connector->saturation)
1723 drm_property_destroy(dev, intel_sdvo_connector->saturation);
1724 if (intel_sdvo_connector->contrast)
1725 drm_property_destroy(dev, intel_sdvo_connector->contrast);
1726 if (intel_sdvo_connector->hue)
1727 drm_property_destroy(dev, intel_sdvo_connector->hue);
1728 if (intel_sdvo_connector->sharpness)
1729 drm_property_destroy(dev, intel_sdvo_connector->sharpness);
1730 if (intel_sdvo_connector->flicker_filter)
1731 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter);
1732 if (intel_sdvo_connector->flicker_filter_2d)
1733 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter_2d);
1734 if (intel_sdvo_connector->flicker_filter_adaptive)
1735 drm_property_destroy(dev, intel_sdvo_connector->flicker_filter_adaptive);
1736 if (intel_sdvo_connector->tv_luma_filter)
1737 drm_property_destroy(dev, intel_sdvo_connector->tv_luma_filter);
1738 if (intel_sdvo_connector->tv_chroma_filter)
1739 drm_property_destroy(dev, intel_sdvo_connector->tv_chroma_filter);
Chris Wilsone0442182010-08-04 13:50:29 +01001740 if (intel_sdvo_connector->dot_crawl)
1741 drm_property_destroy(dev, intel_sdvo_connector->dot_crawl);
Chris Wilsonc5521702010-08-04 13:50:28 +01001742 if (intel_sdvo_connector->brightness)
1743 drm_property_destroy(dev, intel_sdvo_connector->brightness);
Zhao Yakuib9219c52009-09-10 15:45:46 +08001744}
1745
Jesse Barnes79e53942008-11-07 14:24:08 -08001746static void intel_sdvo_destroy(struct drm_connector *connector)
1747{
Chris Wilson615fb932010-08-04 13:50:24 +01001748 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001749
Chris Wilsonc5521702010-08-04 13:50:28 +01001750 if (intel_sdvo_connector->tv_format)
Zhao Yakuice6feab2009-08-24 13:50:26 +08001751 drm_property_destroy(connector->dev,
Chris Wilsonc5521702010-08-04 13:50:28 +01001752 intel_sdvo_connector->tv_format);
Zhao Yakuice6feab2009-08-24 13:50:26 +08001753
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001754 intel_sdvo_destroy_enhance_property(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001755 drm_sysfs_connector_remove(connector);
1756 drm_connector_cleanup(connector);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001757 kfree(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001758}
1759
Zhao Yakuice6feab2009-08-24 13:50:26 +08001760static int
1761intel_sdvo_set_property(struct drm_connector *connector,
1762 struct drm_property *property,
1763 uint64_t val)
1764{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001765 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
Chris Wilson615fb932010-08-04 13:50:24 +01001766 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
Zhao Yakuib9219c52009-09-10 15:45:46 +08001767 uint16_t temp_value;
Chris Wilson32aad862010-08-04 13:50:25 +01001768 uint8_t cmd;
1769 int ret;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001770
1771 ret = drm_connector_property_set_value(connector, property, val);
Chris Wilson32aad862010-08-04 13:50:25 +01001772 if (ret)
1773 return ret;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001774
Chris Wilsonc5521702010-08-04 13:50:28 +01001775#define CHECK_PROPERTY(name, NAME) \
1776 if (intel_sdvo_connector->name == property) { \
1777 if (intel_sdvo_connector->cur_##name == temp_value) return 0; \
1778 if (intel_sdvo_connector->max_##name < temp_value) return -EINVAL; \
1779 cmd = SDVO_CMD_SET_##NAME; \
1780 intel_sdvo_connector->cur_##name = temp_value; \
1781 goto set_value; \
1782 }
1783
1784 if (property == intel_sdvo_connector->tv_format) {
Chris Wilson32aad862010-08-04 13:50:25 +01001785 if (val >= TV_FORMAT_NUM)
1786 return -EINVAL;
1787
Chris Wilson40039752010-08-04 13:50:26 +01001788 if (intel_sdvo->tv_format_index ==
Chris Wilson615fb932010-08-04 13:50:24 +01001789 intel_sdvo_connector->tv_format_supported[val])
Chris Wilson32aad862010-08-04 13:50:25 +01001790 return 0;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001791
Chris Wilson40039752010-08-04 13:50:26 +01001792 intel_sdvo->tv_format_index = intel_sdvo_connector->tv_format_supported[val];
Chris Wilsonc5521702010-08-04 13:50:28 +01001793 goto done;
Chris Wilson32aad862010-08-04 13:50:25 +01001794 } else if (IS_TV_OR_LVDS(intel_sdvo_connector)) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001795 temp_value = val;
Chris Wilsonc5521702010-08-04 13:50:28 +01001796 if (intel_sdvo_connector->left == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001797 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001798 intel_sdvo_connector->right, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001799 if (intel_sdvo_connector->left_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001800 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001801
Chris Wilson615fb932010-08-04 13:50:24 +01001802 intel_sdvo_connector->left_margin = temp_value;
1803 intel_sdvo_connector->right_margin = temp_value;
1804 temp_value = intel_sdvo_connector->max_hscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001805 intel_sdvo_connector->left_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001806 cmd = SDVO_CMD_SET_OVERSCAN_H;
Chris Wilsonc5521702010-08-04 13:50:28 +01001807 goto set_value;
1808 } else if (intel_sdvo_connector->right == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001809 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001810 intel_sdvo_connector->left, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001811 if (intel_sdvo_connector->right_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001812 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001813
Chris Wilson615fb932010-08-04 13:50:24 +01001814 intel_sdvo_connector->left_margin = temp_value;
1815 intel_sdvo_connector->right_margin = temp_value;
1816 temp_value = intel_sdvo_connector->max_hscan -
1817 intel_sdvo_connector->left_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001818 cmd = SDVO_CMD_SET_OVERSCAN_H;
Chris Wilsonc5521702010-08-04 13:50:28 +01001819 goto set_value;
1820 } else if (intel_sdvo_connector->top == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001821 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001822 intel_sdvo_connector->bottom, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001823 if (intel_sdvo_connector->top_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001824 return 0;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001825
Chris Wilson615fb932010-08-04 13:50:24 +01001826 intel_sdvo_connector->top_margin = temp_value;
1827 intel_sdvo_connector->bottom_margin = temp_value;
1828 temp_value = intel_sdvo_connector->max_vscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001829 intel_sdvo_connector->top_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001830 cmd = SDVO_CMD_SET_OVERSCAN_V;
Chris Wilsonc5521702010-08-04 13:50:28 +01001831 goto set_value;
1832 } else if (intel_sdvo_connector->bottom == property) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08001833 drm_connector_property_set_value(connector,
Chris Wilsonc5521702010-08-04 13:50:28 +01001834 intel_sdvo_connector->top, val);
Chris Wilson615fb932010-08-04 13:50:24 +01001835 if (intel_sdvo_connector->bottom_margin == temp_value)
Chris Wilson32aad862010-08-04 13:50:25 +01001836 return 0;
1837
Chris Wilson615fb932010-08-04 13:50:24 +01001838 intel_sdvo_connector->top_margin = temp_value;
1839 intel_sdvo_connector->bottom_margin = temp_value;
1840 temp_value = intel_sdvo_connector->max_vscan -
Chris Wilsonc5521702010-08-04 13:50:28 +01001841 intel_sdvo_connector->top_margin;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001842 cmd = SDVO_CMD_SET_OVERSCAN_V;
Chris Wilsonc5521702010-08-04 13:50:28 +01001843 goto set_value;
Zhao Yakuib9219c52009-09-10 15:45:46 +08001844 }
Chris Wilsonc5521702010-08-04 13:50:28 +01001845 CHECK_PROPERTY(hpos, HPOS)
1846 CHECK_PROPERTY(vpos, VPOS)
1847 CHECK_PROPERTY(saturation, SATURATION)
1848 CHECK_PROPERTY(contrast, CONTRAST)
1849 CHECK_PROPERTY(hue, HUE)
1850 CHECK_PROPERTY(brightness, BRIGHTNESS)
1851 CHECK_PROPERTY(sharpness, SHARPNESS)
1852 CHECK_PROPERTY(flicker_filter, FLICKER_FILTER)
1853 CHECK_PROPERTY(flicker_filter_2d, FLICKER_FILTER_2D)
1854 CHECK_PROPERTY(flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE)
1855 CHECK_PROPERTY(tv_chroma_filter, TV_CHROMA_FILTER)
1856 CHECK_PROPERTY(tv_luma_filter, TV_LUMA_FILTER)
Chris Wilsone0442182010-08-04 13:50:29 +01001857 CHECK_PROPERTY(dot_crawl, DOT_CRAWL)
Zhao Yakuib9219c52009-09-10 15:45:46 +08001858 }
Chris Wilsonc5521702010-08-04 13:50:28 +01001859
1860 return -EINVAL; /* unknown property */
1861
1862set_value:
1863 if (!intel_sdvo_set_value(intel_sdvo, cmd, &temp_value, 2))
1864 return -EIO;
1865
1866
1867done:
Chris Wilsondf0e9242010-09-09 16:20:55 +01001868 if (intel_sdvo->base.base.crtc) {
1869 struct drm_crtc *crtc = intel_sdvo->base.base.crtc;
Zhao Yakuice6feab2009-08-24 13:50:26 +08001870 drm_crtc_helper_set_mode(crtc, &crtc->mode, crtc->x,
Chris Wilsonc5521702010-08-04 13:50:28 +01001871 crtc->y, crtc->fb);
1872 }
1873
Chris Wilson32aad862010-08-04 13:50:25 +01001874 return 0;
Chris Wilsonc5521702010-08-04 13:50:28 +01001875#undef CHECK_PROPERTY
Zhao Yakuice6feab2009-08-24 13:50:26 +08001876}
1877
Jesse Barnes79e53942008-11-07 14:24:08 -08001878static const struct drm_encoder_helper_funcs intel_sdvo_helper_funcs = {
1879 .dpms = intel_sdvo_dpms,
1880 .mode_fixup = intel_sdvo_mode_fixup,
1881 .prepare = intel_encoder_prepare,
1882 .mode_set = intel_sdvo_mode_set,
1883 .commit = intel_encoder_commit,
1884};
1885
1886static const struct drm_connector_funcs intel_sdvo_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -07001887 .dpms = drm_helper_connector_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -08001888 .detect = intel_sdvo_detect,
1889 .fill_modes = drm_helper_probe_single_connector_modes,
Zhao Yakuice6feab2009-08-24 13:50:26 +08001890 .set_property = intel_sdvo_set_property,
Jesse Barnes79e53942008-11-07 14:24:08 -08001891 .destroy = intel_sdvo_destroy,
1892};
1893
1894static const struct drm_connector_helper_funcs intel_sdvo_connector_helper_funcs = {
1895 .get_modes = intel_sdvo_get_modes,
1896 .mode_valid = intel_sdvo_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001897 .best_encoder = intel_best_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -08001898};
1899
Hannes Ederb358d0a2008-12-18 21:18:47 +01001900static void intel_sdvo_enc_destroy(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08001901{
Chris Wilson890f3352010-09-14 16:46:59 +01001902 struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001903
Chris Wilsonea5b2132010-08-04 13:50:23 +01001904 if (intel_sdvo->analog_ddc_bus)
1905 intel_i2c_destroy(intel_sdvo->analog_ddc_bus);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001906
Chris Wilsonea5b2132010-08-04 13:50:23 +01001907 if (intel_sdvo->sdvo_lvds_fixed_mode != NULL)
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001908 drm_mode_destroy(encoder->dev,
Chris Wilsonea5b2132010-08-04 13:50:23 +01001909 intel_sdvo->sdvo_lvds_fixed_mode);
Zhenyu Wangd2a82a62010-03-29 21:22:55 +08001910
Chris Wilsonea5b2132010-08-04 13:50:23 +01001911 intel_encoder_destroy(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08001912}
1913
1914static const struct drm_encoder_funcs intel_sdvo_enc_funcs = {
1915 .destroy = intel_sdvo_enc_destroy,
1916};
1917
Chris Wilsonb66d8422010-08-12 15:26:41 +01001918static void
1919intel_sdvo_guess_ddc_bus(struct intel_sdvo *sdvo)
1920{
1921 uint16_t mask = 0;
1922 unsigned int num_bits;
1923
1924 /* Make a mask of outputs less than or equal to our own priority in the
1925 * list.
1926 */
1927 switch (sdvo->controlled_output) {
1928 case SDVO_OUTPUT_LVDS1:
1929 mask |= SDVO_OUTPUT_LVDS1;
1930 case SDVO_OUTPUT_LVDS0:
1931 mask |= SDVO_OUTPUT_LVDS0;
1932 case SDVO_OUTPUT_TMDS1:
1933 mask |= SDVO_OUTPUT_TMDS1;
1934 case SDVO_OUTPUT_TMDS0:
1935 mask |= SDVO_OUTPUT_TMDS0;
1936 case SDVO_OUTPUT_RGB1:
1937 mask |= SDVO_OUTPUT_RGB1;
1938 case SDVO_OUTPUT_RGB0:
1939 mask |= SDVO_OUTPUT_RGB0;
1940 break;
1941 }
1942
1943 /* Count bits to find what number we are in the priority list. */
1944 mask &= sdvo->caps.output_flags;
1945 num_bits = hweight16(mask);
1946 /* If more than 3 outputs, default to DDC bus 3 for now. */
1947 if (num_bits > 3)
1948 num_bits = 3;
1949
1950 /* Corresponds to SDVO_CONTROL_BUS_DDCx */
1951 sdvo->ddc_bus = 1 << num_bits;
1952}
Jesse Barnes79e53942008-11-07 14:24:08 -08001953
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001954/**
1955 * Choose the appropriate DDC bus for control bus switch command for this
1956 * SDVO output based on the controlled output.
1957 *
1958 * DDC bus number assignment is in a priority order of RGB outputs, then TMDS
1959 * outputs, then LVDS outputs.
1960 */
1961static void
Adam Jacksonb1083332010-04-23 16:07:40 -04001962intel_sdvo_select_ddc_bus(struct drm_i915_private *dev_priv,
Chris Wilsonea5b2132010-08-04 13:50:23 +01001963 struct intel_sdvo *sdvo, u32 reg)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001964{
Adam Jacksonb1083332010-04-23 16:07:40 -04001965 struct sdvo_device_mapping *mapping;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001966
Adam Jacksonb1083332010-04-23 16:07:40 -04001967 if (IS_SDVOB(reg))
1968 mapping = &(dev_priv->sdvo_mappings[0]);
1969 else
1970 mapping = &(dev_priv->sdvo_mappings[1]);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001971
Chris Wilsonb66d8422010-08-12 15:26:41 +01001972 if (mapping->initialized)
1973 sdvo->ddc_bus = 1 << ((mapping->ddc_pin & 0xf0) >> 4);
1974 else
1975 intel_sdvo_guess_ddc_bus(sdvo);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001976}
1977
1978static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01001979intel_sdvo_get_digital_encoding_mode(struct intel_sdvo *intel_sdvo, int device)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001980{
Chris Wilson32aad862010-08-04 13:50:25 +01001981 return intel_sdvo_set_target_output(intel_sdvo,
1982 device == 0 ? SDVO_OUTPUT_TMDS0 : SDVO_OUTPUT_TMDS1) &&
1983 intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_ENCODE,
1984 &intel_sdvo->is_hdmi, 1);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08001985}
1986
Ma Ling619ac3b2009-05-18 16:12:46 +08001987static int intel_sdvo_master_xfer(struct i2c_adapter *i2c_adap,
1988 struct i2c_msg msgs[], int num)
1989{
Chris Wilsonea5b2132010-08-04 13:50:23 +01001990 struct intel_sdvo *intel_sdvo;
Keith Packardf9c10a92009-05-30 12:16:25 -07001991 const struct i2c_algorithm *algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08001992
Chris Wilson890f3352010-09-14 16:46:59 +01001993 intel_sdvo = container_of(i2c_adap->algo_data,
1994 struct intel_sdvo,
1995 base);
Chris Wilsonea5b2132010-08-04 13:50:23 +01001996 algo = intel_sdvo->base.i2c_bus->algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08001997
Chris Wilsonea5b2132010-08-04 13:50:23 +01001998 intel_sdvo_set_control_bus_switch(intel_sdvo, intel_sdvo->ddc_bus);
Ma Ling619ac3b2009-05-18 16:12:46 +08001999 return algo->master_xfer(i2c_adap, msgs, num);
2000}
2001
2002static struct i2c_algorithm intel_sdvo_i2c_bit_algo = {
2003 .master_xfer = intel_sdvo_master_xfer,
2004};
2005
yakui_zhao714605e2009-05-31 17:18:07 +08002006static u8
Eric Anholtc751ce42010-03-25 11:48:48 -07002007intel_sdvo_get_slave_addr(struct drm_device *dev, int sdvo_reg)
yakui_zhao714605e2009-05-31 17:18:07 +08002008{
2009 struct drm_i915_private *dev_priv = dev->dev_private;
2010 struct sdvo_device_mapping *my_mapping, *other_mapping;
2011
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002012 if (IS_SDVOB(sdvo_reg)) {
yakui_zhao714605e2009-05-31 17:18:07 +08002013 my_mapping = &dev_priv->sdvo_mappings[0];
2014 other_mapping = &dev_priv->sdvo_mappings[1];
2015 } else {
2016 my_mapping = &dev_priv->sdvo_mappings[1];
2017 other_mapping = &dev_priv->sdvo_mappings[0];
2018 }
2019
2020 /* If the BIOS described our SDVO device, take advantage of it. */
2021 if (my_mapping->slave_addr)
2022 return my_mapping->slave_addr;
2023
2024 /* If the BIOS only described a different SDVO device, use the
2025 * address that it isn't using.
2026 */
2027 if (other_mapping->slave_addr) {
2028 if (other_mapping->slave_addr == 0x70)
2029 return 0x72;
2030 else
2031 return 0x70;
2032 }
2033
2034 /* No SDVO device info is found for another DVO port,
2035 * so use mapping assumption we had before BIOS parsing.
2036 */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002037 if (IS_SDVOB(sdvo_reg))
yakui_zhao714605e2009-05-31 17:18:07 +08002038 return 0x70;
2039 else
2040 return 0x72;
2041}
2042
Zhenyu Wang14571b42010-03-30 14:06:33 +08002043static void
Chris Wilsondf0e9242010-09-09 16:20:55 +01002044intel_sdvo_connector_init(struct intel_sdvo_connector *connector,
2045 struct intel_sdvo *encoder)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002046{
Chris Wilsondf0e9242010-09-09 16:20:55 +01002047 drm_connector_init(encoder->base.base.dev,
2048 &connector->base.base,
2049 &intel_sdvo_connector_funcs,
2050 connector->base.base.connector_type);
Zhao Yakui6070a4a2010-02-08 21:35:12 +08002051
Chris Wilsondf0e9242010-09-09 16:20:55 +01002052 drm_connector_helper_add(&connector->base.base,
2053 &intel_sdvo_connector_helper_funcs);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002054
Chris Wilsondf0e9242010-09-09 16:20:55 +01002055 connector->base.base.interlace_allowed = 0;
2056 connector->base.base.doublescan_allowed = 0;
2057 connector->base.base.display_info.subpixel_order = SubPixelHorizontalRGB;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002058
Chris Wilsondf0e9242010-09-09 16:20:55 +01002059 intel_connector_attach_encoder(&connector->base, &encoder->base);
2060 drm_sysfs_connector_add(&connector->base.base);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002061}
2062
2063static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002064intel_sdvo_dvi_init(struct intel_sdvo *intel_sdvo, int device)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002065{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002066 struct drm_encoder *encoder = &intel_sdvo->base.base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002067 struct drm_connector *connector;
2068 struct intel_connector *intel_connector;
Chris Wilson615fb932010-08-04 13:50:24 +01002069 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002070
Chris Wilson615fb932010-08-04 13:50:24 +01002071 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2072 if (!intel_sdvo_connector)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002073 return false;
2074
Zhenyu Wang14571b42010-03-30 14:06:33 +08002075 if (device == 0) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002076 intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS0;
Chris Wilson615fb932010-08-04 13:50:24 +01002077 intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS0;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002078 } else if (device == 1) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002079 intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS1;
Chris Wilson615fb932010-08-04 13:50:24 +01002080 intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS1;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002081 }
2082
Chris Wilson615fb932010-08-04 13:50:24 +01002083 intel_connector = &intel_sdvo_connector->base;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002084 connector = &intel_connector->base;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002085 connector->polled = DRM_CONNECTOR_POLL_CONNECT | DRM_CONNECTOR_POLL_DISCONNECT;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002086 encoder->encoder_type = DRM_MODE_ENCODER_TMDS;
2087 connector->connector_type = DRM_MODE_CONNECTOR_DVID;
2088
Chris Wilsonea5b2132010-08-04 13:50:23 +01002089 if (intel_sdvo_get_supp_encode(intel_sdvo, &intel_sdvo->encode)
2090 && intel_sdvo_get_digital_encoding_mode(intel_sdvo, device)
2091 && intel_sdvo->is_hdmi) {
Zhenyu Wang14571b42010-03-30 14:06:33 +08002092 /* enable hdmi encoding mode if supported */
Chris Wilsonea5b2132010-08-04 13:50:23 +01002093 intel_sdvo_set_encode(intel_sdvo, SDVO_ENCODE_HDMI);
2094 intel_sdvo_set_colorimetry(intel_sdvo,
Zhenyu Wang14571b42010-03-30 14:06:33 +08002095 SDVO_COLORIMETRY_RGB256);
2096 connector->connector_type = DRM_MODE_CONNECTOR_HDMIA;
2097 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002098 intel_sdvo->base.clone_mask = ((1 << INTEL_SDVO_NON_TV_CLONE_BIT) |
2099 (1 << INTEL_ANALOG_CLONE_BIT));
Zhenyu Wang14571b42010-03-30 14:06:33 +08002100
Chris Wilsondf0e9242010-09-09 16:20:55 +01002101 intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002102
2103 return true;
2104}
2105
2106static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002107intel_sdvo_tv_init(struct intel_sdvo *intel_sdvo, int type)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002108{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002109 struct drm_encoder *encoder = &intel_sdvo->base.base;
2110 struct drm_connector *connector;
2111 struct intel_connector *intel_connector;
2112 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002113
Chris Wilson615fb932010-08-04 13:50:24 +01002114 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2115 if (!intel_sdvo_connector)
2116 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002117
Chris Wilson615fb932010-08-04 13:50:24 +01002118 intel_connector = &intel_sdvo_connector->base;
Chris Wilson4ef69c72010-09-09 15:14:28 +01002119 connector = &intel_connector->base;
2120 encoder->encoder_type = DRM_MODE_ENCODER_TVDAC;
2121 connector->connector_type = DRM_MODE_CONNECTOR_SVIDEO;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002122
Chris Wilson4ef69c72010-09-09 15:14:28 +01002123 intel_sdvo->controlled_output |= type;
2124 intel_sdvo_connector->output_flag = type;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002125
Chris Wilson4ef69c72010-09-09 15:14:28 +01002126 intel_sdvo->is_tv = true;
2127 intel_sdvo->base.needs_tv_clock = true;
2128 intel_sdvo->base.clone_mask = 1 << INTEL_SDVO_TV_CLONE_BIT;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002129
Chris Wilsondf0e9242010-09-09 16:20:55 +01002130 intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002131
Chris Wilson4ef69c72010-09-09 15:14:28 +01002132 if (!intel_sdvo_tv_create_property(intel_sdvo, intel_sdvo_connector, type))
Chris Wilson32aad862010-08-04 13:50:25 +01002133 goto err;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002134
Chris Wilson4ef69c72010-09-09 15:14:28 +01002135 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
Chris Wilson32aad862010-08-04 13:50:25 +01002136 goto err;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002137
Chris Wilson4ef69c72010-09-09 15:14:28 +01002138 return true;
Chris Wilson32aad862010-08-04 13:50:25 +01002139
2140err:
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002141 intel_sdvo_destroy_enhance_property(connector);
Chris Wilson32aad862010-08-04 13:50:25 +01002142 kfree(intel_sdvo_connector);
2143 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002144}
2145
2146static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002147intel_sdvo_analog_init(struct intel_sdvo *intel_sdvo, int device)
Zhenyu Wang14571b42010-03-30 14:06:33 +08002148{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002149 struct drm_encoder *encoder = &intel_sdvo->base.base;
2150 struct drm_connector *connector;
2151 struct intel_connector *intel_connector;
2152 struct intel_sdvo_connector *intel_sdvo_connector;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002153
Chris Wilson615fb932010-08-04 13:50:24 +01002154 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2155 if (!intel_sdvo_connector)
2156 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002157
Chris Wilson615fb932010-08-04 13:50:24 +01002158 intel_connector = &intel_sdvo_connector->base;
2159 connector = &intel_connector->base;
Chris Wilson4ef69c72010-09-09 15:14:28 +01002160 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
2161 encoder->encoder_type = DRM_MODE_ENCODER_DAC;
2162 connector->connector_type = DRM_MODE_CONNECTOR_VGA;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002163
Chris Wilson4ef69c72010-09-09 15:14:28 +01002164 if (device == 0) {
2165 intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB0;
2166 intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB0;
2167 } else if (device == 1) {
2168 intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB1;
2169 intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB1;
2170 }
Zhenyu Wang14571b42010-03-30 14:06:33 +08002171
Chris Wilson4ef69c72010-09-09 15:14:28 +01002172 intel_sdvo->base.clone_mask = ((1 << INTEL_SDVO_NON_TV_CLONE_BIT) |
2173 (1 << INTEL_ANALOG_CLONE_BIT));
2174
Chris Wilsondf0e9242010-09-09 16:20:55 +01002175 intel_sdvo_connector_init(intel_sdvo_connector,
2176 intel_sdvo);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002177 return true;
2178}
2179
2180static bool
2181intel_sdvo_lvds_init(struct intel_sdvo *intel_sdvo, int device)
2182{
2183 struct drm_encoder *encoder = &intel_sdvo->base.base;
2184 struct drm_connector *connector;
2185 struct intel_connector *intel_connector;
2186 struct intel_sdvo_connector *intel_sdvo_connector;
2187
2188 intel_sdvo_connector = kzalloc(sizeof(struct intel_sdvo_connector), GFP_KERNEL);
2189 if (!intel_sdvo_connector)
2190 return false;
2191
2192 intel_connector = &intel_sdvo_connector->base;
2193 connector = &intel_connector->base;
2194 encoder->encoder_type = DRM_MODE_ENCODER_LVDS;
2195 connector->connector_type = DRM_MODE_CONNECTOR_LVDS;
2196
2197 if (device == 0) {
2198 intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS0;
2199 intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS0;
2200 } else if (device == 1) {
2201 intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS1;
2202 intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS1;
2203 }
2204
2205 intel_sdvo->base.clone_mask = ((1 << INTEL_ANALOG_CLONE_BIT) |
Chris Wilsonea5b2132010-08-04 13:50:23 +01002206 (1 << INTEL_SDVO_LVDS_CLONE_BIT));
Zhenyu Wang14571b42010-03-30 14:06:33 +08002207
Chris Wilsondf0e9242010-09-09 16:20:55 +01002208 intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo);
Chris Wilson4ef69c72010-09-09 15:14:28 +01002209 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
Chris Wilson32aad862010-08-04 13:50:25 +01002210 goto err;
2211
2212 return true;
2213
2214err:
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002215 intel_sdvo_destroy_enhance_property(connector);
Chris Wilson32aad862010-08-04 13:50:25 +01002216 kfree(intel_sdvo_connector);
2217 return false;
Zhenyu Wang14571b42010-03-30 14:06:33 +08002218}
Zhao Yakui6070a4a2010-02-08 21:35:12 +08002219
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002220static bool
Chris Wilsonea5b2132010-08-04 13:50:23 +01002221intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, uint16_t flags)
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002222{
Chris Wilsonea5b2132010-08-04 13:50:23 +01002223 intel_sdvo->is_tv = false;
2224 intel_sdvo->base.needs_tv_clock = false;
2225 intel_sdvo->is_lvds = false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002226
Zhenyu Wang14571b42010-03-30 14:06:33 +08002227 /* SDVO requires XXX1 function may not exist unless it has XXX0 function.*/
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002228
Zhenyu Wang14571b42010-03-30 14:06:33 +08002229 if (flags & SDVO_OUTPUT_TMDS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002230 if (!intel_sdvo_dvi_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002231 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002232
Zhenyu Wang14571b42010-03-30 14:06:33 +08002233 if ((flags & SDVO_TMDS_MASK) == SDVO_TMDS_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002234 if (!intel_sdvo_dvi_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002235 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002236
Zhenyu Wang14571b42010-03-30 14:06:33 +08002237 /* TV has no XXX1 function block */
Zhenyu Wanga1f4b7ff2010-03-29 23:16:13 +08002238 if (flags & SDVO_OUTPUT_SVID0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002239 if (!intel_sdvo_tv_init(intel_sdvo, SDVO_OUTPUT_SVID0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002240 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002241
Zhenyu Wang14571b42010-03-30 14:06:33 +08002242 if (flags & SDVO_OUTPUT_CVBS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002243 if (!intel_sdvo_tv_init(intel_sdvo, SDVO_OUTPUT_CVBS0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002244 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002245
Zhenyu Wang14571b42010-03-30 14:06:33 +08002246 if (flags & SDVO_OUTPUT_RGB0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002247 if (!intel_sdvo_analog_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002248 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002249
Zhenyu Wang14571b42010-03-30 14:06:33 +08002250 if ((flags & SDVO_RGB_MASK) == SDVO_RGB_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002251 if (!intel_sdvo_analog_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002252 return false;
Zhao Yakui2dd87382010-01-27 16:32:46 +08002253
Zhenyu Wang14571b42010-03-30 14:06:33 +08002254 if (flags & SDVO_OUTPUT_LVDS0)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002255 if (!intel_sdvo_lvds_init(intel_sdvo, 0))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002256 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002257
Zhenyu Wang14571b42010-03-30 14:06:33 +08002258 if ((flags & SDVO_LVDS_MASK) == SDVO_LVDS_MASK)
Chris Wilsonea5b2132010-08-04 13:50:23 +01002259 if (!intel_sdvo_lvds_init(intel_sdvo, 1))
Zhenyu Wang14571b42010-03-30 14:06:33 +08002260 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002261
Zhenyu Wang14571b42010-03-30 14:06:33 +08002262 if ((flags & SDVO_OUTPUT_MASK) == 0) {
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002263 unsigned char bytes[2];
2264
Chris Wilsonea5b2132010-08-04 13:50:23 +01002265 intel_sdvo->controlled_output = 0;
2266 memcpy(bytes, &intel_sdvo->caps.output_flags, 2);
Dave Airlie51c8b402009-08-20 13:38:04 +10002267 DRM_DEBUG_KMS("%s: Unknown SDVO output type (0x%02x%02x)\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +01002268 SDVO_NAME(intel_sdvo),
Dave Airlie51c8b402009-08-20 13:38:04 +10002269 bytes[0], bytes[1]);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002270 return false;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002271 }
Chris Wilsonea5b2132010-08-04 13:50:23 +01002272 intel_sdvo->base.crtc_mask = (1 << 0) | (1 << 1);
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002273
Zhenyu Wang14571b42010-03-30 14:06:33 +08002274 return true;
ling.ma@intel.comfb7a46f2009-07-23 17:11:34 +08002275}
2276
Chris Wilson32aad862010-08-04 13:50:25 +01002277static bool intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
2278 struct intel_sdvo_connector *intel_sdvo_connector,
2279 int type)
Zhao Yakuice6feab2009-08-24 13:50:26 +08002280{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002281 struct drm_device *dev = intel_sdvo->base.base.dev;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002282 struct intel_sdvo_tv_format format;
2283 uint32_t format_map, i;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002284
Chris Wilson32aad862010-08-04 13:50:25 +01002285 if (!intel_sdvo_set_target_output(intel_sdvo, type))
2286 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002287
Chris Wilson32aad862010-08-04 13:50:25 +01002288 if (!intel_sdvo_get_value(intel_sdvo,
2289 SDVO_CMD_GET_SUPPORTED_TV_FORMATS,
2290 &format, sizeof(format)))
2291 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002292
Chris Wilson32aad862010-08-04 13:50:25 +01002293 memcpy(&format_map, &format, min(sizeof(format_map), sizeof(format)));
Zhao Yakuice6feab2009-08-24 13:50:26 +08002294
2295 if (format_map == 0)
Chris Wilson32aad862010-08-04 13:50:25 +01002296 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002297
Chris Wilson615fb932010-08-04 13:50:24 +01002298 intel_sdvo_connector->format_supported_num = 0;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002299 for (i = 0 ; i < TV_FORMAT_NUM; i++)
Chris Wilson40039752010-08-04 13:50:26 +01002300 if (format_map & (1 << i))
2301 intel_sdvo_connector->tv_format_supported[intel_sdvo_connector->format_supported_num++] = i;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002302
2303
Chris Wilsonc5521702010-08-04 13:50:28 +01002304 intel_sdvo_connector->tv_format =
Chris Wilson32aad862010-08-04 13:50:25 +01002305 drm_property_create(dev, DRM_MODE_PROP_ENUM,
2306 "mode", intel_sdvo_connector->format_supported_num);
Chris Wilsonc5521702010-08-04 13:50:28 +01002307 if (!intel_sdvo_connector->tv_format)
Chris Wilsonfcc8d672010-08-04 13:50:27 +01002308 return false;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002309
Chris Wilson615fb932010-08-04 13:50:24 +01002310 for (i = 0; i < intel_sdvo_connector->format_supported_num; i++)
Zhao Yakuice6feab2009-08-24 13:50:26 +08002311 drm_property_add_enum(
Chris Wilsonc5521702010-08-04 13:50:28 +01002312 intel_sdvo_connector->tv_format, i,
Chris Wilson40039752010-08-04 13:50:26 +01002313 i, tv_format_names[intel_sdvo_connector->tv_format_supported[i]]);
Zhao Yakuice6feab2009-08-24 13:50:26 +08002314
Chris Wilson40039752010-08-04 13:50:26 +01002315 intel_sdvo->tv_format_index = intel_sdvo_connector->tv_format_supported[0];
Chris Wilson32aad862010-08-04 13:50:25 +01002316 drm_connector_attach_property(&intel_sdvo_connector->base.base,
Chris Wilsonc5521702010-08-04 13:50:28 +01002317 intel_sdvo_connector->tv_format, 0);
Chris Wilson32aad862010-08-04 13:50:25 +01002318 return true;
Zhao Yakuice6feab2009-08-24 13:50:26 +08002319
2320}
2321
Chris Wilsonc5521702010-08-04 13:50:28 +01002322#define ENHANCEMENT(name, NAME) do { \
2323 if (enhancements.name) { \
2324 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_MAX_##NAME, &data_value, 4) || \
2325 !intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_##NAME, &response, 2)) \
2326 return false; \
2327 intel_sdvo_connector->max_##name = data_value[0]; \
2328 intel_sdvo_connector->cur_##name = response; \
2329 intel_sdvo_connector->name = \
2330 drm_property_create(dev, DRM_MODE_PROP_RANGE, #name, 2); \
2331 if (!intel_sdvo_connector->name) return false; \
2332 intel_sdvo_connector->name->values[0] = 0; \
2333 intel_sdvo_connector->name->values[1] = data_value[0]; \
2334 drm_connector_attach_property(connector, \
2335 intel_sdvo_connector->name, \
2336 intel_sdvo_connector->cur_##name); \
2337 DRM_DEBUG_KMS(#name ": max %d, default %d, current %d\n", \
2338 data_value[0], data_value[1], response); \
2339 } \
2340} while(0)
2341
2342static bool
2343intel_sdvo_create_enhance_property_tv(struct intel_sdvo *intel_sdvo,
2344 struct intel_sdvo_connector *intel_sdvo_connector,
2345 struct intel_sdvo_enhancements_reply enhancements)
Zhao Yakuib9219c52009-09-10 15:45:46 +08002346{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002347 struct drm_device *dev = intel_sdvo->base.base.dev;
Chris Wilson32aad862010-08-04 13:50:25 +01002348 struct drm_connector *connector = &intel_sdvo_connector->base.base;
Zhao Yakuib9219c52009-09-10 15:45:46 +08002349 uint16_t response, data_value[2];
2350
Chris Wilsonc5521702010-08-04 13:50:28 +01002351 /* when horizontal overscan is supported, Add the left/right property */
2352 if (enhancements.overscan_h) {
2353 if (!intel_sdvo_get_value(intel_sdvo,
2354 SDVO_CMD_GET_MAX_OVERSCAN_H,
2355 &data_value, 4))
2356 return false;
2357
2358 if (!intel_sdvo_get_value(intel_sdvo,
2359 SDVO_CMD_GET_OVERSCAN_H,
2360 &response, 2))
2361 return false;
2362
2363 intel_sdvo_connector->max_hscan = data_value[0];
2364 intel_sdvo_connector->left_margin = data_value[0] - response;
2365 intel_sdvo_connector->right_margin = intel_sdvo_connector->left_margin;
2366 intel_sdvo_connector->left =
2367 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2368 "left_margin", 2);
2369 if (!intel_sdvo_connector->left)
2370 return false;
2371
2372 intel_sdvo_connector->left->values[0] = 0;
2373 intel_sdvo_connector->left->values[1] = data_value[0];
2374 drm_connector_attach_property(connector,
2375 intel_sdvo_connector->left,
2376 intel_sdvo_connector->left_margin);
2377
2378 intel_sdvo_connector->right =
2379 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2380 "right_margin", 2);
2381 if (!intel_sdvo_connector->right)
2382 return false;
2383
2384 intel_sdvo_connector->right->values[0] = 0;
2385 intel_sdvo_connector->right->values[1] = data_value[0];
2386 drm_connector_attach_property(connector,
2387 intel_sdvo_connector->right,
2388 intel_sdvo_connector->right_margin);
2389 DRM_DEBUG_KMS("h_overscan: max %d, "
2390 "default %d, current %d\n",
2391 data_value[0], data_value[1], response);
2392 }
2393
2394 if (enhancements.overscan_v) {
2395 if (!intel_sdvo_get_value(intel_sdvo,
2396 SDVO_CMD_GET_MAX_OVERSCAN_V,
2397 &data_value, 4))
2398 return false;
2399
2400 if (!intel_sdvo_get_value(intel_sdvo,
2401 SDVO_CMD_GET_OVERSCAN_V,
2402 &response, 2))
2403 return false;
2404
2405 intel_sdvo_connector->max_vscan = data_value[0];
2406 intel_sdvo_connector->top_margin = data_value[0] - response;
2407 intel_sdvo_connector->bottom_margin = intel_sdvo_connector->top_margin;
2408 intel_sdvo_connector->top =
2409 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2410 "top_margin", 2);
2411 if (!intel_sdvo_connector->top)
2412 return false;
2413
2414 intel_sdvo_connector->top->values[0] = 0;
2415 intel_sdvo_connector->top->values[1] = data_value[0];
2416 drm_connector_attach_property(connector,
2417 intel_sdvo_connector->top,
2418 intel_sdvo_connector->top_margin);
2419
2420 intel_sdvo_connector->bottom =
2421 drm_property_create(dev, DRM_MODE_PROP_RANGE,
2422 "bottom_margin", 2);
2423 if (!intel_sdvo_connector->bottom)
2424 return false;
2425
2426 intel_sdvo_connector->bottom->values[0] = 0;
2427 intel_sdvo_connector->bottom->values[1] = data_value[0];
2428 drm_connector_attach_property(connector,
2429 intel_sdvo_connector->bottom,
2430 intel_sdvo_connector->bottom_margin);
2431 DRM_DEBUG_KMS("v_overscan: max %d, "
2432 "default %d, current %d\n",
2433 data_value[0], data_value[1], response);
2434 }
2435
2436 ENHANCEMENT(hpos, HPOS);
2437 ENHANCEMENT(vpos, VPOS);
2438 ENHANCEMENT(saturation, SATURATION);
2439 ENHANCEMENT(contrast, CONTRAST);
2440 ENHANCEMENT(hue, HUE);
2441 ENHANCEMENT(sharpness, SHARPNESS);
2442 ENHANCEMENT(brightness, BRIGHTNESS);
2443 ENHANCEMENT(flicker_filter, FLICKER_FILTER);
2444 ENHANCEMENT(flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE);
2445 ENHANCEMENT(flicker_filter_2d, FLICKER_FILTER_2D);
2446 ENHANCEMENT(tv_chroma_filter, TV_CHROMA_FILTER);
2447 ENHANCEMENT(tv_luma_filter, TV_LUMA_FILTER);
2448
Chris Wilsone0442182010-08-04 13:50:29 +01002449 if (enhancements.dot_crawl) {
2450 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_DOT_CRAWL, &response, 2))
2451 return false;
2452
2453 intel_sdvo_connector->max_dot_crawl = 1;
2454 intel_sdvo_connector->cur_dot_crawl = response & 0x1;
2455 intel_sdvo_connector->dot_crawl =
2456 drm_property_create(dev, DRM_MODE_PROP_RANGE, "dot_crawl", 2);
2457 if (!intel_sdvo_connector->dot_crawl)
2458 return false;
2459
2460 intel_sdvo_connector->dot_crawl->values[0] = 0;
2461 intel_sdvo_connector->dot_crawl->values[1] = 1;
2462 drm_connector_attach_property(connector,
2463 intel_sdvo_connector->dot_crawl,
2464 intel_sdvo_connector->cur_dot_crawl);
2465 DRM_DEBUG_KMS("dot crawl: current %d\n", response);
2466 }
2467
Chris Wilsonc5521702010-08-04 13:50:28 +01002468 return true;
2469}
2470
2471static bool
2472intel_sdvo_create_enhance_property_lvds(struct intel_sdvo *intel_sdvo,
2473 struct intel_sdvo_connector *intel_sdvo_connector,
2474 struct intel_sdvo_enhancements_reply enhancements)
2475{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002476 struct drm_device *dev = intel_sdvo->base.base.dev;
Chris Wilsonc5521702010-08-04 13:50:28 +01002477 struct drm_connector *connector = &intel_sdvo_connector->base.base;
2478 uint16_t response, data_value[2];
2479
2480 ENHANCEMENT(brightness, BRIGHTNESS);
2481
2482 return true;
2483}
2484#undef ENHANCEMENT
2485
2486static bool intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
2487 struct intel_sdvo_connector *intel_sdvo_connector)
2488{
2489 union {
2490 struct intel_sdvo_enhancements_reply reply;
2491 uint16_t response;
2492 } enhancements;
2493
Chris Wilson32aad862010-08-04 13:50:25 +01002494 if (!intel_sdvo_get_value(intel_sdvo,
2495 SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS,
Chris Wilsonc5521702010-08-04 13:50:28 +01002496 &enhancements, sizeof(enhancements)))
Chris Wilson32aad862010-08-04 13:50:25 +01002497 return false;
2498
Chris Wilsonc5521702010-08-04 13:50:28 +01002499 if (enhancements.response == 0) {
Zhao Yakuib9219c52009-09-10 15:45:46 +08002500 DRM_DEBUG_KMS("No enhancement is supported\n");
Chris Wilson32aad862010-08-04 13:50:25 +01002501 return true;
Zhao Yakuib9219c52009-09-10 15:45:46 +08002502 }
Chris Wilson32aad862010-08-04 13:50:25 +01002503
Chris Wilsonc5521702010-08-04 13:50:28 +01002504 if (IS_TV(intel_sdvo_connector))
2505 return intel_sdvo_create_enhance_property_tv(intel_sdvo, intel_sdvo_connector, enhancements.reply);
2506 else if(IS_LVDS(intel_sdvo_connector))
2507 return intel_sdvo_create_enhance_property_lvds(intel_sdvo, intel_sdvo_connector, enhancements.reply);
2508 else
2509 return true;
Chris Wilson32aad862010-08-04 13:50:25 +01002510
Zhao Yakuib9219c52009-09-10 15:45:46 +08002511}
2512
Eric Anholtc751ce42010-03-25 11:48:48 -07002513bool intel_sdvo_init(struct drm_device *dev, int sdvo_reg)
Jesse Barnes79e53942008-11-07 14:24:08 -08002514{
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002515 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -07002516 struct intel_encoder *intel_encoder;
Chris Wilsonea5b2132010-08-04 13:50:23 +01002517 struct intel_sdvo *intel_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -08002518 u8 ch[0x40];
2519 int i;
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002520 u32 i2c_reg, ddc_reg, analog_ddc_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -08002521
Chris Wilsonea5b2132010-08-04 13:50:23 +01002522 intel_sdvo = kzalloc(sizeof(struct intel_sdvo), GFP_KERNEL);
2523 if (!intel_sdvo)
Eric Anholt7d573822009-01-02 13:33:00 -08002524 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08002525
Chris Wilsonea5b2132010-08-04 13:50:23 +01002526 intel_sdvo->sdvo_reg = sdvo_reg;
Keith Packard308cd3a2009-06-14 11:56:18 -07002527
Chris Wilsonea5b2132010-08-04 13:50:23 +01002528 intel_encoder = &intel_sdvo->base;
Eric Anholt21d40d32010-03-25 11:11:14 -07002529 intel_encoder->type = INTEL_OUTPUT_SDVO;
Jesse Barnes79e53942008-11-07 14:24:08 -08002530
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002531 if (HAS_PCH_SPLIT(dev)) {
2532 i2c_reg = PCH_GPIOE;
2533 ddc_reg = PCH_GPIOE;
2534 analog_ddc_reg = PCH_GPIOA;
2535 } else {
2536 i2c_reg = GPIOE;
2537 ddc_reg = GPIOE;
2538 analog_ddc_reg = GPIOA;
2539 }
2540
Jesse Barnes79e53942008-11-07 14:24:08 -08002541 /* setup the DDC bus. */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002542 if (IS_SDVOB(sdvo_reg))
Chris Wilson890f3352010-09-14 16:46:59 +01002543 intel_encoder->i2c_bus =
2544 intel_i2c_create(intel_encoder,
2545 i2c_reg, "SDVOCTRL_E for SDVOB");
Keith Packard308cd3a2009-06-14 11:56:18 -07002546 else
Chris Wilson890f3352010-09-14 16:46:59 +01002547 intel_encoder->i2c_bus =
2548 intel_i2c_create(intel_encoder,
2549 i2c_reg, "SDVOCTRL_E for SDVOC");
Keith Packard308cd3a2009-06-14 11:56:18 -07002550
Eric Anholt21d40d32010-03-25 11:11:14 -07002551 if (!intel_encoder->i2c_bus)
Jonas Bonnad5b2a62009-05-15 09:10:41 +02002552 goto err_inteloutput;
Jesse Barnes79e53942008-11-07 14:24:08 -08002553
Chris Wilsonea5b2132010-08-04 13:50:23 +01002554 intel_sdvo->slave_addr = intel_sdvo_get_slave_addr(dev, sdvo_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08002555
Keith Packard308cd3a2009-06-14 11:56:18 -07002556 /* Save the bit-banging i2c functionality for use by the DDC wrapper */
Eric Anholt21d40d32010-03-25 11:11:14 -07002557 intel_sdvo_i2c_bit_algo.functionality = intel_encoder->i2c_bus->algo->functionality;
Jesse Barnes79e53942008-11-07 14:24:08 -08002558
Jesse Barnes79e53942008-11-07 14:24:08 -08002559 /* Read the regs to test if we can talk to the device */
2560 for (i = 0; i < 0x40; i++) {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002561 if (!intel_sdvo_read_byte(intel_sdvo, i, &ch[i])) {
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002562 DRM_DEBUG_KMS("No SDVO device found on SDVO%c\n",
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002563 IS_SDVOB(sdvo_reg) ? 'B' : 'C');
Jesse Barnes79e53942008-11-07 14:24:08 -08002564 goto err_i2c;
2565 }
2566 }
2567
Ma Ling619ac3b2009-05-18 16:12:46 +08002568 /* setup the DDC bus. */
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002569 if (IS_SDVOB(sdvo_reg)) {
Chris Wilson890f3352010-09-14 16:46:59 +01002570 intel_encoder->ddc_bus =
2571 intel_i2c_create(intel_encoder,
2572 ddc_reg, "SDVOB DDC BUS");
2573 intel_sdvo->analog_ddc_bus =
2574 intel_i2c_create(intel_encoder,
2575 analog_ddc_reg, "SDVOB/VGA DDC BUS");
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002576 dev_priv->hotplug_supported_mask |= SDVOB_HOTPLUG_INT_STATUS;
Keith Packard57cdaf92009-09-04 13:07:54 +08002577 } else {
Chris Wilson890f3352010-09-14 16:46:59 +01002578 intel_encoder->ddc_bus =
2579 intel_i2c_create(intel_encoder,
2580 ddc_reg, "SDVOC DDC BUS");
2581 intel_sdvo->analog_ddc_bus =
2582 intel_i2c_create(intel_encoder,
2583 analog_ddc_reg, "SDVOC/VGA DDC BUS");
Jesse Barnesb01f2c32009-12-11 11:07:17 -08002584 dev_priv->hotplug_supported_mask |= SDVOC_HOTPLUG_INT_STATUS;
Keith Packard57cdaf92009-09-04 13:07:54 +08002585 }
Chris Wilson32aad862010-08-04 13:50:25 +01002586 if (intel_encoder->ddc_bus == NULL || intel_sdvo->analog_ddc_bus == NULL)
Ma Ling619ac3b2009-05-18 16:12:46 +08002587 goto err_i2c;
2588
Keith Packard308cd3a2009-06-14 11:56:18 -07002589 /* Wrap with our custom algo which switches to DDC mode */
Eric Anholt21d40d32010-03-25 11:11:14 -07002590 intel_encoder->ddc_bus->algo = &intel_sdvo_i2c_bit_algo;
Ma Ling619ac3b2009-05-18 16:12:46 +08002591
Zhenyu Wang14571b42010-03-30 14:06:33 +08002592 /* encoder type will be decided later */
Chris Wilson4ef69c72010-09-09 15:14:28 +01002593 drm_encoder_init(dev, &intel_encoder->base, &intel_sdvo_enc_funcs, 0);
2594 drm_encoder_helper_add(&intel_encoder->base, &intel_sdvo_helper_funcs);
Zhenyu Wang14571b42010-03-30 14:06:33 +08002595
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002596 /* In default case sdvo lvds is false */
Chris Wilson32aad862010-08-04 13:50:25 +01002597 if (!intel_sdvo_get_capabilities(intel_sdvo, &intel_sdvo->caps))
2598 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002599
Chris Wilsonea5b2132010-08-04 13:50:23 +01002600 if (intel_sdvo_output_setup(intel_sdvo,
2601 intel_sdvo->caps.output_flags) != true) {
Dave Airlie51c8b402009-08-20 13:38:04 +10002602 DRM_DEBUG_KMS("SDVO output failed to setup on SDVO%c\n",
Zhao Yakui461ed3c2010-03-30 15:11:33 +08002603 IS_SDVOB(sdvo_reg) ? 'B' : 'C');
Chris Wilson32aad862010-08-04 13:50:25 +01002604 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002605 }
2606
Chris Wilsonea5b2132010-08-04 13:50:23 +01002607 intel_sdvo_select_ddc_bus(dev_priv, intel_sdvo, sdvo_reg);
Jesse Barnese2f0ba92009-02-02 15:11:52 -08002608
Jesse Barnes79e53942008-11-07 14:24:08 -08002609 /* Set the input timing to the screen. Assume always input 0. */
Chris Wilson32aad862010-08-04 13:50:25 +01002610 if (!intel_sdvo_set_target_input(intel_sdvo))
2611 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002612
Chris Wilson32aad862010-08-04 13:50:25 +01002613 if (!intel_sdvo_get_input_pixel_clock_range(intel_sdvo,
2614 &intel_sdvo->pixel_clock_min,
2615 &intel_sdvo->pixel_clock_max))
2616 goto err_enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08002617
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08002618 DRM_DEBUG_KMS("%s device VID/DID: %02X:%02X.%02X, "
yakui_zhao342dc382009-06-02 14:12:00 +08002619 "clock range %dMHz - %dMHz, "
2620 "input 1: %c, input 2: %c, "
2621 "output 1: %c, output 2: %c\n",
Chris Wilsonea5b2132010-08-04 13:50:23 +01002622 SDVO_NAME(intel_sdvo),
2623 intel_sdvo->caps.vendor_id, intel_sdvo->caps.device_id,
2624 intel_sdvo->caps.device_rev_id,
2625 intel_sdvo->pixel_clock_min / 1000,
2626 intel_sdvo->pixel_clock_max / 1000,
2627 (intel_sdvo->caps.sdvo_inputs_mask & 0x1) ? 'Y' : 'N',
2628 (intel_sdvo->caps.sdvo_inputs_mask & 0x2) ? 'Y' : 'N',
yakui_zhao342dc382009-06-02 14:12:00 +08002629 /* check currently supported outputs */
Chris Wilsonea5b2132010-08-04 13:50:23 +01002630 intel_sdvo->caps.output_flags &
Jesse Barnes79e53942008-11-07 14:24:08 -08002631 (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_RGB0) ? 'Y' : 'N',
Chris Wilsonea5b2132010-08-04 13:50:23 +01002632 intel_sdvo->caps.output_flags &
Jesse Barnes79e53942008-11-07 14:24:08 -08002633 (SDVO_OUTPUT_TMDS1 | SDVO_OUTPUT_RGB1) ? 'Y' : 'N');
Eric Anholt7d573822009-01-02 13:33:00 -08002634 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08002635
Chris Wilson32aad862010-08-04 13:50:25 +01002636err_enc:
Chris Wilson4ef69c72010-09-09 15:14:28 +01002637 drm_encoder_cleanup(&intel_encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08002638err_i2c:
Chris Wilsonea5b2132010-08-04 13:50:23 +01002639 if (intel_sdvo->analog_ddc_bus != NULL)
2640 intel_i2c_destroy(intel_sdvo->analog_ddc_bus);
Eric Anholt21d40d32010-03-25 11:11:14 -07002641 if (intel_encoder->ddc_bus != NULL)
2642 intel_i2c_destroy(intel_encoder->ddc_bus);
2643 if (intel_encoder->i2c_bus != NULL)
2644 intel_i2c_destroy(intel_encoder->i2c_bus);
Jonas Bonnad5b2a62009-05-15 09:10:41 +02002645err_inteloutput:
Chris Wilsonea5b2132010-08-04 13:50:23 +01002646 kfree(intel_sdvo);
Jesse Barnes79e53942008-11-07 14:24:08 -08002647
Eric Anholt7d573822009-01-02 13:33:00 -08002648 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08002649}