2 * Copyright © 2006-2007 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>
27 #include <linux/delay.h>
28 #include <linux/i2c.h>
29 #include <linux/pm_runtime.h>
31 #include <drm/drm_simple_kms_helper.h>
33 #include "cdv_device.h"
34 #include "intel_bios.h"
37 #include "psb_intel_drv.h"
38 #include "psb_intel_reg.h"
41 static void cdv_intel_crt_dpms(struct drm_encoder
*encoder
, int mode
)
43 struct drm_device
*dev
= encoder
->dev
;
48 temp
&= ~(ADPA_HSYNC_CNTL_DISABLE
| ADPA_VSYNC_CNTL_DISABLE
);
49 temp
&= ~ADPA_DAC_ENABLE
;
52 case DRM_MODE_DPMS_ON
:
53 temp
|= ADPA_DAC_ENABLE
;
55 case DRM_MODE_DPMS_STANDBY
:
56 temp
|= ADPA_DAC_ENABLE
| ADPA_HSYNC_CNTL_DISABLE
;
58 case DRM_MODE_DPMS_SUSPEND
:
59 temp
|= ADPA_DAC_ENABLE
| ADPA_VSYNC_CNTL_DISABLE
;
61 case DRM_MODE_DPMS_OFF
:
62 temp
|= ADPA_HSYNC_CNTL_DISABLE
| ADPA_VSYNC_CNTL_DISABLE
;
69 static enum drm_mode_status
cdv_intel_crt_mode_valid(struct drm_connector
*connector
,
70 struct drm_display_mode
*mode
)
72 if (mode
->flags
& DRM_MODE_FLAG_DBLSCAN
)
73 return MODE_NO_DBLESCAN
;
75 /* The lowest clock for CDV is 20000KHz */
76 if (mode
->clock
< 20000)
77 return MODE_CLOCK_LOW
;
79 /* The max clock for CDV is 355 instead of 400 */
80 if (mode
->clock
> 355000)
81 return MODE_CLOCK_HIGH
;
86 static void cdv_intel_crt_mode_set(struct drm_encoder
*encoder
,
87 struct drm_display_mode
*mode
,
88 struct drm_display_mode
*adjusted_mode
)
91 struct drm_device
*dev
= encoder
->dev
;
92 struct drm_crtc
*crtc
= encoder
->crtc
;
93 struct gma_crtc
*gma_crtc
= to_gma_crtc(crtc
);
98 if (gma_crtc
->pipe
== 0)
99 dpll_md_reg
= DPLL_A_MD
;
101 dpll_md_reg
= DPLL_B_MD
;
106 * Disable separate mode multiplier used when cloning SDVO to CRT
107 * XXX this needs to be adjusted when we really are cloning
110 dpll_md
= REG_READ(dpll_md_reg
);
111 REG_WRITE(dpll_md_reg
,
112 dpll_md
& ~DPLL_MD_UDI_MULTIPLIER_MASK
);
116 if (adjusted_mode
->flags
& DRM_MODE_FLAG_PHSYNC
)
117 adpa
|= ADPA_HSYNC_ACTIVE_HIGH
;
118 if (adjusted_mode
->flags
& DRM_MODE_FLAG_PVSYNC
)
119 adpa
|= ADPA_VSYNC_ACTIVE_HIGH
;
121 if (gma_crtc
->pipe
== 0)
122 adpa
|= ADPA_PIPE_A_SELECT
;
124 adpa
|= ADPA_PIPE_B_SELECT
;
126 REG_WRITE(adpa_reg
, adpa
);
131 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
133 * \return true if CRT is connected.
134 * \return false if CRT is disconnected.
136 static bool cdv_intel_crt_detect_hotplug(struct drm_connector
*connector
,
139 struct drm_device
*dev
= connector
->dev
;
141 int i
, tries
= 0, ret
= false;
145 * On a CDV thep, CRT detect sequence need to be done twice
146 * to get a reliable result.
150 orig
= hotplug_en
= REG_READ(PORT_HOTPLUG_EN
);
151 hotplug_en
&= ~(CRT_HOTPLUG_DETECT_MASK
);
152 hotplug_en
|= CRT_HOTPLUG_FORCE_DETECT
;
154 hotplug_en
|= CRT_HOTPLUG_ACTIVATION_PERIOD_64
;
155 hotplug_en
|= CRT_HOTPLUG_VOLTAGE_COMPARE_50
;
157 for (i
= 0; i
< tries
; i
++) {
158 unsigned long timeout
;
159 /* turn on the FORCE_DETECT */
160 REG_WRITE(PORT_HOTPLUG_EN
, hotplug_en
);
161 timeout
= jiffies
+ msecs_to_jiffies(1000);
162 /* wait for FORCE_DETECT to go off */
164 if (!(REG_READ(PORT_HOTPLUG_EN
) &
165 CRT_HOTPLUG_FORCE_DETECT
))
168 } while (time_after(timeout
, jiffies
));
171 if ((REG_READ(PORT_HOTPLUG_STAT
) & CRT_HOTPLUG_MONITOR_MASK
) !=
172 CRT_HOTPLUG_MONITOR_NONE
)
175 /* clear the interrupt we just generated, if any */
176 REG_WRITE(PORT_HOTPLUG_STAT
, CRT_HOTPLUG_INT_STATUS
);
178 /* and put the bits back */
179 REG_WRITE(PORT_HOTPLUG_EN
, orig
);
183 static enum drm_connector_status
cdv_intel_crt_detect(
184 struct drm_connector
*connector
, bool force
)
186 if (cdv_intel_crt_detect_hotplug(connector
, force
))
187 return connector_status_connected
;
189 return connector_status_disconnected
;
192 static void cdv_intel_crt_destroy(struct drm_connector
*connector
)
194 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
196 psb_intel_i2c_destroy(gma_encoder
->ddc_bus
);
197 drm_connector_unregister(connector
);
198 drm_connector_cleanup(connector
);
202 static int cdv_intel_crt_get_modes(struct drm_connector
*connector
)
204 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
205 return psb_intel_ddc_get_modes(connector
,
206 &gma_encoder
->ddc_bus
->adapter
);
209 static int cdv_intel_crt_set_property(struct drm_connector
*connector
,
210 struct drm_property
*property
,
217 * Routines for controlling stuff on the analog port
220 static const struct drm_encoder_helper_funcs cdv_intel_crt_helper_funcs
= {
221 .dpms
= cdv_intel_crt_dpms
,
222 .prepare
= gma_encoder_prepare
,
223 .commit
= gma_encoder_commit
,
224 .mode_set
= cdv_intel_crt_mode_set
,
227 static const struct drm_connector_funcs cdv_intel_crt_connector_funcs
= {
228 .dpms
= drm_helper_connector_dpms
,
229 .detect
= cdv_intel_crt_detect
,
230 .fill_modes
= drm_helper_probe_single_connector_modes
,
231 .destroy
= cdv_intel_crt_destroy
,
232 .set_property
= cdv_intel_crt_set_property
,
235 static const struct drm_connector_helper_funcs
236 cdv_intel_crt_connector_helper_funcs
= {
237 .mode_valid
= cdv_intel_crt_mode_valid
,
238 .get_modes
= cdv_intel_crt_get_modes
,
239 .best_encoder
= gma_best_encoder
,
242 void cdv_intel_crt_init(struct drm_device
*dev
,
243 struct psb_intel_mode_device
*mode_dev
)
246 struct gma_connector
*gma_connector
;
247 struct gma_encoder
*gma_encoder
;
248 struct drm_connector
*connector
;
249 struct drm_encoder
*encoder
;
253 gma_encoder
= kzalloc(sizeof(struct gma_encoder
), GFP_KERNEL
);
257 gma_connector
= kzalloc(sizeof(struct gma_connector
), GFP_KERNEL
);
259 goto failed_connector
;
261 connector
= &gma_connector
->base
;
262 connector
->polled
= DRM_CONNECTOR_POLL_HPD
;
263 drm_connector_init(dev
, connector
,
264 &cdv_intel_crt_connector_funcs
, DRM_MODE_CONNECTOR_VGA
);
266 encoder
= &gma_encoder
->base
;
267 drm_simple_encoder_init(dev
, encoder
, DRM_MODE_ENCODER_DAC
);
269 gma_connector_attach_encoder(gma_connector
, gma_encoder
);
271 /* Set up the DDC bus. */
273 /* Remove the following code for CDV */
275 if (dev_priv->crt_ddc_bus != 0)
276 i2c_reg = dev_priv->crt_ddc_bus;
278 gma_encoder
->ddc_bus
= psb_intel_i2c_create(dev
,
279 i2c_reg
, "CRTDDC_A");
280 if (!gma_encoder
->ddc_bus
) {
281 dev_printk(KERN_ERR
, &dev
->pdev
->dev
, "DDC bus registration "
286 gma_encoder
->type
= INTEL_OUTPUT_ANALOG
;
288 psb_intel_output->clone_mask = (1 << INTEL_ANALOG_CLONE_BIT);
289 psb_intel_output->crtc_mask = (1 << 0) | (1 << 1);
291 connector
->interlace_allowed
= 0;
292 connector
->doublescan_allowed
= 0;
294 drm_encoder_helper_add(encoder
, &cdv_intel_crt_helper_funcs
);
295 drm_connector_helper_add(connector
,
296 &cdv_intel_crt_connector_helper_funcs
);
298 drm_connector_register(connector
);
302 drm_encoder_cleanup(&gma_encoder
->base
);
303 drm_connector_cleanup(&gma_connector
->base
);
304 kfree(gma_connector
);