Fixup sysfs output registration
[platform/upstream/libdrm.git] / linux-core / intel_crt.c
1 /*
2  * Copyright © 2006-2007 Intel Corporation
3  *
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:
10  *
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
13  * Software.
14  *
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.
22  *
23  * Authors:
24  *      Eric Anholt <eric@anholt.net>
25  */
26
27 #include <linux/i2c.h>
28 #include "drmP.h"
29 #include "drm.h"
30 #include "drm_crtc.h"
31 #include "intel_drv.h"
32 #include "i915_drm.h"
33 #include "i915_drv.h"
34
35 static void intel_crt_dpms(struct drm_output *output, int mode)
36 {
37         struct drm_device *dev = output->dev;
38         struct drm_i915_private *dev_priv = dev->dev_private;
39         u32 temp;
40         
41         temp = I915_READ(ADPA);
42         temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
43         temp &= ~ADPA_DAC_ENABLE;
44         
45         switch(mode) {
46         case DPMSModeOn:
47                 temp |= ADPA_DAC_ENABLE;
48                 break;
49         case DPMSModeStandby:
50                 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
51                 break;
52         case DPMSModeSuspend:
53                 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
54                 break;
55         case DPMSModeOff:
56                 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
57                 break;
58         }
59         
60         I915_WRITE(ADPA, temp);
61 }
62
63 static void intel_crt_save(struct drm_output *output)
64 {
65         
66 }
67
68 static void intel_crt_restore(struct drm_output *output)
69 {
70
71 }
72
73 static int intel_crt_mode_valid(struct drm_output *output,
74                                 struct drm_display_mode *mode)
75 {
76         if (mode->flags & V_DBLSCAN)
77                 return MODE_NO_DBLESCAN;
78
79         if (mode->clock > 400000 || mode->clock < 25000)
80                 return MODE_CLOCK_RANGE;
81
82         return MODE_OK;
83 }
84
85 static bool intel_crt_mode_fixup(struct drm_output *output,
86                                  struct drm_display_mode *mode,
87                                  struct drm_display_mode *adjusted_mode)
88 {
89         return true;
90 }
91
92 static void intel_crt_mode_set(struct drm_output *output,
93                                struct drm_display_mode *mode,
94                                struct drm_display_mode *adjusted_mode)
95 {
96         struct drm_device *dev = output->dev;
97         struct drm_crtc *crtc = output->crtc;
98         struct intel_crtc *intel_crtc = crtc->driver_private;
99         struct drm_i915_private *dev_priv = dev->dev_private;
100         int dpll_md_reg;
101         u32 adpa, dpll_md;
102
103         if (intel_crtc->pipe == 0) 
104                 dpll_md_reg = DPLL_A_MD;
105         else
106                 dpll_md_reg = DPLL_B_MD;
107
108         /*
109          * Disable separate mode multiplier used when cloning SDVO to CRT
110          * XXX this needs to be adjusted when we really are cloning
111          */
112         if (IS_I965G(dev)) {
113                 dpll_md = I915_READ(dpll_md_reg);
114                 I915_WRITE(dpll_md_reg,
115                            dpll_md & ~DPLL_MD_UDI_MULTIPLIER_MASK);
116         }
117         
118         adpa = 0;
119         if (adjusted_mode->flags & V_PHSYNC)
120                 adpa |= ADPA_HSYNC_ACTIVE_HIGH;
121         if (adjusted_mode->flags & V_PVSYNC)
122                 adpa |= ADPA_VSYNC_ACTIVE_HIGH;
123         
124         if (intel_crtc->pipe == 0)
125                 adpa |= ADPA_PIPE_A_SELECT;
126         else
127                 adpa |= ADPA_PIPE_B_SELECT;
128         
129         I915_WRITE(ADPA, adpa);
130 }
131
132 /**
133  * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
134  *
135  * Not for i915G/i915GM
136  *
137  * \return TRUE if CRT is connected.
138  * \return FALSE if CRT is disconnected.
139  */
140 static bool intel_crt_detect_hotplug(struct drm_output *output)
141 {
142         struct drm_device *dev = output->dev;
143         struct drm_i915_private *dev_priv = dev->dev_private;
144         u32 temp;
145
146         unsigned long timeout = jiffies + msecs_to_jiffies(1000);
147
148         temp = I915_READ(PORT_HOTPLUG_EN);
149
150         I915_WRITE(PORT_HOTPLUG_EN,
151                    temp | CRT_HOTPLUG_FORCE_DETECT | (1 << 5));
152
153         do {
154                 if (!(I915_READ(PORT_HOTPLUG_EN) & CRT_HOTPLUG_FORCE_DETECT))
155                         break;
156                 msleep(1);
157         } while (time_after(timeout, jiffies));
158
159         if ((I915_READ(PORT_HOTPLUG_STAT) & CRT_HOTPLUG_MONITOR_MASK) ==
160             CRT_HOTPLUG_MONITOR_COLOR)
161                 return true;
162
163         return false;
164 }
165
166 static bool intel_crt_detect_ddc(struct drm_output *output)
167 {
168         struct intel_output *intel_output = output->driver_private;
169
170         /* CRT should always be at 0, but check anyway */
171         if (intel_output->type != INTEL_OUTPUT_ANALOG)
172                 return false;
173         
174         return intel_ddc_probe(output);
175 }
176
177 static enum drm_output_status intel_crt_detect(struct drm_output *output)
178 {
179         struct drm_device *dev = output->dev;
180         
181         if (IS_I9XX(dev) && !IS_I915G(dev) && !IS_I915GM(dev)) {
182                 if (intel_crt_detect_hotplug(output))
183                         return output_status_connected;
184                 else
185                         return output_status_disconnected;
186         }
187
188         if (intel_crt_detect_ddc(output))
189                 return output_status_connected;
190
191         /* TODO use load detect */
192         return output_status_unknown;
193 }
194
195 static void intel_crt_destroy(struct drm_output *output)
196 {
197         struct intel_output *intel_output = output->driver_private;
198
199         intel_i2c_destroy(intel_output->ddc_bus);
200         kfree(output->driver_private);
201 }
202
203 static int intel_crt_get_modes(struct drm_output *output)
204 {
205         return intel_ddc_get_modes(output);
206 }
207
208 static bool intel_crt_set_property(struct drm_output *output,
209                                   struct drm_property *property,
210                                   uint64_t value)
211 {
212         struct drm_device *dev = output->dev;
213
214         if (property == dev->mode_config.dpms_property)
215                 intel_crt_dpms(output, (uint32_t)(value & 0xf));
216
217         return true;
218 }
219
220 /*
221  * Routines for controlling stuff on the analog port
222  */
223 static const struct drm_output_funcs intel_crt_output_funcs = {
224         .dpms = intel_crt_dpms,
225         .save = intel_crt_save,
226         .restore = intel_crt_restore,
227         .mode_valid = intel_crt_mode_valid,
228         .mode_fixup = intel_crt_mode_fixup,
229         .prepare = intel_output_prepare,
230         .mode_set = intel_crt_mode_set,
231         .commit = intel_output_commit,
232         .detect = intel_crt_detect,
233         .get_modes = intel_crt_get_modes,
234         .cleanup = intel_crt_destroy,
235         .set_property = intel_crt_set_property,
236 };
237
238 void intel_crt_init(struct drm_device *dev)
239 {
240         struct drm_output *output;
241         struct intel_output *intel_output;
242
243         output = drm_output_create(dev, &intel_crt_output_funcs,
244                                    DRM_MODE_OUTPUT_DAC);
245
246         intel_output = kmalloc(sizeof(struct intel_output), GFP_KERNEL);
247         if (!intel_output) {
248                 drm_output_destroy(output);
249                 return;
250         }
251         /* Set up the DDC bus. */
252         intel_output->ddc_bus = intel_i2c_create(dev, GPIOA, "CRTDDC_A");
253         if (!intel_output->ddc_bus) {
254                 dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration "
255                            "failed.\n");
256                 return;
257         }
258
259         intel_output->type = INTEL_OUTPUT_ANALOG;
260         output->driver_private = intel_output;
261         output->interlace_allowed = 0;
262         output->doublescan_allowed = 0;
263
264         drm_sysfs_output_add(output);
265
266         drm_output_attach_property(output, dev->mode_config.connector_type_property, ConnectorVGA);
267 }