3 * Copyright © 2006-2007 Intel Corporation
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:
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
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.
29 #include <linux/delay.h>
30 #include <linux/export.h>
31 #include <linux/i2c.h>
32 #include <linux/slab.h>
34 #include <drm/display/drm_hdmi_helper.h>
35 #include <drm/drm_atomic_helper.h>
36 #include <drm/drm_crtc.h>
37 #include <drm/drm_edid.h>
38 #include <drm/drm_eld.h>
42 #include "intel_atomic.h"
43 #include "intel_audio.h"
44 #include "intel_connector.h"
45 #include "intel_crtc.h"
47 #include "intel_display_types.h"
48 #include "intel_fdi.h"
49 #include "intel_fifo_underrun.h"
50 #include "intel_gmbus.h"
51 #include "intel_hdmi.h"
52 #include "intel_hotplug.h"
53 #include "intel_panel.h"
54 #include "intel_sdvo.h"
55 #include "intel_sdvo_regs.h"
57 #define SDVO_TMDS_MASK (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_TMDS1)
58 #define SDVO_RGB_MASK (SDVO_OUTPUT_RGB0 | SDVO_OUTPUT_RGB1)
59 #define SDVO_LVDS_MASK (SDVO_OUTPUT_LVDS0 | SDVO_OUTPUT_LVDS1)
60 #define SDVO_TV_MASK (SDVO_OUTPUT_CVBS0 | SDVO_OUTPUT_SVID0 | SDVO_OUTPUT_YPRPB0)
62 #define SDVO_OUTPUT_MASK (SDVO_TMDS_MASK | SDVO_RGB_MASK | SDVO_LVDS_MASK | SDVO_TV_MASK)
64 #define IS_TV(c) ((c)->output_flag & SDVO_TV_MASK)
65 #define IS_TMDS(c) ((c)->output_flag & SDVO_TMDS_MASK)
66 #define IS_LVDS(c) ((c)->output_flag & SDVO_LVDS_MASK)
67 #define IS_TV_OR_LVDS(c) ((c)->output_flag & (SDVO_TV_MASK | SDVO_LVDS_MASK))
68 #define IS_DIGITAL(c) ((c)->output_flag & (SDVO_TMDS_MASK | SDVO_LVDS_MASK))
70 #define HAS_DDC(c) ((c)->output_flag & (SDVO_RGB_MASK | SDVO_TMDS_MASK | \
73 static const char * const tv_format_names[] = {
74 "NTSC_M" , "NTSC_J" , "NTSC_443",
75 "PAL_B" , "PAL_D" , "PAL_G" ,
76 "PAL_H" , "PAL_I" , "PAL_M" ,
77 "PAL_N" , "PAL_NC" , "PAL_60" ,
78 "SECAM_B" , "SECAM_D" , "SECAM_G" ,
79 "SECAM_K" , "SECAM_K1", "SECAM_L" ,
83 #define TV_FORMAT_NUM ARRAY_SIZE(tv_format_names)
87 struct intel_sdvo_ddc {
88 struct i2c_adapter ddc;
89 struct intel_sdvo *sdvo;
94 struct intel_encoder base;
96 struct i2c_adapter *i2c;
99 struct intel_sdvo_ddc ddc[3];
101 /* Register for the SDVO device: SDVOB or SDVOC */
105 * Capabilities of the SDVO device returned by
106 * intel_sdvo_get_capabilities()
108 struct intel_sdvo_caps caps;
112 /* Pixel clock limitations reported by the SDVO device, in kHz */
113 int pixel_clock_min, pixel_clock_max;
116 * Hotplug activation bits for this device
121 * the sdvo flag gets lost in round trip: dtd->adjusted_mode->dtd
126 struct intel_sdvo_connector {
127 struct intel_connector base;
129 /* Mark the type of connector */
132 /* This contains all current supported TV format */
133 u8 tv_format_supported[TV_FORMAT_NUM];
134 int format_supported_num;
135 struct drm_property *tv_format;
137 /* add the property for the SDVO-TV */
138 struct drm_property *left;
139 struct drm_property *right;
140 struct drm_property *top;
141 struct drm_property *bottom;
142 struct drm_property *hpos;
143 struct drm_property *vpos;
144 struct drm_property *contrast;
145 struct drm_property *saturation;
146 struct drm_property *hue;
147 struct drm_property *sharpness;
148 struct drm_property *flicker_filter;
149 struct drm_property *flicker_filter_adaptive;
150 struct drm_property *flicker_filter_2d;
151 struct drm_property *tv_chroma_filter;
152 struct drm_property *tv_luma_filter;
153 struct drm_property *dot_crawl;
155 /* add the property for the SDVO-TV/LVDS */
156 struct drm_property *brightness;
158 /* this is to get the range of margin.*/
159 u32 max_hscan, max_vscan;
162 * This is set if we treat the device as HDMI, instead of DVI.
167 struct intel_sdvo_connector_state {
168 /* base.base: tv.saturation/contrast/hue/brightness */
169 struct intel_digital_connector_state base;
172 unsigned overscan_h, overscan_v, hpos, vpos, sharpness;
173 unsigned flicker_filter, flicker_filter_2d, flicker_filter_adaptive;
174 unsigned chroma_filter, luma_filter, dot_crawl;
178 static struct intel_sdvo *to_sdvo(struct intel_encoder *encoder)
180 return container_of(encoder, struct intel_sdvo, base);
183 static struct intel_sdvo *intel_attached_sdvo(struct intel_connector *connector)
185 return to_sdvo(intel_attached_encoder(connector));
188 static struct intel_sdvo_connector *
189 to_intel_sdvo_connector(struct drm_connector *connector)
191 return container_of(connector, struct intel_sdvo_connector, base.base);
194 #define to_intel_sdvo_connector_state(conn_state) \
195 container_of((conn_state), struct intel_sdvo_connector_state, base.base)
198 intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo);
200 intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
201 struct intel_sdvo_connector *intel_sdvo_connector,
204 intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
205 struct intel_sdvo_connector *intel_sdvo_connector);
208 * Writes the SDVOB or SDVOC with the given value, but always writes both
209 * SDVOB and SDVOC to work around apparent hardware issues (according to
210 * comments in the BIOS).
212 static void intel_sdvo_write_sdvox(struct intel_sdvo *intel_sdvo, u32 val)
214 struct drm_device *dev = intel_sdvo->base.base.dev;
215 struct drm_i915_private *dev_priv = to_i915(dev);
216 u32 bval = val, cval = val;
219 if (HAS_PCH_SPLIT(dev_priv)) {
220 intel_de_write(dev_priv, intel_sdvo->sdvo_reg, val);
221 intel_de_posting_read(dev_priv, intel_sdvo->sdvo_reg);
223 * HW workaround, need to write this twice for issue
224 * that may result in first write getting masked.
226 if (HAS_PCH_IBX(dev_priv)) {
227 intel_de_write(dev_priv, intel_sdvo->sdvo_reg, val);
228 intel_de_posting_read(dev_priv, intel_sdvo->sdvo_reg);
233 if (intel_sdvo->base.port == PORT_B)
234 cval = intel_de_read(dev_priv, GEN3_SDVOC);
236 bval = intel_de_read(dev_priv, GEN3_SDVOB);
239 * Write the registers twice for luck. Sometimes,
240 * writing them only once doesn't appear to 'stick'.
241 * The BIOS does this too. Yay, magic
243 for (i = 0; i < 2; i++) {
244 intel_de_write(dev_priv, GEN3_SDVOB, bval);
245 intel_de_posting_read(dev_priv, GEN3_SDVOB);
247 intel_de_write(dev_priv, GEN3_SDVOC, cval);
248 intel_de_posting_read(dev_priv, GEN3_SDVOC);
252 static bool intel_sdvo_read_byte(struct intel_sdvo *intel_sdvo, u8 addr, u8 *ch)
254 struct i2c_msg msgs[] = {
256 .addr = intel_sdvo->slave_addr,
262 .addr = intel_sdvo->slave_addr,
270 if ((ret = i2c_transfer(intel_sdvo->i2c, msgs, 2)) == 2)
273 DRM_DEBUG_KMS("i2c transfer returned %d\n", ret);
277 #define SDVO_CMD_NAME_ENTRY(cmd_) { .cmd = SDVO_CMD_ ## cmd_, .name = #cmd_ }
279 /** Mapping of command numbers to names, for debug output */
280 static const struct {
283 } __packed sdvo_cmd_names[] = {
284 SDVO_CMD_NAME_ENTRY(RESET),
285 SDVO_CMD_NAME_ENTRY(GET_DEVICE_CAPS),
286 SDVO_CMD_NAME_ENTRY(GET_FIRMWARE_REV),
287 SDVO_CMD_NAME_ENTRY(GET_TRAINED_INPUTS),
288 SDVO_CMD_NAME_ENTRY(GET_ACTIVE_OUTPUTS),
289 SDVO_CMD_NAME_ENTRY(SET_ACTIVE_OUTPUTS),
290 SDVO_CMD_NAME_ENTRY(GET_IN_OUT_MAP),
291 SDVO_CMD_NAME_ENTRY(SET_IN_OUT_MAP),
292 SDVO_CMD_NAME_ENTRY(GET_ATTACHED_DISPLAYS),
293 SDVO_CMD_NAME_ENTRY(GET_HOT_PLUG_SUPPORT),
294 SDVO_CMD_NAME_ENTRY(SET_ACTIVE_HOT_PLUG),
295 SDVO_CMD_NAME_ENTRY(GET_ACTIVE_HOT_PLUG),
296 SDVO_CMD_NAME_ENTRY(GET_INTERRUPT_EVENT_SOURCE),
297 SDVO_CMD_NAME_ENTRY(SET_TARGET_INPUT),
298 SDVO_CMD_NAME_ENTRY(SET_TARGET_OUTPUT),
299 SDVO_CMD_NAME_ENTRY(GET_INPUT_TIMINGS_PART1),
300 SDVO_CMD_NAME_ENTRY(GET_INPUT_TIMINGS_PART2),
301 SDVO_CMD_NAME_ENTRY(SET_INPUT_TIMINGS_PART1),
302 SDVO_CMD_NAME_ENTRY(SET_INPUT_TIMINGS_PART2),
303 SDVO_CMD_NAME_ENTRY(SET_OUTPUT_TIMINGS_PART1),
304 SDVO_CMD_NAME_ENTRY(SET_OUTPUT_TIMINGS_PART2),
305 SDVO_CMD_NAME_ENTRY(GET_OUTPUT_TIMINGS_PART1),
306 SDVO_CMD_NAME_ENTRY(GET_OUTPUT_TIMINGS_PART2),
307 SDVO_CMD_NAME_ENTRY(CREATE_PREFERRED_INPUT_TIMING),
308 SDVO_CMD_NAME_ENTRY(GET_PREFERRED_INPUT_TIMING_PART1),
309 SDVO_CMD_NAME_ENTRY(GET_PREFERRED_INPUT_TIMING_PART2),
310 SDVO_CMD_NAME_ENTRY(GET_INPUT_PIXEL_CLOCK_RANGE),
311 SDVO_CMD_NAME_ENTRY(GET_OUTPUT_PIXEL_CLOCK_RANGE),
312 SDVO_CMD_NAME_ENTRY(GET_SUPPORTED_CLOCK_RATE_MULTS),
313 SDVO_CMD_NAME_ENTRY(GET_CLOCK_RATE_MULT),
314 SDVO_CMD_NAME_ENTRY(SET_CLOCK_RATE_MULT),
315 SDVO_CMD_NAME_ENTRY(GET_SUPPORTED_TV_FORMATS),
316 SDVO_CMD_NAME_ENTRY(GET_TV_FORMAT),
317 SDVO_CMD_NAME_ENTRY(SET_TV_FORMAT),
318 SDVO_CMD_NAME_ENTRY(GET_SUPPORTED_POWER_STATES),
319 SDVO_CMD_NAME_ENTRY(GET_POWER_STATE),
320 SDVO_CMD_NAME_ENTRY(SET_ENCODER_POWER_STATE),
321 SDVO_CMD_NAME_ENTRY(SET_DISPLAY_POWER_STATE),
322 SDVO_CMD_NAME_ENTRY(SET_CONTROL_BUS_SWITCH),
323 SDVO_CMD_NAME_ENTRY(GET_SDTV_RESOLUTION_SUPPORT),
324 SDVO_CMD_NAME_ENTRY(GET_SCALED_HDTV_RESOLUTION_SUPPORT),
325 SDVO_CMD_NAME_ENTRY(GET_SUPPORTED_ENHANCEMENTS),
327 /* Add the op code for SDVO enhancements */
328 SDVO_CMD_NAME_ENTRY(GET_MAX_HPOS),
329 SDVO_CMD_NAME_ENTRY(GET_HPOS),
330 SDVO_CMD_NAME_ENTRY(SET_HPOS),
331 SDVO_CMD_NAME_ENTRY(GET_MAX_VPOS),
332 SDVO_CMD_NAME_ENTRY(GET_VPOS),
333 SDVO_CMD_NAME_ENTRY(SET_VPOS),
334 SDVO_CMD_NAME_ENTRY(GET_MAX_SATURATION),
335 SDVO_CMD_NAME_ENTRY(GET_SATURATION),
336 SDVO_CMD_NAME_ENTRY(SET_SATURATION),
337 SDVO_CMD_NAME_ENTRY(GET_MAX_HUE),
338 SDVO_CMD_NAME_ENTRY(GET_HUE),
339 SDVO_CMD_NAME_ENTRY(SET_HUE),
340 SDVO_CMD_NAME_ENTRY(GET_MAX_CONTRAST),
341 SDVO_CMD_NAME_ENTRY(GET_CONTRAST),
342 SDVO_CMD_NAME_ENTRY(SET_CONTRAST),
343 SDVO_CMD_NAME_ENTRY(GET_MAX_BRIGHTNESS),
344 SDVO_CMD_NAME_ENTRY(GET_BRIGHTNESS),
345 SDVO_CMD_NAME_ENTRY(SET_BRIGHTNESS),
346 SDVO_CMD_NAME_ENTRY(GET_MAX_OVERSCAN_H),
347 SDVO_CMD_NAME_ENTRY(GET_OVERSCAN_H),
348 SDVO_CMD_NAME_ENTRY(SET_OVERSCAN_H),
349 SDVO_CMD_NAME_ENTRY(GET_MAX_OVERSCAN_V),
350 SDVO_CMD_NAME_ENTRY(GET_OVERSCAN_V),
351 SDVO_CMD_NAME_ENTRY(SET_OVERSCAN_V),
352 SDVO_CMD_NAME_ENTRY(GET_MAX_FLICKER_FILTER),
353 SDVO_CMD_NAME_ENTRY(GET_FLICKER_FILTER),
354 SDVO_CMD_NAME_ENTRY(SET_FLICKER_FILTER),
355 SDVO_CMD_NAME_ENTRY(GET_MAX_FLICKER_FILTER_ADAPTIVE),
356 SDVO_CMD_NAME_ENTRY(GET_FLICKER_FILTER_ADAPTIVE),
357 SDVO_CMD_NAME_ENTRY(SET_FLICKER_FILTER_ADAPTIVE),
358 SDVO_CMD_NAME_ENTRY(GET_MAX_FLICKER_FILTER_2D),
359 SDVO_CMD_NAME_ENTRY(GET_FLICKER_FILTER_2D),
360 SDVO_CMD_NAME_ENTRY(SET_FLICKER_FILTER_2D),
361 SDVO_CMD_NAME_ENTRY(GET_MAX_SHARPNESS),
362 SDVO_CMD_NAME_ENTRY(GET_SHARPNESS),
363 SDVO_CMD_NAME_ENTRY(SET_SHARPNESS),
364 SDVO_CMD_NAME_ENTRY(GET_DOT_CRAWL),
365 SDVO_CMD_NAME_ENTRY(SET_DOT_CRAWL),
366 SDVO_CMD_NAME_ENTRY(GET_MAX_TV_CHROMA_FILTER),
367 SDVO_CMD_NAME_ENTRY(GET_TV_CHROMA_FILTER),
368 SDVO_CMD_NAME_ENTRY(SET_TV_CHROMA_FILTER),
369 SDVO_CMD_NAME_ENTRY(GET_MAX_TV_LUMA_FILTER),
370 SDVO_CMD_NAME_ENTRY(GET_TV_LUMA_FILTER),
371 SDVO_CMD_NAME_ENTRY(SET_TV_LUMA_FILTER),
374 SDVO_CMD_NAME_ENTRY(GET_SUPP_ENCODE),
375 SDVO_CMD_NAME_ENTRY(GET_ENCODE),
376 SDVO_CMD_NAME_ENTRY(SET_ENCODE),
377 SDVO_CMD_NAME_ENTRY(SET_PIXEL_REPLI),
378 SDVO_CMD_NAME_ENTRY(GET_PIXEL_REPLI),
379 SDVO_CMD_NAME_ENTRY(GET_COLORIMETRY_CAP),
380 SDVO_CMD_NAME_ENTRY(SET_COLORIMETRY),
381 SDVO_CMD_NAME_ENTRY(GET_COLORIMETRY),
382 SDVO_CMD_NAME_ENTRY(GET_AUDIO_ENCRYPT_PREFER),
383 SDVO_CMD_NAME_ENTRY(SET_AUDIO_STAT),
384 SDVO_CMD_NAME_ENTRY(GET_AUDIO_STAT),
385 SDVO_CMD_NAME_ENTRY(GET_HBUF_INDEX),
386 SDVO_CMD_NAME_ENTRY(SET_HBUF_INDEX),
387 SDVO_CMD_NAME_ENTRY(GET_HBUF_INFO),
388 SDVO_CMD_NAME_ENTRY(GET_HBUF_AV_SPLIT),
389 SDVO_CMD_NAME_ENTRY(SET_HBUF_AV_SPLIT),
390 SDVO_CMD_NAME_ENTRY(GET_HBUF_TXRATE),
391 SDVO_CMD_NAME_ENTRY(SET_HBUF_TXRATE),
392 SDVO_CMD_NAME_ENTRY(SET_HBUF_DATA),
393 SDVO_CMD_NAME_ENTRY(GET_HBUF_DATA),
396 #undef SDVO_CMD_NAME_ENTRY
398 static const char *sdvo_cmd_name(u8 cmd)
402 for (i = 0; i < ARRAY_SIZE(sdvo_cmd_names); i++) {
403 if (cmd == sdvo_cmd_names[i].cmd)
404 return sdvo_cmd_names[i].name;
410 #define SDVO_NAME(svdo) ((svdo)->base.port == PORT_B ? "SDVOB" : "SDVOC")
412 static void intel_sdvo_debug_write(struct intel_sdvo *intel_sdvo, u8 cmd,
413 const void *args, int args_len)
415 struct drm_i915_private *dev_priv = to_i915(intel_sdvo->base.base.dev);
416 const char *cmd_name;
420 #define BUF_PRINT(args...) \
421 pos += snprintf(buffer + pos, max_t(int, sizeof(buffer) - pos, 0), args)
423 for (i = 0; i < args_len; i++) {
424 BUF_PRINT("%02X ", ((u8 *)args)[i]);
430 cmd_name = sdvo_cmd_name(cmd);
432 BUF_PRINT("(%s)", cmd_name);
434 BUF_PRINT("(%02X)", cmd);
436 drm_WARN_ON(&dev_priv->drm, pos >= sizeof(buffer) - 1);
439 DRM_DEBUG_KMS("%s: W: %02X %s\n", SDVO_NAME(intel_sdvo), cmd, buffer);
442 static const char * const cmd_status_names[] = {
443 [SDVO_CMD_STATUS_POWER_ON] = "Power on",
444 [SDVO_CMD_STATUS_SUCCESS] = "Success",
445 [SDVO_CMD_STATUS_NOTSUPP] = "Not supported",
446 [SDVO_CMD_STATUS_INVALID_ARG] = "Invalid arg",
447 [SDVO_CMD_STATUS_PENDING] = "Pending",
448 [SDVO_CMD_STATUS_TARGET_NOT_SPECIFIED] = "Target not specified",
449 [SDVO_CMD_STATUS_SCALING_NOT_SUPP] = "Scaling not supported",
452 static const char *sdvo_cmd_status(u8 status)
454 if (status < ARRAY_SIZE(cmd_status_names))
455 return cmd_status_names[status];
460 static bool __intel_sdvo_write_cmd(struct intel_sdvo *intel_sdvo, u8 cmd,
461 const void *args, int args_len,
465 struct i2c_msg *msgs;
468 /* Would be simpler to allocate both in one go ? */
469 buf = kzalloc(args_len * 2 + 2, GFP_KERNEL);
473 msgs = kcalloc(args_len + 3, sizeof(*msgs), GFP_KERNEL);
479 intel_sdvo_debug_write(intel_sdvo, cmd, args, args_len);
481 for (i = 0; i < args_len; i++) {
482 msgs[i].addr = intel_sdvo->slave_addr;
485 msgs[i].buf = buf + 2 *i;
486 buf[2*i + 0] = SDVO_I2C_ARG_0 - i;
487 buf[2*i + 1] = ((u8*)args)[i];
489 msgs[i].addr = intel_sdvo->slave_addr;
492 msgs[i].buf = buf + 2*i;
493 buf[2*i + 0] = SDVO_I2C_OPCODE;
496 /* the following two are to read the response */
497 status = SDVO_I2C_CMD_STATUS;
498 msgs[i+1].addr = intel_sdvo->slave_addr;
501 msgs[i+1].buf = &status;
503 msgs[i+2].addr = intel_sdvo->slave_addr;
504 msgs[i+2].flags = I2C_M_RD;
506 msgs[i+2].buf = &status;
509 ret = i2c_transfer(intel_sdvo->i2c, msgs, i+3);
511 ret = __i2c_transfer(intel_sdvo->i2c, msgs, i+3);
513 DRM_DEBUG_KMS("I2c transfer returned %d\n", ret);
518 /* failure in I2C transfer */
519 DRM_DEBUG_KMS("I2c transfer returned %d/%d\n", ret, i+3);
529 static bool intel_sdvo_write_cmd(struct intel_sdvo *intel_sdvo, u8 cmd,
530 const void *args, int args_len)
532 return __intel_sdvo_write_cmd(intel_sdvo, cmd, args, args_len, true);
535 static bool intel_sdvo_read_response(struct intel_sdvo *intel_sdvo,
536 void *response, int response_len)
538 struct drm_i915_private *dev_priv = to_i915(intel_sdvo->base.base.dev);
539 const char *cmd_status;
540 u8 retry = 15; /* 5 quick checks, followed by 10 long checks */
548 * The documentation states that all commands will be
549 * processed within 15µs, and that we need only poll
550 * the status byte a maximum of 3 times in order for the
551 * command to be complete.
553 * Check 5 times in case the hardware failed to read the docs.
555 * Also beware that the first response by many devices is to
556 * reply PENDING and stall for time. TVs are notorious for
557 * requiring longer than specified to complete their replies.
558 * Originally (in the DDX long ago), the delay was only ever 15ms
559 * with an additional delay of 30ms applied for TVs added later after
560 * many experiments. To accommodate both sets of delays, we do a
561 * sequence of slow checks if the device is falling behind and fails
562 * to reply within 5*15µs.
564 if (!intel_sdvo_read_byte(intel_sdvo,
569 while ((status == SDVO_CMD_STATUS_PENDING ||
570 status == SDVO_CMD_STATUS_TARGET_NOT_SPECIFIED) && --retry) {
576 if (!intel_sdvo_read_byte(intel_sdvo,
582 #define BUF_PRINT(args...) \
583 pos += snprintf(buffer + pos, max_t(int, sizeof(buffer) - pos, 0), args)
585 cmd_status = sdvo_cmd_status(status);
587 BUF_PRINT("(%s)", cmd_status);
589 BUF_PRINT("(??? %d)", status);
591 if (status != SDVO_CMD_STATUS_SUCCESS)
594 /* Read the command response */
595 for (i = 0; i < response_len; i++) {
596 if (!intel_sdvo_read_byte(intel_sdvo,
597 SDVO_I2C_RETURN_0 + i,
598 &((u8 *)response)[i]))
600 BUF_PRINT(" %02X", ((u8 *)response)[i]);
603 drm_WARN_ON(&dev_priv->drm, pos >= sizeof(buffer) - 1);
606 DRM_DEBUG_KMS("%s: R: %s\n", SDVO_NAME(intel_sdvo), buffer);
610 DRM_DEBUG_KMS("%s: R: ... failed %s\n",
611 SDVO_NAME(intel_sdvo), buffer);
615 static int intel_sdvo_get_pixel_multiplier(const struct drm_display_mode *adjusted_mode)
617 if (adjusted_mode->crtc_clock >= 100000)
619 else if (adjusted_mode->crtc_clock >= 50000)
625 static bool __intel_sdvo_set_control_bus_switch(struct intel_sdvo *intel_sdvo,
628 /* This must be the immediately preceding write before the i2c xfer */
629 return __intel_sdvo_write_cmd(intel_sdvo,
630 SDVO_CMD_SET_CONTROL_BUS_SWITCH,
634 static bool intel_sdvo_set_value(struct intel_sdvo *intel_sdvo, u8 cmd, const void *data, int len)
636 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, data, len))
639 return intel_sdvo_read_response(intel_sdvo, NULL, 0);
643 intel_sdvo_get_value(struct intel_sdvo *intel_sdvo, u8 cmd, void *value, int len)
645 if (!intel_sdvo_write_cmd(intel_sdvo, cmd, NULL, 0))
648 return intel_sdvo_read_response(intel_sdvo, value, len);
651 static bool intel_sdvo_set_target_input(struct intel_sdvo *intel_sdvo)
653 struct intel_sdvo_set_target_input_args targets = {};
654 return intel_sdvo_set_value(intel_sdvo,
655 SDVO_CMD_SET_TARGET_INPUT,
656 &targets, sizeof(targets));
660 * Return whether each input is trained.
662 * This function is making an assumption about the layout of the response,
663 * which should be checked against the docs.
665 static bool intel_sdvo_get_trained_inputs(struct intel_sdvo *intel_sdvo, bool *input_1, bool *input_2)
667 struct intel_sdvo_get_trained_inputs_response response;
669 BUILD_BUG_ON(sizeof(response) != 1);
670 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_TRAINED_INPUTS,
671 &response, sizeof(response)))
674 *input_1 = response.input0_trained;
675 *input_2 = response.input1_trained;
679 static bool intel_sdvo_set_active_outputs(struct intel_sdvo *intel_sdvo,
682 return intel_sdvo_set_value(intel_sdvo,
683 SDVO_CMD_SET_ACTIVE_OUTPUTS,
684 &outputs, sizeof(outputs));
687 static bool intel_sdvo_get_active_outputs(struct intel_sdvo *intel_sdvo,
690 return intel_sdvo_get_value(intel_sdvo,
691 SDVO_CMD_GET_ACTIVE_OUTPUTS,
692 outputs, sizeof(*outputs));
695 static bool intel_sdvo_set_encoder_power_state(struct intel_sdvo *intel_sdvo,
698 u8 state = SDVO_ENCODER_STATE_ON;
701 case DRM_MODE_DPMS_ON:
702 state = SDVO_ENCODER_STATE_ON;
704 case DRM_MODE_DPMS_STANDBY:
705 state = SDVO_ENCODER_STATE_STANDBY;
707 case DRM_MODE_DPMS_SUSPEND:
708 state = SDVO_ENCODER_STATE_SUSPEND;
710 case DRM_MODE_DPMS_OFF:
711 state = SDVO_ENCODER_STATE_OFF;
715 return intel_sdvo_set_value(intel_sdvo,
716 SDVO_CMD_SET_ENCODER_POWER_STATE, &state, sizeof(state));
719 static bool intel_sdvo_get_input_pixel_clock_range(struct intel_sdvo *intel_sdvo,
723 struct intel_sdvo_pixel_clock_range clocks;
725 BUILD_BUG_ON(sizeof(clocks) != 4);
726 if (!intel_sdvo_get_value(intel_sdvo,
727 SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE,
728 &clocks, sizeof(clocks)))
731 /* Convert the values from units of 10 kHz to kHz. */
732 *clock_min = clocks.min * 10;
733 *clock_max = clocks.max * 10;
737 static bool intel_sdvo_set_target_output(struct intel_sdvo *intel_sdvo,
740 return intel_sdvo_set_value(intel_sdvo,
741 SDVO_CMD_SET_TARGET_OUTPUT,
742 &outputs, sizeof(outputs));
745 static bool intel_sdvo_set_timing(struct intel_sdvo *intel_sdvo, u8 cmd,
746 struct intel_sdvo_dtd *dtd)
748 return intel_sdvo_set_value(intel_sdvo, cmd, &dtd->part1, sizeof(dtd->part1)) &&
749 intel_sdvo_set_value(intel_sdvo, cmd + 1, &dtd->part2, sizeof(dtd->part2));
752 static bool intel_sdvo_get_timing(struct intel_sdvo *intel_sdvo, u8 cmd,
753 struct intel_sdvo_dtd *dtd)
755 return intel_sdvo_get_value(intel_sdvo, cmd, &dtd->part1, sizeof(dtd->part1)) &&
756 intel_sdvo_get_value(intel_sdvo, cmd + 1, &dtd->part2, sizeof(dtd->part2));
759 static bool intel_sdvo_set_input_timing(struct intel_sdvo *intel_sdvo,
760 struct intel_sdvo_dtd *dtd)
762 return intel_sdvo_set_timing(intel_sdvo,
763 SDVO_CMD_SET_INPUT_TIMINGS_PART1, dtd);
766 static bool intel_sdvo_set_output_timing(struct intel_sdvo *intel_sdvo,
767 struct intel_sdvo_dtd *dtd)
769 return intel_sdvo_set_timing(intel_sdvo,
770 SDVO_CMD_SET_OUTPUT_TIMINGS_PART1, dtd);
773 static bool intel_sdvo_get_input_timing(struct intel_sdvo *intel_sdvo,
774 struct intel_sdvo_dtd *dtd)
776 return intel_sdvo_get_timing(intel_sdvo,
777 SDVO_CMD_GET_INPUT_TIMINGS_PART1, dtd);
781 intel_sdvo_create_preferred_input_timing(struct intel_sdvo *intel_sdvo,
782 struct intel_sdvo_connector *intel_sdvo_connector,
783 const struct drm_display_mode *mode)
785 struct intel_sdvo_preferred_input_timing_args args;
787 memset(&args, 0, sizeof(args));
788 args.clock = mode->clock / 10;
789 args.width = mode->hdisplay;
790 args.height = mode->vdisplay;
793 if (IS_LVDS(intel_sdvo_connector)) {
794 const struct drm_display_mode *fixed_mode =
795 intel_panel_fixed_mode(&intel_sdvo_connector->base, mode);
797 if (fixed_mode->hdisplay != args.width ||
798 fixed_mode->vdisplay != args.height)
802 return intel_sdvo_set_value(intel_sdvo,
803 SDVO_CMD_CREATE_PREFERRED_INPUT_TIMING,
804 &args, sizeof(args));
807 static bool intel_sdvo_get_preferred_input_timing(struct intel_sdvo *intel_sdvo,
808 struct intel_sdvo_dtd *dtd)
810 BUILD_BUG_ON(sizeof(dtd->part1) != 8);
811 BUILD_BUG_ON(sizeof(dtd->part2) != 8);
812 return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART1,
813 &dtd->part1, sizeof(dtd->part1)) &&
814 intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_PREFERRED_INPUT_TIMING_PART2,
815 &dtd->part2, sizeof(dtd->part2));
818 static bool intel_sdvo_set_clock_rate_mult(struct intel_sdvo *intel_sdvo, u8 val)
820 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_CLOCK_RATE_MULT, &val, 1);
823 static void intel_sdvo_get_dtd_from_mode(struct intel_sdvo_dtd *dtd,
824 const struct drm_display_mode *mode)
827 u16 h_blank_len, h_sync_len, v_blank_len, v_sync_len;
828 u16 h_sync_offset, v_sync_offset;
831 memset(dtd, 0, sizeof(*dtd));
833 width = mode->hdisplay;
834 height = mode->vdisplay;
836 /* do some mode translations */
837 h_blank_len = mode->htotal - mode->hdisplay;
838 h_sync_len = mode->hsync_end - mode->hsync_start;
840 v_blank_len = mode->vtotal - mode->vdisplay;
841 v_sync_len = mode->vsync_end - mode->vsync_start;
843 h_sync_offset = mode->hsync_start - mode->hdisplay;
844 v_sync_offset = mode->vsync_start - mode->vdisplay;
846 mode_clock = mode->clock;
848 dtd->part1.clock = mode_clock;
850 dtd->part1.h_active = width & 0xff;
851 dtd->part1.h_blank = h_blank_len & 0xff;
852 dtd->part1.h_high = (((width >> 8) & 0xf) << 4) |
853 ((h_blank_len >> 8) & 0xf);
854 dtd->part1.v_active = height & 0xff;
855 dtd->part1.v_blank = v_blank_len & 0xff;
856 dtd->part1.v_high = (((height >> 8) & 0xf) << 4) |
857 ((v_blank_len >> 8) & 0xf);
859 dtd->part2.h_sync_off = h_sync_offset & 0xff;
860 dtd->part2.h_sync_width = h_sync_len & 0xff;
861 dtd->part2.v_sync_off_width = (v_sync_offset & 0xf) << 4 |
863 dtd->part2.sync_off_width_high = ((h_sync_offset & 0x300) >> 2) |
864 ((h_sync_len & 0x300) >> 4) | ((v_sync_offset & 0x30) >> 2) |
865 ((v_sync_len & 0x30) >> 4);
867 dtd->part2.dtd_flags = 0x18;
868 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
869 dtd->part2.dtd_flags |= DTD_FLAG_INTERLACE;
870 if (mode->flags & DRM_MODE_FLAG_PHSYNC)
871 dtd->part2.dtd_flags |= DTD_FLAG_HSYNC_POSITIVE;
872 if (mode->flags & DRM_MODE_FLAG_PVSYNC)
873 dtd->part2.dtd_flags |= DTD_FLAG_VSYNC_POSITIVE;
875 dtd->part2.v_sync_off_high = v_sync_offset & 0xc0;
878 static void intel_sdvo_get_mode_from_dtd(struct drm_display_mode *pmode,
879 const struct intel_sdvo_dtd *dtd)
881 struct drm_display_mode mode = {};
883 mode.hdisplay = dtd->part1.h_active;
884 mode.hdisplay += ((dtd->part1.h_high >> 4) & 0x0f) << 8;
885 mode.hsync_start = mode.hdisplay + dtd->part2.h_sync_off;
886 mode.hsync_start += (dtd->part2.sync_off_width_high & 0xc0) << 2;
887 mode.hsync_end = mode.hsync_start + dtd->part2.h_sync_width;
888 mode.hsync_end += (dtd->part2.sync_off_width_high & 0x30) << 4;
889 mode.htotal = mode.hdisplay + dtd->part1.h_blank;
890 mode.htotal += (dtd->part1.h_high & 0xf) << 8;
892 mode.vdisplay = dtd->part1.v_active;
893 mode.vdisplay += ((dtd->part1.v_high >> 4) & 0x0f) << 8;
894 mode.vsync_start = mode.vdisplay;
895 mode.vsync_start += (dtd->part2.v_sync_off_width >> 4) & 0xf;
896 mode.vsync_start += (dtd->part2.sync_off_width_high & 0x0c) << 2;
897 mode.vsync_start += dtd->part2.v_sync_off_high & 0xc0;
898 mode.vsync_end = mode.vsync_start +
899 (dtd->part2.v_sync_off_width & 0xf);
900 mode.vsync_end += (dtd->part2.sync_off_width_high & 0x3) << 4;
901 mode.vtotal = mode.vdisplay + dtd->part1.v_blank;
902 mode.vtotal += (dtd->part1.v_high & 0xf) << 8;
904 mode.clock = dtd->part1.clock * 10;
906 if (dtd->part2.dtd_flags & DTD_FLAG_INTERLACE)
907 mode.flags |= DRM_MODE_FLAG_INTERLACE;
908 if (dtd->part2.dtd_flags & DTD_FLAG_HSYNC_POSITIVE)
909 mode.flags |= DRM_MODE_FLAG_PHSYNC;
911 mode.flags |= DRM_MODE_FLAG_NHSYNC;
912 if (dtd->part2.dtd_flags & DTD_FLAG_VSYNC_POSITIVE)
913 mode.flags |= DRM_MODE_FLAG_PVSYNC;
915 mode.flags |= DRM_MODE_FLAG_NVSYNC;
917 drm_mode_set_crtcinfo(&mode, 0);
919 drm_mode_copy(pmode, &mode);
922 static bool intel_sdvo_check_supp_encode(struct intel_sdvo *intel_sdvo)
924 struct intel_sdvo_encode encode;
926 BUILD_BUG_ON(sizeof(encode) != 2);
927 return intel_sdvo_get_value(intel_sdvo,
928 SDVO_CMD_GET_SUPP_ENCODE,
929 &encode, sizeof(encode));
932 static bool intel_sdvo_set_encode(struct intel_sdvo *intel_sdvo,
935 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_ENCODE, &mode, 1);
938 static bool intel_sdvo_set_colorimetry(struct intel_sdvo *intel_sdvo,
941 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_COLORIMETRY, &mode, 1);
944 static bool intel_sdvo_set_pixel_replication(struct intel_sdvo *intel_sdvo,
947 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_PIXEL_REPLI,
951 static bool intel_sdvo_set_audio_state(struct intel_sdvo *intel_sdvo,
954 return intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_AUDIO_STAT,
958 static bool intel_sdvo_get_hbuf_size(struct intel_sdvo *intel_sdvo,
961 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_HBUF_INFO,
965 /* Buffer size is 0 based, hooray! However zero means zero. */
973 static void intel_sdvo_dump_hdmi_buf(struct intel_sdvo *intel_sdvo)
982 intel_sdvo_get_value(encoder, SDVO_CMD_GET_HBUF_AV_SPLIT, &av_split, 1);
984 for (i = 0; i <= av_split; i++) {
985 set_buf_index[0] = i; set_buf_index[1] = 0;
986 intel_sdvo_write_cmd(encoder, SDVO_CMD_SET_HBUF_INDEX,
988 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_INFO, NULL, 0);
989 intel_sdvo_read_response(encoder, &buf_size, 1);
992 for (j = 0; j <= buf_size; j += 8) {
993 intel_sdvo_write_cmd(encoder, SDVO_CMD_GET_HBUF_DATA,
995 intel_sdvo_read_response(encoder, pos, 8);
1002 static bool intel_sdvo_write_infoframe(struct intel_sdvo *intel_sdvo,
1003 unsigned int if_index, u8 tx_rate,
1004 const u8 *data, unsigned int length)
1006 u8 set_buf_index[2] = { if_index, 0 };
1007 u8 hbuf_size, tmp[8];
1010 if (!intel_sdvo_set_value(intel_sdvo,
1011 SDVO_CMD_SET_HBUF_INDEX,
1015 if (!intel_sdvo_get_hbuf_size(intel_sdvo, &hbuf_size))
1018 DRM_DEBUG_KMS("writing sdvo hbuf: %i, length %u, hbuf_size: %i\n",
1019 if_index, length, hbuf_size);
1021 if (hbuf_size < length)
1024 for (i = 0; i < hbuf_size; i += 8) {
1027 memcpy(tmp, data + i, min_t(unsigned, 8, length - i));
1029 if (!intel_sdvo_set_value(intel_sdvo,
1030 SDVO_CMD_SET_HBUF_DATA,
1035 return intel_sdvo_set_value(intel_sdvo,
1036 SDVO_CMD_SET_HBUF_TXRATE,
1040 static ssize_t intel_sdvo_read_infoframe(struct intel_sdvo *intel_sdvo,
1041 unsigned int if_index,
1042 u8 *data, unsigned int length)
1044 u8 set_buf_index[2] = { if_index, 0 };
1045 u8 hbuf_size, tx_rate, av_split;
1048 if (!intel_sdvo_get_value(intel_sdvo,
1049 SDVO_CMD_GET_HBUF_AV_SPLIT,
1053 if (av_split < if_index)
1056 if (!intel_sdvo_set_value(intel_sdvo,
1057 SDVO_CMD_SET_HBUF_INDEX,
1061 if (!intel_sdvo_get_value(intel_sdvo,
1062 SDVO_CMD_GET_HBUF_TXRATE,
1066 /* TX_DISABLED doesn't mean disabled for ELD */
1067 if (if_index != SDVO_HBUF_INDEX_ELD && tx_rate == SDVO_HBUF_TX_DISABLED)
1070 if (!intel_sdvo_get_hbuf_size(intel_sdvo, &hbuf_size))
1073 DRM_DEBUG_KMS("reading sdvo hbuf: %i, length %u, hbuf_size: %i\n",
1074 if_index, length, hbuf_size);
1076 hbuf_size = min_t(unsigned int, length, hbuf_size);
1078 for (i = 0; i < hbuf_size; i += 8) {
1079 if (!intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_GET_HBUF_DATA, NULL, 0))
1081 if (!intel_sdvo_read_response(intel_sdvo, &data[i],
1082 min_t(unsigned int, 8, hbuf_size - i)))
1089 static bool intel_sdvo_compute_avi_infoframe(struct intel_sdvo *intel_sdvo,
1090 struct intel_crtc_state *crtc_state,
1091 struct drm_connector_state *conn_state)
1093 struct drm_i915_private *dev_priv = to_i915(intel_sdvo->base.base.dev);
1094 struct hdmi_avi_infoframe *frame = &crtc_state->infoframes.avi.avi;
1095 const struct drm_display_mode *adjusted_mode =
1096 &crtc_state->hw.adjusted_mode;
1099 if (!crtc_state->has_hdmi_sink)
1102 crtc_state->infoframes.enable |=
1103 intel_hdmi_infoframe_enable(HDMI_INFOFRAME_TYPE_AVI);
1105 ret = drm_hdmi_avi_infoframe_from_display_mode(frame,
1106 conn_state->connector,
1111 drm_hdmi_avi_infoframe_quant_range(frame,
1112 conn_state->connector,
1114 crtc_state->limited_color_range ?
1115 HDMI_QUANTIZATION_RANGE_LIMITED :
1116 HDMI_QUANTIZATION_RANGE_FULL);
1118 ret = hdmi_avi_infoframe_check(frame);
1119 if (drm_WARN_ON(&dev_priv->drm, ret))
1125 static bool intel_sdvo_set_avi_infoframe(struct intel_sdvo *intel_sdvo,
1126 const struct intel_crtc_state *crtc_state)
1128 struct drm_i915_private *dev_priv = to_i915(intel_sdvo->base.base.dev);
1129 u8 sdvo_data[HDMI_INFOFRAME_SIZE(AVI)];
1130 const union hdmi_infoframe *frame = &crtc_state->infoframes.avi;
1133 if ((crtc_state->infoframes.enable &
1134 intel_hdmi_infoframe_enable(HDMI_INFOFRAME_TYPE_AVI)) == 0)
1137 if (drm_WARN_ON(&dev_priv->drm,
1138 frame->any.type != HDMI_INFOFRAME_TYPE_AVI))
1141 len = hdmi_infoframe_pack_only(frame, sdvo_data, sizeof(sdvo_data));
1142 if (drm_WARN_ON(&dev_priv->drm, len < 0))
1145 return intel_sdvo_write_infoframe(intel_sdvo, SDVO_HBUF_INDEX_AVI_IF,
1150 static void intel_sdvo_get_avi_infoframe(struct intel_sdvo *intel_sdvo,
1151 struct intel_crtc_state *crtc_state)
1153 u8 sdvo_data[HDMI_INFOFRAME_SIZE(AVI)];
1154 union hdmi_infoframe *frame = &crtc_state->infoframes.avi;
1158 if (!crtc_state->has_hdmi_sink)
1161 len = intel_sdvo_read_infoframe(intel_sdvo, SDVO_HBUF_INDEX_AVI_IF,
1162 sdvo_data, sizeof(sdvo_data));
1164 DRM_DEBUG_KMS("failed to read AVI infoframe\n");
1166 } else if (len == 0) {
1170 crtc_state->infoframes.enable |=
1171 intel_hdmi_infoframe_enable(HDMI_INFOFRAME_TYPE_AVI);
1173 ret = hdmi_infoframe_unpack(frame, sdvo_data, len);
1175 DRM_DEBUG_KMS("Failed to unpack AVI infoframe\n");
1179 if (frame->any.type != HDMI_INFOFRAME_TYPE_AVI)
1180 DRM_DEBUG_KMS("Found the wrong infoframe type 0x%x (expected 0x%02x)\n",
1181 frame->any.type, HDMI_INFOFRAME_TYPE_AVI);
1184 static void intel_sdvo_get_eld(struct intel_sdvo *intel_sdvo,
1185 struct intel_crtc_state *crtc_state)
1187 struct drm_i915_private *i915 = to_i915(intel_sdvo->base.base.dev);
1191 if (!crtc_state->has_audio)
1194 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_AUDIO_STAT, &val, 1))
1197 if ((val & SDVO_AUDIO_ELD_VALID) == 0)
1200 len = intel_sdvo_read_infoframe(intel_sdvo, SDVO_HBUF_INDEX_ELD,
1201 crtc_state->eld, sizeof(crtc_state->eld));
1203 drm_dbg_kms(&i915->drm, "failed to read ELD\n");
1206 static bool intel_sdvo_set_tv_format(struct intel_sdvo *intel_sdvo,
1207 const struct drm_connector_state *conn_state)
1209 struct intel_sdvo_tv_format format;
1212 format_map = 1 << conn_state->tv.mode;
1213 memset(&format, 0, sizeof(format));
1214 memcpy(&format, &format_map, min(sizeof(format), sizeof(format_map)));
1216 BUILD_BUG_ON(sizeof(format) != 6);
1217 return intel_sdvo_set_value(intel_sdvo,
1218 SDVO_CMD_SET_TV_FORMAT,
1219 &format, sizeof(format));
1223 intel_sdvo_set_output_timings_from_mode(struct intel_sdvo *intel_sdvo,
1224 struct intel_sdvo_connector *intel_sdvo_connector,
1225 const struct drm_display_mode *mode)
1227 struct intel_sdvo_dtd output_dtd;
1229 if (!intel_sdvo_set_target_output(intel_sdvo,
1230 intel_sdvo_connector->output_flag))
1233 intel_sdvo_get_dtd_from_mode(&output_dtd, mode);
1234 if (!intel_sdvo_set_output_timing(intel_sdvo, &output_dtd))
1241 * Asks the sdvo controller for the preferred input mode given the output mode.
1242 * Unfortunately we have to set up the full output mode to do that.
1245 intel_sdvo_get_preferred_input_mode(struct intel_sdvo *intel_sdvo,
1246 struct intel_sdvo_connector *intel_sdvo_connector,
1247 const struct drm_display_mode *mode,
1248 struct drm_display_mode *adjusted_mode)
1250 struct intel_sdvo_dtd input_dtd;
1252 /* Reset the input timing to the screen. Assume always input 0. */
1253 if (!intel_sdvo_set_target_input(intel_sdvo))
1256 if (!intel_sdvo_create_preferred_input_timing(intel_sdvo,
1257 intel_sdvo_connector,
1261 if (!intel_sdvo_get_preferred_input_timing(intel_sdvo,
1265 intel_sdvo_get_mode_from_dtd(adjusted_mode, &input_dtd);
1266 intel_sdvo->dtd_sdvo_flags = input_dtd.part2.sdvo_flags;
1271 static int i9xx_adjust_sdvo_tv_clock(struct intel_crtc_state *pipe_config)
1273 struct drm_i915_private *dev_priv = to_i915(pipe_config->uapi.crtc->dev);
1274 unsigned int dotclock = pipe_config->hw.adjusted_mode.crtc_clock;
1275 struct dpll *clock = &pipe_config->dpll;
1278 * SDVO TV has fixed PLL values depend on its clock range,
1279 * this mirrors vbios setting.
1281 if (dotclock >= 100000 && dotclock < 140500) {
1287 } else if (dotclock >= 140500 && dotclock <= 200000) {
1294 drm_dbg_kms(&dev_priv->drm,
1295 "SDVO TV clock out of range: %i\n", dotclock);
1299 pipe_config->clock_set = true;
1304 static bool intel_has_hdmi_sink(struct intel_sdvo_connector *intel_sdvo_connector,
1305 const struct drm_connector_state *conn_state)
1307 struct drm_connector *connector = conn_state->connector;
1309 return intel_sdvo_connector->is_hdmi &&
1310 connector->display_info.is_hdmi &&
1311 READ_ONCE(to_intel_digital_connector_state(conn_state)->force_audio) != HDMI_AUDIO_OFF_DVI;
1314 static bool intel_sdvo_limited_color_range(struct intel_encoder *encoder,
1315 const struct intel_crtc_state *crtc_state,
1316 const struct drm_connector_state *conn_state)
1318 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
1320 if ((intel_sdvo->colorimetry_cap & SDVO_COLORIMETRY_RGB220) == 0)
1323 return intel_hdmi_limited_color_range(crtc_state, conn_state);
1326 static bool intel_sdvo_has_audio(struct intel_encoder *encoder,
1327 const struct intel_crtc_state *crtc_state,
1328 const struct drm_connector_state *conn_state)
1330 struct drm_connector *connector = conn_state->connector;
1331 struct intel_sdvo_connector *intel_sdvo_connector =
1332 to_intel_sdvo_connector(connector);
1333 const struct intel_digital_connector_state *intel_conn_state =
1334 to_intel_digital_connector_state(conn_state);
1336 if (!crtc_state->has_hdmi_sink)
1339 if (intel_conn_state->force_audio == HDMI_AUDIO_AUTO)
1340 return intel_sdvo_connector->is_hdmi &&
1341 connector->display_info.has_audio;
1343 return intel_conn_state->force_audio == HDMI_AUDIO_ON;
1346 static int intel_sdvo_compute_config(struct intel_encoder *encoder,
1347 struct intel_crtc_state *pipe_config,
1348 struct drm_connector_state *conn_state)
1350 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
1351 struct intel_sdvo_connector *intel_sdvo_connector =
1352 to_intel_sdvo_connector(conn_state->connector);
1353 struct drm_display_mode *adjusted_mode = &pipe_config->hw.adjusted_mode;
1354 struct drm_display_mode *mode = &pipe_config->hw.mode;
1356 if (HAS_PCH_SPLIT(to_i915(encoder->base.dev))) {
1357 pipe_config->has_pch_encoder = true;
1358 if (!intel_fdi_compute_pipe_bpp(pipe_config))
1362 DRM_DEBUG_KMS("forcing bpc to 8 for SDVO\n");
1363 /* FIXME: Don't increase pipe_bpp */
1364 pipe_config->pipe_bpp = 8*3;
1365 pipe_config->sink_format = INTEL_OUTPUT_FORMAT_RGB;
1366 pipe_config->output_format = INTEL_OUTPUT_FORMAT_RGB;
1369 * We need to construct preferred input timings based on our
1370 * output timings. To do that, we have to set the output
1371 * timings, even though this isn't really the right place in
1372 * the sequence to do it. Oh well.
1374 if (IS_TV(intel_sdvo_connector)) {
1375 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo,
1376 intel_sdvo_connector,
1380 (void) intel_sdvo_get_preferred_input_mode(intel_sdvo,
1381 intel_sdvo_connector,
1384 pipe_config->sdvo_tv_clock = true;
1385 } else if (IS_LVDS(intel_sdvo_connector)) {
1386 const struct drm_display_mode *fixed_mode =
1387 intel_panel_fixed_mode(&intel_sdvo_connector->base, mode);
1390 ret = intel_panel_compute_config(&intel_sdvo_connector->base,
1395 if (!intel_sdvo_set_output_timings_from_mode(intel_sdvo,
1396 intel_sdvo_connector,
1400 (void) intel_sdvo_get_preferred_input_mode(intel_sdvo,
1401 intel_sdvo_connector,
1406 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)
1410 * Make the CRTC code factor in the SDVO pixel multiplier. The
1411 * SDVO device will factor out the multiplier during mode_set.
1413 pipe_config->pixel_multiplier =
1414 intel_sdvo_get_pixel_multiplier(adjusted_mode);
1416 pipe_config->has_hdmi_sink = intel_has_hdmi_sink(intel_sdvo_connector, conn_state);
1418 pipe_config->has_audio =
1419 intel_sdvo_has_audio(encoder, pipe_config, conn_state) &&
1420 intel_audio_compute_config(encoder, pipe_config, conn_state);
1422 pipe_config->limited_color_range =
1423 intel_sdvo_limited_color_range(encoder, pipe_config,
1426 /* Clock computation needs to happen after pixel multiplier. */
1427 if (IS_TV(intel_sdvo_connector)) {
1430 ret = i9xx_adjust_sdvo_tv_clock(pipe_config);
1435 if (conn_state->picture_aspect_ratio)
1436 adjusted_mode->picture_aspect_ratio =
1437 conn_state->picture_aspect_ratio;
1439 if (!intel_sdvo_compute_avi_infoframe(intel_sdvo,
1440 pipe_config, conn_state)) {
1441 DRM_DEBUG_KMS("bad AVI infoframe\n");
1448 #define UPDATE_PROPERTY(input, NAME) \
1451 intel_sdvo_set_value(intel_sdvo, SDVO_CMD_SET_##NAME, &val, sizeof(val)); \
1454 static void intel_sdvo_update_props(struct intel_sdvo *intel_sdvo,
1455 const struct intel_sdvo_connector_state *sdvo_state)
1457 const struct drm_connector_state *conn_state = &sdvo_state->base.base;
1458 struct intel_sdvo_connector *intel_sdvo_conn =
1459 to_intel_sdvo_connector(conn_state->connector);
1462 if (intel_sdvo_conn->left)
1463 UPDATE_PROPERTY(sdvo_state->tv.overscan_h, OVERSCAN_H);
1465 if (intel_sdvo_conn->top)
1466 UPDATE_PROPERTY(sdvo_state->tv.overscan_v, OVERSCAN_V);
1468 if (intel_sdvo_conn->hpos)
1469 UPDATE_PROPERTY(sdvo_state->tv.hpos, HPOS);
1471 if (intel_sdvo_conn->vpos)
1472 UPDATE_PROPERTY(sdvo_state->tv.vpos, VPOS);
1474 if (intel_sdvo_conn->saturation)
1475 UPDATE_PROPERTY(conn_state->tv.saturation, SATURATION);
1477 if (intel_sdvo_conn->contrast)
1478 UPDATE_PROPERTY(conn_state->tv.contrast, CONTRAST);
1480 if (intel_sdvo_conn->hue)
1481 UPDATE_PROPERTY(conn_state->tv.hue, HUE);
1483 if (intel_sdvo_conn->brightness)
1484 UPDATE_PROPERTY(conn_state->tv.brightness, BRIGHTNESS);
1486 if (intel_sdvo_conn->sharpness)
1487 UPDATE_PROPERTY(sdvo_state->tv.sharpness, SHARPNESS);
1489 if (intel_sdvo_conn->flicker_filter)
1490 UPDATE_PROPERTY(sdvo_state->tv.flicker_filter, FLICKER_FILTER);
1492 if (intel_sdvo_conn->flicker_filter_2d)
1493 UPDATE_PROPERTY(sdvo_state->tv.flicker_filter_2d, FLICKER_FILTER_2D);
1495 if (intel_sdvo_conn->flicker_filter_adaptive)
1496 UPDATE_PROPERTY(sdvo_state->tv.flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE);
1498 if (intel_sdvo_conn->tv_chroma_filter)
1499 UPDATE_PROPERTY(sdvo_state->tv.chroma_filter, TV_CHROMA_FILTER);
1501 if (intel_sdvo_conn->tv_luma_filter)
1502 UPDATE_PROPERTY(sdvo_state->tv.luma_filter, TV_LUMA_FILTER);
1504 if (intel_sdvo_conn->dot_crawl)
1505 UPDATE_PROPERTY(sdvo_state->tv.dot_crawl, DOT_CRAWL);
1507 #undef UPDATE_PROPERTY
1510 static void intel_sdvo_pre_enable(struct intel_atomic_state *state,
1511 struct intel_encoder *intel_encoder,
1512 const struct intel_crtc_state *crtc_state,
1513 const struct drm_connector_state *conn_state)
1515 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
1516 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
1517 const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
1518 const struct intel_sdvo_connector_state *sdvo_state =
1519 to_intel_sdvo_connector_state(conn_state);
1520 struct intel_sdvo_connector *intel_sdvo_connector =
1521 to_intel_sdvo_connector(conn_state->connector);
1522 const struct drm_display_mode *mode = &crtc_state->hw.mode;
1523 struct intel_sdvo *intel_sdvo = to_sdvo(intel_encoder);
1525 struct intel_sdvo_in_out_map in_out;
1526 struct intel_sdvo_dtd input_dtd, output_dtd;
1529 intel_sdvo_update_props(intel_sdvo, sdvo_state);
1532 * First, set the input mapping for the first input to our controlled
1533 * output. This is only correct if we're a single-input device, in
1534 * which case the first input is the output from the appropriate SDVO
1535 * channel on the motherboard. In a two-input device, the first input
1536 * will be SDVOB and the second SDVOC.
1538 in_out.in0 = intel_sdvo_connector->output_flag;
1541 intel_sdvo_set_value(intel_sdvo,
1542 SDVO_CMD_SET_IN_OUT_MAP,
1543 &in_out, sizeof(in_out));
1545 /* Set the output timings to the screen */
1546 if (!intel_sdvo_set_target_output(intel_sdvo,
1547 intel_sdvo_connector->output_flag))
1550 /* lvds has a special fixed output timing. */
1551 if (IS_LVDS(intel_sdvo_connector)) {
1552 const struct drm_display_mode *fixed_mode =
1553 intel_panel_fixed_mode(&intel_sdvo_connector->base, mode);
1555 intel_sdvo_get_dtd_from_mode(&output_dtd, fixed_mode);
1557 intel_sdvo_get_dtd_from_mode(&output_dtd, mode);
1559 if (!intel_sdvo_set_output_timing(intel_sdvo, &output_dtd))
1560 drm_info(&dev_priv->drm,
1561 "Setting output timings on %s failed\n",
1562 SDVO_NAME(intel_sdvo));
1564 /* Set the input timing to the screen. Assume always input 0. */
1565 if (!intel_sdvo_set_target_input(intel_sdvo))
1568 if (crtc_state->has_hdmi_sink) {
1569 intel_sdvo_set_encode(intel_sdvo, SDVO_ENCODE_HDMI);
1570 intel_sdvo_set_colorimetry(intel_sdvo,
1571 crtc_state->limited_color_range ?
1572 SDVO_COLORIMETRY_RGB220 :
1573 SDVO_COLORIMETRY_RGB256);
1574 intel_sdvo_set_avi_infoframe(intel_sdvo, crtc_state);
1575 intel_sdvo_set_pixel_replication(intel_sdvo,
1576 !!(adjusted_mode->flags &
1577 DRM_MODE_FLAG_DBLCLK));
1579 intel_sdvo_set_encode(intel_sdvo, SDVO_ENCODE_DVI);
1581 if (IS_TV(intel_sdvo_connector) &&
1582 !intel_sdvo_set_tv_format(intel_sdvo, conn_state))
1585 intel_sdvo_get_dtd_from_mode(&input_dtd, adjusted_mode);
1587 if (IS_TV(intel_sdvo_connector) || IS_LVDS(intel_sdvo_connector))
1588 input_dtd.part2.sdvo_flags = intel_sdvo->dtd_sdvo_flags;
1589 if (!intel_sdvo_set_input_timing(intel_sdvo, &input_dtd))
1590 drm_info(&dev_priv->drm,
1591 "Setting input timings on %s failed\n",
1592 SDVO_NAME(intel_sdvo));
1594 switch (crtc_state->pixel_multiplier) {
1596 drm_WARN(&dev_priv->drm, 1,
1597 "unknown pixel multiplier specified\n");
1599 case 1: rate = SDVO_CLOCK_RATE_MULT_1X; break;
1600 case 2: rate = SDVO_CLOCK_RATE_MULT_2X; break;
1601 case 4: rate = SDVO_CLOCK_RATE_MULT_4X; break;
1603 if (!intel_sdvo_set_clock_rate_mult(intel_sdvo, rate))
1606 /* Set the SDVO control regs. */
1607 if (DISPLAY_VER(dev_priv) >= 4) {
1608 /* The real mode polarity is set by the SDVO commands, using
1609 * struct intel_sdvo_dtd. */
1610 sdvox = SDVO_VSYNC_ACTIVE_HIGH | SDVO_HSYNC_ACTIVE_HIGH;
1611 if (DISPLAY_VER(dev_priv) < 5)
1612 sdvox |= SDVO_BORDER_ENABLE;
1614 sdvox = intel_de_read(dev_priv, intel_sdvo->sdvo_reg);
1615 if (intel_sdvo->base.port == PORT_B)
1616 sdvox &= SDVOB_PRESERVE_MASK;
1618 sdvox &= SDVOC_PRESERVE_MASK;
1619 sdvox |= (9 << 19) | SDVO_BORDER_ENABLE;
1622 if (HAS_PCH_CPT(dev_priv))
1623 sdvox |= SDVO_PIPE_SEL_CPT(crtc->pipe);
1625 sdvox |= SDVO_PIPE_SEL(crtc->pipe);
1627 if (DISPLAY_VER(dev_priv) >= 4) {
1628 /* done in crtc_mode_set as the dpll_md reg must be written early */
1629 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv) ||
1630 IS_G33(dev_priv) || IS_PINEVIEW(dev_priv)) {
1631 /* done in crtc_mode_set as it lives inside the dpll register */
1633 sdvox |= (crtc_state->pixel_multiplier - 1)
1634 << SDVO_PORT_MULTIPLY_SHIFT;
1637 if (input_dtd.part2.sdvo_flags & SDVO_NEED_TO_STALL &&
1638 DISPLAY_VER(dev_priv) < 5)
1639 sdvox |= SDVO_STALL_SELECT;
1640 intel_sdvo_write_sdvox(intel_sdvo, sdvox);
1643 static bool intel_sdvo_connector_get_hw_state(struct intel_connector *connector)
1645 struct intel_sdvo_connector *intel_sdvo_connector =
1646 to_intel_sdvo_connector(&connector->base);
1647 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(connector);
1648 u16 active_outputs = 0;
1650 intel_sdvo_get_active_outputs(intel_sdvo, &active_outputs);
1652 return active_outputs & intel_sdvo_connector->output_flag;
1655 bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv,
1656 i915_reg_t sdvo_reg, enum pipe *pipe)
1660 val = intel_de_read(dev_priv, sdvo_reg);
1662 /* asserts want to know the pipe even if the port is disabled */
1663 if (HAS_PCH_CPT(dev_priv))
1664 *pipe = (val & SDVO_PIPE_SEL_MASK_CPT) >> SDVO_PIPE_SEL_SHIFT_CPT;
1665 else if (IS_CHERRYVIEW(dev_priv))
1666 *pipe = (val & SDVO_PIPE_SEL_MASK_CHV) >> SDVO_PIPE_SEL_SHIFT_CHV;
1668 *pipe = (val & SDVO_PIPE_SEL_MASK) >> SDVO_PIPE_SEL_SHIFT;
1670 return val & SDVO_ENABLE;
1673 static bool intel_sdvo_get_hw_state(struct intel_encoder *encoder,
1676 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1677 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
1678 u16 active_outputs = 0;
1681 intel_sdvo_get_active_outputs(intel_sdvo, &active_outputs);
1683 ret = intel_sdvo_port_enabled(dev_priv, intel_sdvo->sdvo_reg, pipe);
1685 return ret || active_outputs;
1688 static void intel_sdvo_get_config(struct intel_encoder *encoder,
1689 struct intel_crtc_state *pipe_config)
1691 struct drm_device *dev = encoder->base.dev;
1692 struct drm_i915_private *dev_priv = to_i915(dev);
1693 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
1694 struct intel_sdvo_dtd dtd;
1695 int encoder_pixel_multiplier = 0;
1697 u32 flags = 0, sdvox;
1701 pipe_config->output_types |= BIT(INTEL_OUTPUT_SDVO);
1703 sdvox = intel_de_read(dev_priv, intel_sdvo->sdvo_reg);
1705 ret = intel_sdvo_get_input_timing(intel_sdvo, &dtd);
1708 * Some sdvo encoders are not spec compliant and don't
1709 * implement the mandatory get_timings function.
1711 drm_dbg(&dev_priv->drm, "failed to retrieve SDVO DTD\n");
1712 pipe_config->quirks |= PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS;
1714 if (dtd.part2.dtd_flags & DTD_FLAG_HSYNC_POSITIVE)
1715 flags |= DRM_MODE_FLAG_PHSYNC;
1717 flags |= DRM_MODE_FLAG_NHSYNC;
1719 if (dtd.part2.dtd_flags & DTD_FLAG_VSYNC_POSITIVE)
1720 flags |= DRM_MODE_FLAG_PVSYNC;
1722 flags |= DRM_MODE_FLAG_NVSYNC;
1725 pipe_config->hw.adjusted_mode.flags |= flags;
1728 * pixel multiplier readout is tricky: Only on i915g/gm it is stored in
1729 * the sdvo port register, on all other platforms it is part of the dpll
1730 * state. Since the general pipe state readout happens before the
1731 * encoder->get_config we so already have a valid pixel multplier on all
1734 if (IS_I915G(dev_priv) || IS_I915GM(dev_priv)) {
1735 pipe_config->pixel_multiplier =
1736 ((sdvox & SDVO_PORT_MULTIPLY_MASK)
1737 >> SDVO_PORT_MULTIPLY_SHIFT) + 1;
1740 dotclock = pipe_config->port_clock;
1742 if (pipe_config->pixel_multiplier)
1743 dotclock /= pipe_config->pixel_multiplier;
1745 pipe_config->hw.adjusted_mode.crtc_clock = dotclock;
1747 /* Cross check the port pixel multiplier with the sdvo encoder state. */
1748 if (intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_CLOCK_RATE_MULT,
1751 case SDVO_CLOCK_RATE_MULT_1X:
1752 encoder_pixel_multiplier = 1;
1754 case SDVO_CLOCK_RATE_MULT_2X:
1755 encoder_pixel_multiplier = 2;
1757 case SDVO_CLOCK_RATE_MULT_4X:
1758 encoder_pixel_multiplier = 4;
1764 encoder_pixel_multiplier != pipe_config->pixel_multiplier,
1765 "SDVO pixel multiplier mismatch, port: %i, encoder: %i\n",
1766 pipe_config->pixel_multiplier, encoder_pixel_multiplier);
1768 if (intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_COLORIMETRY,
1770 if (val == SDVO_COLORIMETRY_RGB220)
1771 pipe_config->limited_color_range = true;
1774 if (intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_AUDIO_STAT,
1776 if (val & SDVO_AUDIO_PRESENCE_DETECT)
1777 pipe_config->has_audio = true;
1780 if (intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_ENCODE,
1782 if (val == SDVO_ENCODE_HDMI)
1783 pipe_config->has_hdmi_sink = true;
1786 intel_sdvo_get_avi_infoframe(intel_sdvo, pipe_config);
1788 intel_sdvo_get_eld(intel_sdvo, pipe_config);
1791 static void intel_sdvo_disable_audio(struct intel_encoder *encoder,
1792 const struct intel_crtc_state *old_crtc_state,
1793 const struct drm_connector_state *old_conn_state)
1795 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
1797 if (!old_crtc_state->has_audio)
1800 intel_sdvo_set_audio_state(intel_sdvo, 0);
1803 static void intel_sdvo_enable_audio(struct intel_encoder *encoder,
1804 const struct intel_crtc_state *crtc_state,
1805 const struct drm_connector_state *conn_state)
1807 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
1808 const u8 *eld = crtc_state->eld;
1810 if (!crtc_state->has_audio)
1813 intel_sdvo_set_audio_state(intel_sdvo, 0);
1815 intel_sdvo_write_infoframe(intel_sdvo, SDVO_HBUF_INDEX_ELD,
1816 SDVO_HBUF_TX_DISABLED,
1817 eld, drm_eld_size(eld));
1819 intel_sdvo_set_audio_state(intel_sdvo, SDVO_AUDIO_ELD_VALID |
1820 SDVO_AUDIO_PRESENCE_DETECT);
1823 static void intel_disable_sdvo(struct intel_atomic_state *state,
1824 struct intel_encoder *encoder,
1825 const struct intel_crtc_state *old_crtc_state,
1826 const struct drm_connector_state *conn_state)
1828 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1829 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
1830 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->uapi.crtc);
1833 encoder->audio_disable(encoder, old_crtc_state, conn_state);
1835 intel_sdvo_set_active_outputs(intel_sdvo, 0);
1837 intel_sdvo_set_encoder_power_state(intel_sdvo,
1840 temp = intel_de_read(dev_priv, intel_sdvo->sdvo_reg);
1842 temp &= ~SDVO_ENABLE;
1843 intel_sdvo_write_sdvox(intel_sdvo, temp);
1846 * HW workaround for IBX, we need to move the port
1847 * to transcoder A after disabling it to allow the
1848 * matching DP port to be enabled on transcoder A.
1850 if (HAS_PCH_IBX(dev_priv) && crtc->pipe == PIPE_B) {
1852 * We get CPU/PCH FIFO underruns on the other pipe when
1853 * doing the workaround. Sweep them under the rug.
1855 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, false);
1856 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, false);
1858 temp &= ~SDVO_PIPE_SEL_MASK;
1859 temp |= SDVO_ENABLE | SDVO_PIPE_SEL(PIPE_A);
1860 intel_sdvo_write_sdvox(intel_sdvo, temp);
1862 temp &= ~SDVO_ENABLE;
1863 intel_sdvo_write_sdvox(intel_sdvo, temp);
1865 intel_wait_for_vblank_if_active(dev_priv, PIPE_A);
1866 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
1867 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
1871 static void pch_disable_sdvo(struct intel_atomic_state *state,
1872 struct intel_encoder *encoder,
1873 const struct intel_crtc_state *old_crtc_state,
1874 const struct drm_connector_state *old_conn_state)
1878 static void pch_post_disable_sdvo(struct intel_atomic_state *state,
1879 struct intel_encoder *encoder,
1880 const struct intel_crtc_state *old_crtc_state,
1881 const struct drm_connector_state *old_conn_state)
1883 intel_disable_sdvo(state, encoder, old_crtc_state, old_conn_state);
1886 static void intel_enable_sdvo(struct intel_atomic_state *state,
1887 struct intel_encoder *encoder,
1888 const struct intel_crtc_state *pipe_config,
1889 const struct drm_connector_state *conn_state)
1891 struct drm_device *dev = encoder->base.dev;
1892 struct drm_i915_private *dev_priv = to_i915(dev);
1893 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
1894 struct intel_sdvo_connector *intel_sdvo_connector =
1895 to_intel_sdvo_connector(conn_state->connector);
1896 struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
1898 bool input1, input2;
1902 temp = intel_de_read(dev_priv, intel_sdvo->sdvo_reg);
1903 temp |= SDVO_ENABLE;
1904 intel_sdvo_write_sdvox(intel_sdvo, temp);
1906 for (i = 0; i < 2; i++)
1907 intel_crtc_wait_for_next_vblank(crtc);
1909 success = intel_sdvo_get_trained_inputs(intel_sdvo, &input1, &input2);
1911 * Warn if the device reported failure to sync.
1913 * A lot of SDVO devices fail to notify of sync, but it's
1914 * a given it the status is a success, we succeeded.
1916 if (success && !input1) {
1917 drm_dbg_kms(&dev_priv->drm,
1918 "First %s output reported failure to "
1919 "sync\n", SDVO_NAME(intel_sdvo));
1923 intel_sdvo_set_encoder_power_state(intel_sdvo,
1925 intel_sdvo_set_active_outputs(intel_sdvo, intel_sdvo_connector->output_flag);
1927 encoder->audio_enable(encoder, pipe_config, conn_state);
1930 static enum drm_mode_status
1931 intel_sdvo_mode_valid(struct drm_connector *connector,
1932 struct drm_display_mode *mode)
1934 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(to_intel_connector(connector));
1935 struct intel_sdvo_connector *intel_sdvo_connector =
1936 to_intel_sdvo_connector(connector);
1937 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
1938 bool has_hdmi_sink = intel_has_hdmi_sink(intel_sdvo_connector, connector->state);
1939 int clock = mode->clock;
1941 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1942 return MODE_NO_DBLESCAN;
1944 if (clock > max_dotclk)
1945 return MODE_CLOCK_HIGH;
1947 if (mode->flags & DRM_MODE_FLAG_DBLCLK) {
1949 return MODE_CLOCK_LOW;
1953 if (intel_sdvo->pixel_clock_min > clock)
1954 return MODE_CLOCK_LOW;
1956 if (intel_sdvo->pixel_clock_max < clock)
1957 return MODE_CLOCK_HIGH;
1959 if (IS_LVDS(intel_sdvo_connector)) {
1960 enum drm_mode_status status;
1962 status = intel_panel_mode_valid(&intel_sdvo_connector->base, mode);
1963 if (status != MODE_OK)
1970 static bool intel_sdvo_get_capabilities(struct intel_sdvo *intel_sdvo, struct intel_sdvo_caps *caps)
1972 BUILD_BUG_ON(sizeof(*caps) != 8);
1973 if (!intel_sdvo_get_value(intel_sdvo,
1974 SDVO_CMD_GET_DEVICE_CAPS,
1975 caps, sizeof(*caps)))
1978 DRM_DEBUG_KMS("SDVO capabilities:\n"
1981 " device_rev_id: %d\n"
1982 " sdvo_version_major: %d\n"
1983 " sdvo_version_minor: %d\n"
1984 " sdvo_num_inputs: %d\n"
1985 " smooth_scaling: %d\n"
1986 " sharp_scaling: %d\n"
1988 " down_scaling: %d\n"
1989 " stall_support: %d\n"
1990 " output_flags: %d\n",
1993 caps->device_rev_id,
1994 caps->sdvo_version_major,
1995 caps->sdvo_version_minor,
1996 caps->sdvo_num_inputs,
1997 caps->smooth_scaling,
1998 caps->sharp_scaling,
2001 caps->stall_support,
2002 caps->output_flags);
2007 static u8 intel_sdvo_get_colorimetry_cap(struct intel_sdvo *intel_sdvo)
2011 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_COLORIMETRY_CAP,
2013 return SDVO_COLORIMETRY_RGB256;
2018 static u16 intel_sdvo_get_hotplug_support(struct intel_sdvo *intel_sdvo)
2020 struct drm_i915_private *dev_priv = to_i915(intel_sdvo->base.base.dev);
2023 if (!I915_HAS_HOTPLUG(dev_priv))
2027 * HW Erratum: SDVO Hotplug is broken on all i945G chips, there's noise
2030 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
2033 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT,
2034 &hotplug, sizeof(hotplug)))
2040 static void intel_sdvo_enable_hotplug(struct intel_encoder *encoder)
2042 struct intel_sdvo *intel_sdvo = to_sdvo(encoder);
2044 intel_sdvo_write_cmd(intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG,
2045 &intel_sdvo->hotplug_active, 2);
2048 static enum intel_hotplug_state
2049 intel_sdvo_hotplug(struct intel_encoder *encoder,
2050 struct intel_connector *connector)
2052 intel_sdvo_enable_hotplug(encoder);
2054 return intel_encoder_hotplug(encoder, connector);
2057 static const struct drm_edid *
2058 intel_sdvo_get_edid(struct drm_connector *connector)
2060 struct i2c_adapter *ddc = connector->ddc;
2065 return drm_edid_read_ddc(connector, ddc);
2068 /* Mac mini hack -- use the same DDC as the analog connector */
2069 static const struct drm_edid *
2070 intel_sdvo_get_analog_edid(struct drm_connector *connector)
2072 struct drm_i915_private *i915 = to_i915(connector->dev);
2073 struct i2c_adapter *ddc;
2075 ddc = intel_gmbus_get_adapter(i915, i915->display.vbt.crt_ddc_pin);
2079 return drm_edid_read_ddc(connector, ddc);
2082 static enum drm_connector_status
2083 intel_sdvo_tmds_sink_detect(struct drm_connector *connector)
2085 enum drm_connector_status status;
2086 const struct drm_edid *drm_edid;
2088 drm_edid = intel_sdvo_get_edid(connector);
2091 * When there is no edid and no monitor is connected with VGA
2092 * port, try to use the CRT ddc to read the EDID for DVI-connector.
2095 drm_edid = intel_sdvo_get_analog_edid(connector);
2097 status = connector_status_unknown;
2099 /* DDC bus is shared, match EDID to connector type */
2100 if (drm_edid_is_digital(drm_edid))
2101 status = connector_status_connected;
2103 status = connector_status_disconnected;
2104 drm_edid_free(drm_edid);
2111 intel_sdvo_connector_matches_edid(struct intel_sdvo_connector *sdvo,
2112 const struct drm_edid *drm_edid)
2114 bool monitor_is_digital = drm_edid_is_digital(drm_edid);
2115 bool connector_is_digital = !!IS_DIGITAL(sdvo);
2117 DRM_DEBUG_KMS("connector_is_digital? %d, monitor_is_digital? %d\n",
2118 connector_is_digital, monitor_is_digital);
2119 return connector_is_digital == monitor_is_digital;
2122 static enum drm_connector_status
2123 intel_sdvo_detect(struct drm_connector *connector, bool force)
2125 struct drm_i915_private *i915 = to_i915(connector->dev);
2126 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(to_intel_connector(connector));
2127 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
2128 enum drm_connector_status ret;
2131 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2132 connector->base.id, connector->name);
2134 if (!intel_display_device_enabled(i915))
2135 return connector_status_disconnected;
2137 if (!intel_sdvo_set_target_output(intel_sdvo,
2138 intel_sdvo_connector->output_flag))
2139 return connector_status_unknown;
2141 if (!intel_sdvo_get_value(intel_sdvo,
2142 SDVO_CMD_GET_ATTACHED_DISPLAYS,
2144 return connector_status_unknown;
2146 DRM_DEBUG_KMS("SDVO response %d %d [%x]\n",
2147 response & 0xff, response >> 8,
2148 intel_sdvo_connector->output_flag);
2151 return connector_status_disconnected;
2153 if ((intel_sdvo_connector->output_flag & response) == 0)
2154 ret = connector_status_disconnected;
2155 else if (IS_TMDS(intel_sdvo_connector))
2156 ret = intel_sdvo_tmds_sink_detect(connector);
2158 const struct drm_edid *drm_edid;
2160 /* if we have an edid check it matches the connection */
2161 drm_edid = intel_sdvo_get_edid(connector);
2163 drm_edid = intel_sdvo_get_analog_edid(connector);
2165 if (intel_sdvo_connector_matches_edid(intel_sdvo_connector,
2167 ret = connector_status_connected;
2169 ret = connector_status_disconnected;
2171 drm_edid_free(drm_edid);
2173 ret = connector_status_connected;
2180 static int intel_sdvo_get_ddc_modes(struct drm_connector *connector)
2183 const struct drm_edid *drm_edid;
2185 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2186 connector->base.id, connector->name);
2188 /* set the bus switch and get the modes */
2189 drm_edid = intel_sdvo_get_edid(connector);
2192 * Mac mini hack. On this device, the DVI-I connector shares one DDC
2193 * link between analog and digital outputs. So, if the regular SDVO
2194 * DDC fails, check to see if the analog output is disconnected, in
2195 * which case we'll look there for the digital DDC data.
2198 drm_edid = intel_sdvo_get_analog_edid(connector);
2203 if (intel_sdvo_connector_matches_edid(to_intel_sdvo_connector(connector),
2205 num_modes += intel_connector_update_modes(connector, drm_edid);
2207 drm_edid_free(drm_edid);
2213 * Set of SDVO TV modes.
2214 * Note! This is in reply order (see loop in get_tv_modes).
2215 * XXX: all 60Hz refresh?
2217 static const struct drm_display_mode sdvo_tv_modes[] = {
2218 { DRM_MODE("320x200", DRM_MODE_TYPE_DRIVER, 5815, 320, 321, 384,
2219 416, 0, 200, 201, 232, 233, 0,
2220 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2221 { DRM_MODE("320x240", DRM_MODE_TYPE_DRIVER, 6814, 320, 321, 384,
2222 416, 0, 240, 241, 272, 273, 0,
2223 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2224 { DRM_MODE("400x300", DRM_MODE_TYPE_DRIVER, 9910, 400, 401, 464,
2225 496, 0, 300, 301, 332, 333, 0,
2226 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2227 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 16913, 640, 641, 704,
2228 736, 0, 350, 351, 382, 383, 0,
2229 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2230 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 19121, 640, 641, 704,
2231 736, 0, 400, 401, 432, 433, 0,
2232 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2233 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 22654, 640, 641, 704,
2234 736, 0, 480, 481, 512, 513, 0,
2235 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2236 { DRM_MODE("704x480", DRM_MODE_TYPE_DRIVER, 24624, 704, 705, 768,
2237 800, 0, 480, 481, 512, 513, 0,
2238 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2239 { DRM_MODE("704x576", DRM_MODE_TYPE_DRIVER, 29232, 704, 705, 768,
2240 800, 0, 576, 577, 608, 609, 0,
2241 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2242 { DRM_MODE("720x350", DRM_MODE_TYPE_DRIVER, 18751, 720, 721, 784,
2243 816, 0, 350, 351, 382, 383, 0,
2244 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2245 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 21199, 720, 721, 784,
2246 816, 0, 400, 401, 432, 433, 0,
2247 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2248 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 25116, 720, 721, 784,
2249 816, 0, 480, 481, 512, 513, 0,
2250 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2251 { DRM_MODE("720x540", DRM_MODE_TYPE_DRIVER, 28054, 720, 721, 784,
2252 816, 0, 540, 541, 572, 573, 0,
2253 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2254 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 29816, 720, 721, 784,
2255 816, 0, 576, 577, 608, 609, 0,
2256 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2257 { DRM_MODE("768x576", DRM_MODE_TYPE_DRIVER, 31570, 768, 769, 832,
2258 864, 0, 576, 577, 608, 609, 0,
2259 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2260 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 34030, 800, 801, 864,
2261 896, 0, 600, 601, 632, 633, 0,
2262 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2263 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 36581, 832, 833, 896,
2264 928, 0, 624, 625, 656, 657, 0,
2265 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2266 { DRM_MODE("920x766", DRM_MODE_TYPE_DRIVER, 48707, 920, 921, 984,
2267 1016, 0, 766, 767, 798, 799, 0,
2268 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2269 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 53827, 1024, 1025, 1088,
2270 1120, 0, 768, 769, 800, 801, 0,
2271 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2272 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 87265, 1280, 1281, 1344,
2273 1376, 0, 1024, 1025, 1056, 1057, 0,
2274 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
2277 static int intel_sdvo_get_tv_modes(struct drm_connector *connector)
2279 struct intel_sdvo *intel_sdvo = intel_attached_sdvo(to_intel_connector(connector));
2280 struct intel_sdvo_connector *intel_sdvo_connector =
2281 to_intel_sdvo_connector(connector);
2282 const struct drm_connector_state *conn_state = connector->state;
2283 struct intel_sdvo_sdtv_resolution_request tv_res;
2284 u32 reply = 0, format_map = 0;
2288 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2289 connector->base.id, connector->name);
2292 * Read the list of supported input resolutions for the selected TV
2295 format_map = 1 << conn_state->tv.mode;
2296 memcpy(&tv_res, &format_map,
2297 min(sizeof(format_map), sizeof(struct intel_sdvo_sdtv_resolution_request)));
2299 if (!intel_sdvo_set_target_output(intel_sdvo, intel_sdvo_connector->output_flag))
2302 BUILD_BUG_ON(sizeof(tv_res) != 3);
2303 if (!intel_sdvo_write_cmd(intel_sdvo,
2304 SDVO_CMD_GET_SDTV_RESOLUTION_SUPPORT,
2305 &tv_res, sizeof(tv_res)))
2307 if (!intel_sdvo_read_response(intel_sdvo, &reply, 3))
2310 for (i = 0; i < ARRAY_SIZE(sdvo_tv_modes); i++) {
2311 if (reply & (1 << i)) {
2312 struct drm_display_mode *nmode;
2313 nmode = drm_mode_duplicate(connector->dev,
2316 drm_mode_probed_add(connector, nmode);
2325 static int intel_sdvo_get_lvds_modes(struct drm_connector *connector)
2327 struct drm_i915_private *dev_priv = to_i915(connector->dev);
2329 drm_dbg_kms(&dev_priv->drm, "[CONNECTOR:%d:%s]\n",
2330 connector->base.id, connector->name);
2332 return intel_panel_get_modes(to_intel_connector(connector));
2335 static int intel_sdvo_get_modes(struct drm_connector *connector)
2337 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
2339 if (IS_TV(intel_sdvo_connector))
2340 return intel_sdvo_get_tv_modes(connector);
2341 else if (IS_LVDS(intel_sdvo_connector))
2342 return intel_sdvo_get_lvds_modes(connector);
2344 return intel_sdvo_get_ddc_modes(connector);
2348 intel_sdvo_connector_atomic_get_property(struct drm_connector *connector,
2349 const struct drm_connector_state *state,
2350 struct drm_property *property,
2353 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
2354 const struct intel_sdvo_connector_state *sdvo_state = to_intel_sdvo_connector_state((void *)state);
2356 if (property == intel_sdvo_connector->tv_format) {
2359 for (i = 0; i < intel_sdvo_connector->format_supported_num; i++)
2360 if (state->tv.mode == intel_sdvo_connector->tv_format_supported[i]) {
2366 drm_WARN_ON(connector->dev, 1);
2368 } else if (property == intel_sdvo_connector->top ||
2369 property == intel_sdvo_connector->bottom)
2370 *val = intel_sdvo_connector->max_vscan - sdvo_state->tv.overscan_v;
2371 else if (property == intel_sdvo_connector->left ||
2372 property == intel_sdvo_connector->right)
2373 *val = intel_sdvo_connector->max_hscan - sdvo_state->tv.overscan_h;
2374 else if (property == intel_sdvo_connector->hpos)
2375 *val = sdvo_state->tv.hpos;
2376 else if (property == intel_sdvo_connector->vpos)
2377 *val = sdvo_state->tv.vpos;
2378 else if (property == intel_sdvo_connector->saturation)
2379 *val = state->tv.saturation;
2380 else if (property == intel_sdvo_connector->contrast)
2381 *val = state->tv.contrast;
2382 else if (property == intel_sdvo_connector->hue)
2383 *val = state->tv.hue;
2384 else if (property == intel_sdvo_connector->brightness)
2385 *val = state->tv.brightness;
2386 else if (property == intel_sdvo_connector->sharpness)
2387 *val = sdvo_state->tv.sharpness;
2388 else if (property == intel_sdvo_connector->flicker_filter)
2389 *val = sdvo_state->tv.flicker_filter;
2390 else if (property == intel_sdvo_connector->flicker_filter_2d)
2391 *val = sdvo_state->tv.flicker_filter_2d;
2392 else if (property == intel_sdvo_connector->flicker_filter_adaptive)
2393 *val = sdvo_state->tv.flicker_filter_adaptive;
2394 else if (property == intel_sdvo_connector->tv_chroma_filter)
2395 *val = sdvo_state->tv.chroma_filter;
2396 else if (property == intel_sdvo_connector->tv_luma_filter)
2397 *val = sdvo_state->tv.luma_filter;
2398 else if (property == intel_sdvo_connector->dot_crawl)
2399 *val = sdvo_state->tv.dot_crawl;
2401 return intel_digital_connector_atomic_get_property(connector, state, property, val);
2407 intel_sdvo_connector_atomic_set_property(struct drm_connector *connector,
2408 struct drm_connector_state *state,
2409 struct drm_property *property,
2412 struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector);
2413 struct intel_sdvo_connector_state *sdvo_state = to_intel_sdvo_connector_state(state);
2415 if (property == intel_sdvo_connector->tv_format) {
2416 state->tv.mode = intel_sdvo_connector->tv_format_supported[val];
2419 struct drm_crtc_state *crtc_state =
2420 drm_atomic_get_new_crtc_state(state->state, state->crtc);
2422 crtc_state->connectors_changed = true;
2424 } else if (property == intel_sdvo_connector->top ||
2425 property == intel_sdvo_connector->bottom)
2426 /* Cannot set these independent from each other */
2427 sdvo_state->tv.overscan_v = intel_sdvo_connector->max_vscan - val;
2428 else if (property == intel_sdvo_connector->left ||
2429 property == intel_sdvo_connector->right)
2430 /* Cannot set these independent from each other */
2431 sdvo_state->tv.overscan_h = intel_sdvo_connector->max_hscan - val;
2432 else if (property == intel_sdvo_connector->hpos)
2433 sdvo_state->tv.hpos = val;
2434 else if (property == intel_sdvo_connector->vpos)
2435 sdvo_state->tv.vpos = val;
2436 else if (property == intel_sdvo_connector->saturation)
2437 state->tv.saturation = val;
2438 else if (property == intel_sdvo_connector->contrast)
2439 state->tv.contrast = val;
2440 else if (property == intel_sdvo_connector->hue)
2441 state->tv.hue = val;
2442 else if (property == intel_sdvo_connector->brightness)
2443 state->tv.brightness = val;
2444 else if (property == intel_sdvo_connector->sharpness)
2445 sdvo_state->tv.sharpness = val;
2446 else if (property == intel_sdvo_connector->flicker_filter)
2447 sdvo_state->tv.flicker_filter = val;
2448 else if (property == intel_sdvo_connector->flicker_filter_2d)
2449 sdvo_state->tv.flicker_filter_2d = val;
2450 else if (property == intel_sdvo_connector->flicker_filter_adaptive)
2451 sdvo_state->tv.flicker_filter_adaptive = val;
2452 else if (property == intel_sdvo_connector->tv_chroma_filter)
2453 sdvo_state->tv.chroma_filter = val;
2454 else if (property == intel_sdvo_connector->tv_luma_filter)
2455 sdvo_state->tv.luma_filter = val;
2456 else if (property == intel_sdvo_connector->dot_crawl)
2457 sdvo_state->tv.dot_crawl = val;
2459 return intel_digital_connector_atomic_set_property(connector, state, property, val);
2464 static struct drm_connector_state *
2465 intel_sdvo_connector_duplicate_state(struct drm_connector *connector)
2467 struct intel_sdvo_connector_state *state;
2469 state = kmemdup(connector->state, sizeof(*state), GFP_KERNEL);
2473 __drm_atomic_helper_connector_duplicate_state(connector, &state->base.base);
2474 return &state->base.base;
2477 static const struct drm_connector_funcs intel_sdvo_connector_funcs = {
2478 .detect = intel_sdvo_detect,
2479 .fill_modes = drm_helper_probe_single_connector_modes,
2480 .atomic_get_property = intel_sdvo_connector_atomic_get_property,
2481 .atomic_set_property = intel_sdvo_connector_atomic_set_property,
2482 .late_register = intel_connector_register,
2483 .early_unregister = intel_connector_unregister,
2484 .destroy = intel_connector_destroy,
2485 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
2486 .atomic_duplicate_state = intel_sdvo_connector_duplicate_state,
2489 static int intel_sdvo_atomic_check(struct drm_connector *conn,
2490 struct drm_atomic_state *state)
2492 struct drm_connector_state *new_conn_state =
2493 drm_atomic_get_new_connector_state(state, conn);
2494 struct drm_connector_state *old_conn_state =
2495 drm_atomic_get_old_connector_state(state, conn);
2496 struct intel_sdvo_connector_state *old_state =
2497 to_intel_sdvo_connector_state(old_conn_state);
2498 struct intel_sdvo_connector_state *new_state =
2499 to_intel_sdvo_connector_state(new_conn_state);
2501 if (new_conn_state->crtc &&
2502 (memcmp(&old_state->tv, &new_state->tv, sizeof(old_state->tv)) ||
2503 memcmp(&old_conn_state->tv, &new_conn_state->tv, sizeof(old_conn_state->tv)))) {
2504 struct drm_crtc_state *crtc_state =
2505 drm_atomic_get_new_crtc_state(state,
2506 new_conn_state->crtc);
2508 crtc_state->connectors_changed = true;
2511 return intel_digital_connector_atomic_check(conn, state);
2514 static const struct drm_connector_helper_funcs intel_sdvo_connector_helper_funcs = {
2515 .get_modes = intel_sdvo_get_modes,
2516 .mode_valid = intel_sdvo_mode_valid,
2517 .atomic_check = intel_sdvo_atomic_check,
2520 static void intel_sdvo_encoder_destroy(struct drm_encoder *_encoder)
2522 struct intel_encoder *encoder = to_intel_encoder(_encoder);
2523 struct intel_sdvo *sdvo = to_sdvo(encoder);
2526 for (i = 0; i < ARRAY_SIZE(sdvo->ddc); i++) {
2527 if (sdvo->ddc[i].ddc_bus)
2528 i2c_del_adapter(&sdvo->ddc[i].ddc);
2531 drm_encoder_cleanup(&encoder->base);
2535 static const struct drm_encoder_funcs intel_sdvo_enc_funcs = {
2536 .destroy = intel_sdvo_encoder_destroy,
2540 intel_sdvo_guess_ddc_bus(struct intel_sdvo *sdvo,
2541 struct intel_sdvo_connector *connector)
2547 * Make a mask of outputs less than or equal to our own priority in the
2550 switch (connector->output_flag) {
2551 case SDVO_OUTPUT_LVDS1:
2552 mask |= SDVO_OUTPUT_LVDS1;
2554 case SDVO_OUTPUT_LVDS0:
2555 mask |= SDVO_OUTPUT_LVDS0;
2557 case SDVO_OUTPUT_TMDS1:
2558 mask |= SDVO_OUTPUT_TMDS1;
2560 case SDVO_OUTPUT_TMDS0:
2561 mask |= SDVO_OUTPUT_TMDS0;
2563 case SDVO_OUTPUT_RGB1:
2564 mask |= SDVO_OUTPUT_RGB1;
2566 case SDVO_OUTPUT_RGB0:
2567 mask |= SDVO_OUTPUT_RGB0;
2571 /* Count bits to find what number we are in the priority list. */
2572 mask &= sdvo->caps.output_flags;
2573 num_bits = hweight16(mask);
2574 /* If more than 3 outputs, default to DDC bus 3 for now. */
2578 /* Corresponds to SDVO_CONTROL_BUS_DDCx */
2583 * Choose the appropriate DDC bus for control bus switch command for this
2584 * SDVO output based on the controlled output.
2586 * DDC bus number assignment is in a priority order of RGB outputs, then TMDS
2587 * outputs, then LVDS outputs.
2589 static struct intel_sdvo_ddc *
2590 intel_sdvo_select_ddc_bus(struct intel_sdvo *sdvo,
2591 struct intel_sdvo_connector *connector)
2593 struct drm_i915_private *dev_priv = to_i915(sdvo->base.base.dev);
2594 const struct sdvo_device_mapping *mapping;
2597 if (sdvo->base.port == PORT_B)
2598 mapping = &dev_priv->display.vbt.sdvo_mappings[0];
2600 mapping = &dev_priv->display.vbt.sdvo_mappings[1];
2602 if (mapping->initialized)
2603 ddc_bus = (mapping->ddc_pin & 0xf0) >> 4;
2605 ddc_bus = intel_sdvo_guess_ddc_bus(sdvo, connector);
2607 if (ddc_bus < 1 || ddc_bus > 3)
2610 return &sdvo->ddc[ddc_bus - 1];
2614 intel_sdvo_select_i2c_bus(struct intel_sdvo *sdvo)
2616 struct drm_i915_private *dev_priv = to_i915(sdvo->base.base.dev);
2617 const struct sdvo_device_mapping *mapping;
2620 if (sdvo->base.port == PORT_B)
2621 mapping = &dev_priv->display.vbt.sdvo_mappings[0];
2623 mapping = &dev_priv->display.vbt.sdvo_mappings[1];
2625 if (mapping->initialized &&
2626 intel_gmbus_is_valid_pin(dev_priv, mapping->i2c_pin))
2627 pin = mapping->i2c_pin;
2629 pin = GMBUS_PIN_DPB;
2631 drm_dbg_kms(&dev_priv->drm, "[ENCODER:%d:%s] I2C pin %d, slave addr 0x%x\n",
2632 sdvo->base.base.base.id, sdvo->base.base.name,
2633 pin, sdvo->slave_addr);
2635 sdvo->i2c = intel_gmbus_get_adapter(dev_priv, pin);
2638 * With gmbus we should be able to drive sdvo i2c at 2MHz, but somehow
2639 * our code totally fails once we start using gmbus. Hence fall back to
2640 * bit banging for now.
2642 intel_gmbus_force_bit(sdvo->i2c, true);
2645 /* undo any changes intel_sdvo_select_i2c_bus() did to sdvo->i2c */
2647 intel_sdvo_unselect_i2c_bus(struct intel_sdvo *sdvo)
2649 intel_gmbus_force_bit(sdvo->i2c, false);
2653 intel_sdvo_is_hdmi_connector(struct intel_sdvo *intel_sdvo)
2655 return intel_sdvo_check_supp_encode(intel_sdvo);
2659 intel_sdvo_get_slave_addr(struct intel_sdvo *sdvo)
2661 struct drm_i915_private *dev_priv = to_i915(sdvo->base.base.dev);
2662 const struct sdvo_device_mapping *my_mapping, *other_mapping;
2664 if (sdvo->base.port == PORT_B) {
2665 my_mapping = &dev_priv->display.vbt.sdvo_mappings[0];
2666 other_mapping = &dev_priv->display.vbt.sdvo_mappings[1];
2668 my_mapping = &dev_priv->display.vbt.sdvo_mappings[1];
2669 other_mapping = &dev_priv->display.vbt.sdvo_mappings[0];
2672 /* If the BIOS described our SDVO device, take advantage of it. */
2673 if (my_mapping->slave_addr)
2674 return my_mapping->slave_addr;
2677 * If the BIOS only described a different SDVO device, use the
2678 * address that it isn't using.
2680 if (other_mapping->slave_addr) {
2681 if (other_mapping->slave_addr == 0x70)
2688 * No SDVO device info is found for another DVO port,
2689 * so use mapping assumption we had before BIOS parsing.
2691 if (sdvo->base.port == PORT_B)
2698 intel_sdvo_init_ddc_proxy(struct intel_sdvo_ddc *ddc,
2699 struct intel_sdvo *sdvo, int bit);
2702 intel_sdvo_connector_init(struct intel_sdvo_connector *connector,
2703 struct intel_sdvo *encoder)
2705 struct drm_i915_private *i915 = to_i915(encoder->base.base.dev);
2706 struct intel_sdvo_ddc *ddc = NULL;
2709 if (HAS_DDC(connector))
2710 ddc = intel_sdvo_select_ddc_bus(encoder, connector);
2712 ret = drm_connector_init_with_ddc(encoder->base.base.dev,
2713 &connector->base.base,
2714 &intel_sdvo_connector_funcs,
2715 connector->base.base.connector_type,
2716 ddc ? &ddc->ddc : NULL);
2720 drm_connector_helper_add(&connector->base.base,
2721 &intel_sdvo_connector_helper_funcs);
2723 connector->base.base.display_info.subpixel_order = SubPixelHorizontalRGB;
2724 connector->base.base.interlace_allowed = true;
2725 connector->base.get_hw_state = intel_sdvo_connector_get_hw_state;
2727 intel_connector_attach_encoder(&connector->base, &encoder->base);
2730 drm_dbg_kms(&i915->drm, "[CONNECTOR:%d:%s] using %s\n",
2731 connector->base.base.base.id, connector->base.base.name,
2738 intel_sdvo_add_hdmi_properties(struct intel_sdvo *intel_sdvo,
2739 struct intel_sdvo_connector *connector)
2741 intel_attach_force_audio_property(&connector->base.base);
2742 if (intel_sdvo->colorimetry_cap & SDVO_COLORIMETRY_RGB220)
2743 intel_attach_broadcast_rgb_property(&connector->base.base);
2744 intel_attach_aspect_ratio_property(&connector->base.base);
2747 static struct intel_sdvo_connector *intel_sdvo_connector_alloc(void)
2749 struct intel_sdvo_connector *sdvo_connector;
2750 struct intel_sdvo_connector_state *conn_state;
2752 sdvo_connector = kzalloc(sizeof(*sdvo_connector), GFP_KERNEL);
2753 if (!sdvo_connector)
2756 conn_state = kzalloc(sizeof(*conn_state), GFP_KERNEL);
2758 kfree(sdvo_connector);
2762 __drm_atomic_helper_connector_reset(&sdvo_connector->base.base,
2763 &conn_state->base.base);
2765 intel_panel_init_alloc(&sdvo_connector->base);
2767 return sdvo_connector;
2771 intel_sdvo_dvi_init(struct intel_sdvo *intel_sdvo, u16 type)
2773 struct drm_encoder *encoder = &intel_sdvo->base.base;
2774 struct drm_connector *connector;
2775 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
2776 struct intel_connector *intel_connector;
2777 struct intel_sdvo_connector *intel_sdvo_connector;
2779 DRM_DEBUG_KMS("initialising DVI type 0x%x\n", type);
2781 intel_sdvo_connector = intel_sdvo_connector_alloc();
2782 if (!intel_sdvo_connector)
2785 intel_sdvo_connector->output_flag = type;
2787 intel_connector = &intel_sdvo_connector->base;
2788 connector = &intel_connector->base;
2789 if (intel_sdvo_get_hotplug_support(intel_sdvo) &
2790 intel_sdvo_connector->output_flag) {
2791 intel_sdvo->hotplug_active |= intel_sdvo_connector->output_flag;
2793 * Some SDVO devices have one-shot hotplug interrupts.
2794 * Ensure that they get re-enabled when an interrupt happens.
2796 intel_connector->polled = DRM_CONNECTOR_POLL_HPD;
2797 intel_encoder->hotplug = intel_sdvo_hotplug;
2798 intel_sdvo_enable_hotplug(intel_encoder);
2800 intel_connector->polled = DRM_CONNECTOR_POLL_CONNECT | DRM_CONNECTOR_POLL_DISCONNECT;
2802 encoder->encoder_type = DRM_MODE_ENCODER_TMDS;
2803 connector->connector_type = DRM_MODE_CONNECTOR_DVID;
2805 if (intel_sdvo_is_hdmi_connector(intel_sdvo)) {
2806 connector->connector_type = DRM_MODE_CONNECTOR_HDMIA;
2807 intel_sdvo_connector->is_hdmi = true;
2810 if (intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo) < 0) {
2811 kfree(intel_sdvo_connector);
2815 if (intel_sdvo_connector->is_hdmi)
2816 intel_sdvo_add_hdmi_properties(intel_sdvo, intel_sdvo_connector);
2822 intel_sdvo_tv_init(struct intel_sdvo *intel_sdvo, u16 type)
2824 struct drm_encoder *encoder = &intel_sdvo->base.base;
2825 struct drm_connector *connector;
2826 struct intel_connector *intel_connector;
2827 struct intel_sdvo_connector *intel_sdvo_connector;
2829 DRM_DEBUG_KMS("initialising TV type 0x%x\n", type);
2831 intel_sdvo_connector = intel_sdvo_connector_alloc();
2832 if (!intel_sdvo_connector)
2835 intel_connector = &intel_sdvo_connector->base;
2836 connector = &intel_connector->base;
2837 encoder->encoder_type = DRM_MODE_ENCODER_TVDAC;
2838 connector->connector_type = DRM_MODE_CONNECTOR_SVIDEO;
2840 intel_sdvo_connector->output_flag = type;
2842 if (intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo) < 0) {
2843 kfree(intel_sdvo_connector);
2847 if (!intel_sdvo_tv_create_property(intel_sdvo, intel_sdvo_connector, type))
2850 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
2856 intel_connector_destroy(connector);
2861 intel_sdvo_analog_init(struct intel_sdvo *intel_sdvo, u16 type)
2863 struct drm_encoder *encoder = &intel_sdvo->base.base;
2864 struct drm_connector *connector;
2865 struct intel_connector *intel_connector;
2866 struct intel_sdvo_connector *intel_sdvo_connector;
2868 DRM_DEBUG_KMS("initialising analog type 0x%x\n", type);
2870 intel_sdvo_connector = intel_sdvo_connector_alloc();
2871 if (!intel_sdvo_connector)
2874 intel_connector = &intel_sdvo_connector->base;
2875 connector = &intel_connector->base;
2876 intel_connector->polled = DRM_CONNECTOR_POLL_CONNECT;
2877 encoder->encoder_type = DRM_MODE_ENCODER_DAC;
2878 connector->connector_type = DRM_MODE_CONNECTOR_VGA;
2880 intel_sdvo_connector->output_flag = type;
2882 if (intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo) < 0) {
2883 kfree(intel_sdvo_connector);
2891 intel_sdvo_lvds_init(struct intel_sdvo *intel_sdvo, u16 type)
2893 struct drm_encoder *encoder = &intel_sdvo->base.base;
2894 struct drm_i915_private *i915 = to_i915(encoder->dev);
2895 struct drm_connector *connector;
2896 struct intel_connector *intel_connector;
2897 struct intel_sdvo_connector *intel_sdvo_connector;
2899 DRM_DEBUG_KMS("initialising LVDS type 0x%x\n", type);
2901 intel_sdvo_connector = intel_sdvo_connector_alloc();
2902 if (!intel_sdvo_connector)
2905 intel_connector = &intel_sdvo_connector->base;
2906 connector = &intel_connector->base;
2907 encoder->encoder_type = DRM_MODE_ENCODER_LVDS;
2908 connector->connector_type = DRM_MODE_CONNECTOR_LVDS;
2910 intel_sdvo_connector->output_flag = type;
2912 if (intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo) < 0) {
2913 kfree(intel_sdvo_connector);
2917 if (!intel_sdvo_create_enhance_property(intel_sdvo, intel_sdvo_connector))
2920 intel_bios_init_panel_late(i915, &intel_connector->panel, NULL, NULL);
2923 * Fetch modes from VBT. For SDVO prefer the VBT mode since some
2924 * SDVO->LVDS transcoders can't cope with the EDID mode.
2926 intel_panel_add_vbt_sdvo_fixed_mode(intel_connector);
2928 if (!intel_panel_preferred_fixed_mode(intel_connector)) {
2929 mutex_lock(&i915->drm.mode_config.mutex);
2931 intel_ddc_get_modes(connector, connector->ddc);
2932 intel_panel_add_edid_fixed_modes(intel_connector, false);
2934 mutex_unlock(&i915->drm.mode_config.mutex);
2937 intel_panel_init(intel_connector, NULL);
2939 if (!intel_panel_preferred_fixed_mode(intel_connector))
2945 intel_connector_destroy(connector);
2949 static u16 intel_sdvo_filter_output_flags(u16 flags)
2951 flags &= SDVO_OUTPUT_MASK;
2953 /* SDVO requires XXX1 function may not exist unless it has XXX0 function.*/
2954 if (!(flags & SDVO_OUTPUT_TMDS0))
2955 flags &= ~SDVO_OUTPUT_TMDS1;
2957 if (!(flags & SDVO_OUTPUT_RGB0))
2958 flags &= ~SDVO_OUTPUT_RGB1;
2960 if (!(flags & SDVO_OUTPUT_LVDS0))
2961 flags &= ~SDVO_OUTPUT_LVDS1;
2966 static bool intel_sdvo_output_init(struct intel_sdvo *sdvo, u16 type)
2968 if (type & SDVO_TMDS_MASK)
2969 return intel_sdvo_dvi_init(sdvo, type);
2970 else if (type & SDVO_TV_MASK)
2971 return intel_sdvo_tv_init(sdvo, type);
2972 else if (type & SDVO_RGB_MASK)
2973 return intel_sdvo_analog_init(sdvo, type);
2974 else if (type & SDVO_LVDS_MASK)
2975 return intel_sdvo_lvds_init(sdvo, type);
2981 intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo)
2983 static const u16 probe_order[] = {
2986 /* TV has no XXX1 function block */
2998 flags = intel_sdvo_filter_output_flags(intel_sdvo->caps.output_flags);
3001 DRM_DEBUG_KMS("%s: Unknown SDVO output type (0x%04x)\n",
3002 SDVO_NAME(intel_sdvo), intel_sdvo->caps.output_flags);
3006 for (i = 0; i < ARRAY_SIZE(probe_order); i++) {
3007 u16 type = flags & probe_order[i];
3012 if (!intel_sdvo_output_init(intel_sdvo, type))
3016 intel_sdvo->base.pipe_mask = ~0;
3021 static void intel_sdvo_output_cleanup(struct intel_sdvo *intel_sdvo)
3023 struct drm_device *dev = intel_sdvo->base.base.dev;
3024 struct drm_connector *connector, *tmp;
3026 list_for_each_entry_safe(connector, tmp,
3027 &dev->mode_config.connector_list, head) {
3028 if (intel_attached_encoder(to_intel_connector(connector)) == &intel_sdvo->base) {
3029 drm_connector_unregister(connector);
3030 intel_connector_destroy(connector);
3035 static bool intel_sdvo_tv_create_property(struct intel_sdvo *intel_sdvo,
3036 struct intel_sdvo_connector *intel_sdvo_connector,
3039 struct drm_device *dev = intel_sdvo->base.base.dev;
3040 struct intel_sdvo_tv_format format;
3043 if (!intel_sdvo_set_target_output(intel_sdvo, type))
3046 BUILD_BUG_ON(sizeof(format) != 6);
3047 if (!intel_sdvo_get_value(intel_sdvo,
3048 SDVO_CMD_GET_SUPPORTED_TV_FORMATS,
3049 &format, sizeof(format)))
3052 memcpy(&format_map, &format, min(sizeof(format_map), sizeof(format)));
3054 if (format_map == 0)
3057 intel_sdvo_connector->format_supported_num = 0;
3058 for (i = 0 ; i < TV_FORMAT_NUM; i++)
3059 if (format_map & (1 << i))
3060 intel_sdvo_connector->tv_format_supported[intel_sdvo_connector->format_supported_num++] = i;
3063 intel_sdvo_connector->tv_format =
3064 drm_property_create(dev, DRM_MODE_PROP_ENUM,
3065 "mode", intel_sdvo_connector->format_supported_num);
3066 if (!intel_sdvo_connector->tv_format)
3069 for (i = 0; i < intel_sdvo_connector->format_supported_num; i++)
3070 drm_property_add_enum(intel_sdvo_connector->tv_format, i,
3071 tv_format_names[intel_sdvo_connector->tv_format_supported[i]]);
3073 intel_sdvo_connector->base.base.state->tv.mode = intel_sdvo_connector->tv_format_supported[0];
3074 drm_object_attach_property(&intel_sdvo_connector->base.base.base,
3075 intel_sdvo_connector->tv_format, 0);
3080 #define _ENHANCEMENT(state_assignment, name, NAME) do { \
3081 if (enhancements.name) { \
3082 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_MAX_##NAME, &data_value, 4) || \
3083 !intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_##NAME, &response, 2)) \
3085 intel_sdvo_connector->name = \
3086 drm_property_create_range(dev, 0, #name, 0, data_value[0]); \
3087 if (!intel_sdvo_connector->name) return false; \
3088 state_assignment = response; \
3089 drm_object_attach_property(&connector->base, \
3090 intel_sdvo_connector->name, 0); \
3091 DRM_DEBUG_KMS(#name ": max %d, default %d, current %d\n", \
3092 data_value[0], data_value[1], response); \
3096 #define ENHANCEMENT(state, name, NAME) _ENHANCEMENT((state)->name, name, NAME)
3099 intel_sdvo_create_enhance_property_tv(struct intel_sdvo *intel_sdvo,
3100 struct intel_sdvo_connector *intel_sdvo_connector,
3101 struct intel_sdvo_enhancements_reply enhancements)
3103 struct drm_device *dev = intel_sdvo->base.base.dev;
3104 struct drm_connector *connector = &intel_sdvo_connector->base.base;
3105 struct drm_connector_state *conn_state = connector->state;
3106 struct intel_sdvo_connector_state *sdvo_state =
3107 to_intel_sdvo_connector_state(conn_state);
3108 u16 response, data_value[2];
3110 /* when horizontal overscan is supported, Add the left/right property */
3111 if (enhancements.overscan_h) {
3112 if (!intel_sdvo_get_value(intel_sdvo,
3113 SDVO_CMD_GET_MAX_OVERSCAN_H,
3117 if (!intel_sdvo_get_value(intel_sdvo,
3118 SDVO_CMD_GET_OVERSCAN_H,
3122 sdvo_state->tv.overscan_h = response;
3124 intel_sdvo_connector->max_hscan = data_value[0];
3125 intel_sdvo_connector->left =
3126 drm_property_create_range(dev, 0, "left_margin", 0, data_value[0]);
3127 if (!intel_sdvo_connector->left)
3130 drm_object_attach_property(&connector->base,
3131 intel_sdvo_connector->left, 0);
3133 intel_sdvo_connector->right =
3134 drm_property_create_range(dev, 0, "right_margin", 0, data_value[0]);
3135 if (!intel_sdvo_connector->right)
3138 drm_object_attach_property(&connector->base,
3139 intel_sdvo_connector->right, 0);
3140 DRM_DEBUG_KMS("h_overscan: max %d, "
3141 "default %d, current %d\n",
3142 data_value[0], data_value[1], response);
3145 if (enhancements.overscan_v) {
3146 if (!intel_sdvo_get_value(intel_sdvo,
3147 SDVO_CMD_GET_MAX_OVERSCAN_V,
3151 if (!intel_sdvo_get_value(intel_sdvo,
3152 SDVO_CMD_GET_OVERSCAN_V,
3156 sdvo_state->tv.overscan_v = response;
3158 intel_sdvo_connector->max_vscan = data_value[0];
3159 intel_sdvo_connector->top =
3160 drm_property_create_range(dev, 0,
3161 "top_margin", 0, data_value[0]);
3162 if (!intel_sdvo_connector->top)
3165 drm_object_attach_property(&connector->base,
3166 intel_sdvo_connector->top, 0);
3168 intel_sdvo_connector->bottom =
3169 drm_property_create_range(dev, 0,
3170 "bottom_margin", 0, data_value[0]);
3171 if (!intel_sdvo_connector->bottom)
3174 drm_object_attach_property(&connector->base,
3175 intel_sdvo_connector->bottom, 0);
3176 DRM_DEBUG_KMS("v_overscan: max %d, "
3177 "default %d, current %d\n",
3178 data_value[0], data_value[1], response);
3181 ENHANCEMENT(&sdvo_state->tv, hpos, HPOS);
3182 ENHANCEMENT(&sdvo_state->tv, vpos, VPOS);
3183 ENHANCEMENT(&conn_state->tv, saturation, SATURATION);
3184 ENHANCEMENT(&conn_state->tv, contrast, CONTRAST);
3185 ENHANCEMENT(&conn_state->tv, hue, HUE);
3186 ENHANCEMENT(&conn_state->tv, brightness, BRIGHTNESS);
3187 ENHANCEMENT(&sdvo_state->tv, sharpness, SHARPNESS);
3188 ENHANCEMENT(&sdvo_state->tv, flicker_filter, FLICKER_FILTER);
3189 ENHANCEMENT(&sdvo_state->tv, flicker_filter_adaptive, FLICKER_FILTER_ADAPTIVE);
3190 ENHANCEMENT(&sdvo_state->tv, flicker_filter_2d, FLICKER_FILTER_2D);
3191 _ENHANCEMENT(sdvo_state->tv.chroma_filter, tv_chroma_filter, TV_CHROMA_FILTER);
3192 _ENHANCEMENT(sdvo_state->tv.luma_filter, tv_luma_filter, TV_LUMA_FILTER);
3194 if (enhancements.dot_crawl) {
3195 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_DOT_CRAWL, &response, 2))
3198 sdvo_state->tv.dot_crawl = response & 0x1;
3199 intel_sdvo_connector->dot_crawl =
3200 drm_property_create_range(dev, 0, "dot_crawl", 0, 1);
3201 if (!intel_sdvo_connector->dot_crawl)
3204 drm_object_attach_property(&connector->base,
3205 intel_sdvo_connector->dot_crawl, 0);
3206 DRM_DEBUG_KMS("dot crawl: current %d\n", response);
3213 intel_sdvo_create_enhance_property_lvds(struct intel_sdvo *intel_sdvo,
3214 struct intel_sdvo_connector *intel_sdvo_connector,
3215 struct intel_sdvo_enhancements_reply enhancements)
3217 struct drm_device *dev = intel_sdvo->base.base.dev;
3218 struct drm_connector *connector = &intel_sdvo_connector->base.base;
3219 u16 response, data_value[2];
3221 ENHANCEMENT(&connector->state->tv, brightness, BRIGHTNESS);
3228 static bool intel_sdvo_create_enhance_property(struct intel_sdvo *intel_sdvo,
3229 struct intel_sdvo_connector *intel_sdvo_connector)
3232 struct intel_sdvo_enhancements_reply reply;
3236 BUILD_BUG_ON(sizeof(enhancements) != 2);
3238 if (!intel_sdvo_get_value(intel_sdvo,
3239 SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS,
3240 &enhancements, sizeof(enhancements)) ||
3241 enhancements.response == 0) {
3242 DRM_DEBUG_KMS("No enhancement is supported\n");
3246 if (IS_TV(intel_sdvo_connector))
3247 return intel_sdvo_create_enhance_property_tv(intel_sdvo, intel_sdvo_connector, enhancements.reply);
3248 else if (IS_LVDS(intel_sdvo_connector))
3249 return intel_sdvo_create_enhance_property_lvds(intel_sdvo, intel_sdvo_connector, enhancements.reply);
3254 static int intel_sdvo_ddc_proxy_xfer(struct i2c_adapter *adapter,
3255 struct i2c_msg *msgs,
3258 struct intel_sdvo_ddc *ddc = adapter->algo_data;
3259 struct intel_sdvo *sdvo = ddc->sdvo;
3261 if (!__intel_sdvo_set_control_bus_switch(sdvo, 1 << ddc->ddc_bus))
3264 return sdvo->i2c->algo->master_xfer(sdvo->i2c, msgs, num);
3267 static u32 intel_sdvo_ddc_proxy_func(struct i2c_adapter *adapter)
3269 struct intel_sdvo_ddc *ddc = adapter->algo_data;
3270 struct intel_sdvo *sdvo = ddc->sdvo;
3272 return sdvo->i2c->algo->functionality(sdvo->i2c);
3275 static const struct i2c_algorithm intel_sdvo_ddc_proxy = {
3276 .master_xfer = intel_sdvo_ddc_proxy_xfer,
3277 .functionality = intel_sdvo_ddc_proxy_func
3280 static void proxy_lock_bus(struct i2c_adapter *adapter,
3283 struct intel_sdvo_ddc *ddc = adapter->algo_data;
3284 struct intel_sdvo *sdvo = ddc->sdvo;
3286 sdvo->i2c->lock_ops->lock_bus(sdvo->i2c, flags);
3289 static int proxy_trylock_bus(struct i2c_adapter *adapter,
3292 struct intel_sdvo_ddc *ddc = adapter->algo_data;
3293 struct intel_sdvo *sdvo = ddc->sdvo;
3295 return sdvo->i2c->lock_ops->trylock_bus(sdvo->i2c, flags);
3298 static void proxy_unlock_bus(struct i2c_adapter *adapter,
3301 struct intel_sdvo_ddc *ddc = adapter->algo_data;
3302 struct intel_sdvo *sdvo = ddc->sdvo;
3304 sdvo->i2c->lock_ops->unlock_bus(sdvo->i2c, flags);
3307 static const struct i2c_lock_operations proxy_lock_ops = {
3308 .lock_bus = proxy_lock_bus,
3309 .trylock_bus = proxy_trylock_bus,
3310 .unlock_bus = proxy_unlock_bus,
3314 intel_sdvo_init_ddc_proxy(struct intel_sdvo_ddc *ddc,
3315 struct intel_sdvo *sdvo, int ddc_bus)
3317 struct drm_i915_private *dev_priv = to_i915(sdvo->base.base.dev);
3318 struct pci_dev *pdev = to_pci_dev(dev_priv->drm.dev);
3321 ddc->ddc_bus = ddc_bus;
3323 ddc->ddc.owner = THIS_MODULE;
3324 ddc->ddc.class = I2C_CLASS_DDC;
3325 snprintf(ddc->ddc.name, I2C_NAME_SIZE, "SDVO %c DDC%d",
3326 port_name(sdvo->base.port), ddc_bus);
3327 ddc->ddc.dev.parent = &pdev->dev;
3328 ddc->ddc.algo_data = ddc;
3329 ddc->ddc.algo = &intel_sdvo_ddc_proxy;
3330 ddc->ddc.lock_ops = &proxy_lock_ops;
3332 return i2c_add_adapter(&ddc->ddc);
3335 static bool is_sdvo_port_valid(struct drm_i915_private *dev_priv, enum port port)
3337 if (HAS_PCH_SPLIT(dev_priv))
3338 return port == PORT_B;
3340 return port == PORT_B || port == PORT_C;
3343 static bool assert_sdvo_port_valid(struct drm_i915_private *dev_priv,
3346 return !drm_WARN(&dev_priv->drm, !is_sdvo_port_valid(dev_priv, port),
3347 "Platform does not support SDVO %c\n", port_name(port));
3350 bool intel_sdvo_init(struct drm_i915_private *dev_priv,
3351 i915_reg_t sdvo_reg, enum port port)
3353 struct intel_encoder *intel_encoder;
3354 struct intel_sdvo *intel_sdvo;
3357 if (!assert_port_valid(dev_priv, port))
3360 if (!assert_sdvo_port_valid(dev_priv, port))
3363 intel_sdvo = kzalloc(sizeof(*intel_sdvo), GFP_KERNEL);
3367 /* encoder type will be decided later */
3368 intel_encoder = &intel_sdvo->base;
3369 intel_encoder->type = INTEL_OUTPUT_SDVO;
3370 intel_encoder->power_domain = POWER_DOMAIN_PORT_OTHER;
3371 intel_encoder->port = port;
3373 drm_encoder_init(&dev_priv->drm, &intel_encoder->base,
3374 &intel_sdvo_enc_funcs, 0,
3375 "SDVO %c", port_name(port));
3377 intel_sdvo->sdvo_reg = sdvo_reg;
3378 intel_sdvo->slave_addr = intel_sdvo_get_slave_addr(intel_sdvo) >> 1;
3380 intel_sdvo_select_i2c_bus(intel_sdvo);
3382 /* Read the regs to test if we can talk to the device */
3383 for (i = 0; i < 0x40; i++) {
3386 if (!intel_sdvo_read_byte(intel_sdvo, i, &byte)) {
3387 drm_dbg_kms(&dev_priv->drm,
3388 "No SDVO device found on %s\n",
3389 SDVO_NAME(intel_sdvo));
3394 intel_encoder->compute_config = intel_sdvo_compute_config;
3395 if (HAS_PCH_SPLIT(dev_priv)) {
3396 intel_encoder->disable = pch_disable_sdvo;
3397 intel_encoder->post_disable = pch_post_disable_sdvo;
3399 intel_encoder->disable = intel_disable_sdvo;
3401 intel_encoder->pre_enable = intel_sdvo_pre_enable;
3402 intel_encoder->enable = intel_enable_sdvo;
3403 intel_encoder->audio_enable = intel_sdvo_enable_audio;
3404 intel_encoder->audio_disable = intel_sdvo_disable_audio;
3405 intel_encoder->get_hw_state = intel_sdvo_get_hw_state;
3406 intel_encoder->get_config = intel_sdvo_get_config;
3408 /* In default case sdvo lvds is false */
3409 if (!intel_sdvo_get_capabilities(intel_sdvo, &intel_sdvo->caps))
3412 intel_sdvo->colorimetry_cap =
3413 intel_sdvo_get_colorimetry_cap(intel_sdvo);
3415 for (i = 0; i < ARRAY_SIZE(intel_sdvo->ddc); i++) {
3418 ret = intel_sdvo_init_ddc_proxy(&intel_sdvo->ddc[i],
3424 if (!intel_sdvo_output_setup(intel_sdvo)) {
3425 drm_dbg_kms(&dev_priv->drm,
3426 "SDVO output failed to setup on %s\n",
3427 SDVO_NAME(intel_sdvo));
3428 /* Output_setup can leave behind connectors! */
3433 * Only enable the hotplug irq if we need it, to work around noisy
3436 if (intel_sdvo->hotplug_active) {
3437 if (intel_sdvo->base.port == PORT_B)
3438 intel_encoder->hpd_pin = HPD_SDVO_B;
3440 intel_encoder->hpd_pin = HPD_SDVO_C;
3444 * Cloning SDVO with anything is often impossible, since the SDVO
3445 * encoder can request a special input timing mode. And even if that's
3446 * not the case we have evidence that cloning a plain unscaled mode with
3447 * VGA doesn't really work. Furthermore the cloning flags are way too
3448 * simplistic anyway to express such constraints, so just give up on
3449 * cloning for SDVO encoders.
3451 intel_sdvo->base.cloneable = 0;
3453 /* Set the input timing to the screen. Assume always input 0. */
3454 if (!intel_sdvo_set_target_input(intel_sdvo))
3457 if (!intel_sdvo_get_input_pixel_clock_range(intel_sdvo,
3458 &intel_sdvo->pixel_clock_min,
3459 &intel_sdvo->pixel_clock_max))
3462 drm_dbg_kms(&dev_priv->drm, "%s device VID/DID: %02X:%02X.%02X, "
3463 "clock range %dMHz - %dMHz, "
3465 "output 1: %c, output 2: %c\n",
3466 SDVO_NAME(intel_sdvo),
3467 intel_sdvo->caps.vendor_id, intel_sdvo->caps.device_id,
3468 intel_sdvo->caps.device_rev_id,
3469 intel_sdvo->pixel_clock_min / 1000,
3470 intel_sdvo->pixel_clock_max / 1000,
3471 intel_sdvo->caps.sdvo_num_inputs,
3472 /* check currently supported outputs */
3473 intel_sdvo->caps.output_flags &
3474 (SDVO_OUTPUT_TMDS0 | SDVO_OUTPUT_RGB0 |
3475 SDVO_OUTPUT_LVDS0 | SDVO_OUTPUT_SVID0 |
3476 SDVO_OUTPUT_CVBS0 | SDVO_OUTPUT_YPRPB0) ? 'Y' : 'N',
3477 intel_sdvo->caps.output_flags &
3478 (SDVO_OUTPUT_TMDS1 | SDVO_OUTPUT_RGB1 |
3479 SDVO_OUTPUT_LVDS1) ? 'Y' : 'N');
3483 intel_sdvo_output_cleanup(intel_sdvo);
3485 intel_sdvo_unselect_i2c_bus(intel_sdvo);
3486 intel_sdvo_encoder_destroy(&intel_encoder->base);