2 * Copyright © 2006 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Eric Anholt <eric@anholt.net>
25 * Thomas Richter <thor@math.tu-berlin.de>
27 * Minor modifications (Dithering enable):
28 * Thomas Richter <thor@math.tu-berlin.de>
32 #include "intel_display_types.h"
33 #include "intel_dvo_dev.h"
36 * register definitions for the i82807aa.
38 * Documentation on this chipset can be found in datasheet #29069001 at
43 * VCH Revision & GMBus Base Addr
46 # define VR00_BASE_ADDRESS_MASK 0x007f
49 * Functionality Enable
54 * Enable the panel fitter
56 # define VR01_PANEL_FIT_ENABLE (1 << 3)
58 * Enables the LCD display.
60 * This must not be set while VR01_DVO_BYPASS_ENABLE is set.
62 # define VR01_LCD_ENABLE (1 << 2)
63 /* Enables the DVO repeater. */
64 # define VR01_DVO_BYPASS_ENABLE (1 << 1)
65 /* Enables the DVO clock */
66 # define VR01_DVO_ENABLE (1 << 0)
67 /* Enable dithering for 18bpp panels. Not documented. */
68 # define VR01_DITHER_ENABLE (1 << 4)
71 * LCD Interface Format
74 /* Enables LVDS output instead of CMOS */
75 # define VR10_LVDS_ENABLE (1 << 4)
76 /* Enables 18-bit LVDS output. */
77 # define VR10_INTERFACE_1X18 (0 << 2)
78 /* Enables 24-bit LVDS or CMOS output */
79 # define VR10_INTERFACE_1X24 (1 << 2)
80 /* Enables 2x18-bit LVDS or CMOS output. */
81 # define VR10_INTERFACE_2X18 (2 << 2)
82 /* Enables 2x24-bit LVDS output */
83 # define VR10_INTERFACE_2X24 (3 << 2)
84 /* Mask that defines the depth of the pipeline */
85 # define VR10_INTERFACE_DEPTH_MASK (3 << 2)
88 * VR20 LCD Horizontal Display Size
93 * LCD Vertical Display Size
98 * Panel power down status
101 /* Read only bit indicating that the panel is not in a safe poweroff state. */
102 # define VR30_PANEL_ON (1 << 15)
105 # define VR40_STALL_ENABLE (1 << 13)
106 # define VR40_VERTICAL_INTERP_ENABLE (1 << 12)
107 # define VR40_ENHANCED_PANEL_FITTING (1 << 11)
108 # define VR40_HORIZONTAL_INTERP_ENABLE (1 << 10)
109 # define VR40_AUTO_RATIO_ENABLE (1 << 9)
110 # define VR40_CLOCK_GATING_ENABLE (1 << 8)
113 * Panel Fitting Vertical Ratio
114 * (((image_height - 1) << 16) / ((panel_height - 1))) >> 2
119 * Panel Fitting Horizontal Ratio
120 * (((image_width - 1) << 16) / ((panel_width - 1))) >> 2
125 * Horizontal Image Size
144 /* Graphics BIOS scratch 0
147 # define VR8E_PANEL_TYPE_MASK (0xf << 0)
148 # define VR8E_PANEL_INTERFACE_CMOS (0 << 4)
149 # define VR8E_PANEL_INTERFACE_LVDS (1 << 4)
150 # define VR8E_FORCE_DEFAULT_PANEL (1 << 5)
152 /* Graphics BIOS scratch 1
155 # define VR8F_VCH_PRESENT (1 << 0)
156 # define VR8F_DISPLAY_CONN (1 << 1)
157 # define VR8F_POWER_MASK (0x3c)
158 # define VR8F_POWER_POS (2)
160 /* Some Bios implementations do not restore the DVO state upon
161 * resume from standby. Thus, this driver has to handle it
162 * instead. The following list contains all registers that
165 static const u16 backup_addresses
[] = {
167 0x18, 0x19, 0x1a, 0x1f,
168 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
169 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
171 0x10 /* this must come last */
180 /* Register backup */
182 u16 reg_backup
[ARRAY_SIZE(backup_addresses
)];
186 static void ivch_dump_regs(struct intel_dvo_device
*dvo
);
188 * Reads a register on the ivch.
190 * Each of the 256 registers are 16 bits long.
192 static bool ivch_read(struct intel_dvo_device
*dvo
, int addr
, u16
*data
)
194 struct ivch_priv
*priv
= dvo
->dev_priv
;
195 struct i2c_adapter
*adapter
= dvo
->i2c_bus
;
199 struct i2c_msg msgs
[] = {
201 .addr
= dvo
->slave_addr
,
207 .flags
= I2C_M_NOSTART
,
212 .addr
= dvo
->slave_addr
,
213 .flags
= I2C_M_RD
| I2C_M_NOSTART
,
221 if (i2c_transfer(adapter
, msgs
, 3) == 3) {
222 *data
= (in_buf
[1] << 8) | in_buf
[0];
227 DRM_DEBUG_KMS("Unable to read register 0x%02x from "
229 addr
, adapter
->name
, dvo
->slave_addr
);
234 /* Writes a 16-bit register on the ivch */
235 static bool ivch_write(struct intel_dvo_device
*dvo
, int addr
, u16 data
)
237 struct ivch_priv
*priv
= dvo
->dev_priv
;
238 struct i2c_adapter
*adapter
= dvo
->i2c_bus
;
240 struct i2c_msg msg
= {
241 .addr
= dvo
->slave_addr
,
248 out_buf
[1] = data
& 0xff;
249 out_buf
[2] = data
>> 8;
251 if (i2c_transfer(adapter
, &msg
, 1) == 1)
255 DRM_DEBUG_KMS("Unable to write register 0x%02x to %s:%d.\n",
256 addr
, adapter
->name
, dvo
->slave_addr
);
262 /* Probes the given bus and slave address for an ivch */
263 static bool ivch_init(struct intel_dvo_device
*dvo
,
264 struct i2c_adapter
*adapter
)
266 struct ivch_priv
*priv
;
270 priv
= kzalloc(sizeof(struct ivch_priv
), GFP_KERNEL
);
274 dvo
->i2c_bus
= adapter
;
275 dvo
->dev_priv
= priv
;
278 if (!ivch_read(dvo
, VR00
, &temp
))
282 /* Since the identification bits are probably zeroes, which doesn't seem
283 * very unique, check that the value in the base address field matches
284 * the address it's responding on.
286 if ((temp
& VR00_BASE_ADDRESS_MASK
) != dvo
->slave_addr
) {
287 DRM_DEBUG_KMS("ivch detect failed due to address mismatch "
289 (temp
& VR00_BASE_ADDRESS_MASK
), dvo
->slave_addr
);
293 ivch_read(dvo
, VR20
, &priv
->width
);
294 ivch_read(dvo
, VR21
, &priv
->height
);
296 /* Make a backup of the registers to be able to restore them
299 for (i
= 0; i
< ARRAY_SIZE(backup_addresses
); i
++)
300 ivch_read(dvo
, backup_addresses
[i
], priv
->reg_backup
+ i
);
311 static enum drm_connector_status
ivch_detect(struct intel_dvo_device
*dvo
)
313 return connector_status_connected
;
316 static enum drm_mode_status
ivch_mode_valid(struct intel_dvo_device
*dvo
,
317 struct drm_display_mode
*mode
)
319 if (mode
->clock
> 112000)
320 return MODE_CLOCK_HIGH
;
325 /* Restore the DVO registers after a resume
326 * from RAM. Registers have been saved during
327 * the initialization.
329 static void ivch_reset(struct intel_dvo_device
*dvo
)
331 struct ivch_priv
*priv
= dvo
->dev_priv
;
334 DRM_DEBUG_KMS("Resetting the IVCH registers\n");
336 ivch_write(dvo
, VR10
, 0x0000);
338 for (i
= 0; i
< ARRAY_SIZE(backup_addresses
); i
++)
339 ivch_write(dvo
, backup_addresses
[i
], priv
->reg_backup
[i
]);
342 /* Sets the power state of the panel connected to the ivch */
343 static void ivch_dpms(struct intel_dvo_device
*dvo
, bool enable
)
346 u16 vr01
, vr30
, backlight
;
350 /* Set the new power state of the panel. */
351 if (!ivch_read(dvo
, VR01
, &vr01
))
359 ivch_write(dvo
, VR80
, backlight
);
362 vr01
|= VR01_LCD_ENABLE
| VR01_DVO_ENABLE
;
364 vr01
&= ~(VR01_LCD_ENABLE
| VR01_DVO_ENABLE
);
366 ivch_write(dvo
, VR01
, vr01
);
368 /* Wait for the panel to make its state transition */
369 for (i
= 0; i
< 100; i
++) {
370 if (!ivch_read(dvo
, VR30
, &vr30
))
373 if (((vr30
& VR30_PANEL_ON
) != 0) == enable
)
377 /* wait some more; vch may fail to resync sometimes without this */
381 static bool ivch_get_hw_state(struct intel_dvo_device
*dvo
)
387 /* Set the new power state of the panel. */
388 if (!ivch_read(dvo
, VR01
, &vr01
))
391 if (vr01
& VR01_LCD_ENABLE
)
397 static void ivch_mode_set(struct intel_dvo_device
*dvo
,
398 const struct drm_display_mode
*mode
,
399 const struct drm_display_mode
*adjusted_mode
)
401 struct ivch_priv
*priv
= dvo
->dev_priv
;
408 vr10
= priv
->reg_backup
[ARRAY_SIZE(backup_addresses
) - 1];
410 /* Enable dithering for 18 bpp pipelines */
411 vr10
&= VR10_INTERFACE_DEPTH_MASK
;
412 if (vr10
== VR10_INTERFACE_2X18
|| vr10
== VR10_INTERFACE_1X18
)
413 vr01
= VR01_DITHER_ENABLE
;
415 vr40
= (VR40_STALL_ENABLE
| VR40_VERTICAL_INTERP_ENABLE
|
416 VR40_HORIZONTAL_INTERP_ENABLE
);
418 if (mode
->hdisplay
!= adjusted_mode
->crtc_hdisplay
||
419 mode
->vdisplay
!= adjusted_mode
->crtc_vdisplay
) {
420 u16 x_ratio
, y_ratio
;
422 vr01
|= VR01_PANEL_FIT_ENABLE
;
423 vr40
|= VR40_CLOCK_GATING_ENABLE
;
424 x_ratio
= (((mode
->hdisplay
- 1) << 16) /
425 (adjusted_mode
->crtc_hdisplay
- 1)) >> 2;
426 y_ratio
= (((mode
->vdisplay
- 1) << 16) /
427 (adjusted_mode
->crtc_vdisplay
- 1)) >> 2;
428 ivch_write(dvo
, VR42
, x_ratio
);
429 ivch_write(dvo
, VR41
, y_ratio
);
431 vr01
&= ~VR01_PANEL_FIT_ENABLE
;
432 vr40
&= ~VR40_CLOCK_GATING_ENABLE
;
434 vr40
&= ~VR40_AUTO_RATIO_ENABLE
;
436 ivch_write(dvo
, VR01
, vr01
);
437 ivch_write(dvo
, VR40
, vr40
);
440 static void ivch_dump_regs(struct intel_dvo_device
*dvo
)
444 ivch_read(dvo
, VR00
, &val
);
445 DRM_DEBUG_KMS("VR00: 0x%04x\n", val
);
446 ivch_read(dvo
, VR01
, &val
);
447 DRM_DEBUG_KMS("VR01: 0x%04x\n", val
);
448 ivch_read(dvo
, VR10
, &val
);
449 DRM_DEBUG_KMS("VR10: 0x%04x\n", val
);
450 ivch_read(dvo
, VR30
, &val
);
451 DRM_DEBUG_KMS("VR30: 0x%04x\n", val
);
452 ivch_read(dvo
, VR40
, &val
);
453 DRM_DEBUG_KMS("VR40: 0x%04x\n", val
);
456 ivch_read(dvo
, VR80
, &val
);
457 DRM_DEBUG_KMS("VR80: 0x%04x\n", val
);
458 ivch_read(dvo
, VR81
, &val
);
459 DRM_DEBUG_KMS("VR81: 0x%04x\n", val
);
460 ivch_read(dvo
, VR82
, &val
);
461 DRM_DEBUG_KMS("VR82: 0x%04x\n", val
);
462 ivch_read(dvo
, VR83
, &val
);
463 DRM_DEBUG_KMS("VR83: 0x%04x\n", val
);
464 ivch_read(dvo
, VR84
, &val
);
465 DRM_DEBUG_KMS("VR84: 0x%04x\n", val
);
466 ivch_read(dvo
, VR85
, &val
);
467 DRM_DEBUG_KMS("VR85: 0x%04x\n", val
);
468 ivch_read(dvo
, VR86
, &val
);
469 DRM_DEBUG_KMS("VR86: 0x%04x\n", val
);
470 ivch_read(dvo
, VR87
, &val
);
471 DRM_DEBUG_KMS("VR87: 0x%04x\n", val
);
472 ivch_read(dvo
, VR88
, &val
);
473 DRM_DEBUG_KMS("VR88: 0x%04x\n", val
);
475 /* Scratch register 0 - AIM Panel type */
476 ivch_read(dvo
, VR8E
, &val
);
477 DRM_DEBUG_KMS("VR8E: 0x%04x\n", val
);
479 /* Scratch register 1 - Status register */
480 ivch_read(dvo
, VR8F
, &val
);
481 DRM_DEBUG_KMS("VR8F: 0x%04x\n", val
);
484 static void ivch_destroy(struct intel_dvo_device
*dvo
)
486 struct ivch_priv
*priv
= dvo
->dev_priv
;
490 dvo
->dev_priv
= NULL
;
494 const struct intel_dvo_dev_ops ivch_ops
= {
497 .get_hw_state
= ivch_get_hw_state
,
498 .mode_valid
= ivch_mode_valid
,
499 .mode_set
= ivch_mode_set
,
500 .detect
= ivch_detect
,
501 .dump_regs
= ivch_dump_regs
,
502 .destroy
= ivch_destroy
,